diff --git a/.gitattributes b/.gitattributes index 35b94aa..e5ab4d1 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,27 +1,6 @@ -# Set the default behavior, in case people don't have core.autocrlf set. +#Which files need CRLF handling * text=auto - -# Explicitly declare text files you want to always be normalized and converted -# to native line endings on checkout. -*.c text -*.cpp text -*.h text -*.hpp text -*.java text -*.sh text eol=lf -*.bat text -*.cmd text -*.db text -*.dbd text -*.template text -*.substitutions text - -# Declare files that will always have CRLF line endings on checkout. -*.sln text eol=crlf - -# Denote all files that are truly binary and should not be modified. -*.png binary -*.jpg binary -*.class binary -*.vi binary - +*.sh eol=lf +*.bat eol=crlf +*.cmd -text +*.html html diff --git a/.github/workflows/ci-scripts-build.yml b/.github/workflows/ci-scripts-build.yml new file mode 100644 index 0000000..4d6d95f --- /dev/null +++ b/.github/workflows/ci-scripts-build.yml @@ -0,0 +1,115 @@ +# .github/workflows/ci-scripts-build.yml for use with EPICS Base ci-scripts +# (see: https://github.com/epics-base/ci-scripts) + +# This is YAML - indentation levels are crucial + +# Set the 'name:' properties to values that work for you (MYMODULE) + +name: OPTICS + +# Trigger on pushes and PRs to any branch +on: + push: + paths-ignore: + - 'documentation/*' + - '**/*.html' + - '**/*.md' + branches: + - master + pull_request: + +env: + SETUP_PATH: .github/workflows:.ci + # For the sequencer on Linux/Windows/MacOS + APT: re2c + CHOCO: re2c + BREW: re2c + +jobs: + build-base: + name: ${{ matrix.name }} + runs-on: ${{ matrix.os }} + # Set environment variables from matrix parameters + env: + CMP: ${{ matrix.cmp }} + BCFG: ${{ matrix.configuration }} + WINE: ${{ matrix.wine }} + RTEMS: ${{ matrix.rtems }} + RTEMS_TARGET: ${{ matrix.rtems_target }} + EXTRA: ${{ matrix.extra }} + TEST: ${{ matrix.test }} + SET: ${{ matrix.set }} + strategy: + fail-fast: false + matrix: + # Job names also name artifacts, character limitations apply + include: + - os: ubuntu-20.04 + cmp: gcc + configuration: default + set: stable_7_0 + name: "Linux stable 7.0" + + - os: ubuntu-20.04 + cmp: gcc + configuration: default + set: stable_3_15 + name: "Linux stable 3.15" + + - os: ubuntu-20.04 + cmp: gcc + configuration: default + set: master_7_0 + name: "Linux master 7.0" + + - os: ubuntu-20.04 + cmp: gcc + configuration: default + set: master_3_15 + name: "Linux master 3.15" + + - os: macos-latest + cmp: clang + configuration: default + set: master_7_0 + name: "MacOS master 7.0" + + - os: windows-2022 + cmp: vs2022 + configuration: static + set: master_7_0 + name: "Windows master 7.0" + + steps: + - uses: actions/checkout@v2 + with: + submodules: true + - name: Automatic core dumper analysis + uses: mdavidsaver/ci-core-dumper@master + - name: "apt-get install" + run: | + sudo apt-get update + sudo apt-get -y install qemu-system-x86 g++-mingw-w64-x86-64 gdb + if: runner.os == 'Linux' + - name: "apt-get install ${{ matrix.cmp }}" + run: | + sudo apt-get -y install software-properties-common + sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test + sudo apt-get update + sudo apt-get -y install ${{ matrix.cmp }} + if: matrix.utoolchain + - name: Prepare and compile dependencies + run: python .ci/cue.py prepare + - name: Build main module + run: python .ci/cue.py build + - name: Run main module tests + run: python .ci/cue.py -T 15M test + - name: Upload tapfiles Artifact + uses: actions/upload-artifact@v2 + with: + name: tapfiles ${{ matrix.name }} + path: '**/O.*/*.tap' + - name: Collect and show test results + run: python .ci/cue.py test-results + + diff --git a/.github/workflows/master_3_15.set b/.github/workflows/master_3_15.set new file mode 100644 index 0000000..4f59df9 --- /dev/null +++ b/.github/workflows/master_3_15.set @@ -0,0 +1,8 @@ +BASE="3.15" + +MODULES="sncseq calc asyn busy" + +BUSY="master" +ASYN="master" +CALC="master" +SNCSEQ="R2-2-9" diff --git a/.github/workflows/master_7_0.set b/.github/workflows/master_7_0.set new file mode 100644 index 0000000..35634b5 --- /dev/null +++ b/.github/workflows/master_7_0.set @@ -0,0 +1,8 @@ +BASE="7.0" + +MODULES="sncseq calc asyn busy" + +BUSY="master" +ASYN="master" +CALC="master" +SNCSEQ="R2-2-9" diff --git a/.github/workflows/stable_3_15.set b/.github/workflows/stable_3_15.set new file mode 100644 index 0000000..daeee3d --- /dev/null +++ b/.github/workflows/stable_3_15.set @@ -0,0 +1,8 @@ +BASE="3.15" + +MODULES="sncseq calc asyn busy" + +BUSY="R1-7-3" +ASYN="R4-42" +CALC="R3-7-4" +SNCSEQ="R2-2-9" diff --git a/.github/workflows/stable_7_0.set b/.github/workflows/stable_7_0.set new file mode 100644 index 0000000..a672e47 --- /dev/null +++ b/.github/workflows/stable_7_0.set @@ -0,0 +1,8 @@ +BASE="R7.0.4.1" + +MODULES="sncseq calc asyn busy" + +BUSY="R1-7-3" +ASYN="R4-42" +CALC="R3-7-4" +SNCSEQ="R2-2-9" diff --git a/.gitignore b/.gitignore index 60362e1..5609ec3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,14 +1,22 @@ -O.*/ -/db -/bin -/dbd -/include -/lib -/templates -envPaths +*~ +O.* +*.swp +*BAK.adl +bin/ +/db/ +dbd/ +html/ +include/ +/iocsh/ +lib/ +templates/ cdCommands +envPaths dllPath.bat -runIOC.bat -runIOC.sh -relPaths.sh -.project +auto_settings.sav* +auto_positions.sav* +RELEASE.local + +# bird droppings from IT +.log +.loglogin diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..cfa3a70 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule ".ci"] + path = .ci + url = https://github.com/epics-base/ci-scripts diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..e6eac79 --- /dev/null +++ b/LICENSE @@ -0,0 +1,65 @@ + +Copyright (c) 2004 University of Chicago and the Regents of the University of +California. All rights reserved. + +synApps is distributed subject to the following license conditions: +SOFTWARE LICENSE AGREEMENT +Software: synApps +Versions: Release 4-5 and higher. + + 1. The "Software", below, refers to synApps (in either source code, or + binary form and accompanying documentation). Each licensee is addressed + as "you" or "Licensee." + + 2. The copyright holders shown above and their third-party licensors hereby + grant Licensee a royalty-free nonexclusive license, subject to the + limitations stated herein and U.S. Government license rights. + + 3. You may modify and make a copy or copies of the Software for use within + your organization, if you meet the following conditions: + 1. Copies in source code must include the copyright notice and this + Software License Agreement. + 2. Copies in binary form must include the copyright notice and this + Software License Agreement in the documentation and/or other + materials provided with the copy. + + 4. You may modify a copy or copies of the Software or any portion of it, thus + forming a work based on the Software, and distribute copies of such work + outside your organization, if you meet all of the following conditions: + 1. Copies in source code must include the copyright notice and this + Software License Agreement; + 2. Copies in binary form must include the copyright notice and this + Software License Agreement in the documentation and/or other + materials provided with the copy; + 3. Modified copies and works based on the Software must carry + prominent notices stating that you changed specified portions of + the Software. + + 5. Portions of the Software resulted from work developed under a + U.S. Government contract and are subject to the following license: + the Government is granted for itself and others acting on its behalf a + paid-up, nonexclusive, irrevocable worldwide license in this computer + software to reproduce, prepare derivative works, and perform publicly and + display publicly. + + 6. WARRANTY DISCLAIMER. THE SOFTWARE IS SUPPLIED "AS IS" WITHOUT WARRANTY OF + ANY KIND. THE COPYRIGHT HOLDERS, THEIR THIRD PARTY LICENSORS, THE UNITED + STATES, THE UNITED STATES DEPARTMENT OF ENERGY, AND THEIR EMPLOYEES: (1) + DISCLAIM ANY WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO + ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, TITLE OR NON-INFRINGEMENT, (2) DO NOT ASSUME ANY LEGAL LIABILITY + OR RESPONSIBILITY FOR THE ACCURACY, COMPLETENESS, OR USEFULNESS OF THE + SOFTWARE, (3) DO NOT REPRESENT THAT USE OF THE SOFTWARE WOULD NOT + INFRINGE PRIVATELY OWNED RIGHTS, (4) DO NOT WARRANT THAT THE SOFTWARE WILL + FUNCTION UNINTERRUPTED, THAT IT IS ERROR-FREE OR THAT ANY ERRORS WILL BE + CORRECTED. + + 7. LIMITATION OF LIABILITY. IN NO EVENT WILL THE COPYRIGHT HOLDERS, THEIR + THIRD PARTY LICENSORS, THE UNITED STATES, THE UNITED STATES DEPARTMENT OF + ENERGY, OR THEIR EMPLOYEES: BE LIABLE FOR ANY INDIRECT, INCIDENTAL, + CONSEQUENTIAL, SPECIAL OR PUNITIVE DAMAGES OF ANY KIND OR NATURE, + INCLUDING BUT NOT LIMITED TO LOSS OF PROFITS OR LOSS OF DATA, FOR ANY + REASON WHATSOEVER, WHETHER SUCH LIABILITY IS ASSERTED ON THE BASIS OF + CONTRACT, TORT (INCLUDING NEGLIGENCE OR STRICT LIABILITY), OR OTHERWISE, + EVEN IF ANY OF SAID PARTIES HAS BEEN WARNED OF THE POSSIBILITY OF SUCH + LOSS OR DAMAGES. diff --git a/Makefile b/Makefile index b9b35ca..036f33e 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ #Makefile at top of application tree TOP = . include $(TOP)/configure/CONFIG -DIRS += configure opticsApp iocBoot +DIRS += configure opticsApp tests opticsApp_DEPEND_DIRS = configure -iocBoot_DEPEND_DIRS = configure opticsApp +tests_DEPEND_DIRS = configure opticsApp include $(TOP)/configure/RULES_TOP diff --git a/README.md b/README.md new file mode 100644 index 0000000..0cb1e8f --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +[![OPTICS](https://github.com/epics-modules/optics/actions/workflows/ci-scripts-build.yml/badge.svg)](https://github.com/epics-modules/optics/actions/workflows/ci-scripts-build.yml) + +# optics +APS BCDA synApps module: optics + +For more information, see + https://epics.anl.gov/bcda/synApps/ + +[Report an issue with optics](https://github.com/epics-modules/optics/issues/new?title=%20ISSUE%20NAME%20HERE&body=**Describe%20the%20issue**%0A%0A**Steps%20to%20reproduce**%0A1.%20Step%20one%0A2.%20Step%20two%0A3.%20Step%20three%0A%0A**Expected%20behaivour**%0A%0A**Actual%20behaviour**%0A%0A**Build%20Environment**%0AArchitecture:%0AEpics%20Base%20Version:%0ADependent%20Module%20Versions:&labels=bug) +[Request a feature](https://github.com/epics-modules/optics/issues/new?title=%20FEATURE%20SHORT%20DESCRIPTION&body=**Feature%20Long%20Description**%0A%0A**Why%20should%20this%20be%20added?**%0A&labels=enhancement) + +* [HTML documentation](https://epics-modules.github.io/optics/) + + +converted from APS SVN repository: Fri Nov 20 17:38:04 CST 2015 + +Regarding the license of tagged versions prior to synApps 4-5, +refer to https://epics.anl.gov/bcda/synApps/license.php diff --git a/configure/CONFIG b/configure/CONFIG index d19db3e..51d106d 100644 --- a/configure/CONFIG +++ b/configure/CONFIG @@ -1,15 +1,31 @@ -#CONFIG -include $(TOP)/configure/CONFIG_APP -# Add any changes to make definitions here - -# At present, base has only 68040 -#CROSS_COMPILER_TARGET_ARCHS = vxWorks-68040 vxWorks-ppc604 -#CROSS_COMPILER_TARGET_ARCHS = vxWorks-68040 - -# Use this when your IOC and the host use different paths -# to access the application. Typically this will be -# used with the Microsoft FTP server or with NFS mounts. Use -# is indicated by failure of the cdCommands script on -# vxWorks. You must rebuild in the iocBoot directory -# before this takes effect. -#IOCS_APPL_TOP = +# CONFIG - Load build configuration data +# +# Do not make changes to this file! + +# Allow user to override where the build rules come from +RULES = $(EPICS_BASE) + +USR_CPPFLAGS += -DUSE_TYPED_RSET + +# RELEASE files point to other application tops +include $(TOP)/configure/RELEASE +-include $(TOP)/configure/RELEASE.$(EPICS_HOST_ARCH).Common +ifdef T_A +-include $(TOP)/configure/RELEASE.Common.$(T_A) +-include $(TOP)/configure/RELEASE.$(EPICS_HOST_ARCH).$(T_A) +endif + +CONFIG = $(RULES)/configure +include $(CONFIG)/CONFIG + +# Override the Base definition: +INSTALL_LOCATION = $(TOP) + +# CONFIG_SITE files contain other build configuration settings +include $(TOP)/configure/CONFIG_SITE +-include $(TOP)/configure/CONFIG_SITE.$(EPICS_HOST_ARCH).Common +ifdef T_A + -include $(TOP)/configure/CONFIG_SITE.Common.$(T_A) + -include $(TOP)/configure/CONFIG_SITE.$(EPICS_HOST_ARCH).$(T_A) +endif + diff --git a/configure/CONFIG_APP b/configure/CONFIG_APP deleted file mode 100644 index b1f4ba1..0000000 --- a/configure/CONFIG_APP +++ /dev/null @@ -1,21 +0,0 @@ -# CONFIG_APP - -include $(TOP)/configure/RELEASE --include $(TOP)/configure/RELEASE.$(EPICS_HOST_ARCH) --include $(TOP)/configure/RELEASE.Common.$(T_A) --include $(TOP)/configure/RELEASE.$(EPICS_HOST_ARCH).$(T_A) - -CONFIG=$(EPICS_BASE)/configure -include $(CONFIG)/CONFIG - -INSTALL_LOCATION = $(TOP) -ifdef INSTALL_LOCATION_APP -INSTALL_LOCATION = $(INSTALL_LOCATION_APP) -endif - -ifdef T_A --include $(TOP)/configure/O.$(T_A)/CONFIG_APP_INCLUDE -endif - -# dbst based database optimization (default: NO) -DB_OPT = NO diff --git a/configure/CONFIG_SITE b/configure/CONFIG_SITE new file mode 100644 index 0000000..744e731 --- /dev/null +++ b/configure/CONFIG_SITE @@ -0,0 +1,43 @@ +# CONFIG_SITE + +# Make any application-specific changes to the EPICS build +# configuration variables in this file. +# +# Host/target specific settings can be specified in files named +# CONFIG_SITE.$(EPICS_HOST_ARCH).Common +# CONFIG_SITE.Common.$(T_A) +# CONFIG_SITE.$(EPICS_HOST_ARCH).$(T_A) + +# CHECK_RELEASE controls the consistency checking of the support +# applications pointed to by the RELEASE* files. +# Normally CHECK_RELEASE should be set to YES. +# Set CHECK_RELEASE to NO to disable checking completely. +# Set CHECK_RELEASE to WARN to perform consistency checking but +# continue building even if conflicts are found. +CHECK_RELEASE = YES + +# Set this when you only want to compile this application +# for a subset of the cross-compiled target architectures +# that Base is built for. +#CROSS_COMPILER_TARGET_ARCHS = vxWorks-ppc32 + +# To install files into a location other than $(TOP) define +# INSTALL_LOCATION here. +#INSTALL_LOCATION= + +# Set this when the IOC and build host use different paths +# to the install location. This may be needed to boot from +# a Microsoft FTP server say, or on some NFS configurations. +#IOCS_APPL_TOP = + +# For application debugging purposes, override the HOST_OPT and/ +# or CROSS_OPT settings from base/configure/CONFIG_SITE +#HOST_OPT = NO +#CROSS_OPT = NO + +# These allow developers to override the CONFIG_SITE variable +# settings without having to modify the configure/CONFIG_SITE +# file itself. +-include $(TOP)/../CONFIG_SITE.local +-include $(TOP)/../configure/CONFIG_SITE.local +-include $(TOP)/configure/CONFIG_SITE.local diff --git a/configure/Makefile b/configure/Makefile index 0317746..9254309 100644 --- a/configure/Makefile +++ b/configure/Makefile @@ -1,15 +1,8 @@ -# Makefile - TOP=.. include $(TOP)/configure/CONFIG -# Set the following to NO to disable consistency checking of -# the support applications defined in $(TOP)/configure/RELEASE -CHECK_RELEASE = YES - TARGETS = $(CONFIG_TARGETS) CONFIGS += $(subst ../,,$(wildcard $(CONFIG_INSTALLS))) include $(TOP)/configure/RULES - diff --git a/configure/RELEASE b/configure/RELEASE index 8d27c59..397e671 100644 --- a/configure/RELEASE +++ b/configure/RELEASE @@ -1,12 +1,32 @@ -# START OF AUTO GENERATED DEPENDENCIES -AUTOSAVE=$(SUPPORT)/autosave/master -CALC=$(SUPPORT)/calc/master -SNCSEQ=$(SUPPORT)/seq/master -SSCAN=$(SUPPORT)/sscan/master -# END OF AUTO GENERATED DEPENDENCIES - -# optional extra local definitions here --include $(TOP)/configure/RELEASE.private - -include $(TOP)/../../../ISIS_CONFIG --include $(TOP)/../../../ISIS_CONFIG.$(EPICS_HOST_ARCH) +#RELEASE Location of external products +# Run "gnumake clean uninstall install" in the application +# top directory each time this file is changed. + +TEMPLATE_TOP=$(EPICS_BASE)/templates/makeBaseApp/top + +SUPPORT=/home/oxygen/MOONEY/epics/synAppsGIT/support + +#If using the sequencer, point SNCSEQ at its top directory: +SNCSEQ=$(SUPPORT)/seq-2-2-3 + +# For transform record (not needed to build) +CALC=$(SUPPORT)/calc-3-6-1 + +# For busy record (not needed to build) +BUSY=$(SUPPORT)/busy-1-6-1 + +# for serial support +ASYN=$(SUPPORT)/asyn-R4-30 + +# EPICS_BASE usually appears last so other apps can override stuff: +EPICS_BASE=/home/oxygen/MOONEY/epics/base-3.15.4 + +#Capfast users may need the following definitions +#CAPFAST_TEMPLATES= +#SCH2EDIF_PATH= + +# These lines allow developers to override these RELEASE settings +# without having to modify this file directly. +-include $(TOP)/../RELEASE.local +-include $(TOP)/../RELEASE.$(EPICS_HOST_ARCH).local +-include $(TOP)/configure/RELEASE.local diff --git a/configure/RULES b/configure/RULES index ffee54a..6d56e14 100644 --- a/configure/RULES +++ b/configure/RULES @@ -1,5 +1,6 @@ -#CONFIG -include $(EPICS_BASE)/configure/RULES +# RULES + +include $(CONFIG)/RULES # Library should be rebuilt because LIBOBJS may have changed. $(LIBNAME): ../Makefile diff --git a/configure/RULES.ioc b/configure/RULES.ioc index 5ba1013..901987c 100644 --- a/configure/RULES.ioc +++ b/configure/RULES.ioc @@ -1,2 +1,2 @@ #RULES.ioc -include $(EPICS_BASE)/configure/RULES.ioc +include $(CONFIG)/RULES.ioc diff --git a/configure/RULES_DIRS b/configure/RULES_DIRS index 804faee..3ba269d 100644 --- a/configure/RULES_DIRS +++ b/configure/RULES_DIRS @@ -1,2 +1,2 @@ #RULES_DIRS -include $(EPICS_BASE)/configure/RULES_DIRS +include $(CONFIG)/RULES_DIRS diff --git a/configure/RULES_TOP b/configure/RULES_TOP index 0620f08..d09d668 100644 --- a/configure/RULES_TOP +++ b/configure/RULES_TOP @@ -1,3 +1,3 @@ #RULES_TOP -include $(EPICS_BASE)/configure/RULES_TOP +include $(CONFIG)/RULES_TOP diff --git a/documentation/2filter.adl.jpg b/docs/2filter.adl.jpg similarity index 100% rename from documentation/2filter.adl.jpg rename to docs/2filter.adl.jpg diff --git a/documentation/2filter_setup.adl.jpg b/docs/2filter_setup.adl.jpg similarity index 100% rename from documentation/2filter_setup.adl.jpg rename to docs/2filter_setup.adl.jpg diff --git a/documentation/2postMirror.adl.jpg b/docs/2postMirror.adl.jpg similarity index 100% rename from documentation/2postMirror.adl.jpg rename to docs/2postMirror.adl.jpg diff --git a/documentation/2slit.adl.jpg b/docs/2slit.adl.jpg similarity index 100% rename from documentation/2slit.adl.jpg rename to docs/2slit.adl.jpg diff --git a/documentation/4slitGraphic.adl.jpg b/docs/4slitGraphic.adl.jpg similarity index 100% rename from documentation/4slitGraphic.adl.jpg rename to docs/4slitGraphic.adl.jpg diff --git a/documentation/Io.adl.jpg b/docs/Io.adl.jpg similarity index 100% rename from documentation/Io.adl.jpg rename to docs/Io.adl.jpg diff --git a/documentation/Io_small.adl.jpg b/docs/Io_small.adl.jpg similarity index 100% rename from documentation/Io_small.adl.jpg rename to docs/Io_small.adl.jpg diff --git a/docs/MLLH.adl.jpg b/docs/MLLH.adl.jpg new file mode 100644 index 0000000..4900163 Binary files /dev/null and b/docs/MLLH.adl.jpg differ diff --git a/docs/MLLV.adl.jpg b/docs/MLLV.adl.jpg new file mode 100644 index 0000000..0a00e5a Binary files /dev/null and b/docs/MLLV.adl.jpg differ diff --git a/documentation/SGM.adl.jpg b/docs/SGM.adl.jpg similarity index 100% rename from documentation/SGM.adl.jpg rename to docs/SGM.adl.jpg diff --git a/documentation/SGM_gratings.adl.jpg b/docs/SGM_gratings.adl.jpg similarity index 100% rename from documentation/SGM_gratings.adl.jpg rename to docs/SGM_gratings.adl.jpg diff --git a/documentation/SGM_tiny.adl.jpg b/docs/SGM_tiny.adl.jpg similarity index 100% rename from documentation/SGM_tiny.adl.jpg rename to docs/SGM_tiny.adl.jpg diff --git a/docs/VirtualChannelCutMono_Si_1.pdf b/docs/VirtualChannelCutMono_Si_1.pdf new file mode 100644 index 0000000..c77a760 Binary files /dev/null and b/docs/VirtualChannelCutMono_Si_1.pdf differ diff --git a/docs/_config.yml b/docs/_config.yml new file mode 100644 index 0000000..1365d3d --- /dev/null +++ b/docs/_config.yml @@ -0,0 +1 @@ +remote_theme: BCDA-APS/bcda-pages-style diff --git a/documentation/colorLine.gif b/docs/colorLine.gif similarity index 100% rename from documentation/colorLine.gif rename to docs/colorLine.gif diff --git a/docs/fb_epid/docv1.md b/docs/fb_epid/docv1.md new file mode 100644 index 0000000..b1a74f1 --- /dev/null +++ b/docs/fb_epid/docv1.md @@ -0,0 +1,35 @@ +--- +layout: default +title: Usage +parent: EPID Feedback +nav_order: 1 +--- + + +Use of the EPID record for feedback at UNICAT +============================================== + +Pete R. Jemian Wednesday, June 23, 2004 , 3:41:40 PM + +A swait (calculation) record was used to simulate a crystal reflection (Lorentzian peak shape) and to calculate the response of the crystal to different parameters using EPICS records. The various analog output ( ao ) records are used (by name) as inputs to the swait record. A state notation (SNL) program was written to generate Gaussian-probability (zero mean, unit standard deviation) random numbers to simulate experimental noise. The ideal position of the reflection is also adjusted by the SNL program to simulate drift in the ideal tuning position for the crystal element. An additional Gaussian random number was used to provide a small amplitude of jitter to the ideal position. + +![EPID response calculations](docv1_clip_image002.jpg) + +An epid record provides the means to drive the pseudo-positioner in a closed feedback loop. The epid record can be operated in either a *hold constant* (PID control) mode or a maximize (minimize) mode. In the latter mode, negative input signals will be minimized while positive signals will be maximized. Consider that the software will only maximize the absolute value of the input signal. The next screen shows a working configuration for maximizing the signal generated by the previously-shown calculation. + +![EPID test panel](docv1_clip_image004.jpg) + +One limitation of the epid record is that the output link must be a database link. Therefore, it must be defined in the database at boot time, although the string is changeable at run time. (Why is this?) Circumventing this presumed limitation, a swait record (next picture) has been programmed to pick up the calculation value from the epid record and pass it to the chosen positioner, provided that the epid record feedback mode has been turned on. + +![EPID position calculation](docv1_clip_image006.jpg) + +### Comments +Some packaging remains to be completed in order to use the epid record for routine software feedback and replace the existing software feedback. Features of that packaging might include: +- Automatic on/off mode when input signal is out of range +- User selection of input signal(s) +- User selection of positioner +- Preservation of separate tuning parameters for FMOD=PID and FMOD=Max/Min +- When in Max/Min mode, automatic update of set point to maximum (minimum) +- Scan of positioner through user-specified range to locate peak ( scan record?) +- EGU, PREC, DRVH, DRVL fields come from positioner +- Support HOPR and LOPR on the GUI screen diff --git a/documentation/fb_epid/docv1_clip_image002.jpg b/docs/fb_epid/docv1_clip_image002.jpg similarity index 100% rename from documentation/fb_epid/docv1_clip_image002.jpg rename to docs/fb_epid/docv1_clip_image002.jpg diff --git a/documentation/fb_epid/docv1_clip_image004.jpg b/docs/fb_epid/docv1_clip_image004.jpg similarity index 100% rename from documentation/fb_epid/docv1_clip_image004.jpg rename to docs/fb_epid/docv1_clip_image004.jpg diff --git a/documentation/fb_epid/docv1_clip_image006.jpg b/docs/fb_epid/docv1_clip_image006.jpg similarity index 100% rename from documentation/fb_epid/docv1_clip_image006.jpg rename to docs/fb_epid/docv1_clip_image006.jpg diff --git a/documentation/fb_epid/fb_epid.png b/docs/fb_epid/fb_epid.png similarity index 100% rename from documentation/fb_epid/fb_epid.png rename to docs/fb_epid/fb_epid.png diff --git a/documentation/fb_epid/fb_epid_adl.png b/docs/fb_epid/fb_epid_adl.png similarity index 100% rename from documentation/fb_epid/fb_epid_adl.png rename to docs/fb_epid/fb_epid_adl.png diff --git a/documentation/fb_epid/fb_epid_basic_adl.png b/docs/fb_epid/fb_epid_basic_adl.png similarity index 100% rename from documentation/fb_epid/fb_epid_basic_adl.png rename to docs/fb_epid/fb_epid_basic_adl.png diff --git a/documentation/fb_epid/fb_epid_chart_adl.png b/docs/fb_epid/fb_epid_chart_adl.png similarity index 100% rename from documentation/fb_epid/fb_epid_chart_adl.png rename to docs/fb_epid/fb_epid_chart_adl.png diff --git a/documentation/fb_epid/fb_epid_config_adl.png b/docs/fb_epid/fb_epid_config_adl.png old mode 100755 new mode 100644 similarity index 100% rename from documentation/fb_epid/fb_epid_config_adl.png rename to docs/fb_epid/fb_epid_config_adl.png diff --git a/documentation/fb_epid/fb_epid_sim_adl.png b/docs/fb_epid/fb_epid_sim_adl.png similarity index 100% rename from documentation/fb_epid/fb_epid_sim_adl.png rename to docs/fb_epid/fb_epid_sim_adl.png diff --git a/docs/fb_epid/index.md b/docs/fb_epid/index.md new file mode 100644 index 0000000..1893b61 --- /dev/null +++ b/docs/fb_epid/index.md @@ -0,0 +1,741 @@ +--- +layout: default +title: EPID Feedback +nav_order: 6 +has_children: true +--- + + +EPICS fb\_epid feedback controls +================================ + +| __Purpose__ | use the EPICS epid [\[2\]](#epid) record for generic software feedback | +| __Author__ | Pete R. Jemian | +| __SVN__ | $Id$ | + +Contents + +- [1 Overview](#overview) + - [1.1 Theory of operation](#theory-of-operation) +- [2 Installation](#installation) + - [2.1 modify the IOC's st.cmd file](#modify-the-ioc-s-st-cmd-file) + - [2.2 add fb\_epid.substitutions file](#id6) + - [2.2.1 Macro substitutions in the fb\_epid.db file](#macro-substitutions-in-the-fb-epid-db-file) + - [2.3 modify auto\_settings.req file](#id7) + - [2.4 add configuration to GUI to access the new support](#id8) + - [2.4.1 Macro substitutions in the fb\_epid.adl file](#macro-substitutions-in-the-fb-epid-adl-file) +- [3 Use](#use) + - [3.1 MEDM screens](#medm-screens) + - [3.1.1 fb\_epid main control screen](#fb-epid-main-control-screen) + - [3.1.2 fb\_epid basic control screen](#fb-epid-basic-control-screen) + - [3.1.3 fb\_epid configuration screen](#fb-epid-configuration-screen) + - [3.1.4 fb\_epid chart screen](#fb-epid-chart-screen) + - [3.1.5 fb\_epid simulator control screen](#fb-epid-simulator-control-screen) + - [3.2 Setup of the calculations](#setup-of-the-calculations) + - [3.2.1 Setting the enable calculation](#setting-the-enable-calculation) + - [3.2.2 Setting the input calculation](#setting-the-input-calculation) + - [3.2.3 Setting the limits on the output](#setting-the-limits-on-the-output) + - [3.3 Tuning of the epid record](#tuning-of-the-epid-record) + - [3.3.1 Max/Min mode](#max-min-mode) + - [3.3.2 PID mode](#pid-mode) + - [3.4 Example using the simulator](#example-using-the-simulator) + - [3.5 Example DCM feedback from X-ray Beam Position Monitor](#example-dcm-feedback-from-x-ray-beam-position-monitor) + - [3.6 Example Monochromator feedback from beam intensity monitor](#example-monochromator-feedback-from-beam-intensity-monitor) + - [3.7 Previous observations During Initial Development](#previous-observations-during-initial-development) +- [4 Infrastructure](#infrastructure) + - [4.1 Structure of the EPICS Database](#structure-of-the-epics-database) + - [4.2 Simulator](#simulator) + + +[1 Overview](#id13) +=================== + +The fb\_epid support provides a database centered around the EPICS epid [\[2\]](#epid) record. The versatility of the fb\_epid support lies in the various calculations that can be reconfigured by the user while the IOC is operating. These calculations allow the user to configure the input and output of the PID loop, as well as to apply complex conditions on when the PID loop should be allowed to drive the output or be switched off. + +The fb\_epid support is part of the synApps [\[6\]](#synapps)optics [\[4\]](#optics) module. + +[1.1 Theory of operation](#id14) +-------------------------------- + +1. A signal is provided as an EPICS process variable (macro parameter IN). The signal source can be in the same IOC with the feedback software or in another EPICS IOC available on the network. The variable should be a floating point. (In principle, it *could* be an integer but the feedback may not be so smooth.) +2. The input calculation (swait record) provides some flexibility for conditioning the input signal to the feedback. +3. An epid record provides real-time feedback and recalculate the output variable. +4. The output from the epid record is buffered by the obufcalculation which watches the Feedback ON (FBON) switch and retains the previous output value if the feedback software is switched off. +5. The output calculation allows some flexibility for conditioning the output signal to the positioner (OUT). The conditioned epid result is pushed to the positioner. +6. A positioner responds to the result from the epid record and thus further modifies the input signal. +7. The feedback can be switched on manually or automatically, subject to the logic of some other calculation (CALC). For example, a shutter closed signal could suspend feedback. In this case, the output is not driven. +8. When the feedback is switched on, the positioner should not jerk to a different position. The feedback software must be prepared to start moving the positioner from its present location. + + + + + +[2 Installation](#id15) +======================= + +Install one instance of this database for each feedback channel. If two different methods for feedback are desired for a given axis, create two instances of this database. See below for details of these configurations. + +> Clever adjustments to the enable calculations can allow for automated switching, if that is desired. For example, at APS beam line 33ID for feedback of the DCM crystal 2 PZT, one instance would use the XBPM *y* position signal while another instance would use the D3 graphite foil intensity as input signals. Both would be configured to drive the DCM second crystal PZT. Choice of the *active* fb\_epid instance was obtained by adding values to the enable calculation, watching the FBON field of the other feedback. + +Follow these steps to install the fb\_epid support: + +1. [modify the st.cmd file](#modify-the-st-cmd-file) +2. [add fb\_epid.substitutions file](#add-fb-epid-substitutions-file) +3. [modify auto\_settings.req file](#modify-auto-settings-req-file) +4. [add configuration to GUI to access the new support](#add-configuration-to-gui-to-access-the-new-support) + +[2.1 modify the IOC's st.cmd file](#id16) +----------------------------------------- + +To install this software, make changes in the IOC's st.cmd file, adding this line anywhere between the calls to dbLoadDatabase and iocInit: + +``` +### PID_based feedback +dbLoadTemplate("fb_epid.substitutions") +``` + + + +[2.2 add fb\_epid.substitutions file](#id17) +-------------------------------------------- + +Create the fb\_epid.substitutions file in the same directory as st.cmd with content such as: + +``` +file "$(OPTICS)/opticsApp/Db/fb_epid.db" + { + { + P=xxx:epid1, + IN=xxx:epid1:sim.VAL, + OUT=xxx:epid1:sim.D, + MODE=PID, + CALC=A, + PERMIT1="xxx:epid1:on.VAL", + PERMIT2="", + PERMIT3="", + PERMIT4="" + } + } + +``` + +### [2.2.1 Macro substitutions in the fb\_epid.db file](#id18) + +There are several macro substitutions in the fb\_epid support database (fb\_epid.db) to simplify its installation . + +| macro | description | +|---|---| +| $(P) | Prefix for this instance of this database. Note that $(P):in.INAN holds PV name of input PV (by default) | +| $(IN) | PV name: input signal | +| $(OUT) | PV name: output positioner | +| $(MODE) | either PID or Max/Min | +| $(CALC) | string: actual calculation to go in $(P):enable.CALC, - 1=feedback on - 0=feedback off A trivial value might be "A" which only watches the value of $(P):on. | +| $(PERMIT1) | PV name: boolean value to permit operations; value becomes $(P):enable.B | +| $(PERMIT2) | PV name: boolean value to permit operations; value becomes $(P):enable.C | +| $(PERMIT3) | PV name: boolean value to permit operations; value becomes $(P):enable.D | +| $(PERMIT4) | PV name: boolean value to permit operations; value becomes $(P):enable.E | + + + + + +[2.3 modify auto\_settings.req file](#id19) +------------------------------------------- + +To ensure that changed values will be restored after reboot, add lines such as this to the auto\_settings.req file (usually found in the same directory with the st.cmd file). + +``` +### PID_based feedback +file fb_epid.req P=$(P)epid1 +``` + + + +[2.4 add configuration to GUI to access the new support](#id20) +--------------------------------------------------------------- + +Add commands to the GUI displays to call each configured instance of the fb\_epid support. Such as this *related display*widget in MEDM: + +``` +"related display" { + object { + x=10 + y=10 + width=70 + height=20 + } + display[0] { + label="fb_epid" + name="fb_epid.adl" + args="P=prj:epid1" + } + display[1] { + label="simulator" + name="fb_epid_sim.adl" + args="P=prj:epid1,C=sim" + } + clr=0 + bclr=17 + label="-prj:epid1" +} +``` + +Or start MEDM using a command line such as: + +``` +medm -x -macro "P=prj:epid1" fb_epid.adl & +``` + +### [2.4.1 Macro substitutions in the fb\_epid.adl file](#id21) + +For the MEDM provided, the macro substitutions are: + +| macro | description | +|---|---| +| $(P) | Prefix for this instance of support. | + + + +[3 Use](#id22) +============== + +Once the software has been installed (IOC configured with database and autosave/restore configured to retain settings across restarts of the IOC), some careful setup needs to happen before the software is ready to be used. + +First, it is necessary to identify the EPICS PVs for the control variable (such as a positioner or the power to a heating element) and the signal variable (the PV that is sampled for the PID loop). These may have been configured in the IOC but it is possible to change them while the IOC is running. They can be changed without need to recompile or restart the EPICS IOC. + +To avoid any unexpected consequences, be sure the fb\_epidsoftware is switched off before changing any PVs or changing between modes of operation. In the MEDM screen, in the EPID output section, press the button marked off. + +It is most important to make sure that the input signal is updated faster than the recalculation interval for the fb\_epidsoftware or instability will occur. A factor of 3 to 10 input updates per output update is reasonable. The output will be updated each time the epid is processed. + +[3.1 MEDM screens](#id23) +------------------------- + +The features of the fb\_epid software are accessed from the main control screen in MEDM: fb\_epid.adl. Controls for the [Simulator](#simulator) are provided from a fb\_epid\_sim.adl screen. + +### [3.1.1 fb\_epid main control screen](#id24) + +The MEDM screen provides access to all the controls of the epid [\[2\]](#epid) record. To add some flexibility for configuration at run time by beam line users, an EPICS interface database has been created. The user can change the input variable(s) through a calculation (swait [\[5\]](#swait) record). + +![main MEDM control screen](fb_epid_adl.png) +Figure: Main fb\_epid control screen + + + +Control of the output variable will be permitted between the software limits shown at the bottom of the control screen. From the output calc, it is possible to change the PV which will be directed by this database. + +The enable calculation can be used to provide automated on/off features with details specific to the particular installation. + + + +### [3.1.2 fb\_epid basic control screen](#id25) + +There are many controls on the main screen. For routine operations, it may be more desirable to display just the basic controls (and less of the tuning infrastructure). + +![basic MEDM control screen](fb_epid_basic_adl.png) +Figure: Basic fb\_epid control screen + + + + + +### [3.1.3 fb\_epid configuration screen](#id26) + +The configuration screen provides top-level access to the main components that must be addressed for basic configuration. Note that advanced situations must use the calculation screens to access the complete interfaces of the swait records. + +![``fb_epid`` configuration screen](fb_epid_config_adl.png) +Figure: fb\_epid configuration screen + + + +Caution! + +The buttons marked *output buffer calc* and *resume calc* in the lower right corner are for internal use only. __Do not change anything on these screens.__ + + + + + +### [3.1.4 fb\_epid chart screen](#id27) + +The chart screen provides a view to the recent progress. There are two strip charts (value v. time). The upper chart shows the set point (.VAL) and current value (.CVAL). The lower chart shows the following error (.ERR). + +Note + +The limits on the two charts need to be set before this screen is of any real use. Right-click and select "PV limits" from the pop-up menu. Don't forget to apply any changes. + + + +![``fb_epid`` chart screen](fb_epid_chart_adl.png) +Figure: fb\_epid configuration screen + + + + + +### [3.1.5 fb\_epid simulator control screen](#id28) + +The main control screen for the [Simulator](#simulator) is shown: + +![main MEDM control screen for simulator](fb_epid_sim_adl.png) +Figure: fb\_epid temperature simulator controls + + + + + + + +[3.2 Setup of the calculations](#id29) +-------------------------------------- + +As stated above, the versatility of the fb\_epid support lies in the various calculations that can be reconfigured by the user while the IOC is operating. + +### [3.2.1 Setting the enable calculation](#id30) + +The operation of fb\_epid is permitted when the result of the enable calculation is 1.0. The first, obvious, choice is that bo record is provided to the user to switch the fb\_epid software on and off. But the software should also disable itself when the input signal goes out of range or also due to some other operating parameters. + +> Other factors can be built into the enable calculation. For example, on undulator beam lines, it is not useful to run the feedback if the undulator is not operating (gap is closed or magnets are energized). In such a case, monitor the PV for the undulator gap (APS undulator A) and enable only if the gap is below some reasonable number such as 50 mm. + +One should also factor the fb\_epid input signal into the enable calculation by checking that is within a valid operating range. + + + +### [3.2.2 Setting the input calculation](#id31) + +It is possible to perform limited math on the input signal to be used. For example, when the goal is to maximize the conductance through a crystal pair, such as a monochromator, the best signal would be a ratio between detector immediately before and after the pair of crystals. The control variable would be the rotation angle of either of the two crystals (usually a fine rotation of the second crystal). The input calculation would then monitor the PVs for both detectors and calculate the ratio of the two: A/B. In this example, it would also be useful to include the PV of this calculation in the enable calculation and ensure that the ratio is acceptable. + + + +### [3.2.3 Setting the limits on the output](#id32) + +To prevent the epid record from driving the control variable out of bounds, there are limits for low and high (using the epid record's .DRVL and .DRVH field). The epid record software will not allow the positioner to drive outside of these limits. + + + + + +[3.3 Tuning of the epid record](#id33) +-------------------------------------- + +In the epid record documentation [\[2\]](#epid), there is a special discussion on feedback tuning in PID mode. Refer to the documentation for more information on the EPICS epid record. + +The epid record can run in either Max/Min or PID mode. Max/Min is used to maximize a positive input signal or minimize a negative input signal such as from a beam line detector. PID mode is used to keep the input signal at constant value such as holding a sample's temperature constant. + +### [3.3.1 Max/Min mode](#id34) + +Max/Min mode is useful for monochromator feedback or other situations where a positive signal is to be maximized (or a negative signal is to be minimized). The online epid record documentation is lacking details about this mode so one is referred to inspecting the source code [\[3\]](#epid-source). + +Note + +In Max/Min mode, the Set Point is ignored. + + + + + +### [3.3.2 PID mode](#id35) + +PID mode is useful for holding the input signal to the *Set Point* by adjusting the control variable. The epid record documentation provides a good description of how to set the PID constants. + + + + + +[3.4 Example using the simulator](#id36) +---------------------------------------- + +An example demonstrating the simulator is provided in the [simulator documentation](simulator.html). + + + +[3.5 Example DCM feedback from X-ray Beam Position Monitor](#id37) +------------------------------------------------------------------ + +Consider the case of an X-ray beam line with a double crystal monochromator (DCM) and an X-ray Beam Position Monitor (XBPM) after the DCM. The XBPM provides a signal that can be used to maintain the throughput of the DCM if the DCM allows an adjustment of either first or second crystal Bragg rotation independent of the other crystal. + +For synchrotron beam lines, the vertical position from the XBPM provides the input signal to the epid loop. The DCM often has a piezoelectric transducer (PZT) that is used to control the fine rotation of the second crystal. The second crystal rotation is controlled by a low voltage (such as -2 .. +9 VDC) sent to the PZT's amplifier. (The purpose of this amplifier is to supply the operating voltage to the PZT and optionally account for the hysteresis of the PZT as used in positioner applications.) + +This example shows the startup configuration used to maintain the XBPM vertical beam position by controlling the DCM second crystal PZT voltage. + +| macro | configured value | meaning | +|---|---|---| +| P | iad:fbe:xbpm:y | PV of this fb\_epid instance | +| IN | iad:xbpm:pos:y | Y position from the XBPM | +| OUT | iad:540:c0:out0 | control voltage of the PZT | +| MODE | PID | hold position steady using PID | +| CALC | A&&B&&C | only when EPID is ON and both permits | +| PERMIT1 | iad:beamAvailable.VAL | require X-ray beam to be ready | +| PERMIT2 | iad:xbpm:current:ok.VAL | require XBPM signal to be valid | +| PERMIT3 | | unused | +| PERMIT4 | | unused | + + + +[3.6 Example Monochromator feedback from beam intensity monitor](#id38) +----------------------------------------------------------------------- + +Consider another beam line with a DCM and then a monitor of the beam intensity (reported as a floating-point or large integer number). A list of suitable such monitors might include ionization chambers graphite foils, or fluorescent materials with photodiodes. + +| macro | configured value | meaning | +|---|---|---| +| P | iad:fbe:D3:y | PV of this fb\_epid instance | +| IN | iad:540:c0:in10 | signal from the beam intensity monitor | +| OUT | iad:540:c0:out0 | control voltage of the PZT | +| MODE | Max/Min | maximize beam intensity | +| CALC | A&&B | only when EPID is ON and one permit | +| PERMIT1 | iad:beamAvailable.VAL | require X-ray beam to be ready | +| PERMIT2 | | unused | +| PERMIT3 | | unused | +| PERMIT4 | | unused | + + + +[3.7 Previous observations During Initial Development](#id39) +------------------------------------------------------------- + +Notes from the early stages of development show motivations for the construction of this database support. + +1. [Notes from initial epid record testing in 2004-06](tests/index.html) +2. [Early notes on the fb\_epid support from 2004-06](docv1.html) + + + + + +[4 Infrastructure](#id40) +========================= + +The fb\_epid support consists of several components: + +| file | description | +|---|---| +| opticsApp/Db/fb\_epid.db | EPICS database | +| opticsApp/Db/fb\_epid.req | request file for autosave/restore | +| opticsApp/Db/epid.req | request file for autosave/restore | +| iocBoot/iocAny/fb\_epid.substitutions | creates specific instances | +| opticsApp/op/adl/fb\_epid.adl | main MEDM screen | +| opticsApp/op/adl/fb\_epid\_basic.adl | basic MEDM screen | +| opticsApp/op/adl/fb\_epid\_chart.adl | charts VAL and CVAL, also ERR | +| opticsApp/op/adl/fb\_epid\_config.adl | simplified configuration screen | +| opticsApp/op/adl/fb\_epid\_sim.adl | simulator controls | +| documentation/fb\_epid/index.html | documentation | + +[4.1 Structure of the EPICS Database](#id41) +-------------------------------------------- + +The EPICS database was constructed in 2004. The records of the database are defined in this table: + +| record type | name | description | +|---|---|---| +| epid | $(P) | Epid record instance | +| swait | $(P):in | Input signal collector | +| swait | $(P):obuf | Enforces $(P).FBON to disconnect epid record from output so $(OUT) is not changed | +| swait | $(P):out | Output signal collector | +| sseq | $(P):outpv | Part of bumpless start feature | +| swait | $(P):resume | Part of bumpless start feature | +| bo | $(P):on | User switch to turn epid ON or OFF | +| swait | $(P):enable | Automatic ON/OFF feature | +| swait | $(P):sim | Simulated temperature reading and heater | + +A figure was produced to show how these records are connected. Note that the simulator record ($(P):sim)is not shown in this figure. + +![structure of fb_epid database](fb_epid.png)Figure: Structure of the fb\_epid database + + + +The database file has many comments. The text of the file is included here: + +``` +########### SVN repository information ################### +# $Date$ +# $Author$ +# $Revision$ +# $URL$ +# $Id$ +########### SVN repository information ################### +# +# file: fb_epid.db +# purpose: use the epid record for software feedback + +#------------------------------------------ +# P prefix for this instance of this database +#------------------------------------------ +# $(P):in.INAN holds PV name of input PV (by default) +# $(IN) PV name: input signal +# $(OUT) PV name: output positioner +# $(MODE) choice: PID or Max/Min +# $(CALC) string: calculation, 1=feedback on, 0=feedback off +# $(PERMIT1) PV name: boolean value to permit operations +# $(PERMIT2) PV name: boolean value to permit operations +# $(PERMIT3) PV name: boolean value to permit operations +# $(PERMIT4) PV name: boolean value to permit operations + +# Use on instance of this database for each feedback channel. +# If two different methods for feedback are desired +# for a given axis, call two instances of this database. +# For example, on 33ID for feedback of the DCM crystal 2 PZT, +# one might choose either the XBPM position signal or the +# D3 graphite foil intensity to drive the PZT position. +# +# These might be the XBPM position feedback terms: +# P = iad:fbe:xbpm:y +# IN = iad:xbpm:pos:y +# OUT = iad:540:c0:out0 +# MODE = PID +# CALC = A&&B&&C +# PERMIT1 = iad:beamAvailable.VAL +# PERMIT2 = iad:xbpm:current:ok.VAL +# PERMIT3 = +# PERMIT4 = +# +# These might be the D3 foil feedback terms: +# P = iad:fbe:D3:y +# IN = iad:540:c0:in10 +# OUT = iad:540:c0:out0 +# MODE = Max/Min +# CALC = A&&B +# PERMIT1 = iad:beamAvailable.VAL +# PERMIT2 = +# PERMIT3 = +# PERMIT4 = + +# For each channel: +# signal(ao or other) +# -> in(swait) +# --> epid +# ---> obuf(swait) +# ----> out(swait) +# -----> positioner(motor or ao) + +# Theory of operation: +# 1. A signal is available as an EPICS process variable. +# The signal source can be in the VME with the feedback software +# or in another VME available on the local network. +# 2. An input calculation (swait record) is used to allow some +# flexibility for conditioning the input signal to the feedback. +# 3. An epid record is used to provide real-time feedback +# and recalculate the output variable. +# 4. The output from the epid record is buffered by +# the outbuf calculation which watches the Feedback ON (FBON) +# switch and retains the previous output value if the feedback +# software is switched off. +# 5. An output calculation is used to allow some flexibility +# for conditioning the output signal to the positioner. +# The conditioned epid result is pushed to the positioner. +# 6. A positioner responds to the result from the epid record +# and thus further modifies the input signal. +# 7. The feedback can be switched on manually, subject to +# the logic of some other calculation. For example, +# shutter closed could suspend feedback. In this case, +# the output is not driven. +# 8. When the feedback is switched on, the positioner should +# not jerk to a different position. The feedback software +# must be prepared to start moving the positioner from its +# present location. + +# References +# epid http://cars9.uchicago.edu/software/epics/epidRecord.html +# swait http://www.aps.anl.gov/bcda/synApps/calc/swaitRecord.html +# PID tuning see the epid documentation (above) + +#------------------------------------------ + + # + # epid record to actually calculate the + # feedback response to the input + # +grecord(epid, "$(P)") { + field(DESC, "EPID feedback") + field(INP, "$(P):in") + field(FMOD, "$(MODE)") + field(FBON, "Off") + field(SCAN, "Passive") + field(KP, "0") + field(KI, "0") + field(KD, "0") + field(I, "0") + field(DRVL, "0") + field(DRVH, "0") + field(EGU, "feedback") + field(PREC, "4") +} + # + # Input calculation to the epid record + # Users can adjust the input based on a simple calculation + # or a more complex database resulting in this simple calculation + # By default, $(P):in.INAN is the PV name of the input signal + # +grecord(swait, "$(P):in") { + field(DESC, "EPID feedback input") + field(PREC, "5") + field(SCAN, "I/O Intr") + field(CALC, "A") + field(INAN, "$(IN)") + field(INAP, "1") +} + # + # Output buffer from epid record + # This record overcomes a limitation observed in the + # epid record when $(P).FBON=0 but $(P).OVAL is changed anyway. + # In this record, $(P):obuf.VAL will not change when $(P).FBON=0 + # +grecord(swait, "$(P):obuf") { + field(DESC, "EPID FBON output buffer") + field(PREC, "5") + field(SCAN, "I/O Intr") + field(CALC, "B?A:C") + field(INAN, "$(P).OVAL") + field(INAP, "1") + field(INBN, "$(P).FBON") + field(INBP, "1") + field(INCN, "$(P):obuf.VAL") + field(INCP, "1") +} + # + # Provide the output from the epid record (through the output buffer) + # The intent here is to provide the user with a means + # of modifying the output signal from the epid record. + # Whether or not this is a good idea remains to be seen. + # This record pulls the value from $(P):obuf + # $(P):out.OUTN holds the PV name of the output positioner. + # + # Instead, could make this a seq record, eliminating the calculation. + # +grecord(swait, "$(P):out") { + field(DESC, "EPID feedback output") + field(PREC, "5") + field(SCAN, "I/O Intr") + field(CALC, "A") + field(INAN, "$(P):obuf.VAL") + field(INAP, "1") + field(OUTN, "$(OUT)") +} + + # + # bumpless start feature + # + # When $(P).FBON transitions from 0 to 1 (as feedback starts up), + # it is necessary to grab the current value of the + # output positioner and push it into $(P).I + # However, since the user might change $(P):out.OUTN, + # $(P):outpv detects this change and rewrites $(P):resume.INBN. + # $(P):resume.INBN holds the PV name of the output positioner + # +grecord(sseq, "$(P):outpv") { + field(DESC, "follow OUT PV name") + field(SCAN, "I/O Intr") + field(DOL1, "$(P):out.OUTN") + field(DLY1, "0") + field(LNK1, "$(P):resume.INBN") +} +grecord(swait, "$(P):resume") { + field(DESC, "EPID feedback input") + field(PREC, "5") + field(SCAN, "I/O Intr") + field(CALC, "!C&&D?B:A") + field(INAN, "$(P):resume.VAL") + field(INAP, "1") + field(INBN, "$(OUT)") + field(INBP, "1") + field(INCN, "$(P):resume.D") + field(INCP, "0") + field(INDN, "$(P).FBON") + field(INDP, "1") + field(OOPT, "On Change") + field(OUTN, "$(P).I") +} + + # + # permit + # + # Sometimes, the feedback software must be suspended. + # This must happen automatically, based on some + # simple calculation or a more complex database + # resulting in this simple calculation. + # $(P):enable drives the $(P).FBON field + # +grecord(bo, "$(P):on") +{ + field(DESC, "off/on") + field(ZNAM, "off") + field(ONAM, "on") +} +grecord(swait, "$(P):enable") { + field(DESC, "EPID feedback permit") + field(PREC, "5") + field(SCAN, "I/O Intr") + field(CALC, "A&&B") + field(INAN, "$(P):on.VAL") + field(INAP, "1") + field(INBN, "$(PERMIT1)") + field(INBP, "1") + field(INCN, "$(PERMIT2)") + field(INCP, "1") + field(INDN, "$(PERMIT3)") + field(INDP, "1") + field(INEN, "$(PERMIT4)") + field(INEP, "1") + field(OOPT, "On Change") + # drive the epid FBON field + field(OUTN, "$(P).FBON") +} + + +#-------------------------------------------- +# simulate a temperature sensor and heater +#---------------------- +# A : minimum "temperature" allowed +# B : cooling rate parameter +# C : heater power +# D : output of PID loop +# E : heater relay closes when D > E +# F : current "temperature" +#---------------------- +# PID loop terms: +# $(P):in.INAN = "$(P):sim" +# $(P):out.OUTN = "$(P):sim.D" +# $(P):enable.INAN = "$(P):on.VAL" +# $(P).KP = "0.01" +# $(P).KI = "0.1" +# $(P).I = "0.0" +# $(P).KD = "0.0" +# $(P).DRVL = "0.0" +# $(P).DRVH = "1.0" +# $(P).FMOD = "PID" +#---------------------- +grecord(swait, "$(P):sim") { + field(DESC, "EPID Temperature Controller simulator") + field(PREC, "5") + field(SCAN, ".1 second") + field(CALC, "max(A,F*(1-B)+C*D*G)") + field(A, "0.1") # minimum "temperature" + field(B, "0.05") # cooling rate parameter + field(C, "30") # heater power + field(D, "0") # driven by epid loop + field(E, "0.8") # relay close threshold + field(INFN, "$(P):sim.VAL") + field(INGN, "$(P).FBON")# is feedback ON? +} + +``` + + + +[4.2 Simulator](#id42) +---------------------- + +To help learn how to use the fb\_epid support, an swait record was added to simulate the temperature reading of an object that is exposed to some cooling power. A heater with adjustable power may applied, either as adjustable power or as a switched power. + +Documentation of the simulator is provided on a [related page](simulator.html). + +Footnotes + +* \[1\] - EPICS calc Record: [http://www.aps.anl.gov/bcda/synApps/calc/calcDocs.html](http://www.aps.anl.gov/bcda/synApps/calc/calcDocs.html) +* \[2\] - *([1](#id1), [2](#id3), [3](#id9), [4](#id11))* EPICS epid Record: [http://cars9.uchicago.edu/software/epics/epidRecord.html](http://cars9.uchicago.edu/software/epics/epidRecord.html) +* \[3\] - epid source code: [https://subversion.xray.aps.anl.gov/trac/synApps/browser/std/trunk/stdApp/src/devEpidSoft.c](https://subversion.xray.aps.anl.gov/trac/synApps/browser/std/trunk/stdApp/src/devEpidSoft.c) +* \[4\] - *([1](#id2), [2](#id5))* EPICS synApps optics module: [http://www.aps.anl.gov/bcda/synApps/optics/opticsDocs.html](http://www.aps.anl.gov/bcda/synApps/optics/opticsDocs.html) +* \[5\] - EPICS swait Record: [http://www.aps.anl.gov/bcda/synApps/calc/swaitRecord.html](http://www.aps.anl.gov/bcda/synApps/calc/swaitRecord.html) +* \[6\] - EPICS synApps: [http://www.aps.anl.gov/bcda/synApps](http://www.aps.anl.gov/bcda/synApps) | + + +- - - - - - diff --git a/documentation/fb_epid/index.rst b/docs/fb_epid/index.rst similarity index 99% rename from documentation/fb_epid/index.rst rename to docs/fb_epid/index.rst index e1f50f0..5d6aad9 100644 --- a/documentation/fb_epid/index.rst +++ b/docs/fb_epid/index.rst @@ -1,4 +1,4 @@ -.. $Id: index.rst 14555 2012-03-02 20:21:10Z jemian $ +.. $Id$ . cmd> rst2html -s -d index.{rst,html} @@ -10,7 +10,7 @@ EPICS ``fb_epid`` feedback controls =========== ================================================================ **Purpose** use the EPICS epid [#epid]_ record for generic software feedback **Author** Pete R. Jemian -**SVN** $Id: index.rst 14555 2012-03-02 20:21:10Z jemian $ +**SVN** $Id$ =========== ================================================================ .. sectnum:: diff --git a/docs/fb_epid/simulator.md b/docs/fb_epid/simulator.md new file mode 100644 index 0000000..6902a71 --- /dev/null +++ b/docs/fb_epid/simulator.md @@ -0,0 +1,118 @@ +--- +layout: default +title: EPID simulator +parent: EPID Feedback +nav_order: 2 +--- + + +fb\_epid simulator +================== + +| __Purpose__ | describe the simulator in the fb\_epid support | +| __Author__ | Pete R. Jemian | +| __SVN__ | $Id: simulator.rst 14555 2012-03-02 20:21:10Z jemian $ | + +Contents + +- [1 Example use of the fb\_epid simulator](#example-use-of-the-fb-epid-simulator) + - [1.1 Interface Screens](#interface-screens) + - [1.2 Operation](#operation) + + +[1 Example use of the fb\_epid simulator](#id2) +=============================================== + +The support database has a simulator to help learn how to use the fb\_epid support. The simulator models the temperature of something which is subject to some cooling. There is support for heating power to be applied, as directed by the output of the epid record. The cooling could be applied either by adjustment of a continuous variable or by a (simulated) relay-switched application of heating power. Smoother operation is obtained with the continuous variable but not all temperature controllers provide this. + +The simulator is based on the swait record. [\[1\]](#swait)The fields are assigned as follows: + +| field | description | +|---|---| +| A | minimum "temperature" allowed | +| B | cooling rate parameter | +| C | heater power | +| D | output of PID loop | +| E | heater relay closes when D > E | +| F | current "temperature" | + +The fb\_epid support should be configured like this: + +| PV | value | +|---|---| +| $(P):in.INAN | $(P):sim | +| $(P):out.OUTN | $(P):sim.D | +| $(P):enable.INAN | $(P):on.VAL | +| $(P).KP | 0.01 | +| $(P).KI | 0.1 | +| $(P).I | 0.0 | +| $(P).KD | 0.0 | +| $(P).DRVL | 0.0 | +| $(P).DRVH | 1.0 | +| $(P).FMOD | PID | + +This configuration is defined in the supplied fb\_epid.substitutions file. + +``` +# $Id: fb_epid.substitutions 14504 2012-02-29 21:11:18Z jemian $ + +file "$(OPTICS)/opticsApp/Db/fb_epid.db" + { + { + P=xxx:epid1, + IN=xxx:epid1:sim.VAL, + OUT=xxx:epid1:sim.D, + MODE=PID, + CALC=A, + PERMIT1="xxx:epid1:on.VAL", + PERMIT2="", + PERMIT3="", + PERMIT4="" + } + } + +``` + +[1.1 Interface Screens](#id3) +----------------------------- + +start a MEDM session with a command such as: + +``` +medm -x -macro "P=prj:epid1,C=:sim" fb_epid_sim.adl & +``` + +This screen provides access to the simulator, the swait calculation record, and the fb\_epid controls that support it. + +![main MEDM control screen for simulator](fb_epid_sim_adl.png) +Figure: fb\_epid temperature simulator controls + + + +The calc button brings up this screen: + +![simulator calculation](userCalc_adl.png) +Figure: temperature simulator calculation + + + +The controls button brings up the standard fb\_epid controls: + +![simulator calculation](fb_epid_adl.png) +Figure: fb\_epid` main control screen + + + + + +[1.2 Operation](#id4) +--------------------- + +to be written + +Footnotes +* \[1\] - EPICS swait record: [http://www.aps.anl.gov/bcda/synApps/calc/swaitRecord.html](http://www.aps.anl.gov/bcda/synApps/calc/swaitRecord.html) + + +- - - - - - + diff --git a/documentation/fb_epid/simulator.rst b/docs/fb_epid/simulator.rst similarity index 96% rename from documentation/fb_epid/simulator.rst rename to docs/fb_epid/simulator.rst index ae72a55..265ba43 100644 --- a/documentation/fb_epid/simulator.rst +++ b/docs/fb_epid/simulator.rst @@ -1,4 +1,4 @@ -.. $Id: simulator.rst 14555 2012-03-02 20:21:10Z jemian $ +.. $Id$ . build the HTML documentation using this command: cmd> rst2html -s -d simulator.{rst,html} @@ -10,7 +10,7 @@ =========== ================================================================ **Purpose** describe the simulator in the ``fb_epid`` support **Author** Pete R. Jemian -**SVN** $Id: simulator.rst 14555 2012-03-02 20:21:10Z jemian $ +**SVN** $Id$ =========== ================================================================ .. sectnum:: diff --git a/documentation/fb_epid/source/fb_epid.adl b/docs/fb_epid/source/fb_epid.adl similarity index 100% rename from documentation/fb_epid/source/fb_epid.adl rename to docs/fb_epid/source/fb_epid.adl diff --git a/documentation/fb_epid/source/fb_epid.db b/docs/fb_epid/source/fb_epid.db similarity index 100% rename from documentation/fb_epid/source/fb_epid.db rename to docs/fb_epid/source/fb_epid.db diff --git a/documentation/fb_epid/source/fb_epid_example.template b/docs/fb_epid/source/fb_epid_example.template similarity index 100% rename from documentation/fb_epid/source/fb_epid_example.template rename to docs/fb_epid/source/fb_epid_example.template diff --git a/documentation/fb_epid/source/fb_epid_example_auto_sr.req b/docs/fb_epid/source/fb_epid_example_auto_sr.req similarity index 100% rename from documentation/fb_epid/source/fb_epid_example_auto_sr.req rename to docs/fb_epid/source/fb_epid_example_auto_sr.req diff --git a/documentation/fb_epid/source/fb_epid_example_auto_sr.sav b/docs/fb_epid/source/fb_epid_example_auto_sr.sav similarity index 100% rename from documentation/fb_epid/source/fb_epid_example_auto_sr.sav rename to docs/fb_epid/source/fb_epid_example_auto_sr.sav diff --git a/documentation/fb_epid/source/fb_epid_example_st.cmd b/docs/fb_epid/source/fb_epid_example_st.cmd similarity index 100% rename from documentation/fb_epid/source/fb_epid_example_st.cmd rename to docs/fb_epid/source/fb_epid_example_st.cmd diff --git a/docs/fb_epid/tests/20040623/index.md b/docs/fb_epid/tests/20040623/index.md new file mode 100644 index 0000000..dacbb05 --- /dev/null +++ b/docs/fb_epid/tests/20040623/index.md @@ -0,0 +1,57 @@ +--- +layout: default +title: 2004-06-23 +parent: Tests +grand_parent: EPID Feedback +nav_order: 1 +--- + +Use of the EPID record for feedback at UNICAT (2004-06-23) +========================================================== +An swait (calculation) record was used to simulate a crystal reflection (Lorentzian peak shape) and to calculate the response of the crystal to different parameters using EPICS records. The various ananlog output (ao) records are used (by name) as inputs to the swait record. A state notation (SNL) program was written to generate Gaussian-probability (zero mean, unit standard deviation) random numbers to simulate experimental noise. The ideal position of the reflection is also adjusted by the SNL program to simulate drift in the ideal tuning position for the crystal element. An additional Gaussian random number was used to provide a small amplitude of jitter to the ideal position. + +hnl:userCalc10 value for epid\_test:response function + +| A | hnl:epid:positioner.VAL | +| B | hnl:epid:resp:ideal | +| C | hnl:epid:resp:sigma | +| D | hnl:epid:resp:scale | +| E | hnl:epid:resp:base | +| F | hnl:epid:resp:noise | +| G | 1.00002 | +| CALC | G\*(D/(1+((A-B)/C)^2)^2+E) | + +An epid record provides the means to drive the pseudo-positioner in a closed feedback loop. The epid record can be operated in either a hold constant (PID control) mode or a maximize (or minimize) mode. In the latter mode, negative input signals will be minimized while positive signals are maximized. Consider that the software will only maximize the absolute value of the input signal. The next table shows a working configuration for maximizing the signal generated by the previously-shown calculation. + +epid\_test: working configuration +| SCAN | 0.2 seconds | +| input | hnl:userCalc10.VAL NPP NMS | +| KP | 0.004 | +| MODE | Max/Min | +| low limit | -2 | +| high limit | 9 | + +One limitation of the epid record is that the output link must be a database link. Therefore, it must be defined in the database at boot time, although the string is changeable at run time. (Why is this?) Circumventing this presumed limitation, an swait record (next table) has been configured to picl up the calculation value from the epid record and pass it to the chosen positioner, provided that the epid record feedback mode has been turned on. + +hnl:userCalc9 epid\_test: position calculation + +| SCAN | I/O Intr | +| A | hnl:epid:epid.OVAL | +| B | hnl:epid:epid.FBON | +| C | hnl:userCalc9.VAL | +| CALC | B?A:C | + +Comments +-------- + +Some packaging remains to be completed in order to use the epid record for routine software feedback and replace the existing software feedback. Features of that packaging might include : +- Automatic on/off mode when input signal is out of range +- User selection of input signal(s) +- User selection of positioner +- Preservation of separate tuning parameters for PID and Max/Min modes +- When in Max/Min mode, automatic update of set point to maximum (minimum) +- Scan of positioner through user-specified range to locate peak (?using sscan record?) +- EGU, PREC, DRVH, DRVL fields come from positioner +- Support HOPR and LOPR on GUI screens + + diff --git a/docs/fb_epid/tests/20040727/index.md b/docs/fb_epid/tests/20040727/index.md new file mode 100644 index 0000000..97d7625 --- /dev/null +++ b/docs/fb_epid/tests/20040727/index.md @@ -0,0 +1,25 @@ +--- +layout: default +title: 2004-07-27 +parent: Tests +grand_parent: EPID Feedback +nav_order: 2 +--- + +2004 July 27 Observations +========================== + +While first using the EPID record as the internal component in a feedback loop on 33ID maintaining the Oxford X-ray beam position monitor by adjusting the DCM omega2 piezo control voltage. + +![old DCM-omega2 feedback controls](notes-20040727_clip_image002.jpg) +![EPID DCM-omega2 feedback performance](notes-20040727_clip_image004.jpg) +![EPID DCM-omega2 feedback performance2](notes-20040727_clip_image006.jpg) + +Feedback on the vertical position looks promising using the EPID record. Response is quite good, taking about 10 seconds to lock in to a new position 1 mm away from the current position. Position noise is observed when the PZT is moved, otherwise, operation is quieter than with the standard feedback. + +![EPID controls](notes-20040727_clip_image008.jpg) + +The set point is the XBPM position to hold. KP = -0.001 (Note that KP is negative.) KI = 400 KD = 0 With a positive KP, then the feedback drives *away* from the set point. No KD term is needed. KI term of 1000 produced ringing (which damped in about 10 cycles) when set point was changed. KI=400 produces a mild overshoot. Before FBON is set to ON, I term should be loaded with the current value of the positioner. Otherwise, the positioner *will* jump. Likewise, the limits DRVL and DRVH should be preloaded from the positioner. + +![EPID main](notes-20040727_clip_image010.jpg) ![output calc](notes-20040727_clip_image012.jpg) + diff --git a/documentation/fb_epid/tests/20040727/notes-20040727_clip_image002.jpg b/docs/fb_epid/tests/20040727/notes-20040727_clip_image002.jpg similarity index 100% rename from documentation/fb_epid/tests/20040727/notes-20040727_clip_image002.jpg rename to docs/fb_epid/tests/20040727/notes-20040727_clip_image002.jpg diff --git a/documentation/fb_epid/tests/20040727/notes-20040727_clip_image004.jpg b/docs/fb_epid/tests/20040727/notes-20040727_clip_image004.jpg similarity index 100% rename from documentation/fb_epid/tests/20040727/notes-20040727_clip_image004.jpg rename to docs/fb_epid/tests/20040727/notes-20040727_clip_image004.jpg diff --git a/documentation/fb_epid/tests/20040727/notes-20040727_clip_image006.jpg b/docs/fb_epid/tests/20040727/notes-20040727_clip_image006.jpg similarity index 100% rename from documentation/fb_epid/tests/20040727/notes-20040727_clip_image006.jpg rename to docs/fb_epid/tests/20040727/notes-20040727_clip_image006.jpg diff --git a/documentation/fb_epid/tests/20040727/notes-20040727_clip_image008.jpg b/docs/fb_epid/tests/20040727/notes-20040727_clip_image008.jpg similarity index 100% rename from documentation/fb_epid/tests/20040727/notes-20040727_clip_image008.jpg rename to docs/fb_epid/tests/20040727/notes-20040727_clip_image008.jpg diff --git a/documentation/fb_epid/tests/20040727/notes-20040727_clip_image010.jpg b/docs/fb_epid/tests/20040727/notes-20040727_clip_image010.jpg similarity index 100% rename from documentation/fb_epid/tests/20040727/notes-20040727_clip_image010.jpg rename to docs/fb_epid/tests/20040727/notes-20040727_clip_image010.jpg diff --git a/documentation/fb_epid/tests/20040727/notes-20040727_clip_image012.jpg b/docs/fb_epid/tests/20040727/notes-20040727_clip_image012.jpg similarity index 100% rename from documentation/fb_epid/tests/20040727/notes-20040727_clip_image012.jpg rename to docs/fb_epid/tests/20040727/notes-20040727_clip_image012.jpg diff --git a/docs/fb_epid/tests/20041025/index.md b/docs/fb_epid/tests/20041025/index.md new file mode 100644 index 0000000..58aaa8e --- /dev/null +++ b/docs/fb_epid/tests/20041025/index.md @@ -0,0 +1,23 @@ +--- +layout: default +title: 2004-10-25 +parent: Tests +grand_parent: EPID Feedback +nav_order: 3 +--- + +Tests (10-25-2004) +================== + +![XBPM signal](tests-20041025_clip_image002.jpg) +![XBPM controls](tests-20041025_clip_image004.jpg) +![DCM-omega controls](tests-20041025_clip_image006.jpg) + +### with foil in the beam + +![XBPM signal during scan](tests-20041025_clip_image008.jpg) +![XBPM controls during scan](tests-20041025_clip_image010.jpg) +![DCM-omega controls during scan](tests-20041025_clip_image012.jpg) +![XBPM main](tests-20041025_clip_image014.jpg) +![EPICS scan configuration](tests-20041025_clip_image016.jpg) + diff --git a/documentation/fb_epid/tests/20041025/tests-20041025_clip_image002.jpg b/docs/fb_epid/tests/20041025/tests-20041025_clip_image002.jpg similarity index 100% rename from documentation/fb_epid/tests/20041025/tests-20041025_clip_image002.jpg rename to docs/fb_epid/tests/20041025/tests-20041025_clip_image002.jpg diff --git a/documentation/fb_epid/tests/20041025/tests-20041025_clip_image004.jpg b/docs/fb_epid/tests/20041025/tests-20041025_clip_image004.jpg similarity index 100% rename from documentation/fb_epid/tests/20041025/tests-20041025_clip_image004.jpg rename to docs/fb_epid/tests/20041025/tests-20041025_clip_image004.jpg diff --git a/documentation/fb_epid/tests/20041025/tests-20041025_clip_image006.jpg b/docs/fb_epid/tests/20041025/tests-20041025_clip_image006.jpg similarity index 100% rename from documentation/fb_epid/tests/20041025/tests-20041025_clip_image006.jpg rename to docs/fb_epid/tests/20041025/tests-20041025_clip_image006.jpg diff --git a/documentation/fb_epid/tests/20041025/tests-20041025_clip_image008.jpg b/docs/fb_epid/tests/20041025/tests-20041025_clip_image008.jpg similarity index 100% rename from documentation/fb_epid/tests/20041025/tests-20041025_clip_image008.jpg rename to docs/fb_epid/tests/20041025/tests-20041025_clip_image008.jpg diff --git a/documentation/fb_epid/tests/20041025/tests-20041025_clip_image010.jpg b/docs/fb_epid/tests/20041025/tests-20041025_clip_image010.jpg similarity index 100% rename from documentation/fb_epid/tests/20041025/tests-20041025_clip_image010.jpg rename to docs/fb_epid/tests/20041025/tests-20041025_clip_image010.jpg diff --git a/documentation/fb_epid/tests/20041025/tests-20041025_clip_image012.jpg b/docs/fb_epid/tests/20041025/tests-20041025_clip_image012.jpg similarity index 100% rename from documentation/fb_epid/tests/20041025/tests-20041025_clip_image012.jpg rename to docs/fb_epid/tests/20041025/tests-20041025_clip_image012.jpg diff --git a/documentation/fb_epid/tests/20041025/tests-20041025_clip_image014.jpg b/docs/fb_epid/tests/20041025/tests-20041025_clip_image014.jpg similarity index 100% rename from documentation/fb_epid/tests/20041025/tests-20041025_clip_image014.jpg rename to docs/fb_epid/tests/20041025/tests-20041025_clip_image014.jpg diff --git a/documentation/fb_epid/tests/20041025/tests-20041025_clip_image016.jpg b/docs/fb_epid/tests/20041025/tests-20041025_clip_image016.jpg similarity index 100% rename from documentation/fb_epid/tests/20041025/tests-20041025_clip_image016.jpg rename to docs/fb_epid/tests/20041025/tests-20041025_clip_image016.jpg diff --git a/docs/fb_epid/tests/index.md b/docs/fb_epid/tests/index.md new file mode 100644 index 0000000..3cae8cc --- /dev/null +++ b/docs/fb_epid/tests/index.md @@ -0,0 +1,14 @@ +--- +layout: default +title: Tests +parent: EPID Feedback +has_children: true +nav_order: 3 +--- + + +Use of the EPID record for feedback at UNICAT +============================================= + +It became apparent from [initial testing](20040623) that the epid record provided by synApps would need to be wrapped with a database to provide some useful features for our users. A [first cut at a database](20040727) provided some very encouraging results. After revision, a [second round of testing](20041025) was arranged with a database used to provide active feedback to keep the beam vertical position constant (on the Oxford Quadrant X-ray Beam Position Monitor in 33ID-D) using the monochromator omega2 piezo as a positioner (in 33ID-C). When the sscan record was used to step-scan the XBPM vertical position, the new database performed quite well. The database was then further revised to the [present form](../../fb_epid). + diff --git a/documentation/fb_epid/userCalc_adl.png b/docs/fb_epid/userCalc_adl.png similarity index 100% rename from documentation/fb_epid/userCalc_adl.png rename to docs/fb_epid/userCalc_adl.png diff --git a/documentation/filter.adl.jpg b/docs/filter.adl.jpg similarity index 100% rename from documentation/filter.adl.jpg rename to docs/filter.adl.jpg diff --git a/documentation/filterbox_config.adl.jpg b/docs/filterbox_config.adl.jpg similarity index 100% rename from documentation/filterbox_config.adl.jpg rename to docs/filterbox_config.adl.jpg diff --git a/docs/flexCombinedMotion.md b/docs/flexCombinedMotion.md new file mode 100644 index 0000000..896815e --- /dev/null +++ b/docs/flexCombinedMotion.md @@ -0,0 +1,70 @@ +# flexCombinedMotion + +This support was designed for APS flexure stages, but it should work for other coarse/fine motor applications. + +## APS Flexure Hardware + +An APS flexure stage includes the following hardware: + +* A New Focus picomotor controller +* A New Focus open-loop picomotor (providing coarse motion and a large travel range) +* A PI piezo controller +* A PI piezo (providing fine motion and a small travel range) +* A Lion Precision cap sensor driver +* A Lion Precision cap sensor (providing absolute positioning) +* A measComp USB-2408-2AO or LabJack T8 (analog inputs to read the cap sensor) + +## Motivation + +The existing [CoarseFineMotor.db](../opticsApp/Db/CoarseFineMotor.db) could not be used because it was not guaranteed that the open-loop picomotor would get within the piezo's range of the desired position. [flexCombinedMotion.st](../opticsApp/src/flexCombinedMotion.st) was adapted from a hybrid motion program already in use at an APS beamline. + +## Modes of operation + +* Fast: combined motion using the specified piezo range as the deadband +* Precise: combined motion using the specified deadband as the deadband +* Coarse: motion using only the coarse motor +* Fine: motion using only the fine motor + +## Example configuration + +### Motors + +* PREFIX: optics: +* Picomotor: $(PREFIX):nf:c0:m1 +* Piezo: $(PREFIX):pi:c0:m1 +* Piezo range: 15um +* Analog input reading cap sensor voltage: $(PREFIX):LJT8:1:Ai0 +* Cap sensor conversion factor (um/V): 32.59 +* Desired cap sensor name: cap1 +* Desired combo motor name: m1 + +### IOC config + +The [flexCombinedMotion.iocsh](../opticsApp/iocsh/flexCombinedMotion.iocsh) file describes the required and optional macros it accepts. This example includes only the required macros: + +``` +iocshLoad("$(OPTICS)/iocsh/flexCombinedMotion.iocsh","P=$(PREFIX),C=cap1,V=$(PREFIX)LJT8:1:Ai1,UMV=32.59,M=m1,LLM=0.0,HOME=7.5,HLM=15.0,FM=pi:c0:m1,CM=nf:c0:m1") +``` + +Notes: The LLM/HLM values can be used to restrict the usable range of the piezo. The HOME can be near LLM or HLM to allow more fine steps in one direction before a coarse move is needed. + +### MEDM/caQtDM screen macros + +#### flexCombinedMotionTop.{adl,ui} + +``` +"P=optics:,M=m1,CM=nf:c0:m1,FM=pi:c0:m1,C=cap1" +``` + +#### flexCombinedMotion.{adl,ui} + +``` +"P=optics:,M=m1" +``` + +#### flexCapSensor.{adl,ui} + +``` +"P=optics:,C=cap1" +``` + diff --git a/documentation/hrSeqCtl_All_nested.adl.gif b/docs/hrSeqCtl_All_nested.adl.gif similarity index 100% rename from documentation/hrSeqCtl_All_nested.adl.gif rename to docs/hrSeqCtl_All_nested.adl.gif diff --git a/documentation/hrSeqCtl_All_symmetric.adl.gif b/docs/hrSeqCtl_All_symmetric.adl.gif similarity index 100% rename from documentation/hrSeqCtl_All_symmetric.adl.gif rename to docs/hrSeqCtl_All_symmetric.adl.gif diff --git a/documentation/hr_nested.adl.gif b/docs/hr_nested.adl.gif similarity index 100% rename from documentation/hr_nested.adl.gif rename to docs/hr_nested.adl.gif diff --git a/documentation/hr_symmetric.adl.gif b/docs/hr_symmetric.adl.gif similarity index 100% rename from documentation/hr_symmetric.adl.gif rename to docs/hr_symmetric.adl.gif diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 0000000..bd1067c --- /dev/null +++ b/docs/index.md @@ -0,0 +1,13 @@ +--- +layout: default +title: Home +nav_order: 1 +--- + + +# HTML documentation + +* [fb_epid](fb_epid/index.md) +* [opticsDocs](opticsDocs.md) +* [opticsReleaseNotes](opticsReleaseNotes.md) +* [tableRecord](tableRecord.md) diff --git a/documentation/kohzu2Graphic.adl.gif b/docs/kohzu2Graphic.adl.gif similarity index 100% rename from documentation/kohzu2Graphic.adl.gif rename to docs/kohzu2Graphic.adl.gif diff --git a/documentation/kohzu2SeqCtl_All.adl.gif b/docs/kohzu2SeqCtl_All.adl.gif similarity index 100% rename from documentation/kohzu2SeqCtl_All.adl.gif rename to docs/kohzu2SeqCtl_All.adl.gif diff --git a/documentation/kohzuGraphic.adl.gif b/docs/kohzuGraphic.adl.gif similarity index 100% rename from documentation/kohzuGraphic.adl.gif rename to docs/kohzuGraphic.adl.gif diff --git a/documentation/kohzuSeqCtl_All.adl.gif b/docs/kohzuSeqCtl_All.adl.gif similarity index 100% rename from documentation/kohzuSeqCtl_All.adl.gif rename to docs/kohzuSeqCtl_All.adl.gif diff --git a/documentation/ml_monoGraphic.adl.gif b/docs/ml_monoGraphic.adl.gif similarity index 100% rename from documentation/ml_monoGraphic.adl.gif rename to docs/ml_monoGraphic.adl.gif diff --git a/documentation/ml_monoSeqCtl.adl.gif b/docs/ml_monoSeqCtl.adl.gif similarity index 100% rename from documentation/ml_monoSeqCtl.adl.gif rename to docs/ml_monoSeqCtl.adl.gif diff --git a/docs/opticsDocs.md b/docs/opticsDocs.md new file mode 100644 index 0000000..3d809b3 --- /dev/null +++ b/docs/opticsDocs.md @@ -0,0 +1,427 @@ +--- +layout: default +title: Overview +nav_order: 2 +--- + + +The synApps Optics module +========================= + +The optics module contains support for devices used to modify the x-ray beam from a synchrotron source and apply it in experimentally useful ways, including a variety of monochromators, slits, filters, mirrors, diffractometers, and optical tables. + +### Monochromators + +synApps supports the following monochromator types/geometries: + +- non-dispersive double-crystal with symmetric offset -- rotates about a point midway between the entrance and exit beams. +- non-dispersive double-crystal with asymmetric offset -- rotates about a point on the first crystal's surface. +- dispersive double crystal -- nested geometry +- dispersive double crystal -- symmetric geometry +- spherical grating +- multilayer + +#### Kohzu/PSL geometry 1 (Theta, Y1, Z2) + +![](kohzuGraphic.adl.gif) +kohzuGraphic.adl + +This MEDM display is a picture of Kohzu/PSL geometry 1, with white beam entering from the left, monochromatized radiation diffracting upward from the first crystal and then forward from the second crystal. The crystal stages are mounted on a plate which rotates about a point midway, vertically, between the incident and exiting beam. + +The difference in height between the incident beam and the point about which the plate rotates is called the monochromator offset, and the software allows this offset to be changed by a knowledgeable developer, though not by the casual user. (Note that users sometimes use 'offset' to mean the vertical distance between the incident and exit beams, which is twice the offset as defined here.) The crystals normally translate, as the plate rotates, to keep the first crystal in the incident beam, and to maintain the exiting beam at constant height. + +As the monochromator rotates from a Bragg angle (Theta) of zero, the first crystal moves away from the rotation point along a line normal to its diffracting planes, executing the equation + + +``` +Y = -offset/cos(Theta). +``` + + +Thus, `Y(Theta=0) = -offset`, and a positive- sense motion would move the crystal toward the rotation point. + +At the same time, the second crystal moves toward the rotation point along a line which is parallel to the crystal's diffracting planes, and which intersects the rotation point, according to the equation + + +``` +Z = offset/sin(Theta). +``` + + +Thus, a positive-sense motion of the second crystal moves it in the direction of the exiting beam. + +Because the Y and Z motions are nonlinear functions of Theta, their speeds ideally should vary as they move. The software doesn't attempt this, but it does attempt to set motor speeds to the closest linear approximation to ideal behavior. This means that it attempts to set motor speeds so that Theta, Y, and Z all move for the same length of time. The attempt may not succeed, however, because the motors have high and low speed limits, and will refuse commands to violate them. + +- - - - - - + +![](kohzuSeqCtl_All.adl.gif) +kohzuSeqCtl\_All.adl + +This MEDM display serves both geometries, and contains all of the user-modifiable fields that control and set them up. Smaller, less complicated displays are also provided. + +At top left, crystal parameters are selected from a list that includes Silicon (at room temperature, and at 77K), Germanium, and Diamond. Miller indices can also be specified. When fields in this section are modified, the resulting reflection is checked, and the software is put into Manual-Move mode (described below). + +The monochromator can be driven in energy, wavelength, or angle. Undriven fields are kept consistent automatically with driven fields. + +The software can be in Manual-Move, or Auto\_Move mode. In Manual-Move mode, changes to energy, wavelength, or theta are not sent to the motors until the user issues a "Move" command. In Auto\_Move mode, changes to energy, wavelength, or theta are sent to the motors without further prompting from the user. + +The manner in which 'Y', and 'Z' motions of monochromator crystals are calculated depends on the setting of a second mode switch, with the following options: + +| Normal | - | Y,Z driven per equations described above. | +|---|---|---| +| Channel Cut | - | Y,Z are left at their current positions | +| Freeze Z | - | Z is left at its current position | +| Freeze Y | - | Y is left at its current position | + +The display pictured above uses EPICS analog output records for virtual motors such as Energy, Lambda, etc. Taking Energy as an example, the PV names for drive and readback are "$(P)BraggEAO" and "$(P)BraggERdbkAO". These PV names are inconvenient for users (particularly, spec users) who would prefer to talk to soft motor records, rather than separate ao records. There is a second version of the Kohzu monochromator software that uses soft motor records for virtual motions. See kohzu\*soft\* in src, Db, and op directories. + +![](colorLine.gif) + +#### Kohzu geometry 2 (Theta, Y2, Z2) + +![](kohzu2Graphic.adl.gif) +kohzu2Graphic.adl + +This MEDM display is a picture of Kohzu/PSL geometry 2, with white beam entering from the left, monochromatized radiation diffracting upward from the first crystal and then forward from the second crystal. The crystal stages are mounted on a plate which rotates about a point on the surface on of the first crystal. + +The difference in height between the entrance and exit beams is called the monochromator offset, and the software allows this offset to be changed by the user. (Note this geometry's 'offset' is different from that of the Kohzu 1 geometry.) The second crystal normally translates, as the plate monochromator rotates, to maintain the exiting beam at constant height. + +As the monochromator rotates from a Bragg angle (Theta) of zero, the second crystal moves upward along a line normal to its diffracting planes, executing the equation + + +``` +Y = -offset/(2*cos(Theta)). +``` + +At the same time, the second crystal moves toward the rotation point along a line which is parallel to the crystal's diffracting planes, according to the equation + + +``` +Z = offset/(2*sin(Theta)). +``` + + +Thus, a positive-sense motion of the second crystal moves it in the direction of the exiting beam. + +Because the Y and Z motions are nonlinear functions of Theta, their speeds ideally should vary as they move. The software doesn't attempt this, but it does attempt to set motor speeds to the closest linear approximation to ideal behavior. This means that it attempts to set motor speeds so that Theta, Y, and Z all move for the same length of time. The attempt may not succeed, however, because the motors have high and low speed limits, and will refuse commands to violate them. + +![](colorLine.gif) + +#### High-resolution double-crystal (Theta1, Theta2) + +synApps currently supports two geometries of a high energy-resolution, dispersive double crystal monochromator. Both geometries actually employ four crystals, but two of the crystals are channel-cut partners of the other two, and therefore are not driven. Crystal angles for these monochromators are described and controlled with three sets of variables: + +| Thetan | - | Bragg angle, the angle between beam incident on a crystal and the crystal's diffracting planes. | +|---|---|---| +| Phi | - | The angle between the crystal's diffracting planes and the horizontal. (By definition here, the beam incident on the monochromator is "horizontal". Note that small changes in incident-beam direction can be accommodated by the "world" offset, shown in the control displays below.) | +| dPhi | - | (not shown in the diagram below) The difference between the actual angle, Phi, and the nominal value of this angle, Phi0. These are the motors actually driven by the software. The hardware for which this software was designed has extremely high resolution (nanoradian) rotation stages with very limited angular ranges. | + +![](hr_nested.adl.gif) +hr\_nested.adl (nested geometry) + +This display is a cartoon of the nested high-resolution monochromator geometry, defining the meanings of the angles Theta and Phi. + +In this diagram, the crystals are drawn as if their diffracting planes were parallel to the crystal surface. This is not always the case in actual practice, particularly for the first crystal of the nested geometry, which typically is asymmetrically cut to match the incident beam divergence to the angular range over which the second crystal accepts a monochromatic beam. Asymmetrically cut crystals will diffract at slightly different angles than symmetrically cut crystals, because the entrance and exit beams will be refracted by different amounts. The control software does not take index-of-refraction effects into account. + +- - - - - - + +![](hrSeqCtl_All_nested.adl.gif) +hrSeqCtl\_All.adl (nested geometry) + +This is the full control display for a high-resolution monochromator in the "nested" geometry. At top left are energy and wavelength drive areas, with columns of numbers in the standard form for motors. From the top: HighLimit, Readback, Drive, LowLimit, and Tweak. In the middle are the crystal parameters and Bragg-angle drive area for the first crystal, 'TH1' (i.e., the crystal surface that the beam hits first, and its channel-cut pair, if any). At right are the crystal parameters and drive area for the second crystal, 'TH2'. The software makes sure all these fields are consistent with each other, so you can control the monochromator with any of them. + +High and low limits of energy, wavelength, and the Bragg angles are calculated from limits of the motors that actually drive crystals, the Phi1 and Phi2 motors. These motors have engineering units of microradians, and may have small angular ranges about an offset angle that the software calculates but needn't be able to read or drive. The software simply assumes, for example, that when Phi1 is at zero, the Phi1 crystal is oriented at the displayed offset angle. + +Below the heavy black line is the connection between calculated Bragg angles and actual crystal motions. When a change is made to any of energy, wavelength, or Bragg angle, the software reconciles all the other values, according to the mode ("Theta1 only"; "Theta1 and Theta2"; "Rock Theta2") switch, and calculates the actual crystal angles (Phi1, Phi2) required to achieve the new Bragg angles. These new crystal angles are displayed in the bottom row of values under the "Phi 1" and "Phi 2" headings. If the "calibration" switch is set to "Use", new Phi-motor drive values are calculated from the Phi values, by subtracting the offsets and converting from degrees to microradians. If the "Calibrate" switch is set to "Set", the offsets are calculated from the new Phi values and the existing motor positions. + +After new Phi-motor values have been calculated, they are adjusted by the "world" offset, an arbitrary angle by which the user can allow for small shifts in the incident beam angle. + +When new, adjusted Phi-motor values have been calculated, they are displayed in the orange "Motor Write" row under the "Phi 1" and "Phi 2" headings. If the "Manual"/Auto" switch is set to "Auto", the new values will also be written to the motors. If the "Manual"/Auto" switch is set to "Manual", this will happen only when the "Move" button is pressed. + +![](hr_symmetric.adl.gif) +hr\_symmetric.adl (symmetric geometry) + +This display is a cartoon of the symmetric high-resolution monochromator geometry, defining the meanings of the angles Theta and Phi. Although this diagram shows two channel-cut pairs of identical crystals, the crystals needn't be identical. + +![](hrSeqCtl_All_symmetric.adl.gif) +hrSeqCtl\_All.adl (symmetric geometry) + +This display shows the symmetric geometry in use. + +![](colorLine.gif) + +#### Spherical Grating (Phi, rentrance, rexit) + +![](SGM.adl.jpg) +SGM.adl + +![](SGM_tiny.adl.jpg) +SGM\_tiny.adl + +These are the control displays for a spherical grating monochromator. The supported geometry comprises an input slit, a grating driven by a tangent arm, and an exit slit. The angle between the incoming and outgoing beams is fixed. The grating may have up to 16 stripes, whose properties are specified in the following control display: + +![](SGM_gratings.adl.jpg) +SGM\_gratings.adl + +| Description | Anything the user wants to write | +|---|---| +| Diffraction order | "Grating", as used here, means a physical grating stripe and a particular diffraction order | +| Line density | Number of gratings lines per mm. | +| Radius of curvature | stripes can have different radii | +| Wavelength low limit | Smallest wavelength for which this stripe should be used. | +| Wavelength high limit | Largest wavelength for which this stripe should be used. | +| Grating index | Position of the grating-translation motor that will put this stripe into the incoming beam. | +| Grating-motor offset | Correction to be applied to the calculated tangent-arm motor while this stripe is in use. | +| OK to use | If this field is zero, the user will not be permitted to select this stripe for use. | + +![](colorLine.gif) + +#### Multilayer (Theta1, Theta2, Y2, Z2) + +![](ml_monoGraphic.adl.gif) +ml\_monoGraphic.adl + +![](ml_monoSeqCtl.adl.gif) +ml\_monoSeqCtl.adl.gif + +These are the control displays for a multilayer monochromator, comprised of two independently supported multilayers with the same __d__ spacing and diffraction order, in a nondispersive configuration . Both multilayers have Theta, X, Y, Z, and Chi motors; the downstream multilayer also has Phi and bend motors. The software drives Theta motors to an angle calculated from the multilayer __d__ spacing and diffraction-order number, reads the Y offset as the position of the second multilayer's Y motor, and drives the second multilayer's Z motor so that beam diffracted from the first multilayer intersects the second multilayer in the same spot, as the selected beam energy is varied. + +![](colorLine.gif) + +![](colorLine.gif) + +![](colorLine.gif) + +### Slits + +![](2slit.adl.jpg) +2slit.adl + +The display pictured above uses EPICS analog output records for virtual motors "-", "+", "size", and "center". Taking "size" as an example, the PV names for drive and readback are "$(P)$(SLIT)xn" and "$(P)$(SLIT)t2.B". These PV names are inconvenient for users (particularly, spec users) who would prefer to talk to soft motor records, rather than separate ao records. There is a second version of the 2slit software that uses soft motor records for virtual motions. See 2slit\*soft\* in src, Db, and op directories. + +![](4slitGraphic.adl.jpg) +4slitGraphic.adl + +![](xia_slit_full.adl.jpg) +xia\_slit\_full.adl + +![](colorLine.gif) + +![](colorLine.gif) + +![](colorLine.gif) + +### Mirrors + +![](2postMirror.adl.jpg) +2postMirror.adl + +![](colorLine.gif) + +![](colorLine.gif) + +![](colorLine.gif) + +### Filters + +![](2filter.adl.jpg) +2filter.adl + +![](2filter_setup.adl.jpg) +2filter\_setup.adl + +![](colorLine.gif) + +XIA PF4 dual filter + +This software treats two XIA (X-Ray Instrumentation Associates) PF4 four-filter units as separate devices, though it does calculate the total transmission of the two units. Originally, this software supported only three filter-material choices, but support for 22 elemental filter materials was grafted on later. This software drives the filter via digital I/O PVs. It also also monitors those PVs, and behaves correctly when they are changed by some external agent. + +This software calculates the x-ray transmission for each combination of filters in one unit, given the current x-ray beam energy, and permits either direct setting of the desired transmission, or selection of the next higher, or next lower, transmission. + +![](pf4.jpg) + +![](pf4more.jpg) + +![](pf4config.jpg) + +To load an instance of this support, add the following lines to the ioc startup file, `st.cmd`, before the call to `iocInit()`: + + +``` +### Load database records for dual PF4 filters +dbLoadRecords("$(OPTICS)/opticsApp/Db/pf4common.db","P=xxx:,H=pf4:,A=A,B=B") +dbLoadRecords("$(OPTICS)/opticsApp/Db/pf4bank.db","P=xxx:,H=pf4:,B=A") +dbLoadRecords("$(OPTICS)/opticsApp/Db/pf4bank.db","P=xxx:,H=pf4:,B=B") +``` + +and add the following lines after the call to `iocInit()`: + + +``` +# Start PF4 filter sequence program +# name = what user will call it +# P = prefix of database and sequencer +# H = hardware (i.e. pf4) +# B = bank indicator (i.e. A,B) +# M = Monochromatic-beam energy PV +# BP = Filter control bit PV prefix +# B1 = Filter control bit 0 number +# B2 = Filter control bit 1 number +# B3 = Filter control bit 2 number +# B4 = Fitler control bit 3 number +seq &pf4,"name=pf1,P=xxx:,H=pf4:,B=A,M=xxx:BraggEAO,BP=xxx:Unidig1Bo,B1=3,B2=4,B3=5,B4=6" +seq &pf4,"name=pf2,P=xxx:,H=pf4:,B=B,M=xxx:BraggEAO,BP=xxx:Unidig1Bo,B1=7,B2=8,B3=9,B4=10" +``` + +For autosave suppport, add the following lines to `auto_settings.req`: + + +``` +## PF4 dual filter +file pf4common.req P=$(P),H=pf4: +file pf4bank.req P=$(P),H=pf4:,B=A +file pf4bank.req P=$(P),H=pf4:,B=B +``` + +![](colorLine.gif) + +XIA PF4 multiple filter + +This software treats two or four XIA (X-Ray Instrumentation Associates) PF4 four-filter units as a single device. It drives the filters via digital I/O PVs. It also also monitors those PVs, and behaves correctly when they are changed by some external agent. + +This software calculates the x-ray transmission for all combinations of all filters in all units, given the current x-ray beam energy. It permits direct setting of the desired transmission, setting the transmission relative to the current value (e.g., down by 10%, up by a factor of 2, etc.), and selection of the next higher, or next lower, transmission. It also permits individual filters to be removed from consideration, and locked in or out of the x-ray beam. + +![](filter.adl.jpg) + +![](filterbox_config.adl.jpg) + +To Load an instance of this support, add the following lines to the ioc startup file, st.cmd, before the call to iocInit(): +``` +### Load database records for alternative PF4-filter support +dbLoadTemplate "filter.substitutions" +``` + +and add the following lines after the call to iocInit(): +``` +# Alternative pf4 filter seq program +seq filterDrive,"NAME=filterDrive,P=xxx:,R=filter:,NUM_FILTERS=16" +``` + +Here's a sample filter.substitutions file: +``` +# filter.substitutions + +file "$(OPTICS)/opticsApp/Db/filterBladeNoSensor.db" { + pattern + {P, R, N, DESC, OUT} + {xxx:, filter:, 1, "Filter 1", "xxx:Unidig1Bo0"} + {xxx:, filter:, 2, "Filter 2", "xxx:Unidig1Bo1"} + {xxx:, filter:, 3, "Filter 3", "xxx:Unidig1Bo2"} + {xxx:, filter:, 4, "Filter 4", "xxx:Unidig1Bo3"} + {xxx:, filter:, 5, "Filter 5", "xxx:Unidig1Bo4"} + {xxx:, filter:, 6, "Filter 6", "xxx:Unidig1Bo5"} + {xxx:, filter:, 7, "Filter 7", "xxx:Unidig1Bo6"} + {xxx:, filter:, 8, "Filter 8", "xxx:Unidig1Bo7"} + {xxx:, filter:, 9, "Filter 9", "xxx:Unidig1Bo8"} + {xxx:, filter:, 10, "Filter 10", "xxx:Unidig1Bo9"} + {xxx:, filter:, 11, "Filter 11", "xxx:Unidig1Bo10"} + {xxx:, filter:, 12, "Filter 12", "xxx:Unidig1Bo11"} + {xxx:, filter:, 13, "Filter 13", "xxx:Unidig1Bo12"} + {xxx:, filter:, 14, "Filter 14", "xxx:Unidig1Bo13"} + {xxx:, filter:, 15, "Filter 15", "xxx:Unidig1Bo14"} + {xxx:, filter:, 16, "Filter 16", "xxx:Unidig1Bo15"} +} + +file "$(OPTICS)/opticsApp/Db/filterDrive.db" { + {P="xxx:", R="filter:", DESC="Filters", KEV="xxx:BraggEAO"} +} +``` + +and here are lines added to auto\_settings.req for these filters: +``` +file filterDrive.req "P=xxx:,R=filter:" +file filterBladeNoSensor.req "P=xxx:,R=filter:,N=1" +file filterBladeNoSensor.req "P=xxx:,R=filter:,N=2" +file filterBladeNoSensor.req "P=xxx:,R=filter:,N=3" +file filterBladeNoSensor.req "P=xxx:,R=filter:,N=4" +file filterBladeNoSensor.req "P=xxx:,R=filter:,N=5" +file filterBladeNoSensor.req "P=xxx:,R=filter:,N=6" +file filterBladeNoSensor.req "P=xxx:,R=filter:,N=7" +file filterBladeNoSensor.req "P=xxx:,R=filter:,N=8" +file filterBladeNoSensor.req "P=xxx:,R=filter:,N=9" +file filterBladeNoSensor.req "P=xxx:,R=filter:,N=10" +file filterBladeNoSensor.req "P=xxx:,R=filter:,N=11" +file filterBladeNoSensor.req "P=xxx:,R=filter:,N=12" +file filterBladeNoSensor.req "P=xxx:,R=filter:,N=13" +file filterBladeNoSensor.req "P=xxx:,R=filter:,N=14" +file filterBladeNoSensor.req "P=xxx:,R=filter:,N=15" +file filterBladeNoSensor.req "P=xxx:,R=filter:,N=16" + +``` + +Top level MEDM display files for this support are filter\_8\_0\_more.adl for two PF4 4-filter units filter\_8\_8\_more.adl for four PF4 4-filter units To load the MEDM display file, specify a related display button with something like the following entries: +``` +Display Label: PF4 filter 16 +Display File: filter_8_8_more.adl +Arguments: P=xxx:,R=filter +``` + +![](colorLine.gif) + +![](colorLine.gif) + +![](colorLine.gif) + +### Optical table + +The optical-table software is documented separately. See [tableRecord.html](tableRecord.html) + +Note that there are two versions of the optical table software. The original version uses EPICS analog output records for virtual motors. This is inconvenient for users (particularly, spec users) who would prefer to talk to soft motor records, rather than separate ao records. There is a new version of the optical table software software that uses soft motor records for virtual motions. See table\*soft\* in src, Db, and op directories. + +![](colorLine.gif) + +![](colorLine.gif) + +![](colorLine.gif) + +### Orientation matrix (diffractometer control) + +![](orient_full.adl.jpg) +orient\_full.adl + +![](orient_XTALS.adl.jpg) +orient\_XTALS.adl + +![](colorLine.gif) + +![](colorLine.gif) + +![](colorLine.gif) + +### Io calculation (Jon Tischler) + +![](Io.adl.jpg) +Io.adl + +![](Io_small.adl.jpg) +Io\_small.adl + +This software calculates the photon flux through an ion chamber, given the counts recorded in scaler channels, and data describing the ionization chamber, the beam energy, and the signal path from ionization chamber to scaler. + +![](colorLine.gif) + +![](colorLine.gif) + +![](colorLine.gif) + +### PID loop support + +![](fb_epid/fb_epid_adl.png) +fb\_epid.adl + +The fb\_epid support provides a database centered around the EPICS [epid](http://cars9.uchicago.edu/software/epics/epidRecord.html) record. [Documentation](fb_epid/index.html) is provided on a separate page. + +![](colorLine.gif) + +Suggestions and Comments to: +[ Keenan Lang ](mailto:klang@anl.gov): (klang@anl.gov) diff --git a/docs/opticsReleaseNotes.md b/docs/opticsReleaseNotes.md new file mode 100644 index 0000000..85a892d --- /dev/null +++ b/docs/opticsReleaseNotes.md @@ -0,0 +1,212 @@ +--- +layout: default +title: Release Notes +nav_order: 3 +--- + + +optics Release Notes +==================== + +Release 2-14 (Jun. 5 2023) +-------------------------- + +- Added support for APSU variable mask aperture slits +- Added support for APS combined motion flexture stages +- Fixed unused variables in filterDrive.st +- Updated documentation to github pages + +Release 2-13-5 (Oct, 5 2020) +---------------------------- + +- Iocsh files now installed to top level folder from opticsApp/iocsh + +Release 2-13-4 (Apr. 20 2020) +----------------------------- + +- Autoconverted adl screens to edl and bob + +Release 2-13-3 (Jun. 14 2019) +----------------------------- + +- Req files now installed to top level db folder. + +Release 2-13-2 (Apr. 3 2019) +---------------------------- + +- Updated record structure for EPICS v7 +- kohzuCtl speeds now optional and input values are checked against limits before being set +- New iocsh script for setting up XIA pfcu slits + +Release 2-13-1 (Jun 5. 2018) +---------------------------- + +- Autoconverted ui and css files are now in subfolders + +Release 2-13 (Dec 5, 2017) +-------------------------- + +- Modified hrCtl.st so that limits for energy and wavelength are calculated from limits of both phy1 and phi2 motors - whichever limit is more restrictive rules. +- Modified kohzuCtl.st and kohzuCtl\_soft.st so user can disable speed control. +- Modified kohzuCtl.st and kohzuCtl\_soft.st so entering a value for energy, lambda, or theta that will violate a limit doesn't put the mono into manual mode. + +Release 2-12 +------------ + +- Added iocsh files for all support that require more than just a database. +- /orient.iocsh: Found out you can set macros for template files, will make matching PV's easier. Added default substitutions file to demonstrate to users of orient.iocsh a functions sub file. +- CONFIG\_APP -> CONFIG\_SITE, revamped configure from base-3.15.4 makeBaseApp example. +- kohzuSeq: Enable/disable speed control via PV $(P)KohzuSpeedCtrl +- Modified 2slit\_soft.vdb and table\_soft.vdb to allow more effective control by spec - especially in the setting (that is, recalibration) of soft motor values. (kohzuSeq\_soft.vdb does not have these changes.) NOTE that these changes require a version of the motor record with the IGSET (ignore set) field. Currently (5/12/2017), no released version of the motor module has this, but it's in the trunk as of 1/12/2017.) +- Previously, kohzuCtl\_soft.st used macro variables kohzuCtl\_pmac\*. Now it uses kohzuCtl\_soft\_pmac\*. + +Release 2-11 +------------ + +- Added support for slits, optical table, and Kohzu monochromator with soft motor record front ends: 2slit\_soft, table\*soft, kohzuCtl\_soft. +- Added support for MultiLayer Laue stage: MLLH, MLLV. +- Modified tableRecord.c to write to all motors every time. table\_soft.vdb depends on this; table.db doesn't care. + +Release 2-10 +------------ + +- tableRecord: Added the menu field AUNIT, which allows user or developer to specify the units in which table angles AX, AY, and AZ are understood and displayed. The Overall table orientation angle, YANG, must be in degrees. +- When finding angle limits, explore +/- 80 degrees (previously, it was +/- 5). If can't find an angle that violates a motor limit, set angle limit to +/- 89 degrees. + +Release 2-9-3 +------------- + +- tableRecord.c: User-limit was broken, which in some cases prevented effective use of "Set/Use" and "Zero" features. As part of the fix, relative user limits (e.g., UHAXR) have been added to supplement the previously supported absolute limits (e.g., UHAX). +- tableRecord.c: Newport geometry sometimes gave unphysical angle readbacks when M0Y and M2Y had exactly the same value. Thanks to Mark Rivers for isolating the condition in which this occurred. +- table\_settings.req: wasn't including tweak values. +- Spherical grating monochromator database: changed SGM$(N) to $(SGM), so user can give it any name, and to agree with SGM\_settings.req. + +Release 2-9-2 +------------- + +- hrSeq.db: Crystal species wasn't implemented right (seq record needed TypeMO.RVAL, instead of TyoeMO.VAL) +- hrCtl.st: phi1MotRdbk wasn't converted to degrees before being used to init Phi1. Theta2 init wasn't honoring Geom switch. Fixed "when" statements that included expressions like "efTestAndClear() && delay(.1)", which can fail because delay hasn't expired, and then fail because flag was cleared. Use pvPut(, ASYNC) instead of motor.DMOV fields to check for completion. +- hrCtl.st: When motors moved by third party, drive "Moving", and set to Manual mode when motors stop. sprintf overwrote end of string. +- orient\_st.st: User messages were overflowing string fields. +- MLLH, MLLV: New databases and display files for Multilayer Laue Lens instrument. The databases are also examples of using multiple soft motors to control multiple hard motors through transforms. + +Release 2-9-1 +------------- + +- filterDrive.st: Added OUTGET for separate readback of outputs; only move enabled filters. Removed trailing backslash characters from several lines, caused compiler failure on Windows. +- filterBladeNoSensor.db: Added OutGet and OutSet records and OUT\_STRING and IN\_STRING macro parameters so the database does not assume blade in=1 and blade out=0. +- filter.substitutions: Added OUT\_STRING and IN\_STRING macro parameters + +Release 2-9 +----------- + +- __fb\_epid__ updated (2012-02-29): + - Support and [documentation](fb_epid/index.html) updated to help with deployment. + - Added simulation of a temperature controller as default configuration. + - TODO: Consider replacing swait records with calcout from EPICS base. +- Split chantler.h into chantler.h and chantler.c, so more than one program can use it. +- Added iocBoot examples code +- Added Christian Schlepuetz' support for the XIA PF4 filter, which draws from support developed by David Maden, Jon Tischler, Pete Jemian, and Tim Mooney. +- Fixed initialization problems in SGM database, and converted to VDCT. +- Added CSS-BOY and caQtDM display files + +Release 2-8-1 +------------- + +- hrSeq.db, hrCtl.st now permits min/max theta to be specified via PVs +- Dropped \_\_VAR\_ARGS\_\_ from sncqxbpm.st, because different compilers do this differently. + +Release 2-8 +----------- + +- 2slit.db, 2slit.adl, 4slitGraphic.adl: Add CoordSys record, and "RELTOCENTER" macro which controls its value. If CoordSys==0, the database is backward compatible with previous versions, and both motors move in the lab frame (both increase in the same direction). Otherwise, both motors increase as the slit opens. + Also added autosave-request file 2slit\_settings.req. +- pf4 filter: + - Extensive modifications to support additional filter materials, and to avoid having to specify I/O and energy PVs to both the SNL program and to the MEDM-display files. Also, change the way I/O PVs are specified ('$(BP)$(Bn)' instead of '$(Bn)') to avoid vxWorks line-length limitations. + - Added transmission factor for each bank separately + - For new filter materials, show user raw absorption data (mu) as a function of energy + - Display digital I/O bits, so we can coexist with external software that independently manages I/O bits. +- Changes for 64-bit arch +- tableRecord.c: Compare user limits to (>SMALL), rather than to (==0) +- xiahsc.st: Added the validateResponse patch to xiahsc.st that I wrote for unicat to resolve the problem of temporary, incorrect, position readbacks. + Modifications to build with seq 2.1.0: snc wasn't parsing sprintf call correctly, so I put it behind '%%'. +- Modified RELEASE; deleted RELEASE.arch +- Added .opi display files for CSS-BOY +- sncqxbpm.st: Modifications to build with seq 2.1.0: delete variable assignment and comma separator within macro. + +Release 2-7 +----------- + +- SGM.db had some empty links that were specified as "0", which produced link errors. +- table\_setup\_PNC.adl showed origin in wrong position (at M1, instead of M0). +- Added database and MEDM displays for a multilayer monochromator. +- 2slit.db, 2postMirror.db - Added DMOV PV, implemented using local gate PV. +- Added fb\_epid.db and fb\_epid.adl: user-reconfigurable software feedback using the epid record, and related documentation fb\_epid/\*. +- Added sncqxbpm.st, qxbpm.db, qxbpm.req, qxbpm\*.adl - Support for the Oxford 4-channel X-ray Beam Position Monitor, and related documentation qxbpm.html. +- xia-slit.db - Modified for update slit support +- seqPVmacros.h - format changes +- tableRecord.c - commented out unused variables + +Release 2-6-1 +------------- + +- Added support for a multilayer monochromator +- XIA\_shutter.db - user command was sometimes overwritten by a poll and dropped + +Release 2-6 +----------- + +- New support for XIA PF4 filter/shutter: rewritten to use asyn records instead of stringin/out records with stringParm device support. Also waitTime calc (for serial record) was in milliseconds, but the serial record was replaced by an asyn record, whose timeout is specified in seconds. Database converted to vdct. +- Oxford 4-channel x-ray beam position monitor +- New support for an ASRP optical table +- optics/opticsApp/Db/2slit.db: deleted gate-related PV's +- optics/opticsApp/Db/table.db: Fixed problems that were causing motor records to be put into alarm: tweakVal records had UDF==1; calcout record had empty CALC expression. + +Release 2-5-3 +------------- + +- Fixed problems in table.db that caused the table to put motors into alarm. + +Release 2-5-2 +------------- + +- Added MEDM display files for XIA PF4 filter, and fixed it to compile for vxWorks +- xia\_slit.st was not honoring limits written to the hardware. +- 2slit.db converted to vdct + +Release 2-5-1 +------------- + +- Added CoarseFineMotor database and MEDM display files +- fixed minor problems with xia\_slit MEDM display. +- Added support for XIA PF4 dual filters. +- Added support for Io (ionization-chamber) calculation. + +Release 2-5 +----------- + +- Added diffractometer support (orientation matrix) +- Added some documentation for slits, mirrors, filters, spherical grating monochromator, high-energy-resolution monochromator. +- Ported xia slit to EPICS 3.14, and improved its behavior when driven by ca\_put\_callback(). + +Release 2-4 +----------- + +- Added table of fixed points (points about which an optical table rotates) to table database, request file, and medm displays +- The save\_restore include file, table\_settings.req, now requires the additional macro argument 'Q'. This is the same macro argument required by table.db. + +Release 2-3 +----------- + +This is the first release of the synApps optics module. Version numbering for this module begins with 2.3 because this module was split from version 2.2 of the std module, and I wanted to retain the CVS histories of module contents. + +This version is intended to build with EPICS base 3.14.5, mpf 2.4.2, and std 2.3. Differences from software as previously released in std 2.2: + +- Converted to EPICS 3.14 +- Docs updated and moved to optics/documentation +- SGM.db - removed forward links pointing nowhere (gdct artifacts). +- kohzuSeq.db - added debug PV $(P)KohzuCtlDebug. Fixed long-standing bug: if the theta motor was moved by a very small amount (by external client not working through kohzuCtl) this software would sometimes ignore the notification it received from EPICS. +- hrSeq.db - added debug PV $(P)HR$(N)CtlDebug. Fixed long-standing bug: if a theta motor was moved by a very small amount (by external client not working through hrCtl) this software would sometimes ignore the notification it received from EPICS. + +Suggestions and Comments to: +[ Keenan Lang ](mailto:klang@anl.gov): (klang@anl.gov) diff --git a/documentation/orient.doc b/docs/orient.doc similarity index 100% rename from documentation/orient.doc rename to docs/orient.doc diff --git a/documentation/orient_XTALS.adl.jpg b/docs/orient_XTALS.adl.jpg similarity index 100% rename from documentation/orient_XTALS.adl.jpg rename to docs/orient_XTALS.adl.jpg diff --git a/documentation/orient_full.adl.jpg b/docs/orient_full.adl.jpg similarity index 100% rename from documentation/orient_full.adl.jpg rename to docs/orient_full.adl.jpg diff --git a/documentation/orient_test.txt b/docs/orient_test.txt similarity index 100% rename from documentation/orient_test.txt rename to docs/orient_test.txt diff --git a/documentation/pf4.jpg b/docs/pf4.jpg similarity index 100% rename from documentation/pf4.jpg rename to docs/pf4.jpg diff --git a/documentation/pf4config.jpg b/docs/pf4config.jpg similarity index 100% rename from documentation/pf4config.jpg rename to docs/pf4config.jpg diff --git a/documentation/pf4more.jpg b/docs/pf4more.jpg similarity index 100% rename from documentation/pf4more.jpg rename to docs/pf4more.jpg diff --git a/docs/qxbpm.md b/docs/qxbpm.md new file mode 100644 index 0000000..d05fd1b --- /dev/null +++ b/docs/qxbpm.md @@ -0,0 +1,58 @@ +--- +layout: default +title: Oxford BPM +nav_order: 5 +--- + + +Support for the Oxford 4-channel X-ray Beam Position Monitor +============================================================ + +Pete Jemian +- - - - - - + +Contents +-------- + +- [Overview](#Overview) +- [Differences from previous versions](#Differences) +- [Usage](#Usage) +- [Beam line installation](#BL_install) +- [IOC installation](#IOC_install) +- [Restrictions](#Restrictions) + +- - - - - - + +Overview +-------- + +Need to write this section + + +Differences from previous versions +---------------------------------- + +- 2007-05: first version in synApps + + + +Beam line installation +---------------------- + +Need to write this section + +IOC installation of the software support +---------------------------------------- + +Need to write this section + +- - - - - - + +Restrictions +------------ + +- - - - - - + +Suggestions and comments to: +[Pete Jemian](mailto:jemian@anl.gov) : (jemian@anl.gov) +Last modified: 2007-05-04 diff --git a/docs/tableRecord.md b/docs/tableRecord.md new file mode 100644 index 0000000..63e48a9 --- /dev/null +++ b/docs/tableRecord.md @@ -0,0 +1,643 @@ +--- +layout: default +title: Table Record +nav_order: 4 +--- + + +Table Record and related software +================================= + +Contents +-------- + +- [Overview](#Overview) +- [Differences from previous versions](#Differences) +- [Field Descriptions](#Fields) +- [Files](#Files) +- [Restrictions](#Restrictions) + +Overview +-------- + +This documentation describes version 5.14 of the EPICS table record, and related EPICS software recommended for building and using it. This version of the record is compatible with EPICS Release 3.14.X, and it is not compatible with any earlier releases of EPICS. The table record controls six (or fewer) motors that drive an optical table, a platform that generally can move in three orthogonal directions (X, Y, and Z), and rotate about the X, Y, and Z axes by angles AX, AY, and AZ. The record allows users to specify the point about which rotations are to occur--this is called the "fixed point" in the figures below. + +The record assumes the platform rests on three pivot points named M0, M1, and M2. (See Figs. 1-4, below). The locations of these pivot points, and the manner in which they move, is specified by the field GEOM (loosely, the table geometry). Four geometries, named SRI, PNC, GEOCARS, and NEWPORT, are supported by this version of the table record. + +![](table_setup_SRI.adl.gif) +Figure 1 (SRI geometry) + +![](table_setup_PNC.adl.gif) +Figure 2 (PNC geometry) + +![](table_setup_GEOCARS.adl.gif) +Figure 3 (GEOCARS geometry) + +![](table_setup_NEWPORT.adl.gif) +Figure 4 (NEWPORT geometry) + + +In the SRI, PNC, and GEOCARS geometries, three motors (M0Y, M1Y, M2Y) move M0, M1, and M2 in the Y direction (vertically); one motor (M0X) moves M0 in the X direction; one motor (M2X) moves M2 in the X direction; and one motor (M2Z) moves M2 in the Z direction. M1 is unconstrained in the X-Z plane; M0 is unconstrained along the Z axis. + +In the NEWPORT geometry, the three motors (M0Y, M1Y, M2Y) vary the lengths of the table legs (i.e., the distances between the table top and pivot points M0, M1, and M2). Thus, in this geometry the pivot points do not move vertically. + +You are (or the instrument specialist is) expected to customize the table software by specifying the motors it is to control, and to set up the table by describing the locations of the pivot points, and by specifying the table geometry, the orientation angle of the table with respect to the laboratory coordinate system, the location of the point about which the table is to rotate (also called the "fixed" point in this documentation), and any absolute user limits on virtual motors. + + + +Differences from previous versions +---------------------------------- + +- Previously, the transformation between user coordinates (the translations X, Y, Z; the angles AX, AY, AZ; and limits constraining those quantities) and motor coordinates (M0X, M0Y, M1Y, M2X, M2Y, M2Z, and associated limits) was calculated only to first order in the angles. In this version, all calculations are exact. +- Previously, the location of the point fixed under rotations was specified by the fields SX, SY, and SZ, which were distances from various pivot points with various sign conventions. In this version, the location is specified by two vectors: a reference-point vector R, which locates an arbitrary point from which measurements are practical (e.g., a corner of the table surface); and the vector, S, which locates the fixed point relative to R. These vectors are specified with the fields RX, RY, RZ, SX, SY, SZ. They are defined relative to the origin of the table's local coordinate system. (See Figs. 1-4.) + + If R=0, the new system is nearly identical to the old, except for the value SX, whose definition has changed such that SX\_new = LX - SX\_old. (In most cases, SX\_old was equal to LX/2, so no change is required.) +- The field LX21 has been deleted. + + + +Field Descriptions +------------------ + +In addition to fields common to all record types (see the [EPICS Record Reference Manual](http://www.aps.anl.gov/asd/controls/epics/EpicsDocumentation/AppDevManuals/RecordRef/Recordref-1.html) for these) the table record has the fields described below. + +| [Alphabetical listing of all fields](#Fields_alphabetical) | with *terse* descriptions | +|---|---| +| [Calibration fields](#Fields_calib) | allow you to redefine the table position | +| [Setup fields](#Fields_setup) | specify the table dimensions and the location of the "fixed point" | +| [Link fields](#Fields_link) | connect the table record to motor records | +| [Limit fields](#Fields_limit) | values read from or calculated from motor limits | +| [Speed fields](#Fields_speed) | attempt to keep the "fixed" point fixed even while moving | +| [Table drive fields](#Fields_tblDrv) | by which you move the table | +| [Motor drive fields](#Fields_motDrv) | by which the table record moves motors | +| [Readback fields](#Fields_readback) | current and desired positions of table and motors | +| [Miscellaneous fields](#Fields_misc) | engineering units, command "buttons", etc. | +| [Private fields](#Fields_prvt) | in which you are not expected to be interested | + +- - - - - - + +| Name | Access | Prompt | Data type | Comment | +|---|---|---|---|------------| +| [A](#Fields_prvt) | R | x to m matrix | DOUBLE\* | 3x3 rotation matrix | +| [AEGU](#Fields_misc) | R/W | Angular Units Name | MENU | Engineering units for angles (16-chars). This field will be filled in by the record according to AUNIT | +| [AUNIT](#Fields_misc) | R/W | Angular Units Menu | STRING | Engineering units for angles: "degrees" or microradians ("ur") | +| [AX0](#Fields_calib) | R/W | x-angle offset | DOUBLE | True table position - reported table position | +| [AX](#Fields_tblDrv) | R/W\* | x angle | DOUBLE | x-angle drive field | +| [AXL](#Fields_calib) | R | x angle true value | DOUBLE | True x angle | +| [AXRB](#Fields_readback) | R | x angle readback | DOUBLE | x angle calculated from motor drive values | +| [AY0](#Fields_calib) | R/W | y-angle offset | DOUBLE | True table position - reported table position | +| [AY](#Fields_tblDrv) | R/W\* | y angle | DOUBLE | y-angle drive field | +| [AYL](#Fields_calib) | R | y angle true value | DOUBLE | True y angle | +| [AYRB](#Fields_readback) | R | y angle readback | DOUBLE | y angle calculated from motor drive values | +| [AZ0](#Fields_calib) | R/W | z-angle offset | DOUBLE | True table position - reported table position | +| [AZ](#Fields_tblDrv) | R/W\* | z angle | DOUBLE | z-angle drive field | +| [AZL](#Fields_calib) | R | z angle true value | DOUBLE | True z angle | +| [AZRB](#Fields_readback) | R | z angle readback | DOUBLE | z angle calculated from motor drive values | +| [B](#Fields_prvt) | R | m to x matrix | DOUBLE\* | 3x3 utility matrix | +| [E0X](#Fields_readback) | R | encoder 0X val | DOUBLE | Current position of M0X motor | +| [E0XI](#Fields_link) | R/W | encoder 0X inlink | INLINK | Link from M0X motor's readback | +| [E0Y](#Fields_readback) | R | encoder 0Y val | DOUBLE | Current position of M0Y motor | +| [E0YI](#Fields_link) | R/W | encoder 0Y inlink | INLINK | Link from M0Y motor's readback | +| [E1Y](#Fields_readback) | R | encoder 1Y val | DOUBLE | Current position of M1Y motor | +| [E1YI](#Fields_link) | R/W | encoder 1Y inlink | INLINK | Link from M1Y motor's readback | +| [E2X](#Fields_readback) | R | encoder 2X val | DOUBLE | Current position of M2X motor | +| [E2XI](#Fields_link) | R/W | encoder 2X inlink | INLINK | Link from M2X motor's readback | +| [E2Y](#Fields_readback) | R | encoder 2Y val | DOUBLE | Current position of M2Y motor | +| [E2YI](#Fields_link) | R/W | encoder 2Y inlink | INLINK | Link from M2Y motor's readback | +| [E2Z](#Fields_readback) | R | encoder 2Z val | DOUBLE | Current position of M2Z motor | +| [E2ZI](#Fields_link) | R/W | encoder 2Z inlink | INLINK | Link from M2Z motor's readback | +| [EAX](#Fields_readback) | R | encoder x angle | DOUBLE | Current table position (x angle) | +| [EAY](#Fields_readback) | R | encoder y angle | DOUBLE | Current table position (y angle) | +| [EAZ](#Fields_readback) | R | encoder z angle | DOUBLE | Current table position (z angle) | +| [EX](#Fields_readback) | R | encoder x | DOUBLE | Current table position (x translation) | +| [EY](#Fields_readback) | R | encoder y | DOUBLE | Current table position (y translation) | +| [EZ](#Fields_readback) | R | encoder z | DOUBLE | Current table position (z translation) | +| [H0X](#Fields_limit) | R | motor 0X hi limit | DOUBLE | | +| [H0XL](#Fields_link) | R/W | motor 0X HLM link | INLINK | Link from motor's limit field | +| [H0Y](#Fields_limit) | R | motor 0Y hi limit | DOUBLE | | +| [H0YL](#Fields_link) | R/W | motor 0Y HLM link | INLINK | Link from motor's limit field | +| [H1Y](#Fields_limit) | R | motor 1Y hi limit | DOUBLE | | +| [H1YL](#Fields_link) | R/W | motor 1Y HLM link | INLINK | Link from motor's limit field | +| [H2X](#Fields_limit) | R | motor 2X hi limit | DOUBLE | | +| [H2XL](#Fields_link) | R/W | motor 2X HLM link | INLINK | Link from motor's limit field | +| [H2Y](#Fields_limit) | R | motor 2Y hi limit | DOUBLE | | +| [H2YL](#Fields_link) | R/W | motor 2Y HLM link | INLINK | Link from motor's limit field | +| [H2Z](#Fields_limit) | R | motor 2Z hi limit | DOUBLE | | +| [H2ZL](#Fields_link) | R/W | motor 2Z HLM link | INLINK | Link from motor's limit field | +| [HLAX](#Fields_limit) | R | x angle hi limit | DOUBLE | Calculated from motor limits | +| [HLAY](#Fields_limit) | R | y angle hi limit | DOUBLE | Calculated from motor limits | +| [HLAZ](#Fields_limit) | R | z angle hi limit | DOUBLE | Calculated from motor limits | +| [HLX](#Fields_limit) | R | x hi limit | DOUBLE | Calculated from motor limits | +| [HLY](#Fields_limit) | R | y hi limit | DOUBLE | Calculated from motor limits | +| [HLZ](#Fields_limit) | R | z hi limit | DOUBLE | Calculated from motor limits | +| [INIT](#Fields_misc) | R/W\* | init table | SHORT | Command: Abandon calibration and sync drive fields to motor positions | +| [GEOM](#Fields_setup) | R/W\* | table geometry | DOUBLE | (0:"SRI", 1:"GEOCARS", 2:"NEWPORT", 3:"PNC") Specify the arrangement of table legs and motors. | +| [L0X](#Fields_limit) | R | motor 0X lo limit | DOUBLE | | +| [L0XL](#Fields_link) | R/W | motor 0X LLM link | INLINK | Link from motor's limit field | +| [L0Y](#Fields_limit) | R | motor 0Y lo limit | DOUBLE | | +| [L0YL](#Fields_link) | R/W | motor 0Y LLM link | INLINK | Link from motor's limit field | +| [L1Y](#Fields_limit) | R | motor 1Y lo limit | DOUBLE | | +| [L1YL](#Fields_link) | R/W | motor 1Y LLM link | INLINK | Link from motor's limit field | +| [L2X](#Fields_limit) | R | motor 2X lo limit | DOUBLE | | +| [L2XL](#Fields_link) | R/W | motor 2X LLM link | INLINK | Link from motor's limit field | +| [L2Y](#Fields_limit) | R | motor 2Y lo limit | DOUBLE | | +| [L2YL](#Fields_link) | R/W | motor 2Y LLM link | INLINK | Link from motor's limit field | +| [L2Z](#Fields_limit) | R | motor 2Z lo limit | DOUBLE | | +| [L2ZL](#Fields_link) | R/W | motor 2Z LLM link | INLINK | Link from motor's limit field | +| [LEGU](#Fields_misc) | R/W | Linear Units Name | STRING | Engineering units for translations (16-chars) | +| [LLAX](#Fields_limit) | R | x angle lo limit | DOUBLE | Calculated from motor limits | +| [LLAY](#Fields_limit) | R | y angle lo limit | DOUBLE | Calculated from motor limits | +| [LLAZ](#Fields_limit) | R | z angle lo limit | DOUBLE | Calculated from motor limits | +| [LLX](#Fields_limit) | R | x lo limit | DOUBLE | Calculated from motor limits | +| [LLY](#Fields_limit) | R | y lo limit | DOUBLE | Calculated from motor limits | +| [LLZ](#Fields_limit) | R | z lo limit | DOUBLE | Calculated from motor limits | +| [LVIO](#Fields_limit) | R | limit violation | SHORT | If nonzero, requested motion would violate limits | +| [LX](#Fields_setup) | R/W | wheelbase x | DOUBLE | x distance between table legs M0 and M1 | +| [LZ](#Fields_setup) | R/W | wheelbase z | DOUBLE | z distance between table legs M0 and M2 | +| [M0X](#Fields_motDrv) | R | motor 0X val | DOUBLE | Desired motor position | +| [M0XL](#Fields_link) | R/W | motor 0X outlink | OUTLINK | Link to motor's drive field | +| [M0Y](#Fields_motDrv) | R | motor 0Y val | DOUBLE | Desired motor position | +| [M0YL](#Fields_link) | R/W | motor 0Y outlink | OUTLINK | Link to motor's drive field | +| [M1Y](#Fields_motDrv) | R | motor 1Y val | DOUBLE | Desired motor position | +| [M1YL](#Fields_link) | R/W | motor 1Y outlink | OUTLINK | Link to motor's drive field | +| [M2X](#Fields_motDrv) | R | motor 2X val | DOUBLE | Desired motor position | +| [M2XL](#Fields_link) | R/W | motor 2X outlink | OUTLINK | Link to motor's drive field | +| [M2Y](#Fields_motDrv) | R | motor 2Y val | DOUBLE | Desired motor position | +| [M2YL](#Fields_link) | R/W | motor 2Y outlink | OUTLINK | Link to motor's drive field | +| [M2Z](#Fields_motDrv) | R | motor 2Z val | DOUBLE | Desired motor position | +| [M2ZL](#Fields_link) | R/W | motor 2Z outlink | OUTLINK | Link to motor's drive field | +| [MMAP](#Fields_prvt) | R | Monitor Mask | ULONG | | +| [PP0](#Fields_prvt) | R | pivot pt 0 | DOUBLE | Desired loc of pivot point 0 (3 vector) | +| [PP1](#Fields_prvt) | R | pivot pt 1 | DOUBLE | Desired loc of pivot point 1 (3 vector) | +| [PP2](#Fields_prvt) | R | pivot pt 2 | DOUBLE | Desired loc of pivot point 2 (3 vector) | +| [PPO0](#Fields_prvt) | R | pivot pt 0 orig | DOUBLE | Current loc of pivot point 0 (3 vector) | +| [PPO1](#Fields_prvt) | R | pivot pt 1 orig | DOUBLE | Current loc of pivot point 1 (3 vector) | +| [PPO2](#Fields_prvt) | R | pivot pt 2 orig | DOUBLE | Current loc of pivot point 2 (3 vector) | +| [PREC](#Fields_misc) | R/W | Display Precision | SHORT | Number of digits to right of decimal point | +| [R0X](#Fields_readback) | R | motor 0X readback | DOUBLE | Motor's desired value | +| [R0XI](#Fields_link) | R/W | motor 0X RBV link | INLINK | Link from motor's drive field | +| [R0Y](#Fields_readback) | R | motor 0Y readback | DOUBLE | Motor's desired value | +| [R0YI](#Fields_link) | R/W | motor 0Y RBV link | INLINK | Link from motor's drive field | +| [R1Y](#Fields_readback) | R | motor 1Y readback | DOUBLE | Motor's desired value | +| [R1YI](#Fields_link) | R/W | motor 1Y RBV link | INLINK | Link from motor's drive field | +| [R2X](#Fields_readback) | R | motor 2X readback | DOUBLE | Motor's desired value | +| [R2XI](#Fields_link) | R/W | motor 2X RBV link | INLINK | Link from motor's drive field | +| [R2Y](#Fields_readback) | R | motor 2Y readback | DOUBLE | Motor's desired value | +| [R2YI](#Fields_link) | R/W | motor 2Y RBV link | INLINK | Link from motor's drive field | +| [R2Z](#Fields_readback) | R | motor 2Z readback | DOUBLE | Motor's desired value | +| [R2ZI](#Fields_link) | R/W | motor 2Z RBV link | INLINK | Link from motor's drive field | +| [READ](#Fields_misc) | R/W\* | readback motors | SHORT | Command: read current motor positions, translate to table positions | +| [RX](#Fields_setup) | R/W\* | x of ref point | DOUBLE | X position of reference point | +| [RY](#Fields_setup) | R/W\* | y of ref point | DOUBLE | Y position of reference point | +| [RZ](#Fields_setup) | R/W\* | z of ref point | DOUBLE | Z position of reference point | +| [SET](#Fields_calib) | R/W | set table | MENU | (0:"Use", 1:"Set") | +| [SSET](#Fields_calib) | R/W | Set SET Mode | SHORT | asl(ASL0) | +| [SUSE](#Fields_calib) | R/W | Set USE Mode | SHORT | asl(ASL0) | +| [SX](#Fields_setup) | R/W\* | x of fixed point | DOUBLE | X position of fixed point | +| [SY](#Fields_setup) | R/W\* | y of fixed point | DOUBLE | Y position of fixed point | +| [SYNC](#Fields_misc) | R/W\* | sync with motors | SHORT | Command: read motor positions, reconcile table positions to them | +| [SZ](#Fields_setup) | R/W\* | z of fixed point | DOUBLE | Z position of fixed point | +| [UHAX](#Fields_limit) | R/W\* | user's x angle hi limit | DOUBLE | Absolute user limit (independent of table calibration) | +| [UHAY](#Fields_limit) | R/W\* | user's y angle hi limit | DOUBLE | Absolute user limit (independent of table calibration) | +| [UHAZ](#Fields_limit) | R/W\* | user's z angle hi limit | DOUBLE | Absolute user limit (independent of table calibration) | +| [UHX](#Fields_limit) | R/W\* | user's x hi limit | DOUBLE | Absolute user limit (independent of table calibration) | +| [UHY](#Fields_limit) | R/W\* | user's y hi limit | DOUBLE | Absolute user limit (independent of table calibration) | +| [UHZ](#Fields_limit) | R/W\* | user's z hi limit | DOUBLE | Absolute user limit (independent of table calibration) | +| [ULAX](#Fields_limit) | R/W\* | user's x angle lo limit | DOUBLE | Absolute user limit (independent of table calibration) | +| [ULAY](#Fields_limit) | R/W\* | user's y angle lo limit | DOUBLE | Absolute user limit (independent of table calibration) | +| [ULAZ](#Fields_limit) | R/W\* | user's z angle lo limit | DOUBLE | Absolute user limit (independent of table calibration) | +| [ULX](#Fields_limit) | R/W\* | user's x lo limit | DOUBLE | Absolute user limit (independent of table calibration) | +| [ULY](#Fields_limit) | R/W\* | user's y lo limit | DOUBLE | Absolute user limit (independent of table calibration) | +| [ULZ](#Fields_limit) | R/W\* | user's z lo limit | DOUBLE | Absolute user limit (independent of table calibration) | +| [UHAXR](#Fields_limit) | R/W\* | user's x angle hi limit | DOUBLE | Relative user limit (varies with table calibration) | +| [UHAYR](#Fields_limit) | R/W\* | user's y angle hi limit | DOUBLE | Relative user limit (varies with table calibration) | +| [UHAZR](#Fields_limit) | R/W\* | user's z angle hi limit | DOUBLE | Relative user limit (varies with table calibration) | +| [UHXR](#Fields_limit) | R/W\* | user's x hi limit | DOUBLE | Relative user limit (varies with table calibration) | +| [UHYR](#Fields_limit) | R/W\* | user's y hi limit | DOUBLE | Relative user limit (varies with table calibration) | +| [UHZR](#Fields_limit) | R/W\* | user's z hi limit | DOUBLE | Relative user limit (varies with table calibration) | +| [ULAXR](#Fields_limit) | R/W\* | user's x angle lo limit | DOUBLE | Relative user limit (varies with table calibration) | +| [ULAYR](#Fields_limit) | R/W\* | user's y angle lo limit | DOUBLE | Relative user limit (varies with table calibration) | +| [ULAZR](#Fields_limit) | R/W\* | user's z angle lo limit | DOUBLE | Relative user limit (varies with table calibration) | +| [ULXR](#Fields_limit) | R/W\* | user's x lo limit | DOUBLE | Relative user limit (varies with table calibration) | +| [ULYR](#Fields_limit) | R/W\* | user's y lo limit | DOUBLE | Relative user limit (varies with table calibration) | +| [ULZR](#Fields_limit) | R/W\* | user's z lo limit | DOUBLE | Relative user limit (varies with table calibration) | +| [V0X](#Fields_speed) | R | speed 0X val | DOUBLE | Speed to be written to motor (for duration of commanded move) | +| [V0XI](#Fields_link) | R/W | speed 0X inlink | INLINK | Link from motor's speed field | +| [V0XL](#Fields_link) | R/W | speed 0X outlink | OUTLINK | Link to motor's speed field | +| [V0Y](#Fields_speed) | R | speed 0Y val | DOUBLE | Speed to be written to motor (for duration of commanded move) | +| [V0YI](#Fields_link) | R/W | speed 0Y inlink | INLINK | Link from motor's speed field | +| [V0YL](#Fields_link) | R/W | speed 0Y outlink | OUTLINK | Link to motor's speed field | +| [V1Y](#Fields_speed) | R | speed 1Y val | DOUBLE | Speed to be written to motor (for duration of commanded move) | +| [V1YI](#Fields_link) | R/W | speed 1Y inlink | INLINK | Link from motor's speed field | +| [V1YL](#Fields_link) | R/W | speed 1Y outlink | OUTLINK | Link to motor's speed field | +| [V2X](#Fields_speed) | R | speed 2X val | DOUBLE | Speed to be written to motor (for duration of commanded move) | +| [V2XI](#Fields_link) | R/W | speed 2X inlink | INLINK | Link from motor's speed field | +| [V2XL](#Fields_link) | R/W | speed 2X outlink | OUTLINK | Link to motor's speed field | +| [V2Y](#Fields_speed) | R | speed 2Y val | DOUBLE | Speed to be written to motor (for duration of commanded move) | +| [V2YI](#Fields_link) | R/W | speed 2Y inlink | INLINK | Link from motor's speed field | +| [V2YL](#Fields_link) | R/W | speed 2Y outlink | OUTLINK | Link to motor's speed field | +| [V2Z](#Fields_speed) | R | speed 2Z val | DOUBLE | Speed to be written to motor (for duration of commanded move) | +| [V2ZI](#Fields_link) | R/W | speed 2Z inlink | INLINK | Link from motor's speed field | +| [V2ZL](#Fields_link) | R/W | speed 2Z outlink | OUTLINK | Link to motor's speed field | +| [VAL](#Fields_misc) | R/W | Result | DOUBLE | Not used | +| [VERS](#Fields_misc) | R | Code Version | FLOAT | e.g., 5.0 | +| [X0](#Fields_calib) | R/W | x offset | DOUBLE | True table position - reported table position | +| [X](#Fields_tblDrv) | R/W\* | x translation | DOUBLE | x translation drive field | +| [XL](#Fields_calib) | R | x true value | DOUBLE | True x translation | +| [XRB](#Fields_readback) | R | x readback value | DOUBLE | x translation calc'd from motor drive values | +| [Y0](#Fields_calib) | R/W | y offset | DOUBLE | True table position - reported table position | +| [Y](#Fields_tblDrv) | R/W\* | y translation | DOUBLE | y translation drive field | +| [YANG](#Fields_setup) | R/W\* | Orientation angle | DOUBLE | Rotation of table base about Y axis | +| [YL](#Fields_calib) | R | y true value | DOUBLE | True y translation | +| [YRB](#Fields_readback) | R | y readback value | DOUBLE | y translation calc'd from motor drive values | +| [Z0](#Fields_calib) | R/W | z offset | DOUBLE | True table position - reported table position | +| [Z](#Fields_tblDrv) | R/W\* | z translation | DOUBLE | z translation drive field | +| [ZERO](#Fields_calib) | R/W\* | zero table | SHORT | Command: call current table position and angle 'zero' | +| [ZL](#Fields_calib) | R | z true value | DOUBLE | True z translation | +| [ZRB](#Fields_readback) | R | z readback value | DOUBLE | z translation calc'd from motor drive values | + + + + +### Alphabetical list of record-specific fields + +NOTE: Links in this table take you only to the *section* in which the linked item is described in detail. You'll probably have to scroll down to find the actual item. +Note: In the __Access__ column above: + +* R - Read only +* r - Read only, not posted +* R/W - Read and write are allowed +* R/W\* - Read and write are allowed; write triggers record processing if the record's SCAN field is set to "Passive." + +- - - - - - + +Calibration fields +------------------ + +The table record allows you to redefine any table position (or angle) to any value you want. It implements this by maintaining an offset for each virtual motor. To redefine X, for example, put the table into "Set" mode (write "Set" or "1" to the SET field) and write the new value to X. You cal also redefine all positions/angles to be zero by writing "1" to the ZERO field. + +| Name | Access | Prompt | Data type | Comments | +|---|---|---|---|---| +| AX0 | R/W | x-angle offset | DOUBLE | True table position - reported table position | +| AXL | R | x angle true value | DOUBLE | True x angle | +| AY0 | R/W | y-angle offset | DOUBLE | True table position - reported table position | +| AYL | R | y angle true value | DOUBLE | True y angle | +| AZ0 | R/W | z-angle offset | DOUBLE | True table position - reported table position | +| AZL | R | z angle true value | DOUBLE | True z angle | +| SET | R/W | set table | MENU | (0:"Use", 1:"Set") | +| SSET | R/W | Set SET Mode | SHORT | asl(ASL0) | +| SUSE | R/W | Set USE Mode | SHORT | asl(ASL0) | +| X0 | R/W | x offset | DOUBLE | True table position - reported table position | +| XL | R | x true value | DOUBLE | True x translation | +| Y0 | R/W | y offset | DOUBLE | True table position - reported table position | +| YL | R | y true value | DOUBLE | True y translation | +| Z0 | R/W | z offset | DOUBLE | True table position - reported table position | +| ZERO | R/W\* | zero table | SHORT | Command: call current table position and angle 'zero' | +| ZL | R | z true value | DOUBLE | True z translation | +| | | | | | + +- - - - - - + +Setup fields +------------ + +Three operations are required to set up the table. (Though simple, this is kind of messy in words. See Fig. 1-3 above.) __Specify the locations of the pivot points (legs).__ + +Select a table geometry by setting the field GEOM to "SRI", "GEOCARS", "NEWPORT", or "PNC". + +### SRI geometry + +The distance between M0 and M1 is specified with the field LX. (A line from M1 to M0 defines the positive x direction of the table's local coordinate system. The perpendicular distance from M2 to the line M1-M0 is specified with the field LZ. + +### GEOCARS geometry + +The distance between M0 and the line M1-M2 is specified with the field LX. (A line through M0 and perpendicular to M1-M2 defines the positive x direction of the table's local coordinate system. The distance from M1 to M2 is specified with the field LZ. + +### NEWPORT geometry + +The distance between M1 and the line M0-M2 is specified with the field LX. (A line perpendicular to M0-M2 defines the x direction of the table's local coordinate system. The distance from M0 to M2 is specified with the field LZ. + +### PNC geometry + + The distance between M0 and M1 is specified with the field LX. (A line from M0 to M1 defines the positive x direction of the table's local coordinate system. The perpendicular distance from M2 to the line M0-M1 is specified with the field LZ. + +__Specify the orientation of the table with respect to the laboratory coordinate system.__ + +The table orientation is specified with YANG, the angle through which the table must be rotated from an arbitrarily chosen "standard" position to the position in which you are going to use it. For the SRI and PNC geometries, when YANG=0, M2 is downstream. For the GEOCARS geometry, when YANG=0, M1 is directly downstream from M2. For the NEWPORT geometry, when YANG=0, M2 is directly downstream from M0. As the table rotates clockwise (as seen from above) YANG increases. (These standard positions are illustrated in Figs. 1-4.) + +__Specify the point about which the table is to rotate.__ + +This point is specified by (RZ, RY, RZ) and (SX, SY, SZ), as shown in Figs. 1-3, above. + + +| Name | Access | Prompt | Data type | Comments | +|---|---|---|---|---| +| GEOM | R/W\* | table geometry | DOUBLE | (0:"SRI", 1:"GEOCARS", 2:"NEWPORT", 3:"PNC") Specify the arrangement of table legs and motors. | +| LX | R/W | wheelbase x | DOUBLE | x distance between table legs | +| LZ | R/W | wheelbase z | DOUBLE | z distance between table legs | +| RX | R/W\* | x of ref point | DOUBLE | X position of reference point | +| RY | R/W\* | y of ref point | DOUBLE | Y position of reference point | +| RZ | R/W\* | z of ref point | DOUBLE | Z position of reference point | +| SX | R/W\* | x loc fixed point | DOUBLE | X position of fixed point | +| SY | R/W\* | y loc fixed point | DOUBLE | Y position of fixed point | +| SZ | R/W\* | z loc fixed point | DOUBLE | Z position of fixed point | +| YANG | R/W\* | Orientation angle | DOUBLE | Rotation of table base about Y axis | +| | | | | | + +- - - - - - + +Link fields +----------- + +The table record makes eight links with each of the six motor records it controls. For each motor, the table record reads and writes the drive and speed fields, and it reads the position-readback and limit fields. + +| Name | Access | Prompt | Data type | Comments | +|---|---|---|---|---| +| E0XI | R/W | encoder 0X inlink | INLINK | Link from M0X motor's readback | +| E0YI | R/W | encoder 0Y inlink | INLINK | Link from M0Y motor's readback | +| E1YI | R/W | encoder 1Y inlink | INLINK | Link from M1Y motor's readback | +| E2XI | R/W | encoder 2X inlink | INLINK | Link from M2X motor's readback | +| E2YI | R/W | encoder 2Y inlink | INLINK | Link from M2Y motor's readback | +| E2ZI | R/W | encoder 2Z inlink | INLINK | Link from M2Z motor's readback | +| H0XL | R/W | motor 0X HLM link | INLINK | Link from motor's limit field | +| H0YL | R/W | motor 0Y HLM link | INLINK | Link from motor's limit field | +| H1YL | R/W | motor 1Y HLM link | INLINK | Link from motor's limit field | +| H2XL | R/W | motor 2X HLM link | INLINK | Link from motor's limit field | +| H2YL | R/W | motor 2Y HLM link | INLINK | Link from motor's limit field | +| H2ZL | R/W | motor 2Z HLM link | INLINK | Link from motor's limit field | +| L0XL | R/W | motor 0X LLM link | INLINK | Link from motor's limit field | +| L0YL | R/W | motor 0Y LLM link | INLINK | Link from motor's limit field | +| L1YL | R/W | motor 1Y LLM link | INLINK | Link from motor's limit field | +| L2XL | R/W | motor 2X LLM link | INLINK | Link from motor's limit field | +| L2YL | R/W | motor 2Y LLM link | INLINK | Link from motor's limit field | +| L2ZL | R/W | motor 2Z LLM link | INLINK | Link from motor's limit field | +| M0XL | R/W | motor 0X outlink | OUTLINK | Link to motor's drive field | +| M0YL | R/W | motor 0Y outlink | OUTLINK | Link to motor's drive field | +| M1YL | R/W | motor 1Y outlink | OUTLINK | Link to motor's drive field | +| M2XL | R/W | motor 2X outlink | OUTLINK | Link to motor's drive field | +| M2YL | R/W | motor 2Y outlink | OUTLINK | Link to motor's drive field | +| M2ZL | R/W | motor 2Z outlink | OUTLINK | Link to motor's drive field | +| R0XI | R/W | motor 0X RBV link | INLINK | Link from motor's drive field | +| R0YI | R/W | motor 0Y RBV link | INLINK | Link from motor's drive field | +| R1YI | R/W | motor 1Y RBV link | INLINK | Link from motor's drive field | +| R2XI | R/W | motor 2X RBV link | INLINK | Link from motor's drive field | +| R2YI | R/W | motor 2Y RBV link | INLINK | Link from motor's drive field | +| R2ZI | R/W | motor 2Z RBV link | INLINK | Link from motor's drive field | +| V0XI | R/W | speed 0X inlink | INLINK | Link from motor's speed field | +| V0XL | R/W | speed 0X outlink | OUTLINK | Link to motor's speed field | +| V0YI | R/W | speed 0Y inlink | INLINK | Link from motor's speed field | +| V0YL | R/W | speed 0Y outlink | OUTLINK | Link to motor's speed field | +| V1YI | R/W | speed 1Y inlink | INLINK | Link from motor's speed field | +| V1YL | R/W | speed 1Y outlink | OUTLINK | Link to motor's speed field | +| V2XI | R/W | speed 2X inlink | INLINK | Link from motor's speed field | +| V2XL | R/W | speed 2X outlink | OUTLINK | Link to motor's speed field | +| V2YI | R/W | speed 2Y inlink | INLINK | Link from motor's speed field | +| V2YL | R/W | speed 2Y outlink | OUTLINK | Link to motor's speed field | +| V2ZI | R/W | speed 2Z inlink | INLINK | Link from motor's speed field | +| V2ZL | R/W | speed 2Z outlink | OUTLINK | Link to motor's speed field | + +- - - - - - + +Limit-related fields +-------------------- + +The table record keeps a copy of each motor's high and low limit values. From them it calculates high and low limits for the virtual motors. It's probably worth emphasizing the fact that virtual-motor limits are coupled: if you rotate the table about the X axis as far as it will go, you no longer have any room left to translate it in at least one Y direction, for example. User limits UH\* and UL\* are applied to virtual-motor limits after those limits have been calculated from motor limits. If both the high and low absolute limits associated with a motion are exactly zero, those limits are ignored. To keep a table's X angle at zero, then, you might set UHAX=.001, ULAX=-.001. + +Note that there are both absolute and relative user-limit fields. Absolute limits (UHAX, for example) don't change as the table calibration is changed; relative limits do vary with table calibration. (The table calibration is changed either by pressing the "Zero" button, or by putting the table in "Set" mode and writing to virtual motors such as X, Ax, etc.) + +| Name | Access | Prompt | Data type | Comments | +|---|---|---|---|---| +| H0X | R | motor 0X hi limit | DOUBLE | | +| H0Y | R | motor 0Y hi limit | DOUBLE | | +| H1Y | R | motor 1Y hi limit | DOUBLE | | +| H2X | R | motor 2X hi limit | DOUBLE | | +| H2Y | R | motor 2Y hi limit | DOUBLE | | +| H2Z | R | motor 2Z hi limit | DOUBLE | | +| HLAX | R | x angle hi limit | DOUBLE | Calculated from motor limits (maybe further constrained by user limits) | +| HLAY | R | y angle hi limit | DOUBLE | Calculated from motor limits (maybe further constrained by user limits) | +| HLAZ | R | z angle hi limit | DOUBLE | Calculated from motor limits (maybe further constrained by user limits) | +| HLX | R | x hi limit | DOUBLE | Calculated from motor limits (maybe further constrained by user limits) | +| HLY | R | y hi limit | DOUBLE | Calculated from motor limits (maybe further constrained by user limits) | +| HLZ | R | z hi limit | DOUBLE | Calculated from motor limits (maybe further constrained by user limits) | +| L0X | R | motor 0X lo limit | DOUBLE | | +| L0Y | R | motor 0Y lo limit | DOUBLE | | +| L1Y | R | motor 1Y lo limit | DOUBLE | | +| L2X | R | motor 2X lo limit | DOUBLE | | +| L2Y | R | motor 2Y lo limit | DOUBLE | | +| L2Z | R | motor 2Z lo limit | DOUBLE | | +| LLAX | R | x angle lo limit | DOUBLE | Calculated from motor limits (maybe further constrained by user limits) | +| LLAY | R | y angle lo limit | DOUBLE | Calculated from motor limits (maybe further constrained by user limits) | +| LLAZ | R | z angle lo limit | DOUBLE | Calculated from motor limits (maybe further constrained by user limits) | +| LLX | R | x lo limit | DOUBLE | Calculated from motor limits (maybe further constrained by user limits) | +| LLY | R | y lo limit | DOUBLE | Calculated from motor limits (maybe further constrained by user limits) | +| LLZ | R | z lo limit | DOUBLE | Calculated from motor limits (maybe further constrained by user limits) | +| LVIO | R | limit violation | SHORT | Requested motion would violate limits | +| UHAX | R/W\* | user's x angle hi limit | DOUBLE | Absolute user limit (independent of table calibration) | +| UHAY | R/W\* | user's y angle hi limit | DOUBLE | Absolute user limit (independent of table calibration) | +| UHAZ | R/W\* | user's z angle hi limit | DOUBLE | Absolute user limit (independent of table calibration) | +| UHX | R/W\* | user's x hi limit | DOUBLE | Absolute user limit (independent of table calibration) | +| UHY | R/W\* | user's y hi limit | DOUBLE | Absolute user limit (independent of table calibration) | +| UHZ | R/W\* | user's z hi limit | DOUBLE | Absolute user limit (independent of table calibration) | +| ULAX | R/W\* | user's x angle lo limit | DOUBLE | Absolute user limit (independent of table calibration) | +| ULAY | R/W\* | user's y angle lo limit | DOUBLE | Absolute user limit (independent of table calibration) | +| ULAZ | R/W\* | user's z angle lo limit | DOUBLE | Absolute user limit (independent of table calibration) | +| ULX | R/W\* | user's x lo limit | DOUBLE | Absolute user limit (independent of table calibration) | +| ULY | R/W\* | user's y lo limit | DOUBLE | Absolute user limit (independent of table calibration) | +| ULZ | R/W\* | user's z lo limit | DOUBLE | Absolute user limit (independent of table calibration) | +| UHAXR | R/W\* | user's x angle hi limit | DOUBLE | Relative user limit (varies with table calibration) | +| UHAYR | R/W\* | user's y angle hi limit | DOUBLE | Relative user limit (varies with table calibration) | +| UHAZR | R/W\* | user's z angle hi limit | DOUBLE | Relative user limit (varies with table calibration) | +| UHXR | R/W\* | user's x hi limit | DOUBLE | Relative user limit (varies with table calibration) | +| UHYR | R/W\* | user's y hi limit | DOUBLE | Relative user limit (varies with table calibration) | +| UHZR | R/W\* | user's z hi limit | DOUBLE | Relative user limit (varies with table calibration) | +| ULAXR | R/W\* | user's x angle lo limit | DOUBLE | Relative user limit (varies with table calibration) | +| ULAYR | R/W\* | user's y angle lo limit | DOUBLE | Relative user limit (varies with table calibration) | +| ULAZR | R/W\* | user's z angle lo limit | DOUBLE | Relative user limit (varies with table calibration) | +| ULXR | R/W\* | user's x lo limit | DOUBLE | Relative user limit (varies with table calibration) | +| ULYR | R/W\* | user's y lo limit | DOUBLE | Relative user limit (varies with table calibration) | +| ULZR | R/W\* | user's z lo limit | DOUBLE | Relative user limit (varies with table calibration) | + +- - - - - - + +Speed-related fields +-------------------- + +The table record sets motor speeds immediately before commanding motors to move, so that all involved motors will start and stop at the same time. (Immediately after move commands are issued--while motors are still moving--the motor speeds are returned to their original values. The table record assumes that motors do not honor speed changes made while motors are moving.) For small moves, this speed setting has the effect of keeping the "fixed" point fixed *during* rotations, but for longer moves, motor speeds would have to be varied on the fly to really keep the "fixed point" fixed, and the motor record does not attempt to do this. In addition, motor gearing, and the limited speed range over which most motors operate reliably, can prevent those motors from moving at speeds that would keep the "fixed" point fixed even during small rotations. You should ensure that any motor controlled by the table record really does move reliably at any speed between its base speed and nominal (top) speed. + +| Name | Access | Prompt | Data type | Comments | +|---|---|---|---|---| +| V0X | R | speed 0X val | DOUBLE | Speed to be written to motor (for duration of commanded move) | +| V0Y | R | speed 0Y val | DOUBLE | Speed to be written to motor (for duration of commanded move) | +| V1Y | R | speed 1Y val | DOUBLE | Speed to be written to motor (for duration of commanded move) | +| V2X | R | speed 2X val | DOUBLE | Speed to be written to motor (for duration of commanded move) | +| V2Y | R | speed 2Y val | DOUBLE | Speed to be written to motor (for duration of commanded move) | +| V2Z | R | speed 2Z val | DOUBLE | Speed to be written to motor (for duration of commanded move) | + +- - - - - - + +Table drive fields +------------------ + +These are the fields by which you drive the table. + +| Name | Access | Prompt | Data type | Comments | +|---|---|---|---|---| +| AX | R/W\* | x angle | DOUBLE | x-angle drive field | +| AY | R/W\* | y angle | DOUBLE | y-angle drive field | +| AZ | R/W\* | z angle | DOUBLE | z-angle drive field | +| X | R/W\* | x translation | DOUBLE | x translation drive field | +| Y | R/W\* | y translation | DOUBLE | y translation drive field | +| Z | R/W\* | z translation | DOUBLE | z translation drive field | + +- - - - - - + +Motor drive fields +------------------ + +These are the fields by which the table record drives the motors. + +| Name | Access | Prompt | Data type | Comments | +|---|---|---|---|---| +| M0X | R | motor 0X val | DOUBLE | Desired motor position | +| M0Y | R | motor 0Y val | DOUBLE | Desired motor position | +| M1Y | R | motor 1Y val | DOUBLE | Desired motor position | +| M2X | R | motor 2X val | DOUBLE | Desired motor position | +| M2Y | R | motor 2Y val | DOUBLE | Desired motor position | +| M2Z | R | motor 2Z val | DOUBLE | Desired motor position | + +- - - - - - + +Readback fields +--------------- + +There are four varieties of readback fields. +1. Readbacks from the motor-drive fields (e.g., R0X). These are used only to determine how fast motors must move to keep the "fixed" point fixed during moves. +2. Readbacks from motor-readback fields (e.g., E0X). These are shoved through a 6x6 matrix to get raw virtual-motor readbacks +3. Raw virtual-motor readbacks (e.g., XRB) tell you where the table really is. +4. Adjusted virtual-motor readbacks (e.g., EX) tell you where the table is, keeping in mind any recalibration you may have done. + +| Name | Access | Prompt | Data type | Comments | +|---|---|---|---|---| +| AXRB | R | x angle readback | DOUBLE | x angle calc'd from motor drive values | +| AYRB | R | y angle readback | DOUBLE | y angle calc'd from motor drive values | +| AZRB | R | z angle readback | DOUBLE | z angle calc'd from motor drive values | +| E0X | R | encoder 0X val | DOUBLE | Current position of M0X motor | +| E0Y | R | encoder 0Y val | DOUBLE | Current position of M0Y motor | +| E1Y | R | encoder 1Y val | DOUBLE | Current position of M1Y motor | +| E2X | R | encoder 2X val | DOUBLE | Current position of M2X motor | +| E2Y | R | encoder 2Y val | DOUBLE | Current position of M2Y motor | +| E2Z | R | encoder 2Z val | DOUBLE | Current position of M2Z motor | +| EAX | R | encoder x angle | DOUBLE | Current table position (x angle) | +| EAY | R | encoder y angle | DOUBLE | Current table position (y angle) | +| EAZ | R | encoder z angle | DOUBLE | Current table position (z angle) | +| EX | R | encoder x | DOUBLE | Current table position (x translation) | +| EY | R | encoder y | DOUBLE | Current table position (y translation) | +| EZ | R | encoder z | DOUBLE | Current table position (z translation) | +| R0X | R | motor 0X readback | DOUBLE | Motor's desired value | +| R0Y | R | motor 0Y readback | DOUBLE | Motor's desired value | +| R1Y | R | motor 1Y readback | DOUBLE | Motor's desired value | +| R2X | R | motor 2X readback | DOUBLE | Motor's desired value | +| R2Y | R | motor 2Y readback | DOUBLE | Motor's desired value | +| R2Z | R | motor 2Z readback | DOUBLE | Motor's desired value | +| XRB | R | x readback value | DOUBLE | x translation calc'd from motor drive values | +| YRB | R | y readback value | DOUBLE | y translation calc'd from motor drive values | +| ZRB | R | z readback value | DOUBLE | z translation calc'd from motor drive values | + +- - - - - - + +Miscellaneous fields +-------------------- + +| Name | Access | Prompt | Data type | Comments | +|---|---|---|---|---| +| AEGU | R/W | Angular Units Name | STRING | Engineering units for angles (16-chars). This field will be filled in by the record according to AUNIT | +| AUNIT | R/W | Angular Units Menu | MENU | Engineering units for angles: "degrees" or microradians ("ur") | +| INIT | R/W\* | init table | SHORT | Command: Abandon calibration and sync drive fields to motor positions | +| LEGU | R/W | Linear Units Name | STRING | Engineering units for translations (16-chars) | +| PREC | R/W | Display Precision | SHORT | Number of digits to right of decimal point | +| READ | R/W\* | readback motors | SHORT | Command: Read current motor positions, translate to table positions | +| SYNC | R/W\* | sync with motors | SHORT | Command: Read motor positions, reconcile table positions to them | +| VAL | R/W | Result | DOUBLE | Not used | +| VERS | R | Code Version | FLOAT | e.g., 5.0 | + +- - - - - - + +Private fields +-------------- + +| Name | Access | Prompt | Data type | Comments | +|---|---|---|---|---| +| A | R | x to m matrix | DOUBLE\* | 3x3 rotation matrix | +| B | R | m to x matrix | DOUBLE\* | 3x3 utility matrix | +| MMAP | R | Monitor Mask | ULONG | | +| PP0 | R | pivot pt 0 | DOUBLE | Desired loc of pivot point 0 (3 vector) | +| PP1 | R | pivot pt 1 | DOUBLE | Desired loc of pivot point 1 (3 vector) | +| PP2 | R | pivot pt 2 | DOUBLE | Desired loc of pivot point 2 (3 vector) | +| PPO0 | R | pivot pt 0 orig | DOUBLE | Loc of pivot point 0 when all user coordinates are zero (3 vector) | +| PPO1 | R | pivot pt 1 orig | DOUBLE | Loc of pivot point 1 when all user coordinates are zero (3 vector) | +| PPO2 | R | pivot pt 2 orig | DOUBLE | Loc of pivot point 2 when all user coordinates are zero (3 vector) | + +- - - - - - + + + +Files +----- + +The following table briefly describes the files required to implement and use the table record. + +### SOURCE CODE files in /opticsApp/src/ + +* tableRecord.c - Record support code +* tableRecord.dbd - Database definition file +* Makefile - Make sure the following lines occur in the file: + ``` + DBDINC += tableRecord + SRCS += tableRecord.c + ``` +* \Include.dbd - Make sure the following line occurs in the file: + ``` + include "tableRecord.dbd" + ``` + +### DATABASE files in \/opticsApp/Db/ + +* table.db - Table database + * The database file contains one table record linked with up to six motor records defined in some other database. The motor records are referred to as $(P)$(M0X), $(P)$(M0Y), $(P)$(M1Y), $(P)$(M2X), $(P)$(M2Y), and $(P)$(M2Z). This database allows you to give names of motors that don't actually exist, to support tables that have fewer than six motors. This database works with fewer than six motors only if you have version 3.6 or later of the transform record. Earlier versions of the transform record refuse to operate unless all of their non-blank link fields contain valid links. +* table\_settings.req - Autosave request file, which names the PV's in table.db that should be preserved across a reboot of the computer on which this software runs. + +### MEDM DISPLAY FILES in \/opticsApp/op/adl/ + +* table.adl - Small control display +* table\_setup\_SRI.adl - Setup display for SRI geometry +* table\_setup\_GEOCARS.adl - Setup display for GEOCARS geometry +* table\_setup\_NEWPORT.adl - Setup display for NEWPORT geometry +* table\_setup\_PNC.adl - Setup display for PNC geometry +* table\_full.adl - Full control display + +These files build medm screens to access the table record. To use one of them from the command line, type, for example +``` +medm -x -macro "P=xxx:,Q=Table1,T=table1,M0X=m1,M0Y=m2,M1Y=m3,M2X=m4,M2Y=m5,M2Z=m6" table.adl +``` +where xxx:table1 is the name of the table record, and xxx:Table1:is the prefix attached to all other records in the table database. + +### EPICS STARTUP FILES in \/iocBoot/ioc\/ +* st.cmd - Startup script + * This file is not included in the distribution. The following line added to st.cmd loads a single table. Note that the NEWPORT geometry normally does not have a motor associated with M2Z. Indicate this by setting M2Z to some string (e.g., "junk") that will not resolve to the name of an existing record. + ``` + dbLoadRecords("xxxApp/Db/table.db","P=xxx:,Q=Table1,T=table1,M0X=m1,M0Y=m2,M1Y=m3,M2X=m4,M2Y=m5,M2Z=m6,GEOM=SRI") + ``` + +### BACKUP/RESTORE (BURT) REQUEST FILES in \/opticsApp/op/burt/ + +* yyTableSettings.req - save settings of a specified table. This file is normally \#include'd (once for each table) by other request files. + +- - - - - - + +Restrictions +------------ + +- - - - - - + +Suggestions and comments to: +[Keenan Lang](mailto:klang@anl.gov) : (klang@anl.gov) diff --git a/docs/table_setup_GEOCARS.adl.gif b/docs/table_setup_GEOCARS.adl.gif new file mode 100644 index 0000000..2d79d6c Binary files /dev/null and b/docs/table_setup_GEOCARS.adl.gif differ diff --git a/docs/table_setup_NEWPORT.adl.gif b/docs/table_setup_NEWPORT.adl.gif new file mode 100644 index 0000000..8d74413 Binary files /dev/null and b/docs/table_setup_NEWPORT.adl.gif differ diff --git a/docs/table_setup_PNC.adl.gif b/docs/table_setup_PNC.adl.gif new file mode 100644 index 0000000..32d2dd1 Binary files /dev/null and b/docs/table_setup_PNC.adl.gif differ diff --git a/docs/table_setup_SRI.adl.gif b/docs/table_setup_SRI.adl.gif new file mode 100644 index 0000000..b6d9935 Binary files /dev/null and b/docs/table_setup_SRI.adl.gif differ diff --git a/documentation/xia_slit_full.adl.jpg b/docs/xia_slit_full.adl.jpg similarity index 100% rename from documentation/xia_slit_full.adl.jpg rename to docs/xia_slit_full.adl.jpg diff --git a/documentation/fb_epid/docv1.html b/documentation/fb_epid/docv1.html deleted file mode 100644 index 0df849e..0000000 --- a/documentation/fb_epid/docv1.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - -
UNICAT logoXOR-UNI
- - A University - - National laboratory - - Industry - Collaborative Access Team - at the Advanced Photon Source now operated by APS X-Ray Operations & Research (XOR)
- - Advanced Photon Source at Argonne National Laboratory
-
- - - - - - - - - - - - - - -
Scientific Programs    Instruments   Forms & Schedules  Photos   Controls 
-
-Argonne Home > - - - - -Advanced Photon Source > -UNICAT > - - - -
- - - - - -
-

 

-
- -
-

Use of the EPID record for feedback at UNICAT

-

Pete R. Jemian

-

Wednesday, June 23, 2004 , 3:41:40 PM

-

 

-

A swait (calculation) record was used to simulate a crystal reflection (Lorentzian peak shape) and to calculate the response of the crystal to different parameters using EPICS records. The various analog output ( ao ) records are used (by name) as inputs to the swait record. A state notation (SNL) program was written to generate Gaussian-probability (zero mean, unit standard deviation) random numbers to simulate experimental noise. The ideal position of the reflection is also adjusted by the SNL program to simulate drift in the ideal tuning position for the crystal element. An additional Gaussian random number was used to provide a small amplitude of jitter to the ideal position.

-

 

-

EPID response calculations

-

 

-

An epid record provides the means to drive the pseudo-positioner in a closed feedback loop. The epid record can be operated in either a hold constant (PID control) mode or a maximize (minimize) mode. In the latter mode, negative input signals will be minimized while positive signals will be maximized. Consider that the software will only maximize the absolute value of the input signal. The next screen shows a working configuration for maximizing the signal generated by the previously-shown calculation.

-

EPID test panel

-

 

-

One limitation of the epid record is that the output link must be a database link. Therefore, it must be defined in the database at boot time, although the string is changeable at run time. (Why is this?) Circumventing this presumed limitation, a swait record (next picture) has been programmed to pick up the calculation value from the epid record and pass it to the chosen positioner, provided that the epid record feedback mode has been turned on.

-

 

-

EPID position calculation

-

 

-

 

-

Comments

-

Some packaging remains to be completed in order to use the epid record for routine software feedback and replace the existing software feedback. Features of that packaging might include:

-
    -
  • Automatic on/off mode when input signal is out of range
  • -
  • User selection of input signal(s)
  • -
  • User selection of positioner
  • -
  • Preservation of separate tuning parameters for FMOD=PID and FMOD=Max/Min
  • -
  • When in Max/Min mode, automatic update of set point to maximum (minimum)
  • -
  • Scan of positioner through user-specified range to locate peak ( scan record?)
  • -
  • EGU, PREC, DRVH, DRVL fields come from positioner
  • -
  • Support HOPR and LOPR on the GUI screen
  • -
-

 

-
-
-
- - University of Illinois at Urbana-Champaign -  -   - - Oak Ridge National Laboratory -  -   - - UOP, LLC -  -   - - National Institute of Standards and Technology -
- Privacy & Security Notice -  |   - Contact Us | - Phonebook -     - -
- This page last modified: - 2005-05-18 3:14 PM -
-
- - diff --git a/documentation/fb_epid/index.html b/documentation/fb_epid/index.html deleted file mode 100644 index e03e781..0000000 --- a/documentation/fb_epid/index.html +++ /dev/null @@ -1,1383 +0,0 @@ - - - - - - -EPICS fb_epid feedback controls - - - -
-

EPICS fb_epid feedback controls

- - - ---- - - - - - - - - - - - -
Purposeuse the EPICS epid [2] record for generic software feedback
AuthorPete R. Jemian
SVN$Id: index.html 14556 2012-03-02 20:22:22Z jemian $
- - -
-

1   Overview

-

The fb_epid support provides a database centered around the EPICS -epid [2] record. -The versatility of the fb_epid support lies in the -various calculations that can be reconfigured by the user -while the IOC is operating. -These calculations allow the user to configure the input and output -of the PID loop, as well as to apply complex conditions on when the -PID loop should be allowed to drive the output or be switched off.

-

The fb_epid support is part of the synApps [6] -optics [4] module.

-
-

1.1   Theory of operation

-
    -
  1. A signal is provided as an EPICS process variable (macro parameter IN). -The signal source can be in the same IOC with the feedback -software or in another EPICS IOC available on the network. -The variable should be a floating point. (In principle, it -could be an integer but the feedback may not be so smooth.)
  2. -
  3. The input calculation (swait record) provides some -flexibility for conditioning the input signal to the feedback.
  4. -
  5. An epid record provides real-time feedback and -recalculate the output variable.
  6. -
  7. The output from the epid record is buffered by the obuf -calculation which watches the Feedback ON (FBON) switch -and retains the previous output value if the feedback -software is switched off.
  8. -
  9. The output calculation allows some flexibility -for conditioning the output signal to the positioner (OUT). -The conditioned epid result is pushed to the positioner.
  10. -
  11. A positioner responds to the result from the epid record -and thus further modifies the input signal.
  12. -
  13. The feedback can be switched on manually or automatically, -subject to the logic of some other calculation (CALC). -For example, a shutter closed signal could suspend feedback. -In this case, the output is not driven.
  14. -
  15. When the feedback is switched on, the positioner should -not jerk to a different position. The feedback software -must be prepared to start moving the positioner from -its present location.
  16. -
-
-
-
-

2   Installation

-

Install one instance of this database for each feedback channel. -If two different methods for feedback are desired for a given axis, -create two instances of this database. -See below for details of these configurations.

-
-Clever adjustments to the enable calculations can allow -for automated switching, if that is desired. -For example, at APS beam line 33ID for feedback of the DCM crystal 2 PZT, -one instance would use the XBPM y position signal -while another instance would use the D3 graphite foil intensity -as input signals. Both would be configured to drive the DCM -second crystal PZT. Choice of the active fb_epid instance -was obtained by adding values to the enable calculation, -watching the FBON field of the other feedback.
-

Follow these steps to install the fb_epid support:

-
    -
  1. modify the st.cmd file
  2. -
  3. add fb_epid.substitutions file
  4. -
  5. modify auto_settings.req file
  6. -
  7. add configuration to GUI to access the new support
  8. -
-
-

2.1   modify the IOC's st.cmd file

-

To install this software, make changes in the IOC's st.cmd file, -adding this line anywhere between the calls to -dbLoadDatabase and iocInit:

-
-### PID_based feedback
-dbLoadTemplate("fb_epid.substitutions")
-
-
-
-

2.2   add fb_epid.substitutions file

-

Create the fb_epid.substitutions file in the same -directory as st.cmd with content such as:

-
-# $Id: index.html 14556 2012-03-02 20:22:22Z jemian $
-
-file "$(OPTICS)/opticsApp/Db/fb_epid.db"
-  {
-    {
-        P=xxx:epid1,  
-        IN=xxx:epid1:sim.VAL, 
-        OUT=xxx:epid1:sim.D, 
-        MODE=PID,   
-        CALC=A,    
-        PERMIT1="xxx:epid1:on.VAL",      
-        PERMIT2="",      
-        PERMIT3="",      
-        PERMIT4=""
-    }
-  }
-
-
-
-

2.2.1   Macro substitutions in the fb_epid.db file

-

There are several macro substitutions in the -fb_epid support database (fb_epid.db) to simplify its installation .

- ---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
macrodescription
$(P)Prefix for this instance of this database. -Note that $(P):in.INAN holds PV name of -input PV (by default)
$(IN)PV name: input signal
$(OUT)PV name: output positioner
$(MODE)either PID or Max/Min
$(CALC)

string: actual calculation to go in -$(P):enable.CALC,

-
    -
  • 1=feedback on
  • -
  • 0=feedback off
  • -
-

A trivial value might be "A" which only -watches the value of $(P):on.

-
$(PERMIT1)PV name: boolean value to permit operations; -value becomes $(P):enable.B
$(PERMIT2)PV name: boolean value to permit operations; -value becomes $(P):enable.C
$(PERMIT3)PV name: boolean value to permit operations; -value becomes $(P):enable.D
$(PERMIT4)PV name: boolean value to permit operations; -value becomes $(P):enable.E
-
-
-
-

2.3   modify auto_settings.req file

-

To ensure that changed values will be restored after reboot, -add lines such as this to the auto_settings.req file -(usually found in the same directory with the st.cmd file).

-
-### PID_based feedback
-file fb_epid.req P=$(P)epid1
-
-
-
-

2.4   add configuration to GUI to access the new support

-

Add commands to the GUI displays to call each configured -instance of the fb_epid support. Such as this related display -widget in MEDM:

-
-"related display" {
-        object {
-                x=10
-                y=10
-                width=70
-                height=20
-        }
-        display[0] {
-                label="fb_epid"
-                name="fb_epid.adl"
-                args="P=prj:epid1"
-        }
-        display[1] {
-                label="simulator"
-                name="fb_epid_sim.adl"
-                args="P=prj:epid1,C=sim"
-        }
-        clr=0
-        bclr=17
-        label="-prj:epid1"
-}
-
-

Or start MEDM using a command line such as:

-
-medm -x -macro "P=prj:epid1" fb_epid.adl &
-
-
-

2.4.1   Macro substitutions in the fb_epid.adl file

-

For the MEDM provided, the macro substitutions are:

- ---- - - - - - - - - - - -
macrodescription
$(P)Prefix for this instance of support.
-
-
-
-
-

3   Use

-

Once the software has been installed (IOC configured with -database and autosave/restore configured to retain settings -across restarts of the IOC), some careful setup needs to happen -before the software is ready to be used.

-

First, it is necessary to identify the EPICS PVs for the -control variable (such as a positioner or the power to a -heating element) and the signal variable (the PV that is -sampled for the PID loop). These may have been configured -in the IOC but it is possible to change them while the -IOC is running. They can be changed without need to recompile -or restart the EPICS IOC.

-

To avoid any unexpected consequences, be sure the fb_epid -software is switched off before changing any PVs or changing -between modes of operation. In the MEDM screen, in the EPID -output section, press the button marked off.

-

It is most important to make sure that the input signal is -updated faster than the recalculation interval for the fb_epid -software or instability will occur. A factor of 3 to 10 input -updates per output update is reasonable. The output will be -updated each time the epid is processed.

-
-

3.1   MEDM screens

-

The features of the fb_epid software are accessed -from the main control screen in MEDM: fb_epid.adl. -Controls for the Simulator are provided from a -fb_epid_sim.adl screen.

-
-

3.1.1   fb_epid main control screen

-

The MEDM screen provides access to all the controls of the -epid [2] record. To add some flexibility for configuration -at run time by beam line users, an EPICS interface database -has been created. The user can change the input variable(s) -through a calculation (swait [5] record).

-
-main MEDM control screen -

Figure: Main fb_epid control screen

-
-

Control of the output variable will be permitted between -the software limits shown at the bottom of the control screen. -From the output calc, it is possible to change the PV which -will be directed by this database.

-

The enable calculation can be used to provide automated on/off -features with details specific to the particular installation.

-
-
-

3.1.2   fb_epid basic control screen

-

There are many controls on the main screen. For routine -operations, it may be more desirable to display just -the basic controls (and less of -the tuning infrastructure).

-
-basic MEDM control screen -

Figure: Basic fb_epid control screen

-
-
-
-

3.1.3   fb_epid configuration screen

-

The configuration screen provides top-level -access to the main components that must be addressed -for basic configuration. -Note that advanced situations must use the calculation screens -to access the complete interfaces of the swait records.

-
-``fb_epid`` configuration screen -

Figure: fb_epid configuration screen

-
-
-

Caution!

-

The buttons marked output buffer calc and -resume calc in the lower right corner are for -internal use only. -Do not change anything on these screens.

-
-
-
-

3.1.4   fb_epid chart screen

-

The chart screen provides a view to the recent progress. -There are two strip charts (value v. time). -The upper chart shows the set point (.VAL) -and current value (.CVAL). -The lower chart shows the following error (.ERR).

-
-

Note

-

The limits on the two charts need to be set -before this screen is of any real use. -Right-click and select "PV limits" from the pop-up menu. -Don't forget to apply any changes.

-
-
-``fb_epid`` chart screen -

Figure: fb_epid configuration screen

-
-
-
-

3.1.5   fb_epid simulator control screen

-

The main control screen for the Simulator is shown:

-
-main MEDM control screen for simulator -

Figure: fb_epid temperature simulator controls

-
-
-
-
-

3.2   Setup of the calculations

-

As stated above, -the versatility of the fb_epid support lies in the -various calculations that can be reconfigured by the user -while the IOC is operating.

-
-

3.2.1   Setting the enable calculation

-

The operation of fb_epid is permitted when the -result of the enable calculation is 1.0. The first, -obvious, choice is that bo record is provided to the -user to switch the fb_epid software on and off. -But the software should also disable itself when the -input signal goes out of range or also due to -some other operating parameters.

-
-Other factors can be built into the enable calculation. -For example, on undulator beam lines, it is not useful -to run the feedback if the undulator is not operating -(gap is closed or magnets are energized). In such a case, -monitor the PV for the undulator gap (APS undulator A) -and enable only if the gap is below some reasonable -number such as 50 mm.
-

One should also factor the fb_epid input signal into -the enable calculation by checking that is within a valid -operating range.

-
-
-

3.2.2   Setting the input calculation

-

It is possible to perform limited math on the input signal -to be used. For example, when the goal is to maximize the -conductance through a crystal pair, such as a monochromator, -the best signal would be a ratio between detector immediately -before and after the pair of crystals. The control variable -would be the rotation angle of either of the two crystals -(usually a fine rotation of the second crystal). The input -calculation would then monitor the PVs for both detectors -and calculate the ratio of the two: A/B. In this example, -it would also be useful to include the PV of this calculation -in the enable calculation and ensure that the ratio is acceptable.

-
-
-

3.2.3   Setting the limits on the output

-

To prevent the epid record from driving the control variable -out of bounds, there are limits for low and high (using the -epid record's .DRVL and .DRVH field). The epid record software -will not allow the positioner to drive outside of these limits.

-
-
-
-

3.3   Tuning of the epid record

-

In the epid record documentation [2], -there is a special discussion on feedback tuning in PID mode. -Refer to the documentation for more information on the -EPICS epid record.

-

The epid record can run in either Max/Min or PID mode. -Max/Min is used to maximize a positive input signal or -minimize a negative input signal such as from a beam -line detector. PID mode is used to keep the input signal -at constant value such as holding a sample's temperature constant.

-
-

3.3.1   Max/Min mode

-

Max/Min mode is useful for monochromator feedback or -other situations where a positive signal is to be maximized -(or a negative signal is to be minimized). The online epid -record documentation is lacking details about this mode -so one is referred to inspecting the source code [3].

-
-

Note

-

In Max/Min mode, the Set Point is ignored.

-
-
-
-

3.3.2   PID mode

-

PID mode is useful for holding the input signal to the -Set Point by adjusting the control variable. -The epid record documentation provides a good description -of how to set the PID constants.

-
-
-
-

3.4   Example using the simulator

-

An example demonstrating the simulator is provided in the -simulator documentation.

-
-
-

3.5   Example DCM feedback from X-ray Beam Position Monitor

-

Consider the case of an X-ray beam line with a double crystal -monochromator (DCM) and an X-ray Beam Position Monitor (XBPM) -after the DCM. The XBPM provides a signal that can be used -to maintain the throughput of the DCM if the DCM allows an adjustment -of either first or second crystal Bragg rotation independent of -the other crystal.

-

For synchrotron beam lines, the vertical position from the XBPM -provides the input signal to the epid loop. The DCM often has a -piezoelectric transducer (PZT) that is used to control the fine rotation -of the second crystal. The second crystal rotation is controlled -by a low voltage (such as -2 .. +9 VDC) sent to the PZT's amplifier. -(The purpose of this amplifier is to supply the operating voltage to the -PZT and optionally account for the hysteresis of the PZT as used -in positioner applications.)

-

This example shows the startup configuration used to maintain -the XBPM vertical beam position by controlling the DCM second -crystal PZT voltage.

- ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
macroconfigured valuemeaning
Piad:fbe:xbpm:yPV of this fb_epid instance
INiad:xbpm:pos:yY position from the XBPM
OUTiad:540:c0:out0control voltage of the PZT
MODEPIDhold position steady using PID
CALCA&&B&&Conly when EPID is ON and both permits
PERMIT1iad:beamAvailable.VALrequire X-ray beam to be ready
PERMIT2iad:xbpm:current:ok.VALrequire XBPM signal to be valid
PERMIT3 unused
PERMIT4 unused
-
-
-

3.6   Example Monochromator feedback from beam intensity monitor

-

Consider another beam line with a DCM and then a monitor of the beam -intensity (reported as a floating-point or large integer number). -A list of suitable such monitors might include ionization chambers -graphite foils, or fluorescent materials with photodiodes.

- ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
macroconfigured valuemeaning
Piad:fbe:D3:yPV of this fb_epid instance
INiad:540:c0:in10signal from the beam intensity monitor
OUTiad:540:c0:out0control voltage of the PZT
MODEMax/Minmaximize beam intensity
CALCA&&Bonly when EPID is ON and one permit
PERMIT1iad:beamAvailable.VALrequire X-ray beam to be ready
PERMIT2 unused
PERMIT3 unused
PERMIT4 unused
-
-
-

3.7   Previous observations During Initial Development

-

Notes from the early stages of development show motivations for -the construction of this database support.

-
    -
  1. Notes from initial epid record testing in 2004-06
  2. -
  3. Early notes on the fb_epid support from 2004-06
  4. -
-
-
-
-

4   Infrastructure

-

The fb_epid support consists of several components:

- ---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
filedescription
opticsApp/Db/fb_epid.dbEPICS database
opticsApp/Db/fb_epid.reqrequest file for autosave/restore
opticsApp/Db/epid.reqrequest file for autosave/restore
iocBoot/iocAny/fb_epid.substitutionscreates specific instances
opticsApp/op/adl/fb_epid.adlmain MEDM screen
opticsApp/op/adl/fb_epid_basic.adlbasic MEDM screen
opticsApp/op/adl/fb_epid_chart.adlcharts VAL and CVAL, also ERR
opticsApp/op/adl/fb_epid_config.adlsimplified configuration screen
opticsApp/op/adl/fb_epid_sim.adlsimulator controls
documentation/fb_epid/index.htmldocumentation
-
-

4.1   Structure of the EPICS Database

-

The EPICS database was constructed in 2004. -The records of the database are defined in this table:

- ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
record typenamedescription
epid$(P)Epid record instance
swait$(P):inInput signal collector
swait$(P):obufEnforces $(P).FBON to disconnect epid -record from output so $(OUT) is not changed
swait$(P):outOutput signal collector
sseq$(P):outpvPart of bumpless start feature
swait$(P):resumePart of bumpless start feature
bo$(P):onUser switch to turn epid ON or OFF
swait$(P):enableAutomatic ON/OFF feature
swait$(P):simSimulated temperature reading and heater
-

A figure was produced to show how these records are connected. -Note that the simulator record ($(P):sim)is not shown in this figure.

-
-structure of fb_epid database -

Figure: Structure of the fb_epid database

-
-

The database file has many comments. The text of the file is included here:

-
-########### SVN repository information ###################
-# $Date: 2012-03-02 14:22:22 -0600 (Fri, 02 Mar 2012) $
-# $Author: jemian $
-# $Revision: 14556 $
-# $URL: https://subversion.xray.aps.anl.gov/synApps/optics/tags/R2-9-1/documentation/fb_epid/index.html $
-# $Id: index.html 14556 2012-03-02 20:22:22Z jemian $
-########### SVN repository information ###################
-#
-# file:     fb_epid.db
-# purpose:  use the epid record for software feedback
-
-#------------------------------------------
-#  P    prefix for this instance of this database
-#------------------------------------------
-#  $(P):in.INAN        holds PV name of input PV (by default)
-#  $(IN)               PV name: input signal
-#  $(OUT)              PV name: output positioner
-#  $(MODE)             choice:  PID or Max/Min
-#  $(CALC)             string:  calculation, 1=feedback on, 0=feedback off
-#  $(PERMIT1)          PV name: boolean value to permit operations
-#  $(PERMIT2)          PV name: boolean value to permit operations
-#  $(PERMIT3)          PV name: boolean value to permit operations
-#  $(PERMIT4)          PV name: boolean value to permit operations
-
-# Use on instance of this database for each feedback channel.
-# If two different methods for feedback are desired
-# for a given axis, call two instances of this database.
-# For example, on 33ID for feedback of the DCM crystal 2 PZT,
-#  one might choose either the XBPM position signal or the 
-#  D3 graphite foil intensity to drive the PZT position.
-#
-#  These might be the XBPM position feedback terms:
-#    P       = iad:fbe:xbpm:y
-#    IN      = iad:xbpm:pos:y
-#    OUT     = iad:540:c0:out0
-#    MODE    = PID
-#    CALC    = A&&B&&C
-#    PERMIT1 = iad:beamAvailable.VAL
-#    PERMIT2 = iad:xbpm:current:ok.VAL
-#    PERMIT3 = 
-#    PERMIT4 = 
-#
-#  These might be the D3 foil feedback terms:
-#    P       = iad:fbe:D3:y
-#    IN      = iad:540:c0:in10
-#    OUT     = iad:540:c0:out0
-#    MODE    = Max/Min
-#    CALC    = A&&B
-#    PERMIT1 = iad:beamAvailable.VAL
-#    PERMIT2 = 
-#    PERMIT3 = 
-#    PERMIT4 = 
-
-# For each channel:
-#  signal(ao or other)
-#    -> in(swait)
-#    --> epid
-#    ---> obuf(swait) 
-#    ----> out(swait)
-#    -----> positioner(motor or ao)
-
-# Theory of operation:
-# 1. A signal is available as an EPICS process variable.
-#    The signal source can be in the VME with the feedback software
-#    or in another VME available on the local network.
-# 2. An input calculation (swait record) is used to allow some
-#    flexibility for conditioning the input signal to the feedback.
-# 3. An epid record is used to provide real-time feedback
-#    and recalculate the output variable.
-# 4. The output from the epid record is buffered by
-#    the outbuf calculation which watches the Feedback ON (FBON)
-#    switch and retains the previous output value if the feedback
-#    software is switched off.
-# 5. An output calculation is used to allow some flexibility
-#    for conditioning the output signal to the positioner.
-#    The conditioned epid result is pushed to the positioner.
-# 6. A positioner responds to the result from the epid record
-#    and thus further modifies the input signal.
-# 7. The feedback can be switched on manually, subject to
-#    the logic of some other calculation.  For example,
-#    shutter closed could suspend feedback.  In this case,
-#    the output is not driven.
-# 8. When the feedback is switched on, the positioner should
-#    not jerk to a different position.  The feedback software
-#    must be prepared to start moving the positioner from its 
-#    present location.
-
-# References
-#  epid          http://cars9.uchicago.edu/software/epics/epidRecord.html
-#  swait         http://www.aps.anl.gov/bcda/synApps/calc/swaitRecord.html
-#  PID tuning    see the epid documentation (above)
-
-#------------------------------------------
-
-   #
-   # epid record to actually calculate the 
-   # feedback response to the input
-   #
-grecord(epid, "$(P)") {
-        field(DESC, "EPID feedback")
-        field(INP,  "$(P):in")
-        field(FMOD, "$(MODE)")
-        field(FBON, "Off")
-        field(SCAN, "Passive")
-        field(KP,   "0")
-        field(KI,   "0")
-        field(KD,   "0")
-        field(I,    "0")
-        field(DRVL, "0")
-        field(DRVH, "0")
-        field(EGU,  "feedback")
-        field(PREC, "4")
-}
-   #
-   # Input calculation to the epid record
-   # Users can adjust the input based on a simple calculation
-   # or a more complex database resulting in this simple calculation
-   # By default, $(P):in.INAN is the PV name of the input signal
-   #
-grecord(swait, "$(P):in") {
-        field(DESC, "EPID feedback input")
-        field(PREC, "5")
-        field(SCAN, "I/O Intr")
-        field(CALC, "A")
-        field(INAN, "$(IN)")
-        field(INAP, "1")
-}
-   #
-   # Output buffer from epid record
-   # This record overcomes a limitation observed in the 
-   # epid record when $(P).FBON=0 but $(P).OVAL is changed anyway.
-   # In this record, $(P):obuf.VAL will not change when $(P).FBON=0
-   #
-grecord(swait, "$(P):obuf") {
-        field(DESC, "EPID FBON output buffer")
-        field(PREC, "5")
-        field(SCAN, "I/O Intr")
-        field(CALC, "B?A:C")
-        field(INAN, "$(P).OVAL")
-        field(INAP, "1")
-        field(INBN, "$(P).FBON")
-        field(INBP, "1")
-        field(INCN, "$(P):obuf.VAL")
-        field(INCP, "1")
-}
-   #
-   # Provide the output from the epid record (through the output buffer)
-   # The intent here is to provide the user with a means
-   # of modifying the output signal from the epid record.
-   # Whether or not this is a good idea remains to be seen.
-   # This record pulls the value from $(P):obuf
-   # $(P):out.OUTN holds the PV name of the output positioner.
-   #
-   # Instead, could make this a seq record, eliminating the calculation.
-   #
-grecord(swait, "$(P):out") {
-        field(DESC, "EPID feedback output")
-        field(PREC, "5")
-        field(SCAN, "I/O Intr")
-        field(CALC, "A")
-        field(INAN, "$(P):obuf.VAL")
-        field(INAP, "1")
-        field(OUTN, "$(OUT)")
-}
-
-   #
-   # bumpless start feature
-   #
-   # When $(P).FBON transitions from 0 to 1 (as feedback starts up),
-   # it is necessary to grab the current value of the
-   # output positioner and push it into $(P).I
-   # However, since the user might change $(P):out.OUTN,
-   # $(P):outpv detects this change and rewrites $(P):resume.INBN.
-   # $(P):resume.INBN holds the PV name of the output positioner
-   #
-grecord(sseq, "$(P):outpv") {
-        field(DESC, "follow OUT PV name")
-        field(SCAN, "I/O Intr")
-        field(DOL1, "$(P):out.OUTN")
-        field(DLY1, "0")
-        field(LNK1, "$(P):resume.INBN")
-}
-grecord(swait, "$(P):resume") {
-        field(DESC, "EPID feedback input")
-        field(PREC, "5")
-        field(SCAN, "I/O Intr")
-        field(CALC, "!C&&D?B:A")
-        field(INAN, "$(P):resume.VAL")
-        field(INAP, "1")
-        field(INBN, "$(OUT)")
-        field(INBP, "1")
-        field(INCN, "$(P):resume.D")
-        field(INCP, "0")
-        field(INDN, "$(P).FBON")
-        field(INDP, "1")
-        field(OOPT, "On Change")
-        field(OUTN, "$(P).I")
-}
-
-   #
-   # permit
-   #
-   # Sometimes, the feedback software must be suspended.
-   # This must happen automatically, based on some 
-   # simple calculation or a more complex database 
-   # resulting in this simple calculation.
-   # $(P):enable drives the $(P).FBON field
-   #
-grecord(bo, "$(P):on")
-{
-        field(DESC, "off/on")
-        field(ZNAM, "off")
-        field(ONAM, "on")
-}
-grecord(swait, "$(P):enable") {
-        field(DESC, "EPID feedback permit")
-        field(PREC, "5")
-        field(SCAN, "I/O Intr")
-        field(CALC, "A&&B")
-        field(INAN, "$(P):on.VAL")
-        field(INAP, "1")
-        field(INBN, "$(PERMIT1)")
-        field(INBP, "1")
-        field(INCN, "$(PERMIT2)")
-        field(INCP, "1")
-        field(INDN, "$(PERMIT3)")
-        field(INDP, "1")
-        field(INEN, "$(PERMIT4)")
-        field(INEP, "1")
-        field(OOPT, "On Change")
-        # drive the epid FBON field
-        field(OUTN, "$(P).FBON")
-}
-
-
-#--------------------------------------------
-# simulate a temperature sensor and heater
-#----------------------
-# A : minimum "temperature" allowed
-# B : cooling rate parameter
-# C : heater power
-# D : output of PID loop
-# E : heater relay closes when D > E
-# F : current "temperature"
-#----------------------
-# PID loop terms:
-#   $(P):in.INAN = "$(P):sim"
-#   $(P):out.OUTN = "$(P):sim.D"
-#   $(P):enable.INAN = "$(P):on.VAL"
-#   $(P).KP = "0.01"
-#   $(P).KI = "0.1"
-#   $(P).I = "0.0"
-#   $(P).KD = "0.0"
-#   $(P).DRVL = "0.0"
-#   $(P).DRVH = "1.0"
-#   $(P).FMOD = "PID"
-#----------------------
-grecord(swait, "$(P):sim") {
-        field(DESC, "EPID Temperature Controller simulator")
-        field(PREC, "5")
-        field(SCAN, ".1 second")
-        field(CALC, "max(A,F*(1-B)+C*D*G)")
-        field(A,    "0.1")      # minimum "temperature"
-        field(B,    "0.05")     # cooling rate parameter
-        field(C,    "30")       # heater power
-        field(D,    "0")        # driven by epid loop
-        field(E,    "0.8")      # relay close threshold
-        field(INFN, "$(P):sim.VAL")
-        field(INGN, "$(P).FBON")# is feedback ON?
-}
-
-
-
-
-

4.2   Simulator

-

To help learn how to use the fb_epid support, an swait -record was added to simulate the temperature reading of an object -that is exposed to some cooling power. A heater with adjustable power -may applied, either as adjustable power or as a switched power.

-

Documentation of the simulator is provided on a related page.

-

Footnotes

- - - - - -
[1]EPICS calc Record: http://www.aps.anl.gov/bcda/synApps/calc/calcDocs.html
- - - - - -
[2](1, 2, 3, 4) EPICS epid Record: http://cars9.uchicago.edu/software/epics/epidRecord.html
- - - - - -
[3]epid source code: https://subversion.xor.aps.anl.gov/trac/synApps/browser/std/trunk/stdApp/src/devEpidSoft.c
- - - - - -
[4](1, 2) EPICS synApps optics module: http://www.aps.anl.gov/bcda/synApps/optics/opticsDocs.html
- - - - - -
[5]EPICS swait Record: http://www.aps.anl.gov/bcda/synApps/calc/swaitRecord.html
- - - - - -
[6]EPICS synApps: http://www.aps.anl.gov/bcda/synApps
-
-
-
- - - diff --git a/documentation/fb_epid/simulator.html b/documentation/fb_epid/simulator.html deleted file mode 100644 index bd38e03..0000000 --- a/documentation/fb_epid/simulator.html +++ /dev/null @@ -1,512 +0,0 @@ - - - - - - -fb_epid simulator - - - -
-

fb_epid simulator

- - - ---- - - - - - - - - - - - -
Purposedescribe the simulator in the fb_epid support
AuthorPete R. Jemian
SVN$Id: simulator.rst 14555 2012-03-02 20:21:10Z jemian $
- - -
-

1   Example use of the fb_epid simulator

-

The support database has a simulator to help learn how -to use the fb_epid support. The simulator models the -temperature of something which is subject to some cooling. -There is support for heating power to be applied, as -directed by the output of the epid record. The cooling -could be applied either by adjustment of a continuous -variable or by a (simulated) relay-switched application of -heating power. Smoother operation is obtained with the -continuous variable but not all temperature controllers -provide this.

-

The simulator is based on the swait record. [1] -The fields are assigned as follows:

- ---- - - - - - - - - - - - - - - - - - - - - - - - - - -
fielddescription
Aminimum "temperature" allowed
Bcooling rate parameter
Cheater power
Doutput of PID loop
Eheater relay closes when D > E
Fcurrent "temperature"
-

The fb_epid support should be configured like this:

- ---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
PVvalue
$(P):in.INAN$(P):sim
$(P):out.OUTN$(P):sim.D
$(P):enable.INAN$(P):on.VAL
$(P).KP0.01
$(P).KI0.1
$(P).I0.0
$(P).KD0.0
$(P).DRVL0.0
$(P).DRVH1.0
$(P).FMODPID
-

This configuration is defined in the -supplied fb_epid.substitutions file.

-
-# $Id: fb_epid.substitutions 14504 2012-02-29 21:11:18Z jemian $
-
-file "$(OPTICS)/opticsApp/Db/fb_epid.db"
-  {
-    {
-        P=xxx:epid1,  
-        IN=xxx:epid1:sim.VAL, 
-        OUT=xxx:epid1:sim.D, 
-        MODE=PID,   
-        CALC=A,    
-        PERMIT1="xxx:epid1:on.VAL",      
-        PERMIT2="",      
-        PERMIT3="",      
-        PERMIT4=""
-    }
-  }
-
-
-
-

1.1   Interface Screens

-

start a MEDM session with a command such as:

-
-medm -x -macro "P=prj:epid1,C=:sim" fb_epid_sim.adl &
-
-

This screen provides access to the simulator, -the swait calculation record, and -the fb_epid controls that support it.

-
-main MEDM control screen for simulator -

Figure: fb_epid temperature simulator controls

-
-

The calc button brings up this screen:

-
-simulator calculation -

Figure: temperature simulator calculation

-
-

The controls button brings up the standard fb_epid controls:

-
-simulator calculation -

Figure: fb_epid` main control screen

-
-
-
-

1.2   Operation

-

to be written

-

Footnotes

- - - - - - - -
[1]EPICS swait record: -http://www.aps.anl.gov/bcda/synApps/calc/swaitRecord.html
-
-
-
- - - diff --git a/documentation/fb_epid/tests/20040623/index.html b/documentation/fb_epid/tests/20040623/index.html deleted file mode 100644 index 7c7b1f4..0000000 --- a/documentation/fb_epid/tests/20040623/index.html +++ /dev/null @@ -1,263 +0,0 @@ - - - - - - -PID feedback notes 2004-06-23 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - -
UNICAT logoXOR-UNI
- - A University - - National laboratory - - Industry - Collaborative Access Team - at the Advanced Photon Source now operated by APS X-Ray Operations & Research (XOR)
- - Advanced Photon Source at Argonne National Laboratory
-
- - - - - - - - - - - - - - -
Scientific Programs    Instruments   Forms & Schedules  Photos   Controls 
-
-Argonne Home > - - - - -Advanced Photon Source > -UNICAT > - - - -
- - - - - -
- -
-

Use of the EPID record for feedback at UNICAT

-

An swait (calculation) record was used to simulate a crystal reflection (Lorentzian peak shape) and to calculate the response of the crystal to different parameters using EPICS records. The various ananlog output (ao) records are used (by name) as inputs to the swait record. A state notation (SNL) program was written to generate Gaussian-probability (zero mean, unit standard deviation) random numbers to simulate experimental noise. The ideal position of the reflection is also adjusted by the SNL program to simulate drift in the ideal tuning position for the crystal element. An additional Gaussian random number was used to provide a small amplitude of jitter to the ideal position.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- hnl:userCalc10 value for epid_test:response function -
Ahnl:epid:positioner.VAL
Bhnl:epid:resp:ideal
Chnl:epid:resp:sigma
Dhnl:epid:resp:scale
Ehnl:epid:resp:base
Fhnl:epid:resp:noise
G1.00002
CALCG*(D/(1+((A-B)/C)^2)^2+E)
-

An epid record provides the means to drive the pseudo-positioner in a closed feedback loop. The epid record can be operated in either a hold constant (PID control) mode or a maximize (or minimize) mode. In the latter mode, negative input signals will be minimized while positive signals are maximized. Consider that the software will only maximize the absolute value of the input signal. The next table shows a working configuration for maximizing the signal generated by the previously-shown calculation.

- - - - - - - - - - - - - - - - - - - - - - - - - - -
- epid_test: working configuration -
SCAN0.2 seconds
inputhnl:userCalc10.VAL NPP NMS
KP0.004
MODEMax/Min
low limit -2
high limit 9
-

One limitation of the epid record is that the output link must be a database link. Therefore, it must be defined in the database at boot time, although the string is changeable at run time. (Why is this?) Circumventing this presumed limitation, an swait record (next table) has been configured to picl up the calculation value from the epid record and pass it to the chosen positioner, provided that the epid record feedback mode has been turned on.

- - - - - - - - - - - - - - - - - - - - - - -
- hnl:userCalc9
- epid_test: position calculation -
SCANI/O Intr
Ahnl:epid:epid.OVAL
Bhnl:epid:epid.FBON
C

hnl:userCalc9.VAL

CALCB?A:C
-

Comments

-

Some packaging remains to be completed in order to use the epid record for routine software feedback and replace the existing software feedback. Features of that packaging might include :

-
    -
  • Automatic on/off mode when input signal is out of range
  • -
  • User selection of input signal(s)
  • -
  • User selection of positioner
  • -
  • Preservation of separate tuning parameters for PID and Max/Min modes
  • -
  • When in Max/Min mode, automatic update of set point to maximum (minimum)
  • -
  • Scan of positioner through user-specified range to locate peak (?using sscan record?)
  • -
  • EGU, PREC, DRVH, DRVL fields come from positioner
  • -
  • Support HOPR and LOPR on GUI screens
  • -
-  
-
-
- - University of Illinois at Urbana-Champaign -  -   - - Oak Ridge National Laboratory -  -   - - UOP, LLC -  -   - - National Institute of Standards and Technology -
- Privacy & Security Notice -  |   - Contact Us | - Phonebook -     - -
- This page last modified: - 2005-05-18 3:14 PM -
-
- - diff --git a/documentation/fb_epid/tests/20040727/index.html b/documentation/fb_epid/tests/20040727/index.html deleted file mode 100644 index dd81fa8..0000000 --- a/documentation/fb_epid/tests/20040727/index.html +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - -PID feedback tests 2004-07-27 - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - -
UNICAT logoXOR-UNI
- - A University - - National laboratory - - Industry - Collaborative Access Team - at the Advanced Photon Source now operated by APS X-Ray Operations & Research (XOR)
- - Advanced Photon Source at Argonne National Laboratory
-
- - - - - - - - - - - - - - -
Scientific Programs    Instruments   Forms & Schedules  Photos   Controls 
-
-Argonne Home > - - - - -Advanced Photon Source > -UNICAT > - - - -
- - - - - -
- -
-

2004 July 27

-

Observations while first using the EPID record as the internal component in a feedback loop on 33ID maintaining the Oxford X-ray beam position monitor by adjusting the DCM omega2 piezo control voltage.

-

old DCM-omega2 feedback controlsEPID DCM-omega2 feedback performance

- - - - - - - - - -

EPID DCM-omega2 feedback performance2

Feedback on the vertical position looks promising using the EPID record. Response is quite good, taking about 10 seconds to lock in to a new position 1 mm away from the current position. Position noise is observed when the PZT is moved, otherwise, operation is quieter than with the standard feedback.

EPID controls

The set point is the XBPM position to hold.

-

 

-

KP = -0.001 (Note that KP is negative.)

-

KI = 400

-

KD = 0

-

With a positive KP, then the feedback drives away from the set point.

-

No KD term is needed. KI term of 1000 produced ringing (which damped in about 10 cycles) when set point was changed.

-

KI=400 produces a mild overshoot.

-

 

-

Before FBON is set to ON, I term should be loaded with the current value of the positioner. Otherwise, the positioner will jump. Likewise, the limits DRVL and DRVH should be preloaded from the positioner.

-

 

-

 

-

EPID main

-

 

-

 

-

output calc

-
-
-
- - University of Illinois at Urbana-Champaign -  -   - - Oak Ridge National Laboratory -  -   - - UOP, LLC -  -   - - National Institute of Standards and Technology -
- Privacy & Security Notice -  |   - Contact Us | - Phonebook -     - -
- This page last modified: - 2005-05-18 3:14 PM -
-
- - diff --git a/documentation/fb_epid/tests/20041025/index.html b/documentation/fb_epid/tests/20041025/index.html deleted file mode 100644 index 731b602..0000000 --- a/documentation/fb_epid/tests/20041025/index.html +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - -PID feedback tests 2004-10-25 - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - -
UNICAT logoXOR-UNI
- - A University - - National laboratory - - Industry - Collaborative Access Team - at the Advanced Photon Source now operated by APS X-Ray Operations & Research (XOR)
- - Advanced Photon Source at Argonne National Laboratory
-
- - - - - - - - - - - - - - -
Scientific Programs    Instruments   Forms & Schedules  Photos   Controls 
-
-Argonne Home > - - - - -Advanced Photon Source > -UNICAT > - - - -
- - - - - -
- -
-

foil out

-

XBPM signal

-

XBPM controls

-

DCM-omega controls

-

 

-

 

-

 

-

with foil in the beam

-

XBPM signal during scan

-

XBPM controls during scan

-

DCM-omega controls during scan

-

XBPM main

-

EPICS scan configuration

-
-
-
- - University of Illinois at Urbana-Champaign -  -   - - Oak Ridge National Laboratory -  -   - - UOP, LLC -  -   - - National Institute of Standards and Technology -
- Privacy & Security Notice -  |   - Contact Us | - Phonebook -     - -
- This page last modified: - 2005-05-18 3:14 PM -
-
- - diff --git a/documentation/fb_epid/tests/index.html b/documentation/fb_epid/tests/index.html deleted file mode 100644 index 51a3ad6..0000000 --- a/documentation/fb_epid/tests/index.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - -PID feedback notes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - -
UNICAT logoXOR-UNI
- - A University - - National laboratory - - Industry - Collaborative Access Team - at the Advanced Photon Source now operated by APS X-Ray Operations & Research (XOR)
- - Advanced Photon Source at Argonne National Laboratory
-
- - - - - - - - - - - - - - -
Scientific Programs    Instruments   Forms & Schedules  Photos   Controls 
-
-Argonne Home > - - - - -Advanced Photon Source > -UNICAT > - - - -
- - - - - -
- -
-

Use of the EPID record for feedback at UNICAT

-

It became apparent from initial testing that the epid record provided by synApps would need to be wrapped with a database to provide some useful features for our users. A first cut at a database provided some very encouraging results.

-

After revision, a second round of testing was arranged with a database used to provide active feedback to keep the beam vertical position constant (on the Oxford Quadrant X-ray Beam Position Monitor in 33ID-D) using the monochromator omega2 piezo as a positioner (in 33ID-C). When the sscan record was used to step-scan the XBPM vertical position, the new database performed quite well.

- The database was then further revised to the present form.
-
-
- - University of Illinois at Urbana-Champaign -  -   - - Oak Ridge National Laboratory -  -   - - UOP, LLC -  -   - - National Institute of Standards and Technology -
- Privacy & Security Notice -  |   - Contact Us | - Phonebook -     - -
- This page last modified: - 2005-05-18 3:14 PM -
-
- - diff --git a/documentation/opticsDocs.html b/documentation/opticsDocs.html deleted file mode 100644 index d0237f1..0000000 --- a/documentation/opticsDocs.html +++ /dev/null @@ -1,747 +0,0 @@ - - - - - opticsDocs - - - - - - -

The synApps Optics module -

-

The optics module contains support for devices used to modify the -x-ray beam from a synchrotron source and apply it in experimentally -useful ways, including a variety of monochromators, slits, filters, -mirrors, diffractometers, and optical tables. -

-

Monochromators

-

synApps supports the following monochromator types/geometries: -

-
    -
  • non-dispersive double-crystal with - symmetric offset -- rotates about a point midway between the - entrance and exit beams. -

    -
  • non-dispersive double-crystal with - asymmetric offset -- rotates about a point on the first crystal's - surface. -

    -
  • dispersive double crystal -- - nested geometry -

    -
  • dispersive double crystal -- - symmetric geometry -

    -
  • spherical grating -

    -
  • multilayer -

    -
-

Kohzu/PSL geometry 1 (Theta, Y1, Z2)

-


kohzuGraphic.adl

-

This MEDM display is a picture of Kohzu/PSL geometry 1, with white -beam entering from the left, monochromatized radiation diffracting -upward from the first crystal and then forward from the second -crystal. The crystal stages are mounted on a plate which rotates -about a point midway, vertically, between the incident and exiting -beam. -

-

The difference in height between the incident beam and the point -about which the plate rotates is called the monochromator offset, and -the software allows this offset to be changed by a knowledgeable -developer, though not by the casual user. (Note that users sometimes -use 'offset' to mean the vertical distance between the incident and -exit beams, which is twice the offset as defined here.) The crystals -normally translate, as the plate rotates, to keep the first crystal -in the incident beam, and to maintain the exiting beam at constant -height. -

-

As the monochromator rotates from a Bragg angle (Theta) of -zero, the first crystal moves away from the rotation point along a -line normal to its diffracting planes, executing the equation -

-
    -
    Y = -offset/cos(Theta).
    -
-


Thus, Y(Theta=0) = -offset, and a positive- sense -motion would move the crystal toward the rotation point. -

-

At the same time, the second crystal moves toward the rotation -point along a line which is parallel to the crystal's diffracting -planes, and which intersects the rotation point, according to the -equation -

-
    -
    Z = offset/sin(Theta).
    -
-


Thus, a positive-sense motion of the second crystal moves it -in the direction of the exiting beam. -

-

Because the Y and Z motions are -nonlinear functions of Theta, their speeds ideally should vary as -they move. The software doesn't attempt this, but it does attempt to -set motor speeds to the closest linear approximation to ideal -behavior. This means that it attempts to set motor speeds so that -Theta, Y, and Z all move for the same length of time. The attempt may -not succeed, however, because the motors have high and low speed -limits, and will refuse commands to violate them. -

-
-

-
kohzuSeqCtl_All.adl

-

This MEDM display serves both geometries, and contains all of the -user-modifiable fields that control and set them up. Smaller, less -complicated displays are also provided. -

-

At top left, crystal parameters are selected from a list that -includes Silicon (at room temperature, and at 77K), Germanium, and -Diamond. Miller indices can also be specified. When fields in this -section are modified, the resulting reflection is checked, and the -software is put into Manual-Move mode (described below). -

-

The monochromator can be driven in energy, wavelength, or angle. -Undriven fields are kept consistent automatically with driven fields. -

-

The software can be in Manual-Move, or Auto_Move mode. In -Manual-Move mode, changes to energy, wavelength, or theta are not -sent to the motors until the user issues a "Move" command. -In Auto_Move mode, changes to energy, wavelength, or theta are sent -to the motors without further prompting from the user. -

-

The manner in which 'Y', and 'Z' motions of monochromator crystals -are calculated depends on the setting of a second mode switch, with -the following options: -

-
-
- - - - - - - - - - - - - - - - - - - - - -
-

Normal

-
-

-

-
-

Y,Z driven per equations described above. -

-
-

Channel Cut

-
-

-

-
-

Y,Z are left at their current positions -

-
-

Freeze Z

-
-

-

-
-

Z is left at its current position -

-
-

Freeze Y

-
-

-

-
-

Y is left at its current position -

-
-
-

-

-

Kohzu geometry 2 (Theta, Y2, Z2)

-

-
kohzu2Graphic.adl

-

This MEDM display is a picture of Kohzu/PSL geometry 2, with white -beam entering from the left, monochromatized radiation diffracting -upward from the first crystal and then forward from the second -crystal. The crystal stages are mounted on a plate which rotates -about a point on the surface on of the first crystal. -

-

The difference in height between the entrance and exit beams is -called the monochromator offset, and the software allows this offset -to be changed by the user. (Note this geometry's 'offset' is -different from that of the Kohzu 1 geometry.) The second crystal -normally translates, as the plate monochromator rotates, to maintain -the exiting beam at constant height. -

-

As the monochromator rotates from a Bragg angle (Theta) of -zero, the second crystal moves upward along a line normal to its -diffracting planes, executing the equation -

-
    -
    Y = -offset/(2*cos(Theta)).
    -
-

At the same time, the second crystal moves toward the rotation -point along a line which is parallel to the crystal's diffracting -planes, according to the equation -

-
    -
    Z = offset/(2*sin(Theta)).
    -
-


Thus, a positive-sense motion of the second crystal moves it -in the direction of the exiting beam. -

-

Because the Y and Z motions are nonlinear functions of Theta, -their speeds ideally should vary as they move. The software doesn't -attempt this, but it does attempt to set motor speeds to the closest -linear approximation to ideal behavior. This means that it attempts -to set motor speeds so that Theta, Y, and Z all move for the same -length of time. The attempt may not succeed, however, because the -motors have high and low speed limits, and will refuse commands to -violate them. -

-

-

-

High-resolution double-crystal (Theta1, Theta2)

-

synApps currently supports two geometries of a high -energy-resolution, dispersive double crystal monochromator. Both -geometries actually employ four crystals, but two of the crystals are -channel-cut partners of the other two, and therefore are not driven. -Crystal angles for these monochromators are described and controlled -with three sets of variables: -

-
-
- - - - - - - - - - - - - - - - -
-

Thetan

-
-

-

-
-

Bragg angle, the angle between beam incident on a crystal and - the crystal's diffracting planes. -

-
-

Phi

-
-

-

-
-

The angle between the crystal's diffracting planes and the - horizontal. (By definition here, the beam incident on the - monochromator is "horizontal". Note that small changes - in incident-beam direction can be accommodated by the "world" - offset, shown in the control displays below.) -

-
-

dPhi

-
-

-

-
-

(not shown in the diagram below) The difference between the - actual angle, Phi, and the nominal value of this angle, Phi0. - These are the motors actually driven by the software. The - hardware for which this software was designed has extremely high - resolution (nanoradian) rotation stages with very limited angular - ranges. -

-
-
-

-
hr_nested.adl (nested geometry)

-

This display is a cartoon of the nested high-resolution -monochromator geometry, defining the meanings of the angles Theta and -Phi. -

-

In this diagram, the crystals are drawn -as if their diffracting planes were parallel to the crystal surface. -This is not always the case in actual practice, particularly for the -first crystal of the nested geometry, which typically is -asymmetrically cut to match the incident beam divergence to the -angular range over which the second crystal accepts a monochromatic -beam. Asymmetrically cut crystals will diffract at slightly different -angles than symmetrically cut crystals, because the entrance and exit -beams will be refracted by different amounts. The control software -does not take index-of-refraction effects into account. -

-
-

-
hrSeqCtl_All.adl (nested geometry) -

-

This is the full control display for a high-resolution -monochromator in the "nested" geometry. At top left are -energy and wavelength drive areas, with columns of numbers in the -standard form for motors. From the top: HighLimit, Readback, Drive, -LowLimit, and Tweak. In the middle are the crystal parameters and -Bragg-angle drive area for the first crystal, 'TH1' (i.e., the -crystal surface that the beam hits first, and its channel-cut pair, -if any). At right are the crystal parameters and drive area for the -second crystal, 'TH2'. The software makes sure all these fields are -consistent with each other, so you can control the monochromator with -any of them. -

-

High and low limits of energy, wavelength, and the Bragg angles -are calculated from limits of the motors that actually drive -crystals, the Phi1 and Phi2 motors. These motors have engineering -units of microradians, and may have small angular ranges about an -offset angle that the software calculates but needn't be able to read -or drive. The software simply assumes, for example, that when Phi1 is -at zero, the Phi1 crystal is oriented at the displayed offset angle. -

-

Below the heavy black line is the connection between calculated -Bragg angles and actual crystal motions. When a change is made to any -of energy, wavelength, or Bragg angle, the software reconciles all -the other values, according to the mode ("Theta1 only"; -"Theta1 and Theta2"; "Rock Theta2") switch, and -calculates the actual crystal angles (Phi1, Phi2) required to achieve -the new Bragg angles. These new crystal angles are displayed in the -bottom row of values under the "Phi 1" and "Phi 2" -headings. If the "calibration" switch is set to "Use", -new Phi-motor drive values are calculated from the Phi values, by -subtracting the offsets and converting from degrees to microradians. -If the "Calibrate" switch is set to "Set", the -offsets are calculated from the new Phi values and the existing motor -positions. -

-

After new Phi-motor values have been calculated, they are adjusted -by the "world" offset, an arbitrary angle by which the user -can allow for small shifts in the incident beam angle. -

-

When new, adjusted Phi-motor values have been calculated, they are -displayed in the orange "Motor Write" row under the "Phi -1" and "Phi 2" headings. If the "Manual"/Auto" -switch is set to "Auto", the new values will also be -written to the motors. If the "Manual"/Auto" switch is -set to "Manual", this will happen only when the "Move" -button is pressed. -

-

-
hr_symmetric.adl (symmetric geometry)

-

This display is a cartoon of the -symmetric high-resolution monochromator geometry, defining the -meanings of the angles Theta and Phi. Although this diagram shows two -channel-cut pairs of identical crystals, the crystals needn't be -identical. -

-

-
hrSeqCtl_All.adl (symmetric geometry)

-

This display shows the symmetric geometry in use. -

-

-

-

Spherical Grating (Phi, rentrance, rexit)

-


SGM.adl -

-


SGM_tiny.adl

-

These are the control displays for a spherical grating -monochromator. The supported geometry comprises an input slit, a -grating driven by a tangent arm, and an exit slit. The angle between -the incoming and outgoing beams is fixed. The grating may have up to -16 stripes, whose properties are specified in the following control -display: -

-


SGM_gratings.adl

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-

Description

-
-

Anything the user wants to write -

-
-

Diffraction order

-
-

"Grating", as used here, means a physical grating - stripe and a particular diffraction order -

-
-

Line density

-
-

Number of gratings lines per mm. -

-
-

Radius of curvature

-
-

stripes can have different radii -

-
-

Wavelength low limit

-
-

Smallest wavelength for which this stripe should be used. -

-
-

Wavelength high limit

-
-

Largest wavelength for which this stripe should be used. -

-
-

Grating index

-
-

Position of the grating-translation motor that will put this - stripe into the incoming beam. -

-
-

Grating-motor offset

-
-

Correction to be applied to the calculated tangent-arm motor - while this stripe is in use. -

-
-

OK to use

-
-

If this field is zero, the user will not be permitted to select - this stripe for use. -

-
- - - -

-

-

Multilayer (Theta1, Theta2, Y2, Z2)

-


ml_monoGraphic.adl -

-


ml_monoSeqCtl.adl.gif

- -

These are the control displays for a multilayer monochromator, comprised of two -independently supported multilayers with the same d spacing and diffraction -order, in a nondispersive configuration . Both multilayers have Theta, X, Y, Z, and Chi -motors; the downstream multilayer also has Phi and bend motors. The software drives -Theta motors to an angle calculated from the multilayer d spacing and -diffraction-order number, reads the Y offset as the position of the second multilayer's -Y motor, and drives the second multilayer's Z motor so that beam diffracted from the -first multilayer intersects the second multilayer in the same spot, as the selected beam -energy is varied.

- - - - - - -

-

-

-

-

-

-

Slits

-


2slit.adl

-


4slitGraphic.adl

-


xia_slit_full.adl

-

-

-

-

-

-

-

Mirrors

-


2postMirror.adl

-

-

-

-

-

-

-

Filters

-


2filter.adl

-


2filter_setup.adl

- -

- -

XIA PF4 dual filter

- -

This software treats two XIA (X-Ray Instrumentation Associates) PF4 -four-filter units as separate devices, though it does calculate the total -transmission of the two units. Originally, this software supported only three -filter-material choices, but support for 22 elemental filter materials was -grafted on later. This software drives the filter via digital I/O PVs. It -also also monitors those PVs, and behaves correctly when they are changed by -some external agent. - -

This software calculates the x-ray transmission for each combination of -filters in one unit, given the current x-ray beam energy, and permits either -direct setting of the desired transmission, or selection of the next higher, or -next lower, transmission. - -

- -




-

-

-



-

-

-



-

- -

To load an instance of this support, add the following lines to the ioc startup file, st.cmd, -before the call to iocInit(): - -

    -
    -### Load database records for dual PF4 filters
    -dbLoadRecords("$(OPTICS)/opticsApp/Db/pf4common.db","P=xxx:,H=pf4:,A=A,B=B")
    -dbLoadRecords("$(OPTICS)/opticsApp/Db/pf4bank.db","P=xxx:,H=pf4:,B=A")
    -dbLoadRecords("$(OPTICS)/opticsApp/Db/pf4bank.db","P=xxx:,H=pf4:,B=B")
    -
    -
- -

and add the following lines after the call to iocInit(): - -

    -
    -# Start PF4 filter sequence program
    -#        name = what user will call it
    -#        P    = prefix of database and sequencer
    -#        H    = hardware (i.e. pf4)
    -#        B    = bank indicator (i.e. A,B)
    -#        M    = Monochromatic-beam energy PV
    -#        BP   = Filter control bit PV prefix
    -#        B1   = Filter control bit 0 number
    -#        B2   = Filter control bit 1 number
    -#        B3   = Filter control bit 2 number
    -#        B4   = Fitler control bit 3 number
    -seq &pf4,"name=pf1,P=xxx:,H=pf4:,B=A,M=xxx:BraggEAO,BP=xxx:Unidig1Bo,B1=3,B2=4,B3=5,B4=6"
    -seq &pf4,"name=pf2,P=xxx:,H=pf4:,B=B,M=xxx:BraggEAO,BP=xxx:Unidig1Bo,B1=7,B2=8,B3=9,B4=10"
    -
    -
- -

For autosave suppport, add the following lines to auto_settings.req: - -

    -
    -## PF4 dual filter
    -file pf4common.req P=$(P),H=pf4:
    -file pf4bank.req   P=$(P),H=pf4:,B=A
    -file pf4bank.req   P=$(P),H=pf4:,B=B
    -
    -
- -

- - -

XIA PF4 multiple filter

- -

This software treats two or four XIA (X-Ray Instrumentation Associates) PF4 -four-filter units as a single device. It drives the filters via digital I/O -PVs. It also also monitors those PVs, and behaves correctly when they are -changed by some external agent. - -

This software calculates the x-ray transmission for all combinations of all -filters in all units, given the current x-ray beam energy. It permits direct -setting of the desired transmission, setting the transmission relative to the -current value (e.g., down by 10%, up by a factor of 2, etc.), and selection of -the next higher, or next lower, transmission. It also permits individual -filters to be removed from consideration, and locked in or out of the x-ray -beam. - -




-

-

-



-

-



-

- -To Load an instance of this support, add the following lines to the ioc startup file, st.cmd, before the call to iocInit(): - -
-### Load database records for alternative PF4-filter support
-dbLoadTemplate "filter.substitutions"
-
- -and add the following lines after the call to iocInit(): - -
-# Alternative pf4 filter seq program
-seq filterDrive,"NAME=filterDrive,P=xxx:,R=filter:,NUM_FILTERS=16"
-
- -Here's a sample filter.substitutions file: -
-# filter.substitutions
-
-file "$(OPTICS)/opticsApp/Db/filterBladeNoSensor.db" {
-  pattern
-  {P,           R,        N,   DESC,           OUT}
-  {xxx:,   filter:,  1,   "Filter 1",     "xxx:Unidig1Bo0"}
-  {xxx:,   filter:,  2,   "Filter 2",     "xxx:Unidig1Bo1"}
-  {xxx:,   filter:,  3,   "Filter 3",     "xxx:Unidig1Bo2"}
-  {xxx:,   filter:,  4,   "Filter 4",     "xxx:Unidig1Bo3"}
-  {xxx:,   filter:,  5,   "Filter 5",     "xxx:Unidig1Bo4"}
-  {xxx:,   filter:,  6,   "Filter 6",     "xxx:Unidig1Bo5"}
-  {xxx:,   filter:,  7,   "Filter 7",     "xxx:Unidig1Bo6"}
-  {xxx:,   filter:,  8,   "Filter 8",     "xxx:Unidig1Bo7"}
-  {xxx:,   filter:,  9,   "Filter 9",     "xxx:Unidig1Bo8"}
-  {xxx:,   filter:,  10,  "Filter 10",    "xxx:Unidig1Bo9"}
-  {xxx:,   filter:,  11,  "Filter 11",    "xxx:Unidig1Bo10"}
-  {xxx:,   filter:,  12,  "Filter 12",    "xxx:Unidig1Bo11"}
-  {xxx:,   filter:,  13,  "Filter 13",    "xxx:Unidig1Bo12"}
-  {xxx:,   filter:,  14,  "Filter 14",    "xxx:Unidig1Bo13"}
-  {xxx:,   filter:,  15,  "Filter 15",    "xxx:Unidig1Bo14"}
-  {xxx:,   filter:,  16,  "Filter 16",    "xxx:Unidig1Bo15"}
-}
-
-file "$(OPTICS)/opticsApp/Db/filterDrive.db" {
-  {P="xxx:", R="filter:", DESC="Filters", KEV="xxx:BraggEAO"}
-}
-
- -and here are lines added to auto_settings.req for these filters: -
-file filterDrive.req "P=xxx:,R=filter:"
-file filterBladeNoSensor.req "P=xxx:,R=filter:,N=1"
-file filterBladeNoSensor.req "P=xxx:,R=filter:,N=2"
-file filterBladeNoSensor.req "P=xxx:,R=filter:,N=3"
-file filterBladeNoSensor.req "P=xxx:,R=filter:,N=4"
-file filterBladeNoSensor.req "P=xxx:,R=filter:,N=5"
-file filterBladeNoSensor.req "P=xxx:,R=filter:,N=6"
-file filterBladeNoSensor.req "P=xxx:,R=filter:,N=7"
-file filterBladeNoSensor.req "P=xxx:,R=filter:,N=8"
-file filterBladeNoSensor.req "P=xxx:,R=filter:,N=9"
-file filterBladeNoSensor.req "P=xxx:,R=filter:,N=10"
-file filterBladeNoSensor.req "P=xxx:,R=filter:,N=11"
-file filterBladeNoSensor.req "P=xxx:,R=filter:,N=12"
-file filterBladeNoSensor.req "P=xxx:,R=filter:,N=13"
-file filterBladeNoSensor.req "P=xxx:,R=filter:,N=14"
-file filterBladeNoSensor.req "P=xxx:,R=filter:,N=15"
-file filterBladeNoSensor.req "P=xxx:,R=filter:,N=16"
-
-
-Top level MEDM display files for this support are -
-
filter_8_0_more.adl -
for two PF4 4-filter units -
filter_8_8_more.adl -
for four PF4 4-filter units -
- -To load the MEDM display file, specify a related display button with -something like the following entries: - -
-Display Label: PF4 filter 16
-Display File: filter_8_8_more.adl
-Arguments: P=xxx:,R=filter
-
- -

-

-

-

-

-

- - - -

Optical table

-

The optical-table software is documented separately. See -tableRecord.html -

-

-

-

-

-

-

-

Orientation matrix (diffractometer control)

-


orient_full.adl

-


orient_XTALS.adl

-

-

-

-

-

-

-

Io calculation (Jon Tischler)

-


Io.adl

-


Io_small.adl

-

This software calculates the photon -flux through an ion chamber, given the counts recorded in scaler -channels, and data describing the ionization chamber, the beam -energy, and the signal path from ionization chamber to scaler. -

-

-

-

-

-

-

-

PID loop support

-


fb_epid.adl

-

The fb_epid support provides a database centered around the EPICS -epid record. -Documentation is provided on a separate page. -

-

-

-
Suggestions and Comments to:
Tim -Mooney : (mooney@aps.anl.gov) -
- - - diff --git a/documentation/opticsReleaseNotes.html b/documentation/opticsReleaseNotes.html deleted file mode 100755 index 96f2132..0000000 --- a/documentation/opticsReleaseNotes.html +++ /dev/null @@ -1,226 +0,0 @@ - - - - - opticsReleaseNotes - - - - - -

optics Release Notes

- -

Release 2-9-1

-
    - -
  • filterDrive.st: Added OUTGET for separate readback of outputs; only move -enabled filters. Removed trailing backslash characters from several lines, -caused compiler failure on Windows. -
  • filterBladeNoSensor.db: Added OutGet and OutSet records and OUT_STRING and -IN_STRING macro parameters so the database does not assume blade in=1 and blade -out=0. -
  • filter.substitutions: Added OUT_STRING and IN_STRING macro parameters - -
- - -

Release 2-9

-
    - -
  • - fb_epid updated (2012-02-29): -
      -
    • Support and documentation updated to help with deployment.
    • -
    • Added simulation of a temperature controller as default configuration.
    • -
    • TODO: Consider replacing swait records with calcout from EPICS base.
    • -
    - -
  • Split chantler.h into chantler.h and chantler.c, so more than one program -can use it. - -
  • Added iocBoot examples code - -
  • Added Christian Schlepuetz' support for the XIA PF4 filter, which draws from -support developed by David Maden, Jon Tischler, Pete Jemian, and Tim Mooney. - -
  • Fixed initialization problems in SGM database, and converted to VDCT. - -
  • Added CSS-BOY and caQtDM display files - -
- -

Release 2-8-1

-
    - -
  • hrSeq.db, hrCtl.st now permits min/max theta to be specified via PVs - -
  • Dropped __VAR_ARGS__ from sncqxbpm.st, because different compilers do this differently. -
- -

Release 2-8

-
    - -
  • 2slit.db, 2slit.adl, 4slitGraphic.adl: Add CoordSys record, and - "RELTOCENTER" macro which controls its value. If CoordSys==0, the database - is backward compatible with previous versions, and both motors move in the - lab frame (both increase in the same direction). Otherwise, both motors - increase as the slit opens.
    - Also added autosave-request file 2slit_settings.req. - -
  • pf4 filter: -
      - -
    • Extensive modifications to support additional filter materials, and to - avoid having to specify I/O and energy PVs to both the SNL program and - to the MEDM-display files. Also, change the way I/O PVs are specified - ('$(BP)$(Bn)' instead of '$(Bn)') to avoid vxWorks line-length - limitations. - -
    • Added transmission factor for each bank separately - -
    • For new filter materials, show user raw absorption data (mu) as a - function of energy - -
    • Display digital I/O bits, so we can coexist with external software that - independently manages I/O bits. - -
    - -
  • Changes for 64-bit arch - -
  • tableRecord.c: Compare user limits to (>SMALL), rather than to (==0) - -
  • xiahsc.st: Added the validateResponse patch to xiahsc.st that I wrote for - unicat to resolve the problem of temporary, incorrect, position readbacks. -
    Modifications to build with seq 2.1.0: snc wasn't parsing sprintf call - correctly, so I put it behind '%%'. - -
  • Modified RELEASE; deleted RELEASE.arch - -
  • Added .opi display files for CSS-BOY - -
  • sncqxbpm.st: Modifications to build with seq 2.1.0: delete variable - assignment and comma separator within macro. - -
- -

Release 2-7

-
    -
  • SGM.db had some empty links that were specified as "0", which produced link errors. -
  • table_setup_PNC.adl showed origin in wrong position (at M1, instead of M0). -
  • Added database and MEDM displays for a multilayer monochromator. -
  • 2slit.db, 2postMirror.db - Added DMOV PV, implemented using local gate PV. -
  • Added fb_epid.db and fb_epid.adl: user-reconfigurable software feedback - using the epid record, and related documentation fb_epid/*. -
  • Added sncqxbpm.st, qxbpm.db, qxbpm.req, qxbpm*.adl - Support for the Oxford - 4-channel X-ray Beam Position Monitor, and related documentation qxbpm.html. -
  • xia-slit.db - Modified for update slit support -
  • seqPVmacros.h - format changes -
  • tableRecord.c - commented out unused variables -
- -

Release 2-6-1

-
    -
  • Added support for a multilayer monochromator -
  • XIA_shutter.db - user command was sometimes overwritten by a poll and dropped -
- -

Release 2-6

-
    -
  • New support for XIA PF4 filter/shutter: rewritten to use asyn records -instead of stringin/out records with stringParm device support. Also waitTime -calc (for serial record) was in milliseconds, but the serial record was -replaced by an asyn record, whose timeout is specified in seconds. -Database converted to vdct. -
  • Oxford 4-channel x-ray beam position monitor -
  • New support for an ASRP optical table -
  • optics/opticsApp/Db/2slit.db: deleted gate-related PV's -
  • optics/opticsApp/Db/table.db: Fixed problems that were causing motor -records to be put into alarm: tweakVal records had UDF==1; calcout record had -empty CALC expression. -
- -

Release 2-5-3

-
    -
  • Fixed problems in table.db that - caused the table to put motors into alarm.

    -
- -

Release 2-5-2

-
    -
  • Added MEDM display files for XIA PF4 - filter, and fixed it to compile for vxWorks

    -
  • xia_slit.st was not honoring limits written to the hardware. -
  • 2slit.db converted to vdct -
- -

Release 2-5-1

-
    -
  • Added CoarseFineMotor database and - MEDM display files -

    -
  • fixed minor problems with xia_slit - MEDM display.

    -
  • Added support for XIA PF4 dual - filters.

    -
  • Added support for Io (ionization-chamber) calculation.

    -
-

Release 2-5

-
    -
  • Added diffractometer support - (orientation matrix) -

    -
  • Added some documentation for - slits, mirrors, filters, spherical grating monochromator, - high-energy-resolution monochromator. -

    -
  • Ported xia slit to EPICS 3.14, and improved its behavior when - driven by ca_put_callback(). -

    -
-

Release 2-4

-
    -
  • Added table of fixed points - (points about which an optical table rotates) to table database, - request file, and medm displays -

    -
  • The save_restore include file, table_settings.req, now - requires the additional macro argument 'Q'. This is the same macro - argument required by table.db. -

    -
-

Release 2-3

-

This is the first release of the synApps optics module. -Version numbering for this module begins with 2.3 because this module -was split from version 2.2 of the std module, and I wanted to retain -the CVS histories of module contents.

-

This version is intended to build with EPICS base 3.14.5, mpf -2.4.2, and std 2.3. Differences from software as previously released -in std 2.2: -

-
    -
  • Converted to EPICS 3.14 -

    -
  • Docs updated and moved to - optics/documentation -

    -
  • SGM.db - removed forward links - pointing nowhere (gdct artifacts). -

    -
  • kohzuSeq.db - added debug PV - $(P)KohzuCtlDebug. Fixed long-standing bug: if the theta motor was - moved by a very small amount (by external client not working through - kohzuCtl) this software would sometimes ignore the notification it - received from EPICS. -

    -
  • hrSeq.db - added debug PV $(P)HR$(N)CtlDebug. Fixed - long-standing bug: if a theta motor was moved by a very small amount - (by external client not working through hrCtl) this software would - sometimes ignore the notification it received from EPICS. -

    -
-
Suggestions and Comments to:
Tim -Mooney : (mooney@aps.anl.gov) -
- - diff --git a/documentation/qxbpm.html b/documentation/qxbpm.html deleted file mode 100644 index e07f7f8..0000000 --- a/documentation/qxbpm.html +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - Oxford 4-channel X-ray Beam Position Monitor - - - -

-Support for the Oxford 4-channel X-ray Beam Position Monitor

- -
-Pete Jemian
- -
-
-

Contents

- - - -
- - - -

-Overview

- -Need to write this section - -
- - -

-

Differences from previous versions

-
    -
  • 2007-05: first version in synApps
  • -

- -

-

Beam line installation

- -Need to write this section - -

-

IOC installation of the software support

- -Need to write this section - -
-

Restrictions

- -
-
Suggestions and comments to:
- -
-Pete Jemian : (jemian@anl.gov) -
-Last modified: 2007-05-04 - - diff --git a/documentation/tableRecord.html b/documentation/tableRecord.html deleted file mode 100644 index 2ddb539..0000000 --- a/documentation/tableRecord.html +++ /dev/null @@ -1,4660 +0,0 @@ - - - - - - Table Record and related software - - - -

-Table Record and related software

- -
-Tim Mooney
- -
-
-

-Contents

- - - -

-Overview

-This documentation describes version 5.14 of the EPICS table record, and -related EPICS software recommended for building and using it. This version -of the record is compatible with EPICS Release 3.14.X, and it is not -compatible with any earlier releases of EPICS. -

The table record controls six (or fewer) motors that drive an optical -table, a platform that generally can move in three orthogonal directions -(X, Y, and Z), and rotate about the X, Y, and Z axes by angles AX, AY, -and AZ.  The record allows users to specify the point about which -rotations are to occur--this is called the "fixed point" in the figures -below. -

The record assumes the platform rests on three pivot points named M0, -M1, and M2. (See Figs. 1-4, below). The locations of these pivot points, -and the manner in which they move, is specified by the field GEOM (loosely, -the table geometry). Four geometries, named SRI, PNC, GEOCARS, and NEWPORT, -are supported by this version of the table record. -
  -
  -
-
-
-

-

-
Figure 1 (SRI geometry) -

-
Figure 2 (PNC geometry) -

-
Figure 3 (GEOCARS geometry) -

-
Figure 4 (NEWPORT geometry) -

-
  -


-

In the SRI, PNC, and GEOCARS geometries, three motors (M0Y, M1Y, M2Y) move -M0, M1, and M2 in the Y direction (vertically); one motor (M0X) moves M0 in the -X direction; one motor (M2X) moves M2 in the X direction; and one motor (M2Z) moves -M2 in the Z direction. M1 is unconstrained in the X-Z plane; M0 is unconstrained -along the Z axis. -

In the NEWPORT geometry, the three motors (M0Y, M1Y, M2Y) vary the lengths -of the table legs (i.e., the distances between the table top and pivot -points M0, M1, and M2). Thus, in this geometry the pivot points do not -move vertically. -

You are (or the instrument specialist is) expected to customize the -table software by specifying the motors it is to control, and to set up -the table by describing the locations of the pivot points, and by specifying -the table geometry, the orientation angle of the table with respect to -the laboratory coordinate system, the location of the point about which -the table is to rotate (also called the "fixed" point in this documentation), -and any absolute user limits on virtual motors. - - -

-

-Differences from previous versions

-
    -
  • Previously, the transformation between -user coordinates (the translations X, Y, Z; the angles AX, AY, AZ; and -limits constraining those quantities) and motor coordinates (M0X, M0Y, -M1Y, M2X, M2Y, M2Z, and associated limits) was calculated only to first -order in the angles. In this version, all calculations are exact.
  • -

  • Previously, the location of the point fixed under rotations was -specified by the fields SX, SY, and SZ, which were distances from various -pivot points with various sign conventions. -

    In this version, the location is specified by two vectors: a -reference-point vector R, which locates an arbitrary point from which -measurements are practical (e.g., a corner of the table surface); and -the vector, S, which locates the fixed point relative to R. These -vectors are specified with the fields RX, RY, RZ, SX, SY, SZ. They -are defined relative to the origin of the table's local coordinate system. -(See Figs. 1-4.) -

    If R=0, the new system is nearly identical to the old, except for the value -SX, whose definition has changed such that SX_new = LX - SX_old. (In most -cases, SX_old was equal to LX/2, so no change is required.) -

  • -

  • The field LX21 has been deleted.
  • -
- -

-

-Field Descriptions

-In addition to fields common to all record types (see the EPICS -Record Reference Manual for these) the table record has the fields -described below. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Alphabetical listing of all fieldswith terse descriptions
Calibration fieldsallow you to redefine the table position
Setup fieldsspecify the table dimensions and the location of the "fixed point"
Link fieldsconnect the table record to motor records
Limit fieldsvalues read from or calculated from motor limits
Speed fieldsattempt to keep the "fixed" point fixed even while moving
Table drive fieldsby which you move the table
Motor drive fieldsby which the table record moves motors
Readback fieldscurrent and desired positions of table and motors
Miscellaneous fieldsengineering units, command "buttons", etc.
Private fieldsin which you are not expected to be interested
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-

-Alphabetical list of record-specific fields

-NOTE: Links in this table take you only to the section in which -the linked item is described in detail. You'll probably have to scroll -down to find the actual item.
Name Access Prompt Data type Comment 
Ax to m matrix DOUBLE* 3x3 rotation matrix
AEGUR/W Angular Units Name STRING Engineering units for angles (16-chars)
AX0R/W x-angle offset DOUBLE True table position - reported table position
AXR/W* x angle DOUBLE x-angle drive field
AXLx angle true value DOUBLE True x angle
AXRBx angle readback DOUBLE x angle calculated from motor drive values
AY0R/W y-angle offset DOUBLE True table position - reported table position
AYR/W* y angle DOUBLE y-angle drive field
AYLy angle true value DOUBLE True y angle
AYRBy angle readback DOUBLE y angle calculated from motor drive values
AZ0R/W z-angle offset DOUBLE True table position - reported table position
AZR/W* z angle DOUBLE z-angle drive field
AZLz angle true value DOUBLE True z angle
AZRBz angle readback DOUBLE z angle calculated from motor drive values
Bm to x matrix DOUBLE* 3x3 utility matrix
E0Xencoder 0X val DOUBLE Current position of M0X motor
E0XIR/W encoder 0X inlink INLINK Link from M0X motor's readback
E0Yencoder 0Y val DOUBLE Current position of M0Y motor
E0YIR/W encoder 0Y inlink INLINK Link from M0Y motor's readback
E1Yencoder 1Y val DOUBLE Current position of M1Y motor
E1YIR/W encoder 1Y inlink INLINK Link from M1Y motor's readback
E2Xencoder 2X val DOUBLE Current position of M2X motor
E2XIR/W encoder 2X inlink INLINK Link from M2X motor's readback
E2Yencoder 2Y val DOUBLE Current position of M2Y motor
E2YIR/W encoder 2Y inlink INLINK Link from M2Y motor's readback
E2Zencoder 2Z val DOUBLE Current position of M2Z motor
E2ZIR/W encoder 2Z inlink INLINK Link from M2Z motor's readback
EAXencoder x angle DOUBLE Current table position (x angle) 
EAYencoder y angle DOUBLE Current table position (y angle)
EAZencoder z angle DOUBLE Current table position (z angle)
EXencoder x DOUBLE Current table position (x translation)
EYencoder y DOUBLE Current table position (y translation)
EZencoder z DOUBLE Current table position (z translation)
H0Xmotor 0X hi limit DOUBLE 
H0XLR/W motor 0X HLM link INLINK Link from motor's limit field
H0Ymotor 0Y hi limit DOUBLE 
H0YLR/W motor 0Y HLM link INLINK Link from motor's limit field
H1Ymotor 1Y hi limit DOUBLE 
H1YLR/W motor 1Y HLM link INLINK Link from motor's limit field
H2Xmotor 2X hi limit DOUBLE 
H2XLR/W motor 2X HLM link INLINK Link from motor's limit field
H2Ymotor 2Y hi limit DOUBLE 
H2YLR/W motor 2Y HLM link INLINK Link from motor's limit field
H2Zmotor 2Z hi limit DOUBLE 
H2ZLR/W motor 2Z HLM link INLINK Link from motor's limit field
HLAXx angle hi limit DOUBLE Calculated from motor limits
HLAYy angle hi limit DOUBLE Calculated from motor limits
HLAZz angle hi limit DOUBLE Calculated from motor limits
HLXx hi limit DOUBLE Calculated from motor limits
HLYy hi limit DOUBLE Calculated from motor limits
HLZz hi limit DOUBLE Calculated from motor limits
INITR/W* init table SHORT Command: Abandon calibration and sync drive fields to motor positions
GEOMR/W* table geometry DOUBLE (0:"SRI", 1:"GEOCARS", 2:"NEWPORT", 3:"PNC") Specify the arrangement of table -legs and motors.
L0Xmotor 0X lo limit DOUBLE 
L0XLR/W motor 0X LLM link INLINK Link from motor's limit field
L0Ymotor 0Y lo limit DOUBLE 
L0YLR/W motor 0Y LLM link INLINK Link from motor's limit field
L1Ymotor 1Y lo limit DOUBLE 
L1YLR/W motor 1Y LLM link INLINK Link from motor's limit field
L2Xmotor 2X lo limit DOUBLE 
L2XLR/W motor 2X LLM link INLINK Link from motor's limit field
L2Ymotor 2Y lo limit DOUBLE 
L2YLR/W motor 2Y LLM link INLINK Link from motor's limit field
L2Zmotor 2Z lo limit DOUBLE 
L2ZLR/W motor 2Z LLM link INLINK Link from motor's limit field
LEGUR/W Linear Units Name STRING Engineering units for translations (16-chars)
LLAXx angle lo limit DOUBLE Calculated from motor limits
LLAYy angle lo limit DOUBLE Calculated from motor limits
LLAZz angle lo limit DOUBLE Calculated from motor limits
LLXx lo limit DOUBLE Calculated from motor limits
LLYy lo limit DOUBLE Calculated from motor limits
LLZz lo limit DOUBLE Calculated from motor limits
LVIOlimit violation SHORT If nonzero, requested motion would violate limits
LXR/W wheelbase x DOUBLE x distance between table legs M0 and M1
LZR/W wheelbase z DOUBLE z distance between table legs M0 and M2
M0Xmotor 0X val DOUBLE Desired motor position
M0XLR/W motor 0X outlink OUTLINK Link to motor's drive field
M0Ymotor 0Y val DOUBLE Desired motor position
M0YLR/W motor 0Y outlink OUTLINK Link to motor's drive field
M1Ymotor 1Y val DOUBLE Desired motor position
M1YLR/W motor 1Y outlink OUTLINK Link to motor's drive field
M2Xmotor 2X val DOUBLE Desired motor position
M2XLR/W motor 2X outlink OUTLINK Link to motor's drive field
M2Ymotor 2Y val DOUBLE Desired motor position
M2YLR/W motor 2Y outlink OUTLINK Link to motor's drive field
M2Zmotor 2Z val DOUBLE Desired motor position
M2ZLR/W motor 2Z outlink OUTLINK Link to motor's drive field
MMAPMonitor Mask ULONG 
PP0pivot pt 0 DOUBLE Desired loc of pivot point 0 (3 vector)
PP1pivot pt 1 DOUBLE Desired loc of pivot point 1 (3 vector)
PP2pivot pt 2 DOUBLE Desired loc of pivot point 2 (3 vector)
PPO0pivot pt 0 orig DOUBLE Current loc of pivot point 0 (3 vector)
PPO1pivot pt 1 orig DOUBLE Current loc of pivot point 1 (3 vector)
PPO2pivot pt 2 orig DOUBLE Current loc of pivot point 2 (3 vector)
PRECR/W Display Precision SHORT Number of digits to right of decimal point
R0Xmotor 0X readback DOUBLE Motor's desired value
R0XIR/W motor 0X RBV link INLINK Link from motor's drive field
R0Ymotor 0Y readback DOUBLE Motor's desired value
R0YIR/W motor 0Y RBV link INLINK Link from motor's drive field
R1Ymotor 1Y readback DOUBLE Motor's desired value
R1YIR/W motor 1Y RBV link INLINK Link from motor's drive field
R2Xmotor 2X readback DOUBLE Motor's desired value
R2XIR/W motor 2X RBV link INLINK Link from motor's drive field
R2Ymotor 2Y readback DOUBLE Motor's desired value
R2YIR/W motor 2Y RBV link INLINK Link from motor's drive field
R2Zmotor 2Z readback DOUBLE Motor's desired value
R2ZIR/W motor 2Z RBV link INLINK Link from motor's drive field
READR/W* readback motors SHORT Command: read current motor positions, translate to table positions
RXR/W* x of ref point DOUBLE X position of reference point
RYR/W* y of ref point DOUBLE Y position of reference point
RZR/W* z of ref point DOUBLE Z position of reference point
SETR/W set table MENU (0:"Use", 1:"Set")
SSETR/W Set SET Mode SHORT asl(ASL0)
SUSER/W Set USE Mode SHORT asl(ASL0)
SXR/W* x of fixed point DOUBLE X position of fixed point
SYR/W* y of fixed point DOUBLE Y position of fixed point
SYNCR/W* sync with motors SHORT Command: read motor positions, reconcile table positions to them
SZR/W* z of fixed point DOUBLE Z position of fixed point
UHAXR/W* user's x angle hi limit DOUBLE Absolute user limit (independent of table calibration)
UHAYR/W* user's y angle hi limit DOUBLE Absolute user limit (independent of table calibration)
UHAZR/W* user's z angle hi limit DOUBLE Absolute user limit (independent of table calibration)
UHXR/W* user's x hi limit DOUBLE Absolute user limit (independent of table calibration)
UHYR/W* user's y hi limit DOUBLE Absolute user limit (independent of table calibration)
UHZR/W* user's z hi limit DOUBLE Absolute user limit (independent of table calibration)
ULAXR/W* user's x angle lo limit DOUBLE Absolute user limit (independent of table calibration)
ULAYR/W* user's y angle lo limit DOUBLE Absolute user limit (independent of table calibration)
ULAZR/W* user's z angle lo limit DOUBLE Absolute user limit (independent of table calibration)
ULXR/W* user's x lo limit DOUBLE Absolute user limit (independent of table calibration)
ULYR/W* user's y lo limit DOUBLE Absolute user limit (independent of table calibration)
ULZR/W* user's z lo limit DOUBLE Absolute user limit (independent of table calibration)
V0Xspeed 0X val DOUBLE Speed to be written to motor (for duration of commanded move)
V0XIR/W speed 0X inlink INLINK Link from motor's speed field
V0XLR/Wspeed 0X outlink OUTLINK Link to motor's speed field
V0Yspeed 0Y val DOUBLE Speed to be written to motor (for duration of commanded move)
V0YIR/W speed 0Y inlink INLINK Link from motor's speed field
V0YLR/W speed 0Y outlink OUTLINK Link to motor's speed field
V1Yspeed 1Y val DOUBLE Speed to be written to motor (for duration of commanded move)
V1YIR/W speed 1Y inlink INLINK Link from motor's speed field
V1YLR/W speed 1Y outlink OUTLINK Link to motor's speed field
V2Xspeed 2X val DOUBLE Speed to be written to motor (for duration of commanded move)
V2XIR/W speed 2X inlink INLINK Link from motor's speed field
V2XLR/W speed 2X outlink OUTLINK Link to motor's speed field
V2Yspeed 2Y val DOUBLE Speed to be written to motor (for duration of commanded move)
V2YIR/W speed 2Y inlink INLINK Link from motor's speed field
V2YLR/W speed 2Y outlink OUTLINK Link to motor's speed field
V2Zspeed 2Z val DOUBLE Speed to be written to motor (for duration of commanded move)
V2ZIR/W speed 2Z inlink INLINK Link from motor's speed field
V2ZLR/W speed 2Z outlink OUTLINK Link to motor's speed field
VALR/W Result DOUBLE Not used
VERSCode Version FLOAT e.g., 5.0
X0R/W x offset DOUBLE True table position - reported table position
XR/W* x translation DOUBLE x translation drive field
XLx true value DOUBLE True x translation
XRBx readback value DOUBLE x translation calc'd from motor drive values
Y0R/W y offset DOUBLE True table position - reported table position
YR/W* y translation DOUBLE y translation drive field
YANGR/W* Orientation angle DOUBLE Rotation of table base about Y axis
YLy true value DOUBLE True y translation
YRBy readback value DOUBLE y translation calc'd from motor drive values
Z0R/W z offset DOUBLE True table position - reported table position
ZR/W* z translation DOUBLE z translation drive field
ZEROR/W* zero table SHORT Command: call current table position and angle 'zero'
ZLz true value DOUBLE True z translation
ZRBz readback value DOUBLE z translation calc'd from motor drive values 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Note: In the Access column above: 
RRead only
rRead only, not posted
R/WRead and write are allowed
R/W*Read and write are allowed; write triggers record processing if the -record's SCAN field is set to "Passive."
-
- -
-

-Calibration fields

-The table record allows you to redefine any table position (or angle) to -any value you want. It implements this by maintaining an offset for each -virtual motor. To redefine X, for example, put the table into "Set" mode -(write "Set" or "1" to the SET field) and write the new value to X. You -cal also redefine all positions/angles to be zero by writing "1" to the -ZERO field. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Name Access Prompt Data type Comments
AX0 R/W x-angle offset DOUBLE True table position - reported table position
AXL x angle true value DOUBLE True x angle
AY0 R/W y-angle offset DOUBLE True table position - reported table position
AYL y angle true value DOUBLE True y angle
AZ0 R/W z-angle offset DOUBLE True table position - reported table position
AZL z angle true value DOUBLE True z angle
SET R/W set table MENU (0:"Use", 1:"Set")
SSET R/W Set SET Mode SHORT asl(ASL0)
SUSE R/W Set USE Mode SHORT asl(ASL0)
X0 R/W x offset DOUBLE True table position - reported table position
XL x true value DOUBLE True x translation
Y0 R/W y offset DOUBLE True table position - reported table position
YL y true value DOUBLE True y translation
Z0 R/W z offset DOUBLE True table position - reported table position
ZERO R/W* zero table SHORT Command: call current table position and angle 'zero'
ZL z true value DOUBLE True z translation
- -
-

-Setup fields

-Three operations are required to set up the table. (Though simple, this is -kind of messy in words. See Fig. 1-3 above.) -
    -
    -

    Specify the locations of the pivot points (legs). -

    Select a table geometry by setting the field GEOM to "SRI", "GEOCARS", -"NEWPORT", or "PNC". -

    -

    SRI geometry

    -
    The distance between M0 and M1 is specified with the field LX. (A - line from M1 to M0 defines the positive x direction of the table's - local coordinate system. The perpendicular distance from M2 to the - line M1-M0 is specified with the field LZ.
    -

    GEOCARS geometry -

    The distance between M0 and the line M1-M2 is specified with the field LX. (A - line through M0 and perpendicular to M1-M2 defines the positive x direction of the table's - local coordinate system. The distance from M1 to M2 - is specified with the field LZ.
    -

    NEWPORT geometry

    -
    The distance between M1 and the line M0-M2 is specified with the field - LX. (A line perpendicular to M0-M2 defines the x direction of the table's - local coordinate system. The distance from M0 to M2 is specified with the - field LZ.
    -

    PNC geometry

    -
    The distance between M0 and M1 is specified with the field LX. (A - line from M0 to M1 defines the positive x direction of the table's - local coordinate system. The perpendicular distance from M2 to the - line M0-M1 is specified with the field LZ.
    - -
    -

    Specify the orientation of the table with respect to the laboratory coordinate system. -

    The table orientation is specified with YANG, the angle through which -the table must be rotated from an arbitrarily chosen "standard" position to -the position in which you are going to use it. For the SRI and PNC geometries, when -YANG=0, M2 is downstream. For the GEOCARS geometry, when YANG=0, M1 is directly -downstream from M2. For the NEWPORT geometry, when YANG=0, M2 is directly downstream -from M0. As the table rotates clockwise (as seen from above) YANG increases. -(These standard positions are illustrated in Figs. 1-4.) -

    Specify the point about which the table is to rotate. -

    This point is specified by (RZ, RY, RZ) and (SX, SY, SZ), as shown in Figs. 1-3, above. -

    -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Name Access Prompt Data type Comments
GEOM R/W* table geometry DOUBLE (0:"SRI", 1:"GEOCARS", 2:"NEWPORT", 3:"PNC") Specify the arrangement of table legs and motors.
LX R/W wheelbase x DOUBLE x distance between table legs
LZ R/W wheelbase z DOUBLE z distance between table legs
RX R/W* x of ref point DOUBLE X position of reference point
RY R/W* y of ref point DOUBLE Y position of reference point
RZ R/W* z of ref point DOUBLE Z position of reference point
SX R/W* x loc fixed point DOUBLE X position of fixed point
SY R/W* y loc fixed point DOUBLE Y position of fixed point
SZ R/W* z loc fixed point DOUBLE Z position of fixed point
YANG R/W* Orientation angle DOUBLE Rotation of table base about Y axis
- -
-

-Link fields

-The table record makes eight links with each of the six motor records it -controls. For each motor, the table record reads and writes the drive and -speed fields, and it reads the position-readback and limit fields. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Name Access Prompt Data type Comments
E0XI R/W encoder 0X inlink INLINK Link from M0X motor's readback
E0YI R/W encoder 0Y inlink INLINK Link from M0Y motor's readback
E1YI R/W encoder 1Y inlink INLINK Link from M1Y motor's readback
E2XI R/W encoder 2X inlink INLINK Link from M2X motor's readback
E2YI R/W encoder 2Y inlink INLINK Link from M2Y motor's readback
E2ZI R/W encoder 2Z inlink INLINK Link from M2Z motor's readback
H0XL R/W motor 0X HLM link INLINK Link from motor's limit field
H0YL R/W motor 0Y HLM link INLINK Link from motor's limit field
H1YL R/W motor 1Y HLM link INLINK Link from motor's limit field
H2XL R/W motor 2X HLM link INLINK Link from motor's limit field
H2YL R/W motor 2Y HLM link INLINK Link from motor's limit field
H2ZL R/W motor 2Z HLM link INLINK Link from motor's limit field
L0XL R/W motor 0X LLM link INLINK Link from motor's limit field
L0YL R/W motor 0Y LLM link INLINK Link from motor's limit field
L1YL R/W motor 1Y LLM link INLINK Link from motor's limit field
L2XL R/W motor 2X LLM link INLINK Link from motor's limit field
L2YL R/W motor 2Y LLM link INLINK Link from motor's limit field
L2ZL R/W motor 2Z LLM link INLINK Link from motor's limit field
M0XL R/W motor 0X outlink OUTLINK Link to motor's drive field
M0YL R/W motor 0Y outlink OUTLINK Link to motor's drive field
M1YL R/W motor 1Y outlink OUTLINK Link to motor's drive field
M2XL R/W motor 2X outlink OUTLINK Link to motor's drive field
M2YL R/W motor 2Y outlink OUTLINK Link to motor's drive field
M2ZL R/W motor 2Z outlink OUTLINK Link to motor's drive field
R0XI R/W motor 0X RBV link INLINK Link from motor's drive field
R0YI R/W motor 0Y RBV link INLINK Link from motor's drive field
R1YI R/W motor 1Y RBV link INLINK Link from motor's drive field
R2XI R/W motor 2X RBV link INLINK Link from motor's drive field
R2YI R/W motor 2Y RBV link INLINK Link from motor's drive field
R2ZI R/W motor 2Z RBV link INLINK Link from motor's drive field
V0XI R/W speed 0X inlink INLINK Link from motor's speed field
V0XL R/W speed 0X outlink OUTLINK Link to motor's speed field
V0YI R/W speed 0Y inlink INLINK Link from motor's speed field
V0YL R/W speed 0Y outlink OUTLINK Link to motor's speed field
V1YI R/W speed 1Y inlink INLINK Link from motor's speed field
V1YL R/W speed 1Y outlink OUTLINK Link to motor's speed field
V2XI R/W speed 2X inlink INLINK Link from motor's speed field
V2XL R/W speed 2X outlink OUTLINK Link to motor's speed field
V2YI R/W speed 2Y inlink INLINK Link from motor's speed field
V2YL R/W speed 2Y outlink OUTLINK Link to motor's speed field
V2ZI R/W speed 2Z inlink INLINK Link from motor's speed field
V2ZL R/W speed 2Z outlink OUTLINK Link to motor's speed field
- -
-

-Limit-related fields

-The table record keeps a copy of each motor's high and low limit values. -From them it calculates high and low limits for the virtual motors. It's -probably worth emphasizing the fact that virtual-motor limits are coupled: -if you rotate the table about the X axis as far as it will go, you no longer -have any room left to translate it in at least one Y direction, for example. -

User limits UH* and UL* are applied to virtual-motor limits after those -limits have been calculated from motor limits. If both the high and low -limits associated with a motion are exactly zero, those limits are ignored. -To keep a table's X angle at zero, then, you might set UHAX=1.e-9, ULAX=-1.e-9. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Name Access Prompt Data type Comments
H0X motor 0X hi limit DOUBLE 
H0Y motor 0Y hi limit DOUBLE 
H1Y motor 1Y hi limit DOUBLE 
H2X motor 2X hi limit DOUBLE 
H2Y motor 2Y hi limit DOUBLE 
H2Z motor 2Z hi limit DOUBLE 
HLAX x angle hi limit DOUBLE Calculated from motor limits
HLAY y angle hi limit DOUBLE Calculated from motor limits
HLAZ z angle hi limit DOUBLE Calculated from motor limits
HLX x hi limit DOUBLE Calculated from motor limits
HLY y hi limit DOUBLE Calculated from motor limits
HLZ z hi limit DOUBLE Calculated from motor limits
L0X motor 0X lo limit DOUBLE 
L0Y motor 0Y lo limit DOUBLE 
L1Y motor 1Y lo limit DOUBLE 
L2X motor 2X lo limit DOUBLE 
L2Y motor 2Y lo limit DOUBLE 
L2Z motor 2Z lo limit DOUBLE 
LLAX x angle lo limit DOUBLE Calculated from motor limits
LLAY y angle lo limit DOUBLE Calculated from motor limits
LLAZ z angle lo limit DOUBLE Calculated from motor limits
LLX x lo limit DOUBLE Calculated from motor limits
LLY y lo limit DOUBLE Calculated from motor limits
LLZ z lo limit DOUBLE Calculated from motor limits
LVIO limit violation SHORT Requested motion would violate limits
UHAX R/W* user's x angle hi limit DOUBLE Absolute user limit (independent of table calibration)
UHAY R/W* user's y angle hi limit DOUBLE Absolute user limit (independent of table calibration)
UHAZ R/W* user's z angle hi limit DOUBLE Absolute user limit (independent of table calibration)
UHX R/W* user's x hi limit DOUBLE Absolute user limit (independent of table calibration)
UHY R/W* user's y hi limit DOUBLE Absolute user limit (independent of table calibration)
UHZ R/W* user's z hi limit DOUBLE Absolute user limit (independent of table calibration)
ULAX R/W* user's x angle lo limit DOUBLE Absolute user limit (independent of table calibration)
ULAY R/W* user's y angle lo limit DOUBLE Absolute user limit (independent of table calibration)
ULAZ R/W* user's z angle lo limit DOUBLE Absolute user limit (independent of table calibration)
ULX R/W* user's x lo limit DOUBLE Absolute user limit (independent of table calibration)
ULY R/W* user's y lo limit DOUBLE Absolute user limit (independent of table calibration)
ULZ R/W* user's z lo limit DOUBLE Absolute user limit (independent of table calibration)
- -


-

-Speed-related fields

-The table record sets motor speeds immediately before commanding motors -to move, so that all involved motors will start and stop at the same time. -(Immediately after move commands are issued--while motors are still moving--the -motor speeds are returned to their original values. The table record assumes -that motors do not honor speed changes made while motors are moving.) For -small moves, this speed setting has the effect of keeping the "fixed" point -fixed during rotations, but for longer moves, motor speeds would -have to be varied on the fly to really keep the "fixed point" fixed, and -the motor record does not attempt to do this. In addition, motor gearing, -and the limited speed range over which most motors operate reliably, can -prevent those motors from moving at speeds that would keep the "fixed" -point fixed even during small rotations. You should ensure that any motor -controlled by the table record really does move reliably at any speed between -its base speed and nominal (top) speed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Name Access Prompt Data type Comments
V0X speed 0X val DOUBLE Speed to be written to motor (for duration of commanded move)
V0Y speed 0Y val DOUBLE Speed to be written to motor (for duration of commanded move)
V1Y speed 1Y val DOUBLE Speed to be written to motor (for duration of commanded move)
V2X speed 2X val DOUBLE Speed to be written to motor (for duration of commanded move)
V2Y speed 2Y val DOUBLE Speed to be written to motor (for duration of commanded move)
V2Z speed 2Z val DOUBLE Speed to be written to motor (for duration of commanded move)
- -
-

-Table drive fields

-These are the fields by which you drive the table. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Name Access Prompt Data type Comments
AX R/W* x angle DOUBLE x-angle drive field
AY R/W* y angle DOUBLE y-angle drive field
AZ R/W* z angle DOUBLE z-angle drive field
R/W* x translation DOUBLE x translation drive field
R/W* y translation DOUBLE y translation drive field
R/W* z translation DOUBLE z translation drive field
- -
-

-Motor drive fields

-These are the fields by which the table record drives the motors. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Name Access Prompt Data type Comments
M0X motor 0X val DOUBLE Desired motor position
M0Y motor 0Y val DOUBLE Desired motor position
M1Y motor 1Y val DOUBLE Desired motor position
M2X motor 2X val DOUBLE Desired motor position
M2Y motor 2Y val DOUBLE Desired motor position
M2Z motor 2Z val DOUBLE Desired motor position
- -
-

-Readback fields

-There are four varieties of readback fields. -
    -
  1. -Readbacks from the motor-drive fields (e.g., R0X). These are used only -to determine how fast motors must move to keep the "fixed" point fixed -during moves.
  2. - -
  3. -Readbacks from motor-readback fields (e.g., E0X). These are shoved through -a 6x6 matrix to get raw virtual-motor readbacks
  4. - -
  5. -Raw virtual-motor readbacks (e.g., XRB) tell you where the table really -is.
  6. - -
  7. -Adjusted virtual-motor readbacks (e.g., EX) tell you where the table is, -keeping in mind any recalibration you may have done.
  8. -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Name Access Prompt Data type Comments
AXRB x angle readback DOUBLE x angle calc'd from motor drive values
AYRB y angle readback DOUBLE y angle calc'd from motor drive values
AZRB z angle readback DOUBLE z angle calc'd from motor drive values
E0X encoder 0X val DOUBLE Current position of M0X motor
E0Y encoder 0Y val DOUBLE Current position of M0Y motor
E1Y encoder 1Y val DOUBLE Current position of M1Y motor
E2X encoder 2X val DOUBLE Current position of M2X motor
E2Y encoder 2Y val DOUBLE Current position of M2Y motor
E2Z encoder 2Z val DOUBLE Current position of M2Z motor
EAX encoder x angle DOUBLE Current table position (x angle) 
EAY encoder y angle DOUBLE Current table position (y angle)
EAZ encoder z angle DOUBLE Current table position (z angle)
EX encoder x DOUBLE Current table position (x translation)
EY encoder y DOUBLE Current table position (y translation)
EZ encoder z DOUBLE Current table position (z translation)
R0X motor 0X readback DOUBLE Motor's desired value
R0Y motor 0Y readback DOUBLE Motor's desired value
R1Y motor 1Y readback DOUBLE Motor's desired value
R2X motor 2X readback DOUBLE Motor's desired value
R2Y motor 2Y readback DOUBLE Motor's desired value
R2Z motor 2Z readback DOUBLE Motor's desired value
XRB x readback value DOUBLE x translation calc'd from motor drive values
YRB y readback value DOUBLE y translation calc'd from motor drive values
ZRB z readback value DOUBLE z translation calc'd from motor drive values
- -
-

-Miscellaneous fields

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Name Access Prompt Data type Comments
AEGU R/W Angular Units NameSTRING Engineering units for angles (16-chars)
INIT R/W* init table SHORT Command: Abandon calibration and sync drive fields to motor positions
LEGU R/W Linear Units Name STRING Engineering units for translations (16-chars)
PREC R/W Display Precision SHORT Number of digits to right of decimal point
READ R/W* readback motors SHORT Command: Read current motor positions, translate to table positions
SYNC R/W* sync with motors SHORT Command: Read motor positions, reconcile table positions to them
VAL R/W Result DOUBLE Not used
VERS Code Version FLOAT e.g., 5.0
- -
-

-Private fields

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Name Access Prompt Data type Comments
x to m matrix DOUBLE* 3x3 rotation matrix
m to x matrix DOUBLE* 3x3 utility matrix
MMAP Monitor Mask ULONG 
PP0 pivot pt 0 DOUBLE Desired loc of pivot point 0 (3 vector)
PP1 pivot pt 1 DOUBLE Desired loc of pivot point 1 (3 vector)
PP2 pivot pt 2 DOUBLE Desired loc of pivot point 2 (3 vector)
PPO0 pivot pt 0 orig DOUBLE Loc of pivot point 0 when all user coordinates are zero (3 vector)
PPO1 pivot pt 1 orig DOUBLE Loc of pivot point 1 when all user coordinates are zero (3 vector)
PPO2 pivot pt 2 orig DOUBLE Loc of pivot point 2 when all user coordinates are zero (3 vector)
- -
-

-

-Files

-The following table briefly describes the files required to implement and -use the table record. -  -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
SOURCE CODE -
files to be placed in <top>/<app>App/src/
tableRecord.c Record support code
tableRecord.dbd Database definition file
MakefileMake sure the following lines occur in the file: -
-DBDINC += tableRecord
-SRCS += tableRecord.c
-
-
<app>Include.dbdMake sure the following line occurs in the file: -
include "tableRecord.dbd"
-
- -

- - - - - - - - - - - - - - - - - - - - - -
DATABASES -
files to be placed in <top>/<app>App/Db/
table.db Table database
The database file contains one table record linked with -up to six motor records defined in some other database. The motor records -are referred to as $(P)$(M0X), $(P)$(M0Y), $(P)$(M1Y), $(P)$(M2X), $(P)$(M2Y), -and $(P)$(M2Z). -

This database allows you to give names of motors that don't actually -exist, to support tables that have fewer than six motors. This database -works with fewer than six motors only if you have version 3.6 or later -of the transform record. Earlier versions of the transform record refuse -to operate unless all of their non-blank link fields contain valid links. 

table_settings.reqAutosave request file, which names the PV's in table.db that should be preserved -across a reboot of the computer on which this software runs.
- -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
MEDM DISPLAY FILES -
files to be placed in <top>/<app>App/op/adl/
table.adl Small control display
table_setup_SRI.adl Setup display for SRI geometry
table_setup_GEOCARS.adl Setup display for GEOCARS geometry
table_setup_NEWPORT.adl Setup display for NEWPORT geometry
table_setup_PNC.adl Setup display for PNC geometry
table_full.adl Full control display
These files build medm screens to access the table -record. To use one of them from the command line, type, for example -
medm -x -macro "P=xxx:,Q=Table1,T=table1,M0X=m1,M0Y=m2,M1Y=m3,M2X=m4,M2Y=m5,M2Z=m6" table.adl
-where xxx:table1 is the name of the table record, and xxx:Table1: -is the prefix attached to all other records in the table database.
- -

- - - - - - - - - - - - - -
EPICS STARTUP FILES -
files to be placed in <top>/iocBoot/ioc<name>/
st.cmd Startup script
This file is not included in the distribution. The following -line added to st.cmd loads a single table. Note that the NEWPORT geometry -normally does not have a motor associated with M2Z. Indicate this by setting -M2Z to some string (e.g., "junk") that will not resolve to the name of -an existing record.  -
dbLoadRecords("xxxApp/Db/table.db","P=xxx:,Q=Table1,T=table1,M0X=m1,M0Y=m2,M1Y=m3,M2X=m4,M2Y=m5,M2Z=m6,GEOM=SRI")
-
- -

- - - - - - - - - -
BACKUP/RESTORE (BURT) REQUEST FILES -
files to be placed in <top>/<app>App/op/burt/
yyTableSettings.req save settings of a specified table. This file is normally #include'd -(once for each table) by other request files.
- -


-

-Restrictions

- -
-
-Suggestions and comments to:
- -
Tim Mooney : (mooney@aps.anl.gov) -
Last modified: January 15, 2004 - - diff --git a/documentation/table_setup_GEOCARS.adl.gif b/documentation/table_setup_GEOCARS.adl.gif deleted file mode 100644 index 031a469..0000000 Binary files a/documentation/table_setup_GEOCARS.adl.gif and /dev/null differ diff --git a/documentation/table_setup_NEWPORT.adl.gif b/documentation/table_setup_NEWPORT.adl.gif deleted file mode 100644 index e1cf8a0..0000000 Binary files a/documentation/table_setup_NEWPORT.adl.gif and /dev/null differ diff --git a/documentation/table_setup_PNC.adl.gif b/documentation/table_setup_PNC.adl.gif deleted file mode 100644 index afd69ef..0000000 Binary files a/documentation/table_setup_PNC.adl.gif and /dev/null differ diff --git a/documentation/table_setup_SRI.adl.gif b/documentation/table_setup_SRI.adl.gif deleted file mode 100644 index e941e3c..0000000 Binary files a/documentation/table_setup_SRI.adl.gif and /dev/null differ diff --git a/iocBoot/Makefile b/iocBoot/Makefile deleted file mode 100644 index d097ef0..0000000 --- a/iocBoot/Makefile +++ /dev/null @@ -1,6 +0,0 @@ -TOP = .. -include $(TOP)/configure/CONFIG -DIRS += $(wildcard *ioc*) -DIRS += $(wildcard as*) -include $(EPICS_BASE)/configure/RULES_DIRS - diff --git a/iocBoot/iocAny/Makefile b/iocBoot/iocAny/Makefile deleted file mode 100644 index 64d8846..0000000 --- a/iocBoot/iocAny/Makefile +++ /dev/null @@ -1,5 +0,0 @@ -TOP = ../.. -include $(TOP)/configure/CONFIG -ARCH = $(EPICS_HOST_ARCH) -TARGETS = envPaths dllPath.bat cdCommands -include $(TOP)/configure/RULES.ioc diff --git a/iocBoot/iocAny/fb_epid.substitutions b/iocBoot/iocAny/fb_epid.substitutions index 0b6dbe2..3ef3706 100644 --- a/iocBoot/iocAny/fb_epid.substitutions +++ b/iocBoot/iocAny/fb_epid.substitutions @@ -1,4 +1,4 @@ -# $Id: fb_epid.substitutions 14504 2012-02-29 21:11:18Z jemian $ +# $Id$ file "$(OPTICS)/opticsApp/Db/fb_epid.db" { diff --git a/iocBoot/iocAny/isistest.cmd b/iocBoot/iocAny/isistest.cmd deleted file mode 100644 index 4f87bf4..0000000 --- a/iocBoot/iocAny/isistest.cmd +++ /dev/null @@ -1,98 +0,0 @@ -# Linux startup script - -< envPaths - -# save_restore.cmd needs the full path to the startup directory, which -# envPaths currently does not provide -epicsEnvSet(STARTUP,$(TOP)/iocBoot/$(IOC)) - -# Specify largest array CA will transport -# Note for N sscanRecord data points, need (N+1)*8 bytes, else MEDM -# plot doesn't display -epicsEnvSet EPICS_CA_MAX_ARRAY_BYTES 64008 - -################################################################################ -# Tell EPICS all about the record types, device-support modules, drivers, -# etc. in the software we just loaded (xxx.munch) -#dbLoadDatabase("../../dbd/iocxxxLinux.dbd") -#iocxxxLinux_registerRecordDeviceDriver(pdbbase) -dbLoadDatabase "../../dbd/opticsTest.dbd" -opticsTest_registerRecordDeviceDriver pdbbase - - -### Slits -dbLoadRecords("$(OPTICS)/opticsApp/Db/2slit.db","P=$(MYPVPREFIX),SLIT=Slit1V,mXp=m3,mXn=m4") -dbLoadRecords("$(OPTICS)/opticsApp/Db/2slit.db","P=$(MYPVPREFIX),SLIT=Slit1H,mXp=m5,mXn=m6") -#dbLoadRecords("$(OPTICS)/opticsApp/Db/2slit_soft.db","P=$(MYPVPREFIX),SLIT=Slit1V,mXp=m3,mXn=m4") -#dbLoadRecords("$(OPTICS)/opticsApp/Db/2slit_soft.db","P=$(MYPVPREFIX),SLIT=Slit1H,mXp=m5,mXn=m6") - -# X-ray Instrumentation Associates Huber Slit Controller -# supported by a customized version of the SNL program written by Pete Jemian -#dbLoadRecords("$(OPTICS)/opticsApp/Db/xia_slit.db", "P=xxx:, HSC=hsc1:") -#dbLoadRecords("$(OPTICS)/opticsApp/Db/xia_slit.db", "P=xxx:, HSC=hsc2:") -#dbLoadRecords("$(IP)/ipApp/Db/generic_serial.db", "P=xxx:,C=0,SERVER=serial7") - - -### 2-post mirror -#dbLoadRecords("$(OPTICS)/opticsApp/Db/2postMirror.db","P=xxx:,Q=M1,mDn=m1,mUp=m2,LENGTH=0.3") - -### User filters -#dbLoadRecords("$(OPTICS)/opticsApp/Db/filterMotor.db","P=xxx:,Q=fltr1:,MOTOR=m1,LOCK=fltr_1_2:") -#dbLoadRecords("$(OPTICS)/opticsApp/Db/filterMotor.db","P=xxx:,Q=fltr2:,MOTOR=m2,LOCK=fltr_1_2:") -#dbLoadRecords("$(OPTICS)/opticsApp/Db/filterLock.db","P=xxx:,Q=fltr2:,LOCK=fltr_1_2:,LOCK_PV=xxx:DAC1_1.VAL") - -### Optical tables -#tableRecordDebug=1 -#dbLoadRecords("$(OPTICS)/opticsApp/Db/table.db","P=xxx:,Q=Table1,T=table1,M0X=m1,M0Y=m2,M1Y=m3,M2X=m4,M2Y=m5,M2Z=m6,GEOM=SRI") - -### Monochromator support ### -# Kohzu and PSL monochromators: Bragg and theta/Y/Z motors -# standard geometry (geometry 1) -#dbLoadRecords("$(OPTICS)/opticsApp/Db/kohzuSeq.db","P=xxx:,M_THETA=m1,M_Y=m2,M_Z=m3,yOffLo=17.4999,yOffHi=17.5001") -# modified geometry (geometry 2) -#dbLoadRecords("$(OPTICS)/opticsApp/Db/kohzuSeq.db","P=xxx:,M_THETA=m1,M_Y=m2,M_Z=m2,yOffLo=4,yOffHi=36") - -# Spherical grating monochromator -#dbLoadRecords("$(OPTICS)/opticsApp/Db/SGM.db","P=xxx:,N=1,M_x=m7,M_rIn=m6,M_rOut=m8,M_g=m9") - -# 4-bounce high-resolution monochromator -#dbLoadRecords("$(OPTICS)/opticsApp/Db/hrSeq.db","P=xxx:,N=1,M_PHI1=m1,M_PHI2=m2") - -### Orientation matrix, four-circle diffractometer (see seq program 'orient' below) -#dbLoadRecords("$(OPTICS)/opticsApp/Db/orient.db", "P=xxx:,O=1,PREC=4") -#dbLoadTemplate("orient_xtals.substitutions") - -# PID-based feedback -#dbLoadTemplate "fb_epid.substitutions" - -### Load database records for dual PF4 filters -#dbLoadRecords("$(OPTICS)/opticsApp/Db/pf4common.db","P=xxx:,H=pf4:,A=A,B=B") -#dbLoadRecords("$(OPTICS)/opticsApp/Db/pf4bank.db","P=xxx:,H=pf4:,B=A") -#dbLoadRecords("$(OPTICS)/opticsApp/Db/pf4bank.db","P=xxx:,H=pf4:,B=B") - -### Load database records for alternative PF4-filter support -#dbLoadTemplate "filter.substitutions" - -############################################################################### -iocInit - -### startup State Notation Language programs -#seq &kohzuCtl, "P=xxx:, M_THETA=m1, M_Y=m2, M_Z=m3, GEOM=1, logfile=kohzuCtl.log" -#seq &hrCtl, "P=xxx:, N=1, M_PHI1=m1, M_PHI2=m2, logfile=hrCtl1.log" - -# X-ray Instrumentation Associates Huber Slit Controller -# supported by a SNL program written by Pete Jemian and modified (TMM) for use with the -# sscan record -#seq &xia_slit, "name=hsc1, P=xxx:, HSC=hsc1:, S=xxx:seriala[6]" - -# Orientation-matrix -#seq &orient, "P=xxx:orient1:,PM=xxx:,mTTH=m9,mTH=m10,mCHI=m11,mPHI=m12" - -# Start PF4 filter sequence program -#seq pf4,"name=pf1,P=xxx:,H=pf4:,B=A,M=xxx:BraggEAO,B1=xxx:Unidig1Bo3,B2=xxx:Unidig1Bo4,B3=xxx:Unidig1Bo5,B4=xxx:Unidig1Bo6" -#seq pf4,"name=pf2,P=xxx:,H=pf4:,B=B,M=xxx:BraggEAO,B1=xxx:Unidig1Bo7,B2=xxx:Unidig1Bo8,B3=xxx:Unidig1Bo9,B4=xxx:Unidig1Bo10" - -# Alternative pf4 filter seq program -#seq &filterDrive,"NAME=filterDrive,P=xxx:,R=filter:,NUM_FILTERS=16" - -#dbcar(0,1) diff --git a/iocBoot/iocAny/st.cmd b/iocBoot/iocAny/st.cmd index d061140..c1c6d3e 100644 --- a/iocBoot/iocAny/st.cmd +++ b/iocBoot/iocAny/st.cmd @@ -21,6 +21,10 @@ iocxxxLinux_registerRecordDeviceDriver(pdbbase) #dbLoadRecords("$(OPTICS)/opticsApp/Db/2slit.db","P=xxx:,SLIT=Slit1V,mXp=m3,mXn=m4") #dbLoadRecords("$(OPTICS)/opticsApp/Db/2slit.db","P=xxx:,SLIT=Slit1H,mXp=m5,mXn=m6") +### soft motor slits +dbLoadRecords("$(OPTICS)/opticsApp/Db/2slit_soft.vdb","P=xxx:,SLIT=Slit2V,mXp=m3,mXn=m4") +dbLoadRecords("$(OPTICS)/opticsApp/Db/2slit_soft.vdb","P=xxx:,SLIT=Slit2H,mXp=m5,mXn=m6") + # X-ray Instrumentation Associates Huber Slit Controller # supported by a customized version of the SNL program written by Pete Jemian #dbLoadRecords("$(OPTICS)/opticsApp/Db/xia_slit.db", "P=xxx:, HSC=hsc1:") @@ -40,6 +44,12 @@ iocxxxLinux_registerRecordDeviceDriver(pdbbase) #tableRecordDebug=1 #dbLoadRecords("$(OPTICS)/opticsApp/Db/table.db","P=xxx:,Q=Table1,T=table1,M0X=m1,M0Y=m2,M1Y=m3,M2X=m4,M2Y=m5,M2Z=m6,GEOM=SRI") +# table with soft motors in front +epicsEnvSet("DIR", "$(OPTICS)/opticsApp/Db") +configstr = malloc(300) +strcpy configstr, "P=xxx:,Q=Table1s,T=table1s,M0X=m1,M0Y=m2,M1Y=m3,M2X=m4,M2Y=m5,M2Z=m6,GEOM=SRI,PREC=4" +#dbLoadRecords("$(DIR)/table_soft.vdb", configstr) + ### Monochromator support ### # Kohzu and PSL monochromators: Bragg and theta/Y/Z motors # standard geometry (geometry 1) @@ -47,6 +57,10 @@ iocxxxLinux_registerRecordDeviceDriver(pdbbase) # modified geometry (geometry 2) #dbLoadRecords("$(OPTICS)/opticsApp/Db/kohzuSeq.db","P=xxx:,M_THETA=m1,M_Y=m2,M_Z=m2,yOffLo=4,yOffHi=36") +# monochromator support with soft-motor-record front end +#dbLoadRecords("$(OPTICS)/opticsApp/Db/kohzuSeq_soft.db","P=xxx:,MONO=Kohzu1:,M_THETA=m1,M_Y=m2,M_Z=m3,yOffLo=17.4999,yOffHi=17.5001") +#doAfterIocInit("seq &kohzuCtl_soft, 'P=xxx:, MONO=Kohzu1:, M_THETA=m1, M_Y=m2, M_Z=m3, GEOM=1, logfile=kohzuCtl.log'") + # Spherical grating monochromator dbLoadRecords("$(OPTICS)/opticsApp/Db/SGM.db","P=xxx:,N=1,M_x=m7,M_rIn=m6,M_rOut=m8,M_g=m9") diff --git a/opticsApp/Db/2slit_soft b/opticsApp/Db/2slit_soft deleted file mode 100644 index ccd6279..0000000 --- a/opticsApp/Db/2slit_soft +++ /dev/null @@ -1,5729 +0,0 @@ -%I Unidraw 1.2 -%I 2036 1703208 0 127 - -%I 2020 2293816 0 $(P)$(SLIT)vback1 0 -%I 2028 1724728 0 1 -%I 2027 2556736 0 -%I 2028 1724728 0 -%I 4"node"$(P)$(SLIT)vback1 PROC nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)vback1 VAL l 2 nodecomp -%I t 1 0 0 1 1042.5 1517.5 1 1 2 -%I 2028 1725088 0 0 -%I 2027 2557024 0 -%I 2028 1725088 0 -%I 4"node"$(P)$(mXp) VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)vback1 DOL l 2 nodecomp -%I 2028 1727856 0 0 -%I 2027 1725848 0 -%I 2028 1727856 0 -%I 4"node"$(P)$(SLIT)t1 A nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)vback1 OUT r 2 nodecomp -%I 2028 1730112 0 1 -%I 2027 1726040 0 -%I 2028 1730112 0 -%I 4"node"$(P)$(SLIT)vback1 PACT nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)vback1 PACT l 2 nodecomp -%I 2028 1730296 0 1 -%I 2027 1726264 0 -%I 2028 1730296 0 -%I 4"node"$(P)$(SLIT)vback1 PACT nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)vback1 PACT r 2 nodecomp - -%I 2020 1731296 0 $(P)$(SLIT)vback2 0 -%I 2028 1735568 0 1 -%I 2027 1726424 0 -%I 2028 1735568 0 -%I 4"node"$(P)$(SLIT)vback2 PROC nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)vback2 VAL l 2 nodecomp -%I t 1 0 0 1 1040.5 1600.5 1 1 2 -%I 2028 1736832 0 0 -%I 2027 1726840 0 -%I 2028 1736832 0 -%I 4"node"$(P)$(mXn) VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)vback2 DOL l 2 nodecomp -%I 2028 1737640 0 0 -%I 2027 1727032 0 -%I 2028 1737640 0 -%I 4"node"$(P)$(SLIT)t1 B nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)vback2 OUT r 2 nodecomp -%I 2028 1738352 0 1 -%I 2027 1727224 0 -%I 2028 1738352 0 -%I 4"node"$(P)$(SLIT)vback2 PACT nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)vback2 PACT l 2 nodecomp -%I 2028 2562024 0 1 -%I 2027 1727448 0 -%I 2028 2562024 0 -%I 4"node"$(P)$(SLIT)vback2 PACT nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)vback2 PACT r 2 nodecomp - -%I 2020 2566624 0 $(P)$(SLIT)set1 0 -%I 2028 2569352 0 1 -%I 2027 1727768 0 -%I 2028 2569352 0 -%I 4"node"$(P)$(SLIT)set1 PROC nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)set1 VAL l 2 nodecomp -%I t 1 0 0 1 476.5 1370.5 1 1 0 -%I 2028 2571128 0 0 -%I 2027 2564688 0 -%I 2028 2571128 0 -%I 4"node"$(P)$(SLIT)set VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)set1 DOL l 2 nodecomp -%I 2028 2571840 0 0 -%I 2027 2564880 0 -%I 2028 2571840 0 -%I 4"node"$(P)$(mXp) SET nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)set1 OUT r 2 nodecomp - -%I 2020 2572792 0 $(P)$(SLIT)set 0 -%I 2028 2578096 0 1 -%I 2027 2565104 0 -%I 2028 2578096 0 -%I 4"node"$(P)$(SLIT)set PROC nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)set VAL l 2 nodecomp -%I t 1 0 0 1 252.5 1338.5 0 2 2 -%I 2028 2578328 0 0 -%I 2027 2565360 0 -%I 2028 2578328 0 -%I 4"node"$(P)$(mXn) SET nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)set OUT r 2 nodecomp -%I 2028 2580776 0 0 -%I 2027 2565552 0 -%I 2028 2580776 0 -%I 4"node"$(P)$(SLIT)set1 PROC nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)set FLNK r 2 nodecomp -%I 2028 2581440 0 1 -%I 2027 2565744 0 -%I 2028 2581440 0 -%I 4"node"$(P)$(SLIT)set VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)set VAL l 2 nodecomp -%I 2028 2581624 0 1 -%I 2027 2565936 0 -%I 2028 2581624 0 -%I 4"node"$(P)$(SLIT)set VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)set VAL r 2 nodecomp - -%I 2029 2533312 0 2 -%I 421 266 -%I 333 267 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 0.926136 -0 0 -1 115.597 1984.5 -%I 2028 2584352 0 1 -%I 2027 2565136 0 -%I 2028 2584352 0 -%I 4"node"$(P)$(SLIT)set VAL nodevar 421 266 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 84.5 1452.5 0 0 l 0 nodecomp -%I 2028 2584536 0 0 -%I 2027 2566256 0 -%I 2028 2584536 0 -%I 4"node"$(P)$(SLIT)set VAL nodevar 333 267 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 91 1450.5 0 0 r 0 nodecomp -%I 9077 2583488 0 -%I 2027 2566256 0 -%I 2027 2565136 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t 1 0 0 1 -134 -340 -%I 2030 2584824 0 -%I 0 0 0 -%I 6"pvlink"DOL $(P)$(SLIT)set1 NPP NMS NPP/NMS pvlinkvar - -%I 2029 2533352 0 4 -%I 333 250 -%I 353 250 -%I 353 292 -%I 422 292 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 0.921348 0 0 1.05952 117.691 1436.62 -%I 2028 2589512 0 1 -%I 2027 2587488 0 -%I 2028 2589512 0 -%I 4"node"$(P)$(SLIT)set1 PROC nodevar 333 250 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 91.5 1451.5 0 0 r 0 nodecomp -%I 2028 2589696 0 0 -%I 2027 2587680 0 -%I 2028 2589696 0 -%I 4"node"$(P)$(SLIT)set1 PROC nodevar 422 292 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 84.5 1454 0 0 l 0 nodecomp -%I 9077 2585992 0 -%I 2027 2587680 0 -%I 2027 2587488 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t 1 0 0 1 -134 -340 -%I 2030 2589984 0 -%I 0 0 0 -%I 6"pvlink"FLNK $(P)$(SLIT)set PP MS PP/MS pvlinkvar - -%I 2020 2593464 0 $(P)$(SLIT)sync 0 -%I 2028 2596192 0 1 -%I 2027 2588096 0 -%I 2028 2596192 0 -%I 4"node"$(P)$(SLIT)sync PROC nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)sync VAL l 2 nodecomp -%I t 1 0 0 1 764.5 1682.5 0 2 2 -%I 2028 2596424 0 0 -%I 2027 2588352 0 -%I 2028 2596424 0 -%I 4"node"$(P)$(SLIT)vback2 PROC nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)sync LNK2 r 2 nodecomp -%I 2028 2598680 0 0 -%I 2027 2588576 0 -%I 2028 2598680 0 -%I 4"node"$(P)$(SLIT)vback1 PROC nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)sync LNK1 r 2 nodecomp -%I 2028 2599392 0 1 -%I 2027 2588800 0 -%I 2028 2599392 0 -%I 4"node"$(P)$(SLIT)sync PACT nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)sync PACT l 2 nodecomp -%I 2028 2599576 0 1 -%I 2027 2588992 0 -%I 2028 2599576 0 -%I 4"node"$(P)$(SLIT)sync PACT nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)sync PACT r 2 nodecomp - -%I 2021 2602120 0 $(P)$(mXp).SET i -%I 2028 2603456 0 1 -%I 2027 2589280 0 -%I 2028 2603456 0 -%I 4"node"$(P)$(mXp) SET nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 0 0 l 1 nodecomp -%I t 1 0 0 1 -592.172 408.296 - -%I 2021 2603688 0 $(P)$(mXn).SET i -%I 2028 2606568 0 1 -%I 2027 2606760 0 -%I 2028 2606568 0 -%I 4"node"$(P)$(mXn) SET nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 0 0 l 1 nodecomp -%I t 1 0 0 1 -592.172 376.296 - -%I 2029 2533392 0 2 -%I 648 201 -%I 708 202 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1.05 0 0 0.5 963.1 1000 -%I 2028 2610368 0 1 -%I 2027 2607016 0 -%I 2028 2610368 0 -%I 4"node"$(P)$(mXp) SET nodevar 648 201 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 995.5 899.5 0 0 r 0 nodecomp -%I 2028 2610552 0 0 -%I 2027 2607208 0 -%I 2028 2610552 0 -%I 4"node"$(P)$(mXp) SET nodevar 708 202 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 998.5 899 0 0 l 0 nodecomp -%I 9077 2610696 0 -%I 2027 2607208 0 -%I 2027 2607016 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t 1 0 0 1 -1129 278 -%I 2030 2612384 0 -%I 0 0 0 -%I 6"pvlink"OUT $(P)$(SLIT)set1 PP MS PP/MS pvlinkvar - -%I 2029 2533432 0 2 -%I 394 169 -%I 714 170 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 0.896875 0 0 0.5 1066.13 984 -%I 2028 2613472 0 1 -%I 2027 2607592 0 -%I 2028 2613472 0 -%I 4"node"$(P)$(mXn) SET nodevar 394 169 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 1025.5 899.5 0 0 r 0 nodecomp -%I 2028 2613656 0 0 -%I 2027 2607784 0 -%I 2028 2613656 0 -%I 4"node"$(P)$(mXn) SET nodevar 714 170 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 992.5 899 0 0 l 0 nodecomp -%I 9077 2611992 0 -%I 2027 2607784 0 -%I 2027 2607592 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t 1 0 0 1 -1129 278 -%I 2030 2615488 0 -%I 0 0 0 -%I 6"pvlink"OUT $(P)$(SLIT)set PP MS PP/MS pvlinkvar - -%I 2021 2616400 0 $(P)$(mXp).VAL i -%I 2028 2617736 0 1 -%I 2027 2608200 0 -%I 2028 2617736 0 -%I 4"node"$(P)$(mXp) VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 0 0 l 1 nodecomp -%I t 1 0 0 1 290.828 312.296 - -%I 2021 2617968 0 $(P)$(mXn).VAL i -%I 2028 2620848 0 1 -%I 2027 2608488 0 -%I 2028 2620848 0 -%I 4"node"$(P)$(mXn) VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 0 0 l 1 nodecomp -%I t 1 0 0 1 295.828 236.296 - -%I 2021 2622112 0 $(P)$(mXn).VAL o -%I 2028 2623448 0 1 -%I 2027 2623608 0 -%I 2028 2623448 0 -%I 4"node"$(P)$(mXn) VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1311.67 970.704 0 0 l 1 nodecomp -%I t 1 0 0 1 -444.172 638.296 - -%I 2029 2533472 0 2 -%I 659 708 -%I 750 709 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 0.747253 -0 0 -0.5 375.06 1963 -%I 2028 2625920 0 0 -%I 2027 2623864 0 -%I 2028 2625920 0 -%I 4"node"$(P)$(mXn) VAL nodevar 659 708 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 208.5 901 0 0 l 0 nodecomp -%I 2028 2627648 0 1 -%I 2027 2624056 0 -%I 2028 2627648 0 -%I 4"node"$(P)$(mXn) VAL nodevar 750 709 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 185.5 899.5 0 0 l 0 nodecomp -%I 9077 2626592 0 -%I 2027 2623864 0 -%I 2027 2624056 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 2627888 0 -%I 0 0 0 -%I 6"pvlink"DOL $(P)$(SLIT)vback2 CP NMS CP/NMS pvlinkvar - -%I 9090 2627072 0 12 - -%I 125"xp: positive-valued slit edge -xn: negative-valued slit edge -size: distance between slit edges -center: center of slit opening -" -%I 0 -%I c Black 0 0 0 -%I c ~ -%I f fixed /fixed 12 -%I t 1 0 0 1 645 1273 - -%I 9090 2627288 0 12 - -%I 24"(xp,xn) -> (size,center)" -%I 0 -%I c Black 0 0 0 -%I c ~ -%I f fixed /fixed 12 -%I t 1 0 0 1 959 1482 - -%I 9090 2627504 0 12 - -%I 24"(xp,xn) -> (size,center)" -%I 0 -%I c Black 0 0 0 -%I c ~ -%I f fixed /fixed 12 -%I t 1 0 0 1 372 1086 - -%I 2020 2630848 0 $(P)$(SLIT)xpBPut 0 -%I 2028 2633616 0 1 -%I 2027 2624696 0 -%I 2028 2633616 0 -%I 4"node"$(P)$(SLIT)xpBPut PROC nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)xpBPut VAL l 2 nodecomp -%I t 1 0 0 1 1058.5 1172.5 1 1 4 -%I 2028 2633848 0 0 -%I 2027 2624984 0 -%I 2028 2633848 0 -%I 4"node"$(P)$(SLIT)xp VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)xpBPut SDIS l 2 nodecomp -%I 2028 2636104 0 0 -%I 2027 2625176 0 -%I 2028 2636104 0 -%I 4"node"$(P)$(SLIT)xp VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)xpBPut OUT r 2 nodecomp -%I 2028 2636816 0 1 -%I 2027 2625368 0 -%I 2028 2636816 0 -%I 4"node"$(P)$(SLIT)xpBPut VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)xpBPut VAL l 2 nodecomp -%I 2028 2638032 0 1 -%I 2027 2638128 0 -%I 2028 2638032 0 -%I 4"node"$(P)$(SLIT)xpBPut VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)xpBPut VAL r 2 nodecomp -%I 2028 2642360 0 1 -%I 2027 2638352 0 -%I 2028 2642360 0 -%I 4"node"$(P)$(SLIT)xpBPut PACT nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)xpBPut PACT l 2 nodecomp -%I 2028 2642544 0 1 -%I 2027 2638576 0 -%I 2028 2642544 0 -%I 4"node"$(P)$(SLIT)xpBPut PACT nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)xpBPut PACT r 2 nodecomp - -%I 2020 2643592 0 $(P)$(SLIT)xnBPut 0 -%I 2028 2647864 0 1 -%I 2027 2638736 0 -%I 2028 2647864 0 -%I 4"node"$(P)$(SLIT)xnBPut PROC nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)xnBPut VAL l 2 nodecomp -%I t 1 0 0 1 1058.5 1063.5 1 1 4 -%I 2028 2648096 0 0 -%I 2027 2639152 0 -%I 2028 2648096 0 -%I 4"node"$(P)$(SLIT)xn PACT nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)xnBPut SDIS l 2 nodecomp -%I 2028 2648808 0 0 -%I 2027 2639344 0 -%I 2028 2648808 0 -%I 4"node"$(P)$(SLIT)xn VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)xnBPut OUT r 2 nodecomp -%I 2028 2651064 0 1 -%I 2027 2639536 0 -%I 2028 2651064 0 -%I 4"node"$(P)$(SLIT)xnBPut VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)xnBPut VAL l 2 nodecomp -%I 2028 2651248 0 1 -%I 2027 2639760 0 -%I 2028 2651248 0 -%I 4"node"$(P)$(SLIT)xnBPut VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)xnBPut VAL r 2 nodecomp -%I 2028 2651960 0 1 -%I 2027 2639984 0 -%I 2028 2651960 0 -%I 4"node"$(P)$(SLIT)xnBPut PACT nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)xnBPut PACT l 2 nodecomp -%I 2028 2653176 0 1 -%I 2027 2654848 0 -%I 2028 2653176 0 -%I 4"node"$(P)$(SLIT)xnBPut PACT nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)xnBPut PACT r 2 nodecomp - -%I 2020 2657824 0 $(P)$(SLIT)sizeBPut 0 -%I 2028 2662096 0 1 -%I 2027 2655008 0 -%I 2028 2662096 0 -%I 4"node"$(P)$(SLIT)sizeBPut PROC nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)sizeBPut VAL l 2 nodecomp -%I t 1 0 0 1 1062.5 955.5 1 1 4 -%I 2028 2662328 0 0 -%I 2027 2655424 0 -%I 2028 2662328 0 -%I 4"node"$(P)$(SLIT)size VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)sizeBPut SDIS l 2 nodecomp -%I 2028 2663040 0 0 -%I 2027 2655616 0 -%I 2028 2663040 0 -%I 4"node"$(P)$(SLIT)size VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)sizeBPut OUT r 2 nodecomp -%I 2028 2663752 0 1 -%I 2027 2655808 0 -%I 2028 2663752 0 -%I 4"node"$(P)$(SLIT)sizeBPut VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)sizeBPut VAL l 2 nodecomp -%I 2028 2608808 0 1 -%I 2027 2656032 0 -%I 2028 2608808 0 -%I 4"node"$(P)$(SLIT)sizeBPut VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)sizeBPut VAL r 2 nodecomp -%I 2028 2666784 0 1 -%I 2027 2656256 0 -%I 2028 2666784 0 -%I 4"node"$(P)$(SLIT)sizeBPut PACT nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)sizeBPut PACT l 2 nodecomp -%I 2028 2666968 0 1 -%I 2027 2656480 0 -%I 2028 2666968 0 -%I 4"node"$(P)$(SLIT)sizeBPut PACT nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)sizeBPut PACT r 2 nodecomp - -%I 2020 2671616 0 $(P)$(SLIT)centerBPut 0 -%I 2028 2675376 0 1 -%I 2027 2656640 0 -%I 2028 2675376 0 -%I 4"node"$(P)$(SLIT)centerBPut PROC nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)centerBPut VAL l 2 nodecomp -%I t 1 0 0 1 1060.5 840.5 1 1 4 -%I 2028 2675608 0 0 -%I 2027 2668120 0 -%I 2028 2675608 0 -%I 4"node"$(P)$(SLIT)center VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)centerBPut SDIS l 2 nodecomp -%I 2028 2677864 0 0 -%I 2027 2668344 0 -%I 2028 2677864 0 -%I 4"node"$(P)$(SLIT)center VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)centerBPut OUT r 2 nodecomp -%I 2028 2678576 0 1 -%I 2027 2668568 0 -%I 2028 2678576 0 -%I 4"node"$(P)$(SLIT)centerBPut VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)centerBPut VAL l 2 nodecomp -%I 2028 2678760 0 1 -%I 2027 2668792 0 -%I 2028 2678760 0 -%I 4"node"$(P)$(SLIT)centerBPut VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)centerBPut VAL r 2 nodecomp -%I 2028 2679472 0 1 -%I 2027 2669016 0 -%I 2028 2679472 0 -%I 4"node"$(P)$(SLIT)centerBPut PACT nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)centerBPut PACT l 2 nodecomp -%I 2028 2681200 0 1 -%I 2027 2669240 0 -%I 2028 2681200 0 -%I 4"node"$(P)$(SLIT)centerBPut PACT nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)centerBPut PACT r 2 nodecomp - -%I 2021 2682248 0 $(P)$(mXp).VAL o -%I 2028 2683584 0 1 -%I 2027 2669624 0 -%I 2028 2683584 0 -%I 4"node"$(P)$(mXp) VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1311.67 970.704 0 0 l 1 nodecomp -%I t 1 0 0 1 -442.172 556.296 - -%I 2029 2533552 0 2 -%I 396 552 -%I 302 553 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 0.723404 0 0 1.5 651.032 697.5 -%I 2028 2685544 0 1 -%I 2027 2669752 0 -%I 2028 2685544 0 -%I 4"node"$(P)$(mXp) VAL nodevar 396 552 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 541.5 973.5 0 0 l 0 nodecomp -%I 2028 2685728 0 0 -%I 2027 2669944 0 -%I 2028 2685728 0 -%I 4"node"$(P)$(mXp) VAL nodevar 302 553 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 567.5 974 0 0 l 0 nodecomp -%I 9077 2684712 0 -%I 2027 2669944 0 -%I 2027 2669752 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 2689056 0 -%I 0 0 0 -%I 6"pvlink"DOL $(P)$(SLIT)vback1 CP NMS CP/NMS pvlinkvar - -%I 2020 2689960 0 $(P)$(SLIT)t3 0 -%I 2028 2694232 0 1 -%I 2027 2686208 0 -%I 2028 2694232 0 -%I 4"node"$(P)$(SLIT)t3 PROC nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)t3 VAL l 2 nodecomp -%I t 1 0 0 1 442.5 1494.5 4 9 16 -%I 2028 2694464 0 0 -%I 2027 2686464 0 -%I 2028 2694464 0 -%I 4"node"$(P)$(mXn) HLM nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)t3 INPD l 2 nodecomp -%I 2028 2696720 0 0 -%I 2027 2686656 0 -%I 2028 2696720 0 -%I 4"node"$(P)$(mXn) LLM nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)t3 INPC l 2 nodecomp -%I 2028 2697432 0 0 -%I 2027 2686848 0 -%I 2028 2697432 0 -%I 4"node"$(P)$(mXp) HLM nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)t3 INPB l 2 nodecomp -%I 2028 2698176 0 0 -%I 2027 2687040 0 -%I 2028 2698176 0 -%I 4"node"$(P)$(mXp) LLM nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)t3 INPA l 2 nodecomp -%I 2028 2700432 0 0 -%I 2027 2687232 0 -%I 2028 2700432 0 -%I 4"node"$(P)$(SLIT)center HLM nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)t3 OUTH r 2 nodecomp -%I 2028 2701144 0 0 -%I 2027 2687456 0 -%I 2028 2701144 0 -%I 4"node"$(P)$(SLIT)center LLM nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)t3 OUTG r 2 nodecomp -%I 2028 2702888 0 0 -%I 2027 2687680 0 -%I 2028 2702888 0 -%I 4"node"$(P)$(SLIT)size HLM nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)t3 OUTF r 2 nodecomp -%I 2028 2703600 0 0 -%I 2027 2705240 0 -%I 2028 2703600 0 -%I 4"node"$(P)$(SLIT)size LLM nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)t3 OUTE r 2 nodecomp -%I 2028 2707912 0 0 -%I 2027 2705432 0 -%I 2028 2707912 0 -%I 4"node"$(P)$(SLIT)xn HLM nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)t3 OUTD r 2 nodecomp -%I 2028 2708624 0 0 -%I 2027 2705624 0 -%I 2028 2708624 0 -%I 4"node"$(P)$(SLIT)xn LLM nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)t3 OUTC r 2 nodecomp -%I 2028 2709336 0 0 -%I 2027 2705816 0 -%I 2028 2709336 0 -%I 4"node"$(P)$(SLIT)xp HLM nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)t3 OUTB r 2 nodecomp -%I 2028 2711592 0 0 -%I 2027 2706008 0 -%I 2028 2711592 0 -%I 4"node"$(P)$(SLIT)xp LLM nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)t3 OUTA r 2 nodecomp -%I 2028 2712304 0 0 -%I 2027 2706200 0 -%I 2028 2712304 0 -%I 4"node"0 0 nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)t3 FLNK r 2 nodecomp -%I 2028 2713016 0 1 -%I 2027 2706392 0 -%I 2028 2713016 0 -%I 4"node"$(P)$(SLIT)t3 H nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)t3 H l 2 nodecomp -%I 2028 2714744 0 1 -%I 2027 2706584 0 -%I 2028 2714744 0 -%I 4"node"$(P)$(SLIT)t3 H nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)t3 H r 2 nodecomp -%I 2028 2715456 0 1 -%I 2027 2706776 0 -%I 2028 2715456 0 -%I 4"node"$(P)$(SLIT)t3 G nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)t3 G l 2 nodecomp -%I 2028 2716672 0 1 -%I 2027 2706968 0 -%I 2028 2716672 0 -%I 4"node"$(P)$(SLIT)t3 G nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)t3 G r 2 nodecomp -%I 2028 2717384 0 1 -%I 2027 2707160 0 -%I 2028 2717384 0 -%I 4"node"$(P)$(SLIT)t3 F nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)t3 F l 2 nodecomp -%I 2028 2719112 0 1 -%I 2027 2719272 0 -%I 2028 2719112 0 -%I 4"node"$(P)$(SLIT)t3 F nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)t3 F r 2 nodecomp -%I 2028 2721880 0 1 -%I 2027 2719464 0 -%I 2028 2721880 0 -%I 4"node"$(P)$(SLIT)t3 E nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)t3 E l 2 nodecomp -%I 2028 2722064 0 1 -%I 2027 2719656 0 -%I 2028 2722064 0 -%I 4"node"$(P)$(SLIT)t3 E nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)t3 E r 2 nodecomp -%I 2028 2722800 0 1 -%I 2027 2719848 0 -%I 2028 2722800 0 -%I 4"node"$(P)$(SLIT)t3 D nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)t3 D l 2 nodecomp -%I 2028 2724528 0 1 -%I 2027 2720040 0 -%I 2028 2724528 0 -%I 4"node"$(P)$(SLIT)t3 D nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)t3 D r 2 nodecomp -%I 2028 2725240 0 1 -%I 2027 2720232 0 -%I 2028 2725240 0 -%I 4"node"$(P)$(SLIT)t3 C nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)t3 C l 2 nodecomp -%I 2028 2725424 0 1 -%I 2027 2720424 0 -%I 2028 2725424 0 -%I 4"node"$(P)$(SLIT)t3 C nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)t3 C r 2 nodecomp -%I 2028 2726136 0 1 -%I 2027 2720616 0 -%I 2028 2726136 0 -%I 4"node"$(P)$(SLIT)t3 B nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)t3 B l 2 nodecomp -%I 2028 2727864 0 1 -%I 2027 2720808 0 -%I 2028 2727864 0 -%I 4"node"$(P)$(SLIT)t3 B nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)t3 B r 2 nodecomp -%I 2028 2729608 0 1 -%I 2027 2721000 0 -%I 2028 2729608 0 -%I 4"node"$(P)$(SLIT)t3 A nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)t3 A l 2 nodecomp -%I 2028 2729792 0 1 -%I 2027 2721192 0 -%I 2028 2729792 0 -%I 4"node"$(P)$(SLIT)t3 A nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)t3 A r 2 nodecomp - -%I 2021 2735256 0 $(P)$(mXp).LLM o -%I 2028 2736592 0 1 -%I 2027 2730560 0 -%I 2028 2736592 0 -%I 4"node"$(P)$(mXp) LLM nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1311.67 970.704 0 0 l 1 nodecomp -%I t 1 0 0 1 -1036.17 652.296 - -%I 2021 2736824 0 $(P)$(mXp).HLM o -%I 2028 2738160 0 1 -%I 2027 2730912 0 -%I 2028 2738160 0 -%I 4"node"$(P)$(mXp) HLM nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1311.67 970.704 0 0 l 1 nodecomp -%I t 1 0 0 1 -1035.17 637.296 - -%I 2021 2739936 0 $(P)$(mXn).LLM o -%I 2028 2741272 0 1 -%I 2027 2731168 0 -%I 2028 2741272 0 -%I 4"node"$(P)$(mXn) LLM nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1311.67 970.704 0 0 l 1 nodecomp -%I t 1 0 0 1 -1035.17 622.296 - -%I 2021 2741504 0 $(P)$(mXn).HLM o -%I 2028 2744384 0 1 -%I 2027 2730080 0 -%I 2028 2744384 0 -%I 4"node"$(P)$(mXn) HLM nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1311.67 970.704 0 0 l 1 nodecomp -%I t 1 0 0 1 -1036.17 607.296 - -%I 2029 2533672 0 2 -%I 513 426 -%I 447 427 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 0.939364 0 0 0.5 1046.61 1421.5 -%I 2028 2744800 0 1 -%I 2027 2730336 0 -%I 2028 2744800 0 -%I 4"node"$(P)$(mXp) LLM nodevar 513 426 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 1015.5 1208.5 0 0 l 0 nodecomp -%I 2028 2744984 0 0 -%I 2027 2731296 0 -%I 2028 2744984 0 -%I 4"node"$(P)$(mXp) LLM nodevar 447 427 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 1019.5 1208 0 0 l 0 nodecomp -%I 9077 2743624 0 -%I 2027 2731296 0 -%I 2027 2730336 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t 1 0 0 1 -1191 -12 -%I 2030 2745272 0 -%I 0 0 0 -%I 6"pvlink"INPA $(P)$(SLIT)t3 CP NMS CP/NMS pvlinkvar - -%I 2029 2533712 0 2 -%I 513 411 -%I 449 412 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 0.953125 0 0 0.5 1039.55 1414 -%I 2028 2748936 0 1 -%I 2027 2731744 0 -%I 2028 2748936 0 -%I 4"node"$(P)$(mXp) HLM nodevar 513 411 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 1015.5 1208.5 0 0 l 0 nodecomp -%I 2028 2749120 0 0 -%I 2027 2749216 0 -%I 2028 2749120 0 -%I 4"node"$(P)$(mXp) HLM nodevar 449 412 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 1018.5 1208 0 0 l 0 nodecomp -%I 9077 2747984 0 -%I 2027 2749216 0 -%I 2027 2731744 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t 1 0 0 1 -1191 -12 -%I 2030 2751464 0 -%I 0 0 0 -%I 6"pvlink"INPB $(P)$(SLIT)t3 CP NMS CP/NMS pvlinkvar - -%I 2029 2533752 0 2 -%I 513 396 -%I 440 397 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 0.835616 0 0 0.5 1186.83 1286.5 -%I 2028 2752552 0 1 -%I 2027 2749600 0 -%I 2028 2752552 0 -%I 4"node"$(P)$(mXn) LLM nodevar 513 396 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 1102.5 1088.5 0 0 l 0 nodecomp -%I 2028 2754280 0 0 -%I 2027 2749792 0 -%I 2028 2754280 0 -%I 4"node"$(P)$(mXn) LLM nodevar 440 397 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 1114.5 1088 0 0 l 0 nodecomp -%I 9077 2752984 0 -%I 2027 2749792 0 -%I 2027 2749600 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t 1 0 0 1 -1278 108 -%I 2030 2754568 0 -%I 0 0 0 -%I 6"pvlink"INPC $(P)$(SLIT)t3 CP NMS CP/NMS pvlinkvar - -%I 2029 2533792 0 2 -%I 513 381 -%I 448 382 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 0.953846 0 0 0.5 1126.18 1279 -%I 2028 2755672 0 1 -%I 2027 2750176 0 -%I 2028 2755672 0 -%I 4"node"$(P)$(mXn) HLM nodevar 513 381 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 1102.5 1088.5 0 0 l 0 nodecomp -%I 2028 2755856 0 0 -%I 2027 2750368 0 -%I 2028 2755856 0 -%I 4"node"$(P)$(mXn) HLM nodevar 448 382 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 1105.5 1088 0 0 l 0 nodecomp -%I 9077 2754064 0 -%I 2027 2750368 0 -%I 2027 2750176 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t 1 0 0 1 -1278 108 -%I 2030 2758720 0 -%I 0 0 0 -%I 6"pvlink"INPD $(P)$(SLIT)t3 CP NMS CP/NMS pvlinkvar - -%I 2020 2759624 0 $(P)$(SLIT)t1 0 -%I 2028 2762352 0 1 -%I 2027 2750784 0 -%I 2028 2762352 0 -%I 4"node"$(P)$(SLIT)t1 PROC nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)t1 VAL l 2 nodecomp -%I t 1 0 0 1 1056.5 1260.5 1 8 8 -%I 2028 2764128 0 0 -%I 2027 2751040 0 -%I 2028 2764128 0 -%I 4"node"0 0 nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)t1 SDIS l 2 nodecomp -%I 2028 2764840 0 0 -%I 2027 2751232 0 -%I 2028 2764840 0 -%I 4"node"0 0 nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)t1 OUTH r 2 nodecomp -%I 2028 2767608 0 0 -%I 2027 2765096 0 -%I 2028 2767608 0 -%I 4"node"$(P)$(SLIT)mXnPut VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)t1 OUTG r 2 nodecomp -%I 2028 2768320 0 0 -%I 2027 2765320 0 -%I 2028 2768320 0 -%I 4"node"$(P)$(SLIT)mXpPut VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)t1 OUTF r 2 nodecomp -%I 2028 2664464 0 0 -%I 2027 2765544 0 -%I 2028 2664464 0 -%I 4"node"$(P)$(SLIT)gatePut VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)t1 OUTE r 2 nodecomp -%I 2028 2772456 0 0 -%I 2027 2765768 0 -%I 2028 2772456 0 -%I 4"node"$(P)$(SLIT)centerBPut VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)t1 OUTD r 2 nodecomp -%I 2028 2774200 0 0 -%I 2027 2765992 0 -%I 2028 2774200 0 -%I 4"node"$(P)$(SLIT)sizeBPut VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)t1 OUTC r 2 nodecomp -%I 2028 2776456 0 0 -%I 2027 2766216 0 -%I 2028 2776456 0 -%I 4"node"$(P)$(SLIT)xnBPut VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)t1 OUTB r 2 nodecomp -%I 2028 2777168 0 0 -%I 2027 2766440 0 -%I 2028 2777168 0 -%I 4"node"$(P)$(SLIT)xpBPut VAL nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)t1 OUTA r 2 nodecomp -%I 2028 2777880 0 1 -%I 2027 2766664 0 -%I 2028 2777880 0 -%I 4"node"$(P)$(SLIT)t1 D nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)t1 D l 2 nodecomp -%I 2028 2778064 0 1 -%I 2027 2766856 0 -%I 2028 2778064 0 -%I 4"node"$(P)$(SLIT)t1 D nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)t1 D r 2 nodecomp -%I 2028 2780320 0 1 -%I 2027 2780480 0 -%I 2028 2780320 0 -%I 4"node"$(P)$(SLIT)t1 C nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)t1 C l 2 nodecomp -%I 2028 2782560 0 1 -%I 2027 2780672 0 -%I 2028 2782560 0 -%I 4"node"$(P)$(SLIT)t1 C nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)t1 C r 2 nodecomp -%I 2028 2783272 0 1 -%I 2027 2780864 0 -%I 2028 2783272 0 -%I 4"node"$(P)$(SLIT)t1 B nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)t1 B l 2 nodecomp -%I 2028 2783456 0 1 -%I 2027 2781056 0 -%I 2028 2783456 0 -%I 4"node"$(P)$(SLIT)t1 B nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)t1 B r 2 nodecomp -%I 2028 2785712 0 1 -%I 2027 2781248 0 -%I 2028 2785712 0 -%I 4"node"$(P)$(SLIT)t1 A nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)t1 A l 2 nodecomp -%I 2028 2785896 0 1 -%I 2027 2781440 0 -%I 2028 2785896 0 -%I 4"node"$(P)$(SLIT)t1 A nodevar 0 0 0 -%I 1 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t ~ $(P)$(SLIT)t1 A r 2 nodecomp - -%I 2029 2533832 0 4 -%I 587 577 -%I 639 577 -%I 639 468 -%I 600 468 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1.03846 0 0 0.834862 470.923 1043.78 -%I 2028 2790672 0 1 -%I 2027 2781952 0 -%I 2028 2790672 0 -%I 4"node"$(P)$(SLIT)t1 A nodevar 587 577 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 493.5 948.5 0 0 r 0 nodecomp -%I 2028 2792400 0 0 -%I 2027 2782144 0 -%I 2028 2792400 0 -%I 4"node"$(P)$(SLIT)t1 A nodevar 600 468 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 494 966.5 0 0 r 0 nodecomp -%I 9077 2791296 0 -%I 2027 2782144 0 -%I 2027 2781952 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 2792640 0 -%I 0 0 0 -%I 6"pvlink"OUT $(P)$(SLIT)vback1 PP MS PP/MS pvlinkvar - -%I 2029 2533872 0 4 -%I 586 642 -%I 656 642 -%I 656 453 -%I 600 453 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1.10714 0 0 1 429.714 966.5 -%I 2028 2793728 0 1 -%I 2027 2781632 0 -%I 2028 2793728 0 -%I 4"node"$(P)$(SLIT)t1 B nodevar 586 642 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 492.5 966.5 0 0 r 0 nodecomp -%I 2028 2793912 0 0 -%I 2027 2788392 0 -%I 2028 2793912 0 -%I 4"node"$(P)$(SLIT)t1 B nodevar 600 453 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 494 966.5 0 0 r 0 nodecomp -%I 9077 2794176 0 -%I 2027 2788392 0 -%I 2027 2781632 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 2795696 0 -%I 0 0 0 -%I 6"pvlink"OUT $(P)$(SLIT)vback2 PP MS PP/MS pvlinkvar - -%I 2029 2533912 0 4 -%I 435 530 -%I 486 530 -%I 486 115 -%I 438 115 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 1.16667 0 0 1.11807 587 735.922 -%I 2028 2796784 0 1 -%I 2027 2788712 0 -%I 2028 2796784 0 -%I 4"node"$(P)$(SLIT)centerBPut VAL nodevar 435 530 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 659.5 798.5 0 0 r 0 nodecomp -%I 2028 2796968 0 0 -%I 2027 2788936 0 -%I 2028 2796968 0 -%I 4"node"$(P)$(SLIT)centerBPut VAL nodevar 438 115 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 660 749.5 0 0 r 0 nodecomp -%I 9077 2795280 0 -%I 2027 2788936 0 -%I 2027 2788712 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 2797208 0 -%I 0 0 0 -%I 6"pvlink"OUTD $(P)$(SLIT)t1 PP MS PP/MS pvlinkvar - -%I 2029 2533952 0 4 -%I 435 545 -%I 502 545 -%I 502 213 -%I 441 213 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 0.916667 0 0 1.09639 695.75 745.97 -%I 2028 2800872 0 1 -%I 2027 2789352 0 -%I 2028 2800872 0 -%I 4"node"$(P)$(SLIT)sizeBPut VAL nodevar 435 545 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 659.5 798.5 0 0 r 0 nodecomp -%I 2028 2801056 0 0 -%I 2027 2789576 0 -%I 2028 2801056 0 -%I 4"node"$(P)$(SLIT)sizeBPut VAL nodevar 441 213 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 659 766.5 0 0 r 0 nodecomp -%I 9077 2798112 0 -%I 2027 2789576 0 -%I 2027 2789352 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 2801296 0 -%I 0 0 0 -%I 6"pvlink"OUTC $(P)$(SLIT)t1 PP MS PP/MS pvlinkvar - -%I 2029 2533992 0 4 -%I 435 560 -%I 517 560 -%I 517 309 -%I 438 309 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 0.5 0 0 1.07968 877 753.878 -%I 2028 2802384 0 1 -%I 2027 2789992 0 -%I 2028 2802384 0 -%I 4"node"$(P)$(SLIT)xnBPut VAL nodevar 435 560 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 659.5 798.5 0 0 r 0 nodecomp -%I 2028 2804144 0 0 -%I 2027 2790216 0 -%I 2028 2804144 0 -%I 4"node"$(P)$(SLIT)xnBPut VAL nodevar 438 309 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 658 778.5 0 0 r 0 nodecomp -%I 9077 2802888 0 -%I 2027 2790216 0 -%I 2027 2789992 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 2804384 0 -%I 0 0 0 -%I 6"pvlink"OUTB $(P)$(SLIT)t1 PP MS PP/MS pvlinkvar - -%I 2029 2534032 0 4 -%I 435 575 -%I 547 575 -%I 547 399 -%I 437 399 -%I c #000000 0 0 0 -%I c #6495ed 0.390631 0.58204 0.925795 -%I b 65535 0 -%I t 0.75 0 0 1.00568 768.25 795.233 -%I 2028 2807528 0 1 -%I 2027 2804664 0 -%I 2028 2807528 0 -%I 4"node"$(P)$(SLIT)xpBPut VAL nodevar 435 575 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 659.5 798.5 0 0 r 0 nodecomp -%I 2028 2807712 0 0 -%I 2027 2804888 0 -%I 2028 2807712 0 -%I 4"node"$(P)$(SLIT)xpBPut VAL nodevar 437 399 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 659 797.5 0 0 r 0 nodecomp -%I 9077 2803968 0 -%I 2027 2804888 0 -%I 2027 2804664 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 2809496 0 -%I 0 0 0 -%I 6"pvlink"OUTA $(P)$(SLIT)t1 PP MS PP/MS pvlinkvar - -%I 2020 2811432 0 $(P)$(SLIT)xp 0 -%I 2028 2814160 0 1 -%I 2027 2805336 0 -%I 2028 2814160 0 -%I 4"node"$(P)$(SLIT)xp VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)xp VAL l 2 nodecomp -%I t 1 0 0 1 780.5 1124.5 2 2 4 -%I 2028 2815936 0 0 -%I 2027 2805592 0 -%I 2028 2815936 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)xp DINP l 2 nodecomp -%I 2028 2816648 0 0 -%I 2027 2805784 0 -%I 2028 2816648 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)xp RDBL l 2 nodecomp -%I 2028 2817360 0 0 -%I 2027 2805976 0 -%I 2028 2817360 0 -%I 4"node"$(P)$(SLIT)t1 A nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)xp OUT r 2 nodecomp -%I 2028 2819616 0 0 -%I 2027 2806168 0 -%I 2028 2819616 0 -%I 4"node"0 0 nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)xp STOO r 2 nodecomp -%I 2028 2820328 0 1 -%I 2027 2806360 0 -%I 2028 2820328 0 -%I 4"node"$(P)$(SLIT)xp VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)xp VAL l 2 nodecomp -%I 2028 2820528 0 1 -%I 2027 2820656 0 -%I 2028 2820528 0 -%I 4"node"$(P)$(SLIT)xp VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)xp VAL r 2 nodecomp -%I 2028 2823296 0 1 -%I 2027 2820848 0 -%I 2028 2823296 0 -%I 4"node"$(P)$(SLIT)xp VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)xp PACT l 2 nodecomp -%I 2028 2825024 0 1 -%I 2027 2821040 0 -%I 2028 2825024 0 -%I 4"node"$(P)$(SLIT)xp VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)xp PACT r 2 nodecomp - -%I 2020 2827200 0 $(P)$(SLIT)xn 0 -%I 2028 2831488 0 1 -%I 2027 2821424 0 -%I 2028 2831488 0 -%I 4"node"$(P)$(SLIT)xn VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)xn VAL l 2 nodecomp -%I t 1 0 0 1 778.5 1017.5 2 2 4 -%I 2028 2831720 0 0 -%I 2027 2821200 0 -%I 2028 2831720 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)xn DINP l 2 nodecomp -%I 2028 2832432 0 0 -%I 2027 2821712 0 -%I 2028 2832432 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)xn RDBL l 2 nodecomp -%I 2028 2833144 0 0 -%I 2027 2821904 0 -%I 2028 2833144 0 -%I 4"node"$(P)$(SLIT)t1 B nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)xn OUT r 2 nodecomp -%I 2028 2835400 0 0 -%I 2027 2822096 0 -%I 2028 2835400 0 -%I 4"node"0 0 nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)xn STOO r 2 nodecomp -%I 2028 2836112 0 1 -%I 2027 2822288 0 -%I 2028 2836112 0 -%I 4"node"$(P)$(SLIT)xn VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)xn VAL l 2 nodecomp -%I 2028 2836296 0 1 -%I 2027 2822480 0 -%I 2028 2836296 0 -%I 4"node"$(P)$(SLIT)xn VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)xn VAL r 2 nodecomp -%I 2028 2838552 0 1 -%I 2027 2838648 0 -%I 2028 2838552 0 -%I 4"node"$(P)$(SLIT)xn PACT nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)xn PACT l 2 nodecomp -%I 2028 2840792 0 1 -%I 2027 2838840 0 -%I 2028 2840792 0 -%I 4"node"$(P)$(SLIT)xn PACT nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)xn PACT r 2 nodecomp - -%I 2020 2842968 0 $(P)$(SLIT)center 0 -%I 2028 2847240 0 1 -%I 2027 2839192 0 -%I 2028 2847240 0 -%I 4"node"$(P)$(SLIT)center VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)center VAL l 2 nodecomp -%I t 1 0 0 1 772.5 794.5 2 2 4 -%I 2028 2847472 0 0 -%I 2027 2839384 0 -%I 2028 2847472 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)center DINP l 2 nodecomp -%I 2028 2848184 0 0 -%I 2027 2839576 0 -%I 2028 2848184 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)center RDBL l 2 nodecomp -%I 2028 2850440 0 0 -%I 2027 2839768 0 -%I 2028 2850440 0 -%I 4"node"$(P)$(SLIT)t1 D nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)center OUT r 2 nodecomp -%I 2028 2851152 0 0 -%I 2027 2839960 0 -%I 2028 2851152 0 -%I 4"node"0 0 nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)center STOO r 2 nodecomp -%I 2028 2851864 0 1 -%I 2027 2840152 0 -%I 2028 2851864 0 -%I 4"node"$(P)$(SLIT)center VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)center VAL l 2 nodecomp -%I 2028 2852048 0 1 -%I 2027 2840376 0 -%I 2028 2852048 0 -%I 4"node"$(P)$(SLIT)center VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)center VAL r 2 nodecomp -%I 2028 2854304 0 1 -%I 2027 2840600 0 -%I 2028 2854304 0 -%I 4"node"$(P)$(SLIT)center VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)center PACT l 2 nodecomp -%I 2028 2857576 0 1 -%I 2027 2855560 0 -%I 2028 2857576 0 -%I 4"node"$(P)$(SLIT)center VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)center PACT r 2 nodecomp - -%I 2020 2858720 0 $(P)$(SLIT)size 0 -%I 2028 2862992 0 1 -%I 2027 2855976 0 -%I 2028 2862992 0 -%I 4"node"$(P)$(SLIT)size VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)size VAL l 2 nodecomp -%I t 1 0 0 1 773.5 909.5 2 2 4 -%I 2028 2863224 0 0 -%I 2027 2855752 0 -%I 2028 2863224 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)size DINP l 2 nodecomp -%I 2028 2863936 0 0 -%I 2027 2856264 0 -%I 2028 2863936 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)size RDBL l 2 nodecomp -%I 2028 2866192 0 0 -%I 2027 2856456 0 -%I 2028 2866192 0 -%I 4"node"$(P)$(SLIT)t1 C nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)size OUT r 2 nodecomp -%I 2028 2866904 0 0 -%I 2027 2856648 0 -%I 2028 2866904 0 -%I 4"node"0 0 nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)size STOO r 2 nodecomp -%I 2028 2867616 0 1 -%I 2027 2856840 0 -%I 2028 2867616 0 -%I 4"node"$(P)$(SLIT)size VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)size VAL l 2 nodecomp -%I 2028 2867800 0 1 -%I 2027 2857032 0 -%I 2028 2867800 0 -%I 4"node"$(P)$(SLIT)size VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)size VAL r 2 nodecomp -%I 2028 2870056 0 1 -%I 2027 2857224 0 -%I 2028 2870056 0 -%I 4"node"$(P)$(SLIT)size VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)size PACT l 2 nodecomp -%I 2028 2871272 0 1 -%I 2027 2857416 0 -%I 2028 2871272 0 -%I 4"node"$(P)$(SLIT)size VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)size PACT r 2 nodecomp - -%I 2029 2534072 0 2 -%I 476 68 -%I 317 69 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.915094 0 0 0 519.915 848.5 -%I 2028 2876200 0 1 -%I 2027 2856008 0 -%I 2028 2876200 0 -%I 4"node"$(P)$(SLIT)center VAL nodevar 476 68 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 479.5 780.5 0 0 l 0 nodecomp -%I 2028 2876384 0 0 -%I 2027 2871400 0 -%I 2028 2876384 0 -%I 4"node"$(P)$(SLIT)center VAL nodevar 317 69 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 493 779.5 0 0 r 0 nodecomp -%I 9077 2875088 0 -%I 2027 2871400 0 -%I 2027 2856008 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 2876624 0 -%I 0 0 0 -%I 6"pvlink"SDIS $(P)$(SLIT)centerBPut NPP MS NPP/MS pvlinkvar - -%I 2029 2534112 0 3 -%I 619 68 -%I 619 53 -%I 315 53 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.949013 0 0 1 511.061 780.5 -%I 2028 2877712 0 1 -%I 2027 2872136 0 -%I 2028 2877712 0 -%I 4"node"$(P)$(SLIT)center VAL nodevar 619 68 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 479.5 780.5 0 0 r 0 nodecomp -%I 2028 2877920 0 0 -%I 2027 2872360 0 -%I 2028 2877920 0 -%I 4"node"$(P)$(SLIT)center VAL nodevar 315 53 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 495 780.5 0 0 r 0 nodecomp -%I 9077 2878088 0 -%I 2027 2872360 0 -%I 2027 2872136 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 2879704 0 -%I 0 0 0 -%I 6"pvlink"OUT $(P)$(SLIT)centerBPut PP MS PP/MS pvlinkvar - -%I 2029 2880616 0 2 -%I 480 201 -%I 320 202 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.915625 0 0 0 518 963.5 -%I 2028 2883360 0 1 -%I 2027 2872776 0 -%I 2028 2883360 0 -%I 4"node"$(P)$(SLIT)size VAL nodevar 480 201 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 477.5 762.5 0 0 l 0 nodecomp -%I 2028 2883544 0 0 -%I 2027 2872968 0 -%I 2028 2883544 0 -%I 4"node"$(P)$(SLIT)size VAL nodevar 320 202 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 491 761.5 0 0 r 0 nodecomp -%I 9077 2879216 0 -%I 2027 2872968 0 -%I 2027 2872776 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 2884816 0 -%I 0 0 0 -%I 6"pvlink"SDIS $(P)$(SLIT)sizeBPut NPP MS NPP/MS pvlinkvar - -%I 2029 2880656 0 3 -%I 623 201 -%I 623 186 -%I 320 186 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.955446 0 0 1 505.257 762.5 -%I 2028 2887448 0 1 -%I 2027 2873352 0 -%I 2028 2887448 0 -%I 4"node"$(P)$(SLIT)size VAL nodevar 623 201 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 477.5 762.5 0 0 r 0 nodecomp -%I 2028 2889688 0 0 -%I 2027 2887672 0 -%I 2028 2889688 0 -%I 4"node"$(P)$(SLIT)size VAL nodevar 320 186 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 491 762.5 0 0 r 0 nodecomp -%I 9077 2886168 0 -%I 2027 2887672 0 -%I 2027 2873352 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 2889928 0 -%I 0 0 0 -%I 6"pvlink"OUT $(P)$(SLIT)sizeBPut PP MS PP/MS pvlinkvar - -%I 2029 2880696 0 2 -%I 477 319 -%I 336 320 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.975177 0 0 0 488.34 1071.5 -%I 2028 2891016 0 1 -%I 2027 2888056 0 -%I 2028 2891016 0 -%I 4"node"$(P)$(SLIT)xn PACT nodevar 477 319 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 476.5 752.5 0 0 l 0 nodecomp -%I 2028 2892744 0 0 -%I 2027 2888248 0 -%I 2028 2892744 0 -%I 4"node"$(P)$(SLIT)xn PACT nodevar 336 320 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 480 751.5 0 0 r 0 nodecomp -%I 9077 2891496 0 -%I 2027 2888248 0 -%I 2027 2888056 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 2892984 0 -%I 0 0 0 -%I 6"pvlink"SDIS $(P)$(SLIT)xnBPut NPP MS NPP/MS pvlinkvar - -%I 2029 2880736 0 3 -%I 620 319 -%I 620 304 -%I 336 304 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.987676 0 0 1 484.141 752.5 -%I 2028 2894072 0 1 -%I 2027 2888632 0 -%I 2028 2894072 0 -%I 4"node"$(P)$(SLIT)xn VAL nodevar 620 319 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 476.5 752.5 0 0 r 0 nodecomp -%I 2028 2894256 0 0 -%I 2027 2888824 0 -%I 2028 2894256 0 -%I 4"node"$(P)$(SLIT)xn VAL nodevar 336 304 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 480 752.5 0 0 r 0 nodecomp -%I 9077 2892624 0 -%I 2027 2888824 0 -%I 2027 2888632 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 2897072 0 -%I 0 0 0 -%I 6"pvlink"OUT $(P)$(SLIT)xnBPut PP MS PP/MS pvlinkvar - -%I 2029 2880776 0 2 -%I 475 429 -%I 341 430 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1.01119 -0 0 -2 473.183 2041.5 -%I 2028 2898160 0 1 -%I 2027 2889208 0 -%I 2028 2898160 0 -%I 4"node"$(P)$(SLIT)xp VAL nodevar 475 429 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 478.5 754.5 0 0 l 0 nodecomp -%I 2028 2898344 0 0 -%I 2027 2889400 0 -%I 2028 2898344 0 -%I 4"node"$(P)$(SLIT)xp VAL nodevar 341 430 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 477 751.5 0 0 r 0 nodecomp -%I 9077 2896536 0 -%I 2027 2889400 0 -%I 2027 2889208 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t 1 0 0 1 0 -3 -%I 2030 2898632 0 -%I 0 0 0 -%I 6"pvlink"SDIS $(P)$(SLIT)xpBPut NPP MS NPP/MS pvlinkvar - -%I 2029 2880816 0 3 -%I 618 429 -%I 618 414 -%I 338 414 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.994643 0 0 1.13333 481.811 697.3 -%I 2028 2903320 0 1 -%I 2027 2898912 0 -%I 2028 2903320 0 -%I 4"node"$(P)$(SLIT)xp VAL nodevar 618 429 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 478.5 754.5 0 0 r 0 nodecomp -%I 2028 2903504 0 0 -%I 2027 2899104 0 -%I 2028 2903504 0 -%I 4"node"$(P)$(SLIT)xp VAL nodevar 338 414 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 480 752.5 0 0 r 0 nodecomp -%I 9077 2902328 0 -%I 2027 2899104 0 -%I 2027 2898912 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t 1 0 0 1 0 -3 -%I 2030 2903792 0 -%I 0 0 0 -%I 6"pvlink"OUT $(P)$(SLIT)xpBPut PP MS PP/MS pvlinkvar - -%I 2029 2880856 0 4 -%I 337 273 -%I 383 273 -%I 383 667 -%I 473 667 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.996324 0 0 1 480.739 752.5 -%I 2028 2904880 0 1 -%I 2027 2899488 0 -%I 2028 2904880 0 -%I 4"node"$(P)$(SLIT)t1 B nodevar 337 273 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 479.5 752.5 0 0 r 0 nodecomp -%I 2028 2905064 0 0 -%I 2027 2899680 0 -%I 2028 2905064 0 -%I 4"node"$(P)$(SLIT)t1 B nodevar 473 667 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 479 752.5 0 0 l 0 nodecomp -%I 9077 2905400 0 -%I 2027 2899680 0 -%I 2027 2899488 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 2907880 0 -%I 0 0 0 -%I 6"pvlink"OUT $(P)$(SLIT)xn PP MS PP/MS pvlinkvar - -%I 2029 2880896 0 4 -%I 332 164 -%I 390 164 -%I 390 652 -%I 473 652 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.996454 0 0 0.997951 480.677 753.836 -%I 2028 2908968 0 1 -%I 2027 2900064 0 -%I 2028 2908968 0 -%I 4"node"$(P)$(SLIT)t1 C nodevar 332 164 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 479.5 753.5 0 0 r 0 nodecomp -%I 2028 2909152 0 0 -%I 2027 2900256 0 -%I 2028 2909152 0 -%I 4"node"$(P)$(SLIT)t1 C nodevar 473 652 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 479 752.5 0 0 l 0 nodecomp -%I 9077 2906552 0 -%I 2027 2900256 0 -%I 2027 2900064 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 2910936 0 -%I 0 0 0 -%I 6"pvlink"OUT $(P)$(SLIT)size PP MS PP/MS pvlinkvar - -%I 2029 2880936 0 4 -%I 331 50 -%I 397 50 -%I 397 637 -%I 473 637 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.996479 0 0 1 480.665 752.5 -%I 2028 2912024 0 1 -%I 2027 2900640 0 -%I 2028 2912024 0 -%I 4"node"$(P)$(SLIT)t1 D nodevar 331 50 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 479.5 752.5 0 0 r 0 nodecomp -%I 2028 2912208 0 0 -%I 2027 2912368 0 -%I 2028 2912208 0 -%I 4"node"$(P)$(SLIT)t1 D nodevar 473 637 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 479 752.5 0 0 l 0 nodecomp -%I 9077 2910384 0 -%I 2027 2912368 0 -%I 2027 2900640 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 2914504 0 -%I 0 0 0 -%I 6"pvlink"OUT $(P)$(SLIT)center PP MS PP/MS pvlinkvar - -%I 2021 2915408 0 $(P)$(SLIT)xp.HLM i -%I 2028 2918288 0 1 -%I 2027 2912816 0 -%I 2028 2918288 0 -%I 4"node"$(P)$(SLIT)xp HLM nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 0 0 l 1 nodecomp -%I t 1 0 0 1 -628.172 621.296 - -%I 2021 2919552 0 $(P)$(SLIT)xp.LLM i -%I 2028 2920888 0 1 -%I 2027 2913136 0 -%I 2028 2920888 0 -%I 4"node"$(P)$(SLIT)xp LLM nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 0 0 l 1 nodecomp -%I t 1 0 0 1 -629.172 636.296 - -%I 2021 2921120 0 $(P)$(SLIT)xn.HLM i -%I 2028 2924000 0 1 -%I 2027 2913456 0 -%I 2028 2924000 0 -%I 4"node"$(P)$(SLIT)xn HLM nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 0 0 l 1 nodecomp -%I t 1 0 0 1 -627.172 591.296 - -%I 2021 2924232 0 $(P)$(SLIT)xn.LLM i -%I 2028 2925568 0 1 -%I 2027 2913776 0 -%I 2028 2925568 0 -%I 4"node"$(P)$(SLIT)xn LLM nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 0 0 l 1 nodecomp -%I t 1 0 0 1 -628.172 606.296 - -%I 2021 2927344 0 $(P)$(SLIT)size.HLM i -%I 2028 2928680 0 1 -%I 2027 2914096 0 -%I 2028 2928680 0 -%I 4"node"$(P)$(SLIT)size HLM nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 0 0 l 1 nodecomp -%I t 1 0 0 1 -628.172 561.296 - -%I 2021 2928912 0 $(P)$(SLIT)size.LLM i -%I 2028 2930248 0 1 -%I 2027 2930408 0 -%I 2028 2930248 0 -%I 4"node"$(P)$(SLIT)size LLM nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 0 0 l 1 nodecomp -%I t 1 0 0 1 -629.172 576.296 - -%I 2021 2934080 0 $(P)$(SLIT)center.HLM i -%I 2028 2935416 0 1 -%I 2027 2930728 0 -%I 2028 2935416 0 -%I 4"node"$(P)$(SLIT)center HLM nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 0 0 l 1 nodecomp -%I t 1 0 0 1 -626.172 531.296 - -%I 2021 2935648 0 $(P)$(SLIT)center.LLM i -%I 2028 2936984 0 1 -%I 2027 2931080 0 -%I 2028 2936984 0 -%I 4"node"$(P)$(SLIT)center LLM nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 0 0 l 1 nodecomp -%I t 1 0 0 1 -627.172 546.296 - -%I 2029 2880976 0 2 -%I 903 665 -%I 975 666 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.833333 -0 0 -0.5 1011 1954 -%I 2028 2939976 0 1 -%I 2027 2931368 0 -%I 2028 2939976 0 -%I 4"node"$(P)$(SLIT)xp LLM nodevar 903 665 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 860.5 956.5 0 0 r 0 nodecomp -%I 2028 2940160 0 0 -%I 2027 2931560 0 -%I 2028 2940160 0 -%I 4"node"$(P)$(SLIT)xp LLM nodevar 975 666 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 848.5 955 0 0 l 0 nodecomp -%I 9077 2937944 0 -%I 2027 2931560 0 -%I 2027 2931368 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t 1 0 0 1 -1283 -14 -%I 2030 2940448 0 -%I 0 0 0 -%I 6"pvlink"OUTA $(P)$(SLIT)t3 NPP MS NPP/MS pvlinkvar - -%I 2029 2881016 0 2 -%I 903 650 -%I 976 651 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.835616 -0 0 -0.5 1008.94 1931.5 -%I 2028 2941536 0 1 -%I 2027 2931944 0 -%I 2028 2941536 0 -%I 4"node"$(P)$(SLIT)xp HLM nodevar 903 650 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 860.5 956.5 0 0 r 0 nodecomp -%I 2028 2941720 0 0 -%I 2027 2932136 0 -%I 2028 2941720 0 -%I 4"node"$(P)$(SLIT)xp HLM nodevar 976 651 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 848.5 955 0 0 l 0 nodecomp -%I 9077 2942080 0 -%I 2027 2932136 0 -%I 2027 2931944 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t 1 0 0 1 -1283 -14 -%I 2030 2943560 0 -%I 0 0 0 -%I 6"pvlink"OUTB $(P)$(SLIT)t3 NPP MS NPP/MS pvlinkvar - -%I 2029 2881056 0 2 -%I 903 635 -%I 976 636 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.835616 -0 0 -0.5 1008.94 1909 -%I 2028 2946704 0 1 -%I 2027 2944680 0 -%I 2028 2946704 0 -%I 4"node"$(P)$(SLIT)xn LLM nodevar 903 635 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 860.5 956.5 0 0 r 0 nodecomp -%I 2028 2946888 0 0 -%I 2027 2944872 0 -%I 2028 2946888 0 -%I 4"node"$(P)$(SLIT)xn LLM nodevar 976 636 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 848.5 955 0 0 l 0 nodecomp -%I 9077 2943160 0 -%I 2027 2944872 0 -%I 2027 2944680 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t 1 0 0 1 -1283 -14 -%I 2030 2947176 0 -%I 0 0 0 -%I 6"pvlink"OUTC $(P)$(SLIT)t3 NPP MS NPP/MS pvlinkvar - -%I 2029 2881096 0 2 -%I 903 620 -%I 977 621 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.837838 -0 0 -0.5 1006.93 1886.5 -%I 2028 2950840 0 1 -%I 2027 2945256 0 -%I 2028 2950840 0 -%I 4"node"$(P)$(SLIT)xn HLM nodevar 903 620 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 860.5 956.5 0 0 r 0 nodecomp -%I 2028 2951024 0 0 -%I 2027 2945448 0 -%I 2028 2951024 0 -%I 4"node"$(P)$(SLIT)xn HLM nodevar 977 621 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 848.5 955 0 0 l 0 nodecomp -%I 9077 2948152 0 -%I 2027 2945448 0 -%I 2027 2945256 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t 1 0 0 1 -1283 -14 -%I 2030 2951312 0 -%I 0 0 0 -%I 6"pvlink"OUTD $(P)$(SLIT)t3 NPP MS NPP/MS pvlinkvar - -%I 2029 2881136 0 2 -%I 903 605 -%I 975 606 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.833333 -0 0 -0.5 1011 1864 -%I 2028 2952400 0 1 -%I 2027 2945832 0 -%I 2028 2952400 0 -%I 4"node"$(P)$(SLIT)size LLM nodevar 903 605 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 860.5 956.5 0 0 r 0 nodecomp -%I 2028 2954128 0 0 -%I 2027 2946024 0 -%I 2028 2954128 0 -%I 4"node"$(P)$(SLIT)size LLM nodevar 975 606 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 848.5 955 0 0 l 0 nodecomp -%I 9077 2952928 0 -%I 2027 2946024 0 -%I 2027 2945832 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t 1 0 0 1 -1283 -14 -%I 2030 2954416 0 -%I 0 0 0 -%I 6"pvlink"OUTE $(P)$(SLIT)t3 NPP MS NPP/MS pvlinkvar - -%I 2029 2881176 0 2 -%I 903 590 -%I 976 591 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.835616 -0 0 -0.5 1008.94 1841.5 -%I 2028 2955504 0 1 -%I 2027 2946408 0 -%I 2028 2955504 0 -%I 4"node"$(P)$(SLIT)size HLM nodevar 903 590 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 860.5 956.5 0 0 r 0 nodecomp -%I 2028 2955688 0 0 -%I 2027 2955784 0 -%I 2028 2955688 0 -%I 4"node"$(P)$(SLIT)size HLM nodevar 976 591 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 848.5 955 0 0 l 0 nodecomp -%I 9077 2954008 0 -%I 2027 2955784 0 -%I 2027 2946408 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t 1 0 0 1 -1283 -14 -%I 2030 2959576 0 -%I 0 0 0 -%I 6"pvlink"OUTF $(P)$(SLIT)t3 NPP MS NPP/MS pvlinkvar - -%I 2029 2881216 0 2 -%I 903 575 -%I 977 576 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.837838 -0 0 -0.5 1006.93 1819 -%I 2028 2770056 0 1 -%I 2027 2956168 0 -%I 2028 2770056 0 -%I 4"node"$(P)$(SLIT)center LLM nodevar 903 575 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 860.5 956.5 0 0 r 0 nodecomp -%I 2028 2770240 0 0 -%I 2027 2956392 0 -%I 2028 2770240 0 -%I 4"node"$(P)$(SLIT)center LLM nodevar 977 576 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 848.5 955 0 0 l 0 nodecomp -%I 9077 2958944 0 -%I 2027 2956392 0 -%I 2027 2956168 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t 1 0 0 1 -1283 -14 -%I 2030 2770528 0 -%I 0 0 0 -%I 6"pvlink"OUTG $(P)$(SLIT)t3 NPP MS NPP/MS pvlinkvar - -%I 2029 2881256 0 2 -%I 903 560 -%I 978 561 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.84 -0 0 -0.5 1004.98 1796.5 -%I 2028 2771616 0 1 -%I 2027 2956808 0 -%I 2028 2771616 0 -%I 4"node"$(P)$(SLIT)center HLM nodevar 903 560 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 860.5 956.5 0 0 r 0 nodecomp -%I 2028 2771800 0 0 -%I 2027 2957032 0 -%I 2028 2771800 0 -%I 4"node"$(P)$(SLIT)center HLM nodevar 978 561 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 848.5 955 0 0 l 0 nodecomp -%I 9077 2966712 0 -%I 2027 2957032 0 -%I 2027 2956808 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t 1 0 0 1 -1283 -14 -%I 2030 2772088 0 -%I 0 0 0 -%I 6"pvlink"OUTH $(P)$(SLIT)t3 NPP MS NPP/MS pvlinkvar - -%I 2029 2881296 0 4 -%I 254 176 -%I 291 176 -%I 291 478 -%I 388 478 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.996269 0 0 1 565.448 956.5 -%I 2028 2968688 0 1 -%I 2027 2957448 0 -%I 2028 2968688 0 -%I 4"node"$(P)$(SLIT)t1 A nodevar 254 176 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 564.5 956.5 0 0 r 0 nodecomp -%I 2028 2968872 0 0 -%I 2027 2957640 0 -%I 2028 2968872 0 -%I 4"node"$(P)$(SLIT)t1 A nodevar 388 478 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 564 956.5 0 0 l 0 nodecomp -%I 9077 2970096 0 -%I 2027 2957640 0 -%I 2027 2957448 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 2971688 0 -%I 0 0 0 -%I 6"pvlink"OUT $(P)$(SLIT)xp PP MS PP/MS pvlinkvar - -%I 2020 2974648 0 $(P)$(SLIT)mXpPut 0 -%I 2028 2978944 0 1 -%I 2027 2972032 0 -%I 2028 2978944 0 -%I 4"node"$(P)$(SLIT)mXpPut VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)mXpPut VAL l 2 nodecomp -%I t 1 0 0 1 1368.5 1274.5 1 1 2 -%I 2028 2979176 0 0 -%I 2027 2972320 0 -%I 2028 2979176 0 -%I 4"node"$(P)$(SLIT)syncOp VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)mXpPut SDIS l 2 nodecomp -%I 2028 2979888 0 0 -%I 2027 2972544 0 -%I 2028 2979888 0 -%I 4"node"$(P)$(mXp) VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)mXpPut OUT r 2 nodecomp -%I 2028 2980600 0 1 -%I 2027 2972736 0 -%I 2028 2980600 0 -%I 4"node"$(P)$(SLIT)mXpPut VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)mXpPut VAL l 2 nodecomp -%I 2028 2980784 0 1 -%I 2027 2972960 0 -%I 2028 2980784 0 -%I 4"node"$(P)$(SLIT)mXpPut VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)mXpPut VAL r 2 nodecomp - -%I 2029 2881336 0 4 -%I 327 222 -%I 432 222 -%I 432 261 -%I 481 261 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1.10065 0 0 0 734.587 1298.5 -%I 2028 2983512 0 1 -%I 2027 2973216 0 -%I 2028 2983512 0 -%I 4"node"$(P)$(SLIT)mXpPut VAL nodevar 327 222 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 767.5 1076.5 0 0 r 0 nodecomp -%I 2028 2983696 0 0 -%I 2027 2973408 0 -%I 2028 2983696 0 -%I 4"node"$(P)$(SLIT)mXpPut VAL nodevar 481 261 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 783 1037.5 0 0 l 0 nodecomp -%I 9077 2982080 0 -%I 2027 2973408 0 -%I 2027 2973216 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 2983936 0 -%I 0 0 0 -%I 6"pvlink"OUTF $(P)$(SLIT)t1 PP MS PP/MS pvlinkvar - -%I 2029 2881376 0 2 -%I 624 244 -%I 680 245 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.964284 0 0 0.500122 789.787 1199.47 -%I 2028 2987600 0 1 -%I 2027 2987696 0 -%I 2028 2987600 0 -%I 4"node"$(P)$(mXp) VAL nodevar 624 244 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 767.5 1077.5 0 0 r 0 nodecomp -%I 2028 2989840 0 0 -%I 2027 2987888 0 -%I 2028 2989840 0 -%I 4"node"$(P)$(mXp) VAL nodevar 680 245 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 765.5 1077 0 0 l 0 nodecomp -%I 9077 2986272 0 -%I 2027 2987888 0 -%I 2027 2987696 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t 1 0 0 1 15 -39 -%I 2030 2990128 0 -%I 0 0 0 -%I 6"pvlink"OUT $(P)$(SLIT)mXpPut PP MS PP/MS pvlinkvar - -%I 2020 2991032 0 $(P)$(SLIT)mXnPut 0 -%I 2028 2995304 0 1 -%I 2027 2988336 0 -%I 2028 2995304 0 -%I 4"node"$(P)$(SLIT)mXnPut VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)mXnPut VAL l 2 nodecomp -%I t 1 0 0 1 1373.5 1198.5 1 1 2 -%I 2028 2995536 0 0 -%I 2027 2988624 0 -%I 2028 2995536 0 -%I 4"node"$(P)$(SLIT)syncOp VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)mXnPut SDIS l 2 nodecomp -%I 2028 2996248 0 0 -%I 2027 2988848 0 -%I 2028 2996248 0 -%I 4"node"$(P)$(mXn) VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)mXnPut OUT r 2 nodecomp -%I 2028 2998504 0 1 -%I 2027 2989040 0 -%I 2028 2998504 0 -%I 4"node"$(P)$(SLIT)mXnPut VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)mXnPut VAL l 2 nodecomp -%I 2028 2998688 0 1 -%I 2027 2989264 0 -%I 2028 2998688 0 -%I 4"node"$(P)$(SLIT)mXnPut VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)mXnPut VAL r 2 nodecomp - -%I 2029 2881416 0 4 -%I 231 207 -%I 330 207 -%I 330 146 -%I 405 146 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1.00287 0 0 1 861.836 1076.5 -%I 2028 3000936 0 1 -%I 2027 2989520 0 -%I 2028 3000936 0 -%I 4"node"$(P)$(SLIT)mXnPut VAL nodevar 231 207 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 862.5 1076.5 0 0 r 0 nodecomp -%I 2028 3002664 0 0 -%I 2027 2989712 0 -%I 2028 3002664 0 -%I 4"node"$(P)$(SLIT)mXnPut VAL nodevar 405 146 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 863 1076.5 0 0 l 0 nodecomp -%I 9077 3001368 0 -%I 2027 2989712 0 -%I 2027 2989520 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t 1 0 0 1 1 0 -%I 2030 3005008 0 -%I 0 0 0 -%I 6"pvlink"OUTG $(P)$(SLIT)t1 PP MS PP/MS pvlinkvar - -%I 2029 2881456 0 2 -%I 548 129 -%I 613 130 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.830767 0 0 0.500122 956.24 1141.98 -%I 2028 3006096 0 1 -%I 2027 3003144 0 -%I 2028 3006096 0 -%I 4"node"$(P)$(mXn) VAL nodevar 548 129 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 863.5 1077.5 0 0 r 0 nodecomp -%I 2028 3006280 0 0 -%I 2027 3003336 0 -%I 2028 3006280 0 -%I 4"node"$(P)$(mXn) VAL nodevar 613 130 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 852.5 1077 0 0 l 0 nodecomp -%I 9077 3002448 0 -%I 2027 3003336 0 -%I 2027 3003144 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 3008064 0 -%I 0 0 0 -%I 6"pvlink"OUT $(P)$(SLIT)mXnPut PP MS PP/MS pvlinkvar - -%I 2020 3008968 0 $(P)$(SLIT)t2 0 -%I 2028 3011696 0 1 -%I 2027 3003752 0 -%I 2028 3011696 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)t2 VAL l 2 nodecomp -%I t 1 0 0 1 441.5 960.5 5 0 10 -%I 2028 3013472 0 0 -%I 2027 3004008 0 -%I 2028 3013472 0 -%I 4"node"$(P)$(mXn) DMOV nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)t2 INPH l 2 nodecomp -%I 2028 3015216 0 0 -%I 2027 3004200 0 -%I 2028 3015216 0 -%I 4"node"$(P)$(mXp) DMOV nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)t2 INPG l 2 nodecomp -%I 2028 3015928 0 0 -%I 2027 3004392 0 -%I 2028 3015928 0 -%I 4"node"$(P)$(SLIT)gate VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)t2 INPF l 2 nodecomp -%I 2028 3016640 0 0 -%I 2027 3004584 0 -%I 2028 3016640 0 -%I 4"node"$(P)$(mXn) RBV nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)t2 INPB l 2 nodecomp -%I 2028 3018896 0 0 -%I 2027 3004776 0 -%I 2028 3018896 0 -%I 4"node"$(P)$(mXp) RBV nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)t2 INPA l 2 nodecomp -%I 2028 3021664 0 1 -%I 2027 3019152 0 -%I 2028 3021664 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)t2 E l 2 nodecomp -%I 2028 3021848 0 1 -%I 2027 3019344 0 -%I 2028 3021848 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)t2 E r 2 nodecomp -%I 2028 3024104 0 1 -%I 2027 3019536 0 -%I 2028 3024104 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)t2 D l 2 nodecomp -%I 2028 3024288 0 1 -%I 2027 3019728 0 -%I 2028 3024288 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)t2 D r 2 nodecomp -%I 2028 3025000 0 1 -%I 2027 3019920 0 -%I 2028 3025000 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)t2 C l 2 nodecomp -%I 2028 3025184 0 1 -%I 2027 3020112 0 -%I 2028 3025184 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)t2 C r 2 nodecomp -%I 2028 3028472 0 1 -%I 2027 3020304 0 -%I 2028 3028472 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)t2 B l 2 nodecomp -%I 2028 3028656 0 1 -%I 2027 3020496 0 -%I 2028 3028656 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)t2 B r 2 nodecomp -%I 2028 3029368 0 1 -%I 2027 3020688 0 -%I 2028 3029368 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)t2 A l 2 nodecomp -%I 2028 3029552 0 1 -%I 2027 3020880 0 -%I 2028 3029552 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)t2 A r 2 nodecomp - -%I 2021 3034488 0 $(P)$(mXp).DMOV o -%I 2028 3035824 0 1 -%I 2027 3032328 0 -%I 2028 3035824 0 -%I 4"node"$(P)$(mXp) DMOV nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1311.67 970.704 0 0 l 1 nodecomp -%I t 1 0 0 1 -1014.17 -61.704 - -%I 2021 3036056 0 $(P)$(mXn).DMOV o -%I 2028 3038936 0 1 -%I 2027 3031944 0 -%I 2028 3038936 0 -%I 4"node"$(P)$(mXn) DMOV nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1311.67 970.704 0 0 l 1 nodecomp -%I t 1 0 0 1 -1014.17 -76.704 - -%I 2021 3039168 0 $(P)$(mXp).RBV o -%I 2028 3040504 0 1 -%I 2027 3032552 0 -%I 2028 3040504 0 -%I 4"node"$(P)$(mXp) RBV nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1311.67 970.704 0 0 l 1 nodecomp -%I t 1 0 0 1 -1014.17 -16.704 - -%I 2021 3040736 0 $(P)$(mXn).RBV o -%I 2028 3043616 0 1 -%I 2027 3032840 0 -%I 2028 3043616 0 -%I 4"node"$(P)$(mXn) RBV nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1311.67 970.704 0 0 l 1 nodecomp -%I t 1 0 0 1 -1014.17 -31.704 - -%I 2029 2881496 0 2 -%I 286 93 -%I 214 94 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.999972 0 0 0.5 101.508 779 -%I 2028 3045064 0 1 -%I 2027 3033096 0 -%I 2028 3045064 0 -%I 4"node"$(P)$(mXp) RBV nodevar 286 93 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 101.5 732.5 0 0 l 0 nodecomp -%I 2028 3045248 0 0 -%I 2027 3033288 0 -%I 2028 3045248 0 -%I 4"node"$(P)$(mXp) RBV nodevar 214 94 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 101.502 732 0 0 l 0 nodecomp -%I 9077 3042704 0 -%I 2027 3033288 0 -%I 2027 3033096 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t 1 0 0 1 -18 128 -%I 2030 3045536 0 -%I 0 0 0 -%I 6"pvlink"INPA $(P)$(SLIT)t2 CP MS CP/MS pvlinkvar - -%I 2029 2881536 0 2 -%I 286 78 -%I 214 79 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.999972 0 0 0.5 101.508 771.5 -%I 2028 3048168 0 1 -%I 2027 3033672 0 -%I 2028 3048168 0 -%I 4"node"$(P)$(mXn) RBV nodevar 286 78 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 101.5 732.5 0 0 l 0 nodecomp -%I 2028 3048352 0 0 -%I 2027 3033864 0 -%I 2028 3048352 0 -%I 4"node"$(P)$(mXn) RBV nodevar 214 79 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 101.502 732 0 0 l 0 nodecomp -%I 9077 3047144 0 -%I 2027 3033864 0 -%I 2027 3033672 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t 1 0 0 1 -18 128 -%I 2030 3050696 0 -%I 0 0 0 -%I 6"pvlink"INPB $(P)$(SLIT)t2 CP MS CP/MS pvlinkvar - -%I 2029 2881576 0 2 -%I 286 48 -%I 214 49 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.999972 0 0 0.5 101.508 756.5 -%I 2028 3051784 0 1 -%I 2027 3048832 0 -%I 2028 3051784 0 -%I 4"node"$(P)$(mXp) DMOV nodevar 286 48 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 101.5 732.5 0 0 l 0 nodecomp -%I 2028 3051968 0 0 -%I 2027 3049024 0 -%I 2028 3051968 0 -%I 4"node"$(P)$(mXp) DMOV nodevar 214 49 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 101.502 732 0 0 l 0 nodecomp -%I 9077 3052304 0 -%I 2027 3049024 0 -%I 2027 3048832 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t 1 0 0 1 -18 128 -%I 2030 3053800 0 -%I 0 0 0 -%I 6"pvlink"INPG $(P)$(SLIT)t2 CP MS CP/MS pvlinkvar - -%I 2029 2881616 0 2 -%I 286 33 -%I 214 34 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.999972 0 0 0.5 101.508 749 -%I 2028 3055920 0 1 -%I 2027 3049408 0 -%I 2028 3055920 0 -%I 4"node"$(P)$(mXn) DMOV nodevar 286 33 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 101.5 732.5 0 0 l 0 nodecomp -%I 2028 3056104 0 0 -%I 2027 3049600 0 -%I 2028 3056104 0 -%I 4"node"$(P)$(mXn) DMOV nodevar 214 34 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 101.502 732 0 0 l 0 nodecomp -%I 9077 3053384 0 -%I 2027 3049600 0 -%I 2027 3049408 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t 1 0 0 1 -18 128 -%I 2030 3056392 0 -%I 0 0 0 -%I 6"pvlink"INPH $(P)$(SLIT)t2 CP MS CP/MS pvlinkvar - -%I 2029 2881656 0 4 -%I 574 415 -%I 449 415 -%I 449 297 -%I 410 297 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.996951 0 0 1 103.25 732.5 -%I 2028 3059040 0 1 -%I 2027 3049984 0 -%I 2028 3059040 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 574 415 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 101.5 732.5 0 0 l 0 nodecomp -%I 2028 3059224 0 0 -%I 2027 3050176 0 -%I 2028 3059224 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 410 297 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 102 732.5 0 0 r 0 nodecomp -%I 9077 3057392 0 -%I 2027 3050176 0 -%I 2027 3049984 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 3059464 0 -%I 0 0 0 -%I 6"pvlink"RDBL $(P)$(SLIT)xp NPP MS NPP/MS pvlinkvar - -%I 2029 2881696 0 4 -%I 572 308 -%I 460 308 -%I 460 282 -%I 410 282 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.996914 0 0 1 103.265 732.5 -%I 2028 3062096 0 1 -%I 2027 3050560 0 -%I 2028 3062096 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 572 308 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 101.5 732.5 0 0 l 0 nodecomp -%I 2028 3064336 0 0 -%I 2027 3062352 0 -%I 2028 3064336 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 410 282 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 102 732.5 0 0 r 0 nodecomp -%I 9077 3061016 0 -%I 2027 3062352 0 -%I 2027 3050560 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 3064576 0 -%I 0 0 0 -%I 6"pvlink"RDBL $(P)$(SLIT)xn NPP MS NPP/MS pvlinkvar - -%I 2029 2881736 0 4 -%I 567 200 -%I 461 200 -%I 461 267 -%I 410 267 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.996815 0 0 1 103.306 732.5 -%I 2028 3066696 0 1 -%I 2027 3062736 0 -%I 2028 3066696 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 567 200 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 101.5 732.5 0 0 l 0 nodecomp -%I 2028 3066880 0 0 -%I 2027 3062928 0 -%I 2028 3066880 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 410 267 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 102 732.5 0 0 r 0 nodecomp -%I 9077 3067072 0 -%I 2027 3062928 0 -%I 2027 3062736 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 3068664 0 -%I 0 0 0 -%I 6"pvlink"RDBL $(P)$(SLIT)size NPP MS NPP/MS pvlinkvar - -%I 2029 2881776 0 4 -%I 566 85 -%I 447 85 -%I 447 252 -%I 410 252 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.996795 0 0 1 103.314 732.5 -%I 2028 3069752 0 1 -%I 2027 3063312 0 -%I 2028 3069752 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 566 85 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 101.5 732.5 0 0 l 0 nodecomp -%I 2028 3069936 0 0 -%I 2027 3063504 0 -%I 2028 3069936 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 410 252 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 102 732.5 0 0 r 0 nodecomp -%I 9077 3068200 0 -%I 2027 3063504 0 -%I 2027 3063312 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 3070176 0 -%I 0 0 0 -%I 6"pvlink"RDBL $(P)$(SLIT)center NPP MS NPP/MS pvlinkvar - -%I 2029 2881816 0 4 -%I 574 400 -%I 499 400 -%I 499 237 -%I 410 237 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.996951 0 0 1 103.25 732.5 -%I 2028 3072808 0 1 -%I 2027 3063888 0 -%I 2028 3072808 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 574 400 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 101.5 732.5 0 0 l 0 nodecomp -%I 2028 3072992 0 0 -%I 2027 3064080 0 -%I 2028 3072992 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 410 237 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 102 732.5 0 0 r 0 nodecomp -%I 9077 3071552 0 -%I 2027 3064080 0 -%I 2027 3063888 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 3073232 0 -%I 0 0 0 -%I 6"pvlink"DINP $(P)$(SLIT)xp NPP MS NPP/MS pvlinkvar - -%I 2029 2881856 0 4 -%I 572 293 -%I 500 293 -%I 500 237 -%I 410 237 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.996914 0 0 1 103.265 732.5 -%I 2028 3077408 0 1 -%I 2027 3073544 0 -%I 2028 3077408 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 572 293 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 101.5 732.5 0 0 l 0 nodecomp -%I 2028 3079136 0 0 -%I 2027 3073736 0 -%I 2028 3079136 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 410 237 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 102 732.5 0 0 r 0 nodecomp -%I 9077 3077912 0 -%I 2027 3073736 0 -%I 2027 3073544 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 3079376 0 -%I 0 0 0 -%I 6"pvlink"DINP $(P)$(SLIT)xn NPP MS NPP/MS pvlinkvar - -%I 2029 2881896 0 4 -%I 567 185 -%I 500 185 -%I 500 237 -%I 410 237 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.996815 0 0 1 103.306 732.5 -%I 2028 3080464 0 1 -%I 2027 3074120 0 -%I 2028 3080464 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 567 185 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 101.5 732.5 0 0 l 0 nodecomp -%I 2028 3080648 0 0 -%I 2027 3074312 0 -%I 2028 3080648 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 410 237 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 102 732.5 0 0 r 0 nodecomp -%I 9077 3080840 0 -%I 2027 3074312 0 -%I 2027 3074120 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 3082432 0 -%I 0 0 0 -%I 6"pvlink"DINP $(P)$(SLIT)size NPP MS NPP/MS pvlinkvar - -%I 2029 2881936 0 4 -%I 566 70 -%I 501 70 -%I 501 237 -%I 410 237 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.996795 0 0 1 103.314 732.5 -%I 2028 3083528 0 1 -%I 2027 3074696 0 -%I 2028 3083528 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 566 70 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 101.5 732.5 0 0 l 0 nodecomp -%I 2028 3083712 0 0 -%I 2027 3074888 0 -%I 2028 3083712 0 -%I 4"node"$(P)$(SLIT)t2 VAL nodevar 410 237 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 102 732.5 0 0 r 0 nodecomp -%I 9077 3081968 0 -%I 2027 3074888 0 -%I 2027 3074696 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 3083952 0 -%I 0 0 0 -%I 6"pvlink"DINP $(P)$(SLIT)center NPP MS NPP/MS pvlinkvar - -%I 2020 3087432 0 $(P)$(SLIT)stop 0 -%I 2028 3090160 0 1 -%I 2027 3075304 0 -%I 2028 3090160 0 -%I 4"node"$(P)$(SLIT)stop VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)stop VAL l 2 nodecomp -%I t 1 0 0 1 269.5 1158.5 0 4 0 -%I 2028 3092448 0 0 -%I 2027 3090448 0 -%I 2028 3092448 0 -%I 4"node"$(P)$(SLIT)center STOP nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)stop OUTD r 2 nodecomp -%I 2028 3094704 0 0 -%I 2027 3090672 0 -%I 2028 3094704 0 -%I 4"node"$(P)$(SLIT)size STOP nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)stop OUTC r 2 nodecomp -%I 2028 3095416 0 0 -%I 2027 3090864 0 -%I 2028 3095416 0 -%I 4"node"$(P)$(SLIT)xn STOP nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)stop OUTB r 2 nodecomp -%I 2028 3096128 0 0 -%I 2027 3091056 0 -%I 2028 3096128 0 -%I 4"node"$(P)$(SLIT)xp STOP nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)stop OUTA r 2 nodecomp - -%I 2021 3098720 0 $(P)$(SLIT)xp.STOP i -%I 2028 3100056 0 1 -%I 2027 3091376 0 -%I 2028 3100056 0 -%I 4"node"$(P)$(SLIT)xp STOP nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 0 0 l 1 nodecomp -%I t 1 0 0 1 -817.172 241.296 - -%I 2021 3100288 0 $(P)$(SLIT)xn.STOP i -%I 2028 3101624 0 1 -%I 2027 3091632 0 -%I 2028 3101624 0 -%I 4"node"$(P)$(SLIT)xn STOP nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 0 0 l 1 nodecomp -%I t 1 0 0 1 -817.172 226.296 - -%I 2021 3103400 0 $(P)$(SLIT)size.STOP i -%I 2028 3105768 0 1 -%I 2027 3091952 0 -%I 2028 3105768 0 -%I 4"node"$(P)$(SLIT)size STOP nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 0 0 l 1 nodecomp -%I t 1 0 0 1 -817.172 211.296 - -%I 2021 3106000 0 $(P)$(SLIT)center.STOP i -%I 2028 3108880 0 1 -%I 2027 3092272 0 -%I 2028 3108880 0 -%I 4"node"$(P)$(SLIT)center STOP nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 0 0 l 1 nodecomp -%I t 1 0 0 1 -817.172 196.296 - -%I 2029 2881976 0 2 -%I 479 478 -%I 524 479 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 0.500122 -171.5 972.442 -%I 2028 3111352 0 1 -%I 2027 3109232 0 -%I 2028 3111352 0 -%I 4"node"$(P)$(SLIT)xp STOP nodevar 479 478 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 -171.5 733.5 0 0 r 0 nodecomp -%I 2028 3111536 0 0 -%I 2027 3109424 0 -%I 2028 3111536 0 -%I 4"node"$(P)$(SLIT)xp STOP nodevar 524 479 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 -171.5 733 0 0 l 0 nodecomp -%I 9077 3108352 0 -%I 2027 3109424 0 -%I 2027 3109232 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 3111776 0 -%I 0 0 0 -%I 6"pvlink"OUTA $(P)$(SLIT)stop CA MS CA/MS pvlinkvar - -%I 2029 2882016 0 2 -%I 479 463 -%I 524 464 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 0.500122 -171.5 964.943 -%I 2028 3114408 0 1 -%I 2027 3109808 0 -%I 2028 3114408 0 -%I 4"node"$(P)$(SLIT)xn STOP nodevar 479 463 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 -171.5 733.5 0 0 r 0 nodecomp -%I 2028 3114592 0 0 -%I 2027 3110000 0 -%I 2028 3114592 0 -%I 4"node"$(P)$(SLIT)xn STOP nodevar 524 464 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 -171.5 733 0 0 l 0 nodecomp -%I 9077 3113320 0 -%I 2027 3110000 0 -%I 2027 3109808 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 3114832 0 -%I 0 0 0 -%I 6"pvlink"OUTB $(P)$(SLIT)stop CA MS CA/MS pvlinkvar - -%I 2029 2882056 0 2 -%I 479 448 -%I 524 449 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 0.500122 -171.5 957.445 -%I 2028 3116952 0 1 -%I 2027 3110384 0 -%I 2028 3116952 0 -%I 4"node"$(P)$(SLIT)size STOP nodevar 479 448 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 -171.5 733.5 0 0 r 0 nodecomp -%I 2028 3117136 0 0 -%I 2027 3110576 0 -%I 2028 3117136 0 -%I 4"node"$(P)$(SLIT)size STOP nodevar 524 449 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 -171.5 733 0 0 l 0 nodecomp -%I 9077 3117328 0 -%I 2027 3110576 0 -%I 2027 3110384 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 3118920 0 -%I 0 0 0 -%I 6"pvlink"OUTC $(P)$(SLIT)stop CA MS CA/MS pvlinkvar - -%I 2029 2882096 0 2 -%I 479 433 -%I 524 434 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 0.500122 -171.5 949.947 -%I 2028 3120008 0 1 -%I 2027 3110960 0 -%I 2028 3120008 0 -%I 4"node"$(P)$(SLIT)center STOP nodevar 479 433 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 -171.5 733.5 0 0 r 0 nodecomp -%I 2028 3122248 0 0 -%I 2027 3120264 0 -%I 2028 3122248 0 -%I 4"node"$(P)$(SLIT)center STOP nodevar 524 434 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 -171.5 733 0 0 l 0 nodecomp -%I 9077 3118360 0 -%I 2027 3120264 0 -%I 2027 3110960 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 3122488 0 -%I 0 0 0 -%I 6"pvlink"OUTD $(P)$(SLIT)stop CA MS CA/MS pvlinkvar - -%I 2020 3124936 0 $(P)$(SLIT)mXp_nameCalc 0 -%I 2028 3127664 0 1 -%I 2027 3120744 0 -%I 2028 3127664 0 -%I 4"node"$(P)$(SLIT)mXp_nameCalc VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)mXp_nameCalc VAL l 2 nodecomp -%I t 1 0 0 1 1514.5 1298.5 0 0 0 - -%I 2020 3128040 0 $(P)$(SLIT)mXn_nameCalc 0 -%I 2028 3133344 0 1 -%I 2027 3121096 0 -%I 2028 3133344 0 -%I 4"node"$(P)$(SLIT)mXn_nameCalc VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)mXn_nameCalc VAL l 2 nodecomp -%I t 1 0 0 1 1513.5 1221.5 0 0 0 - -%I 2020 3133720 0 $(P)$(SLIT)syncOp 0 -%I 2028 3137992 0 1 -%I 2027 3121448 0 -%I 2028 3137992 0 -%I 4"node"$(P)$(SLIT)syncOp VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)syncOp VAL l 2 nodecomp -%I t 1 0 0 1 1293.5 1585.5 3 0 2 -%I 2028 3138224 0 0 -%I 2027 3121736 0 -%I 2028 3138224 0 -%I 4"node"$(P)$(SLIT)vback1 PACT nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)syncOp INPB l 2 nodecomp -%I 2028 3140480 0 0 -%I 2027 3121960 0 -%I 2028 3140480 0 -%I 4"node"$(P)$(SLIT)vback2 PACT nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)syncOp INPA l 2 nodecomp -%I 2028 3141192 0 0 -%I 2027 3141320 0 -%I 2028 3141192 0 -%I 4"node"0 0 nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)syncOp INPC l 2 nodecomp -%I 2028 3143960 0 1 -%I 2027 3141512 0 -%I 2028 3143960 0 -%I 4"node"$(P)$(SLIT)syncOp VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)syncOp VAL l 2 nodecomp -%I 2028 3144144 0 1 -%I 2027 3141736 0 -%I 2028 3144144 0 -%I 4"node"$(P)$(SLIT)syncOp VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)syncOp VAL r 2 nodecomp - -%I 2029 2882136 0 4 -%I 960 588 -%I 920 588 -%I 920 687 -%I 827 687 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1.07895 0 0 0.616162 185.71 1201.2 -%I 2028 3146920 0 1 -%I 2027 3141992 0 -%I 2028 3146920 0 -%I 4"node"$(P)$(SLIT)vback2 PACT nodevar 960 588 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 261.5 975.5 0 0 l 0 nodecomp -%I 2028 3147104 0 0 -%I 2027 3142184 0 -%I 2028 3147104 0 -%I 4"node"$(P)$(SLIT)vback2 PACT nodevar 827 687 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 251 937.5 0 0 r 0 nodecomp -%I 9077 3145432 0 -%I 2027 3142184 0 -%I 2027 3141992 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 3147344 0 -%I 0 0 0 -%I 6"pvlink"INPA $(P)$(SLIT)syncOp NPP MS NPP/MS pvlinkvar - -%I 2029 2882176 0 4 -%I 950 622 -%I 912 622 -%I 912 604 -%I 829 604 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1.16942 0 0 0.388889 110.55 1306.61 -%I 2028 3151008 0 1 -%I 2027 3142600 0 -%I 2028 3151008 0 -%I 4"node"$(P)$(SLIT)vback1 PACT nodevar 950 622 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 271.5 926.5 0 0 l 0 nodecomp -%I 2028 3151192 0 0 -%I 2027 3142824 0 -%I 2028 3151192 0 -%I 4"node"$(P)$(SLIT)vback1 PACT nodevar 829 604 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 251 937.5 0 0 r 0 nodecomp -%I 9077 3149992 0 -%I 2027 3142824 0 -%I 2027 3142600 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 3151432 0 -%I 0 0 0 -%I 6"pvlink"INPB $(P)$(SLIT)syncOp NPP MS NPP/MS pvlinkvar - -%I 2029 2882216 0 5 -%I 1013 345 -%I 975 345 -%I 975 489 -%I 1092 489 -%I 1092 654 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1.27215 0 0 1.00971 -25.1899 934.151 -%I 2028 3152520 0 1 -%I 2027 3143304 0 -%I 2028 3152520 0 -%I 4"node"$(P)$(SLIT)syncOp VAL nodevar 1013 345 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 250.5 937.5 0 0 l 0 nodecomp -%I 2028 3154760 0 0 -%I 2027 3152808 0 -%I 2028 3154760 0 -%I 4"node"$(P)$(SLIT)syncOp VAL nodevar 1092 654 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 272 940.5 0 0 r 0 nodecomp -%I 9077 3154976 0 -%I 2027 3152808 0 -%I 2027 3143304 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 3156552 0 -%I 0 0 0 -%I 6"pvlink"SDIS $(P)$(SLIT)mXpPut NPP MS NPP/MS pvlinkvar - -%I 2029 2882256 0 5 -%I 1018 269 -%I 975 269 -%I 975 488 -%I 1092 488 -%I 1092 654 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1.29054 0 0 1.00779 -45.2703 935.404 -%I 2028 3157640 0 1 -%I 2027 3153288 0 -%I 2028 3157640 0 -%I 4"node"$(P)$(SLIT)syncOp VAL nodevar 1018 269 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 250.5 937.5 0 0 l 0 nodecomp -%I 2028 3157824 0 0 -%I 2027 3153512 0 -%I 2028 3157824 0 -%I 4"node"$(P)$(SLIT)syncOp VAL nodevar 1092 654 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 272 940.5 0 0 r 0 nodecomp -%I 9077 3156008 0 -%I 2027 3153512 0 -%I 2027 3153288 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 3158064 0 -%I 0 0 0 -%I 6"pvlink"SDIS $(P)$(SLIT)mXnPut NPP MS NPP/MS pvlinkvar - -%I 2029 2882296 0 4 -%I 702 533 -%I 807 533 -%I 807 493 -%I 836 493 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 0.9875 100.5 1164.16 -%I 2028 3161728 0 1 -%I 2027 3153928 0 -%I 2028 3161728 0 -%I 4"node"$(P)$(SLIT)vback2 PROC nodevar 702 533 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 100.5 1157.5 0 0 r 0 nodecomp -%I 2028 3161912 0 0 -%I 2027 3154152 0 -%I 2028 3161912 0 -%I 4"node"$(P)$(SLIT)vback2 PROC nodevar 836 493 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 100.5 1158 0 0 l 0 nodecomp -%I 9077 3160704 0 -%I 2027 3154152 0 -%I 2027 3153928 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 3162152 0 -%I 0 0 0 -%I 6"pvlink"LNK2 $(P)$(SLIT)sync CA MS CA/MS pvlinkvar - -%I 2029 2882336 0 4 -%I 702 548 -%I 783 548 -%I 783 410 -%I 838 410 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 0.996377 100.5 1159.49 -%I 2028 3163240 0 1 -%I 2027 3154568 0 -%I 2028 3163240 0 -%I 4"node"$(P)$(SLIT)vback1 PROC nodevar 702 548 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 100.5 1157.5 0 0 r 0 nodecomp -%I 2028 3165480 0 0 -%I 2027 3163464 0 -%I 2028 3165480 0 -%I 4"node"$(P)$(SLIT)vback1 PROC nodevar 838 410 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 100.5 1158 0 0 l 0 nodecomp -%I 9077 3165816 0 -%I 2027 3163464 0 -%I 2027 3154568 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 3167264 0 -%I 0 0 0 -%I 6"pvlink"LNK1 $(P)$(SLIT)sync CA MS CA/MS pvlinkvar - -%I 2020 3168168 0 $(P)$(SLIT)init 0 -%I 2028 3172440 0 1 -%I 2027 3163912 0 -%I 2028 3172440 0 -%I 4"node"$(P)$(SLIT)init VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)init VAL l 2 nodecomp -%I t 1 0 0 1 548.5 1845.5 0 7 0 -%I 2028 3173704 0 0 -%I 2027 3164168 0 -%I 2028 3173704 0 -%I 4"node"0 0 nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)init LNK7 r 2 nodecomp -%I 2028 3174416 0 0 -%I 2027 3164360 0 -%I 2028 3174416 0 -%I 4"node"0 0 nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)init LNK6 r 2 nodecomp -%I 2028 3175128 0 0 -%I 2027 3164552 0 -%I 2028 3175128 0 -%I 4"node"0 0 nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)init LNK5 r 2 nodecomp -%I 2028 3177384 0 0 -%I 2027 3164744 0 -%I 2028 3177384 0 -%I 4"node"0 0 nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)init LNK4 r 2 nodecomp -%I 2028 3178096 0 0 -%I 2027 3164936 0 -%I 2028 3178096 0 -%I 4"node"0 0 nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)init LNK3 r 2 nodecomp -%I 2028 3178808 0 0 -%I 2027 3165128 0 -%I 2028 3178808 0 -%I 4"node"0 0 nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)init LNK2 r 2 nodecomp -%I 2028 3179520 0 0 -%I 2027 3165320 0 -%I 2028 3179520 0 -%I 4"node"$(P)$(SLIT)sync PROC nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)init LNK1 r 2 nodecomp - -%I 2029 2882376 0 4 -%I 486 785 -%I 543 785 -%I 543 590 -%I 560 590 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1.00256 100.5 1156.49 -%I 2028 3184496 0 1 -%I 2027 3181352 0 -%I 2028 3184496 0 -%I 4"node"$(P)$(SLIT)sync PROC nodevar 486 785 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 100.5 1158.5 0 0 r 0 nodecomp -%I 2028 3184680 0 0 -%I 2027 3181544 0 -%I 2028 3184680 0 -%I 4"node"$(P)$(SLIT)sync PROC nodevar 560 590 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 100.5 1158 0 0 l 0 nodecomp -%I 9077 3180960 0 -%I 2027 3181544 0 -%I 2027 3181352 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 3185952 0 -%I 0 0 0 -%I 6"pvlink"LNK1 $(P)$(SLIT)init PP MS PP/MS pvlinkvar - -%I 2020 3188400 0 $(P)$(SLIT)gatePut 0 -%I 2028 3191128 0 1 -%I 2027 3181928 0 -%I 2028 3191128 0 -%I 4"node"$(P)$(SLIT)gatePut VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)gatePut VAL l 2 nodecomp -%I t 1 0 0 1 1370.5 1353.5 1 1 2 -%I 2028 3191360 0 0 -%I 2027 3182216 0 -%I 2028 3191360 0 -%I 4"node"$(P)$(SLIT)syncOp VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)gatePut SDIS l 2 nodecomp -%I 2028 3193616 0 0 -%I 2027 3182440 0 -%I 2028 3193616 0 -%I 4"node"$(P)$(SLIT)gate VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)gatePut OUT r 2 nodecomp -%I 2028 3194328 0 1 -%I 2027 3182632 0 -%I 2028 3194328 0 -%I 4"node"$(P)$(SLIT)gatePut VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)gatePut VAL l 2 nodecomp -%I 2028 3194512 0 1 -%I 2027 3182856 0 -%I 2028 3194512 0 -%I 4"node"$(P)$(SLIT)gatePut VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)gatePut VAL r 2 nodecomp - -%I 2029 2882416 0 4 -%I 390 157 -%I 485 157 -%I 485 219 -%I 556 219 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1.03313 0 0 1.03226 691.578 1151.44 -%I 2028 3199296 0 1 -%I 2027 3183112 0 -%I 2028 3199296 0 -%I 4"node"$(P)$(SLIT)gatePut VAL nodevar 390 157 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 704.5 1156.5 0 0 r 0 nodecomp -%I 2028 3199480 0 0 -%I 2027 3197112 0 -%I 2028 3199480 0 -%I 4"node"$(P)$(SLIT)gatePut VAL nodevar 556 219 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 710 1158.5 0 0 l 0 nodecomp -%I 9077 3196144 0 -%I 2027 3197112 0 -%I 2027 3183112 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 3199720 0 -%I 0 0 0 -%I 6"pvlink"OUTE $(P)$(SLIT)t1 PP MS PP/MS pvlinkvar - -%I 2029 2882456 0 5 -%I 556 112 -%I 513 112 -%I 513 181 -%I 659 181 -%I 659 348 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.956309 0 0 0.987289 733.792 1250.92 -%I 2028 3201840 0 1 -%I 2027 3197592 0 -%I 2028 3201840 0 -%I 4"node"$(P)$(SLIT)syncOp VAL nodevar 556 112 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 709.5 1249.5 0 0 l 0 nodecomp -%I 2028 3203568 0 0 -%I 2027 3197816 0 -%I 2028 3203568 0 -%I 4"node"$(P)$(SLIT)syncOp VAL nodevar 659 348 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 705 1246.5 0 0 r 0 nodecomp -%I 9077 3202344 0 -%I 2027 3197816 0 -%I 2027 3197592 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 3203808 0 -%I 0 0 0 -%I 6"pvlink"SDIS $(P)$(SLIT)gatePut PP MS PP/MS pvlinkvar - -%I 2020 3204712 0 $(P)$(SLIT)gate 0 -%I 2028 3209008 0 1 -%I 2027 3198264 0 -%I 2028 3209008 0 -%I 4"node"$(P)$(SLIT)gate VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)gate VAL l 2 nodecomp -%I t 1 0 0 1 1558.5 1352.5 1 1 2 -%I 2028 3209240 0 0 -%I 2027 3198520 0 -%I 2028 3209240 0 -%I 4"node"0 0 nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)gate SDIS l 2 nodecomp -%I 2028 3209952 0 0 -%I 2027 3198712 0 -%I 2028 3209952 0 -%I 4"node"0 0 nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)gate OUT r 2 nodecomp -%I 2028 3210664 0 1 -%I 2027 3198904 0 -%I 2028 3210664 0 -%I 4"node"$(P)$(SLIT)gate VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 -142 0 $(P)$(SLIT)gate VAL l 2 nodecomp -%I 2028 3212392 0 1 -%I 2027 3213552 0 -%I 2028 3212392 0 -%I 4"node"$(P)$(SLIT)gate VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)gate VAL r 2 nodecomp - -%I 2029 2882496 0 4 -%I 704 204 -%I 723 204 -%I 723 219 -%I 747 219 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1.05814 0 0 1.00001 663.57 1157.5 -%I 2028 3216664 0 1 -%I 2027 3213776 0 -%I 2028 3216664 0 -%I 4"node"$(P)$(SLIT)gate VAL nodevar 704 204 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 704.5 1157.5 0 0 r 0 nodecomp -%I 2028 3216848 0 0 -%I 2027 3213872 0 -%I 2028 3216848 0 -%I 4"node"$(P)$(SLIT)gate VAL nodevar 747 219 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 707 1157.5 0 0 l 0 nodecomp -%I 9077 3217040 0 -%I 2027 3213872 0 -%I 2027 3213776 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 3218632 0 -%I 0 0 0 -%I 6"pvlink"OUT $(P)$(SLIT)gatePut PP MS PP/MS pvlinkvar - -%I 2020 3219536 0 $(P)$(SLIT)closeGate 0 -%I 2028 3223840 0 1 -%I 2027 3214384 0 -%I 2028 3223840 0 -%I 4"node"$(P)$(SLIT)closeGate VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t ~ $(P)$(SLIT)closeGate VAL l 2 nodecomp -%I t 1 0 0 1 1564.5 1459.5 2 1 0 -%I 2028 3224072 0 0 -%I 2027 3214672 0 -%I 2028 3224072 0 -%I 4"node"$(P)$(SLIT)gate VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)closeGate SDIS l 2 nodecomp -%I 2028 3224784 0 0 -%I 2027 3214864 0 -%I 2028 3224784 0 -%I 4"node"$(P)$(mXn) DMOV nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1169.67 970.704 $(P)$(SLIT)closeGate DOL l 2 nodecomp -%I 2028 3225496 0 0 -%I 2027 3215056 0 -%I 2028 3225496 0 -%I 4"node"$(P)$(SLIT)gate VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1246.67 970.704 $(P)$(SLIT)closeGate OUT r 2 nodecomp - -%I 2029 2882536 0 6 -%I 755 205 -%I 755 188 -%I 910 188 -%I 910 130 -%I 891 130 -%I 891 130 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1.00368 0 0 1.01333 701.724 1244.77 -%I 2028 3229256 0 1 -%I 2027 3215280 0 -%I 2028 3229256 0 -%I 4"node"$(P)$(SLIT)gate VAL nodevar 755 205 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 704.5 1247.5 0 0 l 0 nodecomp -%I 2028 3229440 0 0 -%I 2027 3215504 0 -%I 2028 3229440 0 -%I 4"node"$(P)$(SLIT)gate VAL nodevar 891 130 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 705 1246.5 0 0 r 0 nodecomp -%I 9077 3227176 0 -%I 2027 3215504 0 -%I 2027 3215280 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 3231736 0 -%I 0 0 0 -%I 6"pvlink"SDIS $(P)$(SLIT)closeGate NPP MS NPP/MS pvlinkvar - -%I 2029 2882576 0 4 -%I 898 220 -%I 946 220 -%I 946 130 -%I 891 130 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 0.928571 0 0 1.01111 768.643 1245.06 -%I 2028 3234368 0 1 -%I 2027 3229856 0 -%I 2028 3234368 0 -%I 4"node"$(P)$(SLIT)gate VAL nodevar 898 220 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 704.5 1247.5 0 0 r 0 nodecomp -%I 2028 3234552 0 0 -%I 2027 3230048 0 -%I 2028 3234552 0 -%I 4"node"$(P)$(SLIT)gate VAL nodevar 891 130 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 705 1246.5 0 0 r 0 nodecomp -%I 9077 3233280 0 -%I 2027 3230048 0 -%I 2027 3229856 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 3234792 0 -%I 0 0 0 -%I 6"pvlink"OUT $(P)$(SLIT)closeGate PP MS PP/MS pvlinkvar - -%I 2021 3235696 0 $(P)$(mXn).DMOV o -%I 2028 3237032 0 1 -%I 2027 3230464 0 -%I 2028 3237032 0 -%I 4"node"$(P)$(mXn) DMOV nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1311.67 970.704 0 0 l 1 nodecomp -%I t 1 0 0 1 207.83 566.296 - -%I 2029 2882616 0 5 -%I 903 265 -%I 885 265 -%I 885 322 -%I 963 322 -%I 963 335 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1.00003 0 0 0.992859 556.473 1204.39 -%I 2028 3238992 0 1 -%I 2027 3230784 0 -%I 2028 3238992 0 -%I 4"node"$(P)$(mXn) DMOV nodevar 903 265 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 556.5 1202.5 0 0 l 0 nodecomp -%I 2028 3239176 0 0 -%I 2027 3230976 0 -%I 2028 3239176 0 -%I 4"node"$(P)$(mXn) DMOV nodevar 963 335 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 556.502 1202 0 0 l 0 nodecomp -%I 9077 3238040 0 -%I 2027 3230976 0 -%I 2027 3230784 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 3239416 0 -%I 0 0 0 -%I 6"pvlink"DOL $(P)$(SLIT)closeGate CP MS CP/MS pvlinkvar - -%I 2021 3241352 0 $(P)$(SLIT)gate o -%I 2028 3244232 0 1 -%I 2027 3231392 0 -%I 2028 3244232 0 -%I 4"node"$(P)$(SLIT)gate VAL nodevar 0 0 0 -%I 1 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 1 1311.67 970.704 0 0 l 1 nodecomp -%I t 1 0 0 1 -1014.17 -46.704 - -%I 2029 2882656 0 2 -%I 405 82 -%I 333 83 -%I c black 0 0 0 -%I c wheat 0.960784 0.870588 0.701961 -%I b 65535 0 -%I t 1 0 0 0.5 -35.5 882.5 -%I 2028 3244648 0 1 -%I 2027 3244808 0 -%I 2028 3244648 0 -%I 4"node"$(P)$(SLIT)gate VAL nodevar 405 82 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 -35.5 841.5 0 0 l 0 nodecomp -%I 2028 3246888 0 0 -%I 2027 3245000 0 -%I 2028 3246888 0 -%I 4"node"$(P)$(SLIT)gate VAL nodevar 333 83 1 -%I 4294967295 -%I c ~ -%I c ~ -%I b n -%I t 1 0 0 1 -35.498 841 0 0 l 0 nodecomp -%I 9077 3243392 0 -%I 2027 3245000 0 -%I 2027 3244808 0 0 -%I 4294967295 -%I c ~ -%I c ~ -%I b ~ -%I t ~ -%I 2030 3247128 0 -%I 0 0 0 -%I 6"pvlink"INPF $(P)$(SLIT)t2 CP MS CP/MS pvlinkvar - -%I 4294967295 -%I b ~ -%I c ~ -%I c ~ -%I f ~ -%I p ~ -%I t ~ ---no-prefix--- -%I 140 -%I 938.5 0 0 0 0 1e+06 1e+06 -%I 2028 3165480 0 -%I 2028 1724728 0 -%I 937.5 0 0 0 0 1e+06 1e+06 -%I 2028 2685544 0 -%I 2028 1725088 0 -%I 1080.5 0 0 0 0 1e+06 1e+06 -%I 2028 2790672 0 -%I 2028 1727856 0 -%I 1080 0 0 0 0 1e+06 1e+06 -%I 2028 3151192 0 -%I 2028 1730296 0 -%I 936.5 0 0 0 0 1e+06 1e+06 -%I 2028 3161912 0 -%I 2028 1735568 0 -%I 935.5 0 0 0 0 1e+06 1e+06 -%I 2028 2627648 0 -%I 2028 1736832 0 -%I 1078.5 0 0 0 0 1e+06 1e+06 -%I 2028 2793728 0 -%I 2028 1737640 0 -%I 1078 0 0 0 0 1e+06 1e+06 -%I 2028 3147104 0 -%I 2028 2562024 0 -%I 372.5 0 0 0 0 1e+06 1e+06 -%I 2028 2589696 0 -%I 2028 2569352 0 -%I 371.5 0 0 0 0 1e+06 1e+06 -%I 2028 2584352 0 -%I 2028 2571128 0 -%I 514.5 0 0 0 0 1e+06 1e+06 -%I 2028 2610368 0 -%I 2028 2571840 0 -%I 290.5 0 0 0 0 1e+06 1e+06 -%I 2028 2613472 0 -%I 2028 2578328 0 -%I 290.5 0 0 0 0 1e+06 1e+06 -%I 2028 2589512 0 -%I 2028 2580776 0 -%I 290 0 0 0 0 1e+06 1e+06 -%I 2028 2584536 0 -%I 2028 2581624 0 -%I 660.5 0 0 0 0 1e+06 1e+06 -%I 2028 3184680 0 -%I 2028 2596192 0 -%I 802.5 0 0 0 0 1e+06 1e+06 -%I 2028 3161728 0 -%I 2028 2596424 0 -%I 802.5 0 0 0 0 1e+06 1e+06 -%I 2028 3163240 0 -%I 2028 2598680 0 -%I 577.5 0 0 0 0 1e+06 1e+06 -%I 2028 2610552 0 -%I 2028 2603456 0 -%I 577.5 0 0 0 0 1e+06 1e+06 -%I 2028 2613656 0 -%I 2028 2606568 0 -%I 1460.5 0 0 0 0 1e+06 1e+06 -%I 2028 2989840 0 -%I 2028 2617736 0 -%I 1465.5 0 0 0 0 1e+06 1e+06 -%I 2028 3006280 0 -%I 2028 2620848 0 -%I 867.5 0 0 0 0 1e+06 1e+06 -%I 2028 2625920 0 -%I 2028 2623448 0 -%I 953.5 0 0 0 0 1e+06 1e+06 -%I 2028 2898160 0 -%I 2028 2633848 0 -%I 1096.5 0 0 0 0 1e+06 1e+06 -%I 2028 2903320 0 -%I 2028 2636104 0 -%I 1096 0 0 0 0 1e+06 1e+06 -%I 2028 2807712 0 -%I 2028 2638032 0 -%I 953.5 0 0 0 0 1e+06 1e+06 -%I 2028 2891016 0 -%I 2028 2648096 0 -%I 1096.5 0 0 0 0 1e+06 1e+06 -%I 2028 2894072 0 -%I 2028 2648808 0 -%I 1096 0 0 0 0 1e+06 1e+06 -%I 2028 2804144 0 -%I 2028 2651248 0 -%I 957.5 0 0 0 0 1e+06 1e+06 -%I 2028 2883360 0 -%I 2028 2662328 0 -%I 1100.5 0 0 0 0 1e+06 1e+06 -%I 2028 2887448 0 -%I 2028 2663040 0 -%I 1100 0 0 0 0 1e+06 1e+06 -%I 2028 2801056 0 -%I 2028 2608808 0 -%I 955.5 0 0 0 0 1e+06 1e+06 -%I 2028 2876200 0 -%I 2028 2675608 0 -%I 1098.5 0 0 0 0 1e+06 1e+06 -%I 2028 2877712 0 -%I 2028 2677864 0 -%I 1098 0 0 0 0 1e+06 1e+06 -%I 2028 2796968 0 -%I 2028 2678760 0 -%I 869.5 0 0 0 0 1e+06 1e+06 -%I 2028 2685728 0 -%I 2028 2683584 0 -%I 337.5 0 0 0 0 1e+06 1e+06 -%I 2028 2755672 0 -%I 2028 2694464 0 -%I 337.5 0 0 0 0 1e+06 1e+06 -%I 2028 2752552 0 -%I 2028 2696720 0 -%I 337.5 0 0 0 0 1e+06 1e+06 -%I 2028 2748936 0 -%I 2028 2697432 0 -%I 337.5 0 0 0 0 1e+06 1e+06 -%I 2028 2744800 0 -%I 2028 2698176 0 -%I 480.5 0 0 0 0 1e+06 1e+06 -%I 2028 2771616 0 -%I 2028 2700432 0 -%I 480.5 0 0 0 0 1e+06 1e+06 -%I 2028 2770056 0 -%I 2028 2701144 0 -%I 480.5 0 0 0 0 1e+06 1e+06 -%I 2028 2955504 0 -%I 2028 2702888 0 -%I 480.5 0 0 0 0 1e+06 1e+06 -%I 2028 2952400 0 -%I 2028 2703600 0 -%I 480.5 0 0 0 0 1e+06 1e+06 -%I 2028 2950840 0 -%I 2028 2707912 0 -%I 480.5 0 0 0 0 1e+06 1e+06 -%I 2028 2946704 0 -%I 2028 2708624 0 -%I 480.5 0 0 0 0 1e+06 1e+06 -%I 2028 2941536 0 -%I 2028 2709336 0 -%I 480.5 0 0 0 0 1e+06 1e+06 -%I 2028 2939976 0 -%I 2028 2711592 0 -%I 275.502 0 0 0 0 1e+06 1e+06 -%I 2028 2744984 0 -%I 2028 2736592 0 -%I 276.502 0 0 0 0 1e+06 1e+06 -%I 2028 2749120 0 -%I 2028 2738160 0 -%I 276.502 0 0 0 0 1e+06 1e+06 -%I 2028 2754280 0 -%I 2028 2741272 0 -%I 275.502 0 0 0 0 1e+06 1e+06 -%I 2028 2755856 0 -%I 2028 2744384 0 -%I 1094.5 0 0 0 0 1e+06 1e+06 -%I 2028 3000936 0 -%I 2028 2767608 0 -%I 1094.5 0 0 0 0 1e+06 1e+06 -%I 2028 2983512 0 -%I 2028 2768320 0 -%I 1094.5 0 0 0 0 1e+06 1e+06 -%I 2028 3199296 0 -%I 2028 2664464 0 -%I 1094.5 0 0 0 0 1e+06 1e+06 -%I 2028 2796784 0 -%I 2028 2772456 0 -%I 1094.5 0 0 0 0 1e+06 1e+06 -%I 2028 2800872 0 -%I 2028 2774200 0 -%I 1094.5 0 0 0 0 1e+06 1e+06 -%I 2028 2802384 0 -%I 2028 2776456 0 -%I 1094.5 0 0 0 0 1e+06 1e+06 -%I 2028 2807528 0 -%I 2028 2777168 0 -%I 952 0 0 0 0 1e+06 1e+06 -%I 2028 2912208 0 -%I 2028 2777880 0 -%I 952 0 0 0 0 1e+06 1e+06 -%I 2028 2909152 0 -%I 2028 2780320 0 -%I 952 0 0 0 0 1e+06 1e+06 -%I 2028 2905064 0 -%I 2028 2783272 0 -%I 1094 0 0 0 0 1e+06 1e+06 -%I 2028 2793912 0 -%I 2028 2783456 0 -%I 952 0 0 0 0 1e+06 1e+06 -%I 2028 2968872 0 -%I 2028 2785712 0 -%I 1094 0 0 0 0 1e+06 1e+06 -%I 2028 2792400 0 -%I 2028 2785896 0 -%I 675.5 0 0 0 0 1e+06 1e+06 -%I 2028 3072808 0 -%I 2028 2815936 0 -%I 675.5 0 0 0 0 1e+06 1e+06 -%I 2028 3059040 0 -%I 2028 2816648 0 -%I 818.5 0 0 0 0 1e+06 1e+06 -%I 2028 2968688 0 -%I 2028 2817360 0 -%I 818 0 0 0 0 1e+06 1e+06 -%I 2028 2903504 0 -%I 2028 2820528 0 -%I 818 0 0 0 0 1e+06 1e+06 -%I 2028 2898344 0 -%I 2028 2825024 0 -%I 673.5 0 0 0 0 1e+06 1e+06 -%I 2028 3077408 0 -%I 2028 2831720 0 -%I 673.5 0 0 0 0 1e+06 1e+06 -%I 2028 3062096 0 -%I 2028 2832432 0 -%I 816.5 0 0 0 0 1e+06 1e+06 -%I 2028 2904880 0 -%I 2028 2833144 0 -%I 816 0 0 0 0 1e+06 1e+06 -%I 2028 2894256 0 -%I 2028 2836296 0 -%I 816 0 0 0 0 1e+06 1e+06 -%I 2028 2892744 0 -%I 2028 2840792 0 -%I 667.5 0 0 0 0 1e+06 1e+06 -%I 2028 3083528 0 -%I 2028 2847472 0 -%I 667.5 0 0 0 0 1e+06 1e+06 -%I 2028 3069752 0 -%I 2028 2848184 0 -%I 810.5 0 0 0 0 1e+06 1e+06 -%I 2028 2912024 0 -%I 2028 2850440 0 -%I 810 0 0 0 0 1e+06 1e+06 -%I 2028 2877920 0 -%I 2028 2852048 0 -%I 810 0 0 0 0 1e+06 1e+06 -%I 2028 2876384 0 -%I 2028 2857576 0 -%I 668.5 0 0 0 0 1e+06 1e+06 -%I 2028 3080464 0 -%I 2028 2863224 0 -%I 668.5 0 0 0 0 1e+06 1e+06 -%I 2028 3066696 0 -%I 2028 2863936 0 -%I 811.5 0 0 0 0 1e+06 1e+06 -%I 2028 2908968 0 -%I 2028 2866192 0 -%I 811 0 0 0 0 1e+06 1e+06 -%I 2028 2889688 0 -%I 2028 2867800 0 -%I 811 0 0 0 0 1e+06 1e+06 -%I 2028 2883544 0 -%I 2028 2871272 0 -%I 541.5 0 0 0 0 1e+06 1e+06 -%I 2028 2941720 0 -%I 2028 2918288 0 -%I 540.5 0 0 0 0 1e+06 1e+06 -%I 2028 2940160 0 -%I 2028 2920888 0 -%I 542.5 0 0 0 0 1e+06 1e+06 -%I 2028 2951024 0 -%I 2028 2924000 0 -%I 541.5 0 0 0 0 1e+06 1e+06 -%I 2028 2946888 0 -%I 2028 2925568 0 -%I 541.5 0 0 0 0 1e+06 1e+06 -%I 2028 2955688 0 -%I 2028 2928680 0 -%I 540.5 0 0 0 0 1e+06 1e+06 -%I 2028 2954128 0 -%I 2028 2930248 0 -%I 543.5 0 0 0 0 1e+06 1e+06 -%I 2028 2771800 0 -%I 2028 2935416 0 -%I 542.5 0 0 0 0 1e+06 1e+06 -%I 2028 2770240 0 -%I 2028 2936984 0 -%I 1263.5 0 0 0 0 1e+06 1e+06 -%I 2028 3152520 0 -%I 2028 2979176 0 -%I 1406.5 0 0 0 0 1e+06 1e+06 -%I 2028 2987600 0 -%I 2028 2979888 0 -%I 1264 0 0 0 0 1e+06 1e+06 -%I 2028 2983696 0 -%I 2028 2980600 0 -%I 1268.5 0 0 0 0 1e+06 1e+06 -%I 2028 3157640 0 -%I 2028 2995536 0 -%I 1411.5 0 0 0 0 1e+06 1e+06 -%I 2028 3006096 0 -%I 2028 2996248 0 -%I 1269 0 0 0 0 1e+06 1e+06 -%I 2028 3002664 0 -%I 2028 2998504 0 -%I 369.5 0 0 0 0 1e+06 1e+06 -%I 2028 3055920 0 -%I 2028 3013472 0 -%I 369.5 0 0 0 0 1e+06 1e+06 -%I 2028 3051784 0 -%I 2028 3015216 0 -%I 369.5 0 0 0 0 1e+06 1e+06 -%I 2028 3244648 0 -%I 2028 3015928 0 -%I 369.5 0 0 0 0 1e+06 1e+06 -%I 2028 3048168 0 -%I 2028 3016640 0 -%I 369.5 0 0 0 0 1e+06 1e+06 -%I 2028 3045064 0 -%I 2028 3018896 0 -%I 512 0 0 0 0 1e+06 1e+06 -%I 2028 3072992 0 -%I 2028 3021848 0 -%I 512 0 0 0 0 1e+06 1e+06 -%I 2028 3079136 0 -%I 2028 3021848 0 -%I 512 0 0 0 0 1e+06 1e+06 -%I 2028 3080648 0 -%I 2028 3021848 0 -%I 512 0 0 0 0 1e+06 1e+06 -%I 2028 3083712 0 -%I 2028 3021848 0 -%I 512 0 0 0 0 1e+06 1e+06 -%I 2028 3069936 0 -%I 2028 3024288 0 -%I 512 0 0 0 0 1e+06 1e+06 -%I 2028 3066880 0 -%I 2028 3025184 0 -%I 512 0 0 0 0 1e+06 1e+06 -%I 2028 3064336 0 -%I 2028 3028656 0 -%I 512 0 0 0 0 1e+06 1e+06 -%I 2028 3059224 0 -%I 2028 3029552 0 -%I 297.502 0 0 0 0 1e+06 1e+06 -%I 2028 3051968 0 -%I 2028 3035824 0 -%I 297.502 0 0 0 0 1e+06 1e+06 -%I 2028 3056104 0 -%I 2028 3038936 0 -%I 297.502 0 0 0 0 1e+06 1e+06 -%I 2028 3045248 0 -%I 2028 3040504 0 -%I 297.502 0 0 0 0 1e+06 1e+06 -%I 2028 3048352 0 -%I 2028 3043616 0 -%I 307.5 0 0 0 0 1e+06 1e+06 -%I 2028 3120008 0 -%I 2028 3092448 0 -%I 307.5 0 0 0 0 1e+06 1e+06 -%I 2028 3116952 0 -%I 2028 3094704 0 -%I 307.5 0 0 0 0 1e+06 1e+06 -%I 2028 3114408 0 -%I 2028 3095416 0 -%I 307.5 0 0 0 0 1e+06 1e+06 -%I 2028 3111352 0 -%I 2028 3096128 0 -%I 352.5 0 0 0 0 1e+06 1e+06 -%I 2028 3111536 0 -%I 2028 3100056 0 -%I 352.5 0 0 0 0 1e+06 1e+06 -%I 2028 3114592 0 -%I 2028 3101624 0 -%I 352.5 0 0 0 0 1e+06 1e+06 -%I 2028 3117136 0 -%I 2028 3105768 0 -%I 352.5 0 0 0 0 1e+06 1e+06 -%I 2028 3122248 0 -%I 2028 3108880 0 -%I 1221.5 0 0 0 0 1e+06 1e+06 -%I 2028 3151008 0 -%I 2028 3138224 0 -%I 1221.5 0 0 0 0 1e+06 1e+06 -%I 2028 3146920 0 -%I 2028 3140480 0 -%I 1364 0 0 0 0 1e+06 1e+06 -%I 2028 3154760 0 -%I 2028 3144144 0 -%I 1364 0 0 0 0 1e+06 1e+06 -%I 2028 3157824 0 -%I 2028 3144144 0 -%I 1364 0 0 0 0 1e+06 1e+06 -%I 2028 3203568 0 -%I 2028 3144144 0 -%I 586.5 0 0 0 0 1e+06 1e+06 -%I 2028 3184496 0 -%I 2028 3179520 0 -%I 1265.5 0 0 0 0 1e+06 1e+06 -%I 2028 3201840 0 -%I 2028 3191360 0 -%I 1408.5 0 0 0 0 1e+06 1e+06 -%I 2028 3216664 0 -%I 2028 3193616 0 -%I 1266 0 0 0 0 1e+06 1e+06 -%I 2028 3199480 0 -%I 2028 3194328 0 -%I 1454 0 0 0 0 1e+06 1e+06 -%I 2028 3216848 0 -%I 2028 3210664 0 -%I 1596 0 0 0 0 1e+06 1e+06 -%I 2028 3229440 0 -%I 2028 3212392 0 -%I 1596 0 0 0 0 1e+06 1e+06 -%I 2028 3234552 0 -%I 2028 3212392 0 -%I 1459.5 0 0 0 0 1e+06 1e+06 -%I 2028 3229256 0 -%I 2028 3224072 0 -%I 1459.5 0 0 0 0 1e+06 1e+06 -%I 2028 3238992 0 -%I 2028 3224784 0 -%I 1602.5 0 0 0 0 1e+06 1e+06 -%I 2028 3234368 0 -%I 2028 3225496 0 -%I 1519.5 0 0 0 0 1e+06 1e+06 -%I 2028 3239176 0 -%I 2028 3237032 0 -%I 297.502 0 0 0 0 1e+06 1e+06 -%I 2028 3246888 0 -%I 2028 3244232 0 -%I 140 -%I 1568 0 0 0 0 1e+06 1e+06 -%I 2028 3165480 0 -%I 2028 1724728 0 -%I 1525.5 0 0 0 0 1e+06 1e+06 -%I 2028 2685544 0 -%I 2028 1725088 0 -%I 1525.5 0 0 0 0 1e+06 1e+06 -%I 2028 2790672 0 -%I 2028 1727856 0 -%I 1541.5 0 0 0 0 1e+06 1e+06 -%I 2028 3151192 0 -%I 2028 1730296 0 -%I 1651 0 0 0 0 1e+06 1e+06 -%I 2028 3161912 0 -%I 2028 1735568 0 -%I 1608.5 0 0 0 0 1e+06 1e+06 -%I 2028 2627648 0 -%I 2028 1736832 0 -%I 1608.5 0 0 0 0 1e+06 1e+06 -%I 2028 2793728 0 -%I 2028 1737640 0 -%I 1624.5 0 0 0 0 1e+06 1e+06 -%I 2028 3147104 0 -%I 2028 2562024 0 -%I 1406 0 0 0 0 1e+06 1e+06 -%I 2028 2589696 0 -%I 2028 2569352 0 -%I 1378.5 0 0 0 0 1e+06 1e+06 -%I 2028 2584352 0 -%I 2028 2571128 0 -%I 1378.5 0 0 0 0 1e+06 1e+06 -%I 2028 2610368 0 -%I 2028 2571840 0 -%I 1346.5 0 0 0 0 1e+06 1e+06 -%I 2028 2613472 0 -%I 2028 2578328 0 -%I 1361.5 0 0 0 0 1e+06 1e+06 -%I 2028 2589512 0 -%I 2028 2580776 0 -%I 1377.5 0 0 0 0 1e+06 1e+06 -%I 2028 2584536 0 -%I 2028 2581624 0 -%I 1748 0 0 0 0 1e+06 1e+06 -%I 2028 3184680 0 -%I 2028 2596192 0 -%I 1690.5 0 0 0 0 1e+06 1e+06 -%I 2028 3161728 0 -%I 2028 2596424 0 -%I 1705.5 0 0 0 0 1e+06 1e+06 -%I 2028 3163240 0 -%I 2028 2598680 0 -%I 1379 0 0 0 0 1e+06 1e+06 -%I 2028 2610552 0 -%I 2028 2603456 0 -%I 1347 0 0 0 0 1e+06 1e+06 -%I 2028 2613656 0 -%I 2028 2606568 0 -%I 1283 0 0 0 0 1e+06 1e+06 -%I 2028 2989840 0 -%I 2028 2617736 0 -%I 1207 0 0 0 0 1e+06 1e+06 -%I 2028 3006280 0 -%I 2028 2620848 0 -%I 1609 0 0 0 0 1e+06 1e+06 -%I 2028 2625920 0 -%I 2028 2623448 0 -%I 1180.5 0 0 0 0 1e+06 1e+06 -%I 2028 2898160 0 -%I 2028 2633848 0 -%I 1180.5 0 0 0 0 1e+06 1e+06 -%I 2028 2903320 0 -%I 2028 2636104 0 -%I 1196.5 0 0 0 0 1e+06 1e+06 -%I 2028 2807712 0 -%I 2028 2638032 0 -%I 1071.5 0 0 0 0 1e+06 1e+06 -%I 2028 2891016 0 -%I 2028 2648096 0 -%I 1071.5 0 0 0 0 1e+06 1e+06 -%I 2028 2894072 0 -%I 2028 2648808 0 -%I 1087.5 0 0 0 0 1e+06 1e+06 -%I 2028 2804144 0 -%I 2028 2651248 0 -%I 963.5 0 0 0 0 1e+06 1e+06 -%I 2028 2883360 0 -%I 2028 2662328 0 -%I 963.5 0 0 0 0 1e+06 1e+06 -%I 2028 2887448 0 -%I 2028 2663040 0 -%I 979.5 0 0 0 0 1e+06 1e+06 -%I 2028 2801056 0 -%I 2028 2608808 0 -%I 848.5 0 0 0 0 1e+06 1e+06 -%I 2028 2876200 0 -%I 2028 2675608 0 -%I 848.5 0 0 0 0 1e+06 1e+06 -%I 2028 2877712 0 -%I 2028 2677864 0 -%I 864.5 0 0 0 0 1e+06 1e+06 -%I 2028 2796968 0 -%I 2028 2678760 0 -%I 1527 0 0 0 0 1e+06 1e+06 -%I 2028 2685728 0 -%I 2028 2683584 0 -%I 1577.5 0 0 0 0 1e+06 1e+06 -%I 2028 2755672 0 -%I 2028 2694464 0 -%I 1592.5 0 0 0 0 1e+06 1e+06 -%I 2028 2752552 0 -%I 2028 2696720 0 -%I 1607.5 0 0 0 0 1e+06 1e+06 -%I 2028 2748936 0 -%I 2028 2697432 0 -%I 1622.5 0 0 0 0 1e+06 1e+06 -%I 2028 2744800 0 -%I 2028 2698176 0 -%I 1502.5 0 0 0 0 1e+06 1e+06 -%I 2028 2771616 0 -%I 2028 2700432 0 -%I 1517.5 0 0 0 0 1e+06 1e+06 -%I 2028 2770056 0 -%I 2028 2701144 0 -%I 1532.5 0 0 0 0 1e+06 1e+06 -%I 2028 2955504 0 -%I 2028 2702888 0 -%I 1547.5 0 0 0 0 1e+06 1e+06 -%I 2028 2952400 0 -%I 2028 2703600 0 -%I 1562.5 0 0 0 0 1e+06 1e+06 -%I 2028 2950840 0 -%I 2028 2707912 0 -%I 1577.5 0 0 0 0 1e+06 1e+06 -%I 2028 2946704 0 -%I 2028 2708624 0 -%I 1592.5 0 0 0 0 1e+06 1e+06 -%I 2028 2941536 0 -%I 2028 2709336 0 -%I 1607.5 0 0 0 0 1e+06 1e+06 -%I 2028 2939976 0 -%I 2028 2711592 0 -%I 1623 0 0 0 0 1e+06 1e+06 -%I 2028 2744984 0 -%I 2028 2736592 0 -%I 1608 0 0 0 0 1e+06 1e+06 -%I 2028 2749120 0 -%I 2028 2738160 0 -%I 1593 0 0 0 0 1e+06 1e+06 -%I 2028 2754280 0 -%I 2028 2741272 0 -%I 1578 0 0 0 0 1e+06 1e+06 -%I 2028 2755856 0 -%I 2028 2744384 0 -%I 1283.5 0 0 0 0 1e+06 1e+06 -%I 2028 3000936 0 -%I 2028 2767608 0 -%I 1298.5 0 0 0 0 1e+06 1e+06 -%I 2028 2983512 0 -%I 2028 2768320 0 -%I 1313.5 0 0 0 0 1e+06 1e+06 -%I 2028 3199296 0 -%I 2028 2664464 0 -%I 1328.5 0 0 0 0 1e+06 1e+06 -%I 2028 2796784 0 -%I 2028 2772456 0 -%I 1343.5 0 0 0 0 1e+06 1e+06 -%I 2028 2800872 0 -%I 2028 2774200 0 -%I 1358.5 0 0 0 0 1e+06 1e+06 -%I 2028 2802384 0 -%I 2028 2776456 0 -%I 1373.5 0 0 0 0 1e+06 1e+06 -%I 2028 2807528 0 -%I 2028 2777168 0 -%I 1389.5 0 0 0 0 1e+06 1e+06 -%I 2028 2912208 0 -%I 2028 2777880 0 -%I 1404.5 0 0 0 0 1e+06 1e+06 -%I 2028 2909152 0 -%I 2028 2780320 0 -%I 1419.5 0 0 0 0 1e+06 1e+06 -%I 2028 2905064 0 -%I 2028 2783272 0 -%I 1419.5 0 0 0 0 1e+06 1e+06 -%I 2028 2793912 0 -%I 2028 2783456 0 -%I 1434.5 0 0 0 0 1e+06 1e+06 -%I 2028 2968872 0 -%I 2028 2785712 0 -%I 1434.5 0 0 0 0 1e+06 1e+06 -%I 2028 2792400 0 -%I 2028 2785896 0 -%I 1132.5 0 0 0 0 1e+06 1e+06 -%I 2028 3072808 0 -%I 2028 2815936 0 -%I 1147.5 0 0 0 0 1e+06 1e+06 -%I 2028 3059040 0 -%I 2028 2816648 0 -%I 1132.5 0 0 0 0 1e+06 1e+06 -%I 2028 2968688 0 -%I 2028 2817360 0 -%I 1163.5 0 0 0 0 1e+06 1e+06 -%I 2028 2903504 0 -%I 2028 2820528 0 -%I 1178.5 0 0 0 0 1e+06 1e+06 -%I 2028 2898344 0 -%I 2028 2825024 0 -%I 1025.5 0 0 0 0 1e+06 1e+06 -%I 2028 3077408 0 -%I 2028 2831720 0 -%I 1040.5 0 0 0 0 1e+06 1e+06 -%I 2028 3062096 0 -%I 2028 2832432 0 -%I 1025.5 0 0 0 0 1e+06 1e+06 -%I 2028 2904880 0 -%I 2028 2833144 0 -%I 1056.5 0 0 0 0 1e+06 1e+06 -%I 2028 2894256 0 -%I 2028 2836296 0 -%I 1071.5 0 0 0 0 1e+06 1e+06 -%I 2028 2892744 0 -%I 2028 2840792 0 -%I 802.5 0 0 0 0 1e+06 1e+06 -%I 2028 3083528 0 -%I 2028 2847472 0 -%I 817.5 0 0 0 0 1e+06 1e+06 -%I 2028 3069752 0 -%I 2028 2848184 0 -%I 802.5 0 0 0 0 1e+06 1e+06 -%I 2028 2912024 0 -%I 2028 2850440 0 -%I 833.5 0 0 0 0 1e+06 1e+06 -%I 2028 2877920 0 -%I 2028 2852048 0 -%I 848.5 0 0 0 0 1e+06 1e+06 -%I 2028 2876384 0 -%I 2028 2857576 0 -%I 917.5 0 0 0 0 1e+06 1e+06 -%I 2028 3080464 0 -%I 2028 2863224 0 -%I 932.5 0 0 0 0 1e+06 1e+06 -%I 2028 3066696 0 -%I 2028 2863936 0 -%I 917.5 0 0 0 0 1e+06 1e+06 -%I 2028 2908968 0 -%I 2028 2866192 0 -%I 948.5 0 0 0 0 1e+06 1e+06 -%I 2028 2889688 0 -%I 2028 2867800 0 -%I 963.5 0 0 0 0 1e+06 1e+06 -%I 2028 2883544 0 -%I 2028 2871272 0 -%I 1592 0 0 0 0 1e+06 1e+06 -%I 2028 2941720 0 -%I 2028 2918288 0 -%I 1607 0 0 0 0 1e+06 1e+06 -%I 2028 2940160 0 -%I 2028 2920888 0 -%I 1562 0 0 0 0 1e+06 1e+06 -%I 2028 2951024 0 -%I 2028 2924000 0 -%I 1577 0 0 0 0 1e+06 1e+06 -%I 2028 2946888 0 -%I 2028 2925568 0 -%I 1532 0 0 0 0 1e+06 1e+06 -%I 2028 2955688 0 -%I 2028 2928680 0 -%I 1547 0 0 0 0 1e+06 1e+06 -%I 2028 2954128 0 -%I 2028 2930248 0 -%I 1502 0 0 0 0 1e+06 1e+06 -%I 2028 2771800 0 -%I 2028 2935416 0 -%I 1517 0 0 0 0 1e+06 1e+06 -%I 2028 2770240 0 -%I 2028 2936984 0 -%I 1282.5 0 0 0 0 1e+06 1e+06 -%I 2028 3152520 0 -%I 2028 2979176 0 -%I 1282.5 0 0 0 0 1e+06 1e+06 -%I 2028 2987600 0 -%I 2028 2979888 0 -%I 1298.5 0 0 0 0 1e+06 1e+06 -%I 2028 2983696 0 -%I 2028 2980600 0 -%I 1206.5 0 0 0 0 1e+06 1e+06 -%I 2028 3157640 0 -%I 2028 2995536 0 -%I 1206.5 0 0 0 0 1e+06 1e+06 -%I 2028 3006096 0 -%I 2028 2996248 0 -%I 1222.5 0 0 0 0 1e+06 1e+06 -%I 2028 3002664 0 -%I 2028 2998504 0 -%I 893.5 0 0 0 0 1e+06 1e+06 -%I 2028 3055920 0 -%I 2028 3013472 0 -%I 908.5 0 0 0 0 1e+06 1e+06 -%I 2028 3051784 0 -%I 2028 3015216 0 -%I 923.5 0 0 0 0 1e+06 1e+06 -%I 2028 3244648 0 -%I 2028 3015928 0 -%I 938.5 0 0 0 0 1e+06 1e+06 -%I 2028 3048168 0 -%I 2028 3016640 0 -%I 953.5 0 0 0 0 1e+06 1e+06 -%I 2028 3045064 0 -%I 2028 3018896 0 -%I 969.5 0 0 0 0 1e+06 1e+06 -%I 2028 3072992 0 -%I 2028 3021848 0 -%I 969.5 0 0 0 0 1e+06 1e+06 -%I 2028 3079136 0 -%I 2028 3021848 0 -%I 969.5 0 0 0 0 1e+06 1e+06 -%I 2028 3080648 0 -%I 2028 3021848 0 -%I 969.5 0 0 0 0 1e+06 1e+06 -%I 2028 3083712 0 -%I 2028 3021848 0 -%I 984.5 0 0 0 0 1e+06 1e+06 -%I 2028 3069936 0 -%I 2028 3024288 0 -%I 999.5 0 0 0 0 1e+06 1e+06 -%I 2028 3066880 0 -%I 2028 3025184 0 -%I 1014.5 0 0 0 0 1e+06 1e+06 -%I 2028 3064336 0 -%I 2028 3028656 0 -%I 1029.5 0 0 0 0 1e+06 1e+06 -%I 2028 3059224 0 -%I 2028 3029552 0 -%I 909 0 0 0 0 1e+06 1e+06 -%I 2028 3051968 0 -%I 2028 3035824 0 -%I 894 0 0 0 0 1e+06 1e+06 -%I 2028 3056104 0 -%I 2028 3038936 0 -%I 954 0 0 0 0 1e+06 1e+06 -%I 2028 3045248 0 -%I 2028 3040504 0 -%I 939 0 0 0 0 1e+06 1e+06 -%I 2028 3048352 0 -%I 2028 3043616 0 -%I 1166.5 0 0 0 0 1e+06 1e+06 -%I 2028 3120008 0 -%I 2028 3092448 0 -%I 1181.5 0 0 0 0 1e+06 1e+06 -%I 2028 3116952 0 -%I 2028 3094704 0 -%I 1196.5 0 0 0 0 1e+06 1e+06 -%I 2028 3114408 0 -%I 2028 3095416 0 -%I 1211.5 0 0 0 0 1e+06 1e+06 -%I 2028 3111352 0 -%I 2028 3096128 0 -%I 1212 0 0 0 0 1e+06 1e+06 -%I 2028 3111536 0 -%I 2028 3100056 0 -%I 1197 0 0 0 0 1e+06 1e+06 -%I 2028 3114592 0 -%I 2028 3101624 0 -%I 1182 0 0 0 0 1e+06 1e+06 -%I 2028 3117136 0 -%I 2028 3105768 0 -%I 1167 0 0 0 0 1e+06 1e+06 -%I 2028 3122248 0 -%I 2028 3108880 0 -%I 1548.5 0 0 0 0 1e+06 1e+06 -%I 2028 3151008 0 -%I 2028 3138224 0 -%I 1563.5 0 0 0 0 1e+06 1e+06 -%I 2028 3146920 0 -%I 2028 3140480 0 -%I 1594.5 0 0 0 0 1e+06 1e+06 -%I 2028 3154760 0 -%I 2028 3144144 0 -%I 1594.5 0 0 0 0 1e+06 1e+06 -%I 2028 3157824 0 -%I 2028 3144144 0 -%I 1594.5 0 0 0 0 1e+06 1e+06 -%I 2028 3203568 0 -%I 2028 3144144 0 -%I 1943.5 0 0 0 0 1e+06 1e+06 -%I 2028 3184496 0 -%I 2028 3179520 0 -%I 1361.5 0 0 0 0 1e+06 1e+06 -%I 2028 3201840 0 -%I 2028 3191360 0 -%I 1361.5 0 0 0 0 1e+06 1e+06 -%I 2028 3216664 0 -%I 2028 3193616 0 -%I 1377.5 0 0 0 0 1e+06 1e+06 -%I 2028 3199480 0 -%I 2028 3194328 0 -%I 1376.5 0 0 0 0 1e+06 1e+06 -%I 2028 3216848 0 -%I 2028 3210664 0 -%I 1376.5 0 0 0 0 1e+06 1e+06 -%I 2028 3229440 0 -%I 2028 3212392 0 -%I 1376.5 0 0 0 0 1e+06 1e+06 -%I 2028 3234552 0 -%I 2028 3212392 0 -%I 1452.5 0 0 0 0 1e+06 1e+06 -%I 2028 3229256 0 -%I 2028 3224072 0 -%I 1467.5 0 0 0 0 1e+06 1e+06 -%I 2028 3238992 0 -%I 2028 3224784 0 -%I 1467.5 0 0 0 0 1e+06 1e+06 -%I 2028 3234368 0 -%I 2028 3225496 0 -%I 1537 0 0 0 0 1e+06 1e+06 -%I 2028 3239176 0 -%I 2028 3237032 0 -%I 924 0 0 0 0 1e+06 1e+06 -%I 2028 3246888 0 -%I 2028 3244232 0 \ No newline at end of file diff --git a/opticsApp/Db/2slit_soft.db b/opticsApp/Db/2slit_soft.db deleted file mode 100644 index 6d6dfea..0000000 --- a/opticsApp/Db/2slit_soft.db +++ /dev/null @@ -1,232 +0,0 @@ -grecord(ao,"$(P)$(SLIT)centerBPut") { - field(DTYP,"Soft Channel") - field(SDIS,"$(P)$(SLIT)center.PACT NPP MS") - field(OUT,"$(P)$(SLIT)center.VAL PP MS") -} -grecord(ao,"$(P)$(SLIT)mXnPut") { - field(DTYP,"Soft Channel") - field(SDIS,"$(P)$(SLIT)syncOp.VAL NPP MS") - field(OUT,"$(P)$(mXn).VAL PP MS") -} -grecord(ao,"$(P)$(SLIT)mXpPut") { - field(DTYP,"Soft Channel") - field(SDIS,"$(P)$(SLIT)syncOp.VAL NPP MS") - field(OUT,"$(P)$(mXp).VAL PP MS") -} -grecord(ao,"$(P)$(SLIT)sizeBPut") { - field(DTYP,"Soft Channel") - field(SDIS,"$(P)$(SLIT)size.PACT NPP MS") - field(OUT,"$(P)$(SLIT)size.VAL PP MS") -} -grecord(ao,"$(P)$(SLIT)vback1") { - field(DTYP,"Soft Channel") - field(OUT,"$(P)$(SLIT)t1.A PP MS") - field(DOL,"$(P)$(mXp).VAL CP NMS") - field(OMSL,"closed_loop") - field(PREC,"3") -} -grecord(ao,"$(P)$(SLIT)vback2") { - field(DTYP,"Soft Channel") - field(OUT,"$(P)$(SLIT)t1.B PP MS") - field(DOL,"$(P)$(mXn).VAL CP NMS") - field(OMSL,"closed_loop") - field(PREC,"3") -} -grecord(ao,"$(P)$(SLIT)xnBPut") { - field(DTYP,"Soft Channel") - field(SDIS,"$(P)$(SLIT)xn.PACT NPP MS") - field(OUT,"$(P)$(SLIT)xn.VAL PP MS") -} -grecord(ao,"$(P)$(SLIT)xpBPut") { - field(DTYP,"Soft Channel") - field(SDIS,"$(P)$(SLIT)xp.PACT NPP MS") - field(OUT,"$(P)$(SLIT)xp.VAL PP MS") -} -grecord(bo,"$(P)$(SLIT)closeGate") { - field(DTYP,"Soft Channel") - field(DISV,"0") - field(SDIS,"$(P)$(SLIT)gate.VAL NPP MS") - field(OMSL,"closed_loop") - field(DOL,"$(P)$(mXn).DMOV CP MS") - field(OUT,"$(P)$(SLIT)gate.VAL PP MS") -} -grecord(bo,"$(P)$(SLIT)gate") { - field(DTYP,"Soft Channel") -} -grecord(bo,"$(P)$(SLIT)gatePut") { - field(DTYP,"Soft Channel") - field(SDIS,"$(P)$(SLIT)syncOp.VAL PP MS") - field(OUT,"$(P)$(SLIT)gate.VAL PP MS") -} -grecord(bo,"$(P)$(SLIT)set") { - field(DTYP,"Soft Channel") - field(FLNK,"$(P)$(SLIT)set1.PROC PP MS") - field(OUT,"$(P)$(mXn).SET PP MS") - field(ZNAM,"Use") - field(ONAM,"Set") -} -grecord(bo,"$(P)$(SLIT)set1") { - field(DTYP,"Soft Channel") - field(OMSL,"closed_loop") - field(DOL,"$(P)$(SLIT)set.VAL NPP NMS") - field(OUT,"$(P)$(mXp).SET PP MS") - field(ZNAM,"Use") - field(ONAM,"Set") -} -grecord(calc,"$(P)$(SLIT)syncOp") { - field(CALC,"a||b") - field(INPA,"$(P)$(SLIT)vback2.PACT NPP MS") - field(INPB,"$(P)$(SLIT)vback1.PACT NPP MS") - field(INPC,"0") -} -grecord(dfanout,"$(P)$(SLIT)stop") { - field(OUTA,"$(P)$(SLIT)xp.STOP CA MS") - field(OUTB,"$(P)$(SLIT)xn.STOP CA MS") - field(OUTC,"$(P)$(SLIT)size.STOP CA MS") - field(OUTD,"$(P)$(SLIT)center.STOP CA MS") - field(DOL,"1") -} -grecord(fanout,"$(P)$(SLIT)sync") { - field(PHAS,"0") - field(LNK1,"$(P)$(SLIT)vback1.PROC CA MS") - field(LNK2,"$(P)$(SLIT)vback2.PROC CA MS") -} -grecord(seq,"$(P)$(SLIT)init") { - field(PINI,"YES") - field(PREC,"1") - field(DLY1,"5") - field(LNK1,"$(P)$(SLIT)sync.PROC PP MS") - field(DLY2,"0") - field(LNK2,"0") -} -grecord(transform,"$(P)$(SLIT)t1") { - field(DESC,"xp(a),xn(b)->size(c),center") - field(CLCA,"d+c/2") - field(CLCB,"d-c/2") - field(CLCC,"a-b") - field(CLCD,"(a+b)/2") - field(CLCF,"a") - field(CLCG,"b") - field(INPE,"1") - field(OUTA,"$(P)$(SLIT)xpBPut.VAL PP MS") - field(OUTB,"$(P)$(SLIT)xnBPut.VAL PP MS") - field(OUTC,"$(P)$(SLIT)sizeBPut.VAL PP MS") - field(OUTD,"$(P)$(SLIT)centerBPut.VAL PP MS") - field(OUTE,"$(P)$(SLIT)gatePut.VAL PP MS") - field(OUTF,"$(P)$(SLIT)mXpPut.VAL PP MS") - field(OUTG,"$(P)$(SLIT)mXnPut.VAL PP MS") - field(PREC,"3") - field(CMTA,"X+ slit") - field(CMTB,"X- slit") - field(CMTC,"size") - field(CMTD,"center") - field(CMTE,"gate") - field(CMTF,"send X+ to motor") - field(CMTG,"send X- to motor") -} -grecord(transform,"$(P)$(SLIT)t2") { - field(DESC,"xp(a), xn(b)->siz(c),cntr(d)") - field(CLCC,"a-b") - field(CLCD,"(a+b)/2") - field(CLCE,"g&&h&&!f") - field(INPA,"$(P)$(mXp).RBV CP MS") - field(INPB,"$(P)$(mXn).RBV CP MS") - field(INPF,"$(P)$(SLIT)gate.VAL CP MS") - field(INPG,"$(P)$(mXp).DMOV CP MS") - field(INPH,"$(P)$(mXn).DMOV CP MS") - field(EGU,"mm") - field(PREC,"5") - field(CMTA,"X+ slit") - field(CMTB,"X- slit") - field(CMTC,"Size") - field(CMTD,"Center") - field(CMTE,"Done") - field(CMTG,"X+ motor-done input") - field(CMTH,"X- motor-done input") -} -grecord(transform,"$(P)$(SLIT)t2_old") { - field(DESC,"xp(a),xn(b)->siz(c),cntr(d)") - field(CLCC,"A-B") - field(CLCD,"(A+B)/2") - field(PREC,"3") -} -grecord(transform,"$(P)$(SLIT)t3") { - field(PHAS,"0") - field(CLCE,"a-d") - field(CLCF,"b-c") - field(CLCG,"(a+c)/2") - field(CLCH,"(b+d)/2") - field(INPA,"$(P)$(mXp).LLM CP NMS") - field(INPB,"$(P)$(mXp).HLM CP NMS") - field(INPC,"$(P)$(mXn).LLM CP NMS") - field(INPD,"$(P)$(mXn).HLM CP NMS") - field(OUTA,"$(P)$(SLIT)xp.LLM NPP MS") - field(OUTB,"$(P)$(SLIT)xp.HLM NPP MS") - field(OUTC,"$(P)$(SLIT)xn.LLM NPP MS") - field(OUTD,"$(P)$(SLIT)xn.HLM NPP MS") - field(OUTE,"$(P)$(SLIT)size.LLM NPP MS") - field(OUTF,"$(P)$(SLIT)size.HLM NPP MS") - field(OUTG,"$(P)$(SLIT)center.LLM NPP MS") - field(OUTH,"$(P)$(SLIT)center.HLM NPP MS") - field(PREC,"3") -} -grecord(scalcout,"$(P)$(SLIT)mXn_nameCalc") { - field(CALC,"aa[0,'.']") - field(INAA,"$(P)$(SLIT)mXnPut.OUT CPP") -} -grecord(scalcout,"$(P)$(SLIT)mXp_nameCalc") { - field(CALC,"aa[0,'.']") - field(INAA,"$(P)$(SLIT)mXpPut.OUT CPP") -} -grecord(motor,"$(P)$(SLIT)center") { - field(DESC,"$(SLIT) Center") - field(DTYP,"Soft Channel") - field(OUT,"$(P)$(SLIT)t1.D PP MS") - field(RDBL,"$(P)$(SLIT)t2.D NPP MS") - field(MRES,".00025") - field(RRES,"1") - field(URIP,"Yes") - field(PREC,"5") - field(EGU,"mm") - field(TWV,"1") - field(DINP,"$(P)$(SLIT)t2.E NPP MS") -} -grecord(motor,"$(P)$(SLIT)size") { - field(DESC,"$(SLIT) Size") - field(DTYP,"Soft Channel") - field(OUT,"$(P)$(SLIT)t1.C PP MS") - field(RDBL,"$(P)$(SLIT)t2.C NPP MS") - field(MRES,".00025") - field(RRES,"1") - field(URIP,"Yes") - field(PREC,"5") - field(EGU,"mm") - field(TWV,"1") - field(DINP,"$(P)$(SLIT)t2.E NPP MS") -} -grecord(motor,"$(P)$(SLIT)xn") { - field(DESC,"$(SLIT) X-") - field(DTYP,"Soft Channel") - field(OUT,"$(P)$(SLIT)t1.B PP MS") - field(RDBL,"$(P)$(SLIT)t2.B NPP MS") - field(MRES,".00025") - field(RRES,"1") - field(URIP,"Yes") - field(PREC,"5") - field(EGU,"mm") - field(TWV,"1") - field(DINP,"$(P)$(SLIT)t2.E NPP MS") -} -grecord(motor,"$(P)$(SLIT)xp") { - field(DESC,"$(SLIT) X+") - field(DTYP,"Soft Channel") - field(OUT,"$(P)$(SLIT)t1.A PP MS") - field(RDBL,"$(P)$(SLIT)t2.A NPP MS") - field(MRES,".00025") - field(RRES,"1") - field(URIP,"Yes") - field(PREC,"5") - field(EGU,"mm") - field(TWV,"1") - field(DINP,"$(P)$(SLIT)t2.E NPP MS") -} diff --git a/opticsApp/Db/2slit_soft.vdb b/opticsApp/Db/2slit_soft.vdb new file mode 100644 index 0000000..4ab4d9e --- /dev/null +++ b/opticsApp/Db/2slit_soft.vdb @@ -0,0 +1,798 @@ +# Solved: when the slit is stopped, the hard motors are rarely in exactly +# the positions they should be, because one was started slightly before the +# other. Thus, if you move 'center' and stop during the move, 'size' will sync +# to a slightly new value. +# New sync strategy: +# If 'center' was moved and stopped, calc new positions for (xn,xp) so that +# 'size' will be preserved, move hard motors to those positions, and sync. +# if 'size' was moved and stopped, calc new positions for (xn,xp) so that +# 'center' will be preserved, move hard motors to those positions, and sync. +# if xn or xp was moved, just sync. +# + +#! Generated by VisualDCT v2.6 +#! DBDSTART +#! DBDEND + + +record(transform, "$(P)$(SLIT)setMonitor") { + field(INPA, "$(P)$(SLIT)xp.SET CP") + field(INPB, "$(P)$(SLIT)xn.SET CP") + field(INPC, "$(P)$(SLIT)size.SET CP") + field(INPD, "$(P)$(SLIT)center.SET CP") + field(CLCE, "a||b||c||d") + field(OUTE, "$(P)$(mXn).SET CA") + field(CLCF, "e") + field(OUTF, "$(P)$(mXp).SET CA") + +} +record(bo, "$(P)$(SLIT)set1") { + field(DTYP, "Soft Channel") + field(OMSL, "closed_loop") + field(DOL, "$(P)$(SLIT)set.VAL NPP NMS") + field(OUT, "$(P)$(mXp).SET PP MS") + field(ZNAM, "Use") + field(ONAM, "Set") +} + +record(bo, "$(P)$(SLIT)set") { + field(DTYP, "Soft Channel") + field(FLNK, "$(P)$(SLIT)set1 PP MS") + field(OUT, "$(P)$(mXn).SET PP MS") + field(ZNAM, "Use") + field(ONAM, "Set") +} + +# Listen to all soft motors' .STOP fields. If any go to 1, stop all +# soft and hard motors. (We have to stop soft motors so they'll know that +# they're supposed to sync to hard motor values when the move ends.) +# But if we write to the .STOP fields we're monitoring, we don't want to +# respond to monitors from our own writes. +# Thus, when we write, weSaidStop disables that response. +record(bo, "$(P)$(SLIT)weSaidStop") { + #field(TPRO, "1") + field(ZNAM, "No") + field(ONAM, "Yes") +} +record(transform, "$(P)$(SLIT)monitorStop") { + #field(TPRO, "1") + field(SDIS, "$(P)$(SLIT)weSaidStop") + field(DISV, "1") + # listen to our soft motors' .STOP fields + field(INPA, "$(P)$(SLIT)xp.STOP CP MS") + field(INPB, "$(P)$(SLIT)xn.STOP CP MS") + field(INPC, "$(P)$(SLIT)size.STOP CP MS") + field(INPD, "$(P)$(SLIT)center.STOP CP MS") + # also listen to the soft motors of the other 2slit_soft database + # that we're paired with (if it exists) + field(INPE, "$(P)$(PAIRED_WITH=)xp.STOP CP MS") + field(INPF, "$(P)$(PAIRED_WITH=)xn.STOP CP MS") + field(INPG, "$(P)$(PAIRED_WITH=)size.STOP CP MS") + field(INPH, "$(P)$(PAIRED_WITH=)center.STOP CP MS") + # I==any soft motor was told to stop + field(CLCI, "a||b||c||d||e||f||g||h") + field(OUTI, "$(P)$(SLIT)weSaidStop PP MS") + # don't write to the .STOP field that triggered us to process + field(CMTJ, "bitmask for doStop") + field(CLCJ, "!a+!b*2+!c*4+!d*8+16+32+64") + field(OUTK, "$(P)$(SLIT)doStop.PROC PP") +} +record(seq, "$(P)$(SLIT)doStop") { + #field(TPRO, "1") + field(SDIS, "$(P)$(SLIT)weSaidStop") + field(DISV, "0") + field(SELL, "$(P)$(SLIT)monitorStop.J") + field(SELM, "Mask") + field(DOL1, "1") + field(LNK1, "$(P)$(SLIT)xp.STOP PP") + field(DOL2, "1") + field(LNK2, "$(P)$(SLIT)xn.STOP PP") + field(DOL3, "1") + field(LNK3, "$(P)$(SLIT)size.STOP PP") + field(DOL4, "1") + field(LNK4, "$(P)$(SLIT)center.STOP PP") + field(DOL5, "1") + field(LNK5, "$(P)$(mXp).STOP PP") + field(DOL6, "1") + field(LNK6, "$(P)$(mXn).STOP PP") + # We need to wait for all the postings resulting from puts to stop_* + # fields to be received by monitorStop's CP links before enabling + # that record to respond to new postings of those fields. Writing + # with a CA link should ensure that, but delaying by 0.1 s provides + # additional protection. + # On second thought, try leaving weSaidStop==1 until the motors stop. + #field(DOL7, "0") + #field(DLY7, ".1") + #field(LNK7, "$(P)$(SLIT)weSaidStop CA") +} + +record(motor, "$(P)$(SLIT)xp") { + field(DESC, "$(SLIT) X+") + # ignore the SET field, we're going to implement it in the database, rather + # than in individual motor records + field(IGSET, "1") + # spec might be able to use this alias + alias("$(P)$(SLIT)m2") + field(DTYP, "Soft Channel") + field(OUT, "$(P)$(SLIT)tFwd.A PP MS") + field(RDBL, "$(P)$(SLIT)tRev.A NPP MS") + field(MRES, ".00001") + field(RRES, "1") + field(URIP, "Yes") + field(PREC, "5") + field(EGU, "mm") + field(TWV, "1") + field(DINP, "$(P)$(SLIT)calcDone.VAL NPP MS") + field(RTRY, "0") +} + +record(motor, "$(P)$(SLIT)xn") { + field(DESC, "$(SLIT) X-") + field(IGSET, "1") + alias("$(P)$(SLIT)m1") + field(DTYP, "Soft Channel") + field(OUT, "$(P)$(SLIT)tFwd.B PP MS") + field(RDBL, "$(P)$(SLIT)tRev.B NPP MS") + field(MRES, ".00001") + field(RRES, "1") + field(URIP, "Yes") + field(PREC, "5") + field(EGU, "mm") + field(TWV, "1") + field(DINP, "$(P)$(SLIT)calcDone.VAL NPP MS") + field(RTRY, "0") +} + +record(motor, "$(P)$(SLIT)size") { + field(DESC, "$(SLIT) Size") + field(IGSET, "1") + alias("$(P)$(SLIT)m3") + field(DTYP, "Soft Channel") + field(OUT, "$(P)$(SLIT)tFwd.C PP MS") + field(RDBL, "$(P)$(SLIT)tRev.C NPP MS") + field(MRES, ".00001") + field(RRES, "1") + field(URIP, "Yes") + field(PREC, "5") + field(EGU, "mm") + field(TWV, "1") + field(DINP, "$(P)$(SLIT)calcDone.VAL NPP MS") + field(RTRY, "0") +} + +record(motor, "$(P)$(SLIT)center") { + field(DESC, "$(SLIT) Center") + field(IGSET, "1") + alias("$(P)$(SLIT)m4") + field(DTYP, "Soft Channel") + field(OUT, "$(P)$(SLIT)tFwd.D PP MS") + field(RDBL, "$(P)$(SLIT)tRev.D NPP MS") + field(MRES, ".00001") + field(RRES, "1") + field(URIP, "Yes") + field(PREC, "5") + field(EGU, "mm") + field(TWV, "1") + field(DINP, "$(P)$(SLIT)calcDone.VAL NPP MS") + field(RTRY, "0") +} +record(transform, "$(P)$(SLIT)spectator") { +} +record(transform, "$(P)$(SLIT)latchSpectator") { + # latch values of spectator, so we'll know who started this move + field(SDIS, "$(P)$(SLIT)newMove") + field(DISV, "1") + field(INPA, "$(P)$(SLIT)spectator.A") + field(INPB, "$(P)$(SLIT)spectator.B") + field(INPC, "$(P)$(SLIT)spectator.C") + field(INPD, "$(P)$(SLIT)spectator.D") +} + +record(ao, "$(P)$(SLIT)xpBPut") { + field(DTYP, "Soft Channel") + field(SDIS, "$(P)$(SLIT)xp.PACT NPP MS") + field(OUT, "$(P)$(SLIT)xp.VAL PP MS") + field(FLNK, "$(P)$(SLIT)xpWasPassive") +} +# If xpWasPassive processes, xp didn't cause the move +record(bo, "$(P)$(SLIT)xpWasPassive") { + field(DOL, "1") + field(OUT, "$(P)$(SLIT)spectator.A PP") +} + +record(ao, "$(P)$(SLIT)xnBPut") { + field(DTYP, "Soft Channel") + field(SDIS, "$(P)$(SLIT)xn.PACT NPP MS") + field(OUT, "$(P)$(SLIT)xn.VAL PP MS") + field(FLNK, "$(P)$(SLIT)xnWasPassive") +} +record(bo, "$(P)$(SLIT)xnWasPassive") { + field(DOL, "1") + field(OUT, "$(P)$(SLIT)spectator.B PP") +} + +record(ao, "$(P)$(SLIT)sizeBPut") { + field(DTYP, "Soft Channel") + field(SDIS, "$(P)$(SLIT)size.PACT NPP MS") + field(OUT, "$(P)$(SLIT)size.VAL PP MS") + field(FLNK, "$(P)$(SLIT)sizeWasPassive") +} +record(bo, "$(P)$(SLIT)sizeWasPassive") { + field(DOL, "1") + field(OUT, "$(P)$(SLIT)spectator.C PP") +} + +record(ao, "$(P)$(SLIT)centerBPut") { + field(DTYP, "Soft Channel") + field(SDIS, "$(P)$(SLIT)center.PACT NPP MS") + field(OUT, "$(P)$(SLIT)center.VAL PP MS") + field(FLNK, "$(P)$(SLIT)centerWasPassive") +} +record(bo, "$(P)$(SLIT)centerWasPassive") { + field(DOL, "1") + field(OUT, "$(P)$(SLIT)spectator.D PP") +} + +record(ao, "$(P)$(SLIT)mXnPut") { + field(DTYP, "Soft Channel") + field(OUT, "$(P)$(mXn).VAL PP MS") +} + +record(ao, "$(P)$(SLIT)mXpPut") { + field(DTYP, "Soft Channel") + field(OUT, "$(P)$(mXp).VAL PP MS") +} + +record(calcout, "$(P)$(SLIT)closeGate") { + field(SDIS, "$(P)$(SLIT)gate.VAL NPP MS") + field(DISV, "0") + field(INPA, "$(P)$(mXn).DMOV CP ") + field(CALC, "!a") + field(OUT, "$(P)$(SLIT)gate.VAL PP MS") +} + +record(bo, "$(P)$(SLIT)gate") { + field(DTYP, "Soft Channel") + field(OUT, "$(P)$(SLIT)setSoftMove PP") + field(ZNAM, "Closed") + field(ONAM, "Open") +} + +record(bo, "$(P)$(SLIT)gatePut") { + field(DTYP, "Soft Channel") + field(OUT, "$(P)$(SLIT)gate.VAL PP MS") +} + +record(scalcout, "$(P)$(SLIT)mXn_nameCalc") { + field(CALC, "aa[0,'.']") + field(INAA, "$(P)$(SLIT)mXnPut.OUT CPP") +} + +record(scalcout, "$(P)$(SLIT)mXp_nameCalc") { + field(CALC, "aa[0,'.']") + field(INAA, "$(P)$(SLIT)mXpPut.OUT CPP") +} + +record(transform, "$(P)$(SLIT)tFwd") { + field(DESC, "xp(a),xn(b)->size(c),center") + field(CLCA, "d+c/2") + field(CLCB, "d-c/2") + field(CLCC, "a-b") + field(CLCD, "(a+b)/2") + field(CLCF, "a") + field(CLCG, "b") + field(INPE, "1") + field(OUTA, "$(P)$(SLIT)xpBPut.VAL PP MS") + field(OUTB, "$(P)$(SLIT)xnBPut.VAL PP MS") + field(OUTC, "$(P)$(SLIT)sizeBPut.VAL PP MS") + field(OUTD, "$(P)$(SLIT)centerBPut.VAL PP MS") + field(OUTE, "$(P)$(SLIT)gatePut.VAL PP MS") + field(OUTF, "$(P)$(SLIT)writeMotors.PROC PP MS") + field(PREC, "3") + field(CMTA, "X+ slit") + field(CMTB, "X- slit") + field(CMTC, "size") + field(CMTD, "center") + field(CMTE, "gate") + field(CMTF, "send X+ to motor") + field(CMTG, "send X- to motor") + field(OUTH, "$(P)$(SLIT)latchSpectator.PROC PP") + field(I, "1") + field(OUTI, "$(P)$(SLIT)newMove PP") +} +record(bo, "$(P)$(SLIT)newMove") { + field(DTYP, "Soft Channel") +} + +record(bo, "$(P)$(SLIT)setSoftMove") { + field(SDIS, "$(P)$(SLIT)gate") + field(DISV, "0") + field(OUT, "$(P)$(SLIT)isSoftMove PP") +} + +record(bo, "$(P)$(SLIT)clearSoftMove") { + field(OUT, "$(P)$(SLIT)isSoftMove PP") +} +record(dfanout, "$(P)$(SLIT)isSoftMove") { + field(OUTA, "$(P)$(SLIT)xp.LOCK") + field(OUTB, "$(P)$(SLIT)xn.LOCK") + field(OUTC, "$(P)$(SLIT)size.LOCK") + field(OUTD, "$(P)$(SLIT)center.LOCK") +} + +record(calcout, "$(P)$(SLIT)calcDone") { + field(CALC, "b&&c&&!a") + field(INPA, "$(P)$(SLIT)gate.VAL CP") + field(INPB, "$(P)$(mXp).DMOV CP") + field(INPC, "$(P)$(mXn).DMOV CP") + field(OUT, "$(P)$(SLIT)doDoneStuff.PROC PP") + field(OOPT, "Transition To Non-zero") +} + +record(seq, "$(P)$(SLIT)doDoneStuff") { + # leave instructions to do a sync when everything is done + field(DOL1, "$(P)$(SLIT)weSaidStop") + field(LNK1, "$(P)$(SLIT)maybeSync.A NPP") + # clean up after move + field(DOL2, "0") + field(LNK2, "$(P)$(SLIT)weSaidStop PP") + field(LNK3, "$(P)$(SLIT)clearSoftMove.PROC PP") + # maybe sync to hard motor commanded positions, but only after soft motors + # have responded to calcDone. CA link should be enough to get this + # ordering right. + field(DLY4, "0") + field(LNK4, "$(P)$(SLIT)maybeSync.PROC CA") + field(DOL5, "0") + field(LNK5, "$(P)$(SLIT)newMove PP") + field(DOL6, "0") + field(LNK6, "$(P)$(SLIT)spectator.A PP") + + field(DOL7, "0") + field(LNK7, "$(P)$(SLIT)spectator.B PP") + + field(DOL8, "0") + field(LNK8, "$(P)$(SLIT)spectator.C PP") + + field(DOL9, "0") + field(LNK9, "$(P)$(SLIT)spectator.D PP") +} + +### initialization +record(calcout, "$(P)$(SLIT)mXpPosted") { + #field(TPRO, "1") + field(INPA, "$(P)$(mXp) CP") + field(CALC, "1") + field(OUT, "$(P)$(SLIT)initAfterMotorRbv.A PP") +} +record(calcout, "$(P)$(SLIT)mXnPosted") { + #field(TPRO, "1") + field(INPA, "$(P)$(mXn) CP") + field(CALC, "1") + field(OUT, "$(P)$(SLIT)initAfterMotorRbv.B PP") +} +record(calcout, "$(P)$(SLIT)initAfterMotorRbv") { + field(SDIS, "$(P)$(SLIT)initialized") + field(DISV, "1") + field(CALC, "a&&b") + field(OOPT, "When Non-zero") + field(OUT, "$(P)$(SLIT)doInit PP") +} +record(seq, "$(P)$(SLIT)doInit") { + field(LNK1, "$(P)$(SLIT)tSync.PROC PP") + field(DOL2, "1") + field(LNK2, "$(P)$(SLIT)initialized PP") +} +record(bo, "$(P)$(SLIT)initialized") { +} + +### sync +record(calcout, "$(P)$(SLIT)syncOrInit") { + field(INPA, "$(P)$(SLIT)doSync") + field(INPB, "$(P)$(SLIT)doInit") + field(CALC, "a||b") +} +# manual sync to hard motor commanded positions +# Maybe this can be automated for cases the soft motors don't handle well. +record(calcout, "$(P)$(SLIT)maybeSync") { + field(CALC, "A") + field(OOPT, "When Non-zero") + field(OUT, "$(P)$(SLIT)doSync PP") +} +record(bo, "$(P)$(SLIT)doSync") { + field(OUT, "$(P)$(SLIT)doSyncPut PP") +} +# only process sync command, not reset from that command +record(bo, "$(P)$(SLIT)doSyncPut") { + field(SDIS, "$(P)$(SLIT)doSync") + field(DISV, "0") + field(OUT, "$(P)$(SLIT)tSyncCalc.PROC PP") +} +# if center was moved and stopped, calc new positions for (xn,xp) so that +# size will be preserved, move hard motors to those positions, and sync. +# if size was moved and stopped, calc new positions for (xn,xp) so that +# center will be preserved, move hard motors to those positions, and sync. +# if xn or xp was moved, just sync. +record(transform, "$(P)$(SLIT)tSyncCalc") { + field(SDIS, "$(P)$(SLIT)doSync") + field(DISV, "0") + field(EGU, "mm") + field(PREC, "5") + + # who caused move? + field(CMTA, "size didn't cause move") + field(INPA, "$(P)$(SLIT)latchSpectator.C") + field(CMTB, "center didn't cause move") + field(INPB, "$(P)$(SLIT)latchSpectator.D") + # commanded size, center + field(CMTC, "commanded size") + field(INPC, "$(P)$(SLIT)tFwd.C") + field(CMTD, "commanded center") + field(INPD, "$(P)$(SLIT)tFwd.D") + # current mXp, mXn + field(INPE, "$(P)$(mXp)") + field(INPF, "$(P)$(mXn)") + # calc mXp for corrective move + # if size caused move, center + current_size/2, else + # if center caused move, current_center + size/2, + # else current mXp + field(CMTG, "mXp for corrective move") + field(CLCG, "(a==0)?(d+(e-f)/2):((b==0)?((e+f+c)/2):e)") + # calc mXn for corrective move + # if size caused move, center - current_size/2, else + # if center caused move, current_center - size/2, + # else current mXn + field(CMTH, "mXn for corrective move") + field(CLCH, "(a==0)?(d-(e-f)/2):((b==0)?((e+f-c)/2):f)") + field(FLNK, "$(P)$(SLIT)adjustMotors") +} +record(sseq, "$(P)$(SLIT)adjustMotors") { + field(SDIS, "$(P)$(SLIT)doSync") + field(DISV, "0") + + field(DOL1, "$(P)$(SLIT)tSyncCalc.G") + field(LNK1, "$(P)$(mXp) CA") + field(WAIT1, "After2") + + field(DOL2, "$(P)$(SLIT)tSyncCalc.H") + field(LNK2, "$(P)$(mXn) CA") + field(WAIT2, "After2") + + field(LNK3, "$(P)$(SLIT)tSync.PROC PP") +} +record(transform, "$(P)$(SLIT)tSync") { + field(DESC, "xp(a), xn(b)->siz(c),cntr(d)") + field(SDIS, "$(P)$(SLIT)syncOrInit PP") + field(DISV, "0") + field(EGU, "mm") + field(PREC, "5") + + field(CMTA, "X+ slit") + field(INPA, "$(P)$(mXp)") + field(OUTA, "$(P)$(SLIT)tFwd.A NPP") + + field(CMTB, "X- slit") + field(INPB, "$(P)$(mXn)") + field(OUTB, "$(P)$(SLIT)tFwd.B NPP") + + field(CMTC, "Size") + field(CLCC, "a-b") + field(OUTC, "$(P)$(SLIT)tFwd.C NPP") + + field(CMTD, "Center") + field(CLCD, "(a+b)/2") + field(OUTD, "$(P)$(SLIT)tFwd.D NPP") + + field(CMTE, "process tFwd") + field(CLCE, "0") + field(OUTE, "$(P)$(SLIT)tFwd.PROC PP") + + field(CMTF, "close gate") + field(CLCF, "0") + field(OUTF, "$(P)$(SLIT)gate PP") + + field(CMTM, "clear doSync") + field(M, "0") + field(OUTM, "$(P)$(SLIT)doSync NPP") + + field(CMTL, "clear doInit") + field(L, "0") + field(OUTL, "$(P)$(SLIT)doInit NPP") +} + +record(transform, "$(P)$(SLIT)tRev") { + field(DESC, "xp(a), xn(b)->siz(c),cntr(d)") + field(CLCC, "a-b") + field(CLCD, "(a+b)/2") + field(INPA, "$(P)$(mXp).RBV CP MS") + field(INPB, "$(P)$(mXn).RBV CP MS") + field(EGU, "mm") + field(PREC, "5") + field(CMTA, "X+ slit") + field(CMTB, "X- slit") + field(CMTC, "Size") + field(CMTD, "Center") +} + +record(transform, "$(P)$(SLIT)tLimits") { + field(PHAS, "0") + field(CLCE, "a-d") + field(CLCF, "b-c") + field(CLCG, "(a+c)/2") + field(CLCH, "(b+d)/2") + field(INPA, "$(P)$(mXp).LLM CP NMS") + field(INPB, "$(P)$(mXp).HLM CP NMS") + field(INPC, "$(P)$(mXn).LLM CP NMS") + field(INPD, "$(P)$(mXn).HLM CP NMS") + field(OUTA, "$(P)$(SLIT)xp.LLM NPP MS") + field(OUTB, "$(P)$(SLIT)xp.HLM NPP MS") + field(OUTC, "$(P)$(SLIT)xn.LLM NPP MS") + field(OUTD, "$(P)$(SLIT)xn.HLM NPP MS") + field(OUTE, "$(P)$(SLIT)size.LLM NPP MS") + field(OUTF, "$(P)$(SLIT)size.HLM NPP MS") + field(OUTG, "$(P)$(SLIT)center.LLM NPP MS") + field(OUTH, "$(P)$(SLIT)center.HLM NPP MS") + field(PREC, "3") +} + +record(sseq, "$(P)$(SLIT)writeMotors") { + field(SDIS, "$(P)$(SLIT)syncOrInit PP") + field(DISV, "1") + field(DLY1, ".02") + field(DOL1, "$(P)$(SLIT)tFwd.F") + field(LNK1, "$(P)$(SLIT)mXpPut PP") + field(DOL2, "$(P)$(SLIT)tFwd.G") + field(LNK2, "$(P)$(SLIT)mXnPut PP") +} + +#! Further lines contain data used by VisualDCT +#! View(507,640,0.8) +#! Record("$(P)$(SLIT)set1",1980,539,0,1,"$(P)$(SLIT)set1") +#! Field("$(P)$(SLIT)set1.DOL",16777215,0,"$(P)$(SLIT)set1.DOL") +#! Link("$(P)$(SLIT)set1.DOL","$(P)$(SLIT)set.VAL") +#! Field("$(P)$(SLIT)set1.OUT",16777215,1,"$(P)$(SLIT)set1.OUT") +#! Record("$(P)$(SLIT)set",1980,413,0,0,"$(P)$(SLIT)set") +#! Field("$(P)$(SLIT)set.OUT",16777215,1,"$(P)$(SLIT)set.OUT") +#! Link("$(P)$(SLIT)set.OUT","$(P)$(SLIT)set/OUT") +#! Field("$(P)$(SLIT)set.VAL",16777215,0,"$(P)$(SLIT)set.VAL") +#! Field("$(P)$(SLIT)set.FLNK",16777215,1,"$(P)$(SLIT)set.FLNK") +#! Link("$(P)$(SLIT)set.FLNK","$(P)$(SLIT)set/FLNK") +#! Connector("$(P)$(SLIT)set/FLNK","$(P)$(SLIT)set1",2200,599,16777215,"",0) +#! Connector("$(P)$(SLIT)set/OUT",null,2200,560,16777215,"",2) +#! Record("$(P)$(SLIT)stop",440,273,0,0,"$(P)$(SLIT)stop") +#! Field("$(P)$(SLIT)stop.OUTA",16711680,1,"$(P)$(SLIT)stop.OUTA") +#! Link("$(P)$(SLIT)stop.OUTA","$(P)$(SLIT)xp.STOP") +#! Field("$(P)$(SLIT)stop.OUTB",16711680,1,"$(P)$(SLIT)stop.OUTB") +#! Link("$(P)$(SLIT)stop.OUTB","$(P)$(SLIT)xn.STOP") +#! Field("$(P)$(SLIT)stop.OUTC",16711680,1,"$(P)$(SLIT)stop.OUTC") +#! Link("$(P)$(SLIT)stop.OUTC","$(P)$(SLIT)size.STOP") +#! Field("$(P)$(SLIT)stop.OUTD",16711680,1,"$(P)$(SLIT)stop.OUTD") +#! Link("$(P)$(SLIT)stop.OUTD","$(P)$(SLIT)center.STOP") +#! Record("$(P)$(SLIT)xp",840,374,0,0,"$(P)$(SLIT)xp") +#! Field("$(P)$(SLIT)xp.PACT",16777215,1,"$(P)$(SLIT)xp.PACT") +#! Field("$(P)$(SLIT)xp.VAL",16777215,0,"$(P)$(SLIT)xp.VAL") +#! Field("$(P)$(SLIT)xp.STOP",16711680,0,"$(P)$(SLIT)xp.STOP") +#! Field("$(P)$(SLIT)xp.HLM",52224,0,"$(P)$(SLIT)xp.HLM") +#! Field("$(P)$(SLIT)xp.LLM",52224,0,"$(P)$(SLIT)xp.LLM") +#! Field("$(P)$(SLIT)xp.OUT",16777215,1,"$(P)$(SLIT)xp.OUT") +#! Link("$(P)$(SLIT)xp.OUT","$(P)$(SLIT)xp/OUT") +#! Field("$(P)$(SLIT)xp.RDBL",16777215,0,"$(P)$(SLIT)xp.RDBL") +#! Link("$(P)$(SLIT)xp.RDBL","$(P)$(SLIT)xp/RDBL") +#! Field("$(P)$(SLIT)xp.DINP",16750848,0,"$(P)$(SLIT)xp.DINP") +#! Link("$(P)$(SLIT)xp.DINP","$(P)$(SLIT)xp/DINP") +#! Field("$(P)$(SLIT)xp.LOCK",65484,0,"$(P)$(SLIT)xp.LOCK") +#! Connector("$(P)$(SLIT)xp/DINP","$(P)$(SLIT)calcDone.VAL",740,1300,16750848,"",0) +#! Connector("$(P)$(SLIT)xp/RDBL","$(P)$(SLIT)tRev.A",680,930,16777215,"",0) +#! Connector("$(P)$(SLIT)xp/OUT","$(P)$(SLIT)tFwd.A",1360,750,16777215,"",0) +#! Record("$(P)$(SLIT)xpBPut",1100,502,0,0,"$(P)$(SLIT)xpBPut") +#! Field("$(P)$(SLIT)xpBPut.SDIS",16777215,0,"$(P)$(SLIT)xpBPut.SDIS") +#! Link("$(P)$(SLIT)xpBPut.SDIS","$(P)$(SLIT)xp.PACT") +#! Field("$(P)$(SLIT)xpBPut.OUT",16777215,0,"$(P)$(SLIT)xpBPut.OUT") +#! Link("$(P)$(SLIT)xpBPut.OUT","$(P)$(SLIT)xp.VAL") +#! Field("$(P)$(SLIT)xpBPut.VAL",16777215,1,"$(P)$(SLIT)xpBPut.VAL") +#! Record("$(P)$(SLIT)xn",840,654,0,0,"$(P)$(SLIT)xn") +#! Field("$(P)$(SLIT)xn.PACT",16777215,1,"$(P)$(SLIT)xn.PACT") +#! Field("$(P)$(SLIT)xn.VAL",16777215,0,"$(P)$(SLIT)xn.VAL") +#! Field("$(P)$(SLIT)xn.STOP",16711680,0,"$(P)$(SLIT)xn.STOP") +#! Field("$(P)$(SLIT)xn.HLM",52224,0,"$(P)$(SLIT)xn.HLM") +#! Field("$(P)$(SLIT)xn.LLM",52224,0,"$(P)$(SLIT)xn.LLM") +#! Field("$(P)$(SLIT)xn.OUT",16777215,1,"$(P)$(SLIT)xn.OUT") +#! Link("$(P)$(SLIT)xn.OUT","$(P)$(SLIT)xn/OUT") +#! Field("$(P)$(SLIT)xn.RDBL",16777215,0,"$(P)$(SLIT)xn.RDBL") +#! Link("$(P)$(SLIT)xn.RDBL","$(P)$(SLIT)xn/RDBL") +#! Field("$(P)$(SLIT)xn.DINP",16750848,0,"$(P)$(SLIT)xn.DINP") +#! Link("$(P)$(SLIT)xn.DINP","$(P)$(SLIT)xn/DINP") +#! Field("$(P)$(SLIT)xn.LOCK",65484,0,"$(P)$(SLIT)xn.LOCK") +#! Connector("$(P)$(SLIT)xn/OUT","$(P)$(SLIT)tFwd.B",1360,900,16777215,"",0) +#! Connector("$(P)$(SLIT)xn/DINP","$(P)$(SLIT)calcDone.VAL",740,1440,16750848,"",0) +#! Connector("$(P)$(SLIT)xn/RDBL","$(P)$(SLIT)tRev.B",700,1080,16777215,"",0) +#! Record("$(P)$(SLIT)size",840,934,0,0,"$(P)$(SLIT)size") +#! Field("$(P)$(SLIT)size.PACT",16777215,1,"$(P)$(SLIT)size.PACT") +#! Field("$(P)$(SLIT)size.VAL",16777215,0,"$(P)$(SLIT)size.VAL") +#! Field("$(P)$(SLIT)size.STOP",16711680,0,"$(P)$(SLIT)size.STOP") +#! Field("$(P)$(SLIT)size.HLM",52224,0,"$(P)$(SLIT)size.HLM") +#! Field("$(P)$(SLIT)size.LLM",52224,0,"$(P)$(SLIT)size.LLM") +#! Field("$(P)$(SLIT)size.OUT",16777215,1,"$(P)$(SLIT)size.OUT") +#! Link("$(P)$(SLIT)size.OUT","$(P)$(SLIT)size/OUT") +#! Field("$(P)$(SLIT)size.RDBL",16777215,0,"$(P)$(SLIT)size.RDBL") +#! Link("$(P)$(SLIT)size.RDBL","$(P)$(SLIT)size/RDBL") +#! Field("$(P)$(SLIT)size.DINP",16750848,0,"$(P)$(SLIT)size.DINP") +#! Link("$(P)$(SLIT)size.DINP","$(P)$(SLIT)size/DINP") +#! Field("$(P)$(SLIT)size.LOCK",65484,0,"$(P)$(SLIT)size.LOCK") +#! Connector("$(P)$(SLIT)size/DINP","$(P)$(SLIT)calcDone.VAL",740,1580,16750848,"",0) +#! Connector("$(P)$(SLIT)size/RDBL","$(P)$(SLIT)tRev.C",700,1230,16777215,"",0) +#! Connector("$(P)$(SLIT)size/OUT","$(P)$(SLIT)tFwd.C",1440,1050,16777215,"",0) +#! Record("$(P)$(SLIT)center",840,1214,0,0,"$(P)$(SLIT)center") +#! Field("$(P)$(SLIT)center.PACT",16777215,1,"$(P)$(SLIT)center.PACT") +#! Field("$(P)$(SLIT)center.VAL",16777215,0,"$(P)$(SLIT)center.VAL") +#! Field("$(P)$(SLIT)center.STOP",16711680,0,"$(P)$(SLIT)center.STOP") +#! Field("$(P)$(SLIT)center.HLM",52224,0,"$(P)$(SLIT)center.HLM") +#! Field("$(P)$(SLIT)center.LLM",52224,0,"$(P)$(SLIT)center.LLM") +#! Field("$(P)$(SLIT)center.OUT",16777215,1,"$(P)$(SLIT)center.OUT") +#! Link("$(P)$(SLIT)center.OUT","$(P)$(SLIT)center/OUT") +#! Field("$(P)$(SLIT)center.RDBL",16777215,0,"$(P)$(SLIT)center.RDBL") +#! Link("$(P)$(SLIT)center.RDBL","$(P)$(SLIT)tRev.D") +#! Field("$(P)$(SLIT)center.DINP",16750848,1,"$(P)$(SLIT)center.DINP") +#! Link("$(P)$(SLIT)center.DINP","$(P)$(SLIT)calcDone.VAL") +#! Field("$(P)$(SLIT)center.LOCK",65484,0,"$(P)$(SLIT)center.LOCK") +#! Connector("$(P)$(SLIT)center/OUT","$(P)$(SLIT)tFwd.D",1460,1200,16777215,"",0) +#! Record("$(P)$(SLIT)xnBPut",1100,782,0,0,"$(P)$(SLIT)xnBPut") +#! Field("$(P)$(SLIT)xnBPut.SDIS",16777215,0,"$(P)$(SLIT)xnBPut.SDIS") +#! Link("$(P)$(SLIT)xnBPut.SDIS","$(P)$(SLIT)xn.PACT") +#! Field("$(P)$(SLIT)xnBPut.OUT",16777215,0,"$(P)$(SLIT)xnBPut.OUT") +#! Link("$(P)$(SLIT)xnBPut.OUT","$(P)$(SLIT)xn.VAL") +#! Field("$(P)$(SLIT)xnBPut.VAL",16777215,1,"$(P)$(SLIT)xnBPut.VAL") +#! Record("$(P)$(SLIT)sizeBPut",1100,1062,0,0,"$(P)$(SLIT)sizeBPut") +#! Field("$(P)$(SLIT)sizeBPut.SDIS",16777215,0,"$(P)$(SLIT)sizeBPut.SDIS") +#! Link("$(P)$(SLIT)sizeBPut.SDIS","$(P)$(SLIT)size.PACT") +#! Field("$(P)$(SLIT)sizeBPut.OUT",16777215,0,"$(P)$(SLIT)sizeBPut.OUT") +#! Link("$(P)$(SLIT)sizeBPut.OUT","$(P)$(SLIT)size.VAL") +#! Field("$(P)$(SLIT)sizeBPut.VAL",16777215,1,"$(P)$(SLIT)sizeBPut.VAL") +#! Record("$(P)$(SLIT)centerBPut",1100,1342,0,0,"$(P)$(SLIT)centerBPut") +#! Field("$(P)$(SLIT)centerBPut.SDIS",16777215,0,"$(P)$(SLIT)centerBPut.SDIS") +#! Link("$(P)$(SLIT)centerBPut.SDIS","$(P)$(SLIT)center.PACT") +#! Field("$(P)$(SLIT)centerBPut.OUT",16777215,0,"$(P)$(SLIT)centerBPut.OUT") +#! Link("$(P)$(SLIT)centerBPut.OUT","$(P)$(SLIT)center.VAL") +#! Field("$(P)$(SLIT)centerBPut.VAL",16777215,1,"$(P)$(SLIT)centerBPut.VAL") +#! Record("$(P)$(SLIT)mXnPut",2200,1315,0,0,"$(P)$(SLIT)mXnPut") +#! Field("$(P)$(SLIT)mXnPut.VAL",16777215,0,"$(P)$(SLIT)mXnPut.VAL") +#! Field("$(P)$(SLIT)mXnPut.OUT",16777215,0,"$(P)$(SLIT)mXnPut.OUT") +#! Record("$(P)$(SLIT)mXpPut",2200,1095,0,0,"$(P)$(SLIT)mXpPut") +#! Field("$(P)$(SLIT)mXpPut.VAL",16777215,0,"$(P)$(SLIT)mXpPut.VAL") +#! Field("$(P)$(SLIT)mXpPut.OUT",16777215,0,"$(P)$(SLIT)mXpPut.OUT") +#! Record("$(P)$(SLIT)closeGate",2420,765,0,0,"$(P)$(SLIT)closeGate") +#! Field("$(P)$(SLIT)closeGate.DOL",16777215,0,"$(P)$(SLIT)closeGate.DOL") +#! Field("$(P)$(SLIT)closeGate.OUT",16777215,1,"$(P)$(SLIT)closeGate.OUT") +#! Link("$(P)$(SLIT)closeGate.OUT","$(P)$(SLIT)gate.VAL") +#! Field("$(P)$(SLIT)closeGate.SDIS",16777215,1,"$(P)$(SLIT)closeGate.SDIS") +#! Link("$(P)$(SLIT)closeGate.SDIS","$(P)$(SLIT)gate.VAL") +#! Visibility("$(P)$(SLIT)closeGate.DISV",1) +#! Record("$(P)$(SLIT)gate",2440,967,0,0,"$(P)$(SLIT)gate") +#! Field("$(P)$(SLIT)gate.VAL",16777215,1,"$(P)$(SLIT)gate.VAL") +#! Field("$(P)$(SLIT)gate.OUT",16777215,1,"$(P)$(SLIT)gate.OUT") +#! Link("$(P)$(SLIT)gate.OUT","$(P)$(SLIT)gate/OUT") +#! Connector("$(P)$(SLIT)gate/OUT","$(P)$(SLIT)isSoftMove.VAL",2700,1500,16777215,"",0) +#! Record("$(P)$(SLIT)gatePut",2160,935,0,0,"$(P)$(SLIT)gatePut") +#! Field("$(P)$(SLIT)gatePut.OUT",16777215,1,"$(P)$(SLIT)gatePut.OUT") +#! Link("$(P)$(SLIT)gatePut.OUT","$(P)$(SLIT)gate.VAL") +#! Field("$(P)$(SLIT)gatePut.VAL",16777215,0,"$(P)$(SLIT)gatePut.VAL") +#! Record("$(P)$(SLIT)mXn_nameCalc",2200,1435,0,0,"$(P)$(SLIT)mXn_nameCalc") +#! Field("$(P)$(SLIT)mXn_nameCalc.INAA",16777215,0,"$(P)$(SLIT)mXn_nameCalc.INAA") +#! Link("$(P)$(SLIT)mXn_nameCalc.INAA","$(P)$(SLIT)mXnPut.OUT") +#! Record("$(P)$(SLIT)mXp_nameCalc",2200,1215,0,0,"$(P)$(SLIT)mXp_nameCalc") +#! Field("$(P)$(SLIT)mXp_nameCalc.INAA",16777215,0,"$(P)$(SLIT)mXp_nameCalc.INAA") +#! Link("$(P)$(SLIT)mXp_nameCalc.INAA","$(P)$(SLIT)mXpPut.OUT") +#! Record("$(P)$(SLIT)tFwd",1540,414,0,0,"$(P)$(SLIT)tFwd") +#! Field("$(P)$(SLIT)tFwd.A",16777215,0,"$(P)$(SLIT)tFwd.A") +#! Field("$(P)$(SLIT)tFwd.B",16777215,0,"$(P)$(SLIT)tFwd.B") +#! Field("$(P)$(SLIT)tFwd.C",16777215,0,"$(P)$(SLIT)tFwd.C") +#! Field("$(P)$(SLIT)tFwd.D",16777215,0,"$(P)$(SLIT)tFwd.D") +#! Field("$(P)$(SLIT)tFwd.OUTE",16777215,1,"$(P)$(SLIT)tFwd.OUTE") +#! Link("$(P)$(SLIT)tFwd.OUTE","$(P)$(SLIT)gatePut.VAL") +#! Field("$(P)$(SLIT)tFwd.OUTF",16777215,1,"$(P)$(SLIT)tFwd.OUTF") +#! Link("$(P)$(SLIT)tFwd.OUTF","$(P)$(SLIT)tFwd/OUTF") +#! Field("$(P)$(SLIT)tFwd.G",16777215,1,"$(P)$(SLIT)tFwd.G") +#! Field("$(P)$(SLIT)tFwd.F",16777215,1,"$(P)$(SLIT)tFwd.F") +#! Field("$(P)$(SLIT)tFwd.OUTA",16777215,0,"$(P)$(SLIT)tFwd.OUTA") +#! Link("$(P)$(SLIT)tFwd.OUTA","$(P)$(SLIT)tFwd/OUTA") +#! Field("$(P)$(SLIT)tFwd.OUTB",16777215,0,"$(P)$(SLIT)tFwd.OUTB") +#! Link("$(P)$(SLIT)tFwd.OUTB","$(P)$(SLIT)tFwd/OUTB") +#! Field("$(P)$(SLIT)tFwd.OUTC",16777215,0,"$(P)$(SLIT)tFwd.OUTC") +#! Link("$(P)$(SLIT)tFwd.OUTC","$(P)$(SLIT)tFwd/OUTC") +#! Field("$(P)$(SLIT)tFwd.OUTD",16777215,0,"$(P)$(SLIT)tFwd.OUTD") +#! Link("$(P)$(SLIT)tFwd.OUTD","$(P)$(SLIT)tFwd/OUTD") +#! Connector("$(P)$(SLIT)tFwd/OUTF","$(P)$(SLIT)writeMotors.PROC",1820,1020,16777215,"",0) +#! Connector("$(P)$(SLIT)tFwd/OUTD","$(P)$(SLIT)centerBPut.VAL",1420,1250,16777215,"",0) +#! Connector("$(P)$(SLIT)tFwd/OUTC","$(P)$(SLIT)sizeBPut.VAL",1400,1100,16777215,"",0) +#! Connector("$(P)$(SLIT)tFwd/OUTB","$(P)$(SLIT)xnBPut.VAL",1400,950,16777215,"",0) +#! Connector("$(P)$(SLIT)tFwd/OUTA","$(P)$(SLIT)xpBPut.VAL",1420,800,16777215,"",0) +#! Record("$(P)$(SLIT)clearSoftMove",1340,1789,0,1,"$(P)$(SLIT)clearSoftMove") +#! Field("$(P)$(SLIT)clearSoftMove.PROC",16777215,1,"$(P)$(SLIT)clearSoftMove.PROC") +#! Field("$(P)$(SLIT)clearSoftMove.OUT",16777215,1,"$(P)$(SLIT)clearSoftMove.OUT") +#! Link("$(P)$(SLIT)clearSoftMove.OUT","$(P)$(SLIT)isSoftMove.VAL") +#! Record("$(P)$(SLIT)isSoftMove",1600,1767,0,1,"$(P)$(SLIT)isSoftMove") +#! Field("$(P)$(SLIT)isSoftMove.VAL",16777215,1,"$(P)$(SLIT)isSoftMove.VAL") +#! Field("$(P)$(SLIT)isSoftMove.OUTA",65484,0,"$(P)$(SLIT)isSoftMove.OUTA") +#! Link("$(P)$(SLIT)isSoftMove.OUTA","$(P)$(SLIT)isSoftMove/OUTA") +#! Field("$(P)$(SLIT)isSoftMove.OUTB",65484,0,"$(P)$(SLIT)isSoftMove.OUTB") +#! Link("$(P)$(SLIT)isSoftMove.OUTB","$(P)$(SLIT)isSoftMove/OUTB") +#! Field("$(P)$(SLIT)isSoftMove.OUTC",65484,0,"$(P)$(SLIT)isSoftMove.OUTC") +#! Link("$(P)$(SLIT)isSoftMove.OUTC","$(P)$(SLIT)isSoftMove/OUTC") +#! Field("$(P)$(SLIT)isSoftMove.OUTD",65484,0,"$(P)$(SLIT)isSoftMove.OUTD") +#! Link("$(P)$(SLIT)isSoftMove.OUTD","$(P)$(SLIT)isSoftMove/OUTD") +#! Connector("$(P)$(SLIT)isSoftMove/OUTD","$(P)$(SLIT)center.LOCK",720,1790,65484,"",0) +#! Connector("$(P)$(SLIT)isSoftMove/OUTC","$(P)$(SLIT)size.LOCK",720,1640,65484,"",0) +#! Connector("$(P)$(SLIT)isSoftMove/OUTB","$(P)$(SLIT)xn.LOCK",720,1490,65484,"",0) +#! Connector("$(P)$(SLIT)isSoftMove/OUTA","$(P)$(SLIT)xp.LOCK",720,1340,65484,"",0) +#! Record("$(P)$(SLIT)calcDone",1080,1639,0,1,"$(P)$(SLIT)calcDone") +#! Field("$(P)$(SLIT)calcDone.INPA",16777215,1,"$(P)$(SLIT)calcDone.INPA") +#! Link("$(P)$(SLIT)calcDone.INPA","$(P)$(SLIT)gate.VAL") +#! Field("$(P)$(SLIT)calcDone.INPB",16777215,0,"$(P)$(SLIT)calcDone.INPB") +#! Link("$(P)$(SLIT)calcDone.INPB","$(P)$(SLIT)calcDone/INPB") +#! Field("$(P)$(SLIT)calcDone.INPC",16777215,0,"$(P)$(SLIT)calcDone.INPC") +#! Link("$(P)$(SLIT)calcDone.INPC","$(P)$(SLIT)calcDone/INPC") +#! Field("$(P)$(SLIT)calcDone.VAL",16750848,1,"$(P)$(SLIT)calcDone.VAL") +#! Field("$(P)$(SLIT)calcDone.OUT",16777215,1,"$(P)$(SLIT)calcDone.OUT") +#! Link("$(P)$(SLIT)calcDone.OUT","$(P)$(SLIT)clearSoftMove.PROC") +#! Connector("$(P)$(SLIT)calcDone/INPC",null,1020,1820,16777215,"",3) +#! Connector("$(P)$(SLIT)calcDone/INPB",null,1020,1800,16777215,"",3) +#! Visibility("$(P)$(SLIT)calcDone.OOPT",1) +#! Record("$(P)$(SLIT)tRev",420,869,0,0,"$(P)$(SLIT)tRev") +#! Field("$(P)$(SLIT)tRev.INPA",16777215,0,"$(P)$(SLIT)tRev.INPA") +#! Link("$(P)$(SLIT)tRev.INPA","$(P)$(SLIT)tRev/INPA") +#! Field("$(P)$(SLIT)tRev.INPB",16777215,0,"$(P)$(SLIT)tRev.INPB") +#! Link("$(P)$(SLIT)tRev.INPB","$(P)$(SLIT)tRev/INPB") +#! Field("$(P)$(SLIT)tRev.A",16777215,1,"$(P)$(SLIT)tRev.A") +#! Field("$(P)$(SLIT)tRev.B",16777215,1,"$(P)$(SLIT)tRev.B") +#! Field("$(P)$(SLIT)tRev.C",16777215,1,"$(P)$(SLIT)tRev.C") +#! Field("$(P)$(SLIT)tRev.D",16777215,1,"$(P)$(SLIT)tRev.D") +#! Connector("$(P)$(SLIT)tRev/INPB",null,340,1220,16777215,"",3) +#! Connector("$(P)$(SLIT)tRev/INPA",null,340,1200,16777215,"",3) +#! Record("$(P)$(SLIT)tLimits",440,110,0,0,"$(P)$(SLIT)tLimits") +#! Field("$(P)$(SLIT)tLimits.INPA",16777215,0,"$(P)$(SLIT)tLimits.INPA") +#! Link("$(P)$(SLIT)tLimits.INPA","$(P)$(SLIT)tLimits/INPA") +#! Field("$(P)$(SLIT)tLimits.INPB",16777215,0,"$(P)$(SLIT)tLimits.INPB") +#! Link("$(P)$(SLIT)tLimits.INPB","$(P)$(SLIT)tLimits/INPB") +#! Field("$(P)$(SLIT)tLimits.INPC",16777215,0,"$(P)$(SLIT)tLimits.INPC") +#! Link("$(P)$(SLIT)tLimits.INPC","$(P)$(SLIT)tLimits/INPC") +#! Field("$(P)$(SLIT)tLimits.INPD",16777215,0,"$(P)$(SLIT)tLimits.INPD") +#! Link("$(P)$(SLIT)tLimits.INPD","$(P)$(SLIT)tLimits/INPD") +#! Field("$(P)$(SLIT)tLimits.OUTA",52224,1,"$(P)$(SLIT)tLimits.OUTA") +#! Link("$(P)$(SLIT)tLimits.OUTA","$(P)$(SLIT)tLimits/OUTA") +#! Field("$(P)$(SLIT)tLimits.OUTB",52224,1,"$(P)$(SLIT)tLimits.OUTB") +#! Link("$(P)$(SLIT)tLimits.OUTB","$(P)$(SLIT)tLimits/OUTB") +#! Field("$(P)$(SLIT)tLimits.OUTC",52224,1,"$(P)$(SLIT)tLimits.OUTC") +#! Link("$(P)$(SLIT)tLimits.OUTC","$(P)$(SLIT)tLimits/OUTC") +#! Field("$(P)$(SLIT)tLimits.OUTD",52224,1,"$(P)$(SLIT)tLimits.OUTD") +#! Link("$(P)$(SLIT)tLimits.OUTD","$(P)$(SLIT)tLimits/OUTD") +#! Field("$(P)$(SLIT)tLimits.OUTE",52224,1,"$(P)$(SLIT)tLimits.OUTE") +#! Link("$(P)$(SLIT)tLimits.OUTE","$(P)$(SLIT)tLimits/OUTE") +#! Field("$(P)$(SLIT)tLimits.OUTF",52224,1,"$(P)$(SLIT)tLimits.OUTF") +#! Link("$(P)$(SLIT)tLimits.OUTF","$(P)$(SLIT)tLimits/OUTF") +#! Field("$(P)$(SLIT)tLimits.OUTG",52224,1,"$(P)$(SLIT)tLimits.OUTG") +#! Link("$(P)$(SLIT)tLimits.OUTG","$(P)$(SLIT)tLimits/OUTG") +#! Field("$(P)$(SLIT)tLimits.OUTH",52224,1,"$(P)$(SLIT)tLimits.OUTH") +#! Link("$(P)$(SLIT)tLimits.OUTH","$(P)$(SLIT)tLimits/OUTH") +#! Connector("$(P)$(SLIT)tLimits/INPD",null,360,660,16777215,"",3) +#! Connector("$(P)$(SLIT)tLimits/INPC",null,360,640,16777215,"",3) +#! Connector("$(P)$(SLIT)tLimits/INPB",null,360,620,16777215,"",3) +#! Connector("$(P)$(SLIT)tLimits/INPA",null,360,600,16777215,"",3) +#! Connector("$(P)$(SLIT)tLimits/OUTH","$(P)$(SLIT)center.HLM",760,1080,52224,"",0) +#! Connector("$(P)$(SLIT)tLimits/OUTG","$(P)$(SLIT)center.LLM",760,1080,52224,"",0) +#! Connector("$(P)$(SLIT)tLimits/OUTF","$(P)$(SLIT)size.HLM",760,920,52224,"",0) +#! Connector("$(P)$(SLIT)tLimits/OUTE","$(P)$(SLIT)size.LLM",760,920,52224,"",0) +#! Connector("$(P)$(SLIT)tLimits/OUTD","$(P)$(SLIT)xn.HLM",760,760,52224,"",0) +#! Connector("$(P)$(SLIT)tLimits/OUTC","$(P)$(SLIT)xn.LLM",760,760,52224,"",0) +#! Connector("$(P)$(SLIT)tLimits/OUTB","$(P)$(SLIT)xp.HLM",760,600,52224,"",0) +#! Connector("$(P)$(SLIT)tLimits/OUTA","$(P)$(SLIT)xp.LLM",760,600,52224,"",0) +#! Record("$(P)$(SLIT)writeMotors",1880,1013,0,1,"$(P)$(SLIT)writeMotors") +#! Field("$(P)$(SLIT)writeMotors.PROC",16777215,0,"$(P)$(SLIT)writeMotors.PROC") +#! Field("$(P)$(SLIT)writeMotors.DOL1",16777215,0,"$(P)$(SLIT)writeMotors.DOL1") +#! Link("$(P)$(SLIT)writeMotors.DOL1","$(P)$(SLIT)tFwd.F") +#! Field("$(P)$(SLIT)writeMotors.LNK1",16777215,1,"$(P)$(SLIT)writeMotors.LNK1") +#! Link("$(P)$(SLIT)writeMotors.LNK1","$(P)$(SLIT)mXpPut.VAL") +#! Field("$(P)$(SLIT)writeMotors.DOL2",16777215,0,"$(P)$(SLIT)writeMotors.DOL2") +#! Link("$(P)$(SLIT)writeMotors.DOL2","$(P)$(SLIT)tFwd.G") +#! Field("$(P)$(SLIT)writeMotors.LNK2",16777215,1,"$(P)$(SLIT)writeMotors.LNK2") +#! Link("$(P)$(SLIT)writeMotors.LNK2","$(P)$(SLIT)writeMotors/LNK2") +#! Connector("$(P)$(SLIT)writeMotors/LNK2","$(P)$(SLIT)mXnPut.VAL",2120,1320,16777215,"",0) +#! Visibility("$(P)$(SLIT)writeMotors.DLY1",1) diff --git a/opticsApp/Db/2slit_soft_settings.req b/opticsApp/Db/2slit_soft_settings.req new file mode 100644 index 0000000..087d61c --- /dev/null +++ b/opticsApp/Db/2slit_soft_settings.req @@ -0,0 +1,16 @@ +$(P)$(SLIT)xn.TWV +$(P)$(SLIT)xp.TWV +$(P)$(SLIT)size.TWV +$(P)$(SLIT)center.TWV +$(P)$(SLIT)xp.MRES +$(P)$(SLIT)xn.MRES +$(P)$(SLIT)size.MRES +$(P)$(SLIT)center.MRES +$(P)$(SLIT)xp.DESC +$(P)$(SLIT)xn.DESC +$(P)$(SLIT)size.DESC +$(P)$(SLIT)center.DESC +$(P)$(SLIT)xp.EGU +$(P)$(SLIT)xn.EGU +$(P)$(SLIT)size.EGU +$(P)$(SLIT)center.EGU diff --git a/opticsApp/Db/CoarseFineMotor_settings.req b/opticsApp/Db/CoarseFineMotor_settings.req index afe3543..80d4d2b 100644 --- a/opticsApp/Db/CoarseFineMotor_settings.req +++ b/opticsApp/Db/CoarseFineMotor_settings.req @@ -1,3 +1,2 @@ $(P)MOT.TWV $(P)mode -$(P)fineMode diff --git a/opticsApp/Db/MLLH_soft.vdb b/opticsApp/Db/MLLH_soft.vdb new file mode 100644 index 0000000..bae032b --- /dev/null +++ b/opticsApp/Db/MLLH_soft.vdb @@ -0,0 +1,528 @@ +#! Generated by VisualDCT v2.6 +#! DBDSTART +#! DBDEND + + +# comment outside record +record(seq, "$(P)$(Q)init") { +# comment inside record + field(DESC, "initialize soft motors") + field(SCAN, "1 second") + field(LNK1, "$(P)$(Q)sync.PROC PP") + field(DO2, "0") + field(LNK2, "$(P)$(Q)init.SCAN CA") +} + +record(seq, "$(P)$(Q)sync") { + field(LNK1, "$(P)$(Q)t2.PROC PP") + field(DO2, "1") + field(LNK2, "$(P)$(Q)th.SYNC CA") + field(DO3, "1") + field(LNK3, "$(P)$(Q)z.SYNC CA") + field(DO4, "1") + field(LNK4, "$(P)$(Q)x.SYNC CA") +} + +record(calcout, "$(P)$(Q)closeGate") { + field(CALC, "a&&b") + field(INPA, "$(P)$(Q)gate.VAL") + field(INPB, "$(P)$(mX).DMOV CP") + field(OUT, "$(P)$(Q)gate PP") + field(OOPT, "When Non-zero") + field(DOPT, "Use OCAL") +} + +record(bo, "$(P)$(Q)gate") { + field(DTYP, "Soft Channel") + field(ZNAM, "Closed") + field(ONAM, "Open") +} + +record(bo, "$(P)$(Q)gatePut") { + field(DTYP, "Soft Channel") + field(OUT, "$(P)$(Q)gate.VAL PP MS") +} + +record(bo, "$(P)$(Q)set") { + field(DTYP, "Soft Channel") + field(FLNK, "$(P)$(Q)set1.PROC PP MS") + field(OUT, "$(P)$(mZI).SET PP MS") + field(ZNAM, "Use") + field(ONAM, "Set") +} + +record(bo, "$(P)$(Q)set1") { + field(DTYP, "Soft Channel") + field(OMSL, "closed_loop") + field(DOL, "$(P)$(Q)set.VAL NPP NMS") + field(OUT, "$(P)$(mZO).SET PP MS") + field(ZNAM, "Use") + field(ONAM, "Set") + field(FLNK, "$(P)$(Q)set2.PROC PP MS") +} + +record(bo, "$(P)$(Q)set2") { + field(DTYP, "Soft Channel") + field(OMSL, "closed_loop") + field(DOL, "$(P)$(Q)set.VAL NPP NMS") + field(OUT, "$(P)$(mX).SET PP MS") + field(ZNAM, "Use") + field(ONAM, "Set") +} + +record(dfanout, "$(P)$(Q)stop") { + field(OUTA, "$(P)$(Q)th.STOP CA MS") + field(OUTB, "$(P)$(Q)z.STOP CA MS") + field(OUTC, "$(P)$(Q)x.STOP CA MS") + field(DOL, "1") + field(OUTD, "$(P)$(mZO).STOP CA") + field(OUTE, "$(P)$(mZI).STOP CA") + field(OUTF, "$(P)$(mZO).STOP CA") +} + +record(ao, "$(P)$(Q)xLen") { + field(PREC, "3") + field(DOL, "79.91") +} + +record(ao, "$(P)$(Q)zNoseLen") { + field(PREC, "3") + field(DOL, "10.366") +} + +record(ao, "$(P)$(Q)zBendLen") { + field(PREC, "3") + field(DOL, "18.8975") +} + +record(transform, "$(P)$(Q)t1") { + field(PREC, "5") + field(DESC, "(th, z, x) -> (zo, zi, xm)") + field(CMTB, "th (deg)") + field(CMTC, "z") + field(CMTD, "x") + field(CMTE, "gate") + field(CLCE, "1") + field(OUTE, "$(P)$(Q)gatePut.VAL PP MS") + field(CMTF, "zo") +# field(CLCF, "C-P*cos(B*D2R)-(M/2)*tan(B*D2R)+(D-N*((B*D2R)^2)-P*sin(B*D2R))*tan(B*D2R)") + field(CLCF, "C+P*(1-cos(B*D2R))-(M/2)*tan(B*D2R)+(D-N*((B*D2R)^2)-P*sin(B*D2R))*tan(B*D2R)") + field(OUTF, "$(P)$(Q)mZOPut.VAL PP MS") + field(CMTG, "zi") +# field(CLCG, "C-P*cos(B*D2R)+(M/2)*tan(B*D2R)+(D-N*((B*D2R)^2)-P*sin(B*D2R))*tan(B*D2R)") + field(CLCG, "C+P*(1-cos(B*D2R))+(M/2)*tan(B*D2R)+(D-N*((B*D2R)^2)-P*sin(B*D2R))*tan(B*D2R)") + field(OUTG, "$(P)$(Q)mZIPut.VAL PP MS") + field(CMTH, "xm") + field(CLCH, "(D-N*((B*D2R)^2))/cos(B*D2R)-P*tan(B*D2R)") + field(OUTH, "$(P)$(Q)mXPut.VAL PP MS") + field(CMTN, "zBendLen") + field(INPN, "$(P)$(Q)zBendLen") + field(CMTM, "xLen") + field(INPM, "$(P)$(Q)xLen") + field(CMTP, "zNoseLen") + field(INPP, "$(P)$(Q)zNoseLen") +} + +record(transform, "$(P)$(Q)t2") { + field(DESC, "(zo, zi, xm) -> (th, z, x)") + field(EGU, "mm") + field(PREC, "5") + field(CMTA, "mZO readback") + field(INPA, "$(P)$(mZO).RBV CP MS") + field(CMTB, "mZI readback") + field(INPB, "$(P)$(mZI).RBV CP MS") + field(CMTC, "mX readback") + field(INPC, "$(P)$(mX).RBV CP MS") + field(CMTD, "TH from motor readbacks") + field(CLCD, "R2D*atan((B-A)/M)") + field(CMTE, "Z from motor readbacks") +# field(CLCE, "P*cos(D*D2R)+(B+A)/2-C*sin(D*D2R)") + field(CLCE, "(B+A)/2-P*(1-cos(D*D2R))-C*sin(D*D2R)") + field(CMTF, "X from motor readbacks") + field(CLCF, "C*cos(D*D2R)+P*sin(D*D2R)+N*((D*D2R)^2)") + field(CMTG, "Done") + field(CLCG, "i&&j&&!h") + field(CMTH, "gate input") + field(CMTI, "ZO motor-done input") + field(CMTJ, "ZI motor-done input") + field(CMTK, "X motor-done input") + field(CMTN, "zBendLen") + field(INPN, "$(P)$(Q)zBendLen") + field(CMTM, "xLen") + field(INPM, "$(P)$(Q)xLen") + field(CMTP, "zNoseLen") + field(INPP, "$(P)$(Q)zNoseLen") +} + +record(calcout, "$(P)$(Q)calcDone") { + field(DESC, "calc done, clear softMove?") + field(CALC, "i&&j&&!h") + field(INPH, "$(P)$(Q)gate.VAL CP MS") + field(INPI, "$(P)$(mZO).DMOV CP MS") + field(INPJ, "$(P)$(mZI).DMOV CP MS") + field(INPK, "$(P)$(mX).DMOV CP MS") + field(OUT, "$(P)$(Q)clearSoftMove.PROC PP") + field(OOPT, "Transition To Non-zero") +} + +record(transform, "$(P)$(Q)t3") { + field(DISV, "0") + field(PREC, "3") + field(PHAS, "0") + field(INPA, "$(P)$(mZO).LLM CP NMS") + field(INPB, "$(P)$(mZO).HLM CP NMS") + field(INPC, "$(P)$(mZI).LLM CP NMS") + field(INPD, "$(P)$(mZI).HLM CP NMS") + field(INPE, "$(P)$(mX).LLM CP NMS") + field(INPF, "$(P)$(mX).HLM CP NMS") + field(CMTG, "calc th.LLM") + field(CLCG, "r2d*atan((C-B)/M)") + field(OUTG, "$(P)$(Q)th.LLM NPP MS") + field(CMTH, "calc th.HLM") + field(CLCH, "r2d*atan((D-A)/M)") + field(OUTH, "$(P)$(Q)th.HLM NPP MS") + field(CMTI, "calc z.LLM") +# field(CLCI, "P*cos(G*d2r)+(C+A)/2-F*sin(H*d2r)") + field(CLCI, "(C+A)/2") + field(OUTI, "$(P)$(Q)z.LLM NPP MS") + field(CMTJ, "calc z.HLM") +# field(CLCJ, "P*cos(H*d2r)+(D+B)/2-E*sin(G*d2r)") + field(CLCJ, "(D+B)/2") + field(OUTJ, "$(P)$(Q)z.HLM NPP MS") + field(CMTK, "calc x.LLM") + field(CLCK, "E") + field(OUTK, "$(P)$(Q)x.LLM NPP MS") + field(CMTL, "calc x.HLM") + field(CLCL, "F") + field(OUTL, "$(P)$(Q)x.HLM NPP MS") + field(CMTN, "zBendLen") + field(INPN, "$(P)$(Q)zBendLen") + field(CMTM, "xLen") + field(INPM, "$(P)$(Q)xLen") + field(CMTP, "zNoseLen") + field(INPP, "$(P)$(Q)zNoseLen") +} + +record(bo, "$(P)$(Q)clearSoftMove") { + field(DOL, "0") + field(OUT, "$(P)$(Q)isSoftMove PP") +} + +record(dfanout, "$(P)$(Q)isSoftMove") { + field(OUTA, "$(P)$(Q)th.LOCK") + field(OUTB, "$(P)$(Q)z.LOCK") + field(OUTC, "$(P)$(Q)x.LOCK") +} + +record(motor, "$(P)$(Q)th") { + field(DESC, "$(Q) th") + field(DTYP, "Soft Channel") + field(OUT, "$(P)$(Q)softPut.DO1 PP") + field(RDBL, "$(P)$(Q)t2.D NPP MS") + field(MRES, ".001") + field(RRES, "1") + field(URIP, "Yes") + field(PREC, "3") + field(EGU, "mm") + field(TWV, "1") + field(DINP, "$(P)$(Q)calcDone NPP MS") +} + +record(motor, "$(P)$(Q)z") { + field(DESC, "$(Q) z") + field(DTYP, "Soft Channel") + field(OUT, "$(P)$(Q)softPut.DO2 PP MS") + field(RDBL, "$(P)$(Q)t2.E NPP MS") + field(MRES, ".001") + field(RRES, "1") + field(URIP, "Yes") + field(PREC, "3") + field(EGU, "mm") + field(TWV, "1") + field(DINP, "$(P)$(Q)calcDone NPP MS") +} + +record(motor, "$(P)$(Q)x") { + field(DESC, "$(Q) x") + field(DTYP, "Soft Channel") + field(OUT, "$(P)$(Q)softPut.DO3 PP MS") + field(RDBL, "$(P)$(Q)t2.F NPP MS") + field(MRES, ".001") + field(RRES, "1") + field(URIP, "Yes") + field(PREC, "3") + field(EGU, "mm") + field(TWV, "1") + field(DINP, "$(P)$(Q)calcDone NPP MS") +} + +record(ao, "$(P)$(Q)mZOPut") { + field(DTYP, "Soft Channel") + field(OUT, "$(P)$(mZO).VAL PP MS") +} + +record(scalcout, "$(P)$(Q)mZO_nameCalc") { + field(CALC, "aa[0,'.']") + field(INAA, "$(P)$(Q)mZOPut.OUT CPP") +} + +record(ao, "$(P)$(Q)mZIPut") { + field(DTYP, "Soft Channel") + field(OUT, "$(P)$(mZI).VAL PP MS") +} + +record(scalcout, "$(P)$(Q)mZI_nameCalc") { + field(CALC, "aa[0,'.']") + field(INAA, "$(P)$(Q)mZIPut.OUT CPP") +} + +record(ao, "$(P)$(Q)mXPut") { + field(DTYP, "Soft Channel") + field(OUT, "$(P)$(mX).VAL PP MS") +} + +record(scalcout, "$(P)$(Q)mX_nameCalc") { + field(CALC, "aa[0,'.']") + field(INAA, "$(P)$(Q)mXPut.OUT CPP") +} + +record(seq, "$(P)$(Q)softPut") { + field(PREC, "3") + field(DOL4, "1") + field(LNK4, "$(P)$(Q)isSoftMove PP") + field(DOL5, "$(P)$(Q)th.DVAL") + field(LNK5, "$(P)$(Q)t1.B") + field(DOL6, "$(P)$(Q)z.DVAL") + field(LNK6, "$(P)$(Q)t1.C") + field(DOL7, "$(P)$(Q)x.DVAL") + field(LNK7, "$(P)$(Q)t1.D PP") +} + +#! Further lines contain data used by VisualDCT +#! View(80,25,0.6) +#! Record("$(P)$(Q)init",320,172,0,0,"$(P)$(Q)init") +#! Field("$(P)$(Q)init.LNK1",16777215,1,"$(P)$(Q)init.LNK1") +#! Link("$(P)$(Q)init.LNK1","$(P)$(Q)sync.PROC") +#! Field("$(P)$(Q)init.SCAN",16777215,0,"$(P)$(Q)init.SCAN") +#! Field("$(P)$(Q)init.LNK2",16777215,0,"$(P)$(Q)init.LNK2") +#! Link("$(P)$(Q)init.LNK2","$(P)$(Q)init.SCAN") +#! Record("$(P)$(Q)sync",1020,364,0,0,"$(P)$(Q)sync") +#! Field("$(P)$(Q)sync.PROC",16777215,0,"$(P)$(Q)sync.PROC") +#! Field("$(P)$(Q)sync.LNK1",16777215,0,"$(P)$(Q)sync.LNK1") +#! Link("$(P)$(Q)sync.LNK1","$(P)$(Q)t2.PROC") +#! Field("$(P)$(Q)sync.LNK2",16777215,1,"$(P)$(Q)sync.LNK2") +#! Link("$(P)$(Q)sync.LNK2","$(P)$(Q)th.SYNC") +#! Field("$(P)$(Q)sync.LNK3",16777215,1,"$(P)$(Q)sync.LNK3") +#! Link("$(P)$(Q)sync.LNK3","$(P)$(Q)z.SYNC") +#! Field("$(P)$(Q)sync.LNK4",16777215,1,"$(P)$(Q)sync.LNK4") +#! Link("$(P)$(Q)sync.LNK4","$(P)$(Q)x.SYNC") +#! Record("$(P)$(Q)closeGate",3220,399,0,0,"$(P)$(Q)closeGate") +#! Field("$(P)$(Q)closeGate.INPB",16777215,0,"$(P)$(Q)closeGate.INPB") +#! Link("$(P)$(Q)closeGate.INPB","$(P)$(Q)closeGate/INPB") +#! Field("$(P)$(Q)closeGate.INPA",16777215,0,"$(P)$(Q)closeGate.INPA") +#! Link("$(P)$(Q)closeGate.INPA","$(P)$(Q)closeGate/INPA") +#! Field("$(P)$(Q)closeGate.OUT",16777215,0,"$(P)$(Q)closeGate.OUT") +#! Link("$(P)$(Q)closeGate.OUT","$(P)$(Q)gate.VAL") +#! Connector("$(P)$(Q)closeGate/INPB",null,3160,540,16777215,"",3) +#! Connector("$(P)$(Q)closeGate/INPA","$(P)$(Q)gate.VAL",3140,600,16777215,"",0) +#! Record("$(P)$(Q)gate",2920,522,0,0,"$(P)$(Q)gate") +#! Field("$(P)$(Q)gate.VAL",16777215,1,"$(P)$(Q)gate.VAL") +#! Record("$(P)$(Q)gatePut",2600,535,0,0,"$(P)$(Q)gatePut") +#! Field("$(P)$(Q)gatePut.OUT",16777215,1,"$(P)$(Q)gatePut.OUT") +#! Link("$(P)$(Q)gatePut.OUT","$(P)$(Q)gate.VAL") +#! Field("$(P)$(Q)gatePut.VAL",16777215,0,"$(P)$(Q)gatePut.VAL") +#! Record("$(P)$(Q)set",1200,2112,0,0,"$(P)$(Q)set") +#! Field("$(P)$(Q)set.OUT",16777215,1,"$(P)$(Q)set.OUT") +#! Field("$(P)$(Q)set.VAL",16777215,1,"$(P)$(Q)set.VAL") +#! Field("$(P)$(Q)set.FLNK",16777215,1,"$(P)$(Q)set.FLNK") +#! Link("$(P)$(Q)set.FLNK","$(P)$(Q)set1") +#! Record("$(P)$(Q)set1",1480,2224,0,0,"$(P)$(Q)set1") +#! Field("$(P)$(Q)set1.DOL",16777215,0,"$(P)$(Q)set1.DOL") +#! Link("$(P)$(Q)set1.DOL","$(P)$(Q)set.VAL") +#! Field("$(P)$(Q)set1.OUT",16777215,1,"$(P)$(Q)set1.OUT") +#! Field("$(P)$(Q)set1.FLNK",16777215,1,"$(P)$(Q)set1.FLNK") +#! Link("$(P)$(Q)set1.FLNK","$(P)$(Q)set2") +#! Record("$(P)$(Q)set2",1740,2299,0,0,"$(P)$(Q)set2") +#! Field("$(P)$(Q)set2.DOL",16777215,0,"$(P)$(Q)set2.DOL") +#! Link("$(P)$(Q)set2.DOL","$(P)$(Q)set.VAL") +#! Field("$(P)$(Q)set2.OUT",16777215,1,"$(P)$(Q)set2.OUT") +#! Record("$(P)$(Q)stop",940,704,0,0,"$(P)$(Q)stop") +#! Field("$(P)$(Q)stop.OUTA",16777215,1,"$(P)$(Q)stop.OUTA") +#! Link("$(P)$(Q)stop.OUTA","$(P)$(Q)th.STOP") +#! Field("$(P)$(Q)stop.OUTB",16777215,1,"$(P)$(Q)stop.OUTB") +#! Link("$(P)$(Q)stop.OUTB","$(P)$(Q)z.STOP") +#! Field("$(P)$(Q)stop.OUTC",16777215,1,"$(P)$(Q)stop.OUTC") +#! Link("$(P)$(Q)stop.OUTC","$(P)$(Q)x.STOP") +#! Field("$(P)$(Q)stop.OUTD",16777215,1,"$(P)$(Q)stop.OUTD") +#! Field("$(P)$(Q)stop.OUTE",16777215,1,"$(P)$(Q)stop.OUTE") +#! Field("$(P)$(Q)stop.OUTF",16777215,1,"$(P)$(Q)stop.OUTF") +#! Record("$(P)$(Q)xLen",280,635,0,0,"$(P)$(Q)xLen") +#! Field("$(P)$(Q)xLen.VAL",16777215,1,"$(P)$(Q)xLen.VAL") +#! Record("$(P)$(Q)zNoseLen",280,735,0,0,"$(P)$(Q)zNoseLen") +#! Field("$(P)$(Q)zNoseLen.VAL",16777215,1,"$(P)$(Q)zNoseLen.VAL") +#! Record("$(P)$(Q)zBendLen",280,535,0,0,"$(P)$(Q)zBendLen") +#! Field("$(P)$(Q)zBendLen.VAL",16777215,1,"$(P)$(Q)zBendLen.VAL") +#! Record("$(P)$(Q)t1",2080,214,0,0,"$(P)$(Q)t1") +#! Field("$(P)$(Q)t1.B",16777215,0,"$(P)$(Q)t1.B") +#! Field("$(P)$(Q)t1.C",16777215,0,"$(P)$(Q)t1.C") +#! Field("$(P)$(Q)t1.D",16777215,0,"$(P)$(Q)t1.D") +#! Field("$(P)$(Q)t1.OUTE",16777215,1,"$(P)$(Q)t1.OUTE") +#! Link("$(P)$(Q)t1.OUTE","$(P)$(Q)gatePut.VAL") +#! Field("$(P)$(Q)t1.OUTF",16777215,1,"$(P)$(Q)t1.OUTF") +#! Link("$(P)$(Q)t1.OUTF","$(P)$(Q)mZOPut.VAL") +#! Field("$(P)$(Q)t1.OUTG",16777215,1,"$(P)$(Q)t1.OUTG") +#! Link("$(P)$(Q)t1.OUTG","$(P)$(Q)mZIPut.VAL") +#! Field("$(P)$(Q)t1.OUTH",16777215,1,"$(P)$(Q)t1.OUTH") +#! Link("$(P)$(Q)t1.OUTH","$(P)$(Q)mXPut.VAL") +#! Field("$(P)$(Q)t1.INPN",16777215,0,"$(P)$(Q)t1.INPN") +#! Link("$(P)$(Q)t1.INPN","$(P)$(Q)t1/INPN") +#! Field("$(P)$(Q)t1.INPM",16777215,0,"$(P)$(Q)t1.INPM") +#! Link("$(P)$(Q)t1.INPM","$(P)$(Q)t1/INPM") +#! Field("$(P)$(Q)t1.INPP",16777215,0,"$(P)$(Q)t1.INPP") +#! Link("$(P)$(Q)t1.INPP","$(P)$(Q)t1/INPP") +#! Connector("$(P)$(Q)t1/INPP","$(P)$(Q)zNoseLen.VAL",540,810,16777215,"",0) +#! Connector("$(P)$(Q)t1/INPN","$(P)$(Q)zBendLen.VAL",580,690,16777215,"",0) +#! Connector("$(P)$(Q)t1/INPM","$(P)$(Q)xLen.VAL",560,750,16777215,"",0) +#! Record("$(P)$(Q)t2",680,1257,0,0,"$(P)$(Q)t2") +#! Field("$(P)$(Q)t2.PROC",16777215,1,"$(P)$(Q)t2.PROC") +#! Field("$(P)$(Q)t2.INPA",16777215,0,"$(P)$(Q)t2.INPA") +#! Field("$(P)$(Q)t2.INPB",16777215,0,"$(P)$(Q)t2.INPB") +#! Field("$(P)$(Q)t2.INPC",16777215,1,"$(P)$(Q)t2.INPC") +#! Field("$(P)$(Q)t2.D",16777215,1,"$(P)$(Q)t2.D") +#! Field("$(P)$(Q)t2.E",16777215,1,"$(P)$(Q)t2.E") +#! Field("$(P)$(Q)t2.F",16777215,1,"$(P)$(Q)t2.F") +#! Field("$(P)$(Q)t2.INPN",16777215,0,"$(P)$(Q)t2.INPN") +#! Link("$(P)$(Q)t2.INPN","$(P)$(Q)zBendLen.VAL") +#! Field("$(P)$(Q)t2.INPM",16777215,0,"$(P)$(Q)t2.INPM") +#! Link("$(P)$(Q)t2.INPM","$(P)$(Q)xLen.VAL") +#! Field("$(P)$(Q)t2.INPP",16777215,0,"$(P)$(Q)t2.INPP") +#! Link("$(P)$(Q)t2.INPP","$(P)$(Q)zNoseLen.VAL") +#! Record("$(P)$(Q)calcDone",1000,1429,0,0,"$(P)$(Q)calcDone") +#! Field("$(P)$(Q)calcDone.VAL",16777215,1,"$(P)$(Q)calcDone.VAL") +#! Field("$(P)$(Q)calcDone.INPH",16777215,1,"$(P)$(Q)calcDone.INPH") +#! Link("$(P)$(Q)calcDone.INPH","$(P)$(Q)gate.VAL") +#! Field("$(P)$(Q)calcDone.INPI",16777215,1,"$(P)$(Q)calcDone.INPI") +#! Field("$(P)$(Q)calcDone.INPJ",16777215,1,"$(P)$(Q)calcDone.INPJ") +#! Field("$(P)$(Q)calcDone.INPK",16777215,1,"$(P)$(Q)calcDone.INPK") +#! Field("$(P)$(Q)calcDone.OUT",16777215,1,"$(P)$(Q)calcDone.OUT") +#! Link("$(P)$(Q)calcDone.OUT","$(P)$(Q)clearSoftMove.PROC") +#! Record("$(P)$(Q)t3",660,344,0,0,"$(P)$(Q)t3") +#! Field("$(P)$(Q)t3.INPA",16777215,1,"$(P)$(Q)t3.INPA") +#! Field("$(P)$(Q)t3.INPB",16777215,1,"$(P)$(Q)t3.INPB") +#! Field("$(P)$(Q)t3.INPC",16777215,1,"$(P)$(Q)t3.INPC") +#! Field("$(P)$(Q)t3.INPD",16777215,1,"$(P)$(Q)t3.INPD") +#! Field("$(P)$(Q)t3.INPE",16777215,1,"$(P)$(Q)t3.INPE") +#! Field("$(P)$(Q)t3.INPF",16777215,1,"$(P)$(Q)t3.INPF") +#! Field("$(P)$(Q)t3.OUTG",16777215,1,"$(P)$(Q)t3.OUTG") +#! Link("$(P)$(Q)t3.OUTG","$(P)$(Q)th.LLM") +#! Field("$(P)$(Q)t3.OUTH",16777215,1,"$(P)$(Q)t3.OUTH") +#! Link("$(P)$(Q)t3.OUTH","$(P)$(Q)th.HLM") +#! Field("$(P)$(Q)t3.OUTI",16777215,1,"$(P)$(Q)t3.OUTI") +#! Link("$(P)$(Q)t3.OUTI","$(P)$(Q)z.LLM") +#! Field("$(P)$(Q)t3.OUTJ",16777215,1,"$(P)$(Q)t3.OUTJ") +#! Link("$(P)$(Q)t3.OUTJ","$(P)$(Q)z.HLM") +#! Field("$(P)$(Q)t3.OUTK",16777215,1,"$(P)$(Q)t3.OUTK") +#! Link("$(P)$(Q)t3.OUTK","$(P)$(Q)x.LLM") +#! Field("$(P)$(Q)t3.OUTL",16777215,1,"$(P)$(Q)t3.OUTL") +#! Link("$(P)$(Q)t3.OUTL","$(P)$(Q)x.HLM") +#! Field("$(P)$(Q)t3.INPN",16777215,0,"$(P)$(Q)t3.INPN") +#! Link("$(P)$(Q)t3.INPN","$(P)$(Q)t3/INPN") +#! Field("$(P)$(Q)t3.INPM",16777215,0,"$(P)$(Q)t3.INPM") +#! Link("$(P)$(Q)t3.INPM","$(P)$(Q)t3/INPM") +#! Field("$(P)$(Q)t3.INPP",16777215,0,"$(P)$(Q)t3.INPP") +#! Link("$(P)$(Q)t3.INPP","$(P)$(Q)t3/INPP") +#! Connector("$(P)$(Q)t3/INPP","$(P)$(Q)zNoseLen.VAL",540,990,16777215,"",0) +#! Connector("$(P)$(Q)t3/INPN","$(P)$(Q)zBendLen.VAL",580,870,16777215,"",0) +#! Connector("$(P)$(Q)t3/INPM","$(P)$(Q)xLen.VAL",560,930,16777215,"",0) +#! Record("$(P)$(Q)clearSoftMove",2060,1635,0,0,"$(P)$(Q)clearSoftMove") +#! Field("$(P)$(Q)clearSoftMove.PROC",16777215,0,"$(P)$(Q)clearSoftMove.PROC") +#! Field("$(P)$(Q)clearSoftMove.OUT",16777215,1,"$(P)$(Q)clearSoftMove.OUT") +#! Link("$(P)$(Q)clearSoftMove.OUT","$(P)$(Q)isSoftMove.VAL") +#! Record("$(P)$(Q)isSoftMove",2380,1242,0,0,"$(P)$(Q)isSoftMove") +#! Field("$(P)$(Q)isSoftMove.VAL",16777215,0,"$(P)$(Q)isSoftMove.VAL") +#! Field("$(P)$(Q)isSoftMove.OUTA",16777215,0,"$(P)$(Q)isSoftMove.OUTA") +#! Link("$(P)$(Q)isSoftMove.OUTA","$(P)$(Q)th.LOCK") +#! Field("$(P)$(Q)isSoftMove.OUTB",16777215,0,"$(P)$(Q)isSoftMove.OUTB") +#! Link("$(P)$(Q)isSoftMove.OUTB","$(P)$(Q)z.LOCK") +#! Field("$(P)$(Q)isSoftMove.OUTC",16777215,0,"$(P)$(Q)isSoftMove.OUTC") +#! Link("$(P)$(Q)isSoftMove.OUTC","$(P)$(Q)x.LOCK") +#! Record("$(P)$(Q)th",1340,667,0,0,"$(P)$(Q)th") +#! Field("$(P)$(Q)th.STOP",16777215,0,"$(P)$(Q)th.STOP") +#! Field("$(P)$(Q)th.LLM",16777215,0,"$(P)$(Q)th.LLM") +#! Field("$(P)$(Q)th.HLM",16777215,0,"$(P)$(Q)th.HLM") +#! Field("$(P)$(Q)th.OUT",16777215,1,"$(P)$(Q)th.OUT") +#! Link("$(P)$(Q)th.OUT","$(P)$(Q)softPut.DO1") +#! Field("$(P)$(Q)th.RDBL",16777215,0,"$(P)$(Q)th.RDBL") +#! Link("$(P)$(Q)th.RDBL","$(P)$(Q)t2.D") +#! Field("$(P)$(Q)th.DINP",16777215,0,"$(P)$(Q)th.DINP") +#! Link("$(P)$(Q)th.DINP","$(P)$(Q)calcDone.VAL") +#! Field("$(P)$(Q)th.LOCK",16777215,1,"$(P)$(Q)th.LOCK") +#! Field("$(P)$(Q)th.SYNC",16777215,0,"$(P)$(Q)th.SYNC") +#! Field("$(P)$(Q)th.DVAL",16777215,1,"$(P)$(Q)th.DVAL") +#! Record("$(P)$(Q)z",1360,927,0,0,"$(P)$(Q)z") +#! Field("$(P)$(Q)z.STOP",16777215,0,"$(P)$(Q)z.STOP") +#! Field("$(P)$(Q)z.LLM",16777215,0,"$(P)$(Q)z.LLM") +#! Field("$(P)$(Q)z.HLM",16777215,0,"$(P)$(Q)z.HLM") +#! Field("$(P)$(Q)z.OUT",16777215,1,"$(P)$(Q)z.OUT") +#! Link("$(P)$(Q)z.OUT","$(P)$(Q)softPut.DO2") +#! Field("$(P)$(Q)z.RDBL",16777215,0,"$(P)$(Q)z.RDBL") +#! Link("$(P)$(Q)z.RDBL","$(P)$(Q)z/RDBL") +#! Field("$(P)$(Q)z.DINP",16777215,0,"$(P)$(Q)z.DINP") +#! Link("$(P)$(Q)z.DINP","$(P)$(Q)calcDone.VAL") +#! Field("$(P)$(Q)z.LOCK",16777215,1,"$(P)$(Q)z.LOCK") +#! Field("$(P)$(Q)z.SYNC",16777215,0,"$(P)$(Q)z.SYNC") +#! Field("$(P)$(Q)z.DVAL",16777215,1,"$(P)$(Q)z.DVAL") +#! Connector("$(P)$(Q)z/RDBL","$(P)$(Q)t2.E",960,1520,16777215,"",0) +#! Record("$(P)$(Q)x",1360,1187,0,0,"$(P)$(Q)x") +#! Field("$(P)$(Q)x.STOP",16777215,0,"$(P)$(Q)x.STOP") +#! Field("$(P)$(Q)x.LLM",16777215,0,"$(P)$(Q)x.LLM") +#! Field("$(P)$(Q)x.HLM",16777215,0,"$(P)$(Q)x.HLM") +#! Field("$(P)$(Q)x.OUT",16777215,1,"$(P)$(Q)x.OUT") +#! Link("$(P)$(Q)x.OUT","$(P)$(Q)softPut.DO3") +#! Field("$(P)$(Q)x.RDBL",16777215,0,"$(P)$(Q)x.RDBL") +#! Link("$(P)$(Q)x.RDBL","$(P)$(Q)x/RDBL") +#! Field("$(P)$(Q)x.DINP",16777215,0,"$(P)$(Q)x.DINP") +#! Link("$(P)$(Q)x.DINP","$(P)$(Q)calcDone.VAL") +#! Field("$(P)$(Q)x.LOCK",16777215,1,"$(P)$(Q)x.LOCK") +#! Field("$(P)$(Q)x.SYNC",16777215,0,"$(P)$(Q)x.SYNC") +#! Field("$(P)$(Q)x.DVAL",16777215,1,"$(P)$(Q)x.DVAL") +#! Connector("$(P)$(Q)x/RDBL","$(P)$(Q)t2.F",980,1660,16777215,"",0) +#! Record("$(P)$(Q)mZOPut",2600,695,0,0,"$(P)$(Q)mZOPut") +#! Field("$(P)$(Q)mZOPut.OUT",16777215,1,"$(P)$(Q)mZOPut.OUT") +#! Field("$(P)$(Q)mZOPut.VAL",16777215,0,"$(P)$(Q)mZOPut.VAL") +#! Record("$(P)$(Q)mZO_nameCalc",2880,695,0,0,"$(P)$(Q)mZO_nameCalc") +#! Field("$(P)$(Q)mZO_nameCalc.INAA",16777215,0,"$(P)$(Q)mZO_nameCalc.INAA") +#! Link("$(P)$(Q)mZO_nameCalc.INAA","$(P)$(Q)mZOPut.OUT") +#! Record("$(P)$(Q)mZIPut",2600,855,0,0,"$(P)$(Q)mZIPut") +#! Field("$(P)$(Q)mZIPut.OUT",16777215,1,"$(P)$(Q)mZIPut.OUT") +#! Field("$(P)$(Q)mZIPut.VAL",16777215,0,"$(P)$(Q)mZIPut.VAL") +#! Record("$(P)$(Q)mZI_nameCalc",2880,855,0,0,"$(P)$(Q)mZI_nameCalc") +#! Field("$(P)$(Q)mZI_nameCalc.INAA",16777215,0,"$(P)$(Q)mZI_nameCalc.INAA") +#! Link("$(P)$(Q)mZI_nameCalc.INAA","$(P)$(Q)mZIPut.OUT") +#! Record("$(P)$(Q)mXPut",2600,1015,0,0,"$(P)$(Q)mXPut") +#! Field("$(P)$(Q)mXPut.VAL",16777215,0,"$(P)$(Q)mXPut.VAL") +#! Field("$(P)$(Q)mXPut.OUT",16777215,1,"$(P)$(Q)mXPut.OUT") +#! Record("$(P)$(Q)mX_nameCalc",2900,1035,0,0,"$(P)$(Q)mX_nameCalc") +#! Field("$(P)$(Q)mX_nameCalc.INAA",16777215,0,"$(P)$(Q)mX_nameCalc.INAA") +#! Link("$(P)$(Q)mX_nameCalc.INAA","$(P)$(Q)mXPut.OUT") +#! Record("$(P)$(Q)softPut",1740,855,0,1,"$(P)$(Q)softPut") +#! Field("$(P)$(Q)softPut.DO1",16777215,0,"$(P)$(Q)softPut.DO1") +#! Field("$(P)$(Q)softPut.DO2",16777215,0,"$(P)$(Q)softPut.DO2") +#! Field("$(P)$(Q)softPut.DO3",16777215,0,"$(P)$(Q)softPut.DO3") +#! Field("$(P)$(Q)softPut.LNK4",16777215,1,"$(P)$(Q)softPut.LNK4") +#! Link("$(P)$(Q)softPut.LNK4","$(P)$(Q)isSoftMove.VAL") +#! Field("$(P)$(Q)softPut.DOL5",16777215,0,"$(P)$(Q)softPut.DOL5") +#! Link("$(P)$(Q)softPut.DOL5","$(P)$(Q)th.DVAL") +#! Field("$(P)$(Q)softPut.LNK5",16777215,1,"$(P)$(Q)softPut.LNK5") +#! Link("$(P)$(Q)softPut.LNK5","$(P)$(Q)softPut/LNK5") +#! Field("$(P)$(Q)softPut.LNK6",16777215,1,"$(P)$(Q)softPut.LNK6") +#! Link("$(P)$(Q)softPut.LNK6","$(P)$(Q)softPut/LNK6") +#! Field("$(P)$(Q)softPut.LNK7",16777215,1,"$(P)$(Q)softPut.LNK7") +#! Link("$(P)$(Q)softPut.LNK7","$(P)$(Q)softPut/LNK7") +#! Field("$(P)$(Q)softPut.DOL6",16777215,0,"$(P)$(Q)softPut.DOL6") +#! Link("$(P)$(Q)softPut.DOL6","$(P)$(Q)z.DVAL") +#! Field("$(P)$(Q)softPut.DOL7",16777215,0,"$(P)$(Q)softPut.DOL7") +#! Link("$(P)$(Q)softPut.DOL7","$(P)$(Q)x.DVAL") +#! Connector("$(P)$(Q)softPut/LNK7","$(P)$(Q)t1.D",2000,920,16777215,"",0) +#! Connector("$(P)$(Q)softPut/LNK6","$(P)$(Q)t1.C",1980,900,16777215,"",0) +#! Connector("$(P)$(Q)softPut/LNK5","$(P)$(Q)t1.B",1960,880,16777215,"",0) diff --git a/opticsApp/Db/MLLH_soft_settings.req b/opticsApp/Db/MLLH_soft_settings.req new file mode 100644 index 0000000..9015991 --- /dev/null +++ b/opticsApp/Db/MLLH_soft_settings.req @@ -0,0 +1,6 @@ +$(P)$(Q)xLen +$(P)$(Q)zNoseLen +$(P)$(Q)zBendLen +file basic_motor_settings.req P=$(P),Q=$(Q),M=$(Q)th +file basic_motor_settings.req P=$(P),Q=$(Q),M=$(Q)z +file basic_motor_settings.req P=$(P),Q=$(Q),M=$(Q)x diff --git a/opticsApp/Db/MLLV_soft.vdb b/opticsApp/Db/MLLV_soft.vdb new file mode 100644 index 0000000..a0cacce --- /dev/null +++ b/opticsApp/Db/MLLV_soft.vdb @@ -0,0 +1,810 @@ +#! Generated by VisualDCT v2.6 +#! DBDSTART +#! DBDEND + + +record(calcout, "$(P)$(Q)closeGate") { + field(DESC, "last written closes gate") + field(CALC, "a&&b") + field(INPA, "$(P)$(Q)gate.VAL") + field(INPB, "$(P)$(mX).DMOV CP") + field(OUT, "$(P)$(Q)gate PP") + field(OOPT, "Transition To Non-zero") + field(DOPT, "Use OCAL") +} + +record(bo, "$(P)$(Q)gate") { + field(DTYP, "Soft Channel") + field(ZNAM, "Closed") + field(ONAM, "Open") +} + +record(bo, "$(P)$(Q)gatePut") { + field(DTYP, "Soft Channel") + field(OUT, "$(P)$(Q)gate.VAL PP MS") + field(ZNAM, "Closed") + field(ONAM, "Open") +} + +record(bo, "$(P)$(Q)set") { + field(DTYP, "Soft Channel") + field(FLNK, "$(P)$(Q)set1.PROC PP MS") + field(OUT, "$(P)$(mYU).SET PP MS") + field(ZNAM, "Use") + field(ONAM, "Set") +} + +record(bo, "$(P)$(Q)set1") { + field(DTYP, "Soft Channel") + field(OMSL, "closed_loop") + field(DOL, "$(P)$(Q)set.VAL NPP NMS") + field(OUT, "$(P)$(mYD).SET PP MS") + field(ZNAM, "Use") + field(ONAM, "Set") + field(FLNK, "$(P)$(Q)set2.PROC PP MS") +} + +record(bo, "$(P)$(Q)set2") { + field(DTYP, "Soft Channel") + field(OMSL, "closed_loop") + field(DOL, "$(P)$(Q)set.VAL NPP NMS") + field(OUT, "$(P)$(mRZ).SET PP MS") + field(ZNAM, "Use") + field(ONAM, "Set") + field(FLNK, "$(P)$(Q)set3.PROC PP MS") +} + +record(bo, "$(P)$(Q)set3") { + field(DTYP, "Soft Channel") + field(OMSL, "closed_loop") + field(DOL, "$(P)$(Q)set.VAL NPP NMS") + field(OUT, "$(P)$(mZ).SET PP MS") + field(ZNAM, "Use") + field(ONAM, "Set") + field(FLNK, "$(P)$(Q)set4.PROC PP MS") +} + +record(bo, "$(P)$(Q)set4") { + field(DTYP, "Soft Channel") + field(OMSL, "closed_loop") + field(DOL, "$(P)$(Q)set.VAL NPP NMS") + field(OUT, "$(P)$(mX).SET PP MS") + field(ZNAM, "Use") + field(ONAM, "Set") +} + +record(dfanout, "$(P)$(Q)stop") { + field(OUTA, "$(P)$(Q)th.STOP CA MS") + field(OUTB, "$(P)$(Q)z.STOP CA MS") + field(OUTC, "$(P)$(Q)y.STOP CA MS") + field(OUTD, "$(P)$(Q)chi.STOP CA MS") + field(OUTE, "$(P)$(Q)x.STOP CA MS") + field(OUTF, "$(P)$(Q)stopMotors PP MS") + field(DOL, "1") +} + +record(dfanout, "$(P)$(Q)stopMotors") { + field(OUTA, "$(P)$(mYD).STOP CA MS") + field(OUTB, "$(P)$(mYU).STOP CA MS") + field(OUTC, "$(P)$(mRZ).STOP CA MS") + field(OUTD, "$(P)$(mZ).STOP CA MS") + field(OUTE, "$(P)$(mX).STOP CA MS") + field(DOL, "1") +} + +record(seq, "$(P)$(Q)sync") { + field(LNK1, "$(P)$(Q)tRev.PROC PP") + field(DO2, "1") + field(LNK2, "$(P)$(Q)th.SYNC CA") + field(DO3, "1") + field(LNK3, "$(P)$(Q)z.SYNC CA") + field(DO4, "1") + field(LNK4, "$(P)$(Q)y.SYNC CA") + field(DO5, "1") + field(LNK5, "$(P)$(Q)chi.SYNC CA") + field(DO6, "1") + field(LNK6, "$(P)$(Q)x.SYNC CA") +} + +record(seq, "$(P)$(Q)init") { + field(PINI, "YES") + field(PREC, "1") + field(DLY1, "5") + field(LNK1, "$(P)$(Q)sync.PROC PP MS") + field(DLY2, "0") + field(LNK2, "0") +} + +record(ao, "$(P)$(Q)zLen") { + field(PREC, "3") + field(DOL, "61") +} + +record(transform, "$(P)$(Q)tFwd") { + field(PREC, "5") + field(DESC, "th,z,y,chi,x -> yd,yu,rz,zm,xm") + field(CMTA, "$thrad from motors (radians)") + field(CLCA, "atan(($yu-$yd)/$zLen)") + field(CMTB, "$th (deg)") + field(CLCB, "R2D*$thrad") + field(CMTC, "$z") + field(CLCC, "$zm+(($yu-$yd)/$zLen)*38.6") + field(CMTD, "$y") + field(CLCD, "$yd*59.42/$zLen+$yu*1.58/$zLen+2.3*$thrad+(-13.4789)*($thrad^2)+0*atan($rz/$yLen)+0*(atan($rz/$yLen))^2") + field(CMTE, "$chi") + field(CLCE, "r2d*atan($rz/$yLen)") + field(CMTF, "$x") + field(CLCF, "$xm") + field(CMTG, "gate") + field(CLCG, "1") + field(OUTG, "$(P)$(Q)gatePut.VAL PP MS") + field(CMTH, "$yd") + field(CLCH, "$y-(2.3)*(d2r*$th)-(-13.4789)*((d2r*$th)^2)-0*(d2r*$chi)-0*((d2r*$chi)^2)-tan(d2r*$th)*1.58") + field(OUTH, "$(P)$(Q)mYDPut.VAL PP MS") + field(CMTI, "$yu") + field(CLCI, "$y-2.3*(d2r*$th)-(-13.4789)*((d2r*$th)^2)-0*(d2r*$chi)-0*((d2r*$chi)^2)+tan(d2r*$th)*59.42") + field(OUTI, "$(P)$(Q)mYUPut.VAL PP MS") + field(CMTJ, "$rz") + field(CLCJ, "tan(d2r*$chi)*$yLen") + field(OUTJ, "$(P)$(Q)mRZPut.VAL PP MS") + field(CMTK, "$zm") + field(CLCK, "$z-tan(d2r*$th)*38.6") + field(OUTK, "$(P)$(Q)mZPut.VAL PP MS") + field(CMTL, "$xm") + field(CLCL, "$x") + field(OUTL, "$(P)$(Q)mXPut.VAL PP MS") + field(CMTM, "$zLen") + field(INPM, "$(P)$(Q)zLen") + field(CMTN, "$yLen") + field(INPN, "$(P)$(Q)yLen.VAL") +} + +record(transform, "$(P)$(Q)tRev") { + field(DESC, "(yd,yu,rz,zm,xm)->(th,z,y,chi,x)") + field(EGU, "mm") + field(PREC, "5") + field(CMTA, "$yd mYD readback") + field(INPA, "$(P)$(mYD).RBV CP MS") + field(CMTB, "$yu mYU readback") + field(INPB, "$(P)$(mYU).RBV CP MS") + field(CMTC, "$rz mRZ readback") + field(INPC, "$(P)$(mRZ).RBV CP MS") + field(CMTD, "$zm mZ readback") + field(INPD, "$(P)$(mZ).RBV CP MS") + field(CMTE, "$xm mX readback") + field(INPE, "$(P)$(mX).RBV CP MS") + field(CMTF, "$th TH from motor readbacks") + field(CLCF, "R2D*atan(($yu-$yd)/$zLen)") + field(CMTG, "$z Z from motor readbacks") + field(CLCG, "$zm+(($yu-$yd)/$zLen)*38.6") + field(CMTH, "$y Y from motor readbacks") + field(CLCH, "$yd*59.42/$zLen+$yu*1.58/$zLen+2.3*atan(($yu-$yd)/$zLen)+(-13.4789)*(atan(($yu-$yd)/$zLen))^2") + field(CMTI, "$chi CHI from motor readbacks") + field(CLCI, "r2d*atan($rz/$yLen)") + field(CMTJ, "$x X from motor readbacks") + field(CLCJ, "$xm") + field(CMTN, "$yLen") + field(INPN, "$(P)$(Q)yLen.VAL") + field(CMTM, "$zLen") + field(INPM, "$(P)$(Q)zLen") +} + + +record(calcout, "$(P)$(Q)calcDone") { + field(DESC, "calc done, clear softMove?") + field(CALC, "b&&c&&d&&e&&f&&!a") + field(INPA, "$(P)$(Q)gate.VAL CP MS") + field(INPB, "$(P)$(mYD).DMOV CP MS") + field(INPC, "$(P)$(mYU).DMOV CP MS") + field(INPD, "$(P)$(mRZ).DMOV CP MS") + field(INPE, "$(P)$(mZ).DMOV CP MS") + field(INPF, "$(P)$(mX).DMOV CP MS") + field(OUT, "$(P)$(Q)clearSoftMove.PROC PP") + field(OOPT, "Transition To Non-zero") +} + +record(transform, "$(P)$(Q)tLimits") { +# disable this; doesn't work + field(DISV, "0") + field(PREC, "3") + field(PHAS, "0") + field(CMTA, "$ydL") + field(INPA, "$(P)$(mYD).LLM CP NMS") + field(CMTB, "$ydH") + field(INPB, "$(P)$(mYD).HLM CP NMS") + field(CMTC, "$yuL") + field(INPC, "$(P)$(mYU).LLM CP NMS") + field(CMTD, "$yuH") + field(INPD, "$(P)$(mYU).HLM CP NMS") + field(CMTE, "$rzL") + field(INPE, "$(P)$(mRZ).LLM CP NMS") + field(CMTF, "$rzH") + field(INPF, "$(P)$(mRZ).HLM CP NMS") + field(CMTG, "$zL") + field(INPG, "$(P)$(mZ).LLM CP NMS") + field(CMTH, "$zH") + field(INPH, "$(P)$(mZ).HLM CP NMS") + field(CMTI, "calc th.LLM") + field(CLCI, "r2d*atan(($yuL-$ydH)/$zLen)") + field(OUTI, "$(P)$(Q)th.LLM NPP MS") + field(CMTJ, "calc th.HLM") + field(CLCJ, "r2d*atan(($yuh-$ydL)/$zLen)") + field(OUTJ, "$(P)$(Q)th.HLM NPP MS") + field(CMTK, "calc z.LLM") + field(CLCK, "$zL+(($yuL-$ydH)/$zLen)*38.6") + field(OUTK, "$(P)$(Q)z.LLM NPP MS") + field(CMTL, "calc z.HLM") + field(CLCL, "$zH+(($yuH-$ydL)/$zLen)*38.6") + field(OUTL, "$(P)$(Q)z.HLM NPP MS") + field(CMTM, "calc y.LLM") + field(CLCM, "$ydL*59.42/$zLen+$yuL*1.58/$zLen+2.3*atan(($yuL-$ydH)/$zLen)+(-13.4789)*(atan(($yuH-$ydL)/$zLen))^2") + field(OUTM, "$(P)$(Q)y.LLM NPP MS") + field(CMTN, "calc y.HLM") + field(CLCN, "$ydH*59.42/$zLen+$yuH*1.58/$zLen+2.3*atan(($yuH-$ydL)/$zLen)+(-13.4789)*(atan(($yuL-$ydH)/$zLen))^2") + field(OUTN, "$(P)$(Q)y.HLM NPP MS") + field(CMTO, "$zLen") + field(INPO, "$(P)$(Q)zLen") +} + +record(transform, "$(P)$(Q)tLimits1") { +# disable this; doesn't work + field(DISV, "0") + field(PREC, "3") + field(PHAS, "0") + field(CMTA, "$xL") + field(INPA, "$(P)$(mX).LLM CP NMS") + field(CMTB, "$xH") + field(INPB, "$(P)$(mX).HLM CP NMS") + field(CMTC, "$yuL") + field(INPC, "$(P)$(mYU).LLM CP NMS") + field(CMTD, "$yuH") + field(INPD, "$(P)$(mYU).HLM CP NMS") + field(CMTE, "$rzL") + field(INPE, "$(P)$(mRZ).LLM CP NMS") + field(CMTF, "$rzH") + field(INPF, "$(P)$(mRZ).HLM CP NMS") + field(CMTG, "$zL") + field(INPG, "$(P)$(mZ).LLM CP NMS") + field(CMTH, "$zH") + field(INPH, "$(P)$(mZ).HLM CP NMS") + field(CMTI, "calc chi.LLM") + field(CLCI, "r2d*atan($rzL/$yLen)") + field(OUTI, "$(P)$(Q)chi.LLM NPP MS") + field(CMTJ, "calc chi.HLM") + field(CLCJ, "r2d*atan($rzH/$yLen)") + field(OUTJ, "$(P)$(Q)chi.HLM NPP MS") + field(CMTK, "calc x.LLM") + field(CLCK, "$xL") + field(OUTK, "$(P)$(Q)x.LLM NPP MS") + field(CMTL, "calc x.HLM") + field(CLCL, "$xH") + field(OUTL, "$(P)$(Q)x.HLM NPP MS") + field(CMTO, "zLen") + field(INPO, "$(P)$(Q)zLen") + field(CMTP, "$yLen") + field(INPP, "$(P)$(Q)yLen") +} + +record(motor, "$(P)$(Q)th") { + field(DESC, "$(Q) th") + field(DTYP, "Soft Channel") + field(OUT, "$(P)$(Q)softPut.PROC PP MS") + field(RDBL, "$(P)$(Q)tRev.F NPP MS") + field(MRES, ".001") + field(RRES, "1") + field(URIP, "Yes") + field(PREC, "3") + field(EGU, "deg") + field(TWV, "1") + field(DINP, "$(P)$(Q)calcDone NPP MS") +} + +record(motor, "$(P)$(Q)z") { + field(DESC, "$(Q) z") + field(DTYP, "Soft Channel") + field(OUT, "$(P)$(Q)softPut.PROC PP MS") + field(RDBL, "$(P)$(Q)tRev.G NPP MS") + field(MRES, ".001") + field(RRES, "1") + field(URIP, "Yes") + field(PREC, "3") + field(EGU, "mm") + field(TWV, "1") + field(DINP, "$(P)$(Q)calcDone NPP MS") +} + +record(motor, "$(P)$(Q)y") { + field(DESC, "$(Q) y") + field(DTYP, "Soft Channel") + field(OUT, "$(P)$(Q)softPut.PROC PP MS") + field(RDBL, "$(P)$(Q)tRev.H NPP MS") + field(MRES, ".001") + field(RRES, "1") + field(URIP, "Yes") + field(PREC, "3") + field(EGU, "mm") + field(TWV, "1") + field(DINP, "$(P)$(Q)calcDone NPP MS") +} + +record(motor, "$(P)$(Q)chi") { + field(DESC, "$(Q) chi") + field(DTYP, "Soft Channel") + field(OUT, "$(P)$(Q)softPut.PROC PP MS") + field(RDBL, "$(P)$(Q)tRev.I NPP MS") + field(MRES, ".001") + field(RRES, "1") + field(URIP, "Yes") + field(PREC, "3") + field(EGU, "mm") + field(TWV, "1") + field(DINP, "$(P)$(Q)calcDone NPP MS") +} + +record(motor, "$(P)$(Q)x") { + field(DESC, "$(Q) x") + field(DTYP, "Soft Channel") + field(OUT, "$(P)$(Q)softPut.PROC PP MS") + field(RDBL, "$(P)$(Q)tRev.J") + field(MRES, ".001") + field(RRES, "1") + field(URIP, "Yes") + field(PREC, "3") + field(EGU, "mm") + field(TWV, "1") + field(DINP, "$(P)$(Q)calcDone NPP MS") +} + +record(ao, "$(P)$(Q)mYDPut") { + field(DTYP, "Soft Channel") + field(OUT, "$(P)$(mYD).VAL PP MS") +} + +record(scalcout, "$(P)$(Q)mYD_nameCalc") { + field(CALC, "aa[0,'.']") + field(INAA, "$(P)$(Q)mYDPut.OUT CPP") +} + +record(ao, "$(P)$(Q)mYUPut") { + field(DTYP, "Soft Channel") + field(OUT, "$(P)$(mYU).VAL PP MS") +} + +record(scalcout, "$(P)$(Q)mYU_nameCalc") { + field(CALC, "aa[0,'.']") + field(INAA, "$(P)$(Q)mYUPut.OUT CPP") +} + +record(ao, "$(P)$(Q)mZPut") { + field(DTYP, "Soft Channel") + field(OUT, "$(P)$(mZ).VAL PP MS") +} + +record(scalcout, "$(P)$(Q)mZ_nameCalc") { + field(CALC, "aa[0,'.']") + field(INAA, "$(P)$(Q)mZPut.OUT CPP") +} + +record(ao, "$(P)$(Q)mRZPut") { + field(DTYP, "Soft Channel") + field(OUT, "$(P)$(mRZ).VAL PP MS") +} + +record(scalcout, "$(P)$(Q)mRZ_nameCalc") { + field(CALC, "aa[0,'.']") + field(INAA, "$(P)$(Q)mRZPut.OUT CPP") +} + +record(ao, "$(P)$(Q)mXPut") { + field(DTYP, "Soft Channel") + field(OUT, "$(P)$(mX).VAL PP MS") +} + +record(scalcout, "$(P)$(Q)mX_nameCalc") { + field(CALC, "aa[0,'.']") + field(INAA, "$(P)$(Q)mXPut.OUT CPP") +} + +record(ao, "$(P)$(Q)yLen") { + field(PREC, "3") + field(DOL, "59.55") +} + +record(bo, "$(P)$(Q)clearSoftMove") { + field(DOL, "0") + field(OUT, "$(P)$(Q)isSoftMove PP") +} + +record(dfanout, "$(P)$(Q)isSoftMove") { + field(OUTA, "$(P)$(Q)th.LOCK") + field(OUTB, "$(P)$(Q)z.LOCK") + field(OUTC, "$(P)$(Q)y.LOCK") + field(OUTD, "$(P)$(Q)chi.LOCK") + field(OUTE, "$(P)$(Q)x.LOCK") +} + + +record(seq, "$(P)$(Q)softPut") { + field(PREC, "3") + field(DOL2, "1") + field(LNK2, "$(P)$(Q)isSoftMove PP") + field(DOL3, "$(P)$(Q)th.DVAL") + field(LNK3, "$(P)$(Q)tFwd.B") + field(DOL4, "$(P)$(Q)z.DVAL") + field(LNK4, "$(P)$(Q)tFwd.C") + field(DOL5, "$(P)$(Q)y.DVAL") + field(LNK5, "$(P)$(Q)tFwd.D") + field(DOL6, "$(P)$(Q)chi.DVAL") + field(LNK6, "$(P)$(Q)tFwd.E") + field(DOL7, "$(P)$(Q)x.DVAL") + field(LNK7, "$(P)$(Q)tFwd.F PP") +} + +#! Further lines contain data used by VisualDCT +#! View(629,709,0.7) +#! Record("$(P)$(Q)closeGate",3440,663,0,0,"$(P)$(Q)closeGate") +#! Field("$(P)$(Q)closeGate.INPA",16777215,0,"$(P)$(Q)closeGate.INPA") +#! Link("$(P)$(Q)closeGate.INPA","$(P)$(Q)gate.VAL") +#! Field("$(P)$(Q)closeGate.INPB",16777215,1,"$(P)$(Q)closeGate.INPB") +#! Field("$(P)$(Q)closeGate.OUT",16777215,0,"$(P)$(Q)closeGate.OUT") +#! Link("$(P)$(Q)closeGate.OUT","$(P)$(Q)gate.VAL") +#! Record("$(P)$(Q)gate",3160,720,0,0,"$(P)$(Q)gate") +#! Field("$(P)$(Q)gate.VAL",16777215,1,"$(P)$(Q)gate.VAL") +#! Record("$(P)$(Q)gatePut",2620,706,0,0,"$(P)$(Q)gatePut") +#! Field("$(P)$(Q)gatePut.OUT",16777215,1,"$(P)$(Q)gatePut.OUT") +#! Link("$(P)$(Q)gatePut.OUT","$(P)$(Q)gate.VAL") +#! Field("$(P)$(Q)gatePut.VAL",16777215,0,"$(P)$(Q)gatePut.VAL") +#! Record("$(P)$(Q)set",1480,112,0,0,"$(P)$(Q)set") +#! Field("$(P)$(Q)set.OUT",16777215,1,"$(P)$(Q)set.OUT") +#! Field("$(P)$(Q)set.VAL",16777215,1,"$(P)$(Q)set.VAL") +#! Field("$(P)$(Q)set.FLNK",16777215,1,"$(P)$(Q)set.FLNK") +#! Link("$(P)$(Q)set.FLNK","$(P)$(Q)set1") +#! Record("$(P)$(Q)set1",1800,163,0,0,"$(P)$(Q)set1") +#! Field("$(P)$(Q)set1.DOL",16777215,0,"$(P)$(Q)set1.DOL") +#! Link("$(P)$(Q)set1.DOL","$(P)$(Q)set1/DOL") +#! Field("$(P)$(Q)set1.OUT",16777215,1,"$(P)$(Q)set1.OUT") +#! Field("$(P)$(Q)set1.FLNK",16777215,1,"$(P)$(Q)set1.FLNK") +#! Link("$(P)$(Q)set1.FLNK","$(P)$(Q)set1/FLNK") +#! Connector("$(P)$(Q)set1/DOL","$(P)$(Q)set.VAL",1720,300,16777215,"",0) +#! Connector("$(P)$(Q)set1/FLNK","$(P)$(Q)set2",2020,305,16777215,"",0) +#! Record("$(P)$(Q)set2",2100,163,0,0,"$(P)$(Q)set2") +#! Field("$(P)$(Q)set2.DOL",16777215,0,"$(P)$(Q)set2.DOL") +#! Link("$(P)$(Q)set2.DOL","$(P)$(Q)set2/DOL1") +#! Field("$(P)$(Q)set2.OUT",16777215,1,"$(P)$(Q)set2.OUT") +#! Field("$(P)$(Q)set2.FLNK",16777215,1,"$(P)$(Q)set2.FLNK") +#! Link("$(P)$(Q)set2.FLNK","$(P)$(Q)set2/FLNK") +#! Connector("$(P)$(Q)set2/DOL","$(P)$(Q)set.VAL",1867,240,16777215,"",0) +#! Connector("$(P)$(Q)set2/DOL1","$(P)$(Q)set2/DOL",2040,285,16777215,"",0) +#! Connector("$(P)$(Q)set2/FLNK","$(P)$(Q)set3",2320,305,16777215,"",0) +#! Record("$(P)$(Q)set3",2400,163,0,0,"$(P)$(Q)set3") +#! Field("$(P)$(Q)set3.DOL",16777215,0,"$(P)$(Q)set3.DOL") +#! Link("$(P)$(Q)set3.DOL","$(P)$(Q)set3/DOL1") +#! Field("$(P)$(Q)set3.OUT",16777215,1,"$(P)$(Q)set3.OUT") +#! Field("$(P)$(Q)set3.FLNK",16777215,1,"$(P)$(Q)set3.FLNK") +#! Link("$(P)$(Q)set3.FLNK","$(P)$(Q)set3/FLNK") +#! Connector("$(P)$(Q)set3/DOL","$(P)$(Q)set.VAL",2017,240,16777215,"",0) +#! Connector("$(P)$(Q)set3/DOL1","$(P)$(Q)set3/DOL",2340,285,16777215,"",0) +#! Connector("$(P)$(Q)set3/FLNK","$(P)$(Q)set4",2620,309,16777215,"",0) +#! Record("$(P)$(Q)set4",2720,178,0,0,"$(P)$(Q)set4") +#! Field("$(P)$(Q)set4.DOL",16777215,0,"$(P)$(Q)set4.DOL") +#! Link("$(P)$(Q)set4.DOL","$(P)$(Q)set4/DOL1") +#! Field("$(P)$(Q)set4.OUT",16777215,1,"$(P)$(Q)set4.OUT") +#! Connector("$(P)$(Q)set4/DOL","$(P)$(Q)set.VAL",2177,240,16777215,"",0) +#! Connector("$(P)$(Q)set4/DOL1","$(P)$(Q)set4/DOL",2660,285,16777215,"",0) +#! Record("$(P)$(Q)stop",800,263,0,0,"$(P)$(Q)stop") +#! Field("$(P)$(Q)stop.OUTA",16711680,1,"$(P)$(Q)stop.OUTA") +#! Link("$(P)$(Q)stop.OUTA","$(P)$(Q)th.STOP") +#! Field("$(P)$(Q)stop.OUTB",16711680,1,"$(P)$(Q)stop.OUTB") +#! Link("$(P)$(Q)stop.OUTB","$(P)$(Q)z.STOP") +#! Field("$(P)$(Q)stop.OUTC",16711680,1,"$(P)$(Q)stop.OUTC") +#! Link("$(P)$(Q)stop.OUTC","$(P)$(Q)y.STOP") +#! Field("$(P)$(Q)stop.OUTD",16711680,1,"$(P)$(Q)stop.OUTD") +#! Link("$(P)$(Q)stop.OUTD","$(P)$(Q)chi.STOP") +#! Field("$(P)$(Q)stop.OUTE",16711680,1,"$(P)$(Q)stop.OUTE") +#! Link("$(P)$(Q)stop.OUTE","$(P)$(Q)x.STOP") +#! Field("$(P)$(Q)stop.OUTF",16777215,1,"$(P)$(Q)stop.OUTF") +#! Link("$(P)$(Q)stop.OUTF","$(P)$(Q)stopMotors.VAL") +#! Record("$(P)$(Q)stopMotors",1280,258,0,0,"$(P)$(Q)stopMotors") +#! Field("$(P)$(Q)stopMotors.VAL",16777215,0,"$(P)$(Q)stopMotors.VAL") +#! Field("$(P)$(Q)stopMotors.OUTA",16777215,1,"$(P)$(Q)stopMotors.OUTA") +#! Field("$(P)$(Q)stopMotors.OUTB",16777215,1,"$(P)$(Q)stopMotors.OUTB") +#! Field("$(P)$(Q)stopMotors.OUTC",16777215,1,"$(P)$(Q)stopMotors.OUTC") +#! Field("$(P)$(Q)stopMotors.OUTD",16777215,1,"$(P)$(Q)stopMotors.OUTD") +#! Field("$(P)$(Q)stopMotors.OUTE",16777215,1,"$(P)$(Q)stopMotors.OUTE") +#! Record("$(P)$(Q)sync",420,-15,0,0,"$(P)$(Q)sync") +#! Field("$(P)$(Q)sync.PROC",16777215,0,"$(P)$(Q)sync.PROC") +#! Field("$(P)$(Q)sync.LNK1",16713215,1,"$(P)$(Q)sync.LNK1") +#! Link("$(P)$(Q)sync.LNK1","$(P)$(Q)tRev.PROC") +#! Field("$(P)$(Q)sync.LNK2",16713215,1,"$(P)$(Q)sync.LNK2") +#! Link("$(P)$(Q)sync.LNK2","$(P)$(Q)sync/LNK2") +#! Field("$(P)$(Q)sync.LNK3",16711935,1,"$(P)$(Q)sync.LNK3") +#! Link("$(P)$(Q)sync.LNK3","$(P)$(Q)sync/LNK3") +#! Field("$(P)$(Q)sync.LNK4",16711935,1,"$(P)$(Q)sync.LNK4") +#! Link("$(P)$(Q)sync.LNK4","$(P)$(Q)sync/LNK4") +#! Field("$(P)$(Q)sync.LNK5",16711935,1,"$(P)$(Q)sync.LNK5") +#! Link("$(P)$(Q)sync.LNK5","$(P)$(Q)sync/LNK5") +#! Field("$(P)$(Q)sync.LNK6",16711935,1,"$(P)$(Q)sync.LNK6") +#! Link("$(P)$(Q)sync.LNK6","$(P)$(Q)sync/LNK6") +#! Connector("$(P)$(Q)sync/LNK2","$(P)$(Q)th.SYNC",1140,530,16713215,"",0) +#! Connector("$(P)$(Q)sync/LNK3","$(P)$(Q)z.SYNC",1140,670,16711935,"",0) +#! Connector("$(P)$(Q)sync/LNK4","$(P)$(Q)y.SYNC",1140,810,16711935,"",0) +#! Connector("$(P)$(Q)sync/LNK5","$(P)$(Q)chi.SYNC",1140,960,16711935,"",0) +#! Connector("$(P)$(Q)sync/LNK6","$(P)$(Q)x.SYNC",1140,1100,16711935,"",0) +#! Record("$(P)$(Q)init",460,-42,0,0,"$(P)$(Q)init") +#! Field("$(P)$(Q)init.LNK1",16777215,0,"$(P)$(Q)init.LNK1") +#! Link("$(P)$(Q)init.LNK1","$(P)$(Q)sync.PROC") +#! Record("$(P)$(Q)zLen",400,475,0,0,"$(P)$(Q)zLen") +#! Field("$(P)$(Q)zLen.VAL",10092543,1,"$(P)$(Q)zLen.VAL") +#! Record("$(P)$(Q)tFwd",2200,543,0,0,"$(P)$(Q)tFwd") +#! Field("$(P)$(Q)tFwd.INPM",10092543,0,"$(P)$(Q)tFwd.INPM") +#! Link("$(P)$(Q)tFwd.INPM","$(P)$(Q)tFwd/INPM1") +#! Field("$(P)$(Q)tFwd.INPN",10092543,0,"$(P)$(Q)tFwd.INPN") +#! Link("$(P)$(Q)tFwd.INPN","$(P)$(Q)tFwd/INPN1") +#! Field("$(P)$(Q)tFwd.B",16777215,0,"$(P)$(Q)tFwd.B") +#! Field("$(P)$(Q)tFwd.C",16777215,0,"$(P)$(Q)tFwd.C") +#! Field("$(P)$(Q)tFwd.D",16777215,0,"$(P)$(Q)tFwd.D") +#! Field("$(P)$(Q)tFwd.E",16777215,0,"$(P)$(Q)tFwd.E") +#! Field("$(P)$(Q)tFwd.F",16777215,0,"$(P)$(Q)tFwd.F") +#! Field("$(P)$(Q)tFwd.OUTG",16777215,1,"$(P)$(Q)tFwd.OUTG") +#! Link("$(P)$(Q)tFwd.OUTG","$(P)$(Q)tFwd/OUTG") +#! Field("$(P)$(Q)tFwd.OUTH",16777215,1,"$(P)$(Q)tFwd.OUTH") +#! Link("$(P)$(Q)tFwd.OUTH","$(P)$(Q)tFwd/OUTH") +#! Field("$(P)$(Q)tFwd.OUTI",16777215,1,"$(P)$(Q)tFwd.OUTI") +#! Link("$(P)$(Q)tFwd.OUTI","$(P)$(Q)tFwd/OUTI") +#! Field("$(P)$(Q)tFwd.OUTJ",16777215,1,"$(P)$(Q)tFwd.OUTJ") +#! Link("$(P)$(Q)tFwd.OUTJ","$(P)$(Q)tFwd/OUTJ") +#! Field("$(P)$(Q)tFwd.OUTK",16777215,1,"$(P)$(Q)tFwd.OUTK") +#! Link("$(P)$(Q)tFwd.OUTK","$(P)$(Q)mZPut.VAL") +#! Field("$(P)$(Q)tFwd.OUTL",16777215,1,"$(P)$(Q)tFwd.OUTL") +#! Link("$(P)$(Q)tFwd.OUTL","$(P)$(Q)mXPut.VAL") +#! Connector("$(P)$(Q)tFwd/INPM","$(P)$(Q)zLen.VAL",1365,560,10092543,"",0) +#! Connector("$(P)$(Q)tFwd/INPM1","$(P)$(Q)tFwd/INPM",2120,845,10092543,"",0) +#! Connector("$(P)$(Q)tFwd/INPN","$(P)$(Q)yLen.VAL",1345,580,10092543,"",0) +#! Connector("$(P)$(Q)tFwd/INPN1","$(P)$(Q)tFwd/INPN",2100,865,10092543,"",0) +#! Connector("$(P)$(Q)tFwd/OUTG","$(P)$(Q)gatePut.VAL",2460,1060,16777215,"",0) +#! Connector("$(P)$(Q)tFwd/OUTH","$(P)$(Q)mYDPut.VAL",2480,1150,16777215,"",0) +#! Connector("$(P)$(Q)tFwd/OUTI","$(P)$(Q)mYUPut.VAL",2500,1220,16777215,"",0) +#! Connector("$(P)$(Q)tFwd/OUTJ","$(P)$(Q)mRZPut.VAL",2520,1280,16777215,"",0) +#! Record("$(P)$(Q)tRev",700,833,0,0,"$(P)$(Q)tRev") +#! Field("$(P)$(Q)tRev.PROC",16713215,0,"$(P)$(Q)tRev.PROC") +#! Field("$(P)$(Q)tRev.INPA",16777215,0,"$(P)$(Q)tRev.INPA") +#! Field("$(P)$(Q)tRev.INPB",16777215,0,"$(P)$(Q)tRev.INPB") +#! Field("$(P)$(Q)tRev.INPC",16777215,1,"$(P)$(Q)tRev.INPC") +#! Field("$(P)$(Q)tRev.INPD",16777215,1,"$(P)$(Q)tRev.INPD") +#! Field("$(P)$(Q)tRev.INPE",16777215,1,"$(P)$(Q)tRev.INPE") +#! Field("$(P)$(Q)tRev.F",16777215,1,"$(P)$(Q)tRev.F") +#! Field("$(P)$(Q)tRev.G",16777215,1,"$(P)$(Q)tRev.G") +#! Field("$(P)$(Q)tRev.H",16777215,1,"$(P)$(Q)tRev.H") +#! Field("$(P)$(Q)tRev.I",16777215,1,"$(P)$(Q)tRev.I") +#! Field("$(P)$(Q)tRev.J",16777215,1,"$(P)$(Q)tRev.J") +#! Field("$(P)$(Q)tRev.INPM",10092543,0,"$(P)$(Q)tRev.INPM") +#! Link("$(P)$(Q)tRev.INPM","$(P)$(Q)zLen.VAL") +#! Field("$(P)$(Q)tRev.INPN",16777215,0,"$(P)$(Q)tRev.INPN") +#! Link("$(P)$(Q)tRev.INPN","$(P)$(Q)yLen.VAL") +#! Record("$(P)$(Q)calcDone",1240,1919,0,0,"$(P)$(Q)calcDone") +#! Field("$(P)$(Q)calcDone.INPA",16777215,1,"$(P)$(Q)calcDone.INPA") +#! Link("$(P)$(Q)calcDone.INPA","$(P)$(Q)gate.VAL") +#! Field("$(P)$(Q)calcDone.INPB",16777215,1,"$(P)$(Q)calcDone.INPB") +#! Field("$(P)$(Q)calcDone.INPC",16777215,1,"$(P)$(Q)calcDone.INPC") +#! Field("$(P)$(Q)calcDone.INPD",16777215,1,"$(P)$(Q)calcDone.INPD") +#! Field("$(P)$(Q)calcDone.INPE",16777215,1,"$(P)$(Q)calcDone.INPE") +#! Field("$(P)$(Q)calcDone.INPF",16777215,1,"$(P)$(Q)calcDone.INPF") +#! Field("$(P)$(Q)calcDone.OUT",16777215,1,"$(P)$(Q)calcDone.OUT") +#! Link("$(P)$(Q)calcDone.OUT","$(P)$(Q)calcDone/OUT") +#! Field("$(P)$(Q)calcDone.VAL",65280,0,"$(P)$(Q)calcDone.VAL") +#! Connector("$(P)$(Q)calcDone/OUT","$(P)$(Q)clearSoftMove.PROC",1700,1900,16777215,"",0) +#! Record("$(P)$(Q)tLimits",720,40,0,0,"$(P)$(Q)tLimits") +#! Field("$(P)$(Q)tLimits.INPA",16777215,1,"$(P)$(Q)tLimits.INPA") +#! Field("$(P)$(Q)tLimits.INPB",16777215,1,"$(P)$(Q)tLimits.INPB") +#! Field("$(P)$(Q)tLimits.INPC",16777215,1,"$(P)$(Q)tLimits.INPC") +#! Field("$(P)$(Q)tLimits.INPD",16777215,1,"$(P)$(Q)tLimits.INPD") +#! Field("$(P)$(Q)tLimits.INPE",16777215,1,"$(P)$(Q)tLimits.INPE") +#! Field("$(P)$(Q)tLimits.INPF",16777215,1,"$(P)$(Q)tLimits.INPF") +#! Field("$(P)$(Q)tLimits.INPG",16777215,1,"$(P)$(Q)tLimits.INPG") +#! Field("$(P)$(Q)tLimits.INPH",16777215,1,"$(P)$(Q)tLimits.INPH") +#! Field("$(P)$(Q)tLimits.OUTI",16777215,1,"$(P)$(Q)tLimits.OUTI") +#! Link("$(P)$(Q)tLimits.OUTI","$(P)$(Q)th.LLM") +#! Field("$(P)$(Q)tLimits.OUTJ",16777215,1,"$(P)$(Q)tLimits.OUTJ") +#! Link("$(P)$(Q)tLimits.OUTJ","$(P)$(Q)th.HLM") +#! Field("$(P)$(Q)tLimits.OUTK",16777215,1,"$(P)$(Q)tLimits.OUTK") +#! Link("$(P)$(Q)tLimits.OUTK","$(P)$(Q)tLimits/OUTK") +#! Field("$(P)$(Q)tLimits.OUTL",16777215,1,"$(P)$(Q)tLimits.OUTL") +#! Link("$(P)$(Q)tLimits.OUTL","$(P)$(Q)tLimits/OUTL") +#! Field("$(P)$(Q)tLimits.OUTM",16777215,1,"$(P)$(Q)tLimits.OUTM") +#! Link("$(P)$(Q)tLimits.OUTM","$(P)$(Q)tLimits/OUTM") +#! Field("$(P)$(Q)tLimits.OUTN",16777215,1,"$(P)$(Q)tLimits.OUTN") +#! Link("$(P)$(Q)tLimits.OUTN","$(P)$(Q)tLimits/OUTN") +#! Field("$(P)$(Q)tLimits.INPO",10092543,0,"$(P)$(Q)tLimits.INPO") +#! Link("$(P)$(Q)tLimits.INPO","$(P)$(Q)zLen.VAL") +#! Connector("$(P)$(Q)tLimits/OUTK","$(P)$(Q)z.LLM",1060,980,16777215,"",0) +#! Connector("$(P)$(Q)tLimits/OUTL","$(P)$(Q)z.HLM",1040,1000,16777215,"",0) +#! Connector("$(P)$(Q)tLimits/OUTM","$(P)$(Q)y.LLM",1020,1130,16777215,"",0) +#! Connector("$(P)$(Q)tLimits/OUTN","$(P)$(Q)y.HLM",1000,1150,16777215,"",0) +#! Record("$(P)$(Q)tLimits1",700,1078,0,0,"$(P)$(Q)tLimits1") +#! Field("$(P)$(Q)tLimits1.INPA",16777215,1,"$(P)$(Q)tLimits1.INPA") +#! Field("$(P)$(Q)tLimits1.INPB",16777215,1,"$(P)$(Q)tLimits1.INPB") +#! Field("$(P)$(Q)tLimits1.INPC",16777215,1,"$(P)$(Q)tLimits1.INPC") +#! Field("$(P)$(Q)tLimits1.INPD",16777215,1,"$(P)$(Q)tLimits1.INPD") +#! Field("$(P)$(Q)tLimits1.INPE",16777215,1,"$(P)$(Q)tLimits1.INPE") +#! Field("$(P)$(Q)tLimits1.INPF",16777215,1,"$(P)$(Q)tLimits1.INPF") +#! Field("$(P)$(Q)tLimits1.INPG",16777215,1,"$(P)$(Q)tLimits1.INPG") +#! Field("$(P)$(Q)tLimits1.INPH",16777215,1,"$(P)$(Q)tLimits1.INPH") +#! Field("$(P)$(Q)tLimits1.OUTI",16777215,1,"$(P)$(Q)tLimits1.OUTI") +#! Link("$(P)$(Q)tLimits1.OUTI","$(P)$(Q)tLimits1/OUTI") +#! Field("$(P)$(Q)tLimits1.OUTJ",16777215,1,"$(P)$(Q)tLimits1.OUTJ") +#! Link("$(P)$(Q)tLimits1.OUTJ","$(P)$(Q)tLimits1/OUTJ") +#! Field("$(P)$(Q)tLimits1.INPO",10092543,0,"$(P)$(Q)tLimits1.INPO") +#! Link("$(P)$(Q)tLimits1.INPO","$(P)$(Q)zLen.VAL") +#! Field("$(P)$(Q)tLimits1.INPP",10092543,0,"$(P)$(Q)tLimits1.INPP") +#! Link("$(P)$(Q)tLimits1.INPP","$(P)$(Q)yLen.VAL") +#! Field("$(P)$(Q)tLimits1.OUTK",16777215,1,"$(P)$(Q)tLimits1.OUTK") +#! Link("$(P)$(Q)tLimits1.OUTK","$(P)$(Q)x.LLM") +#! Field("$(P)$(Q)tLimits1.OUTL",16777215,1,"$(P)$(Q)tLimits1.OUTL") +#! Link("$(P)$(Q)tLimits1.OUTL","$(P)$(Q)x.HLM") +#! Connector("$(P)$(Q)tLimits1/OUTI","$(P)$(Q)chi.LLM",960,1720,16777215,"",0) +#! Connector("$(P)$(Q)tLimits1/OUTJ","$(P)$(Q)chi.HLM",1020,1740,16777215,"",0) +#! Record("$(P)$(Q)th",1240,565,0,0,"$(P)$(Q)th") +#! Field("$(P)$(Q)th.STOP",16711680,0,"$(P)$(Q)th.STOP") +#! Field("$(P)$(Q)th.SYNC",16713215,0,"$(P)$(Q)th.SYNC") +#! Field("$(P)$(Q)th.LLM",16777215,0,"$(P)$(Q)th.LLM") +#! Field("$(P)$(Q)th.HLM",16777215,0,"$(P)$(Q)th.HLM") +#! Field("$(P)$(Q)th.OUT",16750848,1,"$(P)$(Q)th.OUT") +#! Link("$(P)$(Q)th.OUT","$(P)$(Q)th/OUT") +#! Field("$(P)$(Q)th.RDBL",16777215,0,"$(P)$(Q)th.RDBL") +#! Link("$(P)$(Q)th.RDBL","$(P)$(Q)th/RDBL") +#! Field("$(P)$(Q)th.DINP",65280,0,"$(P)$(Q)th.DINP") +#! Link("$(P)$(Q)th.DINP","$(P)$(Q)th/DINP") +#! Field("$(P)$(Q)th.DVAL",16777215,1,"$(P)$(Q)th.DVAL") +#! Field("$(P)$(Q)th.LOCK",16777215,1,"$(P)$(Q)th.LOCK") +#! Connector("$(P)$(Q)th/RDBL","$(P)$(Q)tRev.F",1080,1150,16777215,"",0) +#! Connector("$(P)$(Q)th/DINP","$(P)$(Q)calcDone.VAL",1160,1590,65280,"",0) +#! Connector("$(P)$(Q)th/OUT","$(P)$(Q)softPut.PROC",1680,990,16750848,"",0) +#! Record("$(P)$(Q)z",1240,825,0,0,"$(P)$(Q)z") +#! Field("$(P)$(Q)z.STOP",16711680,0,"$(P)$(Q)z.STOP") +#! Field("$(P)$(Q)z.SYNC",16711935,0,"$(P)$(Q)z.SYNC") +#! Field("$(P)$(Q)z.LLM",16777215,0,"$(P)$(Q)z.LLM") +#! Field("$(P)$(Q)z.HLM",16777215,0,"$(P)$(Q)z.HLM") +#! Field("$(P)$(Q)z.OUT",16750848,1,"$(P)$(Q)z.OUT") +#! Link("$(P)$(Q)z.OUT","$(P)$(Q)z/OUT") +#! Field("$(P)$(Q)z.RDBL",16777215,0,"$(P)$(Q)z.RDBL") +#! Link("$(P)$(Q)z.RDBL","$(P)$(Q)z/RDBL") +#! Field("$(P)$(Q)z.DINP",65280,0,"$(P)$(Q)z.DINP") +#! Link("$(P)$(Q)z.DINP","$(P)$(Q)z/DINP") +#! Field("$(P)$(Q)z.DVAL",16777215,1,"$(P)$(Q)z.DVAL") +#! Field("$(P)$(Q)z.LOCK",16777215,1,"$(P)$(Q)z.LOCK") +#! Connector("$(P)$(Q)z/RDBL","$(P)$(Q)tRev.G",1100,1290,16777215,"",0) +#! Connector("$(P)$(Q)z/DINP","$(P)$(Q)calcDone.VAL",1160,1720,65280,"",0) +#! Connector("$(P)$(Q)z/OUT","$(P)$(Q)softPut.PROC",1680,1120,16750848,"",0) +#! Record("$(P)$(Q)y",1240,1085,0,0,"$(P)$(Q)y") +#! Field("$(P)$(Q)y.STOP",16711680,0,"$(P)$(Q)y.STOP") +#! Field("$(P)$(Q)y.SYNC",16711935,0,"$(P)$(Q)y.SYNC") +#! Field("$(P)$(Q)y.LLM",16777215,0,"$(P)$(Q)y.LLM") +#! Field("$(P)$(Q)y.HLM",16777215,0,"$(P)$(Q)y.HLM") +#! Field("$(P)$(Q)y.OUT",16750848,1,"$(P)$(Q)y.OUT") +#! Link("$(P)$(Q)y.OUT","$(P)$(Q)y/OUT") +#! Field("$(P)$(Q)y.RDBL",16777215,0,"$(P)$(Q)y.RDBL") +#! Link("$(P)$(Q)y.RDBL","$(P)$(Q)y/RDBL1") +#! Field("$(P)$(Q)y.DINP",65280,0,"$(P)$(Q)y.DINP") +#! Link("$(P)$(Q)y.DINP","$(P)$(Q)y/DINP") +#! Field("$(P)$(Q)y.DVAL",16777215,1,"$(P)$(Q)y.DVAL") +#! Field("$(P)$(Q)y.LOCK",16777215,1,"$(P)$(Q)y.LOCK") +#! Connector("$(P)$(Q)y/DINP","$(P)$(Q)calcDone.VAL",1160,1850,65280,"",0) +#! Connector("$(P)$(Q)y/OUT","$(P)$(Q)softPut.PROC",1680,1250,16750848,"",0) +#! Connector("$(P)$(Q)y/RDBL1","$(P)$(Q)tRev.H",1120,1430,16777215,"",0) +#! Record("$(P)$(Q)chi",1240,1365,0,1,"$(P)$(Q)chi") +#! Field("$(P)$(Q)chi.STOP",16711680,0,"$(P)$(Q)chi.STOP") +#! Field("$(P)$(Q)chi.SYNC",16711935,0,"$(P)$(Q)chi.SYNC") +#! Field("$(P)$(Q)chi.LLM",16777215,0,"$(P)$(Q)chi.LLM") +#! Field("$(P)$(Q)chi.HLM",16777215,0,"$(P)$(Q)chi.HLM") +#! Field("$(P)$(Q)chi.OUT",16750848,1,"$(P)$(Q)chi.OUT") +#! Link("$(P)$(Q)chi.OUT","$(P)$(Q)chi/OUT") +#! Field("$(P)$(Q)chi.RDBL",16777215,0,"$(P)$(Q)chi.RDBL") +#! Link("$(P)$(Q)chi.RDBL","$(P)$(Q)chi/RDBL") +#! Field("$(P)$(Q)chi.DINP",65280,0,"$(P)$(Q)chi.DINP") +#! Link("$(P)$(Q)chi.DINP","$(P)$(Q)chi/DINP") +#! Field("$(P)$(Q)chi.DVAL",16777215,1,"$(P)$(Q)chi.DVAL") +#! Field("$(P)$(Q)chi.LOCK",16777215,1,"$(P)$(Q)chi.LOCK") +#! Connector("$(P)$(Q)chi/DINP","$(P)$(Q)calcDone.VAL",1160,1990,65280,"",0) +#! Connector("$(P)$(Q)chi/OUT","$(P)$(Q)softPut.PROC",1680,1390,16750848,"",0) +#! Connector("$(P)$(Q)chi/RDBL","$(P)$(Q)tRev.I",1120,1580,16777215,"",0) +#! Record("$(P)$(Q)x",1240,1625,0,0,"$(P)$(Q)x") +#! Field("$(P)$(Q)x.STOP",16711680,0,"$(P)$(Q)x.STOP") +#! Field("$(P)$(Q)x.SYNC",16711935,0,"$(P)$(Q)x.SYNC") +#! Field("$(P)$(Q)x.LLM",16777215,0,"$(P)$(Q)x.LLM") +#! Field("$(P)$(Q)x.HLM",16777215,0,"$(P)$(Q)x.HLM") +#! Field("$(P)$(Q)x.OUT",16750848,1,"$(P)$(Q)x.OUT") +#! Link("$(P)$(Q)x.OUT","$(P)$(Q)x/OUT") +#! Field("$(P)$(Q)x.RDBL",16777215,0,"$(P)$(Q)x.RDBL") +#! Link("$(P)$(Q)x.RDBL","$(P)$(Q)x/RDBL") +#! Field("$(P)$(Q)x.DINP",65280,0,"$(P)$(Q)x.DINP") +#! Link("$(P)$(Q)x.DINP","$(P)$(Q)x/DINP") +#! Field("$(P)$(Q)x.DVAL",16777215,1,"$(P)$(Q)x.DVAL") +#! Field("$(P)$(Q)x.LOCK",16777215,1,"$(P)$(Q)x.LOCK") +#! Connector("$(P)$(Q)x/DINP","$(P)$(Q)calcDone.VAL",1160,2120,65280,"",0) +#! Connector("$(P)$(Q)x/OUT","$(P)$(Q)softPut.PROC",1680,1520,16750848,"",0) +#! Connector("$(P)$(Q)x/RDBL","$(P)$(Q)tRev.J",1100,1720,16777215,"",0) +#! Record("$(P)$(Q)mYDPut",2620,895,0,0,"$(P)$(Q)mYDPut") +#! Field("$(P)$(Q)mYDPut.OUT",16777215,1,"$(P)$(Q)mYDPut.OUT") +#! Field("$(P)$(Q)mYDPut.VAL",16777215,0,"$(P)$(Q)mYDPut.VAL") +#! Record("$(P)$(Q)mYD_nameCalc",2880,895,0,0,"$(P)$(Q)mYD_nameCalc") +#! Field("$(P)$(Q)mYD_nameCalc.INAA",16777215,0,"$(P)$(Q)mYD_nameCalc.INAA") +#! Link("$(P)$(Q)mYD_nameCalc.INAA","$(P)$(Q)mYDPut.OUT") +#! Record("$(P)$(Q)mYUPut",2620,1015,0,0,"$(P)$(Q)mYUPut") +#! Field("$(P)$(Q)mYUPut.OUT",16777215,1,"$(P)$(Q)mYUPut.OUT") +#! Field("$(P)$(Q)mYUPut.VAL",16777215,0,"$(P)$(Q)mYUPut.VAL") +#! Record("$(P)$(Q)mYU_nameCalc",2880,1015,0,0,"$(P)$(Q)mYU_nameCalc") +#! Field("$(P)$(Q)mYU_nameCalc.INAA",16777215,0,"$(P)$(Q)mYU_nameCalc.INAA") +#! Link("$(P)$(Q)mYU_nameCalc.INAA","$(P)$(Q)mYUPut.OUT") +#! Record("$(P)$(Q)mZPut",2620,1255,0,0,"$(P)$(Q)mZPut") +#! Field("$(P)$(Q)mZPut.VAL",16777215,0,"$(P)$(Q)mZPut.VAL") +#! Field("$(P)$(Q)mZPut.OUT",16777215,1,"$(P)$(Q)mZPut.OUT") +#! Record("$(P)$(Q)mZ_nameCalc",2880,1275,0,0,"$(P)$(Q)mZ_nameCalc") +#! Field("$(P)$(Q)mZ_nameCalc.INAA",16777215,0,"$(P)$(Q)mZ_nameCalc.INAA") +#! Link("$(P)$(Q)mZ_nameCalc.INAA","$(P)$(Q)mZPut.OUT") +#! Record("$(P)$(Q)mRZPut",2620,1135,0,0,"$(P)$(Q)mRZPut") +#! Field("$(P)$(Q)mRZPut.VAL",16777215,0,"$(P)$(Q)mRZPut.VAL") +#! Field("$(P)$(Q)mRZPut.OUT",16777215,1,"$(P)$(Q)mRZPut.OUT") +#! Record("$(P)$(Q)mRZ_nameCalc",2880,1155,0,0,"$(P)$(Q)mRZ_nameCalc") +#! Field("$(P)$(Q)mRZ_nameCalc.INAA",16777215,0,"$(P)$(Q)mRZ_nameCalc.INAA") +#! Link("$(P)$(Q)mRZ_nameCalc.INAA","$(P)$(Q)mRZPut.OUT") +#! Record("$(P)$(Q)mXPut",2620,1375,0,0,"$(P)$(Q)mXPut") +#! Field("$(P)$(Q)mXPut.VAL",16777215,0,"$(P)$(Q)mXPut.VAL") +#! Field("$(P)$(Q)mXPut.OUT",16777215,1,"$(P)$(Q)mXPut.OUT") +#! Record("$(P)$(Q)mX_nameCalc",2880,1395,0,0,"$(P)$(Q)mX_nameCalc") +#! Field("$(P)$(Q)mX_nameCalc.INAA",16777215,0,"$(P)$(Q)mX_nameCalc.INAA") +#! Link("$(P)$(Q)mX_nameCalc.INAA","$(P)$(Q)mXPut.OUT") +#! Record("$(P)$(Q)yLen",380,575,0,0,"$(P)$(Q)yLen") +#! Field("$(P)$(Q)yLen.VAL",16777215,1,"$(P)$(Q)yLen.VAL") +#! Record("$(P)$(Q)clearSoftMove",1760,1455,0,0,"$(P)$(Q)clearSoftMove") +#! Field("$(P)$(Q)clearSoftMove.PROC",16777215,0,"$(P)$(Q)clearSoftMove.PROC") +#! Field("$(P)$(Q)clearSoftMove.OUT",16777215,1,"$(P)$(Q)clearSoftMove.OUT") +#! Link("$(P)$(Q)clearSoftMove.OUT","$(P)$(Q)clearSoftMove/OUT") +#! Connector("$(P)$(Q)clearSoftMove/OUT","$(P)$(Q)isSoftMove.VAL",2040,1620,16777215,"",0) +#! Record("$(P)$(Q)isSoftMove",1760,1532,0,0,"$(P)$(Q)isSoftMove") +#! Field("$(P)$(Q)isSoftMove.VAL",16777215,1,"$(P)$(Q)isSoftMove.VAL") +#! Field("$(P)$(Q)isSoftMove.OUTA",16777215,0,"$(P)$(Q)isSoftMove.OUTA") +#! Link("$(P)$(Q)isSoftMove.OUTA","$(P)$(Q)isSoftMove/OUTA") +#! Field("$(P)$(Q)isSoftMove.OUTB",16777215,0,"$(P)$(Q)isSoftMove.OUTB") +#! Link("$(P)$(Q)isSoftMove.OUTB","$(P)$(Q)isSoftMove/OUTB") +#! Field("$(P)$(Q)isSoftMove.OUTC",16777215,0,"$(P)$(Q)isSoftMove.OUTC") +#! Link("$(P)$(Q)isSoftMove.OUTC","$(P)$(Q)isSoftMove/OUTC") +#! Field("$(P)$(Q)isSoftMove.OUTD",16777215,0,"$(P)$(Q)isSoftMove.OUTD") +#! Link("$(P)$(Q)isSoftMove.OUTD","$(P)$(Q)chi.LOCK") +#! Field("$(P)$(Q)isSoftMove.OUTE",16777215,0,"$(P)$(Q)isSoftMove.OUTE") +#! Link("$(P)$(Q)isSoftMove.OUTE","$(P)$(Q)x.LOCK") +#! Connector("$(P)$(Q)isSoftMove/OUTA","$(P)$(Q)th.LOCK",1560,1320,16777215,"",0) +#! Connector("$(P)$(Q)isSoftMove/OUTB","$(P)$(Q)z.LOCK",1540,1460,16777215,"",0) +#! Connector("$(P)$(Q)isSoftMove/OUTC","$(P)$(Q)y.LOCK",1520,1600,16777215,"",0) +#! Record("$(P)$(Q)softPut",1800,856,0,0,"$(P)$(Q)softPut") +#! Field("$(P)$(Q)softPut.PROC",16750848,0,"$(P)$(Q)softPut.PROC") +#! Field("$(P)$(Q)softPut.LNK2",16777215,1,"$(P)$(Q)softPut.LNK2") +#! Link("$(P)$(Q)softPut.LNK2","$(P)$(Q)softPut/LNK2") +#! Field("$(P)$(Q)softPut.DOL3",16777215,0,"$(P)$(Q)softPut.DOL3") +#! Link("$(P)$(Q)softPut.DOL3","$(P)$(Q)softPut/DOL3") +#! Field("$(P)$(Q)softPut.LNK3",16777215,1,"$(P)$(Q)softPut.LNK3") +#! Link("$(P)$(Q)softPut.LNK3","$(P)$(Q)tFwd.B") +#! Field("$(P)$(Q)softPut.DOL4",16777215,0,"$(P)$(Q)softPut.DOL4") +#! Link("$(P)$(Q)softPut.DOL4","$(P)$(Q)softPut/DOL4") +#! Field("$(P)$(Q)softPut.LNK4",16777215,1,"$(P)$(Q)softPut.LNK4") +#! Link("$(P)$(Q)softPut.LNK4","$(P)$(Q)softPut/LNK4") +#! Field("$(P)$(Q)softPut.DOL5",16777215,0,"$(P)$(Q)softPut.DOL5") +#! Link("$(P)$(Q)softPut.DOL5","$(P)$(Q)softPut/DOL5") +#! Field("$(P)$(Q)softPut.LNK5",16777215,1,"$(P)$(Q)softPut.LNK5") +#! Link("$(P)$(Q)softPut.LNK5","$(P)$(Q)softPut/LNK5") +#! Field("$(P)$(Q)softPut.DOL6",16777215,0,"$(P)$(Q)softPut.DOL6") +#! Link("$(P)$(Q)softPut.DOL6","$(P)$(Q)chi.DVAL") +#! Field("$(P)$(Q)softPut.LNK6",16777215,1,"$(P)$(Q)softPut.LNK6") +#! Link("$(P)$(Q)softPut.LNK6","$(P)$(Q)softPut/LNK6") +#! Field("$(P)$(Q)softPut.DOL7",16777215,0,"$(P)$(Q)softPut.DOL7") +#! Link("$(P)$(Q)softPut.DOL7","$(P)$(Q)softPut/DOL7") +#! Field("$(P)$(Q)softPut.LNK7",16777215,1,"$(P)$(Q)softPut.LNK7") +#! Link("$(P)$(Q)softPut.LNK7","$(P)$(Q)softPut/LNK7") +#! Connector("$(P)$(Q)softPut/LNK4","$(P)$(Q)tFwd.C",2060,1200,16777215,"",0) +#! Connector("$(P)$(Q)softPut/LNK5","$(P)$(Q)tFwd.D",2080,1230,16777215,"",0) +#! Connector("$(P)$(Q)softPut/LNK6","$(P)$(Q)tFwd.E",2100,1260,16777215,"",0) +#! Connector("$(P)$(Q)softPut/LNK7","$(P)$(Q)tFwd.F",2120,1290,16777215,"",0) +#! Connector("$(P)$(Q)softPut/DOL3","$(P)$(Q)th.DVAL",1620,1040,16777215,"",0) +#! Connector("$(P)$(Q)softPut/DOL4","$(P)$(Q)z.DVAL",1620,1190,16777215,"",0) +#! Connector("$(P)$(Q)softPut/DOL5","$(P)$(Q)y.DVAL",1620,1340,16777215,"",0) +#! Connector("$(P)$(Q)softPut/DOL7","$(P)$(Q)x.DVAL",1640,1650,16777215,"",0) +#! Connector("$(P)$(Q)softPut/LNK2","$(P)$(Q)isSoftMove.VAL",2040,1400,16777215,"",0) diff --git a/opticsApp/Db/MLLV_soft_settings.req b/opticsApp/Db/MLLV_soft_settings.req new file mode 100644 index 0000000..ff5bb62 --- /dev/null +++ b/opticsApp/Db/MLLV_soft_settings.req @@ -0,0 +1,7 @@ +$(P)$(Q)zLen +$(P)$(Q)yLen +file basic_motor_settings.req P=$(P),Q=$(Q),M=$(Q)th +file basic_motor_settings.req P=$(P),Q=$(Q),M=$(Q)z +file basic_motor_settings.req P=$(P),Q=$(Q),M=$(Q)y +file basic_motor_settings.req P=$(P),Q=$(Q),M=$(Q)chi +file basic_motor_settings.req P=$(P),Q=$(Q),M=$(Q)x diff --git a/opticsApp/Db/Makefile b/opticsApp/Db/Makefile index 4c81e99..e453332 100644 --- a/opticsApp/Db/Makefile +++ b/opticsApp/Db/Makefile @@ -18,6 +18,12 @@ include $(TOP)/configure/CONFIG # databases, templates, substitutions like this #DB += sample.db +DB += $(patsubst ../%, %, $(wildcard ../*.template)) +DB += $(patsubst ../%, %, $(wildcard ../*.db)) +DB += $(patsubst ../%, %, $(wildcard ../*.vdb)) + +REQ += $(patsubst ../%, %, $(wildcard ../*.req)) + #---------------------------------------------------- # Declare template files which do not show up in DB #USES_TEMPLATE += dbExample2.template diff --git a/opticsApp/Db/SGM.db b/opticsApp/Db/SGM.db index 2b26d39..bdb8944 100644 --- a/opticsApp/Db/SGM.db +++ b/opticsApp/Db/SGM.db @@ -2,271 +2,271 @@ #! DBDSTART #! DBDEND -record(ao, "$(P)SGM$(N):2Theta") { +record(ao, "$(P)$(SGM):2Theta") { field(DESC, "included angle") field(DTYP, "Soft Channel") - field(OUT, "$(P)SGM$(N):T1.D PP MS") + field(OUT, "$(P)$(SGM):T1.D PP MS") field(DOL, "175.5") field(PREC, "4") field(EGU, "degrees") field(DRVH, "180") } -record(ao, "$(P)SGM$(N):Energy") { - field(DESC, "SGM$(N):Energy") +record(ao, "$(P)$(SGM):Energy") { + field(DESC, "$(SGM):Energy") field(DTYP, "Soft Channel") - field(OUT, "$(P)SGM$(N):T1.E PP MS") + field(OUT, "$(P)$(SGM):T1.E PP MS") field(PREC, "3") field(EGU, "eV") } -record(ao, "$(P)SGM$(N):EnergyB") { +record(ao, "$(P)$(SGM):EnergyB") { field(DTYP, "Soft Channel") - field(SDIS, "$(P)SGM$(N):Energy.PACT NPP MS") - field(OUT, "$(P)SGM$(N):Energy.VAL PP MS") + field(SDIS, "$(P)$(SGM):Energy.PACT NPP MS") + field(OUT, "$(P)$(SGM):Energy.VAL PP MS") } -record(ao, "$(P)SGM$(N):EnergyRBV") { +record(ao, "$(P)$(SGM):EnergyRBV") { field(DESC, "Energy readback") field(DTYP, "Soft Channel") field(PREC, "3") field(EGU, "eV") } -record(ao, "$(P)SGM$(N):GrMotorVal") { +record(ao, "$(P)$(SGM):GrMotorVal") { field(DTYP, "Soft Channel") - field(OUT, "$(P)SGM$(N):GrMotPut1.A PP MS") + field(OUT, "$(P)$(SGM):GrMotPut1.A PP MS") field(PREC, "3") } -record(ao, "$(P)SGM$(N):Lambda") { - field(DESC, "SGM$(N):Wavelength") +record(ao, "$(P)$(SGM):Lambda") { + field(DESC, "$(SGM):Wavelength") field(DTYP, "Soft Channel") - field(OUT, "$(P)SGM$(N):T1.F PP MS") + field(OUT, "$(P)$(SGM):T1.F PP MS") field(PREC, "6") field(EGU, "Angstroms") } -record(ao, "$(P)SGM$(N):LambdaB") { +record(ao, "$(P)$(SGM):LambdaB") { field(DTYP, "Soft Channel") - field(SDIS, "$(P)SGM$(N):Lambda.PACT NPP MS") - field(OUT, "$(P)SGM$(N):Lambda.VAL PP MS") + field(SDIS, "$(P)$(SGM):Lambda.PACT NPP MS") + field(OUT, "$(P)$(SGM):Lambda.VAL PP MS") } -record(ao, "$(P)SGM$(N):LambdaRBV") { +record(ao, "$(P)$(SGM):LambdaRBV") { field(DESC, "Wavelength readback") field(DTYP, "Soft Channel") field(PREC, "6") field(EGU, "Angstroms") } -record(ao, "$(P)SGM$(N):R") { +record(ao, "$(P)$(SGM):R") { field(DESC, "radius of curvature") field(DTYP, "Soft Channel") - field(OUT, "$(P)SGM$(N):T2.B PP MS") + field(OUT, "$(P)$(SGM):T2.B PP MS") field(DOL, "115") field(PREC, "3") field(EGU, "m") field(DRVH, "1.e6") } -record(ao, "$(P)SGM$(N):StripeWidth") { +record(ao, "$(P)$(SGM):StripeWidth") { field(DTYP, "Soft Channel") field(PREC, "3") } -record(ao, "$(P)SGM$(N):d") { +record(ao, "$(P)$(SGM):d") { field(DESC, "grating-line spacing") field(DTYP, "Soft Channel") - field(OUT, "$(P)SGM$(N):dPut PP") - field(DOL, "$(P)SGM$(N):dCalc.VAL NPP MS") + field(OUT, "$(P)$(SGM):dPut PP") + field(DOL, "$(P)$(SGM):dCalc.VAL NPP MS") field(OMSL, "closed_loop") field(PREC, "6") field(EGU, "Angstroms") field(DRVH, "1.e7") } -record(ao, "$(P)SGM$(N):gDensity") { +record(ao, "$(P)$(SGM):gDensity") { field(DESC, "grating-line density") field(DTYP, "Soft Channel") - field(OUT, "$(P)SGM$(N):dCalc.A PP MS") + field(OUT, "$(P)$(SGM):dCalc.A PP MS") field(DOL, "1000") field(PREC, "3") field(EGU, "1/mm") field(DRVH, "1.e7") } -record(ao, "$(P)SGM$(N):len") { +record(ao, "$(P)$(SGM):len") { field(DESC, "tangent-arm length") field(DTYP, "Soft Channel") - field(OUT, "$(P)SGM$(N):T1.C PP MS") + field(OUT, "$(P)$(SGM):T1.C PP MS") field(DOL, ".4") field(PREC, "4") field(EGU, "m") field(DRVH, "1.") } -record(ao, "$(P)SGM$(N):phi") { - field(DESC, "SGM$(N):grating angle") +record(ao, "$(P)$(SGM):phi") { + field(DESC, "$(SGM):grating angle") field(DTYP, "Soft Channel") - field(OUT, "$(P)SGM$(N):T1.G PP MS") + field(OUT, "$(P)$(SGM):T1.G PP MS") field(PREC, "5") field(EGU, "mm") field(DRVH, "20") field(DRVL, "-20") } -record(ao, "$(P)SGM$(N):phiB") { +record(ao, "$(P)$(SGM):phiB") { field(DTYP, "Soft Channel") - field(SDIS, "$(P)SGM$(N):phi.PACT NPP MS") - field(OUT, "$(P)SGM$(N):phi.VAL PP MS") + field(SDIS, "$(P)$(SGM):phi.PACT NPP MS") + field(OUT, "$(P)$(SGM):phi.VAL PP MS") } -record(ao, "$(P)SGM$(N):phiRBV") { +record(ao, "$(P)$(SGM):phiRBV") { field(DESC, "phi readback") field(DTYP, "Soft Channel") field(PREC, "6") field(EGU, "degrees") } -record(ao, "$(P)SGM$(N):xOff") { +record(ao, "$(P)$(SGM):xOff") { field(DTYP, "Soft Channel") field(PREC, "3") } -record(bi, "$(P)SGM$(N):saveAuto") { +record(bi, "$(P)$(SGM):saveAuto") { field(DTYP, "Soft Channel") - field(FLNK, "$(P)SGM$(N):toManual.PROC PP MS") - field(INP, "$(P)SGM$(N):auto.VAL NPP NMS") + field(FLNK, "$(P)$(SGM):toManual.PROC PP MS") + field(INP, "$(P)$(SGM):auto.VAL NPP NMS") field(ZNAM, "Manual") field(ONAM, "Auto") } -record(bo, "$(P)SGM$(N):auto") { +record(bo, "$(P)$(SGM):auto") { field(DESC, "manual/auto switch") field(DTYP, "Soft Channel") field(ZNAM, "Manual") field(ONAM, "Auto") } -record(bo, "$(P)SGM$(N):autoMove") { +record(bo, "$(P)$(SGM):autoMove") { field(DTYP, "Soft Channel") field(DISV, "0") - field(SDIS, "$(P)SGM$(N):auto.VAL NPP NMS") - field(FLNK, "$(P)SGM$(N):move.PROC PP MS") + field(SDIS, "$(P)$(SGM):auto.VAL NPP NMS") + field(FLNK, "$(P)$(SGM):move.PROC PP MS") } -record(bo, "$(P)SGM$(N):exists") { +record(bo, "$(P)$(SGM):exists") { field(DTYP, "Soft Channel") - field(FLNK, "$(P)SGM$(N):gratingPut.PROC PP MS") + field(FLNK, "$(P)$(SGM):gratingPut.PROC PP MS") } -record(bo, "$(P)SGM$(N):hold") { +record(bo, "$(P)$(SGM):hold") { field(DTYP, "Soft Channel") } -record(bo, "$(P)SGM$(N):moving") { +record(bo, "$(P)$(SGM):moving") { field(DTYP, "Soft Channel") } -record(bo, "$(P)SGM$(N):restoreAuto") { +record(bo, "$(P)$(SGM):restoreAuto") { field(DTYP, "Soft Channel") field(OMSL, "closed_loop") - field(DOL, "$(P)SGM$(N):saveAuto.VAL NPP MS") - field(OUT, "$(P)SGM$(N):auto.VAL PP MS") + field(DOL, "$(P)$(SGM):saveAuto.VAL NPP MS") + field(OUT, "$(P)$(SGM):auto.VAL PP MS") field(ZNAM, "Manual") field(ONAM, "Auto") } -record(bo, "$(P)SGM$(N):set") { +record(bo, "$(P)$(SGM):set") { field(DTYP, "Soft Channel") - field(FLNK, "$(P)SGM$(N):set1.PROC PP MS") + field(FLNK, "$(P)$(SGM):set1.PROC PP MS") field(OUT, "$(P)$(M_x).SET PP MS") field(ZNAM, "Use") field(ONAM, "Set") } -record(bo, "$(P)SGM$(N):set1") { +record(bo, "$(P)$(SGM):set1") { field(DTYP, "Soft Channel") field(OMSL, "closed_loop") - field(DOL, "$(P)SGM$(N):set.VAL PP MS") + field(DOL, "$(P)$(SGM):set.VAL PP MS") field(OUT, "$(P)$(M_rOut).SET PP MS") } -record(bo, "$(P)SGM$(N):toManual") { +record(bo, "$(P)$(SGM):toManual") { field(DTYP, "Soft Channel") - field(FLNK, "$(P)SGM$(N):selBank.PROC PP MS") + field(FLNK, "$(P)$(SGM):selBank.PROC PP MS") field(DOL, "0") - field(OUT, "$(P)SGM$(N):auto.VAL PP MS") + field(OUT, "$(P)$(SGM):auto.VAL PP MS") } -record(calc, "$(P)SGM$(N):dCalc") { +record(calc, "$(P)$(SGM):dCalc") { field(DESC, "cvt lines/mm to A/line") - field(FLNK, "$(P)SGM$(N):d.PROC PP MS") + field(FLNK, "$(P)$(SGM):d.PROC PP MS") field(CALC, "1.e7/a") field(EGU, "Angstroms") field(PREC, "6") } -record(calc, "$(P)SGM$(N):selBank") { - field(FLNK, "$(P)SGM$(N):selVal.PROC PP MS") +record(calc, "$(P)$(SGM):selBank") { + field(FLNK, "$(P)$(SGM):selVal.PROC PP MS") field(CALC, "a>9?1:0") - field(INPA, "$(P)SGM$(N):grating.VAL PP MS") + field(INPA, "$(P)$(SGM):grating.VAL PP MS") } -record(calc, "$(P)SGM$(N):selVal") { - field(FLNK, "$(P)SGM$(N):checkExists.PROC PP MS") +record(calc, "$(P)$(SGM):selVal") { + field(FLNK, "$(P)$(SGM):checkExists.PROC PP MS") field(CALC, "a%10+1") - field(INPA, "$(P)SGM$(N):grating.VAL PP MS") + field(INPA, "$(P)$(SGM):grating.VAL PP MS") } -record(fanout, "$(P)SGM$(N):checkExists") { - field(LNK1, "$(P)SGM$(N):sel_exists_1.PROC PP MS") - field(LNK2, "$(P)SGM$(N):sel_exists_2.PROC PP MS") +record(fanout, "$(P)$(SGM):checkExists") { + field(LNK1, "$(P)$(SGM):sel_exists_1.PROC PP MS") + field(LNK2, "$(P)$(SGM):sel_exists_2.PROC PP MS") } -record(fanout, "$(P)SGM$(N):gPut_1") { - field(FLNK, "$(P)SGM$(N):gPut_2.PROC PP MS") - field(LNK1, "$(P)SGM$(N):sel_R_1.PROC PP MS") - field(LNK2, "$(P)SGM$(N):sel_R_2.PROC PP MS") - field(LNK3, "$(P)SGM$(N):sel_Wlow_1.PROC PP MS") - field(LNK4, "$(P)SGM$(N):sel_Wlow_2.PROC PP MS") - field(LNK5, "$(P)SGM$(N):sel_Whigh_1.PROC PP MS") - field(LNK6, "$(P)SGM$(N):sel_Whigh_2.PROC PP MS") +record(fanout, "$(P)$(SGM):gPut_1") { + field(FLNK, "$(P)$(SGM):gPut_2.PROC PP MS") + field(LNK1, "$(P)$(SGM):sel_R_1.PROC PP MS") + field(LNK2, "$(P)$(SGM):sel_R_2.PROC PP MS") + field(LNK3, "$(P)$(SGM):sel_Wlow_1.PROC PP MS") + field(LNK4, "$(P)$(SGM):sel_Wlow_2.PROC PP MS") + field(LNK5, "$(P)$(SGM):sel_Whigh_1.PROC PP MS") + field(LNK6, "$(P)$(SGM):sel_Whigh_2.PROC PP MS") } -record(fanout, "$(P)SGM$(N):gPut_2") { - field(LNK1, "$(P)SGM$(N):sel_loc_1.PROC PP MS") - field(LNK2, "$(P)SGM$(N):sel_loc_2.PROC PP MS") - field(LNK3, "$(P)SGM$(N):sel_xOff_1.PROC PP MS") - field(LNK4, "$(P)SGM$(N):sel_xOff_2.PROC PP MS") - field(FLNK, "$(P)SGM$(N):doInit.PROC PP MS") +record(fanout, "$(P)$(SGM):gPut_2") { + field(LNK1, "$(P)$(SGM):sel_loc_1.PROC PP MS") + field(LNK2, "$(P)$(SGM):sel_loc_2.PROC PP MS") + field(LNK3, "$(P)$(SGM):sel_xOff_1.PROC PP MS") + field(LNK4, "$(P)$(SGM):sel_xOff_2.PROC PP MS") + field(FLNK, "$(P)$(SGM):doInit.PROC PP MS") } -record(fanout, "$(P)SGM$(N):gratingPut") { +record(fanout, "$(P)$(SGM):gratingPut") { field(DISV, "0") - field(SDIS, "$(P)SGM$(N):exists.VAL NPP MS") - field(FLNK, "$(P)SGM$(N):gPut_1.PROC PP MS") - field(LNK1, "$(P)SGM$(N):sel_desc_1.PROC PP MS") - field(LNK2, "$(P)SGM$(N):sel_desc_2.PROC PP MS") - field(LNK3, "$(P)SGM$(N):sel_m_1.PROC PP MS") - field(LNK4, "$(P)SGM$(N):sel_m_2.PROC PP MS") - field(LNK5, "$(P)SGM$(N):sel_den_1.PROC PP MS") - field(LNK6, "$(P)SGM$(N):sel_den_2.PROC PP MS") + field(SDIS, "$(P)$(SGM):exists.VAL NPP MS") + field(FLNK, "$(P)$(SGM):gPut_1.PROC PP MS") + field(LNK1, "$(P)$(SGM):sel_desc_1.PROC PP MS") + field(LNK2, "$(P)$(SGM):sel_desc_2.PROC PP MS") + field(LNK3, "$(P)$(SGM):sel_m_1.PROC PP MS") + field(LNK4, "$(P)$(SGM):sel_m_2.PROC PP MS") + field(LNK5, "$(P)$(SGM):sel_den_1.PROC PP MS") + field(LNK6, "$(P)$(SGM):sel_den_2.PROC PP MS") } -record(longout, "$(P)SGM$(N):m") { +record(longout, "$(P)$(SGM):m") { field(DESC, "diffraction order") field(DTYP, "Soft Channel") - field(OUT, "$(P)SGM$(N):T1.A PP MS") + field(OUT, "$(P)$(SGM):T1.A PP MS") field(DOL, "1") field(HOPR, "20") } -record(mbbo, "$(P)SGM$(N):grating") { +record(mbbo, "$(P)$(SGM):grating") { # field(PINI, "YES") field(DTYP, "Soft Channel") - field(FLNK, "$(P)SGM$(N):saveAuto.PROC PP MS") + field(FLNK, "$(P)$(SGM):saveAuto.PROC PP MS") field(ZRST, "grating 1") field(ONST, "grating 2") field(TWST, "grating 3") @@ -285,7 +285,7 @@ record(mbbo, "$(P)SGM$(N):grating") { field(FFST, "grating 16") } -record(mbbo, "$(P)SGM$(N):rTrack") { +record(mbbo, "$(P)$(SGM):rTrack") { field(DTYP, "Raw Soft Channel") field(NOBT, "3") field(ZRVL, "7") @@ -294,337 +294,337 @@ record(mbbo, "$(P)SGM$(N):rTrack") { field(ONST, "LOCK") } -record(bo, "$(P)SGM$(N):doInit") { - field(SDIS, "$(P)SGM$(N):inInit") - field(OUT, "$(P)SGM$(N):init.PROC PP") +record(bo, "$(P)$(SGM):doInit") { + field(SDIS, "$(P)$(SGM):inInit") + field(OUT, "$(P)$(SGM):init.PROC PP") } -record(bo, "$(P)SGM$(N):inInit") { +record(bo, "$(P)$(SGM):inInit") { field(ZNAM, "No") field(ONAM, "Yes") } -record(seq, "$(P)SGM$(N):init") { +record(seq, "$(P)$(SGM):init") { #field(PINI, "YES") field(PINI, "RUN") field(DOL1, "1") - field(LNK1, "$(P)SGM$(N):inInit PP") - field(LNK2, "$(P)SGM$(N):grating.PROC NPP") - field(DOL3, "$(P)SGM$(N):m.VAL") - field(LNK3, "$(P)SGM$(N):T1.A NPP") - field(LNK4, "$(P)SGM$(N):gDensity.PROC PP MS") - field(DOL5, "$(P)SGM$(N):len.VAL") - field(LNK5, "$(P)SGM$(N):T1.C NPP") - field(DOL6, "$(P)SGM$(N):2Theta.VAL") - field(LNK6, "$(P)SGM$(N):T1.D NPP") - field(DOL7, "$(P)SGM$(N):R.VAL") - field(LNK7, "$(P)SGM$(N):T2.B NPP") + field(LNK1, "$(P)$(SGM):inInit PP") + field(LNK2, "$(P)$(SGM):grating.PROC NPP") + field(DOL3, "$(P)$(SGM):m.VAL") + field(LNK3, "$(P)$(SGM):T1.A NPP") + field(LNK4, "$(P)$(SGM):gDensity.PROC PP MS") + field(DOL5, "$(P)$(SGM):len.VAL") + field(LNK5, "$(P)$(SGM):T1.C NPP") + field(DOL6, "$(P)$(SGM):2Theta.VAL") + field(LNK6, "$(P)$(SGM):T1.D NPP") + field(DOL7, "$(P)$(SGM):R.VAL") + field(LNK7, "$(P)$(SGM):T2.B NPP") field(DLY8, ".1") - field(DOL8, "$(P)SGM$(N):d.VAL") - field(LNK8, "$(P)SGM$(N):T1.B NPP") - field(LNK9, "$(P)SGM$(N):init1.PROC PP") + field(DOL8, "$(P)$(SGM):d.VAL") + field(LNK8, "$(P)$(SGM):T1.B NPP") + field(LNK9, "$(P)$(SGM):init1.PROC PP") } -record(seq, "$(P)SGM$(N):init1") { - field(LNK1, "$(P)SGM$(N):T3.PROC PP") +record(seq, "$(P)$(SGM):init1") { + field(LNK1, "$(P)$(SGM):T3.PROC PP") field(DLY2, "0.1") field(DOL2, "$(P)SGM1:EnergyRBV") field(LNK2, "$(P)SGM1:T1.E NPP") field(DOL3, "$(P)SGM1:LambdaRBV") field(LNK3, "$(P)SGM1:T1.F NPP") - field(LNK4, "$(P)SGM$(N):sync.PROC PP") - field(LNK5, "$(P)SGM$(N):restoreAuto.VAL PP MS") - #field(LNK6, "$(P)SGM$(N):grating.PROC NPP") - field(LNK7, "$(P)SGM$(N):rTrackInit.PROC PP") - field(LNK8, "$(P)SGM$(N):delta.PROC PP") + field(LNK4, "$(P)$(SGM):sync.PROC PP") + field(LNK5, "$(P)$(SGM):restoreAuto.VAL PP MS") + #field(LNK6, "$(P)$(SGM):grating.PROC NPP") + field(LNK7, "$(P)$(SGM):rTrackInit.PROC PP") + field(LNK8, "$(P)$(SGM):delta.PROC PP") field(DOL9, "0") - field(LNK9, "$(P)SGM$(N):inInit PP") + field(LNK9, "$(P)$(SGM):inInit PP") } -record(seq, "$(P)SGM$(N):move") { - field(SDIS, "$(P)SGM$(N):hold.VAL NPP MS") +record(seq, "$(P)$(SGM):move") { + field(SDIS, "$(P)$(SGM):hold.VAL NPP MS") field(SELM, "Mask") - field(SELL, "$(P)SGM$(N):rTrack.RVAL NPP MS") + field(SELL, "$(P)$(SGM):rTrack.RVAL NPP MS") field(DOL1, "1") - field(LNK1, "$(P)SGM$(N):moving.VAL PP MS") - field(DOL2, "$(P)SGM$(N):T2.N PP MS") + field(LNK1, "$(P)$(SGM):moving.VAL PP MS") + field(DOL2, "$(P)$(SGM):T2.N PP MS") field(LNK2, "$(P)$(M_rOut).VAL PP MS") - field(DOL3, "$(P)SGM$(N):T2.I NPP MS") + field(DOL3, "$(P)$(SGM):T2.I NPP MS") field(LNK3, "$(P)$(M_x).VAL PP MS") } -record(seq, "$(P)SGM$(N):rTrackInit") { +record(seq, "$(P)$(SGM):rTrackInit") { # field(PINI, "YES") field(DOL1, "1") - field(LNK1, "$(P)SGM$(N):rTrack.VAL PP MS") - field(LNK2, "$(P)SGM$(N):rTrack.VAL PP MS") + field(LNK1, "$(P)$(SGM):rTrack.VAL PP MS") + field(LNK2, "$(P)$(SGM):rTrack.VAL PP MS") } -record(seq, "$(P)SGM$(N):sel_R_1") { - field(SDIS, "$(P)SGM$(N):selBank.VAL NPP MS") +record(seq, "$(P)$(SGM):sel_R_1") { + field(SDIS, "$(P)$(SGM):selBank.VAL NPP MS") field(SELM, "Specified") - field(SELL, "$(P)SGM$(N):selVal.VAL NPP MS") + field(SELL, "$(P)$(SGM):selVal.VAL NPP MS") field(PREC, "1") - field(LNK1, "$(P)SGM$(N):R.VAL PP MS") - field(LNK2, "$(P)SGM$(N):R.VAL PP MS") - field(LNK3, "$(P)SGM$(N):R.VAL PP MS") - field(LNK4, "$(P)SGM$(N):R.VAL PP MS") - field(LNK5, "$(P)SGM$(N):R.VAL PP MS") - field(LNK6, "$(P)SGM$(N):R.VAL PP MS") - field(LNK7, "$(P)SGM$(N):R.VAL PP MS") - field(LNK8, "$(P)SGM$(N):R.VAL PP MS") - field(LNK9, "$(P)SGM$(N):R.VAL PP MS") - field(LNKA, "$(P)SGM$(N):R.VAL PP MS") -} - -record(seq, "$(P)SGM$(N):sel_R_2") { + field(LNK1, "$(P)$(SGM):R.VAL PP MS") + field(LNK2, "$(P)$(SGM):R.VAL PP MS") + field(LNK3, "$(P)$(SGM):R.VAL PP MS") + field(LNK4, "$(P)$(SGM):R.VAL PP MS") + field(LNK5, "$(P)$(SGM):R.VAL PP MS") + field(LNK6, "$(P)$(SGM):R.VAL PP MS") + field(LNK7, "$(P)$(SGM):R.VAL PP MS") + field(LNK8, "$(P)$(SGM):R.VAL PP MS") + field(LNK9, "$(P)$(SGM):R.VAL PP MS") + field(LNKA, "$(P)$(SGM):R.VAL PP MS") +} + +record(seq, "$(P)$(SGM):sel_R_2") { field(DISV, "0") - field(SDIS, "$(P)SGM$(N):selBank.VAL NPP MS") + field(SDIS, "$(P)$(SGM):selBank.VAL NPP MS") field(SELM, "Specified") - field(SELL, "$(P)SGM$(N):selVal.VAL NPP MS") + field(SELL, "$(P)$(SGM):selVal.VAL NPP MS") field(PREC, "1") - field(LNK1, "$(P)SGM$(N):R.VAL PP MS") - field(LNK2, "$(P)SGM$(N):R.VAL PP MS") - field(LNK3, "$(P)SGM$(N):R.VAL PP MS") - field(LNK4, "$(P)SGM$(N):R.VAL PP MS") - field(LNK5, "$(P)SGM$(N):R.VAL PP MS") - field(LNK6, "$(P)SGM$(N):R.VAL PP MS") + field(LNK1, "$(P)$(SGM):R.VAL PP MS") + field(LNK2, "$(P)$(SGM):R.VAL PP MS") + field(LNK3, "$(P)$(SGM):R.VAL PP MS") + field(LNK4, "$(P)$(SGM):R.VAL PP MS") + field(LNK5, "$(P)$(SGM):R.VAL PP MS") + field(LNK6, "$(P)$(SGM):R.VAL PP MS") } -record(seq, "$(P)SGM$(N):sel_Whigh_1") { - field(SDIS, "$(P)SGM$(N):selBank.VAL NPP MS") +record(seq, "$(P)$(SGM):sel_Whigh_1") { + field(SDIS, "$(P)$(SGM):selBank.VAL NPP MS") field(SELM, "Specified") - field(SELL, "$(P)SGM$(N):selVal.VAL NPP MS") + field(SELL, "$(P)$(SGM):selVal.VAL NPP MS") field(PREC, "3") - field(LNK1, "$(P)SGM$(N):limits.A PP MS") - field(LNK2, "$(P)SGM$(N):limits.A PP MS") - field(LNK3, "$(P)SGM$(N):limits.A PP MS") - field(LNK4, "$(P)SGM$(N):limits.A PP MS") - field(LNK5, "$(P)SGM$(N):limits.A PP MS") - field(LNK6, "$(P)SGM$(N):limits.A PP MS") - field(LNK7, "$(P)SGM$(N):limits.A PP MS") - field(LNK8, "$(P)SGM$(N):limits.A PP MS") - field(LNK9, "$(P)SGM$(N):limits.A PP MS") - field(LNKA, "$(P)SGM$(N):limits.A PP MS") -} - -record(seq, "$(P)SGM$(N):sel_Whigh_2") { + field(LNK1, "$(P)$(SGM):limits.A PP MS") + field(LNK2, "$(P)$(SGM):limits.A PP MS") + field(LNK3, "$(P)$(SGM):limits.A PP MS") + field(LNK4, "$(P)$(SGM):limits.A PP MS") + field(LNK5, "$(P)$(SGM):limits.A PP MS") + field(LNK6, "$(P)$(SGM):limits.A PP MS") + field(LNK7, "$(P)$(SGM):limits.A PP MS") + field(LNK8, "$(P)$(SGM):limits.A PP MS") + field(LNK9, "$(P)$(SGM):limits.A PP MS") + field(LNKA, "$(P)$(SGM):limits.A PP MS") +} + +record(seq, "$(P)$(SGM):sel_Whigh_2") { field(DISV, "0") - field(SDIS, "$(P)SGM$(N):selBank.VAL NPP MS") + field(SDIS, "$(P)$(SGM):selBank.VAL NPP MS") field(SELM, "Specified") - field(SELL, "$(P)SGM$(N):selVal.VAL NPP MS") + field(SELL, "$(P)$(SGM):selVal.VAL NPP MS") field(PREC, "3") - field(LNK1, "$(P)SGM$(N):limits.A PP MS") - field(LNK2, "$(P)SGM$(N):limits.A PP MS") - field(LNK3, "$(P)SGM$(N):limits.A PP MS") - field(LNK4, "$(P)SGM$(N):limits.A PP MS") - field(LNK5, "$(P)SGM$(N):limits.A PP MS") - field(LNK6, "$(P)SGM$(N):limits.A PP MS") + field(LNK1, "$(P)$(SGM):limits.A PP MS") + field(LNK2, "$(P)$(SGM):limits.A PP MS") + field(LNK3, "$(P)$(SGM):limits.A PP MS") + field(LNK4, "$(P)$(SGM):limits.A PP MS") + field(LNK5, "$(P)$(SGM):limits.A PP MS") + field(LNK6, "$(P)$(SGM):limits.A PP MS") } -record(seq, "$(P)SGM$(N):sel_Wlow_1") { - field(SDIS, "$(P)SGM$(N):selBank.VAL NPP MS") +record(seq, "$(P)$(SGM):sel_Wlow_1") { + field(SDIS, "$(P)$(SGM):selBank.VAL NPP MS") field(SELM, "Specified") - field(SELL, "$(P)SGM$(N):selVal.VAL NPP MS") + field(SELL, "$(P)$(SGM):selVal.VAL NPP MS") field(PREC, "3") - field(LNK1, "$(P)SGM$(N):limits.B PP MS") - field(LNK2, "$(P)SGM$(N):limits.B PP MS") - field(LNK3, "$(P)SGM$(N):limits.B PP MS") - field(LNK4, "$(P)SGM$(N):limits.B PP MS") - field(LNK5, "$(P)SGM$(N):limits.B PP MS") - field(LNK6, "$(P)SGM$(N):limits.B PP MS") - field(LNK7, "$(P)SGM$(N):limits.B PP MS") - field(LNK8, "$(P)SGM$(N):limits.B PP MS") - field(LNK9, "$(P)SGM$(N):limits.B PP MS") - field(LNKA, "$(P)SGM$(N):limits.B PP MS") -} - -record(seq, "$(P)SGM$(N):sel_Wlow_2") { + field(LNK1, "$(P)$(SGM):limits.B PP MS") + field(LNK2, "$(P)$(SGM):limits.B PP MS") + field(LNK3, "$(P)$(SGM):limits.B PP MS") + field(LNK4, "$(P)$(SGM):limits.B PP MS") + field(LNK5, "$(P)$(SGM):limits.B PP MS") + field(LNK6, "$(P)$(SGM):limits.B PP MS") + field(LNK7, "$(P)$(SGM):limits.B PP MS") + field(LNK8, "$(P)$(SGM):limits.B PP MS") + field(LNK9, "$(P)$(SGM):limits.B PP MS") + field(LNKA, "$(P)$(SGM):limits.B PP MS") +} + +record(seq, "$(P)$(SGM):sel_Wlow_2") { field(DISV, "0") - field(SDIS, "$(P)SGM$(N):selBank.VAL NPP MS") + field(SDIS, "$(P)$(SGM):selBank.VAL NPP MS") field(SELM, "Specified") - field(SELL, "$(P)SGM$(N):selVal.VAL NPP MS") + field(SELL, "$(P)$(SGM):selVal.VAL NPP MS") field(PREC, "3") - field(LNK1, "$(P)SGM$(N):limits.B PP MS") - field(LNK2, "$(P)SGM$(N):limits.B PP MS") - field(LNK3, "$(P)SGM$(N):limits.B PP MS") - field(LNK4, "$(P)SGM$(N):limits.B PP MS") - field(LNK5, "$(P)SGM$(N):limits.B PP MS") - field(LNK6, "$(P)SGM$(N):limits.B PP MS") + field(LNK1, "$(P)$(SGM):limits.B PP MS") + field(LNK2, "$(P)$(SGM):limits.B PP MS") + field(LNK3, "$(P)$(SGM):limits.B PP MS") + field(LNK4, "$(P)$(SGM):limits.B PP MS") + field(LNK5, "$(P)$(SGM):limits.B PP MS") + field(LNK6, "$(P)$(SGM):limits.B PP MS") } -record(seq, "$(P)SGM$(N):sel_den_1") { - field(SDIS, "$(P)SGM$(N):selBank.VAL NPP NMS") +record(seq, "$(P)$(SGM):sel_den_1") { + field(SDIS, "$(P)$(SGM):selBank.VAL NPP NMS") field(SELM, "Specified") - field(SELL, "$(P)SGM$(N):selVal.VAL NPP NMS") + field(SELL, "$(P)$(SGM):selVal.VAL NPP NMS") field(PREC, "3") - field(LNK1, "$(P)SGM$(N):gDensity.VAL PP MS") - field(LNK2, "$(P)SGM$(N):gDensity.VAL PP MS") - field(LNK3, "$(P)SGM$(N):gDensity.VAL PP MS") - field(LNK4, "$(P)SGM$(N):gDensity.VAL PP MS") - field(LNK5, "$(P)SGM$(N):gDensity.VAL PP MS") - field(LNK6, "$(P)SGM$(N):gDensity.VAL PP MS") - field(LNK7, "$(P)SGM$(N):gDensity.VAL PP MS") - field(LNK8, "$(P)SGM$(N):gDensity.VAL PP MS") - field(LNK9, "$(P)SGM$(N):gDensity.VAL PP MS") - field(LNKA, "$(P)SGM$(N):gDensity.VAL PP MS") -} - -record(seq, "$(P)SGM$(N):sel_den_2") { + field(LNK1, "$(P)$(SGM):gDensity.VAL PP MS") + field(LNK2, "$(P)$(SGM):gDensity.VAL PP MS") + field(LNK3, "$(P)$(SGM):gDensity.VAL PP MS") + field(LNK4, "$(P)$(SGM):gDensity.VAL PP MS") + field(LNK5, "$(P)$(SGM):gDensity.VAL PP MS") + field(LNK6, "$(P)$(SGM):gDensity.VAL PP MS") + field(LNK7, "$(P)$(SGM):gDensity.VAL PP MS") + field(LNK8, "$(P)$(SGM):gDensity.VAL PP MS") + field(LNK9, "$(P)$(SGM):gDensity.VAL PP MS") + field(LNKA, "$(P)$(SGM):gDensity.VAL PP MS") +} + +record(seq, "$(P)$(SGM):sel_den_2") { field(DISV, "0") - field(SDIS, "$(P)SGM$(N):selBank.VAL NPP NMS") + field(SDIS, "$(P)$(SGM):selBank.VAL NPP NMS") field(SELM, "Specified") - field(SELL, "$(P)SGM$(N):selVal.VAL NPP NMS") + field(SELL, "$(P)$(SGM):selVal.VAL NPP NMS") field(PREC, "3") - field(LNK1, "$(P)SGM$(N):gDensity.VAL PP MS") - field(LNK2, "$(P)SGM$(N):gDensity.VAL PP MS") - field(LNK3, "$(P)SGM$(N):gDensity.VAL PP MS") - field(LNK4, "$(P)SGM$(N):gDensity.VAL PP MS") - field(LNK5, "$(P)SGM$(N):gDensity.VAL PP MS") - field(LNK6, "$(P)SGM$(N):gDensity.VAL PP MS") + field(LNK1, "$(P)$(SGM):gDensity.VAL PP MS") + field(LNK2, "$(P)$(SGM):gDensity.VAL PP MS") + field(LNK3, "$(P)$(SGM):gDensity.VAL PP MS") + field(LNK4, "$(P)$(SGM):gDensity.VAL PP MS") + field(LNK5, "$(P)$(SGM):gDensity.VAL PP MS") + field(LNK6, "$(P)$(SGM):gDensity.VAL PP MS") } -record(seq, "$(P)SGM$(N):sel_exists_1") { - field(SDIS, "$(P)SGM$(N):selBank.VAL NPP MS") +record(seq, "$(P)$(SGM):sel_exists_1") { + field(SDIS, "$(P)$(SGM):selBank.VAL NPP MS") field(SELM, "Specified") - field(SELL, "$(P)SGM$(N):selVal.VAL NPP MS") - field(LNK1, "$(P)SGM$(N):exists.VAL PP MS") - field(LNK2, "$(P)SGM$(N):exists.VAL PP MS") - field(LNK3, "$(P)SGM$(N):exists.VAL PP MS") - field(LNK4, "$(P)SGM$(N):exists.VAL PP MS") - field(LNK5, "$(P)SGM$(N):exists.VAL PP MS") - field(LNK6, "$(P)SGM$(N):exists.VAL PP MS") - field(LNK7, "$(P)SGM$(N):exists.VAL PP MS") - field(LNK8, "$(P)SGM$(N):exists.VAL PP MS") - field(LNK9, "$(P)SGM$(N):exists.VAL PP MS") - field(LNKA, "$(P)SGM$(N):exists.VAL PP MS") -} - -record(seq, "$(P)SGM$(N):sel_exists_2") { + field(SELL, "$(P)$(SGM):selVal.VAL NPP MS") + field(LNK1, "$(P)$(SGM):exists.VAL PP MS") + field(LNK2, "$(P)$(SGM):exists.VAL PP MS") + field(LNK3, "$(P)$(SGM):exists.VAL PP MS") + field(LNK4, "$(P)$(SGM):exists.VAL PP MS") + field(LNK5, "$(P)$(SGM):exists.VAL PP MS") + field(LNK6, "$(P)$(SGM):exists.VAL PP MS") + field(LNK7, "$(P)$(SGM):exists.VAL PP MS") + field(LNK8, "$(P)$(SGM):exists.VAL PP MS") + field(LNK9, "$(P)$(SGM):exists.VAL PP MS") + field(LNKA, "$(P)$(SGM):exists.VAL PP MS") +} + +record(seq, "$(P)$(SGM):sel_exists_2") { field(DISV, "0") - field(SDIS, "$(P)SGM$(N):selBank.VAL NPP MS") + field(SDIS, "$(P)$(SGM):selBank.VAL NPP MS") field(SELM, "Specified") - field(SELL, "$(P)SGM$(N):selVal.VAL NPP MS") - field(LNK1, "$(P)SGM$(N):exists.VAL PP MS") - field(LNK2, "$(P)SGM$(N):exists.VAL PP MS") - field(LNK3, "$(P)SGM$(N):exists.VAL PP MS") - field(LNK4, "$(P)SGM$(N):exists.VAL PP MS") - field(LNK5, "$(P)SGM$(N):exists.VAL PP MS") - field(LNK6, "$(P)SGM$(N):exists.VAL PP MS") + field(SELL, "$(P)$(SGM):selVal.VAL NPP MS") + field(LNK1, "$(P)$(SGM):exists.VAL PP MS") + field(LNK2, "$(P)$(SGM):exists.VAL PP MS") + field(LNK3, "$(P)$(SGM):exists.VAL PP MS") + field(LNK4, "$(P)$(SGM):exists.VAL PP MS") + field(LNK5, "$(P)$(SGM):exists.VAL PP MS") + field(LNK6, "$(P)$(SGM):exists.VAL PP MS") } -record(seq, "$(P)SGM$(N):sel_loc_1") { - field(SDIS, "$(P)SGM$(N):selBank.VAL NPP MS") +record(seq, "$(P)$(SGM):sel_loc_1") { + field(SDIS, "$(P)$(SGM):selBank.VAL NPP MS") field(SELM, "Specified") - field(SELL, "$(P)SGM$(N):selVal.VAL NPP MS") + field(SELL, "$(P)$(SGM):selVal.VAL NPP MS") field(PREC, "3") - field(LNK1, "$(P)SGM$(N):GrMotorVal.VAL PP MS") - field(LNK2, "$(P)SGM$(N):GrMotorVal.VAL PP MS") - field(LNK3, "$(P)SGM$(N):GrMotorVal.VAL PP MS") - field(LNK4, "$(P)SGM$(N):GrMotorVal.VAL PP MS") - field(LNK5, "$(P)SGM$(N):GrMotorVal.VAL PP MS") - field(LNK6, "$(P)SGM$(N):GrMotorVal.VAL PP MS") - field(LNK7, "$(P)SGM$(N):GrMotorVal.VAL PP MS") - field(LNK8, "$(P)SGM$(N):GrMotorVal.VAL PP MS") - field(LNK9, "$(P)SGM$(N):GrMotorVal.VAL PP MS") - field(LNKA, "$(P)SGM$(N):GrMotorVal.VAL PP MS") -} - -record(seq, "$(P)SGM$(N):sel_loc_2") { + field(LNK1, "$(P)$(SGM):GrMotorVal.VAL PP MS") + field(LNK2, "$(P)$(SGM):GrMotorVal.VAL PP MS") + field(LNK3, "$(P)$(SGM):GrMotorVal.VAL PP MS") + field(LNK4, "$(P)$(SGM):GrMotorVal.VAL PP MS") + field(LNK5, "$(P)$(SGM):GrMotorVal.VAL PP MS") + field(LNK6, "$(P)$(SGM):GrMotorVal.VAL PP MS") + field(LNK7, "$(P)$(SGM):GrMotorVal.VAL PP MS") + field(LNK8, "$(P)$(SGM):GrMotorVal.VAL PP MS") + field(LNK9, "$(P)$(SGM):GrMotorVal.VAL PP MS") + field(LNKA, "$(P)$(SGM):GrMotorVal.VAL PP MS") +} + +record(seq, "$(P)$(SGM):sel_loc_2") { field(DISV, "0") - field(SDIS, "$(P)SGM$(N):selBank.VAL NPP MS") + field(SDIS, "$(P)$(SGM):selBank.VAL NPP MS") field(SELM, "Specified") - field(SELL, "$(P)SGM$(N):selVal.VAL NPP MS") + field(SELL, "$(P)$(SGM):selVal.VAL NPP MS") field(PREC, "3") - field(LNK1, "$(P)SGM$(N):GrMotorVal.VAL PP MS") - field(LNK2, "$(P)SGM$(N):GrMotorVal.VAL PP MS") - field(LNK3, "$(P)SGM$(N):GrMotorVal.VAL PP MS") - field(LNK4, "$(P)SGM$(N):GrMotorVal.VAL PP MS") - field(LNK5, "$(P)SGM$(N):GrMotorVal.VAL PP MS") - field(LNK6, "$(P)SGM$(N):GrMotorVal.VAL PP MS") + field(LNK1, "$(P)$(SGM):GrMotorVal.VAL PP MS") + field(LNK2, "$(P)$(SGM):GrMotorVal.VAL PP MS") + field(LNK3, "$(P)$(SGM):GrMotorVal.VAL PP MS") + field(LNK4, "$(P)$(SGM):GrMotorVal.VAL PP MS") + field(LNK5, "$(P)$(SGM):GrMotorVal.VAL PP MS") + field(LNK6, "$(P)$(SGM):GrMotorVal.VAL PP MS") } -record(seq, "$(P)SGM$(N):sel_m_1") { - field(SDIS, "$(P)SGM$(N):selBank.VAL NPP NMS") +record(seq, "$(P)$(SGM):sel_m_1") { + field(SDIS, "$(P)$(SGM):selBank.VAL NPP NMS") field(SELM, "Specified") - field(SELL, "$(P)SGM$(N):selVal.VAL NPP NMS") - field(LNK1, "$(P)SGM$(N):m.VAL PP MS") - field(LNK2, "$(P)SGM$(N):m.VAL PP MS") - field(LNK3, "$(P)SGM$(N):m.VAL PP MS") - field(LNK4, "$(P)SGM$(N):m.VAL PP MS") - field(LNK5, "$(P)SGM$(N):m.VAL PP MS") - field(LNK6, "$(P)SGM$(N):m.VAL PP MS") - field(LNK7, "$(P)SGM$(N):m.VAL PP MS") - field(LNK8, "$(P)SGM$(N):m.VAL PP MS") - field(LNK9, "$(P)SGM$(N):m.VAL PP MS") - field(LNKA, "$(P)SGM$(N):m.VAL PP MS") -} - -record(seq, "$(P)SGM$(N):sel_m_2") { + field(SELL, "$(P)$(SGM):selVal.VAL NPP NMS") + field(LNK1, "$(P)$(SGM):m.VAL PP MS") + field(LNK2, "$(P)$(SGM):m.VAL PP MS") + field(LNK3, "$(P)$(SGM):m.VAL PP MS") + field(LNK4, "$(P)$(SGM):m.VAL PP MS") + field(LNK5, "$(P)$(SGM):m.VAL PP MS") + field(LNK6, "$(P)$(SGM):m.VAL PP MS") + field(LNK7, "$(P)$(SGM):m.VAL PP MS") + field(LNK8, "$(P)$(SGM):m.VAL PP MS") + field(LNK9, "$(P)$(SGM):m.VAL PP MS") + field(LNKA, "$(P)$(SGM):m.VAL PP MS") +} + +record(seq, "$(P)$(SGM):sel_m_2") { field(DISV, "0") - field(SDIS, "$(P)SGM$(N):selBank.VAL NPP NMS") + field(SDIS, "$(P)$(SGM):selBank.VAL NPP NMS") field(SELM, "Specified") - field(SELL, "$(P)SGM$(N):selVal.VAL NPP NMS") - field(LNK1, "$(P)SGM$(N):m.VAL PP MS") - field(LNK2, "$(P)SGM$(N):m.VAL PP MS") - field(LNK3, "$(P)SGM$(N):m.VAL PP MS") - field(LNK4, "$(P)SGM$(N):m.VAL PP MS") - field(LNK5, "$(P)SGM$(N):m.VAL PP MS") - field(LNK6, "$(P)SGM$(N):m.VAL PP MS") + field(SELL, "$(P)$(SGM):selVal.VAL NPP NMS") + field(LNK1, "$(P)$(SGM):m.VAL PP MS") + field(LNK2, "$(P)$(SGM):m.VAL PP MS") + field(LNK3, "$(P)$(SGM):m.VAL PP MS") + field(LNK4, "$(P)$(SGM):m.VAL PP MS") + field(LNK5, "$(P)$(SGM):m.VAL PP MS") + field(LNK6, "$(P)$(SGM):m.VAL PP MS") } -record(seq, "$(P)SGM$(N):sel_xOff_1") { - field(SDIS, "$(P)SGM$(N):selBank.VAL NPP MS") +record(seq, "$(P)$(SGM):sel_xOff_1") { + field(SDIS, "$(P)$(SGM):selBank.VAL NPP MS") field(SELM, "Specified") - field(SELL, "$(P)SGM$(N):selVal.VAL NPP MS") + field(SELL, "$(P)$(SGM):selVal.VAL NPP MS") field(PREC, "3") - field(LNK1, "$(P)SGM$(N):xOff.VAL PP MS") - field(LNK2, "$(P)SGM$(N):xOff.VAL PP MS") - field(LNK3, "$(P)SGM$(N):xOff.VAL PP MS") - field(LNK4, "$(P)SGM$(N):xOff.VAL PP MS") - field(LNK5, "$(P)SGM$(N):xOff.VAL PP MS") - field(LNK6, "$(P)SGM$(N):xOff.VAL PP MS") - field(LNK7, "$(P)SGM$(N):xOff.VAL PP MS") - field(LNK8, "$(P)SGM$(N):xOff.VAL PP MS") - field(LNK9, "$(P)SGM$(N):xOff.VAL PP MS") - field(LNKA, "$(P)SGM$(N):xOff.VAL PP MS") -} - -record(seq, "$(P)SGM$(N):sel_xOff_2") { + field(LNK1, "$(P)$(SGM):xOff.VAL PP MS") + field(LNK2, "$(P)$(SGM):xOff.VAL PP MS") + field(LNK3, "$(P)$(SGM):xOff.VAL PP MS") + field(LNK4, "$(P)$(SGM):xOff.VAL PP MS") + field(LNK5, "$(P)$(SGM):xOff.VAL PP MS") + field(LNK6, "$(P)$(SGM):xOff.VAL PP MS") + field(LNK7, "$(P)$(SGM):xOff.VAL PP MS") + field(LNK8, "$(P)$(SGM):xOff.VAL PP MS") + field(LNK9, "$(P)$(SGM):xOff.VAL PP MS") + field(LNKA, "$(P)$(SGM):xOff.VAL PP MS") +} + +record(seq, "$(P)$(SGM):sel_xOff_2") { field(DISV, "0") - field(SDIS, "$(P)SGM$(N):selBank.VAL NPP MS") + field(SDIS, "$(P)$(SGM):selBank.VAL NPP MS") field(SELM, "Specified") - field(SELL, "$(P)SGM$(N):selVal.VAL NPP MS") + field(SELL, "$(P)$(SGM):selVal.VAL NPP MS") field(PREC, "3") - field(LNK1, "$(P)SGM$(N):xOff.VAL PP MS") - field(LNK2, "$(P)SGM$(N):xOff.VAL PP MS") - field(LNK3, "$(P)SGM$(N):xOff.VAL PP MS") - field(LNK4, "$(P)SGM$(N):xOff.VAL PP MS") - field(LNK5, "$(P)SGM$(N):xOff.VAL PP MS") - field(LNK6, "$(P)SGM$(N):xOff.VAL PP MS") + field(LNK1, "$(P)$(SGM):xOff.VAL PP MS") + field(LNK2, "$(P)$(SGM):xOff.VAL PP MS") + field(LNK3, "$(P)$(SGM):xOff.VAL PP MS") + field(LNK4, "$(P)$(SGM):xOff.VAL PP MS") + field(LNK5, "$(P)$(SGM):xOff.VAL PP MS") + field(LNK6, "$(P)$(SGM):xOff.VAL PP MS") } -record(seq, "$(P)SGM$(N):sync") { +record(seq, "$(P)$(SGM):sync") { field(DOL1, "1") - field(LNK1, "$(P)SGM$(N):hold.VAL PP MS") - field(DOL2, "$(P)SGM$(N):phiRBV.VAL NPP MS") - field(LNK2, "$(P)SGM$(N):phi.VAL PP MS") - field(DOL3, "$(P)SGM$(N):LambdaRBV.VAL NPP MS") - field(LNK3, "$(P)SGM$(N):Lambda.VAL PP MS") - field(DOL4, "$(P)SGM$(N):EnergyRBV.VAL NPP MS") - field(LNK4, "$(P)SGM$(N):Energy.VAL PP MS") - field(LNK5, "$(P)SGM$(N):hold.VAL PP MS") + field(LNK1, "$(P)$(SGM):hold.VAL PP MS") + field(DOL2, "$(P)$(SGM):phiRBV.VAL NPP MS") + field(LNK2, "$(P)$(SGM):phi.VAL PP MS") + field(DOL3, "$(P)$(SGM):LambdaRBV.VAL NPP MS") + field(LNK3, "$(P)$(SGM):Lambda.VAL PP MS") + field(DOL4, "$(P)$(SGM):EnergyRBV.VAL NPP MS") + field(LNK4, "$(P)$(SGM):Energy.VAL PP MS") + field(LNK5, "$(P)$(SGM):hold.VAL PP MS") } -record(stringout, "$(P)SGM$(N):stripeDesc") { +record(stringout, "$(P)$(SGM):stripeDesc") { field(DTYP, "Soft Channel") } -record(transform, "$(P)SGM$(N):EnergyTweak") { +record(transform, "$(P)$(SGM):EnergyTweak") { field(CLCE, "a?d+(c?c:f):b?d-(c?c:f):d") - field(INPD, "$(P)SGM$(N):Energy.VAL NPP MS") - field(INPF, "$(P)SGM$(N):delta.K NPP MS") - field(OUTE, "$(P)SGM$(N):Energy.VAL PP MS") - field(OUTG, "$(P)SGM$(N):EnergyTweak.A PP MS") - field(OUTH, "$(P)SGM$(N):EnergyTweak.B PP MS") + field(INPD, "$(P)$(SGM):Energy.VAL NPP MS") + field(INPF, "$(P)$(SGM):delta.K NPP MS") + field(OUTE, "$(P)$(SGM):Energy.VAL PP MS") + field(OUTG, "$(P)$(SGM):EnergyTweak.A PP MS") + field(OUTH, "$(P)$(SGM):EnergyTweak.B PP MS") field(EGU, "eV") field(PREC, "3") field(CMTA, "tweak +") @@ -637,17 +637,17 @@ record(transform, "$(P)SGM$(N):EnergyTweak") { field(CMTH, "reset tweak -") } -record(transform, "$(P)SGM$(N):GrMotPut1") { +record(transform, "$(P)$(SGM):GrMotPut1") { field(CLCD, "a>c?a+b/2:g") field(CLCE, "a x") field(CLCE, "f==0?1e9:12398.4244/f") field(CLCF, "e==0?1e9:12398.4244/e") @@ -698,10 +698,10 @@ record(transform, "$(P)SGM$(N):T1") { field(CLCH, "C*SIN(G*D2R)*1000/SQRT(1-SIN(G*D2R)**2)") field(CLCJ, "2*B*sin(g*d2r)*COS((D/2)*D2R)/A") field(CLCK, "j==0?1e9:12398.4244/j") - field(OUTG, "$(P)SGM$(N):phiB.VAL PP MS") - field(OUTH, "$(P)SGM$(N):T2.H PP MS") - field(OUTJ, "$(P)SGM$(N):LambdaB.VAL PP MS") - field(OUTK, "$(P)SGM$(N):EnergyB.VAL PP MS") + field(OUTG, "$(P)$(SGM):phiB.VAL PP MS") + field(OUTH, "$(P)$(SGM):T2.H PP MS") + field(OUTJ, "$(P)$(SGM):LambdaB.VAL PP MS") + field(OUTK, "$(P)$(SGM):EnergyB.VAL PP MS") field(PREC, "6") field(CMTA, "diffraction order") field(CMTB, "grating period (Angstroms)") @@ -716,9 +716,9 @@ record(transform, "$(P)SGM$(N):T1") { field(CMTK, "Energy writeback") } -record(transform, "$(P)SGM$(N):T2") { +record(transform, "$(P)$(SGM):T2") { field(DESC, "calc r'") - field(FLNK, "$(P)SGM$(N):autoMove.VAL PP MS") + field(FLNK, "$(P)$(SGM):autoMove.VAL PP MS") field(CLCE, "cos((c/2+d)*d2r)") field(CLCF, "cos((d-c/2)*d2r)") field(CLCG, "f*f/((e+f)/b-e*e/a)") @@ -726,9 +726,9 @@ record(transform, "$(P)SGM$(N):T2") { field(CLCM, "g>=k||g<=l") field(CLCN, "min(k,max(l,g))") field(INPA, "$(P)$(M_rIn).RBV NPP MS") - field(INPC, "$(P)SGM$(N):2Theta.VAL NPP MS") - field(INPD, "$(P)SGM$(N):T1.G NPP MS") - field(INPJ, "$(P)SGM$(N):xOff.VAL NPP MS") + field(INPC, "$(P)$(SGM):2Theta.VAL NPP MS") + field(INPD, "$(P)$(SGM):T1.G NPP MS") + field(INPJ, "$(P)$(SGM):xOff.VAL NPP MS") field(INPK, "$(P)$(M_rOut).HLM NPP MS") field(INPL, "$(P)$(M_rOut).LLM NPP MS") field(PREC, "6") @@ -748,21 +748,21 @@ record(transform, "$(P)SGM$(N):T2") { field(CMTN, "M_rOut drive value") } -record(transform, "$(P)SGM$(N):T3") { +record(transform, "$(P)$(SGM):T3") { field(DESC, "calc readbacks") field(CLCH, "g+f") field(CLCI, "asin((h/1000)/sqrt(c*c+h*h/1.e6))*r2d") field(CLCJ, "2*b*sin(i*d2r)*cos((d/2)*d2r)/a") field(CLCK, "j==0?1e9:12398.4244/j") - field(INPA, "$(P)SGM$(N):T1.A CP MS") - field(INPB, "$(P)SGM$(N):T1.B CP MS") - field(INPC, "$(P)SGM$(N):T1.C CP MS") - field(INPD, "$(P)SGM$(N):T1.D CP MS") - field(INPF, "$(P)SGM$(N):xOff.VAL CP MS") + field(INPA, "$(P)$(SGM):T1.A CP MS") + field(INPB, "$(P)$(SGM):T1.B CP MS") + field(INPC, "$(P)$(SGM):T1.C CP MS") + field(INPD, "$(P)$(SGM):T1.D CP MS") + field(INPF, "$(P)$(SGM):xOff.VAL CP MS") field(INPG, "$(P)$(M_x).RBV CP MS") - field(OUTI, "$(P)SGM$(N):phiRBV.VAL PP MS") - field(OUTJ, "$(P)SGM$(N):LambdaRBV.VAL PP MS") - field(OUTK, "$(P)SGM$(N):EnergyRBV.VAL PP MS") + field(OUTI, "$(P)$(SGM):phiRBV.VAL PP MS") + field(OUTJ, "$(P)$(SGM):LambdaRBV.VAL PP MS") + field(OUTK, "$(P)$(SGM):EnergyRBV.VAL PP MS") field(PREC, "6") field(CMTF, "tangent-arm offset") field(CMTG, "tangent-arm readback") @@ -772,7 +772,7 @@ record(transform, "$(P)SGM$(N):T3") { field(CMTK, "Energy readback out") } -record(transform, "$(P)SGM$(N):delta") { +record(transform, "$(P)$(SGM):delta") { field(DESC, "calc 1-step deltas") # field(PINI, "YES") field(CLCI, "R2D*B/(1000*C+A*A/(1000*C))") @@ -780,12 +780,12 @@ record(transform, "$(P)SGM$(N):delta") { field(CLCK, "h==0?1:min(100,j*12398.4244/(h*h))") field(INPA, "$(P)$(M_x).RBV CP NMS") field(INPB, "$(P)$(M_x).MRES CP NMS") - field(INPC, "$(P)SGM$(N):len.VAL NPP MS") - field(INPD, "$(P)SGM$(N):d.VAL NPP MS") - field(INPE, "$(P)SGM$(N):m.VAL NPP MS") - field(INPF, "$(P)SGM$(N):2Theta.VAL NPP MS") - field(INPG, "$(P)SGM$(N):phiRBV.VAL NPP MS") - field(INPH, "$(P)SGM$(N):LambdaRBV.VAL NPP MS") + field(INPC, "$(P)$(SGM):len.VAL NPP MS") + field(INPD, "$(P)$(SGM):d.VAL NPP MS") + field(INPE, "$(P)$(SGM):m.VAL NPP MS") + field(INPF, "$(P)$(SGM):2Theta.VAL NPP MS") + field(INPG, "$(P)$(SGM):phiRBV.VAL NPP MS") + field(INPH, "$(P)$(SGM):LambdaRBV.VAL NPP MS") field(PREC, "3") field(CMTA, "M_x readback") field(CMTB, "M_x Resolution") @@ -797,21 +797,21 @@ record(transform, "$(P)SGM$(N):delta") { field(CMTH, "Lambda readback") } -record(transform, "$(P)SGM$(N):limits") { +record(transform, "$(P)$(SGM):limits") { field(CLCF, "0") field(CLCG, "0") field(CLCH, "C/(2*D*COS(D2R*E/2))") field(CLCI, "R2D*(C>0?ASIN(A*H):ASIN(b*H))") field(CLCJ, "R2D*(C<0?ASIN(A*H):ASIN(b*H))") - field(INPC, "$(P)SGM$(N):m.VAL CP MS") - field(INPD, "$(P)SGM$(N):d.VAL CP MS") - field(INPE, "$(P)SGM$(N):2Theta.VAL CP MS") - field(OUTA, "$(P)SGM$(N):Lambda.DRVH PP MS") - field(OUTB, "$(P)SGM$(N):Lambda.DRVL PP MS") - field(OUTF, "$(P)SGM$(N):Energy.DRVH PP MS") - field(OUTG, "$(P)SGM$(N):Energy.DRVL PP MS") - field(OUTI, "$(P)SGM$(N):phi.DRVH PP MS") - field(OUTJ, "$(P)SGM$(N):phi.DRVL PP MS") + field(INPC, "$(P)$(SGM):m.VAL CP MS") + field(INPD, "$(P)$(SGM):d.VAL CP MS") + field(INPE, "$(P)$(SGM):2Theta.VAL CP MS") + field(OUTA, "$(P)$(SGM):Lambda.DRVH PP MS") + field(OUTB, "$(P)$(SGM):Lambda.DRVL PP MS") + field(OUTF, "$(P)$(SGM):Energy.DRVH PP MS") + field(OUTG, "$(P)$(SGM):Energy.DRVL PP MS") + field(OUTI, "$(P)$(SGM):phi.DRVH PP MS") + field(OUTJ, "$(P)$(SGM):phi.DRVL PP MS") field(PREC, "3") field(CMTA, "Wavelength high limit (Angstroms)") field(CMTB, "Wavelength low limit (Angstroms)") @@ -825,13 +825,13 @@ record(transform, "$(P)SGM$(N):limits") { field(CMTJ, "phi low limit (degrees)") } -record(transform, "$(P)SGM$(N):phiTweak") { +record(transform, "$(P)$(SGM):phiTweak") { field(CLCE, "a?d+(c?c:f):b?d-(c?c:f):d") - field(INPD, "$(P)SGM$(N):phi.VAL NPP MS") - field(INPF, "$(P)SGM$(N):delta.I NPP MS") - field(OUTE, "$(P)SGM$(N):phi.VAL PP MS") - field(OUTG, "$(P)SGM$(N):phiTweak.A PP MS") - field(OUTH, "$(P)SGM$(N):phiTweak.B PP MS") + field(INPD, "$(P)$(SGM):phi.VAL NPP MS") + field(INPF, "$(P)$(SGM):delta.I NPP MS") + field(OUTE, "$(P)$(SGM):phi.VAL PP MS") + field(OUTG, "$(P)$(SGM):phiTweak.A PP MS") + field(OUTH, "$(P)$(SGM):phiTweak.B PP MS") field(EGU, "degrees") field(PREC, "5") field(CMTA, "tweak +") @@ -844,1253 +844,1253 @@ record(transform, "$(P)SGM$(N):phiTweak") { field(CMTH, "reset tweak -") } -record(swait, "$(P)SGM$(N):GrMotPut") { +record(swait, "$(P)$(SGM):GrMotPut") { field(DTYP, "Soft Channel") - field(FLNK, "$(P)SGM$(N):GrMotPut2.PROC PP MS") + field(FLNK, "$(P)$(SGM):GrMotPut2.PROC PP MS") field(OUTN, "$(P)$(M_g).VAL") field(CALC, "a") field(PREC, "3") } -record(swait, "$(P)SGM$(N):rOutWait") { +record(swait, "$(P)$(SGM):rOutWait") { field(SCAN, "I/O Intr") field(DTYP, "Soft Channel") field(DISV, "0") - field(SDIS, "$(P)SGM$(N):rTrack.VAL NPP MS") + field(SDIS, "$(P)$(SGM):rTrack.VAL NPP MS") field(INAN, "$(P)$(M_rOut).DMOV") - field(OUTN, "$(P)SGM$(N):moving.VAL") + field(OUTN, "$(P)$(SGM):moving.VAL") field(CALC, "!A") field(OOPT, "Transition To Zero") } -record(swait, "$(P)SGM$(N):xWait") { +record(swait, "$(P)$(SGM):xWait") { field(SCAN, "I/O Intr") field(DTYP, "Soft Channel") - field(SDIS, "$(P)SGM$(N):rTrack.VAL NPP MS") + field(SDIS, "$(P)$(SGM):rTrack.VAL NPP MS") field(INAN, "$(P)$(M_x).DMOV") - field(OUTN, "$(P)SGM$(N):moving.VAL") + field(OUTN, "$(P)$(SGM):moving.VAL") field(CALC, "!A") field(OOPT, "Transition To Zero") } -record(sseq, "$(P)SGM$(N):sel_desc_1") { - field(SDIS, "$(P)SGM$(N):selBank.VAL NPP NMS") +record(sseq, "$(P)$(SGM):sel_desc_1") { + field(SDIS, "$(P)$(SGM):selBank.VAL NPP NMS") field(SELM, "Specified") - field(SELL, "$(P)SGM$(N):selVal.VAL NPP NMS") - field(LNK1, "$(P)SGM$(N):stripeDesc.VAL PP MS") - field(LNK2, "$(P)SGM$(N):stripeDesc.VAL PP MS") - field(LNK3, "$(P)SGM$(N):stripeDesc.VAL PP MS") - field(LNK4, "$(P)SGM$(N):stripeDesc.VAL PP MS") - field(LNK5, "$(P)SGM$(N):stripeDesc.VAL PP MS") - field(LNK6, "$(P)SGM$(N):stripeDesc.VAL PP MS") - field(LNK7, "$(P)SGM$(N):stripeDesc.VAL PP MS") - field(LNK8, "$(P)SGM$(N):stripeDesc.VAL PP MS") - field(LNK9, "$(P)SGM$(N):stripeDesc.VAL PP MS") - field(LNKA, "$(P)SGM$(N):stripeDesc.VAL PP MS") -} - -record(sseq, "$(P)SGM$(N):sel_desc_2") { + field(SELL, "$(P)$(SGM):selVal.VAL NPP NMS") + field(LNK1, "$(P)$(SGM):stripeDesc.VAL PP MS") + field(LNK2, "$(P)$(SGM):stripeDesc.VAL PP MS") + field(LNK3, "$(P)$(SGM):stripeDesc.VAL PP MS") + field(LNK4, "$(P)$(SGM):stripeDesc.VAL PP MS") + field(LNK5, "$(P)$(SGM):stripeDesc.VAL PP MS") + field(LNK6, "$(P)$(SGM):stripeDesc.VAL PP MS") + field(LNK7, "$(P)$(SGM):stripeDesc.VAL PP MS") + field(LNK8, "$(P)$(SGM):stripeDesc.VAL PP MS") + field(LNK9, "$(P)$(SGM):stripeDesc.VAL PP MS") + field(LNKA, "$(P)$(SGM):stripeDesc.VAL PP MS") +} + +record(sseq, "$(P)$(SGM):sel_desc_2") { field(DISV, "0") - field(SDIS, "$(P)SGM$(N):selBank.VAL NPP NMS") + field(SDIS, "$(P)$(SGM):selBank.VAL NPP NMS") field(SELM, "Specified") - field(SELL, "$(P)SGM$(N):selVal.VAL NPP NMS") - field(LNK1, "$(P)SGM$(N):stripeDesc.VAL PP MS") - field(LNK2, "$(P)SGM$(N):stripeDesc.VAL PP MS") - field(LNK3, "$(P)SGM$(N):stripeDesc.VAL PP MS") - field(LNK4, "$(P)SGM$(N):stripeDesc.VAL PP MS") - field(LNK5, "$(P)SGM$(N):stripeDesc.VAL PP MS") - field(LNK6, "$(P)SGM$(N):stripeDesc.VAL PP MS") + field(SELL, "$(P)$(SGM):selVal.VAL NPP NMS") + field(LNK1, "$(P)$(SGM):stripeDesc.VAL PP MS") + field(LNK2, "$(P)$(SGM):stripeDesc.VAL PP MS") + field(LNK3, "$(P)$(SGM):stripeDesc.VAL PP MS") + field(LNK4, "$(P)$(SGM):stripeDesc.VAL PP MS") + field(LNK5, "$(P)$(SGM):stripeDesc.VAL PP MS") + field(LNK6, "$(P)$(SGM):stripeDesc.VAL PP MS") } -record(ao, "$(P)SGM$(N):dPut") { - field(SDIS, "$(P)SGM$(N):inInit") - field(OUT, "$(P)SGM$(N):T1.B PP") +record(ao, "$(P)$(SGM):dPut") { + field(SDIS, "$(P)$(SGM):inInit") + field(OUT, "$(P)$(SGM):T1.B PP") } #! Further lines contain data used by VisualDCT #! View(204,80,0.7) -#! Record("$(P)SGM$(N):2Theta",900,1383,0,0,"$(P)SGM$(N):2Theta") -#! Field("$(P)SGM$(N):2Theta.OUT",16777215,1,"$(P)SGM$(N):2Theta.OUT") -#! Link("$(P)SGM$(N):2Theta.OUT","$(P)SGM$(N):2Theta/OUT") -#! Field("$(P)SGM$(N):2Theta.VAL",16777215,1,"$(P)SGM$(N):2Theta.VAL") -#! Connector("$(P)SGM$(N):2Theta/OUT","$(P)SGM$(N):T1.D",1720,1620,16777215,"",0) -#! Record("$(P)SGM$(N):Energy",900,1572,0,0,"$(P)SGM$(N):Energy") -#! Field("$(P)SGM$(N):Energy.PACT",16777215,1,"$(P)SGM$(N):Energy.PACT") -#! Field("$(P)SGM$(N):Energy.DRVH",16777215,0,"$(P)SGM$(N):Energy.DRVH") -#! Field("$(P)SGM$(N):Energy.DRVL",16777215,0,"$(P)SGM$(N):Energy.DRVL") -#! Field("$(P)SGM$(N):Energy.VAL",16777215,1,"$(P)SGM$(N):Energy.VAL") -#! Field("$(P)SGM$(N):Energy.OUT",16777215,1,"$(P)SGM$(N):Energy.OUT") -#! Link("$(P)SGM$(N):Energy.OUT","$(P)SGM$(N):T1.E") -#! Record("$(P)SGM$(N):EnergyB",1320,1600,0,0,"$(P)SGM$(N):EnergyB") -#! Field("$(P)SGM$(N):EnergyB.SDIS",16777215,0,"$(P)SGM$(N):EnergyB.SDIS") -#! Link("$(P)SGM$(N):EnergyB.SDIS","$(P)SGM$(N):Energy.PACT") -#! Field("$(P)SGM$(N):EnergyB.VAL",16777215,1,"$(P)SGM$(N):EnergyB.VAL") -#! Field("$(P)SGM$(N):EnergyB.OUT",16777215,0,"$(P)SGM$(N):EnergyB.OUT") -#! Link("$(P)SGM$(N):EnergyB.OUT","$(P)SGM$(N):EnergyB/OUT") -#! Connector("$(P)SGM$(N):EnergyB/OUT","$(P)SGM$(N):Energy.VAL",1260,1760,16777215,"",0) -#! Record("$(P)SGM$(N):EnergyRBV",2860,1066,0,0,"$(P)SGM$(N):EnergyRBV") -#! Field("$(P)SGM$(N):EnergyRBV.VAL",16777215,1,"$(P)SGM$(N):EnergyRBV.VAL") -#! Record("$(P)SGM$(N):GrMotorVal",5780,2780,0,0,"$(P)SGM$(N):GrMotorVal") -#! Field("$(P)SGM$(N):GrMotorVal.OUT",16777215,1,"$(P)SGM$(N):GrMotorVal.OUT") -#! Link("$(P)SGM$(N):GrMotorVal.OUT","$(P)SGM$(N):GrMotorVal/OUT") -#! Field("$(P)SGM$(N):GrMotorVal.VAL",16777215,0,"$(P)SGM$(N):GrMotorVal.VAL") -#! Connector("$(P)SGM$(N):GrMotorVal/OUT","$(P)SGM$(N):GrMotPut1.A",6020,2930,16777215,"",0) -#! Record("$(P)SGM$(N):Lambda",900,1792,0,0,"$(P)SGM$(N):Lambda") -#! Field("$(P)SGM$(N):Lambda.PACT",16777215,1,"$(P)SGM$(N):Lambda.PACT") -#! Field("$(P)SGM$(N):Lambda.DRVH",16777215,0,"$(P)SGM$(N):Lambda.DRVH") -#! Field("$(P)SGM$(N):Lambda.DRVL",16777215,0,"$(P)SGM$(N):Lambda.DRVL") -#! Field("$(P)SGM$(N):Lambda.VAL",16777215,1,"$(P)SGM$(N):Lambda.VAL") -#! Field("$(P)SGM$(N):Lambda.OUT",16777215,1,"$(P)SGM$(N):Lambda.OUT") -#! Link("$(P)SGM$(N):Lambda.OUT","$(P)SGM$(N):Lambda/OUT") -#! Connector("$(P)SGM$(N):Lambda/OUT","$(P)SGM$(N):T1.F",1720,1870,16777215,"",0) -#! Record("$(P)SGM$(N):LambdaB",1320,1820,0,0,"$(P)SGM$(N):LambdaB") -#! Field("$(P)SGM$(N):LambdaB.SDIS",16777215,0,"$(P)SGM$(N):LambdaB.SDIS") -#! Link("$(P)SGM$(N):LambdaB.SDIS","$(P)SGM$(N):Lambda.PACT") -#! Field("$(P)SGM$(N):LambdaB.VAL",16777215,1,"$(P)SGM$(N):LambdaB.VAL") -#! Field("$(P)SGM$(N):LambdaB.OUT",16777215,0,"$(P)SGM$(N):LambdaB.OUT") -#! Link("$(P)SGM$(N):LambdaB.OUT","$(P)SGM$(N):LambdaB/OUT") -#! Connector("$(P)SGM$(N):LambdaB/OUT","$(P)SGM$(N):Lambda.VAL",1260,1980,16777215,"",0) -#! Record("$(P)SGM$(N):LambdaRBV",2860,966,0,0,"$(P)SGM$(N):LambdaRBV") -#! Field("$(P)SGM$(N):LambdaRBV.VAL",16777215,1,"$(P)SGM$(N):LambdaRBV.VAL") -#! Record("$(P)SGM$(N):R",2240,1283,0,0,"$(P)SGM$(N):R") -#! Field("$(P)SGM$(N):R.OUT",16777215,1,"$(P)SGM$(N):R.OUT") -#! Link("$(P)SGM$(N):R.OUT","$(P)SGM$(N):T2.B") -#! Field("$(P)SGM$(N):R.VAL",16777215,1,"$(P)SGM$(N):R.VAL") -#! Record("$(P)SGM$(N):StripeWidth",5780,2935,0,0,"$(P)SGM$(N):StripeWidth") -#! Field("$(P)SGM$(N):StripeWidth.VAL",16777215,1,"$(P)SGM$(N):StripeWidth.VAL") -#! Record("$(P)SGM$(N):d",1200,928,0,0,"$(P)SGM$(N):d") -#! Field("$(P)SGM$(N):d.DOL",16777215,0,"$(P)SGM$(N):d.DOL") -#! Link("$(P)SGM$(N):d.DOL","$(P)SGM$(N):d/DOL") -#! Field("$(P)SGM$(N):d.VAL",16777215,0,"$(P)SGM$(N):d.VAL") -#! Field("$(P)SGM$(N):d.OUT",16777215,1,"$(P)SGM$(N):d.OUT") -#! Link("$(P)SGM$(N):d.OUT","$(P)SGM$(N):dPut.VAL") -#! Connector("$(P)SGM$(N):d/DOL","$(P)SGM$(N):dCalc.VAL",1140,1050,16777215,"",0) -#! Record("$(P)SGM$(N):gDensity",1200,643,0,0,"$(P)SGM$(N):gDensity") -#! Field("$(P)SGM$(N):gDensity.PROC",16777215,0,"$(P)SGM$(N):gDensity.PROC") -#! Field("$(P)SGM$(N):gDensity.VAL",16777215,1,"$(P)SGM$(N):gDensity.VAL") -#! Field("$(P)SGM$(N):gDensity.OUT",16777215,1,"$(P)SGM$(N):gDensity.OUT") -#! Link("$(P)SGM$(N):gDensity.OUT","$(P)SGM$(N):gDensity/OUT1") -#! Connector("$(P)SGM$(N):gDensity/OUT1","$(P)SGM$(N):gDensity/OUT",1420,865,16777215,"",0) -#! Connector("$(P)SGM$(N):gDensity/OUT","$(P)SGM$(N):gDensity/OUT2",1290,880,16777215,"",0) -#! Connector("$(P)SGM$(N):gDensity/OUT2","$(P)SGM$(N):dCalc.A",1160,925,16777215,"",0) -#! Record("$(P)SGM$(N):len",1200,1203,0,0,"$(P)SGM$(N):len") -#! Field("$(P)SGM$(N):len.VAL",16777215,0,"$(P)SGM$(N):len.VAL") -#! Field("$(P)SGM$(N):len.OUT",16777215,1,"$(P)SGM$(N):len.OUT") -#! Link("$(P)SGM$(N):len.OUT","$(P)SGM$(N):len/OUT") -#! Connector("$(P)SGM$(N):len/OUT","$(P)SGM$(N):T1.C",1740,1530,16777215,"",0) -#! Record("$(P)SGM$(N):phi",900,2003,0,0,"$(P)SGM$(N):phi") -#! Field("$(P)SGM$(N):phi.PACT",16777215,1,"$(P)SGM$(N):phi.PACT") -#! Field("$(P)SGM$(N):phi.DRVH",16777215,0,"$(P)SGM$(N):phi.DRVH") -#! Field("$(P)SGM$(N):phi.DRVL",16777215,0,"$(P)SGM$(N):phi.DRVL") -#! Field("$(P)SGM$(N):phi.VAL",16777215,1,"$(P)SGM$(N):phi.VAL") -#! Field("$(P)SGM$(N):phi.OUT",16777215,1,"$(P)SGM$(N):phi.OUT") -#! Link("$(P)SGM$(N):phi.OUT","$(P)SGM$(N):phi/OUT") -#! Connector("$(P)SGM$(N):phi/OUT","$(P)SGM$(N):T1.G",1740,2000,16777215,"",0) -#! Record("$(P)SGM$(N):phiB",1320,2060,0,0,"$(P)SGM$(N):phiB") -#! Field("$(P)SGM$(N):phiB.SDIS",16777215,0,"$(P)SGM$(N):phiB.SDIS") -#! Link("$(P)SGM$(N):phiB.SDIS","$(P)SGM$(N):phi.PACT") -#! Field("$(P)SGM$(N):phiB.VAL",16777215,1,"$(P)SGM$(N):phiB.VAL") -#! Field("$(P)SGM$(N):phiB.OUT",16777215,1,"$(P)SGM$(N):phiB.OUT") -#! Link("$(P)SGM$(N):phiB.OUT","$(P)SGM$(N):phiB/OUT") -#! Connector("$(P)SGM$(N):phiB/OUT","$(P)SGM$(N):phi.VAL",1540,2220,16777215,"",0) -#! Record("$(P)SGM$(N):phiRBV",2860,866,0,0,"$(P)SGM$(N):phiRBV") -#! Field("$(P)SGM$(N):phiRBV.VAL",16777215,1,"$(P)SGM$(N):phiRBV.VAL") -#! Record("$(P)SGM$(N):xOff",5780,3915,0,0,"$(P)SGM$(N):xOff") -#! Field("$(P)SGM$(N):xOff.VAL",16777215,1,"$(P)SGM$(N):xOff.VAL") -#! Record("$(P)SGM$(N):saveAuto",4520,1652,0,0,"$(P)SGM$(N):saveAuto") -#! Field("$(P)SGM$(N):saveAuto.INP",16777215,0,"$(P)SGM$(N):saveAuto.INP") -#! Link("$(P)SGM$(N):saveAuto.INP","$(P)SGM$(N):saveAuto/INP1") -#! Field("$(P)SGM$(N):saveAuto.VAL",16777215,1,"$(P)SGM$(N):saveAuto.VAL") -#! Field("$(P)SGM$(N):saveAuto.FLNK",16777215,1,"$(P)SGM$(N):saveAuto.FLNK") -#! Link("$(P)SGM$(N):saveAuto.FLNK","$(P)SGM$(N):saveAuto/FLNK") -#! Connector("$(P)SGM$(N):saveAuto/INP1","$(P)SGM$(N):auto.VAL",4400,1710,16777215,"",0) -#! Connector("$(P)SGM$(N):saveAuto/FLNK","$(P)SGM$(N):saveAuto/FLNK1",4740,1845,16777215,"",0) -#! Connector("$(P)SGM$(N):saveAuto/FLNK1","$(P)SGM$(N):saveAuto/FLNK2",4590,1860,16777215,"",0) -#! Connector("$(P)SGM$(N):saveAuto/FLNK2","$(P)SGM$(N):toManual",4440,1871,16777215,"",0) -#! Record("$(P)SGM$(N):auto",4520,1506,0,0,"$(P)SGM$(N):auto") -#! Field("$(P)SGM$(N):auto.VAL",16777215,1,"$(P)SGM$(N):auto.VAL") -#! Record("$(P)SGM$(N):autoMove",2960,1506,0,0,"$(P)SGM$(N):autoMove") -#! Field("$(P)SGM$(N):autoMove.SDIS",16777215,1,"$(P)SGM$(N):autoMove.SDIS") -#! Link("$(P)SGM$(N):autoMove.SDIS","$(P)SGM$(N):autoMove/SDIS") -#! Field("$(P)SGM$(N):autoMove.FLNK",16777215,1,"$(P)SGM$(N):autoMove.FLNK") -#! Link("$(P)SGM$(N):autoMove.FLNK","$(P)SGM$(N):autoMove/FLNK") -#! Connector("$(P)SGM$(N):autoMove/FLNK","$(P)SGM$(N):move",3540,1626,16777215,"",0) -#! Connector("$(P)SGM$(N):autoMove/SDIS","$(P)SGM$(N):auto.VAL",4360,1630,16777215,"",0) -#! Record("$(P)SGM$(N):exists",2480,2395,0,0,"$(P)SGM$(N):exists") -#! Field("$(P)SGM$(N):exists.VAL",16777215,1,"$(P)SGM$(N):exists.VAL") -#! Field("$(P)SGM$(N):exists.FLNK",16777215,1,"$(P)SGM$(N):exists.FLNK") -#! Link("$(P)SGM$(N):exists.FLNK","$(P)SGM$(N):exists/FLNK") -#! Connector("$(P)SGM$(N):exists/FLNK","$(P)SGM$(N):gratingPut",2700,2498,16777215,"",0) -#! Record("$(P)SGM$(N):hold",3240,829,0,0,"$(P)SGM$(N):hold") -#! Field("$(P)SGM$(N):hold.VAL",16777215,1,"$(P)SGM$(N):hold.VAL") -#! Record("$(P)SGM$(N):moving",3860,1709,0,0,"$(P)SGM$(N):moving") -#! Field("$(P)SGM$(N):moving.VAL",16777215,0,"$(P)SGM$(N):moving.VAL") -#! Record("$(P)SGM$(N):restoreAuto",4820,1658,0,0,"$(P)SGM$(N):restoreAuto") -#! Field("$(P)SGM$(N):restoreAuto.DOL",16777215,0,"$(P)SGM$(N):restoreAuto.DOL") -#! Link("$(P)SGM$(N):restoreAuto.DOL","$(P)SGM$(N):saveAuto.VAL") -#! Field("$(P)SGM$(N):restoreAuto.VAL",16777215,0,"$(P)SGM$(N):restoreAuto.VAL") -#! Field("$(P)SGM$(N):restoreAuto.OUT",16777215,1,"$(P)SGM$(N):restoreAuto.OUT") -#! Link("$(P)SGM$(N):restoreAuto.OUT","$(P)SGM$(N):restoreAuto/OUT") -#! Connector("$(P)SGM$(N):restoreAuto/OUT","$(P)SGM$(N):auto.VAL",5040,1740,16777215,"",0) -#! Record("$(P)SGM$(N):set",5460,4192,0,0,"$(P)SGM$(N):set") -#! Field("$(P)SGM$(N):set.VAL",16777215,1,"$(P)SGM$(N):set.VAL") -#! Field("$(P)SGM$(N):set.OUT",16777215,1,"$(P)SGM$(N):set.OUT") -#! Link("$(P)SGM$(N):set.OUT","$(P)SGM$(N):set/OUT") -#! Field("$(P)SGM$(N):set.FLNK",16777215,1,"$(P)SGM$(N):set.FLNK") -#! Link("$(P)SGM$(N):set.FLNK","$(P)SGM$(N):set/FLNK") -#! Connector("$(P)SGM$(N):set/OUT",null,5960,4360,16777215,"",2) -#! Connector("$(P)SGM$(N):set/FLNK","$(P)SGM$(N):set1",5700,4386,16777215,"",0) -#! Record("$(P)SGM$(N):set1",5740,4346,0,0,"$(P)SGM$(N):set1") -#! Field("$(P)SGM$(N):set1.DOL",16777215,0,"$(P)SGM$(N):set1.DOL") -#! Link("$(P)SGM$(N):set1.DOL","$(P)SGM$(N):set1/DOL") -#! Field("$(P)SGM$(N):set1.OUT",16777215,1,"$(P)SGM$(N):set1.OUT") -#! Link("$(P)SGM$(N):set1.OUT","$(P)SGM$(N):set1/OUT") -#! Connector("$(P)SGM$(N):set1/OUT",null,5960,4500,16777215,"",2) -#! Connector("$(P)SGM$(N):set1/DOL","$(P)SGM$(N):set.VAL",5680,4400,16777215,"",0) -#! Record("$(P)SGM$(N):toManual",4520,1826,0,0,"$(P)SGM$(N):toManual") -#! Field("$(P)SGM$(N):toManual.OUT",16777215,1,"$(P)SGM$(N):toManual.OUT") -#! Link("$(P)SGM$(N):toManual.OUT","$(P)SGM$(N):toManual/OUT1") -#! Field("$(P)SGM$(N):toManual.FLNK",16777215,1,"$(P)SGM$(N):toManual.FLNK") -#! Link("$(P)SGM$(N):toManual.FLNK","$(P)SGM$(N):toManual/FLNK") -#! Connector("$(P)SGM$(N):toManual/OUT1","$(P)SGM$(N):auto.VAL",5040,1790,16777215,"",0) -#! Connector("$(P)SGM$(N):toManual/FLNK","$(P)SGM$(N):toManual/FLNK1",4740,1995,16777215,"",0) -#! Connector("$(P)SGM$(N):toManual/FLNK1","$(P)SGM$(N):selBank",4622,2020,16777215,"",0) -#! Record("$(P)SGM$(N):dCalc",1200,832,0,0,"$(P)SGM$(N):dCalc") -#! Field("$(P)SGM$(N):dCalc.A",16777215,0,"$(P)SGM$(N):dCalc.A") -#! Field("$(P)SGM$(N):dCalc.VAL",16777215,0,"$(P)SGM$(N):dCalc.VAL") -#! Field("$(P)SGM$(N):dCalc.FLNK",16777215,1,"$(P)SGM$(N):dCalc.FLNK") -#! Link("$(P)SGM$(N):dCalc.FLNK","$(P)SGM$(N):dCalc/FLNK") -#! Connector("$(P)SGM$(N):dCalc/FLNK","$(P)SGM$(N):dCalc/FLNK1",1420,1025,16777215,"",0) -#! Connector("$(P)SGM$(N):dCalc/FLNK1","$(P)SGM$(N):dCalc/FLNK2",1290,1040,16777215,"",0) -#! Connector("$(P)SGM$(N):dCalc/FLNK2","$(P)SGM$(N):d",1160,1027,16777215,"",0) -#! Record("$(P)SGM$(N):selBank",4540,2000,0,0,"$(P)SGM$(N):selBank") -#! Field("$(P)SGM$(N):selBank.VAL",16777215,1,"$(P)SGM$(N):selBank.VAL") -#! Field("$(P)SGM$(N):selBank.INPA",16777215,0,"$(P)SGM$(N):selBank.INPA") -#! Link("$(P)SGM$(N):selBank.INPA","$(P)SGM$(N):selBank/INPA") -#! Field("$(P)SGM$(N):selBank.FLNK",16777215,1,"$(P)SGM$(N):selBank.FLNK") -#! Link("$(P)SGM$(N):selBank.FLNK","$(P)SGM$(N):selBank/FLNK2") -#! Connector("$(P)SGM$(N):selBank/INPA","$(P)SGM$(N):grating.VAL",4360,1920,16777215,"",0) -#! Connector("$(P)SGM$(N):selBank/FLNK2","$(P)SGM$(N):selBank/FLNK",4760,2165,16777215,"",0) -#! Connector("$(P)SGM$(N):selBank/FLNK","$(P)SGM$(N):selBank/FLNK1",4620,2180,16777215,"",0) -#! Connector("$(P)SGM$(N):selBank/FLNK1","$(P)SGM$(N):selVal",4480,2195,16777215,"",0) -#! Record("$(P)SGM$(N):selVal",4540,2160,0,0,"$(P)SGM$(N):selVal") -#! Field("$(P)SGM$(N):selVal.INPA",16777215,0,"$(P)SGM$(N):selVal.INPA") -#! Link("$(P)SGM$(N):selVal.INPA","$(P)SGM$(N):selVal/INPA") -#! Field("$(P)SGM$(N):selVal.VAL",16777215,1,"$(P)SGM$(N):selVal.VAL") -#! Field("$(P)SGM$(N):selVal.FLNK",16777215,1,"$(P)SGM$(N):selVal.FLNK") -#! Link("$(P)SGM$(N):selVal.FLNK","$(P)SGM$(N):checkExists") -#! Connector("$(P)SGM$(N):selVal/INPA","$(P)SGM$(N):grating.VAL",4360,1990,16777215,"",0) -#! Record("$(P)SGM$(N):checkExists",4960,2255,0,0,"$(P)SGM$(N):checkExists") -#! Field("$(P)SGM$(N):checkExists.LNK1",16777215,1,"$(P)SGM$(N):checkExists.LNK1") -#! Link("$(P)SGM$(N):checkExists.LNK1","$(P)SGM$(N):checkExists/LNK1") -#! Field("$(P)SGM$(N):checkExists.LNK2",16777215,1,"$(P)SGM$(N):checkExists.LNK2") -#! Link("$(P)SGM$(N):checkExists.LNK2","$(P)SGM$(N):checkExists/LNK2") -#! Connector("$(P)SGM$(N):checkExists/LNK2","$(P)SGM$(N):sel_exists_2",5240,2324,16777215,"",0) -#! Connector("$(P)SGM$(N):checkExists/LNK1","$(P)SGM$(N):sel_exists_1",5240,2144,16777215,"",0) -#! Record("$(P)SGM$(N):gPut_1",3340,2523,0,0,"$(P)SGM$(N):gPut_1") -#! Field("$(P)SGM$(N):gPut_1.LNK1",16777215,1,"$(P)SGM$(N):gPut_1.LNK1") -#! Link("$(P)SGM$(N):gPut_1.LNK1","$(P)SGM$(N):gPut_1/LNK1") -#! Field("$(P)SGM$(N):gPut_1.LNK2",16777215,1,"$(P)SGM$(N):gPut_1.LNK2") -#! Link("$(P)SGM$(N):gPut_1.LNK2","$(P)SGM$(N):gPut_1/LNK2") -#! Field("$(P)SGM$(N):gPut_1.LNK3",16777215,1,"$(P)SGM$(N):gPut_1.LNK3") -#! Link("$(P)SGM$(N):gPut_1.LNK3","$(P)SGM$(N):gPut_1/LNK3") -#! Field("$(P)SGM$(N):gPut_1.LNK4",16777215,1,"$(P)SGM$(N):gPut_1.LNK4") -#! Link("$(P)SGM$(N):gPut_1.LNK4","$(P)SGM$(N):gPut_1/LNK4") -#! Field("$(P)SGM$(N):gPut_1.LNK5",16777215,1,"$(P)SGM$(N):gPut_1.LNK5") -#! Link("$(P)SGM$(N):gPut_1.LNK5","$(P)SGM$(N):gPut_1/LNK5") -#! Field("$(P)SGM$(N):gPut_1.LNK6",16777215,1,"$(P)SGM$(N):gPut_1.LNK6") -#! Link("$(P)SGM$(N):gPut_1.LNK6","$(P)SGM$(N):gPut_1/LNK6") -#! Field("$(P)SGM$(N):gPut_1.FLNK",16777215,1,"$(P)SGM$(N):gPut_1.FLNK") -#! Link("$(P)SGM$(N):gPut_1.FLNK","$(P)SGM$(N):gPut_1/FLNK") -#! Connector("$(P)SGM$(N):gPut_1/LNK6","$(P)SGM$(N):sel_Whigh_2",3900,3571,16777215,"",0) -#! Connector("$(P)SGM$(N):gPut_1/LNK5","$(P)SGM$(N):sel_Whigh_1",3920,3380,16777215,"",0) -#! Connector("$(P)SGM$(N):gPut_1/LNK4","$(P)SGM$(N):sel_Wlow_2",3940,3231,16777215,"",0) -#! Connector("$(P)SGM$(N):gPut_1/LNK3","$(P)SGM$(N):sel_Wlow_1",3960,3030,16777215,"",0) -#! Connector("$(P)SGM$(N):gPut_1/LNK2","$(P)SGM$(N):sel_R_2",3980,2861,16777215,"",0) -#! Connector("$(P)SGM$(N):gPut_1/LNK1","$(P)SGM$(N):sel_R_1",4000,2680,16777215,"",0) -#! Connector("$(P)SGM$(N):gPut_1/FLNK","$(P)SGM$(N):gPut_2",3780,2703,16777215,"",0) -#! Record("$(P)SGM$(N):gPut_2",5080,2532,0,0,"$(P)SGM$(N):gPut_2") -#! Field("$(P)SGM$(N):gPut_2.LNK1",16777215,1,"$(P)SGM$(N):gPut_2.LNK1") -#! Link("$(P)SGM$(N):gPut_2.LNK1","$(P)SGM$(N):gPut_2/LNK1") -#! Field("$(P)SGM$(N):gPut_2.LNK2",16777215,1,"$(P)SGM$(N):gPut_2.LNK2") -#! Link("$(P)SGM$(N):gPut_2.LNK2","$(P)SGM$(N):gPut_2/LNK2") -#! Field("$(P)SGM$(N):gPut_2.LNK3",16777215,1,"$(P)SGM$(N):gPut_2.LNK3") -#! Link("$(P)SGM$(N):gPut_2.LNK3","$(P)SGM$(N):gPut_2/LNK3") -#! Field("$(P)SGM$(N):gPut_2.LNK4",16777215,1,"$(P)SGM$(N):gPut_2.LNK4") -#! Link("$(P)SGM$(N):gPut_2.LNK4","$(P)SGM$(N):gPut_2/LNK4") -#! Field("$(P)SGM$(N):gPut_2.FLNK",16777215,1,"$(P)SGM$(N):gPut_2.FLNK") -#! Link("$(P)SGM$(N):gPut_2.FLNK","$(P)SGM$(N):gPut_2/FLNK1") -#! Connector("$(P)SGM$(N):gPut_2/FLNK1","$(P)SGM$(N):gPut_2/FLNK",5780,1585,16777215,"",0) -#! Connector("$(P)SGM$(N):gPut_2/FLNK","$(P)SGM$(N):init",3287,420,16777215,"",0) -#! Connector("$(P)SGM$(N):gPut_2/LNK4","$(P)SGM$(N):sel_xOff_2",5320,3211,16777215,"",0) -#! Connector("$(P)SGM$(N):gPut_2/LNK3","$(P)SGM$(N):sel_xOff_1",5340,3000,16777215,"",0) -#! Connector("$(P)SGM$(N):gPut_2/LNK2","$(P)SGM$(N):sel_loc_2",5360,2861,16777215,"",0) -#! Connector("$(P)SGM$(N):gPut_2/LNK1","$(P)SGM$(N):sel_loc_1",5380,2670,16777215,"",0) -#! Record("$(P)SGM$(N):gratingPut",2800,2393,0,0,"$(P)SGM$(N):gratingPut") -#! Field("$(P)SGM$(N):gratingPut.SDIS",16777215,0,"$(P)SGM$(N):gratingPut.SDIS") -#! Link("$(P)SGM$(N):gratingPut.SDIS","$(P)SGM$(N):gratingPut/SDIS") -#! Field("$(P)SGM$(N):gratingPut.FLNK",16777215,1,"$(P)SGM$(N):gratingPut.FLNK") -#! Link("$(P)SGM$(N):gratingPut.FLNK","$(P)SGM$(N):gratingPut/FLNK") -#! Field("$(P)SGM$(N):gratingPut.LNK1",16777215,1,"$(P)SGM$(N):gratingPut.LNK1") -#! Link("$(P)SGM$(N):gratingPut.LNK1","$(P)SGM$(N):gratingPut/LNK1") -#! Field("$(P)SGM$(N):gratingPut.LNK2",16777215,1,"$(P)SGM$(N):gratingPut.LNK2") -#! Link("$(P)SGM$(N):gratingPut.LNK2","$(P)SGM$(N):gratingPut/LNK2") -#! Field("$(P)SGM$(N):gratingPut.LNK3",16777215,1,"$(P)SGM$(N):gratingPut.LNK3") -#! Link("$(P)SGM$(N):gratingPut.LNK3","$(P)SGM$(N):gratingPut/LNK3") -#! Field("$(P)SGM$(N):gratingPut.LNK4",16777215,1,"$(P)SGM$(N):gratingPut.LNK4") -#! Link("$(P)SGM$(N):gratingPut.LNK4","$(P)SGM$(N):gratingPut/LNK4") -#! Field("$(P)SGM$(N):gratingPut.LNK5",16777215,1,"$(P)SGM$(N):gratingPut.LNK5") -#! Link("$(P)SGM$(N):gratingPut.LNK5","$(P)SGM$(N):gratingPut/LNK5") -#! Field("$(P)SGM$(N):gratingPut.LNK6",16777215,1,"$(P)SGM$(N):gratingPut.LNK6") -#! Link("$(P)SGM$(N):gratingPut.LNK6","$(P)SGM$(N):gratingPut/LNK6") -#! Connector("$(P)SGM$(N):gratingPut/LNK6","$(P)SGM$(N):sel_den_2",3060,3531,16777215,"",0) -#! Connector("$(P)SGM$(N):gratingPut/LNK5","$(P)SGM$(N):sel_den_1",3080,3350,16777215,"",0) -#! Connector("$(P)SGM$(N):gratingPut/LNK4","$(P)SGM$(N):sel_m_2",3100,3224,16777215,"",0) -#! Connector("$(P)SGM$(N):gratingPut/LNK3","$(P)SGM$(N):sel_m_1",3120,3034,16777215,"",0) -#! Connector("$(P)SGM$(N):gratingPut/LNK2","$(P)SGM$(N):sel_desc_2",3140,2904,16777215,"",0) -#! Connector("$(P)SGM$(N):gratingPut/LNK1","$(P)SGM$(N):sel_desc_1",3160,2724,16777215,"",0) -#! Connector("$(P)SGM$(N):gratingPut/FLNK","$(P)SGM$(N):gPut_1",3180,2605,16777215,"",0) -#! Connector("$(P)SGM$(N):gratingPut/SDIS","$(P)SGM$(N):exists.VAL",2720,2540,16777215,"",0) -#! Record("$(P)SGM$(N):m",1200,552,0,0,"$(P)SGM$(N):m") -#! Field("$(P)SGM$(N):m.VAL",16777215,1,"$(P)SGM$(N):m.VAL") -#! Field("$(P)SGM$(N):m.OUT",16777215,1,"$(P)SGM$(N):m.OUT") -#! Link("$(P)SGM$(N):m.OUT","$(P)SGM$(N):m/OUT") -#! Connector("$(P)SGM$(N):m/OUT","$(P)SGM$(N):T1.A",1780,1170,16777215,"",0) -#! Record("$(P)SGM$(N):grating",4100,1363,0,0,"$(P)SGM$(N):grating") -#! Field("$(P)SGM$(N):grating.FLNK",16777215,1,"$(P)SGM$(N):grating.FLNK") -#! Link("$(P)SGM$(N):grating.FLNK","$(P)SGM$(N):saveAuto") -#! Field("$(P)SGM$(N):grating.VAL",16777215,1,"$(P)SGM$(N):grating.VAL") -#! Field("$(P)SGM$(N):grating.PROC",16777215,0,"$(P)SGM$(N):grating.PROC") -#! Record("$(P)SGM$(N):rTrack",3240,1618,0,0,"$(P)SGM$(N):rTrack") -#! Field("$(P)SGM$(N):rTrack.RVAL",16777215,1,"$(P)SGM$(N):rTrack.RVAL") -#! Field("$(P)SGM$(N):rTrack.VAL",16777215,1,"$(P)SGM$(N):rTrack.VAL") -#! Record("$(P)SGM$(N):init",600,122,0,1,"$(P)SGM$(N):init") -#! Field("$(P)SGM$(N):init.LNK1",16777215,1,"$(P)SGM$(N):init.LNK1") -#! Link("$(P)SGM$(N):init.LNK1","$(P)SGM$(N):init/LNK1") -#! Field("$(P)SGM$(N):init.LNK2",16777215,1,"$(P)SGM$(N):init.LNK2") -#! Link("$(P)SGM$(N):init.LNK2","$(P)SGM$(N):init/LNK2") -#! Field("$(P)SGM$(N):init.LNK3",16777215,1,"$(P)SGM$(N):init.LNK3") -#! Link("$(P)SGM$(N):init.LNK3","$(P)SGM$(N):init/LNK3") -#! Field("$(P)SGM$(N):init.LNK4",16777215,1,"$(P)SGM$(N):init.LNK4") -#! Link("$(P)SGM$(N):init.LNK4","$(P)SGM$(N):init/LNK4") -#! Field("$(P)SGM$(N):init.LNK5",16777215,1,"$(P)SGM$(N):init.LNK5") -#! Link("$(P)SGM$(N):init.LNK5","$(P)SGM$(N):init/LNK5") -#! Field("$(P)SGM$(N):init.LNK6",16777215,1,"$(P)SGM$(N):init.LNK6") -#! Link("$(P)SGM$(N):init.LNK6","$(P)SGM$(N):init/LNK6") -#! Field("$(P)SGM$(N):init.DOL1",16777215,1,"$(P)SGM$(N):init.DOL1") -#! Link("$(P)SGM$(N):init.DOL1","$(P)SGM$(N):init/DOL1") -#! Field("$(P)SGM$(N):init.PACT",16777215,1,"$(P)SGM$(N):init.PACT") -#! Field("$(P)SGM$(N):init.DOL3",16777215,1,"$(P)SGM$(N):init.DOL3") -#! Link("$(P)SGM$(N):init.DOL3","$(P)SGM$(N):init/DOL3") -#! Field("$(P)SGM$(N):init.DOL4",16777215,1,"$(P)SGM$(N):init.DOL4") -#! Link("$(P)SGM$(N):init.DOL4","$(P)SGM$(N):init/DOL4") -#! Field("$(P)SGM$(N):init.DOL5",16777215,1,"$(P)SGM$(N):init.DOL5") -#! Link("$(P)SGM$(N):init.DOL5","$(P)SGM$(N):R.VAL") -#! Field("$(P)SGM$(N):init.DOL6",16777215,1,"$(P)SGM$(N):init.DOL6") -#! Link("$(P)SGM$(N):init.DOL6","$(P)SGM$(N):init/DOL6") -#! Field("$(P)SGM$(N):init.FLNK",16777215,0,"$(P)SGM$(N):init.FLNK") -#! Link("$(P)SGM$(N):init.FLNK","$(P)SGM$(N):init/FLNK") -#! Connector("$(P)SGM$(N):init/LNK6","$(P)SGM$(N):T1.B",1760,1070,16777215,"",0) -#! Connector("$(P)SGM$(N):init/LNK5","$(P)SGM$(N):T2.B",2460,940,16777215,"",0) -#! Connector("$(P)SGM$(N):init/LNK4","$(P)SGM$(N):T1.D",1720,1070,16777215,"",0) -#! Connector("$(P)SGM$(N):init/LNK3","$(P)SGM$(N):T1.C",1740,1050,16777215,"",0) -#! Connector("$(P)SGM$(N):init/LNK2","$(P)SGM$(N):gDensity.PROC",1120,610,16777215,"",0) -#! Connector("$(P)SGM$(N):init/LNK1","$(P)SGM$(N):T1.A",1780,1010,16777215,"",0) -#! Connector("$(P)SGM$(N):init/FLNK","$(P)SGM$(N):init1",540,624,16777215,"",0) -#! Connector("$(P)SGM$(N):init/DOL6","$(P)SGM$(N):d.VAL",1060,870,16777215,"",0) -#! Connector("$(P)SGM$(N):init/DOL4","$(P)SGM$(N):2Theta.VAL",820,1070,16777215,"",0) -#! Connector("$(P)SGM$(N):init/DOL3","$(P)SGM$(N):len.VAL",1000,960,16777215,"",0) -#! Connector("$(P)SGM$(N):init/DOL1","$(P)SGM$(N):m.VAL",840,600,16777215,"",0) -#! Record("$(P)SGM$(N):init1",600,519,0,0,"$(P)SGM$(N):init1") -#! Field("$(P)SGM$(N):init1.LNK1",16777215,1,"$(P)SGM$(N):init1.LNK1") -#! Link("$(P)SGM$(N):init1.LNK1","$(P)SGM$(N):init1/LNK11") -#! Field("$(P)SGM$(N):init1.LNK2",16777215,1,"$(P)SGM$(N):init1.LNK2") -#! Connector("$(P)SGM$(N):init1/LNK11","$(P)SGM$(N):init1/LNK1",880,735,16777215,"",0) -#! Connector("$(P)SGM$(N):init1/LNK1","$(P)SGM$(N):T3.PROC",1675,740,16777215,"",0) -#! Field("$(P)SGM$(N):init1.DOL2",16777215,1,"$(P)SGM$(N):init1.DOL2") -#! Field("$(P)SGM$(N):init1.DOL3",16777215,1,"$(P)SGM$(N):init1.DOL3") -#! Field("$(P)SGM$(N):init1.LNK3",16777215,1,"$(P)SGM$(N):init1.LNK3") -#! Field("$(P)SGM$(N):init1.LNK4",16777215,1,"$(P)SGM$(N):init1.LNK4") -#! Link("$(P)SGM$(N):init1.LNK4","$(P)SGM$(N):sync.PROC") -#! Field("$(P)SGM$(N):init1.LNK5",16777215,1,"$(P)SGM$(N):init1.LNK5") -#! Link("$(P)SGM$(N):init1.LNK5","$(P)SGM$(N):restoreAuto.VAL") -#! Field("$(P)SGM$(N):init1.LNK6",16777215,1,"$(P)SGM$(N):init1.LNK6") -#! Link("$(P)SGM$(N):init1.LNK6","$(P)SGM$(N):grating.PROC") -#! Field("$(P)SGM$(N):init1.LNK7",16777215,1,"$(P)SGM$(N):init1.LNK7") -#! Link("$(P)SGM$(N):init1.LNK7","$(P)SGM$(N):rTrackInit.PROC") -#! Field("$(P)SGM$(N):init1.LNK8",16777215,0,"$(P)SGM$(N):init1.LNK8") -#! Link("$(P)SGM$(N):init1.LNK8","$(P)SGM$(N):delta.PROC") -#! Record("$(P)SGM$(N):move",3580,1513,0,0,"$(P)SGM$(N):move") -#! Field("$(P)SGM$(N):move.SDIS",16777215,0,"$(P)SGM$(N):move.SDIS") -#! Link("$(P)SGM$(N):move.SDIS","$(P)SGM$(N):move/SDIS") -#! Field("$(P)SGM$(N):move.SELL",16777215,0,"$(P)SGM$(N):move.SELL") -#! Link("$(P)SGM$(N):move.SELL","$(P)SGM$(N):rTrack.RVAL") -#! Field("$(P)SGM$(N):move.LNK1",16777215,1,"$(P)SGM$(N):move.LNK1") -#! Link("$(P)SGM$(N):move.LNK1","$(P)SGM$(N):moving.VAL") -#! Field("$(P)SGM$(N):move.DOL2",16777215,0,"$(P)SGM$(N):move.DOL2") -#! Link("$(P)SGM$(N):move.DOL2","$(P)SGM$(N):move/DOL2") -#! Field("$(P)SGM$(N):move.LNK2",16777215,1,"$(P)SGM$(N):move.LNK2") -#! Link("$(P)SGM$(N):move.LNK2","$(P)SGM$(N):move/LNK2") -#! Field("$(P)SGM$(N):move.DOL3",16777215,0,"$(P)SGM$(N):move.DOL3") -#! Link("$(P)SGM$(N):move.DOL3","$(P)SGM$(N):move/DOL3") -#! Field("$(P)SGM$(N):move.LNK3",16777215,1,"$(P)SGM$(N):move.LNK3") -#! Link("$(P)SGM$(N):move.LNK3","$(P)SGM$(N):move/LNK3") -#! Connector("$(P)SGM$(N):move/DOL3","$(P)SGM$(N):T2.I",3480,1630,16777215,"",0) -#! Connector("$(P)SGM$(N):move/DOL2","$(P)SGM$(N):T2.N",3500,1600,16777215,"",0) -#! Connector("$(P)SGM$(N):move/SDIS","$(P)SGM$(N):hold.VAL",3520,1310,16777215,"",0) -#! Connector("$(P)SGM$(N):move/LNK3",null,3820,1880,16777215,"",2) -#! Connector("$(P)SGM$(N):move/LNK2",null,3820,1840,16777215,"",2) -#! Record("$(P)SGM$(N):rTrackInit",2960,1640,0,0,"$(P)SGM$(N):rTrackInit") -#! Field("$(P)SGM$(N):rTrackInit.LNK1",16777215,1,"$(P)SGM$(N):rTrackInit.LNK1") -#! Link("$(P)SGM$(N):rTrackInit.LNK1","$(P)SGM$(N):rTrack.VAL") -#! Field("$(P)SGM$(N):rTrackInit.LNK2",16777215,1,"$(P)SGM$(N):rTrackInit.LNK2") -#! Link("$(P)SGM$(N):rTrackInit.LNK2","$(P)SGM$(N):rTrack.VAL") -#! Field("$(P)SGM$(N):rTrackInit.PROC",16777215,0,"$(P)SGM$(N):rTrackInit.PROC") -#! Record("$(P)SGM$(N):sel_R_1",4080,2542,0,0,"$(P)SGM$(N):sel_R_1") -#! Field("$(P)SGM$(N):sel_R_1.SDIS",16777215,1,"$(P)SGM$(N):sel_R_1.SDIS") -#! Link("$(P)SGM$(N):sel_R_1.SDIS","$(P)SGM$(N):sel_R_1/SDIS") -#! Field("$(P)SGM$(N):sel_R_1.SELL",16777215,1,"$(P)SGM$(N):sel_R_1.SELL") -#! Link("$(P)SGM$(N):sel_R_1.SELL","$(P)SGM$(N):sel_R_1/SELL") -#! Field("$(P)SGM$(N):sel_R_1.LNK1",16777215,0,"$(P)SGM$(N):sel_R_1.LNK1") -#! Link("$(P)SGM$(N):sel_R_1.LNK1","$(P)SGM$(N):sel_R_1/LNK11") -#! Field("$(P)SGM$(N):sel_R_1.LNK2",16777215,0,"$(P)SGM$(N):sel_R_1.LNK2") -#! Link("$(P)SGM$(N):sel_R_1.LNK2","$(P)SGM$(N):sel_R_1/LNK2") -#! Field("$(P)SGM$(N):sel_R_1.LNK3",16777215,0,"$(P)SGM$(N):sel_R_1.LNK3") -#! Link("$(P)SGM$(N):sel_R_1.LNK3","$(P)SGM$(N):sel_R_1/LNK31") -#! Field("$(P)SGM$(N):sel_R_1.LNK4",16777215,0,"$(P)SGM$(N):sel_R_1.LNK4") -#! Link("$(P)SGM$(N):sel_R_1.LNK4","$(P)SGM$(N):sel_R_1/LNK41") -#! Field("$(P)SGM$(N):sel_R_1.LNK5",16777215,0,"$(P)SGM$(N):sel_R_1.LNK5") -#! Link("$(P)SGM$(N):sel_R_1.LNK5","$(P)SGM$(N):sel_R_1/LNK51") -#! Field("$(P)SGM$(N):sel_R_1.LNK6",16777215,0,"$(P)SGM$(N):sel_R_1.LNK6") -#! Link("$(P)SGM$(N):sel_R_1.LNK6","$(P)SGM$(N):sel_R_1/LNK61") -#! Field("$(P)SGM$(N):sel_R_1.LNK7",16777215,0,"$(P)SGM$(N):sel_R_1.LNK7") -#! Link("$(P)SGM$(N):sel_R_1.LNK7","$(P)SGM$(N):sel_R_1/LNK71") -#! Field("$(P)SGM$(N):sel_R_1.LNK8",16777215,0,"$(P)SGM$(N):sel_R_1.LNK8") -#! Link("$(P)SGM$(N):sel_R_1.LNK8","$(P)SGM$(N):sel_R_1/LNK81") -#! Field("$(P)SGM$(N):sel_R_1.LNK9",16777215,0,"$(P)SGM$(N):sel_R_1.LNK9") -#! Link("$(P)SGM$(N):sel_R_1.LNK9","$(P)SGM$(N):sel_R_1/LNK91") -#! Field("$(P)SGM$(N):sel_R_1.LNKA",16777215,0,"$(P)SGM$(N):sel_R_1.LNKA") -#! Link("$(P)SGM$(N):sel_R_1.LNKA","$(P)SGM$(N):sel_R_1/LNKA1") -#! Connector("$(P)SGM$(N):sel_R_1/SELL","$(P)SGM$(N):selVal.VAL",4880,2560,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_1/SDIS","$(P)SGM$(N):selBank.VAL",4900,2460,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_1/LNKA1","$(P)SGM$(N):sel_R_1/LNKA",4000,2965,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_1/LNKA","$(P)SGM$(N):R.VAL",3225,2900,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_1/LNK91","$(P)SGM$(N):sel_R_1/LNK9",4000,2955,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_1/LNK9","$(P)SGM$(N):R.VAL",3225,2900,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_1/LNK81","$(P)SGM$(N):sel_R_1/LNK8",4000,2945,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_1/LNK8","$(P)SGM$(N):R.VAL",3225,2900,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_1/LNK71","$(P)SGM$(N):sel_R_1/LNK7",4000,2935,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_1/LNK7","$(P)SGM$(N):R.VAL",3225,2900,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_1/LNK61","$(P)SGM$(N):sel_R_1/LNK6",4000,2925,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_1/LNK6","$(P)SGM$(N):R.VAL",3225,2900,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_1/LNK51","$(P)SGM$(N):sel_R_1/LNK5",4000,2915,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_1/LNK5","$(P)SGM$(N):R.VAL",3225,2900,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_1/LNK41","$(P)SGM$(N):sel_R_1/LNK4",4000,2905,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_1/LNK4","$(P)SGM$(N):R.VAL",3225,2900,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_1/LNK31","$(P)SGM$(N):sel_R_1/LNK3",4000,2895,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_1/LNK3","$(P)SGM$(N):R.VAL",3225,2900,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_1/LNK2","$(P)SGM$(N):sel_R_1/LNK21",4000,2885,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_1/LNK21","$(P)SGM$(N):R.VAL",3225,2900,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_1/LNK11","$(P)SGM$(N):sel_R_1/LNK1",4000,2875,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_1/LNK1","$(P)SGM$(N):R.VAL",3225,2900,16777215,"",0) -#! Record("$(P)SGM$(N):sel_R_2",4080,2905,0,0,"$(P)SGM$(N):sel_R_2") -#! Field("$(P)SGM$(N):sel_R_2.SDIS",16777215,1,"$(P)SGM$(N):sel_R_2.SDIS") -#! Link("$(P)SGM$(N):sel_R_2.SDIS","$(P)SGM$(N):sel_R_2/SDIS") -#! Field("$(P)SGM$(N):sel_R_2.SELL",16777215,1,"$(P)SGM$(N):sel_R_2.SELL") -#! Link("$(P)SGM$(N):sel_R_2.SELL","$(P)SGM$(N):sel_R_2/SELL") -#! Field("$(P)SGM$(N):sel_R_2.LNK1",16777215,0,"$(P)SGM$(N):sel_R_2.LNK1") -#! Link("$(P)SGM$(N):sel_R_2.LNK1","$(P)SGM$(N):sel_R_2/LNK11") -#! Field("$(P)SGM$(N):sel_R_2.LNK2",16777215,0,"$(P)SGM$(N):sel_R_2.LNK2") -#! Link("$(P)SGM$(N):sel_R_2.LNK2","$(P)SGM$(N):sel_R_2/LNK21") -#! Field("$(P)SGM$(N):sel_R_2.LNK3",16777215,0,"$(P)SGM$(N):sel_R_2.LNK3") -#! Link("$(P)SGM$(N):sel_R_2.LNK3","$(P)SGM$(N):sel_R_2/LNK31") -#! Field("$(P)SGM$(N):sel_R_2.LNK4",16777215,0,"$(P)SGM$(N):sel_R_2.LNK4") -#! Link("$(P)SGM$(N):sel_R_2.LNK4","$(P)SGM$(N):sel_R_2/LNK41") -#! Field("$(P)SGM$(N):sel_R_2.LNK5",16777215,0,"$(P)SGM$(N):sel_R_2.LNK5") -#! Link("$(P)SGM$(N):sel_R_2.LNK5","$(P)SGM$(N):sel_R_2/LNK51") -#! Field("$(P)SGM$(N):sel_R_2.LNK6",16777215,0,"$(P)SGM$(N):sel_R_2.LNK6") -#! Link("$(P)SGM$(N):sel_R_2.LNK6","$(P)SGM$(N):sel_R_2/LNK61") -#! Connector("$(P)SGM$(N):sel_R_2/SELL","$(P)SGM$(N):selVal.VAL",4880,2720,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_2/SDIS","$(P)SGM$(N):selBank.VAL",4900,2620,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_2/LNK61","$(P)SGM$(N):sel_R_2/LNK6",4000,3085,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_2/LNK6","$(P)SGM$(N):R.VAL",3225,2900,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_2/LNK51","$(P)SGM$(N):sel_R_2/LNK5",4000,3075,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_2/LNK5","$(P)SGM$(N):R.VAL",3225,2900,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_2/LNK41","$(P)SGM$(N):sel_R_2/LNK4",4000,3065,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_2/LNK4","$(P)SGM$(N):R.VAL",3225,2900,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_2/LNK31","$(P)SGM$(N):sel_R_2/LNK3",4000,3055,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_2/LNK3","$(P)SGM$(N):R.VAL",3225,2900,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_2/LNK21","$(P)SGM$(N):sel_R_2/LNK2",4000,3045,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_2/LNK2","$(P)SGM$(N):R.VAL",3225,2900,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_2/LNK11","$(P)SGM$(N):sel_R_2/LNK1",4000,3035,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_R_2/LNK1","$(P)SGM$(N):R.VAL",3225,2900,16777215,"",0) -#! Record("$(P)SGM$(N):sel_Whigh_1",4100,3862,0,0,"$(P)SGM$(N):sel_Whigh_1") -#! Field("$(P)SGM$(N):sel_Whigh_1.SDIS",16777215,1,"$(P)SGM$(N):sel_Whigh_1.SDIS") -#! Link("$(P)SGM$(N):sel_Whigh_1.SDIS","$(P)SGM$(N):sel_Whigh_1/SDIS") -#! Field("$(P)SGM$(N):sel_Whigh_1.SELL",16777215,1,"$(P)SGM$(N):sel_Whigh_1.SELL") -#! Link("$(P)SGM$(N):sel_Whigh_1.SELL","$(P)SGM$(N):sel_Whigh_1/SELL") -#! Field("$(P)SGM$(N):sel_Whigh_1.LNK1",16777215,1,"$(P)SGM$(N):sel_Whigh_1.LNK1") -#! Link("$(P)SGM$(N):sel_Whigh_1.LNK1","$(P)SGM$(N):sel_Whigh_1/LNK1") -#! Field("$(P)SGM$(N):sel_Whigh_1.LNK2",16777215,1,"$(P)SGM$(N):sel_Whigh_1.LNK2") -#! Link("$(P)SGM$(N):sel_Whigh_1.LNK2","$(P)SGM$(N):sel_Whigh_1/LNK2") -#! Field("$(P)SGM$(N):sel_Whigh_1.LNK3",16777215,1,"$(P)SGM$(N):sel_Whigh_1.LNK3") -#! Link("$(P)SGM$(N):sel_Whigh_1.LNK3","$(P)SGM$(N):sel_Whigh_1/LNK3") -#! Field("$(P)SGM$(N):sel_Whigh_1.LNK4",16777215,1,"$(P)SGM$(N):sel_Whigh_1.LNK4") -#! Link("$(P)SGM$(N):sel_Whigh_1.LNK4","$(P)SGM$(N):sel_Whigh_1/LNK4") -#! Field("$(P)SGM$(N):sel_Whigh_1.LNK5",16777215,1,"$(P)SGM$(N):sel_Whigh_1.LNK5") -#! Link("$(P)SGM$(N):sel_Whigh_1.LNK5","$(P)SGM$(N):sel_Whigh_1/LNK5") -#! Field("$(P)SGM$(N):sel_Whigh_1.LNK6",16777215,1,"$(P)SGM$(N):sel_Whigh_1.LNK6") -#! Link("$(P)SGM$(N):sel_Whigh_1.LNK6","$(P)SGM$(N):sel_Whigh_1/LNK6") -#! Field("$(P)SGM$(N):sel_Whigh_1.LNK7",16777215,1,"$(P)SGM$(N):sel_Whigh_1.LNK7") -#! Link("$(P)SGM$(N):sel_Whigh_1.LNK7","$(P)SGM$(N):sel_Whigh_1/LNK7") -#! Field("$(P)SGM$(N):sel_Whigh_1.LNK8",16777215,1,"$(P)SGM$(N):sel_Whigh_1.LNK8") -#! Link("$(P)SGM$(N):sel_Whigh_1.LNK8","$(P)SGM$(N):sel_Whigh_1/LNK8") -#! Field("$(P)SGM$(N):sel_Whigh_1.LNK9",16777215,1,"$(P)SGM$(N):sel_Whigh_1.LNK9") -#! Link("$(P)SGM$(N):sel_Whigh_1.LNK9","$(P)SGM$(N):sel_Whigh_1/LNK9") -#! Field("$(P)SGM$(N):sel_Whigh_1.LNKA",16777215,1,"$(P)SGM$(N):sel_Whigh_1.LNKA") -#! Link("$(P)SGM$(N):sel_Whigh_1.LNKA","$(P)SGM$(N):sel_Whigh_1/LNKA") -#! Connector("$(P)SGM$(N):sel_Whigh_1/SDIS","$(P)SGM$(N):selBank.VAL",4900,3120,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Whigh_1/LNKA","$(P)SGM$(N):limits.A",4360,4470,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Whigh_1/LNK9","$(P)SGM$(N):limits.A",4360,4460,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Whigh_1/LNK8","$(P)SGM$(N):limits.A",4360,4450,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Whigh_1/LNK7","$(P)SGM$(N):limits.A",4360,4440,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Whigh_1/LNK6","$(P)SGM$(N):limits.A",4360,4430,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Whigh_1/LNK5","$(P)SGM$(N):limits.A",4360,4420,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Whigh_1/LNK4","$(P)SGM$(N):limits.A",4360,4410,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Whigh_1/LNK3","$(P)SGM$(N):limits.A",4360,4400,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Whigh_1/LNK2","$(P)SGM$(N):limits.A",4360,4390,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Whigh_1/LNK1","$(P)SGM$(N):limits.A",4360,4380,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Whigh_1/SELL","$(P)SGM$(N):selVal.VAL",4880,3220,16777215,"",0) -#! Record("$(P)SGM$(N):sel_Whigh_2",4100,4245,0,0,"$(P)SGM$(N):sel_Whigh_2") -#! Field("$(P)SGM$(N):sel_Whigh_2.SDIS",16777215,1,"$(P)SGM$(N):sel_Whigh_2.SDIS") -#! Link("$(P)SGM$(N):sel_Whigh_2.SDIS","$(P)SGM$(N):sel_Whigh_2/SDIS") -#! Field("$(P)SGM$(N):sel_Whigh_2.SELL",16777215,1,"$(P)SGM$(N):sel_Whigh_2.SELL") -#! Link("$(P)SGM$(N):sel_Whigh_2.SELL","$(P)SGM$(N):sel_Whigh_2/SELL") -#! Field("$(P)SGM$(N):sel_Whigh_2.LNK1",16777215,1,"$(P)SGM$(N):sel_Whigh_2.LNK1") -#! Link("$(P)SGM$(N):sel_Whigh_2.LNK1","$(P)SGM$(N):sel_Whigh_2/LNK1") -#! Field("$(P)SGM$(N):sel_Whigh_2.LNK2",16777215,1,"$(P)SGM$(N):sel_Whigh_2.LNK2") -#! Link("$(P)SGM$(N):sel_Whigh_2.LNK2","$(P)SGM$(N):sel_Whigh_2/LNK2") -#! Field("$(P)SGM$(N):sel_Whigh_2.LNK3",16777215,1,"$(P)SGM$(N):sel_Whigh_2.LNK3") -#! Link("$(P)SGM$(N):sel_Whigh_2.LNK3","$(P)SGM$(N):sel_Whigh_2/LNK3") -#! Field("$(P)SGM$(N):sel_Whigh_2.LNK4",16777215,1,"$(P)SGM$(N):sel_Whigh_2.LNK4") -#! Link("$(P)SGM$(N):sel_Whigh_2.LNK4","$(P)SGM$(N):sel_Whigh_2/LNK4") -#! Field("$(P)SGM$(N):sel_Whigh_2.LNK5",16777215,1,"$(P)SGM$(N):sel_Whigh_2.LNK5") -#! Link("$(P)SGM$(N):sel_Whigh_2.LNK5","$(P)SGM$(N):sel_Whigh_2/LNK5") -#! Field("$(P)SGM$(N):sel_Whigh_2.LNK6",16777215,1,"$(P)SGM$(N):sel_Whigh_2.LNK6") -#! Link("$(P)SGM$(N):sel_Whigh_2.LNK6","$(P)SGM$(N):sel_Whigh_2/LNK6") -#! Connector("$(P)SGM$(N):sel_Whigh_2/LNK6","$(P)SGM$(N):limits.A",4360,4600,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Whigh_2/LNK5","$(P)SGM$(N):limits.A",4360,4590,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Whigh_2/LNK4","$(P)SGM$(N):limits.A",4360,4580,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Whigh_2/LNK3","$(P)SGM$(N):limits.A",4360,4570,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Whigh_2/LNK2","$(P)SGM$(N):limits.A",4360,4560,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Whigh_2/LNK1","$(P)SGM$(N):limits.A",4360,4550,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Whigh_2/SELL","$(P)SGM$(N):selVal.VAL",4880,3390,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Whigh_2/SDIS","$(P)SGM$(N):selBank.VAL",4900,3290,16777215,"",0) -#! Record("$(P)SGM$(N):sel_Wlow_1",4060,3202,0,0,"$(P)SGM$(N):sel_Wlow_1") -#! Field("$(P)SGM$(N):sel_Wlow_1.SDIS",16777215,1,"$(P)SGM$(N):sel_Wlow_1.SDIS") -#! Link("$(P)SGM$(N):sel_Wlow_1.SDIS","$(P)SGM$(N):sel_Wlow_1/SDIS") -#! Field("$(P)SGM$(N):sel_Wlow_1.SELL",16777215,1,"$(P)SGM$(N):sel_Wlow_1.SELL") -#! Link("$(P)SGM$(N):sel_Wlow_1.SELL","$(P)SGM$(N):sel_Wlow_1/SELL") -#! Field("$(P)SGM$(N):sel_Wlow_1.LNK1",16777215,1,"$(P)SGM$(N):sel_Wlow_1.LNK1") -#! Link("$(P)SGM$(N):sel_Wlow_1.LNK1","$(P)SGM$(N):sel_Wlow_1/LNK1") -#! Field("$(P)SGM$(N):sel_Wlow_1.LNK2",16777215,1,"$(P)SGM$(N):sel_Wlow_1.LNK2") -#! Link("$(P)SGM$(N):sel_Wlow_1.LNK2","$(P)SGM$(N):sel_Wlow_1/LNK2") -#! Field("$(P)SGM$(N):sel_Wlow_1.LNK3",16777215,1,"$(P)SGM$(N):sel_Wlow_1.LNK3") -#! Link("$(P)SGM$(N):sel_Wlow_1.LNK3","$(P)SGM$(N):sel_Wlow_1/LNK3") -#! Field("$(P)SGM$(N):sel_Wlow_1.LNK4",16777215,1,"$(P)SGM$(N):sel_Wlow_1.LNK4") -#! Link("$(P)SGM$(N):sel_Wlow_1.LNK4","$(P)SGM$(N):sel_Wlow_1/LNK4") -#! Field("$(P)SGM$(N):sel_Wlow_1.LNK5",16777215,1,"$(P)SGM$(N):sel_Wlow_1.LNK5") -#! Link("$(P)SGM$(N):sel_Wlow_1.LNK5","$(P)SGM$(N):sel_Wlow_1/LNK5") -#! Field("$(P)SGM$(N):sel_Wlow_1.LNK6",16777215,1,"$(P)SGM$(N):sel_Wlow_1.LNK6") -#! Link("$(P)SGM$(N):sel_Wlow_1.LNK6","$(P)SGM$(N):sel_Wlow_1/LNK6") -#! Field("$(P)SGM$(N):sel_Wlow_1.LNK7",16777215,1,"$(P)SGM$(N):sel_Wlow_1.LNK7") -#! Link("$(P)SGM$(N):sel_Wlow_1.LNK7","$(P)SGM$(N):sel_Wlow_1/LNK7") -#! Field("$(P)SGM$(N):sel_Wlow_1.LNK8",16777215,1,"$(P)SGM$(N):sel_Wlow_1.LNK8") -#! Link("$(P)SGM$(N):sel_Wlow_1.LNK8","$(P)SGM$(N):sel_Wlow_1/LNK8") -#! Field("$(P)SGM$(N):sel_Wlow_1.LNK9",16777215,1,"$(P)SGM$(N):sel_Wlow_1.LNK9") -#! Link("$(P)SGM$(N):sel_Wlow_1.LNK9","$(P)SGM$(N):sel_Wlow_1/LNK9") -#! Field("$(P)SGM$(N):sel_Wlow_1.LNKA",16777215,1,"$(P)SGM$(N):sel_Wlow_1.LNKA") -#! Link("$(P)SGM$(N):sel_Wlow_1.LNKA","$(P)SGM$(N):sel_Wlow_1/LNKA") -#! Connector("$(P)SGM$(N):sel_Wlow_1/LNKA","$(P)SGM$(N):limits.B",4400,4150,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Wlow_1/LNK9","$(P)SGM$(N):limits.B",4400,4140,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Wlow_1/LNK8","$(P)SGM$(N):limits.B",4400,4130,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Wlow_1/LNK7","$(P)SGM$(N):limits.B",4400,4120,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Wlow_1/LNK6","$(P)SGM$(N):limits.B",4400,4110,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Wlow_1/LNK5","$(P)SGM$(N):limits.B",4400,4100,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Wlow_1/LNK4","$(P)SGM$(N):limits.B",4400,4090,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Wlow_1/LNK3","$(P)SGM$(N):limits.B",4400,4080,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Wlow_1/LNK2","$(P)SGM$(N):limits.B",4400,4070,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Wlow_1/LNK1","$(P)SGM$(N):limits.B",4400,4060,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Wlow_1/SELL","$(P)SGM$(N):selVal.VAL",4880,2890,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Wlow_1/SDIS","$(P)SGM$(N):selBank.VAL",4900,2790,16777215,"",0) -#! Record("$(P)SGM$(N):sel_Wlow_2",4080,3605,0,0,"$(P)SGM$(N):sel_Wlow_2") -#! Field("$(P)SGM$(N):sel_Wlow_2.SDIS",16777215,1,"$(P)SGM$(N):sel_Wlow_2.SDIS") -#! Link("$(P)SGM$(N):sel_Wlow_2.SDIS","$(P)SGM$(N):sel_Wlow_2/SDIS") -#! Field("$(P)SGM$(N):sel_Wlow_2.SELL",16777215,1,"$(P)SGM$(N):sel_Wlow_2.SELL") -#! Link("$(P)SGM$(N):sel_Wlow_2.SELL","$(P)SGM$(N):sel_Wlow_2/SELL") -#! Field("$(P)SGM$(N):sel_Wlow_2.LNK1",16777215,1,"$(P)SGM$(N):sel_Wlow_2.LNK1") -#! Link("$(P)SGM$(N):sel_Wlow_2.LNK1","$(P)SGM$(N):sel_Wlow_2/LNK1") -#! Field("$(P)SGM$(N):sel_Wlow_2.LNK2",16777215,1,"$(P)SGM$(N):sel_Wlow_2.LNK2") -#! Link("$(P)SGM$(N):sel_Wlow_2.LNK2","$(P)SGM$(N):sel_Wlow_2/LNK2") -#! Field("$(P)SGM$(N):sel_Wlow_2.LNK3",16777215,1,"$(P)SGM$(N):sel_Wlow_2.LNK3") -#! Link("$(P)SGM$(N):sel_Wlow_2.LNK3","$(P)SGM$(N):sel_Wlow_2/LNK3") -#! Field("$(P)SGM$(N):sel_Wlow_2.LNK4",16777215,1,"$(P)SGM$(N):sel_Wlow_2.LNK4") -#! Link("$(P)SGM$(N):sel_Wlow_2.LNK4","$(P)SGM$(N):sel_Wlow_2/LNK4") -#! Field("$(P)SGM$(N):sel_Wlow_2.LNK5",16777215,1,"$(P)SGM$(N):sel_Wlow_2.LNK5") -#! Link("$(P)SGM$(N):sel_Wlow_2.LNK5","$(P)SGM$(N):sel_Wlow_2/LNK5") -#! Field("$(P)SGM$(N):sel_Wlow_2.LNK6",16777215,1,"$(P)SGM$(N):sel_Wlow_2.LNK6") -#! Link("$(P)SGM$(N):sel_Wlow_2.LNK6","$(P)SGM$(N):sel_Wlow_2/LNK6") -#! Connector("$(P)SGM$(N):sel_Wlow_2/SELL","$(P)SGM$(N):selVal.VAL",4880,3070,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Wlow_2/SDIS","$(P)SGM$(N):selBank.VAL",4900,2970,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Wlow_2/LNK6","$(P)SGM$(N):limits.B",4400,4290,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Wlow_2/LNK5","$(P)SGM$(N):limits.B",4400,4280,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Wlow_2/LNK4","$(P)SGM$(N):limits.B",4400,4270,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Wlow_2/LNK3","$(P)SGM$(N):limits.B",4400,4260,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Wlow_2/LNK2","$(P)SGM$(N):limits.B",4400,4250,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_Wlow_2/LNK1","$(P)SGM$(N):limits.B",4400,4240,16777215,"",0) -#! Record("$(P)SGM$(N):sel_den_1",3340,3862,0,0,"$(P)SGM$(N):sel_den_1") -#! Field("$(P)SGM$(N):sel_den_1.SDIS",16777215,0,"$(P)SGM$(N):sel_den_1.SDIS") -#! Link("$(P)SGM$(N):sel_den_1.SDIS","$(P)SGM$(N):sel_den_1/SDIS") -#! Field("$(P)SGM$(N):sel_den_1.SELL",16777215,0,"$(P)SGM$(N):sel_den_1.SELL") -#! Link("$(P)SGM$(N):sel_den_1.SELL","$(P)SGM$(N):sel_den_1/SELL") -#! Field("$(P)SGM$(N):sel_den_1.LNK1",16777215,0,"$(P)SGM$(N):sel_den_1.LNK1") -#! Link("$(P)SGM$(N):sel_den_1.LNK1","$(P)SGM$(N):sel_den_1/LNK12") -#! Field("$(P)SGM$(N):sel_den_1.LNK2",16777215,0,"$(P)SGM$(N):sel_den_1.LNK2") -#! Link("$(P)SGM$(N):sel_den_1.LNK2","$(P)SGM$(N):sel_den_1/LNK22") -#! Field("$(P)SGM$(N):sel_den_1.LNK3",16777215,0,"$(P)SGM$(N):sel_den_1.LNK3") -#! Link("$(P)SGM$(N):sel_den_1.LNK3","$(P)SGM$(N):sel_den_1/LNK32") -#! Field("$(P)SGM$(N):sel_den_1.LNK4",16777215,0,"$(P)SGM$(N):sel_den_1.LNK4") -#! Link("$(P)SGM$(N):sel_den_1.LNK4","$(P)SGM$(N):sel_den_1/LNK42") -#! Field("$(P)SGM$(N):sel_den_1.LNK5",16777215,0,"$(P)SGM$(N):sel_den_1.LNK5") -#! Link("$(P)SGM$(N):sel_den_1.LNK5","$(P)SGM$(N):sel_den_1/LNK52") -#! Field("$(P)SGM$(N):sel_den_1.LNK6",16777215,0,"$(P)SGM$(N):sel_den_1.LNK6") -#! Link("$(P)SGM$(N):sel_den_1.LNK6","$(P)SGM$(N):sel_den_1/LNK62") -#! Field("$(P)SGM$(N):sel_den_1.LNK7",16777215,0,"$(P)SGM$(N):sel_den_1.LNK7") -#! Link("$(P)SGM$(N):sel_den_1.LNK7","$(P)SGM$(N):sel_den_1/LNK72") -#! Field("$(P)SGM$(N):sel_den_1.LNK8",16777215,0,"$(P)SGM$(N):sel_den_1.LNK8") -#! Link("$(P)SGM$(N):sel_den_1.LNK8","$(P)SGM$(N):sel_den_1/LNK82") -#! Field("$(P)SGM$(N):sel_den_1.LNK9",16777215,0,"$(P)SGM$(N):sel_den_1.LNK9") -#! Link("$(P)SGM$(N):sel_den_1.LNK9","$(P)SGM$(N):sel_den_1/LNK92") -#! Field("$(P)SGM$(N):sel_den_1.LNKA",16777215,0,"$(P)SGM$(N):sel_den_1.LNKA") -#! Link("$(P)SGM$(N):sel_den_1.LNKA","$(P)SGM$(N):sel_den_1/LNKA2") -#! Connector("$(P)SGM$(N):sel_den_1/LNKA2","$(P)SGM$(N):sel_den_1/LNKA1",3280,4455,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/LNKA1","$(P)SGM$(N):sel_den_1/LNKA",2440,4560,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/LNKA","$(P)SGM$(N):gDensity.VAL",1600,2695,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/LNK92","$(P)SGM$(N):sel_den_1/LNK91",3280,4445,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/LNK91","$(P)SGM$(N):sel_den_1/LNK9",2440,4560,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/LNK9","$(P)SGM$(N):gDensity.VAL",1600,2695,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/LNK82","$(P)SGM$(N):sel_den_1/LNK81",3280,4435,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/LNK81","$(P)SGM$(N):sel_den_1/LNK8",2440,4560,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/LNK8","$(P)SGM$(N):gDensity.VAL",1600,2695,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/LNK72","$(P)SGM$(N):sel_den_1/LNK71",3280,4425,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/LNK71","$(P)SGM$(N):sel_den_1/LNK7",2440,4560,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/LNK7","$(P)SGM$(N):gDensity.VAL",1600,2695,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/LNK62","$(P)SGM$(N):sel_den_1/LNK61",3280,4415,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/LNK61","$(P)SGM$(N):sel_den_1/LNK6",2440,4560,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/LNK6","$(P)SGM$(N):gDensity.VAL",1600,2695,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/LNK52","$(P)SGM$(N):sel_den_1/LNK51",3280,4405,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/LNK51","$(P)SGM$(N):sel_den_1/LNK5",2440,4560,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/LNK5","$(P)SGM$(N):gDensity.VAL",1600,2695,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/LNK42","$(P)SGM$(N):sel_den_1/LNK41",3280,4395,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/LNK41","$(P)SGM$(N):sel_den_1/LNK4",2440,4560,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/LNK4","$(P)SGM$(N):gDensity.VAL",1600,2695,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/LNK32","$(P)SGM$(N):sel_den_1/LNK31",3280,4385,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/LNK31","$(P)SGM$(N):sel_den_1/LNK3",2440,4560,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/LNK3","$(P)SGM$(N):gDensity.VAL",1600,2695,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/LNK22","$(P)SGM$(N):sel_den_1/LNK21",3280,4375,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/LNK21","$(P)SGM$(N):sel_den_1/LNK2",2440,4560,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/LNK2","$(P)SGM$(N):gDensity.VAL",1600,2695,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/LNK12","$(P)SGM$(N):sel_den_1/LNK11",3280,4365,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/LNK11","$(P)SGM$(N):sel_den_1/LNK1",2440,4560,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/LNK1","$(P)SGM$(N):gDensity.VAL",1600,2695,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/SELL","$(P)SGM$(N):selVal.VAL",3240,3220,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_1/SDIS","$(P)SGM$(N):selBank.VAL",3220,3120,16777215,"",0) -#! Record("$(P)SGM$(N):sel_den_2",3340,4225,0,0,"$(P)SGM$(N):sel_den_2") -#! Field("$(P)SGM$(N):sel_den_2.SDIS",16777215,0,"$(P)SGM$(N):sel_den_2.SDIS") -#! Link("$(P)SGM$(N):sel_den_2.SDIS","$(P)SGM$(N):sel_den_2/SDIS") -#! Field("$(P)SGM$(N):sel_den_2.SELL",16777215,0,"$(P)SGM$(N):sel_den_2.SELL") -#! Link("$(P)SGM$(N):sel_den_2.SELL","$(P)SGM$(N):sel_den_2/SELL") -#! Field("$(P)SGM$(N):sel_den_2.LNK1",16777215,0,"$(P)SGM$(N):sel_den_2.LNK1") -#! Link("$(P)SGM$(N):sel_den_2.LNK1","$(P)SGM$(N):sel_den_2/LNK12") -#! Field("$(P)SGM$(N):sel_den_2.LNK2",16777215,0,"$(P)SGM$(N):sel_den_2.LNK2") -#! Link("$(P)SGM$(N):sel_den_2.LNK2","$(P)SGM$(N):sel_den_2/LNK22") -#! Field("$(P)SGM$(N):sel_den_2.LNK3",16777215,0,"$(P)SGM$(N):sel_den_2.LNK3") -#! Link("$(P)SGM$(N):sel_den_2.LNK3","$(P)SGM$(N):sel_den_2/LNK32") -#! Field("$(P)SGM$(N):sel_den_2.LNK4",16777215,0,"$(P)SGM$(N):sel_den_2.LNK4") -#! Link("$(P)SGM$(N):sel_den_2.LNK4","$(P)SGM$(N):sel_den_2/LNK42") -#! Field("$(P)SGM$(N):sel_den_2.LNK5",16777215,0,"$(P)SGM$(N):sel_den_2.LNK5") -#! Link("$(P)SGM$(N):sel_den_2.LNK5","$(P)SGM$(N):sel_den_2/LNK52") -#! Field("$(P)SGM$(N):sel_den_2.LNK6",16777215,0,"$(P)SGM$(N):sel_den_2.LNK6") -#! Link("$(P)SGM$(N):sel_den_2.LNK6","$(P)SGM$(N):sel_den_2/LNK62") -#! Connector("$(P)SGM$(N):sel_den_2/LNK42","$(P)SGM$(N):sel_den_2/LNK41",3280,4555,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_2/LNK41","$(P)SGM$(N):sel_den_2/LNK4",2440,4560,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_2/LNK4","$(P)SGM$(N):gDensity.VAL",1600,2695,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_2/LNK32","$(P)SGM$(N):sel_den_2/LNK31",3280,4545,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_2/LNK31","$(P)SGM$(N):sel_den_2/LNK3",2440,4560,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_2/LNK3","$(P)SGM$(N):gDensity.VAL",1600,2695,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_2/LNK22","$(P)SGM$(N):sel_den_2/LNK21",3280,4535,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_2/LNK21","$(P)SGM$(N):sel_den_2/LNK2",2440,4560,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_2/LNK2","$(P)SGM$(N):gDensity.VAL",1600,2695,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_2/LNK12","$(P)SGM$(N):sel_den_2/LNK11",3280,4525,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_2/LNK11","$(P)SGM$(N):sel_den_2/LNK1",2440,4560,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_2/LNK1","$(P)SGM$(N):gDensity.VAL",1600,2695,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_2/SELL","$(P)SGM$(N):selVal.VAL",3240,3380,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_2/SDIS","$(P)SGM$(N):selBank.VAL",3220,3280,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_2/LNK62","$(P)SGM$(N):sel_den_2/LNK61",3280,4575,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_2/LNK61","$(P)SGM$(N):sel_den_2/LNK6",2440,4560,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_2/LNK6","$(P)SGM$(N):gDensity.VAL",1600,2695,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_2/LNK52","$(P)SGM$(N):sel_den_2/LNK51",3280,4565,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_2/LNK51","$(P)SGM$(N):sel_den_2/LNK5",2440,4560,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_den_2/LNK5","$(P)SGM$(N):gDensity.VAL",1600,2695,16777215,"",0) -#! Record("$(P)SGM$(N):sel_exists_1",5360,1816,0,0,"$(P)SGM$(N):sel_exists_1") -#! Field("$(P)SGM$(N):sel_exists_1.SDIS",16777215,0,"$(P)SGM$(N):sel_exists_1.SDIS") -#! Link("$(P)SGM$(N):sel_exists_1.SDIS","$(P)SGM$(N):sel_exists_1/SDIS") -#! Field("$(P)SGM$(N):sel_exists_1.SELL",16777215,0,"$(P)SGM$(N):sel_exists_1.SELL") -#! Link("$(P)SGM$(N):sel_exists_1.SELL","$(P)SGM$(N):sel_exists_1/SELL") -#! Field("$(P)SGM$(N):sel_exists_1.LNK1",16777215,0,"$(P)SGM$(N):sel_exists_1.LNK1") -#! Link("$(P)SGM$(N):sel_exists_1.LNK1","$(P)SGM$(N):sel_exists_1/LNK1") -#! Field("$(P)SGM$(N):sel_exists_1.LNK2",16777215,0,"$(P)SGM$(N):sel_exists_1.LNK2") -#! Link("$(P)SGM$(N):sel_exists_1.LNK2","$(P)SGM$(N):sel_exists_1/LNK21") -#! Field("$(P)SGM$(N):sel_exists_1.LNK3",16777215,0,"$(P)SGM$(N):sel_exists_1.LNK3") -#! Link("$(P)SGM$(N):sel_exists_1.LNK3","$(P)SGM$(N):sel_exists_1/LNK3") -#! Field("$(P)SGM$(N):sel_exists_1.LNK4",16777215,0,"$(P)SGM$(N):sel_exists_1.LNK4") -#! Link("$(P)SGM$(N):sel_exists_1.LNK4","$(P)SGM$(N):sel_exists_1/LNK4") -#! Field("$(P)SGM$(N):sel_exists_1.LNK5",16777215,0,"$(P)SGM$(N):sel_exists_1.LNK5") -#! Link("$(P)SGM$(N):sel_exists_1.LNK5","$(P)SGM$(N):sel_exists_1/LNK5") -#! Field("$(P)SGM$(N):sel_exists_1.LNK6",16777215,0,"$(P)SGM$(N):sel_exists_1.LNK6") -#! Link("$(P)SGM$(N):sel_exists_1.LNK6","$(P)SGM$(N):sel_exists_1/LNK6") -#! Field("$(P)SGM$(N):sel_exists_1.LNK7",16777215,0,"$(P)SGM$(N):sel_exists_1.LNK7") -#! Link("$(P)SGM$(N):sel_exists_1.LNK7","$(P)SGM$(N):sel_exists_1/LNK7") -#! Field("$(P)SGM$(N):sel_exists_1.LNK8",16777215,0,"$(P)SGM$(N):sel_exists_1.LNK8") -#! Link("$(P)SGM$(N):sel_exists_1.LNK8","$(P)SGM$(N):sel_exists_1/LNK8") -#! Field("$(P)SGM$(N):sel_exists_1.LNK9",16777215,0,"$(P)SGM$(N):sel_exists_1.LNK9") -#! Link("$(P)SGM$(N):sel_exists_1.LNK9","$(P)SGM$(N):sel_exists_1/LNK9") -#! Field("$(P)SGM$(N):sel_exists_1.LNKA",16777215,0,"$(P)SGM$(N):sel_exists_1.LNKA") -#! Link("$(P)SGM$(N):sel_exists_1.LNKA","$(P)SGM$(N):sel_exists_1/LNKA") -#! Connector("$(P)SGM$(N):sel_exists_1/LNKA","$(P)SGM$(N):exists.VAL",5280,2390,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_exists_1/LNK9","$(P)SGM$(N):exists.VAL",5280,2380,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_exists_1/LNK8","$(P)SGM$(N):exists.VAL",5280,2370,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_exists_1/LNK7","$(P)SGM$(N):exists.VAL",5280,2360,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_exists_1/LNK6","$(P)SGM$(N):exists.VAL",5280,2350,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_exists_1/LNK5","$(P)SGM$(N):exists.VAL",5280,2340,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_exists_1/LNK4","$(P)SGM$(N):exists.VAL",5280,2330,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_exists_1/LNK3","$(P)SGM$(N):exists.VAL",5280,2320,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_exists_1/LNK21","$(P)SGM$(N):exists.VAL",5280,2310,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_exists_1/LNK1","$(P)SGM$(N):exists.VAL",5280,2300,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_exists_1/SELL","$(P)SGM$(N):selVal.VAL",4880,2190,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_exists_1/SDIS","$(P)SGM$(N):selBank.VAL",4900,2090,16777215,"",0) -#! Record("$(P)SGM$(N):sel_exists_2",5360,2179,0,0,"$(P)SGM$(N):sel_exists_2") -#! Field("$(P)SGM$(N):sel_exists_2.SDIS",16777215,0,"$(P)SGM$(N):sel_exists_2.SDIS") -#! Link("$(P)SGM$(N):sel_exists_2.SDIS","$(P)SGM$(N):sel_exists_2/SDIS") -#! Field("$(P)SGM$(N):sel_exists_2.SELL",16777215,0,"$(P)SGM$(N):sel_exists_2.SELL") -#! Link("$(P)SGM$(N):sel_exists_2.SELL","$(P)SGM$(N):sel_exists_2/SELL") -#! Field("$(P)SGM$(N):sel_exists_2.LNK1",16777215,0,"$(P)SGM$(N):sel_exists_2.LNK1") -#! Link("$(P)SGM$(N):sel_exists_2.LNK1","$(P)SGM$(N):sel_exists_2/LNK1") -#! Field("$(P)SGM$(N):sel_exists_2.LNK2",16777215,0,"$(P)SGM$(N):sel_exists_2.LNK2") -#! Link("$(P)SGM$(N):sel_exists_2.LNK2","$(P)SGM$(N):sel_exists_2/LNK2") -#! Field("$(P)SGM$(N):sel_exists_2.LNK3",16777215,0,"$(P)SGM$(N):sel_exists_2.LNK3") -#! Link("$(P)SGM$(N):sel_exists_2.LNK3","$(P)SGM$(N):sel_exists_2/LNK3") -#! Field("$(P)SGM$(N):sel_exists_2.LNK4",16777215,0,"$(P)SGM$(N):sel_exists_2.LNK4") -#! Link("$(P)SGM$(N):sel_exists_2.LNK4","$(P)SGM$(N):sel_exists_2/LNK4") -#! Field("$(P)SGM$(N):sel_exists_2.LNK5",16777215,0,"$(P)SGM$(N):sel_exists_2.LNK5") -#! Link("$(P)SGM$(N):sel_exists_2.LNK5","$(P)SGM$(N):sel_exists_2/LNK5") -#! Field("$(P)SGM$(N):sel_exists_2.LNK6",16777215,0,"$(P)SGM$(N):sel_exists_2.LNK6") -#! Link("$(P)SGM$(N):sel_exists_2.LNK6","$(P)SGM$(N):sel_exists_2/LNK6") -#! Connector("$(P)SGM$(N):sel_exists_2/LNK6","$(P)SGM$(N):exists.VAL",5280,2510,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_exists_2/LNK5","$(P)SGM$(N):exists.VAL",5280,2500,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_exists_2/LNK4","$(P)SGM$(N):exists.VAL",5280,2490,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_exists_2/LNK3","$(P)SGM$(N):exists.VAL",5280,2480,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_exists_2/LNK2","$(P)SGM$(N):exists.VAL",5280,2470,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_exists_2/LNK1","$(P)SGM$(N):exists.VAL",5280,2460,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_exists_2/SELL","$(P)SGM$(N):selVal.VAL",4880,2350,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_exists_2/SDIS","$(P)SGM$(N):selBank.VAL",4900,2250,16777215,"",0) -#! Record("$(P)SGM$(N):sel_loc_1",5500,2542,0,0,"$(P)SGM$(N):sel_loc_1") -#! Field("$(P)SGM$(N):sel_loc_1.SDIS",16777215,0,"$(P)SGM$(N):sel_loc_1.SDIS") -#! Link("$(P)SGM$(N):sel_loc_1.SDIS","$(P)SGM$(N):sel_loc_1/SDIS") -#! Field("$(P)SGM$(N):sel_loc_1.SELL",16777215,0,"$(P)SGM$(N):sel_loc_1.SELL") -#! Link("$(P)SGM$(N):sel_loc_1.SELL","$(P)SGM$(N):sel_loc_1/SELL") -#! Field("$(P)SGM$(N):sel_loc_1.LNK1",16777215,1,"$(P)SGM$(N):sel_loc_1.LNK1") -#! Link("$(P)SGM$(N):sel_loc_1.LNK1","$(P)SGM$(N):GrMotorVal.VAL") -#! Field("$(P)SGM$(N):sel_loc_1.LNK2",16777215,1,"$(P)SGM$(N):sel_loc_1.LNK2") -#! Link("$(P)SGM$(N):sel_loc_1.LNK2","$(P)SGM$(N):GrMotorVal.VAL") -#! Field("$(P)SGM$(N):sel_loc_1.LNK3",16777215,1,"$(P)SGM$(N):sel_loc_1.LNK3") -#! Link("$(P)SGM$(N):sel_loc_1.LNK3","$(P)SGM$(N):GrMotorVal.VAL") -#! Field("$(P)SGM$(N):sel_loc_1.LNK4",16777215,1,"$(P)SGM$(N):sel_loc_1.LNK4") -#! Link("$(P)SGM$(N):sel_loc_1.LNK4","$(P)SGM$(N):GrMotorVal.VAL") -#! Field("$(P)SGM$(N):sel_loc_1.LNK5",16777215,1,"$(P)SGM$(N):sel_loc_1.LNK5") -#! Link("$(P)SGM$(N):sel_loc_1.LNK5","$(P)SGM$(N):GrMotorVal.VAL") -#! Field("$(P)SGM$(N):sel_loc_1.LNK6",16777215,1,"$(P)SGM$(N):sel_loc_1.LNK6") -#! Link("$(P)SGM$(N):sel_loc_1.LNK6","$(P)SGM$(N):GrMotorVal.VAL") -#! Field("$(P)SGM$(N):sel_loc_1.LNK7",16777215,1,"$(P)SGM$(N):sel_loc_1.LNK7") -#! Link("$(P)SGM$(N):sel_loc_1.LNK7","$(P)SGM$(N):GrMotorVal.VAL") -#! Field("$(P)SGM$(N):sel_loc_1.LNK8",16777215,1,"$(P)SGM$(N):sel_loc_1.LNK8") -#! Link("$(P)SGM$(N):sel_loc_1.LNK8","$(P)SGM$(N):GrMotorVal.VAL") -#! Field("$(P)SGM$(N):sel_loc_1.LNK9",16777215,1,"$(P)SGM$(N):sel_loc_1.LNK9") -#! Link("$(P)SGM$(N):sel_loc_1.LNK9","$(P)SGM$(N):GrMotorVal.VAL") -#! Field("$(P)SGM$(N):sel_loc_1.LNKA",16777215,1,"$(P)SGM$(N):sel_loc_1.LNKA") -#! Link("$(P)SGM$(N):sel_loc_1.LNKA","$(P)SGM$(N):GrMotorVal.VAL") -#! Connector("$(P)SGM$(N):sel_loc_1/SELL","$(P)SGM$(N):selVal.VAL",4880,2560,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_loc_1/SDIS","$(P)SGM$(N):selBank.VAL",4900,2460,16777215,"",0) -#! Record("$(P)SGM$(N):sel_loc_2",5500,2925,0,0,"$(P)SGM$(N):sel_loc_2") -#! Field("$(P)SGM$(N):sel_loc_2.SDIS",16777215,0,"$(P)SGM$(N):sel_loc_2.SDIS") -#! Link("$(P)SGM$(N):sel_loc_2.SDIS","$(P)SGM$(N):sel_loc_2/SDIS") -#! Field("$(P)SGM$(N):sel_loc_2.SELL",16777215,0,"$(P)SGM$(N):sel_loc_2.SELL") -#! Link("$(P)SGM$(N):sel_loc_2.SELL","$(P)SGM$(N):sel_loc_2/SELL") -#! Field("$(P)SGM$(N):sel_loc_2.LNK1",16777215,1,"$(P)SGM$(N):sel_loc_2.LNK1") -#! Link("$(P)SGM$(N):sel_loc_2.LNK1","$(P)SGM$(N):GrMotorVal.VAL") -#! Field("$(P)SGM$(N):sel_loc_2.LNK2",16777215,1,"$(P)SGM$(N):sel_loc_2.LNK2") -#! Link("$(P)SGM$(N):sel_loc_2.LNK2","$(P)SGM$(N):GrMotorVal.VAL") -#! Field("$(P)SGM$(N):sel_loc_2.LNK3",16777215,1,"$(P)SGM$(N):sel_loc_2.LNK3") -#! Link("$(P)SGM$(N):sel_loc_2.LNK3","$(P)SGM$(N):GrMotorVal.VAL") -#! Field("$(P)SGM$(N):sel_loc_2.LNK4",16777215,1,"$(P)SGM$(N):sel_loc_2.LNK4") -#! Link("$(P)SGM$(N):sel_loc_2.LNK4","$(P)SGM$(N):GrMotorVal.VAL") -#! Field("$(P)SGM$(N):sel_loc_2.LNK5",16777215,1,"$(P)SGM$(N):sel_loc_2.LNK5") -#! Link("$(P)SGM$(N):sel_loc_2.LNK5","$(P)SGM$(N):GrMotorVal.VAL") -#! Field("$(P)SGM$(N):sel_loc_2.LNK6",16777215,1,"$(P)SGM$(N):sel_loc_2.LNK6") -#! Link("$(P)SGM$(N):sel_loc_2.LNK6","$(P)SGM$(N):GrMotorVal.VAL") -#! Connector("$(P)SGM$(N):sel_loc_2/SDIS","$(P)SGM$(N):selBank.VAL",4900,2630,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_loc_2/SELL","$(P)SGM$(N):selVal.VAL",4880,2730,16777215,"",0) -#! Record("$(P)SGM$(N):sel_m_1",3340,3276,0,0,"$(P)SGM$(N):sel_m_1") -#! Field("$(P)SGM$(N):sel_m_1.SDIS",16777215,0,"$(P)SGM$(N):sel_m_1.SDIS") -#! Link("$(P)SGM$(N):sel_m_1.SDIS","$(P)SGM$(N):sel_m_1/SDIS") -#! Field("$(P)SGM$(N):sel_m_1.SELL",16777215,0,"$(P)SGM$(N):sel_m_1.SELL") -#! Link("$(P)SGM$(N):sel_m_1.SELL","$(P)SGM$(N):sel_m_1/SELL") -#! Field("$(P)SGM$(N):sel_m_1.LNK1",16777215,0,"$(P)SGM$(N):sel_m_1.LNK1") -#! Link("$(P)SGM$(N):sel_m_1.LNK1","$(P)SGM$(N):sel_m_1/LNK12") -#! Field("$(P)SGM$(N):sel_m_1.LNK2",16777215,0,"$(P)SGM$(N):sel_m_1.LNK2") -#! Link("$(P)SGM$(N):sel_m_1.LNK2","$(P)SGM$(N):sel_m_1/LNK22") -#! Field("$(P)SGM$(N):sel_m_1.LNK3",16777215,0,"$(P)SGM$(N):sel_m_1.LNK3") -#! Link("$(P)SGM$(N):sel_m_1.LNK3","$(P)SGM$(N):sel_m_1/LNK32") -#! Field("$(P)SGM$(N):sel_m_1.LNK4",16777215,0,"$(P)SGM$(N):sel_m_1.LNK4") -#! Link("$(P)SGM$(N):sel_m_1.LNK4","$(P)SGM$(N):sel_m_1/LNK42") -#! Field("$(P)SGM$(N):sel_m_1.LNK5",16777215,0,"$(P)SGM$(N):sel_m_1.LNK5") -#! Link("$(P)SGM$(N):sel_m_1.LNK5","$(P)SGM$(N):sel_m_1/LNK52") -#! Field("$(P)SGM$(N):sel_m_1.LNK6",16777215,0,"$(P)SGM$(N):sel_m_1.LNK6") -#! Link("$(P)SGM$(N):sel_m_1.LNK6","$(P)SGM$(N):sel_m_1/LNK62") -#! Field("$(P)SGM$(N):sel_m_1.LNK7",16777215,0,"$(P)SGM$(N):sel_m_1.LNK7") -#! Link("$(P)SGM$(N):sel_m_1.LNK7","$(P)SGM$(N):sel_m_1/LNK72") -#! Field("$(P)SGM$(N):sel_m_1.LNK8",16777215,0,"$(P)SGM$(N):sel_m_1.LNK8") -#! Link("$(P)SGM$(N):sel_m_1.LNK8","$(P)SGM$(N):sel_m_1/LNK83") -#! Field("$(P)SGM$(N):sel_m_1.LNK9",16777215,0,"$(P)SGM$(N):sel_m_1.LNK9") -#! Link("$(P)SGM$(N):sel_m_1.LNK9","$(P)SGM$(N):sel_m_1/LNK92") -#! Field("$(P)SGM$(N):sel_m_1.LNKA",16777215,0,"$(P)SGM$(N):sel_m_1.LNKA") -#! Link("$(P)SGM$(N):sel_m_1.LNKA","$(P)SGM$(N):sel_m_1/LNKA2") -#! Connector("$(P)SGM$(N):sel_m_1/LNKA2","$(P)SGM$(N):sel_m_1/LNKA1",3280,3865,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/LNKA1","$(P)SGM$(N):sel_m_1/LNKA",2450,3980,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/LNKA","$(P)SGM$(N):m.VAL",1620,2335,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/LNK92","$(P)SGM$(N):sel_m_1/LNK91",3280,3855,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/LNK91","$(P)SGM$(N):sel_m_1/LNK9",2450,3980,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/LNK9","$(P)SGM$(N):m.VAL",1620,2335,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/LNK83","$(P)SGM$(N):sel_m_1/LNK81",3280,3845,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/LNK81","$(P)SGM$(N):sel_m_1/LNK82",2450,3980,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/LNK82","$(P)SGM$(N):m.VAL",1620,2335,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/LNK72","$(P)SGM$(N):sel_m_1/LNK71",3280,3835,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/LNK71","$(P)SGM$(N):sel_m_1/LNK7",2450,3980,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/LNK7","$(P)SGM$(N):m.VAL",1620,2335,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/LNK62","$(P)SGM$(N):sel_m_1/LNK61",3280,3825,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/LNK61","$(P)SGM$(N):sel_m_1/LNK6",2450,3980,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/LNK6","$(P)SGM$(N):m.VAL",1620,2335,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/LNK52","$(P)SGM$(N):sel_m_1/LNK51",3280,3815,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/LNK51","$(P)SGM$(N):sel_m_1/LNK5",2450,3980,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/LNK5","$(P)SGM$(N):m.VAL",1620,2335,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/LNK42","$(P)SGM$(N):sel_m_1/LNK41",3280,3805,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/LNK41","$(P)SGM$(N):sel_m_1/LNK4",2450,3980,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/LNK4","$(P)SGM$(N):m.VAL",1620,2335,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/LNK32","$(P)SGM$(N):sel_m_1/LNK31",3280,3795,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/LNK31","$(P)SGM$(N):sel_m_1/LNK3",2450,3980,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/LNK3","$(P)SGM$(N):m.VAL",1620,2335,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/LNK22","$(P)SGM$(N):sel_m_1/LNK21",3280,3785,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/LNK21","$(P)SGM$(N):sel_m_1/LNK2",2450,3980,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/LNK2","$(P)SGM$(N):m.VAL",1620,2335,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/LNK12","$(P)SGM$(N):sel_m_1/LNK11",3280,3775,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/LNK11","$(P)SGM$(N):sel_m_1/LNK1",2450,3980,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/LNK1","$(P)SGM$(N):m.VAL",1620,2335,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/SELL","$(P)SGM$(N):selVal.VAL",3240,2920,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_1/SDIS","$(P)SGM$(N):selBank.VAL",3220,2820,16777215,"",0) -#! Record("$(P)SGM$(N):sel_m_2",3340,3659,0,0,"$(P)SGM$(N):sel_m_2") -#! Field("$(P)SGM$(N):sel_m_2.SDIS",16777215,0,"$(P)SGM$(N):sel_m_2.SDIS") -#! Link("$(P)SGM$(N):sel_m_2.SDIS","$(P)SGM$(N):sel_m_2/SDIS") -#! Field("$(P)SGM$(N):sel_m_2.SELL",16777215,0,"$(P)SGM$(N):sel_m_2.SELL") -#! Link("$(P)SGM$(N):sel_m_2.SELL","$(P)SGM$(N):sel_m_2/SELL") -#! Field("$(P)SGM$(N):sel_m_2.LNK1",16777215,0,"$(P)SGM$(N):sel_m_2.LNK1") -#! Link("$(P)SGM$(N):sel_m_2.LNK1","$(P)SGM$(N):sel_m_2/LNK12") -#! Field("$(P)SGM$(N):sel_m_2.LNK2",16777215,0,"$(P)SGM$(N):sel_m_2.LNK2") -#! Link("$(P)SGM$(N):sel_m_2.LNK2","$(P)SGM$(N):sel_m_2/LNK22") -#! Field("$(P)SGM$(N):sel_m_2.LNK3",16777215,0,"$(P)SGM$(N):sel_m_2.LNK3") -#! Link("$(P)SGM$(N):sel_m_2.LNK3","$(P)SGM$(N):sel_m_2/LNK32") -#! Field("$(P)SGM$(N):sel_m_2.LNK4",16777215,0,"$(P)SGM$(N):sel_m_2.LNK4") -#! Link("$(P)SGM$(N):sel_m_2.LNK4","$(P)SGM$(N):sel_m_2/LNK42") -#! Field("$(P)SGM$(N):sel_m_2.LNK5",16777215,0,"$(P)SGM$(N):sel_m_2.LNK5") -#! Link("$(P)SGM$(N):sel_m_2.LNK5","$(P)SGM$(N):sel_m_2/LNK52") -#! Field("$(P)SGM$(N):sel_m_2.LNK6",16777215,0,"$(P)SGM$(N):sel_m_2.LNK6") -#! Link("$(P)SGM$(N):sel_m_2.LNK6","$(P)SGM$(N):sel_m_2/LNK62") -#! Connector("$(P)SGM$(N):sel_m_2/SELL","$(P)SGM$(N):selVal.VAL",3240,3090,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_2/SDIS","$(P)SGM$(N):selBank.VAL",3220,2990,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_2/LNK62","$(P)SGM$(N):sel_m_2/LNK61",3280,3995,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_2/LNK61","$(P)SGM$(N):sel_m_2/LNK6",2450,3980,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_2/LNK6","$(P)SGM$(N):m.VAL",1620,2335,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_2/LNK52","$(P)SGM$(N):sel_m_2/LNK51",3280,3985,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_2/LNK51","$(P)SGM$(N):sel_m_2/LNK5",2450,3980,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_2/LNK5","$(P)SGM$(N):m.VAL",1620,2335,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_2/LNK42","$(P)SGM$(N):sel_m_2/LNK41",3280,3975,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_2/LNK41","$(P)SGM$(N):sel_m_2/LNK4",2450,3980,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_2/LNK4","$(P)SGM$(N):m.VAL",1620,2335,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_2/LNK32","$(P)SGM$(N):sel_m_2/LNK31",3280,3965,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_2/LNK31","$(P)SGM$(N):sel_m_2/LNK3",2450,3980,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_2/LNK3","$(P)SGM$(N):m.VAL",1620,2335,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_2/LNK22","$(P)SGM$(N):sel_m_2/LNK21",3280,3955,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_2/LNK21","$(P)SGM$(N):sel_m_2/LNK2",2450,3980,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_2/LNK2","$(P)SGM$(N):m.VAL",1620,2335,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_2/LNK12","$(P)SGM$(N):sel_m_2/LNK11",3280,3945,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_2/LNK11","$(P)SGM$(N):sel_m_2/LNK1",2450,3980,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_m_2/LNK1","$(P)SGM$(N):m.VAL",1620,2335,16777215,"",0) -#! Record("$(P)SGM$(N):sel_xOff_1",5500,3162,0,0,"$(P)SGM$(N):sel_xOff_1") -#! Field("$(P)SGM$(N):sel_xOff_1.SDIS",16777215,0,"$(P)SGM$(N):sel_xOff_1.SDIS") -#! Link("$(P)SGM$(N):sel_xOff_1.SDIS","$(P)SGM$(N):sel_xOff_1/SDIS") -#! Field("$(P)SGM$(N):sel_xOff_1.SELL",16777215,0,"$(P)SGM$(N):sel_xOff_1.SELL") -#! Link("$(P)SGM$(N):sel_xOff_1.SELL","$(P)SGM$(N):sel_xOff_1/SELL") -#! Field("$(P)SGM$(N):sel_xOff_1.LNK1",16777215,1,"$(P)SGM$(N):sel_xOff_1.LNK1") -#! Link("$(P)SGM$(N):sel_xOff_1.LNK1","$(P)SGM$(N):xOff.VAL") -#! Field("$(P)SGM$(N):sel_xOff_1.LNK2",16777215,1,"$(P)SGM$(N):sel_xOff_1.LNK2") -#! Link("$(P)SGM$(N):sel_xOff_1.LNK2","$(P)SGM$(N):xOff.VAL") -#! Field("$(P)SGM$(N):sel_xOff_1.LNK3",16777215,1,"$(P)SGM$(N):sel_xOff_1.LNK3") -#! Link("$(P)SGM$(N):sel_xOff_1.LNK3","$(P)SGM$(N):xOff.VAL") -#! Field("$(P)SGM$(N):sel_xOff_1.LNK4",16777215,1,"$(P)SGM$(N):sel_xOff_1.LNK4") -#! Link("$(P)SGM$(N):sel_xOff_1.LNK4","$(P)SGM$(N):xOff.VAL") -#! Field("$(P)SGM$(N):sel_xOff_1.LNK5",16777215,1,"$(P)SGM$(N):sel_xOff_1.LNK5") -#! Link("$(P)SGM$(N):sel_xOff_1.LNK5","$(P)SGM$(N):xOff.VAL") -#! Field("$(P)SGM$(N):sel_xOff_1.LNK6",16777215,1,"$(P)SGM$(N):sel_xOff_1.LNK6") -#! Link("$(P)SGM$(N):sel_xOff_1.LNK6","$(P)SGM$(N):xOff.VAL") -#! Field("$(P)SGM$(N):sel_xOff_1.LNK7",16777215,1,"$(P)SGM$(N):sel_xOff_1.LNK7") -#! Link("$(P)SGM$(N):sel_xOff_1.LNK7","$(P)SGM$(N):xOff.VAL") -#! Field("$(P)SGM$(N):sel_xOff_1.LNK8",16777215,1,"$(P)SGM$(N):sel_xOff_1.LNK8") -#! Link("$(P)SGM$(N):sel_xOff_1.LNK8","$(P)SGM$(N):xOff.VAL") -#! Field("$(P)SGM$(N):sel_xOff_1.LNK9",16777215,1,"$(P)SGM$(N):sel_xOff_1.LNK9") -#! Link("$(P)SGM$(N):sel_xOff_1.LNK9","$(P)SGM$(N):xOff.VAL") -#! Field("$(P)SGM$(N):sel_xOff_1.LNKA",16777215,1,"$(P)SGM$(N):sel_xOff_1.LNKA") -#! Link("$(P)SGM$(N):sel_xOff_1.LNKA","$(P)SGM$(N):xOff.VAL") -#! Connector("$(P)SGM$(N):sel_xOff_1/SELL","$(P)SGM$(N):selVal.VAL",4880,2870,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_xOff_1/SDIS","$(P)SGM$(N):selBank.VAL",4900,2770,16777215,"",0) -#! Record("$(P)SGM$(N):sel_xOff_2",5500,3585,0,0,"$(P)SGM$(N):sel_xOff_2") -#! Field("$(P)SGM$(N):sel_xOff_2.SDIS",16777215,0,"$(P)SGM$(N):sel_xOff_2.SDIS") -#! Link("$(P)SGM$(N):sel_xOff_2.SDIS","$(P)SGM$(N):sel_xOff_2/SDIS") -#! Field("$(P)SGM$(N):sel_xOff_2.SELL",16777215,0,"$(P)SGM$(N):sel_xOff_2.SELL") -#! Link("$(P)SGM$(N):sel_xOff_2.SELL","$(P)SGM$(N):sel_xOff_2/SELL") -#! Field("$(P)SGM$(N):sel_xOff_2.LNK1",16777215,1,"$(P)SGM$(N):sel_xOff_2.LNK1") -#! Link("$(P)SGM$(N):sel_xOff_2.LNK1","$(P)SGM$(N):xOff.VAL") -#! Field("$(P)SGM$(N):sel_xOff_2.LNK2",16777215,1,"$(P)SGM$(N):sel_xOff_2.LNK2") -#! Link("$(P)SGM$(N):sel_xOff_2.LNK2","$(P)SGM$(N):xOff.VAL") -#! Field("$(P)SGM$(N):sel_xOff_2.LNK3",16777215,1,"$(P)SGM$(N):sel_xOff_2.LNK3") -#! Link("$(P)SGM$(N):sel_xOff_2.LNK3","$(P)SGM$(N):xOff.VAL") -#! Field("$(P)SGM$(N):sel_xOff_2.LNK4",16777215,1,"$(P)SGM$(N):sel_xOff_2.LNK4") -#! Link("$(P)SGM$(N):sel_xOff_2.LNK4","$(P)SGM$(N):xOff.VAL") -#! Field("$(P)SGM$(N):sel_xOff_2.LNK5",16777215,1,"$(P)SGM$(N):sel_xOff_2.LNK5") -#! Link("$(P)SGM$(N):sel_xOff_2.LNK5","$(P)SGM$(N):xOff.VAL") -#! Field("$(P)SGM$(N):sel_xOff_2.LNK6",16777215,1,"$(P)SGM$(N):sel_xOff_2.LNK6") -#! Link("$(P)SGM$(N):sel_xOff_2.LNK6","$(P)SGM$(N):xOff.VAL") -#! Connector("$(P)SGM$(N):sel_xOff_2/SELL","$(P)SGM$(N):selVal.VAL",4880,3060,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_xOff_2/SDIS","$(P)SGM$(N):selBank.VAL",4900,2960,16777215,"",0) -#! Record("$(P)SGM$(N):sync",1880,493,0,0,"$(P)SGM$(N):sync") -#! Field("$(P)SGM$(N):sync.PROC",16777215,0,"$(P)SGM$(N):sync.PROC") -#! Field("$(P)SGM$(N):sync.LNK1",16777215,1,"$(P)SGM$(N):sync.LNK1") -#! Link("$(P)SGM$(N):sync.LNK1","$(P)SGM$(N):sync/LNK1") -#! Field("$(P)SGM$(N):sync.DOL2",16777215,1,"$(P)SGM$(N):sync.DOL2") -#! Link("$(P)SGM$(N):sync.DOL2","$(P)SGM$(N):sync/DOL2") -#! Field("$(P)SGM$(N):sync.LNK2",16777215,0,"$(P)SGM$(N):sync.LNK2") -#! Link("$(P)SGM$(N):sync.LNK2","$(P)SGM$(N):sync/LNK2") -#! Field("$(P)SGM$(N):sync.DOL3",16777215,1,"$(P)SGM$(N):sync.DOL3") -#! Link("$(P)SGM$(N):sync.DOL3","$(P)SGM$(N):sync/DOL3") -#! Field("$(P)SGM$(N):sync.LNK3",16777215,0,"$(P)SGM$(N):sync.LNK3") -#! Link("$(P)SGM$(N):sync.LNK3","$(P)SGM$(N):sync/LNK3") -#! Field("$(P)SGM$(N):sync.DOL4",16777215,1,"$(P)SGM$(N):sync.DOL4") -#! Link("$(P)SGM$(N):sync.DOL4","$(P)SGM$(N):sync/DOL4") -#! Field("$(P)SGM$(N):sync.LNK4",16777215,0,"$(P)SGM$(N):sync.LNK4") -#! Link("$(P)SGM$(N):sync.LNK4","$(P)SGM$(N):sync/LNK4") -#! Field("$(P)SGM$(N):sync.LNK5",16777215,1,"$(P)SGM$(N):sync.LNK5") -#! Link("$(P)SGM$(N):sync.LNK5","$(P)SGM$(N):sync/LNK5") -#! Connector("$(P)SGM$(N):sync/LNK5","$(P)SGM$(N):hold.VAL",3180,880,16777215,"",0) -#! Connector("$(P)SGM$(N):sync/LNK4","$(P)SGM$(N):Energy.VAL",1680,1300,16777215,"",0) -#! Connector("$(P)SGM$(N):sync/LNK3","$(P)SGM$(N):Lambda.VAL",1660,1390,16777215,"",0) -#! Connector("$(P)SGM$(N):sync/LNK2","$(P)SGM$(N):phi.VAL",1640,1490,16777215,"",0) -#! Connector("$(P)SGM$(N):sync/LNK1","$(P)SGM$(N):hold.VAL",3180,810,16777215,"",0) -#! Connector("$(P)SGM$(N):sync/DOL4","$(P)SGM$(N):EnergyRBV.VAL",3140,1000,16777215,"",0) -#! Connector("$(P)SGM$(N):sync/DOL3","$(P)SGM$(N):LambdaRBV.VAL",3120,930,16777215,"",0) -#! Connector("$(P)SGM$(N):sync/DOL2","$(P)SGM$(N):phiRBV.VAL",3100,860,16777215,"",0) -#! Record("$(P)SGM$(N):stripeDesc",3640,3389,0,0,"$(P)SGM$(N):stripeDesc") -#! Field("$(P)SGM$(N):stripeDesc.VAL",16777215,0,"$(P)SGM$(N):stripeDesc.VAL") -#! Record("$(P)SGM$(N):EnergyTweak",480,1412,0,0,"$(P)SGM$(N):EnergyTweak") -#! Field("$(P)SGM$(N):EnergyTweak.INPD",16777215,1,"$(P)SGM$(N):EnergyTweak.INPD") -#! Link("$(P)SGM$(N):EnergyTweak.INPD","$(P)SGM$(N):EnergyTweak/INPD") -#! Field("$(P)SGM$(N):EnergyTweak.OUTE",16777215,1,"$(P)SGM$(N):EnergyTweak.OUTE") -#! Link("$(P)SGM$(N):EnergyTweak.OUTE","$(P)SGM$(N):Energy.VAL") -#! Field("$(P)SGM$(N):EnergyTweak.INPF",16777215,0,"$(P)SGM$(N):EnergyTweak.INPF") -#! Link("$(P)SGM$(N):EnergyTweak.INPF","$(P)SGM$(N):EnergyTweak/INPF") -#! Field("$(P)SGM$(N):EnergyTweak.A",16777215,0,"$(P)SGM$(N):EnergyTweak.A") -#! Field("$(P)SGM$(N):EnergyTweak.OUTG",16777215,0,"$(P)SGM$(N):EnergyTweak.OUTG") -#! Link("$(P)SGM$(N):EnergyTweak.OUTG","$(P)SGM$(N):EnergyTweak.A") -#! Field("$(P)SGM$(N):EnergyTweak.B",16777215,0,"$(P)SGM$(N):EnergyTweak.B") -#! Field("$(P)SGM$(N):EnergyTweak.OUTH",16777215,0,"$(P)SGM$(N):EnergyTweak.OUTH") -#! Link("$(P)SGM$(N):EnergyTweak.OUTH","$(P)SGM$(N):EnergyTweak.B") -#! Connector("$(P)SGM$(N):EnergyTweak/INPF","$(P)SGM$(N):delta.K",420,1500,16777215,"",0) -#! Connector("$(P)SGM$(N):EnergyTweak/INPD","$(P)SGM$(N):Energy.VAL",700,1740,16777215,"",0) -#! Record("$(P)SGM$(N):GrMotPut1",6080,2658,0,0,"$(P)SGM$(N):GrMotPut1") -#! Field("$(P)SGM$(N):GrMotPut1.A",16777215,1,"$(P)SGM$(N):GrMotPut1.A") -#! Field("$(P)SGM$(N):GrMotPut1.INPB",16777215,0,"$(P)SGM$(N):GrMotPut1.INPB") -#! Link("$(P)SGM$(N):GrMotPut1.INPB","$(P)SGM$(N):StripeWidth.VAL") -#! Field("$(P)SGM$(N):GrMotPut1.B",16777215,1,"$(P)SGM$(N):GrMotPut1.B") -#! Field("$(P)SGM$(N):GrMotPut1.INPC",16777215,0,"$(P)SGM$(N):GrMotPut1.INPC") -#! Link("$(P)SGM$(N):GrMotPut1.INPC","$(P)SGM$(N):GrMotPut1/INPC") -#! Field("$(P)SGM$(N):GrMotPut1.INPG",16777215,0,"$(P)SGM$(N):GrMotPut1.INPG") -#! Link("$(P)SGM$(N):GrMotPut1.INPG","$(P)SGM$(N):GrMotPut1/INPG") -#! Field("$(P)SGM$(N):GrMotPut1.INPH",16777215,0,"$(P)SGM$(N):GrMotPut1.INPH") -#! Link("$(P)SGM$(N):GrMotPut1.INPH","$(P)SGM$(N):GrMotPut1/INPH") -#! Field("$(P)SGM$(N):GrMotPut1.OUTD",16777215,1,"$(P)SGM$(N):GrMotPut1.OUTD") -#! Link("$(P)SGM$(N):GrMotPut1.OUTD","$(P)SGM$(N):GrMotPut1/OUTD") -#! Field("$(P)SGM$(N):GrMotPut1.OUTE",16777215,1,"$(P)SGM$(N):GrMotPut1.OUTE") -#! Link("$(P)SGM$(N):GrMotPut1.OUTE","$(P)SGM$(N):GrMotPut1/OUTE") -#! Field("$(P)SGM$(N):GrMotPut1.OUTF",16777215,1,"$(P)SGM$(N):GrMotPut1.OUTF") -#! Link("$(P)SGM$(N):GrMotPut1.OUTF","$(P)SGM$(N):GrMotPut1/OUTF") -#! Connector("$(P)SGM$(N):GrMotPut1/INPH",null,6020,3120,16777215,"",3) -#! Connector("$(P)SGM$(N):GrMotPut1/INPG",null,6020,3100,16777215,"",3) -#! Connector("$(P)SGM$(N):GrMotPut1/INPC",null,6020,3080,16777215,"",3) -#! Connector("$(P)SGM$(N):GrMotPut1/OUTF","$(P)SGM$(N):GrMotPut.A",6340,3190,16777215,"",0) -#! Connector("$(P)SGM$(N):GrMotPut1/OUTE",null,6380,3160,16777215,"",2) -#! Connector("$(P)SGM$(N):GrMotPut1/OUTD",null,6380,3140,16777215,"",2) -#! Record("$(P)SGM$(N):GrMotPut2",6400,3125,0,0,"$(P)SGM$(N):GrMotPut2") -#! Field("$(P)SGM$(N):GrMotPut2.INPA",16777215,0,"$(P)SGM$(N):GrMotPut2.INPA") -#! Link("$(P)SGM$(N):GrMotPut2.INPA","$(P)SGM$(N):GrMotPut2/INPA") -#! Field("$(P)SGM$(N):GrMotPut2.INPB",16777215,0,"$(P)SGM$(N):GrMotPut2.INPB") -#! Link("$(P)SGM$(N):GrMotPut2.INPB","$(P)SGM$(N):GrMotPut2/INPB") -#! Field("$(P)SGM$(N):GrMotPut2.OUTC",16777215,1,"$(P)SGM$(N):GrMotPut2.OUTC") -#! Link("$(P)SGM$(N):GrMotPut2.OUTC","$(P)SGM$(N):GrMotPut2/OUTC") -#! Field("$(P)SGM$(N):GrMotPut2.OUTD",16777215,1,"$(P)SGM$(N):GrMotPut2.OUTD") -#! Link("$(P)SGM$(N):GrMotPut2.OUTD","$(P)SGM$(N):GrMotPut2/OUTD") -#! Connector("$(P)SGM$(N):GrMotPut2/INPB","$(P)SGM$(N):GrMotPut1.B",6300,3190,16777215,"",0) -#! Connector("$(P)SGM$(N):GrMotPut2/INPA","$(P)SGM$(N):GrMotPut1.A",6320,3160,16777215,"",0) -#! Connector("$(P)SGM$(N):GrMotPut2/OUTD",null,6640,3460,16777215,"",2) -#! Connector("$(P)SGM$(N):GrMotPut2/OUTC",null,6640,3440,16777215,"",2) -#! Record("$(P)SGM$(N):LambdaTweak",480,1632,0,0,"$(P)SGM$(N):LambdaTweak") -#! Field("$(P)SGM$(N):LambdaTweak.INPD",16777215,1,"$(P)SGM$(N):LambdaTweak.INPD") -#! Link("$(P)SGM$(N):LambdaTweak.INPD","$(P)SGM$(N):LambdaTweak/INPD") -#! Field("$(P)SGM$(N):LambdaTweak.OUTE",16777215,1,"$(P)SGM$(N):LambdaTweak.OUTE") -#! Link("$(P)SGM$(N):LambdaTweak.OUTE","$(P)SGM$(N):Lambda.VAL") -#! Field("$(P)SGM$(N):LambdaTweak.INPF",16777215,0,"$(P)SGM$(N):LambdaTweak.INPF") -#! Link("$(P)SGM$(N):LambdaTweak.INPF","$(P)SGM$(N):LambdaTweak/INPF") -#! Field("$(P)SGM$(N):LambdaTweak.A",16777215,0,"$(P)SGM$(N):LambdaTweak.A") -#! Field("$(P)SGM$(N):LambdaTweak.OUTG",16777215,0,"$(P)SGM$(N):LambdaTweak.OUTG") -#! Link("$(P)SGM$(N):LambdaTweak.OUTG","$(P)SGM$(N):LambdaTweak.A") -#! Field("$(P)SGM$(N):LambdaTweak.B",16777215,0,"$(P)SGM$(N):LambdaTweak.B") -#! Field("$(P)SGM$(N):LambdaTweak.OUTH",16777215,0,"$(P)SGM$(N):LambdaTweak.OUTH") -#! Link("$(P)SGM$(N):LambdaTweak.OUTH","$(P)SGM$(N):LambdaTweak.B") -#! Connector("$(P)SGM$(N):LambdaTweak/INPF","$(P)SGM$(N):delta.J",400,1600,16777215,"",0) -#! Connector("$(P)SGM$(N):LambdaTweak/INPD","$(P)SGM$(N):Lambda.VAL",700,1960,16777215,"",0) -#! Record("$(P)SGM$(N):T1",1840,1232,0,0,"$(P)SGM$(N):T1") -#! Field("$(P)SGM$(N):T1.A",16777215,1,"$(P)SGM$(N):T1.A") -#! Field("$(P)SGM$(N):T1.B",16777215,1,"$(P)SGM$(N):T1.B") -#! Field("$(P)SGM$(N):T1.C",16777215,1,"$(P)SGM$(N):T1.C") -#! Field("$(P)SGM$(N):T1.D",16777215,1,"$(P)SGM$(N):T1.D") -#! Field("$(P)SGM$(N):T1.E",16777215,0,"$(P)SGM$(N):T1.E") -#! Field("$(P)SGM$(N):T1.F",16777215,0,"$(P)SGM$(N):T1.F") -#! Field("$(P)SGM$(N):T1.G",16777215,1,"$(P)SGM$(N):T1.G") -#! Field("$(P)SGM$(N):T1.OUTK",16777215,0,"$(P)SGM$(N):T1.OUTK") -#! Link("$(P)SGM$(N):T1.OUTK","$(P)SGM$(N):T1/OUTK") -#! Field("$(P)SGM$(N):T1.OUTJ",16777215,0,"$(P)SGM$(N):T1.OUTJ") -#! Link("$(P)SGM$(N):T1.OUTJ","$(P)SGM$(N):LambdaB.VAL") -#! Field("$(P)SGM$(N):T1.OUTG",16777215,0,"$(P)SGM$(N):T1.OUTG") -#! Link("$(P)SGM$(N):T1.OUTG","$(P)SGM$(N):T1/OUTG") -#! Field("$(P)SGM$(N):T1.OUTH",16777215,1,"$(P)SGM$(N):T1.OUTH") -#! Link("$(P)SGM$(N):T1.OUTH","$(P)SGM$(N):T1/OUTH") -#! Connector("$(P)SGM$(N):T1/OUTK","$(P)SGM$(N):EnergyB.VAL",1540,1750,16777215,"",0) -#! Connector("$(P)SGM$(N):T1/OUTH","$(P)SGM$(N):T2.H",2520,1650,16777215,"",0) -#! Connector("$(P)SGM$(N):T1/OUTG","$(P)SGM$(N):phiB.VAL",1760,2000,16777215,"",0) -#! Record("$(P)SGM$(N):T2",2660,910,0,0,"$(P)SGM$(N):T2") -#! Field("$(P)SGM$(N):T2.B",16777215,0,"$(P)SGM$(N):T2.B") -#! Field("$(P)SGM$(N):T2.N",16777215,1,"$(P)SGM$(N):T2.N") -#! Field("$(P)SGM$(N):T2.I",16777215,1,"$(P)SGM$(N):T2.I") -#! Field("$(P)SGM$(N):T2.H",16777215,0,"$(P)SGM$(N):T2.H") -#! Field("$(P)SGM$(N):T2.INPA",16777215,1,"$(P)SGM$(N):T2.INPA") -#! Field("$(P)SGM$(N):T2.INPC",16777215,0,"$(P)SGM$(N):T2.INPC") -#! Link("$(P)SGM$(N):T2.INPC","$(P)SGM$(N):T2/INPC") -#! Field("$(P)SGM$(N):T2.INPD",16777215,0,"$(P)SGM$(N):T2.INPD") -#! Link("$(P)SGM$(N):T2.INPD","$(P)SGM$(N):T2/INPD") -#! Field("$(P)SGM$(N):T2.INPJ",16777215,0,"$(P)SGM$(N):T2.INPJ") -#! Link("$(P)SGM$(N):T2.INPJ","$(P)SGM$(N):T2/INPJ2") -#! Field("$(P)SGM$(N):T2.INPK",16777215,1,"$(P)SGM$(N):T2.INPK") -#! Field("$(P)SGM$(N):T2.INPL",16777215,1,"$(P)SGM$(N):T2.INPL") -#! Field("$(P)SGM$(N):T2.FLNK",16777215,1,"$(P)SGM$(N):T2.FLNK") -#! Link("$(P)SGM$(N):T2.FLNK","$(P)SGM$(N):autoMove") -#! Connector("$(P)SGM$(N):T2/INPJ2","$(P)SGM$(N):T2/INPJ1",2560,1465,16777215,"",0) -#! Connector("$(P)SGM$(N):T2/INPJ1","$(P)SGM$(N):T2/INPJ",4730,1380,16777215,"",0) -#! Connector("$(P)SGM$(N):T2/INPJ","$(P)SGM$(N):xOff.VAL",6900,2695,16777215,"",0) -#! Connector("$(P)SGM$(N):T2/INPD","$(P)SGM$(N):T1.G",2480,1640,16777215,"",0) -#! Connector("$(P)SGM$(N):T2/INPC","$(P)SGM$(N):2Theta.VAL",2500,1540,16777215,"",0) -#! Record("$(P)SGM$(N):T3",2520,560,0,0,"$(P)SGM$(N):T3") -#! Field("$(P)SGM$(N):T3.INPA",16777215,0,"$(P)SGM$(N):T3.INPA") -#! Link("$(P)SGM$(N):T3.INPA","$(P)SGM$(N):T3/INPA") -#! Field("$(P)SGM$(N):T3.INPB",16777215,0,"$(P)SGM$(N):T3.INPB") -#! Link("$(P)SGM$(N):T3.INPB","$(P)SGM$(N):T3/INPB") -#! Field("$(P)SGM$(N):T3.INPC",16777215,0,"$(P)SGM$(N):T3.INPC") -#! Link("$(P)SGM$(N):T3.INPC","$(P)SGM$(N):T3/INPC") -#! Field("$(P)SGM$(N):T3.INPD",16777215,0,"$(P)SGM$(N):T3.INPD") -#! Link("$(P)SGM$(N):T3.INPD","$(P)SGM$(N):T3/INPD") -#! Field("$(P)SGM$(N):T3.INPF",16777215,0,"$(P)SGM$(N):T3.INPF") -#! Link("$(P)SGM$(N):T3.INPF","$(P)SGM$(N):T3/INPF2") -#! Field("$(P)SGM$(N):T3.INPG",16777215,0,"$(P)SGM$(N):T3.INPG") -#! Link("$(P)SGM$(N):T3.INPG","$(P)SGM$(N):T3/INPG") -#! Field("$(P)SGM$(N):T3.OUTI",16777215,1,"$(P)SGM$(N):T3.OUTI") -#! Link("$(P)SGM$(N):T3.OUTI","$(P)SGM$(N):T3/OUTI") -#! Field("$(P)SGM$(N):T3.OUTJ",16777215,1,"$(P)SGM$(N):T3.OUTJ") -#! Link("$(P)SGM$(N):T3.OUTJ","$(P)SGM$(N):T3/OUTJ") -#! Field("$(P)SGM$(N):T3.OUTK",16777215,1,"$(P)SGM$(N):T3.OUTK") -#! Link("$(P)SGM$(N):T3.OUTK","$(P)SGM$(N):T3/OUTK") -#! Connector("$(P)SGM$(N):T3/INPG",null,2400,1100,16777215,"",3) -#! Connector("$(P)SGM$(N):T3/INPF2","$(P)SGM$(N):T3/INPF",2440,1195,16777215,"",0) -#! Connector("$(P)SGM$(N):T3/INPF","$(P)SGM$(N):T3/INPF1",4670,1380,16777215,"",0) -#! Connector("$(P)SGM$(N):T3/INPF1","$(P)SGM$(N):xOff.VAL",6900,2695,16777215,"",0) -#! Connector("$(P)SGM$(N):T3/INPD","$(P)SGM$(N):T1.D",2120,1340,16777215,"",0) -#! Connector("$(P)SGM$(N):T3/INPC","$(P)SGM$(N):T1.C",2100,1320,16777215,"",0) -#! Connector("$(P)SGM$(N):T3/INPB","$(P)SGM$(N):T1.B",2080,1300,16777215,"",0) -#! Connector("$(P)SGM$(N):T3/INPA","$(P)SGM$(N):T1.A",2060,1280,16777215,"",0) -#! Connector("$(P)SGM$(N):T3/OUTK","$(P)SGM$(N):EnergyRBV.VAL",2760,1140,16777215,"",0) -#! Connector("$(P)SGM$(N):T3/OUTJ","$(P)SGM$(N):LambdaRBV.VAL",2780,1080,16777215,"",0) -#! Connector("$(P)SGM$(N):T3/OUTI","$(P)SGM$(N):phiRBV.VAL",2760,1020,16777215,"",0) -#! Field("$(P)SGM$(N):T3.PROC",16777215,0,"$(P)SGM$(N):T3.PROC") -#! Record("$(P)SGM$(N):delta",580,680,0,0,"$(P)SGM$(N):delta") -#! Field("$(P)SGM$(N):delta.INPA",16777215,0,"$(P)SGM$(N):delta.INPA") -#! Link("$(P)SGM$(N):delta.INPA","$(P)SGM$(N):delta/INPA") -#! Field("$(P)SGM$(N):delta.INPB",16777215,0,"$(P)SGM$(N):delta.INPB") -#! Link("$(P)SGM$(N):delta.INPB","$(P)SGM$(N):delta/INPB") -#! Field("$(P)SGM$(N):delta.INPE",16777215,1,"$(P)SGM$(N):delta.INPE") -#! Link("$(P)SGM$(N):delta.INPE","$(P)SGM$(N):delta/INPE") -#! Field("$(P)SGM$(N):delta.INPD",16777215,1,"$(P)SGM$(N):delta.INPD") -#! Link("$(P)SGM$(N):delta.INPD","$(P)SGM$(N):d.VAL") -#! Field("$(P)SGM$(N):delta.INPC",16777215,1,"$(P)SGM$(N):delta.INPC") -#! Link("$(P)SGM$(N):delta.INPC","$(P)SGM$(N):delta/INPC") -#! Field("$(P)SGM$(N):delta.INPF",16777215,1,"$(P)SGM$(N):delta.INPF") -#! Link("$(P)SGM$(N):delta.INPF","$(P)SGM$(N):delta/INPF") -#! Field("$(P)SGM$(N):delta.INPG",16777215,1,"$(P)SGM$(N):delta.INPG") -#! Link("$(P)SGM$(N):delta.INPG","$(P)SGM$(N):delta/INPG") -#! Field("$(P)SGM$(N):delta.INPH",16777215,1,"$(P)SGM$(N):delta.INPH") -#! Link("$(P)SGM$(N):delta.INPH","$(P)SGM$(N):delta/INPH") -#! Field("$(P)SGM$(N):delta.I",16777215,0,"$(P)SGM$(N):delta.I") -#! Field("$(P)SGM$(N):delta.J",16777215,0,"$(P)SGM$(N):delta.J") -#! Field("$(P)SGM$(N):delta.K",16777215,0,"$(P)SGM$(N):delta.K") -#! Connector("$(P)SGM$(N):delta/INPH","$(P)SGM$(N):LambdaRBV.VAL",3120,1140,16777215,"",0) -#! Connector("$(P)SGM$(N):delta/INPG","$(P)SGM$(N):phiRBV.VAL",3100,1080,16777215,"",0) -#! Connector("$(P)SGM$(N):delta/INPF","$(P)SGM$(N):2Theta.VAL",820,1360,16777215,"",0) -#! Connector("$(P)SGM$(N):delta/INPE","$(P)SGM$(N):m.VAL",840,890,16777215,"",0) -#! Connector("$(P)SGM$(N):delta/INPC","$(P)SGM$(N):len.VAL",1000,1250,16777215,"",0) -#! Connector("$(P)SGM$(N):delta/INPB",null,520,1140,16777215,"",3) -#! Connector("$(P)SGM$(N):delta/INPA",null,520,1120,16777215,"",3) -#! Field("$(P)SGM$(N):delta.PROC",16777215,0,"$(P)SGM$(N):delta.PROC") -#! Record("$(P)SGM$(N):limits",4460,4162,0,0,"$(P)SGM$(N):limits") -#! Field("$(P)SGM$(N):limits.A",16777215,0,"$(P)SGM$(N):limits.A") -#! Field("$(P)SGM$(N):limits.B",16777215,0,"$(P)SGM$(N):limits.B") -#! Field("$(P)SGM$(N):limits.INPC",16777215,0,"$(P)SGM$(N):limits.INPC") -#! Link("$(P)SGM$(N):limits.INPC","$(P)SGM$(N):limits/INPC") -#! Field("$(P)SGM$(N):limits.INPD",16777215,0,"$(P)SGM$(N):limits.INPD") -#! Link("$(P)SGM$(N):limits.INPD","$(P)SGM$(N):limits/INPD1") -#! Field("$(P)SGM$(N):limits.INPE",16777215,0,"$(P)SGM$(N):limits.INPE") -#! Link("$(P)SGM$(N):limits.INPE","$(P)SGM$(N):limits/INPE") -#! Field("$(P)SGM$(N):limits.OUTA",16777215,0,"$(P)SGM$(N):limits.OUTA") -#! Link("$(P)SGM$(N):limits.OUTA","$(P)SGM$(N):limits/OUTA") -#! Field("$(P)SGM$(N):limits.OUTB",16777215,0,"$(P)SGM$(N):limits.OUTB") -#! Link("$(P)SGM$(N):limits.OUTB","$(P)SGM$(N):limits/OUTB") -#! Field("$(P)SGM$(N):limits.OUTF",16777215,0,"$(P)SGM$(N):limits.OUTF") -#! Link("$(P)SGM$(N):limits.OUTF","$(P)SGM$(N):limits/OUTF") -#! Field("$(P)SGM$(N):limits.OUTG",16777215,0,"$(P)SGM$(N):limits.OUTG") -#! Link("$(P)SGM$(N):limits.OUTG","$(P)SGM$(N):limits/OUTG") -#! Field("$(P)SGM$(N):limits.OUTI",16777215,0,"$(P)SGM$(N):limits.OUTI") -#! Link("$(P)SGM$(N):limits.OUTI","$(P)SGM$(N):limits/OUTI") -#! Field("$(P)SGM$(N):limits.OUTJ",16777215,0,"$(P)SGM$(N):limits.OUTJ") -#! Link("$(P)SGM$(N):limits.OUTJ","$(P)SGM$(N):limits/OUTJ") -#! Connector("$(P)SGM$(N):limits/INPE","$(P)SGM$(N):2Theta.VAL",1200,3120,16777215,"",0) -#! Connector("$(P)SGM$(N):limits/INPD1","$(P)SGM$(N):d.VAL",1120,2890,16777215,"",0) -#! Connector("$(P)SGM$(N):limits/INPC","$(P)SGM$(N):m.VAL",1620,2660,16777215,"",0) -#! Connector("$(P)SGM$(N):limits/OUTJ","$(P)SGM$(N):phi.DRVL",840,3500,16777215,"",0) -#! Connector("$(P)SGM$(N):limits/OUTI","$(P)SGM$(N):phi.DRVH",820,3480,16777215,"",0) -#! Connector("$(P)SGM$(N):limits/OUTG","$(P)SGM$(N):Energy.DRVL",760,3250,16777215,"",0) -#! Connector("$(P)SGM$(N):limits/OUTF","$(P)SGM$(N):Energy.DRVH",740,3230,16777215,"",0) -#! Connector("$(P)SGM$(N):limits/OUTB","$(P)SGM$(N):Lambda.DRVL",800,3340,16777215,"",0) -#! Connector("$(P)SGM$(N):limits/OUTA","$(P)SGM$(N):Lambda.DRVH",780,3320,16777215,"",0) -#! Record("$(P)SGM$(N):phiTweak",480,1872,0,0,"$(P)SGM$(N):phiTweak") -#! Field("$(P)SGM$(N):phiTweak.INPD",16777215,1,"$(P)SGM$(N):phiTweak.INPD") -#! Link("$(P)SGM$(N):phiTweak.INPD","$(P)SGM$(N):phiTweak/INPD") -#! Field("$(P)SGM$(N):phiTweak.OUTE",16777215,1,"$(P)SGM$(N):phiTweak.OUTE") -#! Link("$(P)SGM$(N):phiTweak.OUTE","$(P)SGM$(N):phi.VAL") -#! Field("$(P)SGM$(N):phiTweak.INPF",16777215,0,"$(P)SGM$(N):phiTweak.INPF") -#! Link("$(P)SGM$(N):phiTweak.INPF","$(P)SGM$(N):phiTweak/INPF") -#! Field("$(P)SGM$(N):phiTweak.A",16777215,0,"$(P)SGM$(N):phiTweak.A") -#! Field("$(P)SGM$(N):phiTweak.OUTG",16777215,0,"$(P)SGM$(N):phiTweak.OUTG") -#! Link("$(P)SGM$(N):phiTweak.OUTG","$(P)SGM$(N):phiTweak.A") -#! Field("$(P)SGM$(N):phiTweak.B",16777215,0,"$(P)SGM$(N):phiTweak.B") -#! Field("$(P)SGM$(N):phiTweak.OUTH",16777215,0,"$(P)SGM$(N):phiTweak.OUTH") -#! Link("$(P)SGM$(N):phiTweak.OUTH","$(P)SGM$(N):phiTweak.B") -#! Connector("$(P)SGM$(N):phiTweak/INPF","$(P)SGM$(N):delta.I",380,1710,16777215,"",0) -#! Connector("$(P)SGM$(N):phiTweak/INPD","$(P)SGM$(N):phi.VAL",700,2200,16777215,"",0) -#! Record("$(P)SGM$(N):GrMotPut",6400,3112,0,0,"$(P)SGM$(N):GrMotPut") -#! Field("$(P)SGM$(N):GrMotPut.A",16777215,0,"$(P)SGM$(N):GrMotPut.A") -#! Field("$(P)SGM$(N):GrMotPut.FLNK",16777215,1,"$(P)SGM$(N):GrMotPut.FLNK") -#! Link("$(P)SGM$(N):GrMotPut.FLNK","$(P)SGM$(N):GrMotPut/FLNK") -#! Connector("$(P)SGM$(N):GrMotPut/FLNK","$(P)SGM$(N):GrMotPut/FLNK1",6620,3285,16777215,"",0) -#! Connector("$(P)SGM$(N):GrMotPut/FLNK1","$(P)SGM$(N):GrMotPut/FLNK2",6490,3300,16777215,"",0) -#! Connector("$(P)SGM$(N):GrMotPut/FLNK2","$(P)SGM$(N):GrMotPut2",6360,3266,16777215,"",0) -#! Record("$(P)SGM$(N):rOutWait",3580,1748,0,0,"$(P)SGM$(N):rOutWait") -#! Field("$(P)SGM$(N):rOutWait.SDIS",16777215,0,"$(P)SGM$(N):rOutWait.SDIS") -#! Link("$(P)SGM$(N):rOutWait.SDIS","$(P)SGM$(N):rTrack.VAL") -#! Record("$(P)SGM$(N):xWait",3580,1903,0,0,"$(P)SGM$(N):xWait") -#! Field("$(P)SGM$(N):xWait.SDIS",16777215,0,"$(P)SGM$(N):xWait.SDIS") -#! Link("$(P)SGM$(N):xWait.SDIS","$(P)SGM$(N):rTrack.VAL") -#! Record("$(P)SGM$(N):sel_desc_1",3340,2696,0,0,"$(P)SGM$(N):sel_desc_1") -#! Field("$(P)SGM$(N):sel_desc_1.SDIS",16777215,0,"$(P)SGM$(N):sel_desc_1.SDIS") -#! Link("$(P)SGM$(N):sel_desc_1.SDIS","$(P)SGM$(N):sel_desc_1/SDIS") -#! Field("$(P)SGM$(N):sel_desc_1.SELL",16777215,0,"$(P)SGM$(N):sel_desc_1.SELL") -#! Link("$(P)SGM$(N):sel_desc_1.SELL","$(P)SGM$(N):sel_desc_1/SELL") -#! Field("$(P)SGM$(N):sel_desc_1.LNK1",16777215,1,"$(P)SGM$(N):sel_desc_1.LNK1") -#! Link("$(P)SGM$(N):sel_desc_1.LNK1","$(P)SGM$(N):stripeDesc.VAL") -#! Field("$(P)SGM$(N):sel_desc_1.LNK2",16777215,1,"$(P)SGM$(N):sel_desc_1.LNK2") -#! Link("$(P)SGM$(N):sel_desc_1.LNK2","$(P)SGM$(N):stripeDesc.VAL") -#! Field("$(P)SGM$(N):sel_desc_1.LNK3",16777215,1,"$(P)SGM$(N):sel_desc_1.LNK3") -#! Link("$(P)SGM$(N):sel_desc_1.LNK3","$(P)SGM$(N):stripeDesc.VAL") -#! Field("$(P)SGM$(N):sel_desc_1.LNK4",16777215,1,"$(P)SGM$(N):sel_desc_1.LNK4") -#! Link("$(P)SGM$(N):sel_desc_1.LNK4","$(P)SGM$(N):stripeDesc.VAL") -#! Field("$(P)SGM$(N):sel_desc_1.LNK5",16777215,1,"$(P)SGM$(N):sel_desc_1.LNK5") -#! Link("$(P)SGM$(N):sel_desc_1.LNK5","$(P)SGM$(N):stripeDesc.VAL") -#! Field("$(P)SGM$(N):sel_desc_1.LNK6",16777215,1,"$(P)SGM$(N):sel_desc_1.LNK6") -#! Link("$(P)SGM$(N):sel_desc_1.LNK6","$(P)SGM$(N):stripeDesc.VAL") -#! Field("$(P)SGM$(N):sel_desc_1.LNK7",16777215,1,"$(P)SGM$(N):sel_desc_1.LNK7") -#! Link("$(P)SGM$(N):sel_desc_1.LNK7","$(P)SGM$(N):stripeDesc.VAL") -#! Field("$(P)SGM$(N):sel_desc_1.LNK8",16777215,1,"$(P)SGM$(N):sel_desc_1.LNK8") -#! Link("$(P)SGM$(N):sel_desc_1.LNK8","$(P)SGM$(N):stripeDesc.VAL") -#! Field("$(P)SGM$(N):sel_desc_1.LNK9",16777215,1,"$(P)SGM$(N):sel_desc_1.LNK9") -#! Link("$(P)SGM$(N):sel_desc_1.LNK9","$(P)SGM$(N):stripeDesc.VAL") -#! Field("$(P)SGM$(N):sel_desc_1.LNKA",16777215,1,"$(P)SGM$(N):sel_desc_1.LNKA") -#! Link("$(P)SGM$(N):sel_desc_1.LNKA","$(P)SGM$(N):stripeDesc.VAL") -#! Connector("$(P)SGM$(N):sel_desc_1/SELL","$(P)SGM$(N):selVal.VAL",3240,2630,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_desc_1/SDIS","$(P)SGM$(N):selBank.VAL",3220,2530,16777215,"",0) -#! Record("$(P)SGM$(N):sel_desc_2",3340,3059,0,0,"$(P)SGM$(N):sel_desc_2") -#! Field("$(P)SGM$(N):sel_desc_2.SDIS",16777215,0,"$(P)SGM$(N):sel_desc_2.SDIS") -#! Link("$(P)SGM$(N):sel_desc_2.SDIS","$(P)SGM$(N):sel_desc_2/SDIS") -#! Field("$(P)SGM$(N):sel_desc_2.SELL",16777215,0,"$(P)SGM$(N):sel_desc_2.SELL") -#! Link("$(P)SGM$(N):sel_desc_2.SELL","$(P)SGM$(N):sel_desc_2/SELL") -#! Field("$(P)SGM$(N):sel_desc_2.LNK1",16777215,1,"$(P)SGM$(N):sel_desc_2.LNK1") -#! Link("$(P)SGM$(N):sel_desc_2.LNK1","$(P)SGM$(N):stripeDesc.VAL") -#! Field("$(P)SGM$(N):sel_desc_2.LNK2",16777215,1,"$(P)SGM$(N):sel_desc_2.LNK2") -#! Link("$(P)SGM$(N):sel_desc_2.LNK2","$(P)SGM$(N):stripeDesc.VAL") -#! Field("$(P)SGM$(N):sel_desc_2.LNK3",16777215,1,"$(P)SGM$(N):sel_desc_2.LNK3") -#! Link("$(P)SGM$(N):sel_desc_2.LNK3","$(P)SGM$(N):stripeDesc.VAL") -#! Field("$(P)SGM$(N):sel_desc_2.LNK4",16777215,1,"$(P)SGM$(N):sel_desc_2.LNK4") -#! Link("$(P)SGM$(N):sel_desc_2.LNK4","$(P)SGM$(N):stripeDesc.VAL") -#! Field("$(P)SGM$(N):sel_desc_2.LNK5",16777215,1,"$(P)SGM$(N):sel_desc_2.LNK5") -#! Link("$(P)SGM$(N):sel_desc_2.LNK5","$(P)SGM$(N):stripeDesc.VAL") -#! Field("$(P)SGM$(N):sel_desc_2.LNK6",16777215,1,"$(P)SGM$(N):sel_desc_2.LNK6") -#! Link("$(P)SGM$(N):sel_desc_2.LNK6","$(P)SGM$(N):stripeDesc.VAL") -#! Connector("$(P)SGM$(N):sel_desc_2/SDIS","$(P)SGM$(N):selBank.VAL",3220,2690,16777215,"",0) -#! Connector("$(P)SGM$(N):sel_desc_2/SELL","$(P)SGM$(N):selVal.VAL",3240,2790,16777215,"",0) -#! Record("$(P)SGM$(N):dPut",1420,1055,0,1,"$(P)SGM$(N):dPut") -#! Field("$(P)SGM$(N):dPut.SDIS",16777215,0,"$(P)SGM$(N):dPut.SDIS") -#! Link("$(P)SGM$(N):dPut.SDIS","$(P)SGM$(N):dPut/SDIS") -#! Field("$(P)SGM$(N):dPut.OUT",16777215,1,"$(P)SGM$(N):dPut.OUT") -#! Link("$(P)SGM$(N):dPut.OUT","$(P)SGM$(N):T1.B") -#! Field("$(P)SGM$(N):dPut.VAL",16777215,1,"$(P)SGM$(N):dPut.VAL") -#! Connector("$(P)SGM$(N):dPut/SDIS","$(P)SGM$(N):init.PACT",1400,840,16777215,"",0) +#! Record("$(P)$(SGM):2Theta",900,1383,0,0,"$(P)$(SGM):2Theta") +#! Field("$(P)$(SGM):2Theta.OUT",16777215,1,"$(P)$(SGM):2Theta.OUT") +#! Link("$(P)$(SGM):2Theta.OUT","$(P)$(SGM):2Theta/OUT") +#! Field("$(P)$(SGM):2Theta.VAL",16777215,1,"$(P)$(SGM):2Theta.VAL") +#! Connector("$(P)$(SGM):2Theta/OUT","$(P)$(SGM):T1.D",1720,1620,16777215,"",0) +#! Record("$(P)$(SGM):Energy",900,1572,0,0,"$(P)$(SGM):Energy") +#! Field("$(P)$(SGM):Energy.PACT",16777215,1,"$(P)$(SGM):Energy.PACT") +#! Field("$(P)$(SGM):Energy.DRVH",16777215,0,"$(P)$(SGM):Energy.DRVH") +#! Field("$(P)$(SGM):Energy.DRVL",16777215,0,"$(P)$(SGM):Energy.DRVL") +#! Field("$(P)$(SGM):Energy.VAL",16777215,1,"$(P)$(SGM):Energy.VAL") +#! Field("$(P)$(SGM):Energy.OUT",16777215,1,"$(P)$(SGM):Energy.OUT") +#! Link("$(P)$(SGM):Energy.OUT","$(P)$(SGM):T1.E") +#! Record("$(P)$(SGM):EnergyB",1320,1600,0,0,"$(P)$(SGM):EnergyB") +#! Field("$(P)$(SGM):EnergyB.SDIS",16777215,0,"$(P)$(SGM):EnergyB.SDIS") +#! Link("$(P)$(SGM):EnergyB.SDIS","$(P)$(SGM):Energy.PACT") +#! Field("$(P)$(SGM):EnergyB.VAL",16777215,1,"$(P)$(SGM):EnergyB.VAL") +#! Field("$(P)$(SGM):EnergyB.OUT",16777215,0,"$(P)$(SGM):EnergyB.OUT") +#! Link("$(P)$(SGM):EnergyB.OUT","$(P)$(SGM):EnergyB/OUT") +#! Connector("$(P)$(SGM):EnergyB/OUT","$(P)$(SGM):Energy.VAL",1260,1760,16777215,"",0) +#! Record("$(P)$(SGM):EnergyRBV",2860,1066,0,0,"$(P)$(SGM):EnergyRBV") +#! Field("$(P)$(SGM):EnergyRBV.VAL",16777215,1,"$(P)$(SGM):EnergyRBV.VAL") +#! Record("$(P)$(SGM):GrMotorVal",5780,2780,0,0,"$(P)$(SGM):GrMotorVal") +#! Field("$(P)$(SGM):GrMotorVal.OUT",16777215,1,"$(P)$(SGM):GrMotorVal.OUT") +#! Link("$(P)$(SGM):GrMotorVal.OUT","$(P)$(SGM):GrMotorVal/OUT") +#! Field("$(P)$(SGM):GrMotorVal.VAL",16777215,0,"$(P)$(SGM):GrMotorVal.VAL") +#! Connector("$(P)$(SGM):GrMotorVal/OUT","$(P)$(SGM):GrMotPut1.A",6020,2930,16777215,"",0) +#! Record("$(P)$(SGM):Lambda",900,1792,0,0,"$(P)$(SGM):Lambda") +#! Field("$(P)$(SGM):Lambda.PACT",16777215,1,"$(P)$(SGM):Lambda.PACT") +#! Field("$(P)$(SGM):Lambda.DRVH",16777215,0,"$(P)$(SGM):Lambda.DRVH") +#! Field("$(P)$(SGM):Lambda.DRVL",16777215,0,"$(P)$(SGM):Lambda.DRVL") +#! Field("$(P)$(SGM):Lambda.VAL",16777215,1,"$(P)$(SGM):Lambda.VAL") +#! Field("$(P)$(SGM):Lambda.OUT",16777215,1,"$(P)$(SGM):Lambda.OUT") +#! Link("$(P)$(SGM):Lambda.OUT","$(P)$(SGM):Lambda/OUT") +#! Connector("$(P)$(SGM):Lambda/OUT","$(P)$(SGM):T1.F",1720,1870,16777215,"",0) +#! Record("$(P)$(SGM):LambdaB",1320,1820,0,0,"$(P)$(SGM):LambdaB") +#! Field("$(P)$(SGM):LambdaB.SDIS",16777215,0,"$(P)$(SGM):LambdaB.SDIS") +#! Link("$(P)$(SGM):LambdaB.SDIS","$(P)$(SGM):Lambda.PACT") +#! Field("$(P)$(SGM):LambdaB.VAL",16777215,1,"$(P)$(SGM):LambdaB.VAL") +#! Field("$(P)$(SGM):LambdaB.OUT",16777215,0,"$(P)$(SGM):LambdaB.OUT") +#! Link("$(P)$(SGM):LambdaB.OUT","$(P)$(SGM):LambdaB/OUT") +#! Connector("$(P)$(SGM):LambdaB/OUT","$(P)$(SGM):Lambda.VAL",1260,1980,16777215,"",0) +#! Record("$(P)$(SGM):LambdaRBV",2860,966,0,0,"$(P)$(SGM):LambdaRBV") +#! Field("$(P)$(SGM):LambdaRBV.VAL",16777215,1,"$(P)$(SGM):LambdaRBV.VAL") +#! Record("$(P)$(SGM):R",2240,1283,0,0,"$(P)$(SGM):R") +#! Field("$(P)$(SGM):R.OUT",16777215,1,"$(P)$(SGM):R.OUT") +#! Link("$(P)$(SGM):R.OUT","$(P)$(SGM):T2.B") +#! Field("$(P)$(SGM):R.VAL",16777215,1,"$(P)$(SGM):R.VAL") +#! Record("$(P)$(SGM):StripeWidth",5780,2935,0,0,"$(P)$(SGM):StripeWidth") +#! Field("$(P)$(SGM):StripeWidth.VAL",16777215,1,"$(P)$(SGM):StripeWidth.VAL") +#! Record("$(P)$(SGM):d",1200,928,0,0,"$(P)$(SGM):d") +#! Field("$(P)$(SGM):d.DOL",16777215,0,"$(P)$(SGM):d.DOL") +#! Link("$(P)$(SGM):d.DOL","$(P)$(SGM):d/DOL") +#! Field("$(P)$(SGM):d.VAL",16777215,0,"$(P)$(SGM):d.VAL") +#! Field("$(P)$(SGM):d.OUT",16777215,1,"$(P)$(SGM):d.OUT") +#! Link("$(P)$(SGM):d.OUT","$(P)$(SGM):dPut.VAL") +#! Connector("$(P)$(SGM):d/DOL","$(P)$(SGM):dCalc.VAL",1140,1050,16777215,"",0) +#! Record("$(P)$(SGM):gDensity",1200,643,0,0,"$(P)$(SGM):gDensity") +#! Field("$(P)$(SGM):gDensity.PROC",16777215,0,"$(P)$(SGM):gDensity.PROC") +#! Field("$(P)$(SGM):gDensity.VAL",16777215,1,"$(P)$(SGM):gDensity.VAL") +#! Field("$(P)$(SGM):gDensity.OUT",16777215,1,"$(P)$(SGM):gDensity.OUT") +#! Link("$(P)$(SGM):gDensity.OUT","$(P)$(SGM):gDensity/OUT1") +#! Connector("$(P)$(SGM):gDensity/OUT1","$(P)$(SGM):gDensity/OUT",1420,865,16777215,"",0) +#! Connector("$(P)$(SGM):gDensity/OUT","$(P)$(SGM):gDensity/OUT2",1290,880,16777215,"",0) +#! Connector("$(P)$(SGM):gDensity/OUT2","$(P)$(SGM):dCalc.A",1160,925,16777215,"",0) +#! Record("$(P)$(SGM):len",1200,1203,0,0,"$(P)$(SGM):len") +#! Field("$(P)$(SGM):len.VAL",16777215,0,"$(P)$(SGM):len.VAL") +#! Field("$(P)$(SGM):len.OUT",16777215,1,"$(P)$(SGM):len.OUT") +#! Link("$(P)$(SGM):len.OUT","$(P)$(SGM):len/OUT") +#! Connector("$(P)$(SGM):len/OUT","$(P)$(SGM):T1.C",1740,1530,16777215,"",0) +#! Record("$(P)$(SGM):phi",900,2003,0,0,"$(P)$(SGM):phi") +#! Field("$(P)$(SGM):phi.PACT",16777215,1,"$(P)$(SGM):phi.PACT") +#! Field("$(P)$(SGM):phi.DRVH",16777215,0,"$(P)$(SGM):phi.DRVH") +#! Field("$(P)$(SGM):phi.DRVL",16777215,0,"$(P)$(SGM):phi.DRVL") +#! Field("$(P)$(SGM):phi.VAL",16777215,1,"$(P)$(SGM):phi.VAL") +#! Field("$(P)$(SGM):phi.OUT",16777215,1,"$(P)$(SGM):phi.OUT") +#! Link("$(P)$(SGM):phi.OUT","$(P)$(SGM):phi/OUT") +#! Connector("$(P)$(SGM):phi/OUT","$(P)$(SGM):T1.G",1740,2000,16777215,"",0) +#! Record("$(P)$(SGM):phiB",1320,2060,0,0,"$(P)$(SGM):phiB") +#! Field("$(P)$(SGM):phiB.SDIS",16777215,0,"$(P)$(SGM):phiB.SDIS") +#! Link("$(P)$(SGM):phiB.SDIS","$(P)$(SGM):phi.PACT") +#! Field("$(P)$(SGM):phiB.VAL",16777215,1,"$(P)$(SGM):phiB.VAL") +#! Field("$(P)$(SGM):phiB.OUT",16777215,1,"$(P)$(SGM):phiB.OUT") +#! Link("$(P)$(SGM):phiB.OUT","$(P)$(SGM):phiB/OUT") +#! Connector("$(P)$(SGM):phiB/OUT","$(P)$(SGM):phi.VAL",1540,2220,16777215,"",0) +#! Record("$(P)$(SGM):phiRBV",2860,866,0,0,"$(P)$(SGM):phiRBV") +#! Field("$(P)$(SGM):phiRBV.VAL",16777215,1,"$(P)$(SGM):phiRBV.VAL") +#! Record("$(P)$(SGM):xOff",5780,3915,0,0,"$(P)$(SGM):xOff") +#! Field("$(P)$(SGM):xOff.VAL",16777215,1,"$(P)$(SGM):xOff.VAL") +#! Record("$(P)$(SGM):saveAuto",4520,1652,0,0,"$(P)$(SGM):saveAuto") +#! Field("$(P)$(SGM):saveAuto.INP",16777215,0,"$(P)$(SGM):saveAuto.INP") +#! Link("$(P)$(SGM):saveAuto.INP","$(P)$(SGM):saveAuto/INP1") +#! Field("$(P)$(SGM):saveAuto.VAL",16777215,1,"$(P)$(SGM):saveAuto.VAL") +#! Field("$(P)$(SGM):saveAuto.FLNK",16777215,1,"$(P)$(SGM):saveAuto.FLNK") +#! Link("$(P)$(SGM):saveAuto.FLNK","$(P)$(SGM):saveAuto/FLNK") +#! Connector("$(P)$(SGM):saveAuto/INP1","$(P)$(SGM):auto.VAL",4400,1710,16777215,"",0) +#! Connector("$(P)$(SGM):saveAuto/FLNK","$(P)$(SGM):saveAuto/FLNK1",4740,1845,16777215,"",0) +#! Connector("$(P)$(SGM):saveAuto/FLNK1","$(P)$(SGM):saveAuto/FLNK2",4590,1860,16777215,"",0) +#! Connector("$(P)$(SGM):saveAuto/FLNK2","$(P)$(SGM):toManual",4440,1871,16777215,"",0) +#! Record("$(P)$(SGM):auto",4520,1506,0,0,"$(P)$(SGM):auto") +#! Field("$(P)$(SGM):auto.VAL",16777215,1,"$(P)$(SGM):auto.VAL") +#! Record("$(P)$(SGM):autoMove",2960,1506,0,0,"$(P)$(SGM):autoMove") +#! Field("$(P)$(SGM):autoMove.SDIS",16777215,1,"$(P)$(SGM):autoMove.SDIS") +#! Link("$(P)$(SGM):autoMove.SDIS","$(P)$(SGM):autoMove/SDIS") +#! Field("$(P)$(SGM):autoMove.FLNK",16777215,1,"$(P)$(SGM):autoMove.FLNK") +#! Link("$(P)$(SGM):autoMove.FLNK","$(P)$(SGM):autoMove/FLNK") +#! Connector("$(P)$(SGM):autoMove/FLNK","$(P)$(SGM):move",3540,1626,16777215,"",0) +#! Connector("$(P)$(SGM):autoMove/SDIS","$(P)$(SGM):auto.VAL",4360,1630,16777215,"",0) +#! Record("$(P)$(SGM):exists",2480,2395,0,0,"$(P)$(SGM):exists") +#! Field("$(P)$(SGM):exists.VAL",16777215,1,"$(P)$(SGM):exists.VAL") +#! Field("$(P)$(SGM):exists.FLNK",16777215,1,"$(P)$(SGM):exists.FLNK") +#! Link("$(P)$(SGM):exists.FLNK","$(P)$(SGM):exists/FLNK") +#! Connector("$(P)$(SGM):exists/FLNK","$(P)$(SGM):gratingPut",2700,2498,16777215,"",0) +#! Record("$(P)$(SGM):hold",3240,829,0,0,"$(P)$(SGM):hold") +#! Field("$(P)$(SGM):hold.VAL",16777215,1,"$(P)$(SGM):hold.VAL") +#! Record("$(P)$(SGM):moving",3860,1709,0,0,"$(P)$(SGM):moving") +#! Field("$(P)$(SGM):moving.VAL",16777215,0,"$(P)$(SGM):moving.VAL") +#! Record("$(P)$(SGM):restoreAuto",4820,1658,0,0,"$(P)$(SGM):restoreAuto") +#! Field("$(P)$(SGM):restoreAuto.DOL",16777215,0,"$(P)$(SGM):restoreAuto.DOL") +#! Link("$(P)$(SGM):restoreAuto.DOL","$(P)$(SGM):saveAuto.VAL") +#! Field("$(P)$(SGM):restoreAuto.VAL",16777215,0,"$(P)$(SGM):restoreAuto.VAL") +#! Field("$(P)$(SGM):restoreAuto.OUT",16777215,1,"$(P)$(SGM):restoreAuto.OUT") +#! Link("$(P)$(SGM):restoreAuto.OUT","$(P)$(SGM):restoreAuto/OUT") +#! Connector("$(P)$(SGM):restoreAuto/OUT","$(P)$(SGM):auto.VAL",5040,1740,16777215,"",0) +#! Record("$(P)$(SGM):set",5460,4192,0,0,"$(P)$(SGM):set") +#! Field("$(P)$(SGM):set.VAL",16777215,1,"$(P)$(SGM):set.VAL") +#! Field("$(P)$(SGM):set.OUT",16777215,1,"$(P)$(SGM):set.OUT") +#! Link("$(P)$(SGM):set.OUT","$(P)$(SGM):set/OUT") +#! Field("$(P)$(SGM):set.FLNK",16777215,1,"$(P)$(SGM):set.FLNK") +#! Link("$(P)$(SGM):set.FLNK","$(P)$(SGM):set/FLNK") +#! Connector("$(P)$(SGM):set/OUT",null,5960,4360,16777215,"",2) +#! Connector("$(P)$(SGM):set/FLNK","$(P)$(SGM):set1",5700,4386,16777215,"",0) +#! Record("$(P)$(SGM):set1",5740,4346,0,0,"$(P)$(SGM):set1") +#! Field("$(P)$(SGM):set1.DOL",16777215,0,"$(P)$(SGM):set1.DOL") +#! Link("$(P)$(SGM):set1.DOL","$(P)$(SGM):set1/DOL") +#! Field("$(P)$(SGM):set1.OUT",16777215,1,"$(P)$(SGM):set1.OUT") +#! Link("$(P)$(SGM):set1.OUT","$(P)$(SGM):set1/OUT") +#! Connector("$(P)$(SGM):set1/OUT",null,5960,4500,16777215,"",2) +#! Connector("$(P)$(SGM):set1/DOL","$(P)$(SGM):set.VAL",5680,4400,16777215,"",0) +#! Record("$(P)$(SGM):toManual",4520,1826,0,0,"$(P)$(SGM):toManual") +#! Field("$(P)$(SGM):toManual.OUT",16777215,1,"$(P)$(SGM):toManual.OUT") +#! Link("$(P)$(SGM):toManual.OUT","$(P)$(SGM):toManual/OUT1") +#! Field("$(P)$(SGM):toManual.FLNK",16777215,1,"$(P)$(SGM):toManual.FLNK") +#! Link("$(P)$(SGM):toManual.FLNK","$(P)$(SGM):toManual/FLNK") +#! Connector("$(P)$(SGM):toManual/OUT1","$(P)$(SGM):auto.VAL",5040,1790,16777215,"",0) +#! Connector("$(P)$(SGM):toManual/FLNK","$(P)$(SGM):toManual/FLNK1",4740,1995,16777215,"",0) +#! Connector("$(P)$(SGM):toManual/FLNK1","$(P)$(SGM):selBank",4622,2020,16777215,"",0) +#! Record("$(P)$(SGM):dCalc",1200,832,0,0,"$(P)$(SGM):dCalc") +#! Field("$(P)$(SGM):dCalc.A",16777215,0,"$(P)$(SGM):dCalc.A") +#! Field("$(P)$(SGM):dCalc.VAL",16777215,0,"$(P)$(SGM):dCalc.VAL") +#! Field("$(P)$(SGM):dCalc.FLNK",16777215,1,"$(P)$(SGM):dCalc.FLNK") +#! Link("$(P)$(SGM):dCalc.FLNK","$(P)$(SGM):dCalc/FLNK") +#! Connector("$(P)$(SGM):dCalc/FLNK","$(P)$(SGM):dCalc/FLNK1",1420,1025,16777215,"",0) +#! Connector("$(P)$(SGM):dCalc/FLNK1","$(P)$(SGM):dCalc/FLNK2",1290,1040,16777215,"",0) +#! Connector("$(P)$(SGM):dCalc/FLNK2","$(P)$(SGM):d",1160,1027,16777215,"",0) +#! Record("$(P)$(SGM):selBank",4540,2000,0,0,"$(P)$(SGM):selBank") +#! Field("$(P)$(SGM):selBank.VAL",16777215,1,"$(P)$(SGM):selBank.VAL") +#! Field("$(P)$(SGM):selBank.INPA",16777215,0,"$(P)$(SGM):selBank.INPA") +#! Link("$(P)$(SGM):selBank.INPA","$(P)$(SGM):selBank/INPA") +#! Field("$(P)$(SGM):selBank.FLNK",16777215,1,"$(P)$(SGM):selBank.FLNK") +#! Link("$(P)$(SGM):selBank.FLNK","$(P)$(SGM):selBank/FLNK2") +#! Connector("$(P)$(SGM):selBank/INPA","$(P)$(SGM):grating.VAL",4360,1920,16777215,"",0) +#! Connector("$(P)$(SGM):selBank/FLNK2","$(P)$(SGM):selBank/FLNK",4760,2165,16777215,"",0) +#! Connector("$(P)$(SGM):selBank/FLNK","$(P)$(SGM):selBank/FLNK1",4620,2180,16777215,"",0) +#! Connector("$(P)$(SGM):selBank/FLNK1","$(P)$(SGM):selVal",4480,2195,16777215,"",0) +#! Record("$(P)$(SGM):selVal",4540,2160,0,0,"$(P)$(SGM):selVal") +#! Field("$(P)$(SGM):selVal.INPA",16777215,0,"$(P)$(SGM):selVal.INPA") +#! Link("$(P)$(SGM):selVal.INPA","$(P)$(SGM):selVal/INPA") +#! Field("$(P)$(SGM):selVal.VAL",16777215,1,"$(P)$(SGM):selVal.VAL") +#! Field("$(P)$(SGM):selVal.FLNK",16777215,1,"$(P)$(SGM):selVal.FLNK") +#! Link("$(P)$(SGM):selVal.FLNK","$(P)$(SGM):checkExists") +#! Connector("$(P)$(SGM):selVal/INPA","$(P)$(SGM):grating.VAL",4360,1990,16777215,"",0) +#! Record("$(P)$(SGM):checkExists",4960,2255,0,0,"$(P)$(SGM):checkExists") +#! Field("$(P)$(SGM):checkExists.LNK1",16777215,1,"$(P)$(SGM):checkExists.LNK1") +#! Link("$(P)$(SGM):checkExists.LNK1","$(P)$(SGM):checkExists/LNK1") +#! Field("$(P)$(SGM):checkExists.LNK2",16777215,1,"$(P)$(SGM):checkExists.LNK2") +#! Link("$(P)$(SGM):checkExists.LNK2","$(P)$(SGM):checkExists/LNK2") +#! Connector("$(P)$(SGM):checkExists/LNK2","$(P)$(SGM):sel_exists_2",5240,2324,16777215,"",0) +#! Connector("$(P)$(SGM):checkExists/LNK1","$(P)$(SGM):sel_exists_1",5240,2144,16777215,"",0) +#! Record("$(P)$(SGM):gPut_1",3340,2523,0,0,"$(P)$(SGM):gPut_1") +#! Field("$(P)$(SGM):gPut_1.LNK1",16777215,1,"$(P)$(SGM):gPut_1.LNK1") +#! Link("$(P)$(SGM):gPut_1.LNK1","$(P)$(SGM):gPut_1/LNK1") +#! Field("$(P)$(SGM):gPut_1.LNK2",16777215,1,"$(P)$(SGM):gPut_1.LNK2") +#! Link("$(P)$(SGM):gPut_1.LNK2","$(P)$(SGM):gPut_1/LNK2") +#! Field("$(P)$(SGM):gPut_1.LNK3",16777215,1,"$(P)$(SGM):gPut_1.LNK3") +#! Link("$(P)$(SGM):gPut_1.LNK3","$(P)$(SGM):gPut_1/LNK3") +#! Field("$(P)$(SGM):gPut_1.LNK4",16777215,1,"$(P)$(SGM):gPut_1.LNK4") +#! Link("$(P)$(SGM):gPut_1.LNK4","$(P)$(SGM):gPut_1/LNK4") +#! Field("$(P)$(SGM):gPut_1.LNK5",16777215,1,"$(P)$(SGM):gPut_1.LNK5") +#! Link("$(P)$(SGM):gPut_1.LNK5","$(P)$(SGM):gPut_1/LNK5") +#! Field("$(P)$(SGM):gPut_1.LNK6",16777215,1,"$(P)$(SGM):gPut_1.LNK6") +#! Link("$(P)$(SGM):gPut_1.LNK6","$(P)$(SGM):gPut_1/LNK6") +#! Field("$(P)$(SGM):gPut_1.FLNK",16777215,1,"$(P)$(SGM):gPut_1.FLNK") +#! Link("$(P)$(SGM):gPut_1.FLNK","$(P)$(SGM):gPut_1/FLNK") +#! Connector("$(P)$(SGM):gPut_1/LNK6","$(P)$(SGM):sel_Whigh_2",3900,3571,16777215,"",0) +#! Connector("$(P)$(SGM):gPut_1/LNK5","$(P)$(SGM):sel_Whigh_1",3920,3380,16777215,"",0) +#! Connector("$(P)$(SGM):gPut_1/LNK4","$(P)$(SGM):sel_Wlow_2",3940,3231,16777215,"",0) +#! Connector("$(P)$(SGM):gPut_1/LNK3","$(P)$(SGM):sel_Wlow_1",3960,3030,16777215,"",0) +#! Connector("$(P)$(SGM):gPut_1/LNK2","$(P)$(SGM):sel_R_2",3980,2861,16777215,"",0) +#! Connector("$(P)$(SGM):gPut_1/LNK1","$(P)$(SGM):sel_R_1",4000,2680,16777215,"",0) +#! Connector("$(P)$(SGM):gPut_1/FLNK","$(P)$(SGM):gPut_2",3780,2703,16777215,"",0) +#! Record("$(P)$(SGM):gPut_2",5080,2532,0,0,"$(P)$(SGM):gPut_2") +#! Field("$(P)$(SGM):gPut_2.LNK1",16777215,1,"$(P)$(SGM):gPut_2.LNK1") +#! Link("$(P)$(SGM):gPut_2.LNK1","$(P)$(SGM):gPut_2/LNK1") +#! Field("$(P)$(SGM):gPut_2.LNK2",16777215,1,"$(P)$(SGM):gPut_2.LNK2") +#! Link("$(P)$(SGM):gPut_2.LNK2","$(P)$(SGM):gPut_2/LNK2") +#! Field("$(P)$(SGM):gPut_2.LNK3",16777215,1,"$(P)$(SGM):gPut_2.LNK3") +#! Link("$(P)$(SGM):gPut_2.LNK3","$(P)$(SGM):gPut_2/LNK3") +#! Field("$(P)$(SGM):gPut_2.LNK4",16777215,1,"$(P)$(SGM):gPut_2.LNK4") +#! Link("$(P)$(SGM):gPut_2.LNK4","$(P)$(SGM):gPut_2/LNK4") +#! Field("$(P)$(SGM):gPut_2.FLNK",16777215,1,"$(P)$(SGM):gPut_2.FLNK") +#! Link("$(P)$(SGM):gPut_2.FLNK","$(P)$(SGM):gPut_2/FLNK1") +#! Connector("$(P)$(SGM):gPut_2/FLNK1","$(P)$(SGM):gPut_2/FLNK",5780,1585,16777215,"",0) +#! Connector("$(P)$(SGM):gPut_2/FLNK","$(P)$(SGM):init",3287,420,16777215,"",0) +#! Connector("$(P)$(SGM):gPut_2/LNK4","$(P)$(SGM):sel_xOff_2",5320,3211,16777215,"",0) +#! Connector("$(P)$(SGM):gPut_2/LNK3","$(P)$(SGM):sel_xOff_1",5340,3000,16777215,"",0) +#! Connector("$(P)$(SGM):gPut_2/LNK2","$(P)$(SGM):sel_loc_2",5360,2861,16777215,"",0) +#! Connector("$(P)$(SGM):gPut_2/LNK1","$(P)$(SGM):sel_loc_1",5380,2670,16777215,"",0) +#! Record("$(P)$(SGM):gratingPut",2800,2393,0,0,"$(P)$(SGM):gratingPut") +#! Field("$(P)$(SGM):gratingPut.SDIS",16777215,0,"$(P)$(SGM):gratingPut.SDIS") +#! Link("$(P)$(SGM):gratingPut.SDIS","$(P)$(SGM):gratingPut/SDIS") +#! Field("$(P)$(SGM):gratingPut.FLNK",16777215,1,"$(P)$(SGM):gratingPut.FLNK") +#! Link("$(P)$(SGM):gratingPut.FLNK","$(P)$(SGM):gratingPut/FLNK") +#! Field("$(P)$(SGM):gratingPut.LNK1",16777215,1,"$(P)$(SGM):gratingPut.LNK1") +#! Link("$(P)$(SGM):gratingPut.LNK1","$(P)$(SGM):gratingPut/LNK1") +#! Field("$(P)$(SGM):gratingPut.LNK2",16777215,1,"$(P)$(SGM):gratingPut.LNK2") +#! Link("$(P)$(SGM):gratingPut.LNK2","$(P)$(SGM):gratingPut/LNK2") +#! Field("$(P)$(SGM):gratingPut.LNK3",16777215,1,"$(P)$(SGM):gratingPut.LNK3") +#! Link("$(P)$(SGM):gratingPut.LNK3","$(P)$(SGM):gratingPut/LNK3") +#! Field("$(P)$(SGM):gratingPut.LNK4",16777215,1,"$(P)$(SGM):gratingPut.LNK4") +#! Link("$(P)$(SGM):gratingPut.LNK4","$(P)$(SGM):gratingPut/LNK4") +#! Field("$(P)$(SGM):gratingPut.LNK5",16777215,1,"$(P)$(SGM):gratingPut.LNK5") +#! Link("$(P)$(SGM):gratingPut.LNK5","$(P)$(SGM):gratingPut/LNK5") +#! Field("$(P)$(SGM):gratingPut.LNK6",16777215,1,"$(P)$(SGM):gratingPut.LNK6") +#! Link("$(P)$(SGM):gratingPut.LNK6","$(P)$(SGM):gratingPut/LNK6") +#! Connector("$(P)$(SGM):gratingPut/LNK6","$(P)$(SGM):sel_den_2",3060,3531,16777215,"",0) +#! Connector("$(P)$(SGM):gratingPut/LNK5","$(P)$(SGM):sel_den_1",3080,3350,16777215,"",0) +#! Connector("$(P)$(SGM):gratingPut/LNK4","$(P)$(SGM):sel_m_2",3100,3224,16777215,"",0) +#! Connector("$(P)$(SGM):gratingPut/LNK3","$(P)$(SGM):sel_m_1",3120,3034,16777215,"",0) +#! Connector("$(P)$(SGM):gratingPut/LNK2","$(P)$(SGM):sel_desc_2",3140,2904,16777215,"",0) +#! Connector("$(P)$(SGM):gratingPut/LNK1","$(P)$(SGM):sel_desc_1",3160,2724,16777215,"",0) +#! Connector("$(P)$(SGM):gratingPut/FLNK","$(P)$(SGM):gPut_1",3180,2605,16777215,"",0) +#! Connector("$(P)$(SGM):gratingPut/SDIS","$(P)$(SGM):exists.VAL",2720,2540,16777215,"",0) +#! Record("$(P)$(SGM):m",1200,552,0,0,"$(P)$(SGM):m") +#! Field("$(P)$(SGM):m.VAL",16777215,1,"$(P)$(SGM):m.VAL") +#! Field("$(P)$(SGM):m.OUT",16777215,1,"$(P)$(SGM):m.OUT") +#! Link("$(P)$(SGM):m.OUT","$(P)$(SGM):m/OUT") +#! Connector("$(P)$(SGM):m/OUT","$(P)$(SGM):T1.A",1780,1170,16777215,"",0) +#! Record("$(P)$(SGM):grating",4100,1363,0,0,"$(P)$(SGM):grating") +#! Field("$(P)$(SGM):grating.FLNK",16777215,1,"$(P)$(SGM):grating.FLNK") +#! Link("$(P)$(SGM):grating.FLNK","$(P)$(SGM):saveAuto") +#! Field("$(P)$(SGM):grating.VAL",16777215,1,"$(P)$(SGM):grating.VAL") +#! Field("$(P)$(SGM):grating.PROC",16777215,0,"$(P)$(SGM):grating.PROC") +#! Record("$(P)$(SGM):rTrack",3240,1618,0,0,"$(P)$(SGM):rTrack") +#! Field("$(P)$(SGM):rTrack.RVAL",16777215,1,"$(P)$(SGM):rTrack.RVAL") +#! Field("$(P)$(SGM):rTrack.VAL",16777215,1,"$(P)$(SGM):rTrack.VAL") +#! Record("$(P)$(SGM):init",600,122,0,1,"$(P)$(SGM):init") +#! Field("$(P)$(SGM):init.LNK1",16777215,1,"$(P)$(SGM):init.LNK1") +#! Link("$(P)$(SGM):init.LNK1","$(P)$(SGM):init/LNK1") +#! Field("$(P)$(SGM):init.LNK2",16777215,1,"$(P)$(SGM):init.LNK2") +#! Link("$(P)$(SGM):init.LNK2","$(P)$(SGM):init/LNK2") +#! Field("$(P)$(SGM):init.LNK3",16777215,1,"$(P)$(SGM):init.LNK3") +#! Link("$(P)$(SGM):init.LNK3","$(P)$(SGM):init/LNK3") +#! Field("$(P)$(SGM):init.LNK4",16777215,1,"$(P)$(SGM):init.LNK4") +#! Link("$(P)$(SGM):init.LNK4","$(P)$(SGM):init/LNK4") +#! Field("$(P)$(SGM):init.LNK5",16777215,1,"$(P)$(SGM):init.LNK5") +#! Link("$(P)$(SGM):init.LNK5","$(P)$(SGM):init/LNK5") +#! Field("$(P)$(SGM):init.LNK6",16777215,1,"$(P)$(SGM):init.LNK6") +#! Link("$(P)$(SGM):init.LNK6","$(P)$(SGM):init/LNK6") +#! Field("$(P)$(SGM):init.DOL1",16777215,1,"$(P)$(SGM):init.DOL1") +#! Link("$(P)$(SGM):init.DOL1","$(P)$(SGM):init/DOL1") +#! Field("$(P)$(SGM):init.PACT",16777215,1,"$(P)$(SGM):init.PACT") +#! Field("$(P)$(SGM):init.DOL3",16777215,1,"$(P)$(SGM):init.DOL3") +#! Link("$(P)$(SGM):init.DOL3","$(P)$(SGM):init/DOL3") +#! Field("$(P)$(SGM):init.DOL4",16777215,1,"$(P)$(SGM):init.DOL4") +#! Link("$(P)$(SGM):init.DOL4","$(P)$(SGM):init/DOL4") +#! Field("$(P)$(SGM):init.DOL5",16777215,1,"$(P)$(SGM):init.DOL5") +#! Link("$(P)$(SGM):init.DOL5","$(P)$(SGM):R.VAL") +#! Field("$(P)$(SGM):init.DOL6",16777215,1,"$(P)$(SGM):init.DOL6") +#! Link("$(P)$(SGM):init.DOL6","$(P)$(SGM):init/DOL6") +#! Field("$(P)$(SGM):init.FLNK",16777215,0,"$(P)$(SGM):init.FLNK") +#! Link("$(P)$(SGM):init.FLNK","$(P)$(SGM):init/FLNK") +#! Connector("$(P)$(SGM):init/LNK6","$(P)$(SGM):T1.B",1760,1070,16777215,"",0) +#! Connector("$(P)$(SGM):init/LNK5","$(P)$(SGM):T2.B",2460,940,16777215,"",0) +#! Connector("$(P)$(SGM):init/LNK4","$(P)$(SGM):T1.D",1720,1070,16777215,"",0) +#! Connector("$(P)$(SGM):init/LNK3","$(P)$(SGM):T1.C",1740,1050,16777215,"",0) +#! Connector("$(P)$(SGM):init/LNK2","$(P)$(SGM):gDensity.PROC",1120,610,16777215,"",0) +#! Connector("$(P)$(SGM):init/LNK1","$(P)$(SGM):T1.A",1780,1010,16777215,"",0) +#! Connector("$(P)$(SGM):init/FLNK","$(P)$(SGM):init1",540,624,16777215,"",0) +#! Connector("$(P)$(SGM):init/DOL6","$(P)$(SGM):d.VAL",1060,870,16777215,"",0) +#! Connector("$(P)$(SGM):init/DOL4","$(P)$(SGM):2Theta.VAL",820,1070,16777215,"",0) +#! Connector("$(P)$(SGM):init/DOL3","$(P)$(SGM):len.VAL",1000,960,16777215,"",0) +#! Connector("$(P)$(SGM):init/DOL1","$(P)$(SGM):m.VAL",840,600,16777215,"",0) +#! Record("$(P)$(SGM):init1",600,519,0,0,"$(P)$(SGM):init1") +#! Field("$(P)$(SGM):init1.LNK1",16777215,1,"$(P)$(SGM):init1.LNK1") +#! Link("$(P)$(SGM):init1.LNK1","$(P)$(SGM):init1/LNK11") +#! Field("$(P)$(SGM):init1.LNK2",16777215,1,"$(P)$(SGM):init1.LNK2") +#! Connector("$(P)$(SGM):init1/LNK11","$(P)$(SGM):init1/LNK1",880,735,16777215,"",0) +#! Connector("$(P)$(SGM):init1/LNK1","$(P)$(SGM):T3.PROC",1675,740,16777215,"",0) +#! Field("$(P)$(SGM):init1.DOL2",16777215,1,"$(P)$(SGM):init1.DOL2") +#! Field("$(P)$(SGM):init1.DOL3",16777215,1,"$(P)$(SGM):init1.DOL3") +#! Field("$(P)$(SGM):init1.LNK3",16777215,1,"$(P)$(SGM):init1.LNK3") +#! Field("$(P)$(SGM):init1.LNK4",16777215,1,"$(P)$(SGM):init1.LNK4") +#! Link("$(P)$(SGM):init1.LNK4","$(P)$(SGM):sync.PROC") +#! Field("$(P)$(SGM):init1.LNK5",16777215,1,"$(P)$(SGM):init1.LNK5") +#! Link("$(P)$(SGM):init1.LNK5","$(P)$(SGM):restoreAuto.VAL") +#! Field("$(P)$(SGM):init1.LNK6",16777215,1,"$(P)$(SGM):init1.LNK6") +#! Link("$(P)$(SGM):init1.LNK6","$(P)$(SGM):grating.PROC") +#! Field("$(P)$(SGM):init1.LNK7",16777215,1,"$(P)$(SGM):init1.LNK7") +#! Link("$(P)$(SGM):init1.LNK7","$(P)$(SGM):rTrackInit.PROC") +#! Field("$(P)$(SGM):init1.LNK8",16777215,0,"$(P)$(SGM):init1.LNK8") +#! Link("$(P)$(SGM):init1.LNK8","$(P)$(SGM):delta.PROC") +#! Record("$(P)$(SGM):move",3580,1513,0,0,"$(P)$(SGM):move") +#! Field("$(P)$(SGM):move.SDIS",16777215,0,"$(P)$(SGM):move.SDIS") +#! Link("$(P)$(SGM):move.SDIS","$(P)$(SGM):move/SDIS") +#! Field("$(P)$(SGM):move.SELL",16777215,0,"$(P)$(SGM):move.SELL") +#! Link("$(P)$(SGM):move.SELL","$(P)$(SGM):rTrack.RVAL") +#! Field("$(P)$(SGM):move.LNK1",16777215,1,"$(P)$(SGM):move.LNK1") +#! Link("$(P)$(SGM):move.LNK1","$(P)$(SGM):moving.VAL") +#! Field("$(P)$(SGM):move.DOL2",16777215,0,"$(P)$(SGM):move.DOL2") +#! Link("$(P)$(SGM):move.DOL2","$(P)$(SGM):move/DOL2") +#! Field("$(P)$(SGM):move.LNK2",16777215,1,"$(P)$(SGM):move.LNK2") +#! Link("$(P)$(SGM):move.LNK2","$(P)$(SGM):move/LNK2") +#! Field("$(P)$(SGM):move.DOL3",16777215,0,"$(P)$(SGM):move.DOL3") +#! Link("$(P)$(SGM):move.DOL3","$(P)$(SGM):move/DOL3") +#! Field("$(P)$(SGM):move.LNK3",16777215,1,"$(P)$(SGM):move.LNK3") +#! Link("$(P)$(SGM):move.LNK3","$(P)$(SGM):move/LNK3") +#! Connector("$(P)$(SGM):move/DOL3","$(P)$(SGM):T2.I",3480,1630,16777215,"",0) +#! Connector("$(P)$(SGM):move/DOL2","$(P)$(SGM):T2.N",3500,1600,16777215,"",0) +#! Connector("$(P)$(SGM):move/SDIS","$(P)$(SGM):hold.VAL",3520,1310,16777215,"",0) +#! Connector("$(P)$(SGM):move/LNK3",null,3820,1880,16777215,"",2) +#! Connector("$(P)$(SGM):move/LNK2",null,3820,1840,16777215,"",2) +#! Record("$(P)$(SGM):rTrackInit",2960,1640,0,0,"$(P)$(SGM):rTrackInit") +#! Field("$(P)$(SGM):rTrackInit.LNK1",16777215,1,"$(P)$(SGM):rTrackInit.LNK1") +#! Link("$(P)$(SGM):rTrackInit.LNK1","$(P)$(SGM):rTrack.VAL") +#! Field("$(P)$(SGM):rTrackInit.LNK2",16777215,1,"$(P)$(SGM):rTrackInit.LNK2") +#! Link("$(P)$(SGM):rTrackInit.LNK2","$(P)$(SGM):rTrack.VAL") +#! Field("$(P)$(SGM):rTrackInit.PROC",16777215,0,"$(P)$(SGM):rTrackInit.PROC") +#! Record("$(P)$(SGM):sel_R_1",4080,2542,0,0,"$(P)$(SGM):sel_R_1") +#! Field("$(P)$(SGM):sel_R_1.SDIS",16777215,1,"$(P)$(SGM):sel_R_1.SDIS") +#! Link("$(P)$(SGM):sel_R_1.SDIS","$(P)$(SGM):sel_R_1/SDIS") +#! Field("$(P)$(SGM):sel_R_1.SELL",16777215,1,"$(P)$(SGM):sel_R_1.SELL") +#! Link("$(P)$(SGM):sel_R_1.SELL","$(P)$(SGM):sel_R_1/SELL") +#! Field("$(P)$(SGM):sel_R_1.LNK1",16777215,0,"$(P)$(SGM):sel_R_1.LNK1") +#! Link("$(P)$(SGM):sel_R_1.LNK1","$(P)$(SGM):sel_R_1/LNK11") +#! Field("$(P)$(SGM):sel_R_1.LNK2",16777215,0,"$(P)$(SGM):sel_R_1.LNK2") +#! Link("$(P)$(SGM):sel_R_1.LNK2","$(P)$(SGM):sel_R_1/LNK2") +#! Field("$(P)$(SGM):sel_R_1.LNK3",16777215,0,"$(P)$(SGM):sel_R_1.LNK3") +#! Link("$(P)$(SGM):sel_R_1.LNK3","$(P)$(SGM):sel_R_1/LNK31") +#! Field("$(P)$(SGM):sel_R_1.LNK4",16777215,0,"$(P)$(SGM):sel_R_1.LNK4") +#! Link("$(P)$(SGM):sel_R_1.LNK4","$(P)$(SGM):sel_R_1/LNK41") +#! Field("$(P)$(SGM):sel_R_1.LNK5",16777215,0,"$(P)$(SGM):sel_R_1.LNK5") +#! Link("$(P)$(SGM):sel_R_1.LNK5","$(P)$(SGM):sel_R_1/LNK51") +#! Field("$(P)$(SGM):sel_R_1.LNK6",16777215,0,"$(P)$(SGM):sel_R_1.LNK6") +#! Link("$(P)$(SGM):sel_R_1.LNK6","$(P)$(SGM):sel_R_1/LNK61") +#! Field("$(P)$(SGM):sel_R_1.LNK7",16777215,0,"$(P)$(SGM):sel_R_1.LNK7") +#! Link("$(P)$(SGM):sel_R_1.LNK7","$(P)$(SGM):sel_R_1/LNK71") +#! Field("$(P)$(SGM):sel_R_1.LNK8",16777215,0,"$(P)$(SGM):sel_R_1.LNK8") +#! Link("$(P)$(SGM):sel_R_1.LNK8","$(P)$(SGM):sel_R_1/LNK81") +#! Field("$(P)$(SGM):sel_R_1.LNK9",16777215,0,"$(P)$(SGM):sel_R_1.LNK9") +#! Link("$(P)$(SGM):sel_R_1.LNK9","$(P)$(SGM):sel_R_1/LNK91") +#! Field("$(P)$(SGM):sel_R_1.LNKA",16777215,0,"$(P)$(SGM):sel_R_1.LNKA") +#! Link("$(P)$(SGM):sel_R_1.LNKA","$(P)$(SGM):sel_R_1/LNKA1") +#! Connector("$(P)$(SGM):sel_R_1/SELL","$(P)$(SGM):selVal.VAL",4880,2560,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_1/SDIS","$(P)$(SGM):selBank.VAL",4900,2460,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_1/LNKA1","$(P)$(SGM):sel_R_1/LNKA",4000,2965,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_1/LNKA","$(P)$(SGM):R.VAL",3225,2900,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_1/LNK91","$(P)$(SGM):sel_R_1/LNK9",4000,2955,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_1/LNK9","$(P)$(SGM):R.VAL",3225,2900,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_1/LNK81","$(P)$(SGM):sel_R_1/LNK8",4000,2945,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_1/LNK8","$(P)$(SGM):R.VAL",3225,2900,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_1/LNK71","$(P)$(SGM):sel_R_1/LNK7",4000,2935,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_1/LNK7","$(P)$(SGM):R.VAL",3225,2900,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_1/LNK61","$(P)$(SGM):sel_R_1/LNK6",4000,2925,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_1/LNK6","$(P)$(SGM):R.VAL",3225,2900,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_1/LNK51","$(P)$(SGM):sel_R_1/LNK5",4000,2915,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_1/LNK5","$(P)$(SGM):R.VAL",3225,2900,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_1/LNK41","$(P)$(SGM):sel_R_1/LNK4",4000,2905,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_1/LNK4","$(P)$(SGM):R.VAL",3225,2900,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_1/LNK31","$(P)$(SGM):sel_R_1/LNK3",4000,2895,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_1/LNK3","$(P)$(SGM):R.VAL",3225,2900,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_1/LNK2","$(P)$(SGM):sel_R_1/LNK21",4000,2885,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_1/LNK21","$(P)$(SGM):R.VAL",3225,2900,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_1/LNK11","$(P)$(SGM):sel_R_1/LNK1",4000,2875,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_1/LNK1","$(P)$(SGM):R.VAL",3225,2900,16777215,"",0) +#! Record("$(P)$(SGM):sel_R_2",4080,2905,0,0,"$(P)$(SGM):sel_R_2") +#! Field("$(P)$(SGM):sel_R_2.SDIS",16777215,1,"$(P)$(SGM):sel_R_2.SDIS") +#! Link("$(P)$(SGM):sel_R_2.SDIS","$(P)$(SGM):sel_R_2/SDIS") +#! Field("$(P)$(SGM):sel_R_2.SELL",16777215,1,"$(P)$(SGM):sel_R_2.SELL") +#! Link("$(P)$(SGM):sel_R_2.SELL","$(P)$(SGM):sel_R_2/SELL") +#! Field("$(P)$(SGM):sel_R_2.LNK1",16777215,0,"$(P)$(SGM):sel_R_2.LNK1") +#! Link("$(P)$(SGM):sel_R_2.LNK1","$(P)$(SGM):sel_R_2/LNK11") +#! Field("$(P)$(SGM):sel_R_2.LNK2",16777215,0,"$(P)$(SGM):sel_R_2.LNK2") +#! Link("$(P)$(SGM):sel_R_2.LNK2","$(P)$(SGM):sel_R_2/LNK21") +#! Field("$(P)$(SGM):sel_R_2.LNK3",16777215,0,"$(P)$(SGM):sel_R_2.LNK3") +#! Link("$(P)$(SGM):sel_R_2.LNK3","$(P)$(SGM):sel_R_2/LNK31") +#! Field("$(P)$(SGM):sel_R_2.LNK4",16777215,0,"$(P)$(SGM):sel_R_2.LNK4") +#! Link("$(P)$(SGM):sel_R_2.LNK4","$(P)$(SGM):sel_R_2/LNK41") +#! Field("$(P)$(SGM):sel_R_2.LNK5",16777215,0,"$(P)$(SGM):sel_R_2.LNK5") +#! Link("$(P)$(SGM):sel_R_2.LNK5","$(P)$(SGM):sel_R_2/LNK51") +#! Field("$(P)$(SGM):sel_R_2.LNK6",16777215,0,"$(P)$(SGM):sel_R_2.LNK6") +#! Link("$(P)$(SGM):sel_R_2.LNK6","$(P)$(SGM):sel_R_2/LNK61") +#! Connector("$(P)$(SGM):sel_R_2/SELL","$(P)$(SGM):selVal.VAL",4880,2720,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_2/SDIS","$(P)$(SGM):selBank.VAL",4900,2620,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_2/LNK61","$(P)$(SGM):sel_R_2/LNK6",4000,3085,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_2/LNK6","$(P)$(SGM):R.VAL",3225,2900,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_2/LNK51","$(P)$(SGM):sel_R_2/LNK5",4000,3075,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_2/LNK5","$(P)$(SGM):R.VAL",3225,2900,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_2/LNK41","$(P)$(SGM):sel_R_2/LNK4",4000,3065,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_2/LNK4","$(P)$(SGM):R.VAL",3225,2900,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_2/LNK31","$(P)$(SGM):sel_R_2/LNK3",4000,3055,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_2/LNK3","$(P)$(SGM):R.VAL",3225,2900,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_2/LNK21","$(P)$(SGM):sel_R_2/LNK2",4000,3045,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_2/LNK2","$(P)$(SGM):R.VAL",3225,2900,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_2/LNK11","$(P)$(SGM):sel_R_2/LNK1",4000,3035,16777215,"",0) +#! Connector("$(P)$(SGM):sel_R_2/LNK1","$(P)$(SGM):R.VAL",3225,2900,16777215,"",0) +#! Record("$(P)$(SGM):sel_Whigh_1",4100,3862,0,0,"$(P)$(SGM):sel_Whigh_1") +#! Field("$(P)$(SGM):sel_Whigh_1.SDIS",16777215,1,"$(P)$(SGM):sel_Whigh_1.SDIS") +#! Link("$(P)$(SGM):sel_Whigh_1.SDIS","$(P)$(SGM):sel_Whigh_1/SDIS") +#! Field("$(P)$(SGM):sel_Whigh_1.SELL",16777215,1,"$(P)$(SGM):sel_Whigh_1.SELL") +#! Link("$(P)$(SGM):sel_Whigh_1.SELL","$(P)$(SGM):sel_Whigh_1/SELL") +#! Field("$(P)$(SGM):sel_Whigh_1.LNK1",16777215,1,"$(P)$(SGM):sel_Whigh_1.LNK1") +#! Link("$(P)$(SGM):sel_Whigh_1.LNK1","$(P)$(SGM):sel_Whigh_1/LNK1") +#! Field("$(P)$(SGM):sel_Whigh_1.LNK2",16777215,1,"$(P)$(SGM):sel_Whigh_1.LNK2") +#! Link("$(P)$(SGM):sel_Whigh_1.LNK2","$(P)$(SGM):sel_Whigh_1/LNK2") +#! Field("$(P)$(SGM):sel_Whigh_1.LNK3",16777215,1,"$(P)$(SGM):sel_Whigh_1.LNK3") +#! Link("$(P)$(SGM):sel_Whigh_1.LNK3","$(P)$(SGM):sel_Whigh_1/LNK3") +#! Field("$(P)$(SGM):sel_Whigh_1.LNK4",16777215,1,"$(P)$(SGM):sel_Whigh_1.LNK4") +#! Link("$(P)$(SGM):sel_Whigh_1.LNK4","$(P)$(SGM):sel_Whigh_1/LNK4") +#! Field("$(P)$(SGM):sel_Whigh_1.LNK5",16777215,1,"$(P)$(SGM):sel_Whigh_1.LNK5") +#! Link("$(P)$(SGM):sel_Whigh_1.LNK5","$(P)$(SGM):sel_Whigh_1/LNK5") +#! Field("$(P)$(SGM):sel_Whigh_1.LNK6",16777215,1,"$(P)$(SGM):sel_Whigh_1.LNK6") +#! Link("$(P)$(SGM):sel_Whigh_1.LNK6","$(P)$(SGM):sel_Whigh_1/LNK6") +#! Field("$(P)$(SGM):sel_Whigh_1.LNK7",16777215,1,"$(P)$(SGM):sel_Whigh_1.LNK7") +#! Link("$(P)$(SGM):sel_Whigh_1.LNK7","$(P)$(SGM):sel_Whigh_1/LNK7") +#! Field("$(P)$(SGM):sel_Whigh_1.LNK8",16777215,1,"$(P)$(SGM):sel_Whigh_1.LNK8") +#! Link("$(P)$(SGM):sel_Whigh_1.LNK8","$(P)$(SGM):sel_Whigh_1/LNK8") +#! Field("$(P)$(SGM):sel_Whigh_1.LNK9",16777215,1,"$(P)$(SGM):sel_Whigh_1.LNK9") +#! Link("$(P)$(SGM):sel_Whigh_1.LNK9","$(P)$(SGM):sel_Whigh_1/LNK9") +#! Field("$(P)$(SGM):sel_Whigh_1.LNKA",16777215,1,"$(P)$(SGM):sel_Whigh_1.LNKA") +#! Link("$(P)$(SGM):sel_Whigh_1.LNKA","$(P)$(SGM):sel_Whigh_1/LNKA") +#! Connector("$(P)$(SGM):sel_Whigh_1/SDIS","$(P)$(SGM):selBank.VAL",4900,3120,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Whigh_1/LNKA","$(P)$(SGM):limits.A",4360,4470,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Whigh_1/LNK9","$(P)$(SGM):limits.A",4360,4460,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Whigh_1/LNK8","$(P)$(SGM):limits.A",4360,4450,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Whigh_1/LNK7","$(P)$(SGM):limits.A",4360,4440,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Whigh_1/LNK6","$(P)$(SGM):limits.A",4360,4430,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Whigh_1/LNK5","$(P)$(SGM):limits.A",4360,4420,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Whigh_1/LNK4","$(P)$(SGM):limits.A",4360,4410,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Whigh_1/LNK3","$(P)$(SGM):limits.A",4360,4400,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Whigh_1/LNK2","$(P)$(SGM):limits.A",4360,4390,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Whigh_1/LNK1","$(P)$(SGM):limits.A",4360,4380,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Whigh_1/SELL","$(P)$(SGM):selVal.VAL",4880,3220,16777215,"",0) +#! Record("$(P)$(SGM):sel_Whigh_2",4100,4245,0,0,"$(P)$(SGM):sel_Whigh_2") +#! Field("$(P)$(SGM):sel_Whigh_2.SDIS",16777215,1,"$(P)$(SGM):sel_Whigh_2.SDIS") +#! Link("$(P)$(SGM):sel_Whigh_2.SDIS","$(P)$(SGM):sel_Whigh_2/SDIS") +#! Field("$(P)$(SGM):sel_Whigh_2.SELL",16777215,1,"$(P)$(SGM):sel_Whigh_2.SELL") +#! Link("$(P)$(SGM):sel_Whigh_2.SELL","$(P)$(SGM):sel_Whigh_2/SELL") +#! Field("$(P)$(SGM):sel_Whigh_2.LNK1",16777215,1,"$(P)$(SGM):sel_Whigh_2.LNK1") +#! Link("$(P)$(SGM):sel_Whigh_2.LNK1","$(P)$(SGM):sel_Whigh_2/LNK1") +#! Field("$(P)$(SGM):sel_Whigh_2.LNK2",16777215,1,"$(P)$(SGM):sel_Whigh_2.LNK2") +#! Link("$(P)$(SGM):sel_Whigh_2.LNK2","$(P)$(SGM):sel_Whigh_2/LNK2") +#! Field("$(P)$(SGM):sel_Whigh_2.LNK3",16777215,1,"$(P)$(SGM):sel_Whigh_2.LNK3") +#! Link("$(P)$(SGM):sel_Whigh_2.LNK3","$(P)$(SGM):sel_Whigh_2/LNK3") +#! Field("$(P)$(SGM):sel_Whigh_2.LNK4",16777215,1,"$(P)$(SGM):sel_Whigh_2.LNK4") +#! Link("$(P)$(SGM):sel_Whigh_2.LNK4","$(P)$(SGM):sel_Whigh_2/LNK4") +#! Field("$(P)$(SGM):sel_Whigh_2.LNK5",16777215,1,"$(P)$(SGM):sel_Whigh_2.LNK5") +#! Link("$(P)$(SGM):sel_Whigh_2.LNK5","$(P)$(SGM):sel_Whigh_2/LNK5") +#! Field("$(P)$(SGM):sel_Whigh_2.LNK6",16777215,1,"$(P)$(SGM):sel_Whigh_2.LNK6") +#! Link("$(P)$(SGM):sel_Whigh_2.LNK6","$(P)$(SGM):sel_Whigh_2/LNK6") +#! Connector("$(P)$(SGM):sel_Whigh_2/LNK6","$(P)$(SGM):limits.A",4360,4600,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Whigh_2/LNK5","$(P)$(SGM):limits.A",4360,4590,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Whigh_2/LNK4","$(P)$(SGM):limits.A",4360,4580,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Whigh_2/LNK3","$(P)$(SGM):limits.A",4360,4570,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Whigh_2/LNK2","$(P)$(SGM):limits.A",4360,4560,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Whigh_2/LNK1","$(P)$(SGM):limits.A",4360,4550,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Whigh_2/SELL","$(P)$(SGM):selVal.VAL",4880,3390,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Whigh_2/SDIS","$(P)$(SGM):selBank.VAL",4900,3290,16777215,"",0) +#! Record("$(P)$(SGM):sel_Wlow_1",4060,3202,0,0,"$(P)$(SGM):sel_Wlow_1") +#! Field("$(P)$(SGM):sel_Wlow_1.SDIS",16777215,1,"$(P)$(SGM):sel_Wlow_1.SDIS") +#! Link("$(P)$(SGM):sel_Wlow_1.SDIS","$(P)$(SGM):sel_Wlow_1/SDIS") +#! Field("$(P)$(SGM):sel_Wlow_1.SELL",16777215,1,"$(P)$(SGM):sel_Wlow_1.SELL") +#! Link("$(P)$(SGM):sel_Wlow_1.SELL","$(P)$(SGM):sel_Wlow_1/SELL") +#! Field("$(P)$(SGM):sel_Wlow_1.LNK1",16777215,1,"$(P)$(SGM):sel_Wlow_1.LNK1") +#! Link("$(P)$(SGM):sel_Wlow_1.LNK1","$(P)$(SGM):sel_Wlow_1/LNK1") +#! Field("$(P)$(SGM):sel_Wlow_1.LNK2",16777215,1,"$(P)$(SGM):sel_Wlow_1.LNK2") +#! Link("$(P)$(SGM):sel_Wlow_1.LNK2","$(P)$(SGM):sel_Wlow_1/LNK2") +#! Field("$(P)$(SGM):sel_Wlow_1.LNK3",16777215,1,"$(P)$(SGM):sel_Wlow_1.LNK3") +#! Link("$(P)$(SGM):sel_Wlow_1.LNK3","$(P)$(SGM):sel_Wlow_1/LNK3") +#! Field("$(P)$(SGM):sel_Wlow_1.LNK4",16777215,1,"$(P)$(SGM):sel_Wlow_1.LNK4") +#! Link("$(P)$(SGM):sel_Wlow_1.LNK4","$(P)$(SGM):sel_Wlow_1/LNK4") +#! Field("$(P)$(SGM):sel_Wlow_1.LNK5",16777215,1,"$(P)$(SGM):sel_Wlow_1.LNK5") +#! Link("$(P)$(SGM):sel_Wlow_1.LNK5","$(P)$(SGM):sel_Wlow_1/LNK5") +#! Field("$(P)$(SGM):sel_Wlow_1.LNK6",16777215,1,"$(P)$(SGM):sel_Wlow_1.LNK6") +#! Link("$(P)$(SGM):sel_Wlow_1.LNK6","$(P)$(SGM):sel_Wlow_1/LNK6") +#! Field("$(P)$(SGM):sel_Wlow_1.LNK7",16777215,1,"$(P)$(SGM):sel_Wlow_1.LNK7") +#! Link("$(P)$(SGM):sel_Wlow_1.LNK7","$(P)$(SGM):sel_Wlow_1/LNK7") +#! Field("$(P)$(SGM):sel_Wlow_1.LNK8",16777215,1,"$(P)$(SGM):sel_Wlow_1.LNK8") +#! Link("$(P)$(SGM):sel_Wlow_1.LNK8","$(P)$(SGM):sel_Wlow_1/LNK8") +#! Field("$(P)$(SGM):sel_Wlow_1.LNK9",16777215,1,"$(P)$(SGM):sel_Wlow_1.LNK9") +#! Link("$(P)$(SGM):sel_Wlow_1.LNK9","$(P)$(SGM):sel_Wlow_1/LNK9") +#! Field("$(P)$(SGM):sel_Wlow_1.LNKA",16777215,1,"$(P)$(SGM):sel_Wlow_1.LNKA") +#! Link("$(P)$(SGM):sel_Wlow_1.LNKA","$(P)$(SGM):sel_Wlow_1/LNKA") +#! Connector("$(P)$(SGM):sel_Wlow_1/LNKA","$(P)$(SGM):limits.B",4400,4150,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Wlow_1/LNK9","$(P)$(SGM):limits.B",4400,4140,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Wlow_1/LNK8","$(P)$(SGM):limits.B",4400,4130,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Wlow_1/LNK7","$(P)$(SGM):limits.B",4400,4120,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Wlow_1/LNK6","$(P)$(SGM):limits.B",4400,4110,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Wlow_1/LNK5","$(P)$(SGM):limits.B",4400,4100,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Wlow_1/LNK4","$(P)$(SGM):limits.B",4400,4090,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Wlow_1/LNK3","$(P)$(SGM):limits.B",4400,4080,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Wlow_1/LNK2","$(P)$(SGM):limits.B",4400,4070,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Wlow_1/LNK1","$(P)$(SGM):limits.B",4400,4060,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Wlow_1/SELL","$(P)$(SGM):selVal.VAL",4880,2890,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Wlow_1/SDIS","$(P)$(SGM):selBank.VAL",4900,2790,16777215,"",0) +#! Record("$(P)$(SGM):sel_Wlow_2",4080,3605,0,0,"$(P)$(SGM):sel_Wlow_2") +#! Field("$(P)$(SGM):sel_Wlow_2.SDIS",16777215,1,"$(P)$(SGM):sel_Wlow_2.SDIS") +#! Link("$(P)$(SGM):sel_Wlow_2.SDIS","$(P)$(SGM):sel_Wlow_2/SDIS") +#! Field("$(P)$(SGM):sel_Wlow_2.SELL",16777215,1,"$(P)$(SGM):sel_Wlow_2.SELL") +#! Link("$(P)$(SGM):sel_Wlow_2.SELL","$(P)$(SGM):sel_Wlow_2/SELL") +#! Field("$(P)$(SGM):sel_Wlow_2.LNK1",16777215,1,"$(P)$(SGM):sel_Wlow_2.LNK1") +#! Link("$(P)$(SGM):sel_Wlow_2.LNK1","$(P)$(SGM):sel_Wlow_2/LNK1") +#! Field("$(P)$(SGM):sel_Wlow_2.LNK2",16777215,1,"$(P)$(SGM):sel_Wlow_2.LNK2") +#! Link("$(P)$(SGM):sel_Wlow_2.LNK2","$(P)$(SGM):sel_Wlow_2/LNK2") +#! Field("$(P)$(SGM):sel_Wlow_2.LNK3",16777215,1,"$(P)$(SGM):sel_Wlow_2.LNK3") +#! Link("$(P)$(SGM):sel_Wlow_2.LNK3","$(P)$(SGM):sel_Wlow_2/LNK3") +#! Field("$(P)$(SGM):sel_Wlow_2.LNK4",16777215,1,"$(P)$(SGM):sel_Wlow_2.LNK4") +#! Link("$(P)$(SGM):sel_Wlow_2.LNK4","$(P)$(SGM):sel_Wlow_2/LNK4") +#! Field("$(P)$(SGM):sel_Wlow_2.LNK5",16777215,1,"$(P)$(SGM):sel_Wlow_2.LNK5") +#! Link("$(P)$(SGM):sel_Wlow_2.LNK5","$(P)$(SGM):sel_Wlow_2/LNK5") +#! Field("$(P)$(SGM):sel_Wlow_2.LNK6",16777215,1,"$(P)$(SGM):sel_Wlow_2.LNK6") +#! Link("$(P)$(SGM):sel_Wlow_2.LNK6","$(P)$(SGM):sel_Wlow_2/LNK6") +#! Connector("$(P)$(SGM):sel_Wlow_2/SELL","$(P)$(SGM):selVal.VAL",4880,3070,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Wlow_2/SDIS","$(P)$(SGM):selBank.VAL",4900,2970,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Wlow_2/LNK6","$(P)$(SGM):limits.B",4400,4290,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Wlow_2/LNK5","$(P)$(SGM):limits.B",4400,4280,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Wlow_2/LNK4","$(P)$(SGM):limits.B",4400,4270,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Wlow_2/LNK3","$(P)$(SGM):limits.B",4400,4260,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Wlow_2/LNK2","$(P)$(SGM):limits.B",4400,4250,16777215,"",0) +#! Connector("$(P)$(SGM):sel_Wlow_2/LNK1","$(P)$(SGM):limits.B",4400,4240,16777215,"",0) +#! Record("$(P)$(SGM):sel_den_1",3340,3862,0,0,"$(P)$(SGM):sel_den_1") +#! Field("$(P)$(SGM):sel_den_1.SDIS",16777215,0,"$(P)$(SGM):sel_den_1.SDIS") +#! Link("$(P)$(SGM):sel_den_1.SDIS","$(P)$(SGM):sel_den_1/SDIS") +#! Field("$(P)$(SGM):sel_den_1.SELL",16777215,0,"$(P)$(SGM):sel_den_1.SELL") +#! Link("$(P)$(SGM):sel_den_1.SELL","$(P)$(SGM):sel_den_1/SELL") +#! Field("$(P)$(SGM):sel_den_1.LNK1",16777215,0,"$(P)$(SGM):sel_den_1.LNK1") +#! Link("$(P)$(SGM):sel_den_1.LNK1","$(P)$(SGM):sel_den_1/LNK12") +#! Field("$(P)$(SGM):sel_den_1.LNK2",16777215,0,"$(P)$(SGM):sel_den_1.LNK2") +#! Link("$(P)$(SGM):sel_den_1.LNK2","$(P)$(SGM):sel_den_1/LNK22") +#! Field("$(P)$(SGM):sel_den_1.LNK3",16777215,0,"$(P)$(SGM):sel_den_1.LNK3") +#! Link("$(P)$(SGM):sel_den_1.LNK3","$(P)$(SGM):sel_den_1/LNK32") +#! Field("$(P)$(SGM):sel_den_1.LNK4",16777215,0,"$(P)$(SGM):sel_den_1.LNK4") +#! Link("$(P)$(SGM):sel_den_1.LNK4","$(P)$(SGM):sel_den_1/LNK42") +#! Field("$(P)$(SGM):sel_den_1.LNK5",16777215,0,"$(P)$(SGM):sel_den_1.LNK5") +#! Link("$(P)$(SGM):sel_den_1.LNK5","$(P)$(SGM):sel_den_1/LNK52") +#! Field("$(P)$(SGM):sel_den_1.LNK6",16777215,0,"$(P)$(SGM):sel_den_1.LNK6") +#! Link("$(P)$(SGM):sel_den_1.LNK6","$(P)$(SGM):sel_den_1/LNK62") +#! Field("$(P)$(SGM):sel_den_1.LNK7",16777215,0,"$(P)$(SGM):sel_den_1.LNK7") +#! Link("$(P)$(SGM):sel_den_1.LNK7","$(P)$(SGM):sel_den_1/LNK72") +#! Field("$(P)$(SGM):sel_den_1.LNK8",16777215,0,"$(P)$(SGM):sel_den_1.LNK8") +#! Link("$(P)$(SGM):sel_den_1.LNK8","$(P)$(SGM):sel_den_1/LNK82") +#! Field("$(P)$(SGM):sel_den_1.LNK9",16777215,0,"$(P)$(SGM):sel_den_1.LNK9") +#! Link("$(P)$(SGM):sel_den_1.LNK9","$(P)$(SGM):sel_den_1/LNK92") +#! Field("$(P)$(SGM):sel_den_1.LNKA",16777215,0,"$(P)$(SGM):sel_den_1.LNKA") +#! Link("$(P)$(SGM):sel_den_1.LNKA","$(P)$(SGM):sel_den_1/LNKA2") +#! Connector("$(P)$(SGM):sel_den_1/LNKA2","$(P)$(SGM):sel_den_1/LNKA1",3280,4455,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/LNKA1","$(P)$(SGM):sel_den_1/LNKA",2440,4560,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/LNKA","$(P)$(SGM):gDensity.VAL",1600,2695,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/LNK92","$(P)$(SGM):sel_den_1/LNK91",3280,4445,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/LNK91","$(P)$(SGM):sel_den_1/LNK9",2440,4560,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/LNK9","$(P)$(SGM):gDensity.VAL",1600,2695,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/LNK82","$(P)$(SGM):sel_den_1/LNK81",3280,4435,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/LNK81","$(P)$(SGM):sel_den_1/LNK8",2440,4560,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/LNK8","$(P)$(SGM):gDensity.VAL",1600,2695,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/LNK72","$(P)$(SGM):sel_den_1/LNK71",3280,4425,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/LNK71","$(P)$(SGM):sel_den_1/LNK7",2440,4560,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/LNK7","$(P)$(SGM):gDensity.VAL",1600,2695,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/LNK62","$(P)$(SGM):sel_den_1/LNK61",3280,4415,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/LNK61","$(P)$(SGM):sel_den_1/LNK6",2440,4560,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/LNK6","$(P)$(SGM):gDensity.VAL",1600,2695,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/LNK52","$(P)$(SGM):sel_den_1/LNK51",3280,4405,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/LNK51","$(P)$(SGM):sel_den_1/LNK5",2440,4560,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/LNK5","$(P)$(SGM):gDensity.VAL",1600,2695,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/LNK42","$(P)$(SGM):sel_den_1/LNK41",3280,4395,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/LNK41","$(P)$(SGM):sel_den_1/LNK4",2440,4560,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/LNK4","$(P)$(SGM):gDensity.VAL",1600,2695,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/LNK32","$(P)$(SGM):sel_den_1/LNK31",3280,4385,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/LNK31","$(P)$(SGM):sel_den_1/LNK3",2440,4560,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/LNK3","$(P)$(SGM):gDensity.VAL",1600,2695,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/LNK22","$(P)$(SGM):sel_den_1/LNK21",3280,4375,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/LNK21","$(P)$(SGM):sel_den_1/LNK2",2440,4560,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/LNK2","$(P)$(SGM):gDensity.VAL",1600,2695,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/LNK12","$(P)$(SGM):sel_den_1/LNK11",3280,4365,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/LNK11","$(P)$(SGM):sel_den_1/LNK1",2440,4560,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/LNK1","$(P)$(SGM):gDensity.VAL",1600,2695,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/SELL","$(P)$(SGM):selVal.VAL",3240,3220,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_1/SDIS","$(P)$(SGM):selBank.VAL",3220,3120,16777215,"",0) +#! Record("$(P)$(SGM):sel_den_2",3340,4225,0,0,"$(P)$(SGM):sel_den_2") +#! Field("$(P)$(SGM):sel_den_2.SDIS",16777215,0,"$(P)$(SGM):sel_den_2.SDIS") +#! Link("$(P)$(SGM):sel_den_2.SDIS","$(P)$(SGM):sel_den_2/SDIS") +#! Field("$(P)$(SGM):sel_den_2.SELL",16777215,0,"$(P)$(SGM):sel_den_2.SELL") +#! Link("$(P)$(SGM):sel_den_2.SELL","$(P)$(SGM):sel_den_2/SELL") +#! Field("$(P)$(SGM):sel_den_2.LNK1",16777215,0,"$(P)$(SGM):sel_den_2.LNK1") +#! Link("$(P)$(SGM):sel_den_2.LNK1","$(P)$(SGM):sel_den_2/LNK12") +#! Field("$(P)$(SGM):sel_den_2.LNK2",16777215,0,"$(P)$(SGM):sel_den_2.LNK2") +#! Link("$(P)$(SGM):sel_den_2.LNK2","$(P)$(SGM):sel_den_2/LNK22") +#! Field("$(P)$(SGM):sel_den_2.LNK3",16777215,0,"$(P)$(SGM):sel_den_2.LNK3") +#! Link("$(P)$(SGM):sel_den_2.LNK3","$(P)$(SGM):sel_den_2/LNK32") +#! Field("$(P)$(SGM):sel_den_2.LNK4",16777215,0,"$(P)$(SGM):sel_den_2.LNK4") +#! Link("$(P)$(SGM):sel_den_2.LNK4","$(P)$(SGM):sel_den_2/LNK42") +#! Field("$(P)$(SGM):sel_den_2.LNK5",16777215,0,"$(P)$(SGM):sel_den_2.LNK5") +#! Link("$(P)$(SGM):sel_den_2.LNK5","$(P)$(SGM):sel_den_2/LNK52") +#! Field("$(P)$(SGM):sel_den_2.LNK6",16777215,0,"$(P)$(SGM):sel_den_2.LNK6") +#! Link("$(P)$(SGM):sel_den_2.LNK6","$(P)$(SGM):sel_den_2/LNK62") +#! Connector("$(P)$(SGM):sel_den_2/LNK42","$(P)$(SGM):sel_den_2/LNK41",3280,4555,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_2/LNK41","$(P)$(SGM):sel_den_2/LNK4",2440,4560,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_2/LNK4","$(P)$(SGM):gDensity.VAL",1600,2695,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_2/LNK32","$(P)$(SGM):sel_den_2/LNK31",3280,4545,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_2/LNK31","$(P)$(SGM):sel_den_2/LNK3",2440,4560,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_2/LNK3","$(P)$(SGM):gDensity.VAL",1600,2695,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_2/LNK22","$(P)$(SGM):sel_den_2/LNK21",3280,4535,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_2/LNK21","$(P)$(SGM):sel_den_2/LNK2",2440,4560,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_2/LNK2","$(P)$(SGM):gDensity.VAL",1600,2695,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_2/LNK12","$(P)$(SGM):sel_den_2/LNK11",3280,4525,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_2/LNK11","$(P)$(SGM):sel_den_2/LNK1",2440,4560,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_2/LNK1","$(P)$(SGM):gDensity.VAL",1600,2695,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_2/SELL","$(P)$(SGM):selVal.VAL",3240,3380,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_2/SDIS","$(P)$(SGM):selBank.VAL",3220,3280,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_2/LNK62","$(P)$(SGM):sel_den_2/LNK61",3280,4575,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_2/LNK61","$(P)$(SGM):sel_den_2/LNK6",2440,4560,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_2/LNK6","$(P)$(SGM):gDensity.VAL",1600,2695,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_2/LNK52","$(P)$(SGM):sel_den_2/LNK51",3280,4565,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_2/LNK51","$(P)$(SGM):sel_den_2/LNK5",2440,4560,16777215,"",0) +#! Connector("$(P)$(SGM):sel_den_2/LNK5","$(P)$(SGM):gDensity.VAL",1600,2695,16777215,"",0) +#! Record("$(P)$(SGM):sel_exists_1",5360,1816,0,0,"$(P)$(SGM):sel_exists_1") +#! Field("$(P)$(SGM):sel_exists_1.SDIS",16777215,0,"$(P)$(SGM):sel_exists_1.SDIS") +#! Link("$(P)$(SGM):sel_exists_1.SDIS","$(P)$(SGM):sel_exists_1/SDIS") +#! Field("$(P)$(SGM):sel_exists_1.SELL",16777215,0,"$(P)$(SGM):sel_exists_1.SELL") +#! Link("$(P)$(SGM):sel_exists_1.SELL","$(P)$(SGM):sel_exists_1/SELL") +#! Field("$(P)$(SGM):sel_exists_1.LNK1",16777215,0,"$(P)$(SGM):sel_exists_1.LNK1") +#! Link("$(P)$(SGM):sel_exists_1.LNK1","$(P)$(SGM):sel_exists_1/LNK1") +#! Field("$(P)$(SGM):sel_exists_1.LNK2",16777215,0,"$(P)$(SGM):sel_exists_1.LNK2") +#! Link("$(P)$(SGM):sel_exists_1.LNK2","$(P)$(SGM):sel_exists_1/LNK21") +#! Field("$(P)$(SGM):sel_exists_1.LNK3",16777215,0,"$(P)$(SGM):sel_exists_1.LNK3") +#! Link("$(P)$(SGM):sel_exists_1.LNK3","$(P)$(SGM):sel_exists_1/LNK3") +#! Field("$(P)$(SGM):sel_exists_1.LNK4",16777215,0,"$(P)$(SGM):sel_exists_1.LNK4") +#! Link("$(P)$(SGM):sel_exists_1.LNK4","$(P)$(SGM):sel_exists_1/LNK4") +#! Field("$(P)$(SGM):sel_exists_1.LNK5",16777215,0,"$(P)$(SGM):sel_exists_1.LNK5") +#! Link("$(P)$(SGM):sel_exists_1.LNK5","$(P)$(SGM):sel_exists_1/LNK5") +#! Field("$(P)$(SGM):sel_exists_1.LNK6",16777215,0,"$(P)$(SGM):sel_exists_1.LNK6") +#! Link("$(P)$(SGM):sel_exists_1.LNK6","$(P)$(SGM):sel_exists_1/LNK6") +#! Field("$(P)$(SGM):sel_exists_1.LNK7",16777215,0,"$(P)$(SGM):sel_exists_1.LNK7") +#! Link("$(P)$(SGM):sel_exists_1.LNK7","$(P)$(SGM):sel_exists_1/LNK7") +#! Field("$(P)$(SGM):sel_exists_1.LNK8",16777215,0,"$(P)$(SGM):sel_exists_1.LNK8") +#! Link("$(P)$(SGM):sel_exists_1.LNK8","$(P)$(SGM):sel_exists_1/LNK8") +#! Field("$(P)$(SGM):sel_exists_1.LNK9",16777215,0,"$(P)$(SGM):sel_exists_1.LNK9") +#! Link("$(P)$(SGM):sel_exists_1.LNK9","$(P)$(SGM):sel_exists_1/LNK9") +#! Field("$(P)$(SGM):sel_exists_1.LNKA",16777215,0,"$(P)$(SGM):sel_exists_1.LNKA") +#! Link("$(P)$(SGM):sel_exists_1.LNKA","$(P)$(SGM):sel_exists_1/LNKA") +#! Connector("$(P)$(SGM):sel_exists_1/LNKA","$(P)$(SGM):exists.VAL",5280,2390,16777215,"",0) +#! Connector("$(P)$(SGM):sel_exists_1/LNK9","$(P)$(SGM):exists.VAL",5280,2380,16777215,"",0) +#! Connector("$(P)$(SGM):sel_exists_1/LNK8","$(P)$(SGM):exists.VAL",5280,2370,16777215,"",0) +#! Connector("$(P)$(SGM):sel_exists_1/LNK7","$(P)$(SGM):exists.VAL",5280,2360,16777215,"",0) +#! Connector("$(P)$(SGM):sel_exists_1/LNK6","$(P)$(SGM):exists.VAL",5280,2350,16777215,"",0) +#! Connector("$(P)$(SGM):sel_exists_1/LNK5","$(P)$(SGM):exists.VAL",5280,2340,16777215,"",0) +#! Connector("$(P)$(SGM):sel_exists_1/LNK4","$(P)$(SGM):exists.VAL",5280,2330,16777215,"",0) +#! Connector("$(P)$(SGM):sel_exists_1/LNK3","$(P)$(SGM):exists.VAL",5280,2320,16777215,"",0) +#! Connector("$(P)$(SGM):sel_exists_1/LNK21","$(P)$(SGM):exists.VAL",5280,2310,16777215,"",0) +#! Connector("$(P)$(SGM):sel_exists_1/LNK1","$(P)$(SGM):exists.VAL",5280,2300,16777215,"",0) +#! Connector("$(P)$(SGM):sel_exists_1/SELL","$(P)$(SGM):selVal.VAL",4880,2190,16777215,"",0) +#! Connector("$(P)$(SGM):sel_exists_1/SDIS","$(P)$(SGM):selBank.VAL",4900,2090,16777215,"",0) +#! Record("$(P)$(SGM):sel_exists_2",5360,2179,0,0,"$(P)$(SGM):sel_exists_2") +#! Field("$(P)$(SGM):sel_exists_2.SDIS",16777215,0,"$(P)$(SGM):sel_exists_2.SDIS") +#! Link("$(P)$(SGM):sel_exists_2.SDIS","$(P)$(SGM):sel_exists_2/SDIS") +#! Field("$(P)$(SGM):sel_exists_2.SELL",16777215,0,"$(P)$(SGM):sel_exists_2.SELL") +#! Link("$(P)$(SGM):sel_exists_2.SELL","$(P)$(SGM):sel_exists_2/SELL") +#! Field("$(P)$(SGM):sel_exists_2.LNK1",16777215,0,"$(P)$(SGM):sel_exists_2.LNK1") +#! Link("$(P)$(SGM):sel_exists_2.LNK1","$(P)$(SGM):sel_exists_2/LNK1") +#! Field("$(P)$(SGM):sel_exists_2.LNK2",16777215,0,"$(P)$(SGM):sel_exists_2.LNK2") +#! Link("$(P)$(SGM):sel_exists_2.LNK2","$(P)$(SGM):sel_exists_2/LNK2") +#! Field("$(P)$(SGM):sel_exists_2.LNK3",16777215,0,"$(P)$(SGM):sel_exists_2.LNK3") +#! Link("$(P)$(SGM):sel_exists_2.LNK3","$(P)$(SGM):sel_exists_2/LNK3") +#! Field("$(P)$(SGM):sel_exists_2.LNK4",16777215,0,"$(P)$(SGM):sel_exists_2.LNK4") +#! Link("$(P)$(SGM):sel_exists_2.LNK4","$(P)$(SGM):sel_exists_2/LNK4") +#! Field("$(P)$(SGM):sel_exists_2.LNK5",16777215,0,"$(P)$(SGM):sel_exists_2.LNK5") +#! Link("$(P)$(SGM):sel_exists_2.LNK5","$(P)$(SGM):sel_exists_2/LNK5") +#! Field("$(P)$(SGM):sel_exists_2.LNK6",16777215,0,"$(P)$(SGM):sel_exists_2.LNK6") +#! Link("$(P)$(SGM):sel_exists_2.LNK6","$(P)$(SGM):sel_exists_2/LNK6") +#! Connector("$(P)$(SGM):sel_exists_2/LNK6","$(P)$(SGM):exists.VAL",5280,2510,16777215,"",0) +#! Connector("$(P)$(SGM):sel_exists_2/LNK5","$(P)$(SGM):exists.VAL",5280,2500,16777215,"",0) +#! Connector("$(P)$(SGM):sel_exists_2/LNK4","$(P)$(SGM):exists.VAL",5280,2490,16777215,"",0) +#! Connector("$(P)$(SGM):sel_exists_2/LNK3","$(P)$(SGM):exists.VAL",5280,2480,16777215,"",0) +#! Connector("$(P)$(SGM):sel_exists_2/LNK2","$(P)$(SGM):exists.VAL",5280,2470,16777215,"",0) +#! Connector("$(P)$(SGM):sel_exists_2/LNK1","$(P)$(SGM):exists.VAL",5280,2460,16777215,"",0) +#! Connector("$(P)$(SGM):sel_exists_2/SELL","$(P)$(SGM):selVal.VAL",4880,2350,16777215,"",0) +#! Connector("$(P)$(SGM):sel_exists_2/SDIS","$(P)$(SGM):selBank.VAL",4900,2250,16777215,"",0) +#! Record("$(P)$(SGM):sel_loc_1",5500,2542,0,0,"$(P)$(SGM):sel_loc_1") +#! Field("$(P)$(SGM):sel_loc_1.SDIS",16777215,0,"$(P)$(SGM):sel_loc_1.SDIS") +#! Link("$(P)$(SGM):sel_loc_1.SDIS","$(P)$(SGM):sel_loc_1/SDIS") +#! Field("$(P)$(SGM):sel_loc_1.SELL",16777215,0,"$(P)$(SGM):sel_loc_1.SELL") +#! Link("$(P)$(SGM):sel_loc_1.SELL","$(P)$(SGM):sel_loc_1/SELL") +#! Field("$(P)$(SGM):sel_loc_1.LNK1",16777215,1,"$(P)$(SGM):sel_loc_1.LNK1") +#! Link("$(P)$(SGM):sel_loc_1.LNK1","$(P)$(SGM):GrMotorVal.VAL") +#! Field("$(P)$(SGM):sel_loc_1.LNK2",16777215,1,"$(P)$(SGM):sel_loc_1.LNK2") +#! Link("$(P)$(SGM):sel_loc_1.LNK2","$(P)$(SGM):GrMotorVal.VAL") +#! Field("$(P)$(SGM):sel_loc_1.LNK3",16777215,1,"$(P)$(SGM):sel_loc_1.LNK3") +#! Link("$(P)$(SGM):sel_loc_1.LNK3","$(P)$(SGM):GrMotorVal.VAL") +#! Field("$(P)$(SGM):sel_loc_1.LNK4",16777215,1,"$(P)$(SGM):sel_loc_1.LNK4") +#! Link("$(P)$(SGM):sel_loc_1.LNK4","$(P)$(SGM):GrMotorVal.VAL") +#! Field("$(P)$(SGM):sel_loc_1.LNK5",16777215,1,"$(P)$(SGM):sel_loc_1.LNK5") +#! Link("$(P)$(SGM):sel_loc_1.LNK5","$(P)$(SGM):GrMotorVal.VAL") +#! Field("$(P)$(SGM):sel_loc_1.LNK6",16777215,1,"$(P)$(SGM):sel_loc_1.LNK6") +#! Link("$(P)$(SGM):sel_loc_1.LNK6","$(P)$(SGM):GrMotorVal.VAL") +#! Field("$(P)$(SGM):sel_loc_1.LNK7",16777215,1,"$(P)$(SGM):sel_loc_1.LNK7") +#! Link("$(P)$(SGM):sel_loc_1.LNK7","$(P)$(SGM):GrMotorVal.VAL") +#! Field("$(P)$(SGM):sel_loc_1.LNK8",16777215,1,"$(P)$(SGM):sel_loc_1.LNK8") +#! Link("$(P)$(SGM):sel_loc_1.LNK8","$(P)$(SGM):GrMotorVal.VAL") +#! Field("$(P)$(SGM):sel_loc_1.LNK9",16777215,1,"$(P)$(SGM):sel_loc_1.LNK9") +#! Link("$(P)$(SGM):sel_loc_1.LNK9","$(P)$(SGM):GrMotorVal.VAL") +#! Field("$(P)$(SGM):sel_loc_1.LNKA",16777215,1,"$(P)$(SGM):sel_loc_1.LNKA") +#! Link("$(P)$(SGM):sel_loc_1.LNKA","$(P)$(SGM):GrMotorVal.VAL") +#! Connector("$(P)$(SGM):sel_loc_1/SELL","$(P)$(SGM):selVal.VAL",4880,2560,16777215,"",0) +#! Connector("$(P)$(SGM):sel_loc_1/SDIS","$(P)$(SGM):selBank.VAL",4900,2460,16777215,"",0) +#! Record("$(P)$(SGM):sel_loc_2",5500,2925,0,0,"$(P)$(SGM):sel_loc_2") +#! Field("$(P)$(SGM):sel_loc_2.SDIS",16777215,0,"$(P)$(SGM):sel_loc_2.SDIS") +#! Link("$(P)$(SGM):sel_loc_2.SDIS","$(P)$(SGM):sel_loc_2/SDIS") +#! Field("$(P)$(SGM):sel_loc_2.SELL",16777215,0,"$(P)$(SGM):sel_loc_2.SELL") +#! Link("$(P)$(SGM):sel_loc_2.SELL","$(P)$(SGM):sel_loc_2/SELL") +#! Field("$(P)$(SGM):sel_loc_2.LNK1",16777215,1,"$(P)$(SGM):sel_loc_2.LNK1") +#! Link("$(P)$(SGM):sel_loc_2.LNK1","$(P)$(SGM):GrMotorVal.VAL") +#! Field("$(P)$(SGM):sel_loc_2.LNK2",16777215,1,"$(P)$(SGM):sel_loc_2.LNK2") +#! Link("$(P)$(SGM):sel_loc_2.LNK2","$(P)$(SGM):GrMotorVal.VAL") +#! Field("$(P)$(SGM):sel_loc_2.LNK3",16777215,1,"$(P)$(SGM):sel_loc_2.LNK3") +#! Link("$(P)$(SGM):sel_loc_2.LNK3","$(P)$(SGM):GrMotorVal.VAL") +#! Field("$(P)$(SGM):sel_loc_2.LNK4",16777215,1,"$(P)$(SGM):sel_loc_2.LNK4") +#! Link("$(P)$(SGM):sel_loc_2.LNK4","$(P)$(SGM):GrMotorVal.VAL") +#! Field("$(P)$(SGM):sel_loc_2.LNK5",16777215,1,"$(P)$(SGM):sel_loc_2.LNK5") +#! Link("$(P)$(SGM):sel_loc_2.LNK5","$(P)$(SGM):GrMotorVal.VAL") +#! Field("$(P)$(SGM):sel_loc_2.LNK6",16777215,1,"$(P)$(SGM):sel_loc_2.LNK6") +#! Link("$(P)$(SGM):sel_loc_2.LNK6","$(P)$(SGM):GrMotorVal.VAL") +#! Connector("$(P)$(SGM):sel_loc_2/SDIS","$(P)$(SGM):selBank.VAL",4900,2630,16777215,"",0) +#! Connector("$(P)$(SGM):sel_loc_2/SELL","$(P)$(SGM):selVal.VAL",4880,2730,16777215,"",0) +#! Record("$(P)$(SGM):sel_m_1",3340,3276,0,0,"$(P)$(SGM):sel_m_1") +#! Field("$(P)$(SGM):sel_m_1.SDIS",16777215,0,"$(P)$(SGM):sel_m_1.SDIS") +#! Link("$(P)$(SGM):sel_m_1.SDIS","$(P)$(SGM):sel_m_1/SDIS") +#! Field("$(P)$(SGM):sel_m_1.SELL",16777215,0,"$(P)$(SGM):sel_m_1.SELL") +#! Link("$(P)$(SGM):sel_m_1.SELL","$(P)$(SGM):sel_m_1/SELL") +#! Field("$(P)$(SGM):sel_m_1.LNK1",16777215,0,"$(P)$(SGM):sel_m_1.LNK1") +#! Link("$(P)$(SGM):sel_m_1.LNK1","$(P)$(SGM):sel_m_1/LNK12") +#! Field("$(P)$(SGM):sel_m_1.LNK2",16777215,0,"$(P)$(SGM):sel_m_1.LNK2") +#! Link("$(P)$(SGM):sel_m_1.LNK2","$(P)$(SGM):sel_m_1/LNK22") +#! Field("$(P)$(SGM):sel_m_1.LNK3",16777215,0,"$(P)$(SGM):sel_m_1.LNK3") +#! Link("$(P)$(SGM):sel_m_1.LNK3","$(P)$(SGM):sel_m_1/LNK32") +#! Field("$(P)$(SGM):sel_m_1.LNK4",16777215,0,"$(P)$(SGM):sel_m_1.LNK4") +#! Link("$(P)$(SGM):sel_m_1.LNK4","$(P)$(SGM):sel_m_1/LNK42") +#! Field("$(P)$(SGM):sel_m_1.LNK5",16777215,0,"$(P)$(SGM):sel_m_1.LNK5") +#! Link("$(P)$(SGM):sel_m_1.LNK5","$(P)$(SGM):sel_m_1/LNK52") +#! Field("$(P)$(SGM):sel_m_1.LNK6",16777215,0,"$(P)$(SGM):sel_m_1.LNK6") +#! Link("$(P)$(SGM):sel_m_1.LNK6","$(P)$(SGM):sel_m_1/LNK62") +#! Field("$(P)$(SGM):sel_m_1.LNK7",16777215,0,"$(P)$(SGM):sel_m_1.LNK7") +#! Link("$(P)$(SGM):sel_m_1.LNK7","$(P)$(SGM):sel_m_1/LNK72") +#! Field("$(P)$(SGM):sel_m_1.LNK8",16777215,0,"$(P)$(SGM):sel_m_1.LNK8") +#! Link("$(P)$(SGM):sel_m_1.LNK8","$(P)$(SGM):sel_m_1/LNK83") +#! Field("$(P)$(SGM):sel_m_1.LNK9",16777215,0,"$(P)$(SGM):sel_m_1.LNK9") +#! Link("$(P)$(SGM):sel_m_1.LNK9","$(P)$(SGM):sel_m_1/LNK92") +#! Field("$(P)$(SGM):sel_m_1.LNKA",16777215,0,"$(P)$(SGM):sel_m_1.LNKA") +#! Link("$(P)$(SGM):sel_m_1.LNKA","$(P)$(SGM):sel_m_1/LNKA2") +#! Connector("$(P)$(SGM):sel_m_1/LNKA2","$(P)$(SGM):sel_m_1/LNKA1",3280,3865,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/LNKA1","$(P)$(SGM):sel_m_1/LNKA",2450,3980,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/LNKA","$(P)$(SGM):m.VAL",1620,2335,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/LNK92","$(P)$(SGM):sel_m_1/LNK91",3280,3855,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/LNK91","$(P)$(SGM):sel_m_1/LNK9",2450,3980,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/LNK9","$(P)$(SGM):m.VAL",1620,2335,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/LNK83","$(P)$(SGM):sel_m_1/LNK81",3280,3845,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/LNK81","$(P)$(SGM):sel_m_1/LNK82",2450,3980,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/LNK82","$(P)$(SGM):m.VAL",1620,2335,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/LNK72","$(P)$(SGM):sel_m_1/LNK71",3280,3835,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/LNK71","$(P)$(SGM):sel_m_1/LNK7",2450,3980,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/LNK7","$(P)$(SGM):m.VAL",1620,2335,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/LNK62","$(P)$(SGM):sel_m_1/LNK61",3280,3825,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/LNK61","$(P)$(SGM):sel_m_1/LNK6",2450,3980,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/LNK6","$(P)$(SGM):m.VAL",1620,2335,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/LNK52","$(P)$(SGM):sel_m_1/LNK51",3280,3815,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/LNK51","$(P)$(SGM):sel_m_1/LNK5",2450,3980,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/LNK5","$(P)$(SGM):m.VAL",1620,2335,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/LNK42","$(P)$(SGM):sel_m_1/LNK41",3280,3805,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/LNK41","$(P)$(SGM):sel_m_1/LNK4",2450,3980,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/LNK4","$(P)$(SGM):m.VAL",1620,2335,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/LNK32","$(P)$(SGM):sel_m_1/LNK31",3280,3795,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/LNK31","$(P)$(SGM):sel_m_1/LNK3",2450,3980,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/LNK3","$(P)$(SGM):m.VAL",1620,2335,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/LNK22","$(P)$(SGM):sel_m_1/LNK21",3280,3785,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/LNK21","$(P)$(SGM):sel_m_1/LNK2",2450,3980,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/LNK2","$(P)$(SGM):m.VAL",1620,2335,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/LNK12","$(P)$(SGM):sel_m_1/LNK11",3280,3775,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/LNK11","$(P)$(SGM):sel_m_1/LNK1",2450,3980,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/LNK1","$(P)$(SGM):m.VAL",1620,2335,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/SELL","$(P)$(SGM):selVal.VAL",3240,2920,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_1/SDIS","$(P)$(SGM):selBank.VAL",3220,2820,16777215,"",0) +#! Record("$(P)$(SGM):sel_m_2",3340,3659,0,0,"$(P)$(SGM):sel_m_2") +#! Field("$(P)$(SGM):sel_m_2.SDIS",16777215,0,"$(P)$(SGM):sel_m_2.SDIS") +#! Link("$(P)$(SGM):sel_m_2.SDIS","$(P)$(SGM):sel_m_2/SDIS") +#! Field("$(P)$(SGM):sel_m_2.SELL",16777215,0,"$(P)$(SGM):sel_m_2.SELL") +#! Link("$(P)$(SGM):sel_m_2.SELL","$(P)$(SGM):sel_m_2/SELL") +#! Field("$(P)$(SGM):sel_m_2.LNK1",16777215,0,"$(P)$(SGM):sel_m_2.LNK1") +#! Link("$(P)$(SGM):sel_m_2.LNK1","$(P)$(SGM):sel_m_2/LNK12") +#! Field("$(P)$(SGM):sel_m_2.LNK2",16777215,0,"$(P)$(SGM):sel_m_2.LNK2") +#! Link("$(P)$(SGM):sel_m_2.LNK2","$(P)$(SGM):sel_m_2/LNK22") +#! Field("$(P)$(SGM):sel_m_2.LNK3",16777215,0,"$(P)$(SGM):sel_m_2.LNK3") +#! Link("$(P)$(SGM):sel_m_2.LNK3","$(P)$(SGM):sel_m_2/LNK32") +#! Field("$(P)$(SGM):sel_m_2.LNK4",16777215,0,"$(P)$(SGM):sel_m_2.LNK4") +#! Link("$(P)$(SGM):sel_m_2.LNK4","$(P)$(SGM):sel_m_2/LNK42") +#! Field("$(P)$(SGM):sel_m_2.LNK5",16777215,0,"$(P)$(SGM):sel_m_2.LNK5") +#! Link("$(P)$(SGM):sel_m_2.LNK5","$(P)$(SGM):sel_m_2/LNK52") +#! Field("$(P)$(SGM):sel_m_2.LNK6",16777215,0,"$(P)$(SGM):sel_m_2.LNK6") +#! Link("$(P)$(SGM):sel_m_2.LNK6","$(P)$(SGM):sel_m_2/LNK62") +#! Connector("$(P)$(SGM):sel_m_2/SELL","$(P)$(SGM):selVal.VAL",3240,3090,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_2/SDIS","$(P)$(SGM):selBank.VAL",3220,2990,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_2/LNK62","$(P)$(SGM):sel_m_2/LNK61",3280,3995,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_2/LNK61","$(P)$(SGM):sel_m_2/LNK6",2450,3980,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_2/LNK6","$(P)$(SGM):m.VAL",1620,2335,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_2/LNK52","$(P)$(SGM):sel_m_2/LNK51",3280,3985,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_2/LNK51","$(P)$(SGM):sel_m_2/LNK5",2450,3980,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_2/LNK5","$(P)$(SGM):m.VAL",1620,2335,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_2/LNK42","$(P)$(SGM):sel_m_2/LNK41",3280,3975,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_2/LNK41","$(P)$(SGM):sel_m_2/LNK4",2450,3980,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_2/LNK4","$(P)$(SGM):m.VAL",1620,2335,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_2/LNK32","$(P)$(SGM):sel_m_2/LNK31",3280,3965,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_2/LNK31","$(P)$(SGM):sel_m_2/LNK3",2450,3980,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_2/LNK3","$(P)$(SGM):m.VAL",1620,2335,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_2/LNK22","$(P)$(SGM):sel_m_2/LNK21",3280,3955,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_2/LNK21","$(P)$(SGM):sel_m_2/LNK2",2450,3980,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_2/LNK2","$(P)$(SGM):m.VAL",1620,2335,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_2/LNK12","$(P)$(SGM):sel_m_2/LNK11",3280,3945,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_2/LNK11","$(P)$(SGM):sel_m_2/LNK1",2450,3980,16777215,"",0) +#! Connector("$(P)$(SGM):sel_m_2/LNK1","$(P)$(SGM):m.VAL",1620,2335,16777215,"",0) +#! Record("$(P)$(SGM):sel_xOff_1",5500,3162,0,0,"$(P)$(SGM):sel_xOff_1") +#! Field("$(P)$(SGM):sel_xOff_1.SDIS",16777215,0,"$(P)$(SGM):sel_xOff_1.SDIS") +#! Link("$(P)$(SGM):sel_xOff_1.SDIS","$(P)$(SGM):sel_xOff_1/SDIS") +#! Field("$(P)$(SGM):sel_xOff_1.SELL",16777215,0,"$(P)$(SGM):sel_xOff_1.SELL") +#! Link("$(P)$(SGM):sel_xOff_1.SELL","$(P)$(SGM):sel_xOff_1/SELL") +#! Field("$(P)$(SGM):sel_xOff_1.LNK1",16777215,1,"$(P)$(SGM):sel_xOff_1.LNK1") +#! Link("$(P)$(SGM):sel_xOff_1.LNK1","$(P)$(SGM):xOff.VAL") +#! Field("$(P)$(SGM):sel_xOff_1.LNK2",16777215,1,"$(P)$(SGM):sel_xOff_1.LNK2") +#! Link("$(P)$(SGM):sel_xOff_1.LNK2","$(P)$(SGM):xOff.VAL") +#! Field("$(P)$(SGM):sel_xOff_1.LNK3",16777215,1,"$(P)$(SGM):sel_xOff_1.LNK3") +#! Link("$(P)$(SGM):sel_xOff_1.LNK3","$(P)$(SGM):xOff.VAL") +#! Field("$(P)$(SGM):sel_xOff_1.LNK4",16777215,1,"$(P)$(SGM):sel_xOff_1.LNK4") +#! Link("$(P)$(SGM):sel_xOff_1.LNK4","$(P)$(SGM):xOff.VAL") +#! Field("$(P)$(SGM):sel_xOff_1.LNK5",16777215,1,"$(P)$(SGM):sel_xOff_1.LNK5") +#! Link("$(P)$(SGM):sel_xOff_1.LNK5","$(P)$(SGM):xOff.VAL") +#! Field("$(P)$(SGM):sel_xOff_1.LNK6",16777215,1,"$(P)$(SGM):sel_xOff_1.LNK6") +#! Link("$(P)$(SGM):sel_xOff_1.LNK6","$(P)$(SGM):xOff.VAL") +#! Field("$(P)$(SGM):sel_xOff_1.LNK7",16777215,1,"$(P)$(SGM):sel_xOff_1.LNK7") +#! Link("$(P)$(SGM):sel_xOff_1.LNK7","$(P)$(SGM):xOff.VAL") +#! Field("$(P)$(SGM):sel_xOff_1.LNK8",16777215,1,"$(P)$(SGM):sel_xOff_1.LNK8") +#! Link("$(P)$(SGM):sel_xOff_1.LNK8","$(P)$(SGM):xOff.VAL") +#! Field("$(P)$(SGM):sel_xOff_1.LNK9",16777215,1,"$(P)$(SGM):sel_xOff_1.LNK9") +#! Link("$(P)$(SGM):sel_xOff_1.LNK9","$(P)$(SGM):xOff.VAL") +#! Field("$(P)$(SGM):sel_xOff_1.LNKA",16777215,1,"$(P)$(SGM):sel_xOff_1.LNKA") +#! Link("$(P)$(SGM):sel_xOff_1.LNKA","$(P)$(SGM):xOff.VAL") +#! Connector("$(P)$(SGM):sel_xOff_1/SELL","$(P)$(SGM):selVal.VAL",4880,2870,16777215,"",0) +#! Connector("$(P)$(SGM):sel_xOff_1/SDIS","$(P)$(SGM):selBank.VAL",4900,2770,16777215,"",0) +#! Record("$(P)$(SGM):sel_xOff_2",5500,3585,0,0,"$(P)$(SGM):sel_xOff_2") +#! Field("$(P)$(SGM):sel_xOff_2.SDIS",16777215,0,"$(P)$(SGM):sel_xOff_2.SDIS") +#! Link("$(P)$(SGM):sel_xOff_2.SDIS","$(P)$(SGM):sel_xOff_2/SDIS") +#! Field("$(P)$(SGM):sel_xOff_2.SELL",16777215,0,"$(P)$(SGM):sel_xOff_2.SELL") +#! Link("$(P)$(SGM):sel_xOff_2.SELL","$(P)$(SGM):sel_xOff_2/SELL") +#! Field("$(P)$(SGM):sel_xOff_2.LNK1",16777215,1,"$(P)$(SGM):sel_xOff_2.LNK1") +#! Link("$(P)$(SGM):sel_xOff_2.LNK1","$(P)$(SGM):xOff.VAL") +#! Field("$(P)$(SGM):sel_xOff_2.LNK2",16777215,1,"$(P)$(SGM):sel_xOff_2.LNK2") +#! Link("$(P)$(SGM):sel_xOff_2.LNK2","$(P)$(SGM):xOff.VAL") +#! Field("$(P)$(SGM):sel_xOff_2.LNK3",16777215,1,"$(P)$(SGM):sel_xOff_2.LNK3") +#! Link("$(P)$(SGM):sel_xOff_2.LNK3","$(P)$(SGM):xOff.VAL") +#! Field("$(P)$(SGM):sel_xOff_2.LNK4",16777215,1,"$(P)$(SGM):sel_xOff_2.LNK4") +#! Link("$(P)$(SGM):sel_xOff_2.LNK4","$(P)$(SGM):xOff.VAL") +#! Field("$(P)$(SGM):sel_xOff_2.LNK5",16777215,1,"$(P)$(SGM):sel_xOff_2.LNK5") +#! Link("$(P)$(SGM):sel_xOff_2.LNK5","$(P)$(SGM):xOff.VAL") +#! Field("$(P)$(SGM):sel_xOff_2.LNK6",16777215,1,"$(P)$(SGM):sel_xOff_2.LNK6") +#! Link("$(P)$(SGM):sel_xOff_2.LNK6","$(P)$(SGM):xOff.VAL") +#! Connector("$(P)$(SGM):sel_xOff_2/SELL","$(P)$(SGM):selVal.VAL",4880,3060,16777215,"",0) +#! Connector("$(P)$(SGM):sel_xOff_2/SDIS","$(P)$(SGM):selBank.VAL",4900,2960,16777215,"",0) +#! Record("$(P)$(SGM):sync",1880,493,0,0,"$(P)$(SGM):sync") +#! Field("$(P)$(SGM):sync.PROC",16777215,0,"$(P)$(SGM):sync.PROC") +#! Field("$(P)$(SGM):sync.LNK1",16777215,1,"$(P)$(SGM):sync.LNK1") +#! Link("$(P)$(SGM):sync.LNK1","$(P)$(SGM):sync/LNK1") +#! Field("$(P)$(SGM):sync.DOL2",16777215,1,"$(P)$(SGM):sync.DOL2") +#! Link("$(P)$(SGM):sync.DOL2","$(P)$(SGM):sync/DOL2") +#! Field("$(P)$(SGM):sync.LNK2",16777215,0,"$(P)$(SGM):sync.LNK2") +#! Link("$(P)$(SGM):sync.LNK2","$(P)$(SGM):sync/LNK2") +#! Field("$(P)$(SGM):sync.DOL3",16777215,1,"$(P)$(SGM):sync.DOL3") +#! Link("$(P)$(SGM):sync.DOL3","$(P)$(SGM):sync/DOL3") +#! Field("$(P)$(SGM):sync.LNK3",16777215,0,"$(P)$(SGM):sync.LNK3") +#! Link("$(P)$(SGM):sync.LNK3","$(P)$(SGM):sync/LNK3") +#! Field("$(P)$(SGM):sync.DOL4",16777215,1,"$(P)$(SGM):sync.DOL4") +#! Link("$(P)$(SGM):sync.DOL4","$(P)$(SGM):sync/DOL4") +#! Field("$(P)$(SGM):sync.LNK4",16777215,0,"$(P)$(SGM):sync.LNK4") +#! Link("$(P)$(SGM):sync.LNK4","$(P)$(SGM):sync/LNK4") +#! Field("$(P)$(SGM):sync.LNK5",16777215,1,"$(P)$(SGM):sync.LNK5") +#! Link("$(P)$(SGM):sync.LNK5","$(P)$(SGM):sync/LNK5") +#! Connector("$(P)$(SGM):sync/LNK5","$(P)$(SGM):hold.VAL",3180,880,16777215,"",0) +#! Connector("$(P)$(SGM):sync/LNK4","$(P)$(SGM):Energy.VAL",1680,1300,16777215,"",0) +#! Connector("$(P)$(SGM):sync/LNK3","$(P)$(SGM):Lambda.VAL",1660,1390,16777215,"",0) +#! Connector("$(P)$(SGM):sync/LNK2","$(P)$(SGM):phi.VAL",1640,1490,16777215,"",0) +#! Connector("$(P)$(SGM):sync/LNK1","$(P)$(SGM):hold.VAL",3180,810,16777215,"",0) +#! Connector("$(P)$(SGM):sync/DOL4","$(P)$(SGM):EnergyRBV.VAL",3140,1000,16777215,"",0) +#! Connector("$(P)$(SGM):sync/DOL3","$(P)$(SGM):LambdaRBV.VAL",3120,930,16777215,"",0) +#! Connector("$(P)$(SGM):sync/DOL2","$(P)$(SGM):phiRBV.VAL",3100,860,16777215,"",0) +#! Record("$(P)$(SGM):stripeDesc",3640,3389,0,0,"$(P)$(SGM):stripeDesc") +#! Field("$(P)$(SGM):stripeDesc.VAL",16777215,0,"$(P)$(SGM):stripeDesc.VAL") +#! Record("$(P)$(SGM):EnergyTweak",480,1412,0,0,"$(P)$(SGM):EnergyTweak") +#! Field("$(P)$(SGM):EnergyTweak.INPD",16777215,1,"$(P)$(SGM):EnergyTweak.INPD") +#! Link("$(P)$(SGM):EnergyTweak.INPD","$(P)$(SGM):EnergyTweak/INPD") +#! Field("$(P)$(SGM):EnergyTweak.OUTE",16777215,1,"$(P)$(SGM):EnergyTweak.OUTE") +#! Link("$(P)$(SGM):EnergyTweak.OUTE","$(P)$(SGM):Energy.VAL") +#! Field("$(P)$(SGM):EnergyTweak.INPF",16777215,0,"$(P)$(SGM):EnergyTweak.INPF") +#! Link("$(P)$(SGM):EnergyTweak.INPF","$(P)$(SGM):EnergyTweak/INPF") +#! Field("$(P)$(SGM):EnergyTweak.A",16777215,0,"$(P)$(SGM):EnergyTweak.A") +#! Field("$(P)$(SGM):EnergyTweak.OUTG",16777215,0,"$(P)$(SGM):EnergyTweak.OUTG") +#! Link("$(P)$(SGM):EnergyTweak.OUTG","$(P)$(SGM):EnergyTweak.A") +#! Field("$(P)$(SGM):EnergyTweak.B",16777215,0,"$(P)$(SGM):EnergyTweak.B") +#! Field("$(P)$(SGM):EnergyTweak.OUTH",16777215,0,"$(P)$(SGM):EnergyTweak.OUTH") +#! Link("$(P)$(SGM):EnergyTweak.OUTH","$(P)$(SGM):EnergyTweak.B") +#! Connector("$(P)$(SGM):EnergyTweak/INPF","$(P)$(SGM):delta.K",420,1500,16777215,"",0) +#! Connector("$(P)$(SGM):EnergyTweak/INPD","$(P)$(SGM):Energy.VAL",700,1740,16777215,"",0) +#! Record("$(P)$(SGM):GrMotPut1",6080,2658,0,0,"$(P)$(SGM):GrMotPut1") +#! Field("$(P)$(SGM):GrMotPut1.A",16777215,1,"$(P)$(SGM):GrMotPut1.A") +#! Field("$(P)$(SGM):GrMotPut1.INPB",16777215,0,"$(P)$(SGM):GrMotPut1.INPB") +#! Link("$(P)$(SGM):GrMotPut1.INPB","$(P)$(SGM):StripeWidth.VAL") +#! Field("$(P)$(SGM):GrMotPut1.B",16777215,1,"$(P)$(SGM):GrMotPut1.B") +#! Field("$(P)$(SGM):GrMotPut1.INPC",16777215,0,"$(P)$(SGM):GrMotPut1.INPC") +#! Link("$(P)$(SGM):GrMotPut1.INPC","$(P)$(SGM):GrMotPut1/INPC") +#! Field("$(P)$(SGM):GrMotPut1.INPG",16777215,0,"$(P)$(SGM):GrMotPut1.INPG") +#! Link("$(P)$(SGM):GrMotPut1.INPG","$(P)$(SGM):GrMotPut1/INPG") +#! Field("$(P)$(SGM):GrMotPut1.INPH",16777215,0,"$(P)$(SGM):GrMotPut1.INPH") +#! Link("$(P)$(SGM):GrMotPut1.INPH","$(P)$(SGM):GrMotPut1/INPH") +#! Field("$(P)$(SGM):GrMotPut1.OUTD",16777215,1,"$(P)$(SGM):GrMotPut1.OUTD") +#! Link("$(P)$(SGM):GrMotPut1.OUTD","$(P)$(SGM):GrMotPut1/OUTD") +#! Field("$(P)$(SGM):GrMotPut1.OUTE",16777215,1,"$(P)$(SGM):GrMotPut1.OUTE") +#! Link("$(P)$(SGM):GrMotPut1.OUTE","$(P)$(SGM):GrMotPut1/OUTE") +#! Field("$(P)$(SGM):GrMotPut1.OUTF",16777215,1,"$(P)$(SGM):GrMotPut1.OUTF") +#! Link("$(P)$(SGM):GrMotPut1.OUTF","$(P)$(SGM):GrMotPut1/OUTF") +#! Connector("$(P)$(SGM):GrMotPut1/INPH",null,6020,3120,16777215,"",3) +#! Connector("$(P)$(SGM):GrMotPut1/INPG",null,6020,3100,16777215,"",3) +#! Connector("$(P)$(SGM):GrMotPut1/INPC",null,6020,3080,16777215,"",3) +#! Connector("$(P)$(SGM):GrMotPut1/OUTF","$(P)$(SGM):GrMotPut.A",6340,3190,16777215,"",0) +#! Connector("$(P)$(SGM):GrMotPut1/OUTE",null,6380,3160,16777215,"",2) +#! Connector("$(P)$(SGM):GrMotPut1/OUTD",null,6380,3140,16777215,"",2) +#! Record("$(P)$(SGM):GrMotPut2",6400,3125,0,0,"$(P)$(SGM):GrMotPut2") +#! Field("$(P)$(SGM):GrMotPut2.INPA",16777215,0,"$(P)$(SGM):GrMotPut2.INPA") +#! Link("$(P)$(SGM):GrMotPut2.INPA","$(P)$(SGM):GrMotPut2/INPA") +#! Field("$(P)$(SGM):GrMotPut2.INPB",16777215,0,"$(P)$(SGM):GrMotPut2.INPB") +#! Link("$(P)$(SGM):GrMotPut2.INPB","$(P)$(SGM):GrMotPut2/INPB") +#! Field("$(P)$(SGM):GrMotPut2.OUTC",16777215,1,"$(P)$(SGM):GrMotPut2.OUTC") +#! Link("$(P)$(SGM):GrMotPut2.OUTC","$(P)$(SGM):GrMotPut2/OUTC") +#! Field("$(P)$(SGM):GrMotPut2.OUTD",16777215,1,"$(P)$(SGM):GrMotPut2.OUTD") +#! Link("$(P)$(SGM):GrMotPut2.OUTD","$(P)$(SGM):GrMotPut2/OUTD") +#! Connector("$(P)$(SGM):GrMotPut2/INPB","$(P)$(SGM):GrMotPut1.B",6300,3190,16777215,"",0) +#! Connector("$(P)$(SGM):GrMotPut2/INPA","$(P)$(SGM):GrMotPut1.A",6320,3160,16777215,"",0) +#! Connector("$(P)$(SGM):GrMotPut2/OUTD",null,6640,3460,16777215,"",2) +#! Connector("$(P)$(SGM):GrMotPut2/OUTC",null,6640,3440,16777215,"",2) +#! Record("$(P)$(SGM):LambdaTweak",480,1632,0,0,"$(P)$(SGM):LambdaTweak") +#! Field("$(P)$(SGM):LambdaTweak.INPD",16777215,1,"$(P)$(SGM):LambdaTweak.INPD") +#! Link("$(P)$(SGM):LambdaTweak.INPD","$(P)$(SGM):LambdaTweak/INPD") +#! Field("$(P)$(SGM):LambdaTweak.OUTE",16777215,1,"$(P)$(SGM):LambdaTweak.OUTE") +#! Link("$(P)$(SGM):LambdaTweak.OUTE","$(P)$(SGM):Lambda.VAL") +#! Field("$(P)$(SGM):LambdaTweak.INPF",16777215,0,"$(P)$(SGM):LambdaTweak.INPF") +#! Link("$(P)$(SGM):LambdaTweak.INPF","$(P)$(SGM):LambdaTweak/INPF") +#! Field("$(P)$(SGM):LambdaTweak.A",16777215,0,"$(P)$(SGM):LambdaTweak.A") +#! Field("$(P)$(SGM):LambdaTweak.OUTG",16777215,0,"$(P)$(SGM):LambdaTweak.OUTG") +#! Link("$(P)$(SGM):LambdaTweak.OUTG","$(P)$(SGM):LambdaTweak.A") +#! Field("$(P)$(SGM):LambdaTweak.B",16777215,0,"$(P)$(SGM):LambdaTweak.B") +#! Field("$(P)$(SGM):LambdaTweak.OUTH",16777215,0,"$(P)$(SGM):LambdaTweak.OUTH") +#! Link("$(P)$(SGM):LambdaTweak.OUTH","$(P)$(SGM):LambdaTweak.B") +#! Connector("$(P)$(SGM):LambdaTweak/INPF","$(P)$(SGM):delta.J",400,1600,16777215,"",0) +#! Connector("$(P)$(SGM):LambdaTweak/INPD","$(P)$(SGM):Lambda.VAL",700,1960,16777215,"",0) +#! Record("$(P)$(SGM):T1",1840,1232,0,0,"$(P)$(SGM):T1") +#! Field("$(P)$(SGM):T1.A",16777215,1,"$(P)$(SGM):T1.A") +#! Field("$(P)$(SGM):T1.B",16777215,1,"$(P)$(SGM):T1.B") +#! Field("$(P)$(SGM):T1.C",16777215,1,"$(P)$(SGM):T1.C") +#! Field("$(P)$(SGM):T1.D",16777215,1,"$(P)$(SGM):T1.D") +#! Field("$(P)$(SGM):T1.E",16777215,0,"$(P)$(SGM):T1.E") +#! Field("$(P)$(SGM):T1.F",16777215,0,"$(P)$(SGM):T1.F") +#! Field("$(P)$(SGM):T1.G",16777215,1,"$(P)$(SGM):T1.G") +#! Field("$(P)$(SGM):T1.OUTK",16777215,0,"$(P)$(SGM):T1.OUTK") +#! Link("$(P)$(SGM):T1.OUTK","$(P)$(SGM):T1/OUTK") +#! Field("$(P)$(SGM):T1.OUTJ",16777215,0,"$(P)$(SGM):T1.OUTJ") +#! Link("$(P)$(SGM):T1.OUTJ","$(P)$(SGM):LambdaB.VAL") +#! Field("$(P)$(SGM):T1.OUTG",16777215,0,"$(P)$(SGM):T1.OUTG") +#! Link("$(P)$(SGM):T1.OUTG","$(P)$(SGM):T1/OUTG") +#! Field("$(P)$(SGM):T1.OUTH",16777215,1,"$(P)$(SGM):T1.OUTH") +#! Link("$(P)$(SGM):T1.OUTH","$(P)$(SGM):T1/OUTH") +#! Connector("$(P)$(SGM):T1/OUTK","$(P)$(SGM):EnergyB.VAL",1540,1750,16777215,"",0) +#! Connector("$(P)$(SGM):T1/OUTH","$(P)$(SGM):T2.H",2520,1650,16777215,"",0) +#! Connector("$(P)$(SGM):T1/OUTG","$(P)$(SGM):phiB.VAL",1760,2000,16777215,"",0) +#! Record("$(P)$(SGM):T2",2660,910,0,0,"$(P)$(SGM):T2") +#! Field("$(P)$(SGM):T2.B",16777215,0,"$(P)$(SGM):T2.B") +#! Field("$(P)$(SGM):T2.N",16777215,1,"$(P)$(SGM):T2.N") +#! Field("$(P)$(SGM):T2.I",16777215,1,"$(P)$(SGM):T2.I") +#! Field("$(P)$(SGM):T2.H",16777215,0,"$(P)$(SGM):T2.H") +#! Field("$(P)$(SGM):T2.INPA",16777215,1,"$(P)$(SGM):T2.INPA") +#! Field("$(P)$(SGM):T2.INPC",16777215,0,"$(P)$(SGM):T2.INPC") +#! Link("$(P)$(SGM):T2.INPC","$(P)$(SGM):T2/INPC") +#! Field("$(P)$(SGM):T2.INPD",16777215,0,"$(P)$(SGM):T2.INPD") +#! Link("$(P)$(SGM):T2.INPD","$(P)$(SGM):T2/INPD") +#! Field("$(P)$(SGM):T2.INPJ",16777215,0,"$(P)$(SGM):T2.INPJ") +#! Link("$(P)$(SGM):T2.INPJ","$(P)$(SGM):T2/INPJ2") +#! Field("$(P)$(SGM):T2.INPK",16777215,1,"$(P)$(SGM):T2.INPK") +#! Field("$(P)$(SGM):T2.INPL",16777215,1,"$(P)$(SGM):T2.INPL") +#! Field("$(P)$(SGM):T2.FLNK",16777215,1,"$(P)$(SGM):T2.FLNK") +#! Link("$(P)$(SGM):T2.FLNK","$(P)$(SGM):autoMove") +#! Connector("$(P)$(SGM):T2/INPJ2","$(P)$(SGM):T2/INPJ1",2560,1465,16777215,"",0) +#! Connector("$(P)$(SGM):T2/INPJ1","$(P)$(SGM):T2/INPJ",4730,1380,16777215,"",0) +#! Connector("$(P)$(SGM):T2/INPJ","$(P)$(SGM):xOff.VAL",6900,2695,16777215,"",0) +#! Connector("$(P)$(SGM):T2/INPD","$(P)$(SGM):T1.G",2480,1640,16777215,"",0) +#! Connector("$(P)$(SGM):T2/INPC","$(P)$(SGM):2Theta.VAL",2500,1540,16777215,"",0) +#! Record("$(P)$(SGM):T3",2520,560,0,0,"$(P)$(SGM):T3") +#! Field("$(P)$(SGM):T3.INPA",16777215,0,"$(P)$(SGM):T3.INPA") +#! Link("$(P)$(SGM):T3.INPA","$(P)$(SGM):T3/INPA") +#! Field("$(P)$(SGM):T3.INPB",16777215,0,"$(P)$(SGM):T3.INPB") +#! Link("$(P)$(SGM):T3.INPB","$(P)$(SGM):T3/INPB") +#! Field("$(P)$(SGM):T3.INPC",16777215,0,"$(P)$(SGM):T3.INPC") +#! Link("$(P)$(SGM):T3.INPC","$(P)$(SGM):T3/INPC") +#! Field("$(P)$(SGM):T3.INPD",16777215,0,"$(P)$(SGM):T3.INPD") +#! Link("$(P)$(SGM):T3.INPD","$(P)$(SGM):T3/INPD") +#! Field("$(P)$(SGM):T3.INPF",16777215,0,"$(P)$(SGM):T3.INPF") +#! Link("$(P)$(SGM):T3.INPF","$(P)$(SGM):T3/INPF2") +#! Field("$(P)$(SGM):T3.INPG",16777215,0,"$(P)$(SGM):T3.INPG") +#! Link("$(P)$(SGM):T3.INPG","$(P)$(SGM):T3/INPG") +#! Field("$(P)$(SGM):T3.OUTI",16777215,1,"$(P)$(SGM):T3.OUTI") +#! Link("$(P)$(SGM):T3.OUTI","$(P)$(SGM):T3/OUTI") +#! Field("$(P)$(SGM):T3.OUTJ",16777215,1,"$(P)$(SGM):T3.OUTJ") +#! Link("$(P)$(SGM):T3.OUTJ","$(P)$(SGM):T3/OUTJ") +#! Field("$(P)$(SGM):T3.OUTK",16777215,1,"$(P)$(SGM):T3.OUTK") +#! Link("$(P)$(SGM):T3.OUTK","$(P)$(SGM):T3/OUTK") +#! Connector("$(P)$(SGM):T3/INPG",null,2400,1100,16777215,"",3) +#! Connector("$(P)$(SGM):T3/INPF2","$(P)$(SGM):T3/INPF",2440,1195,16777215,"",0) +#! Connector("$(P)$(SGM):T3/INPF","$(P)$(SGM):T3/INPF1",4670,1380,16777215,"",0) +#! Connector("$(P)$(SGM):T3/INPF1","$(P)$(SGM):xOff.VAL",6900,2695,16777215,"",0) +#! Connector("$(P)$(SGM):T3/INPD","$(P)$(SGM):T1.D",2120,1340,16777215,"",0) +#! Connector("$(P)$(SGM):T3/INPC","$(P)$(SGM):T1.C",2100,1320,16777215,"",0) +#! Connector("$(P)$(SGM):T3/INPB","$(P)$(SGM):T1.B",2080,1300,16777215,"",0) +#! Connector("$(P)$(SGM):T3/INPA","$(P)$(SGM):T1.A",2060,1280,16777215,"",0) +#! Connector("$(P)$(SGM):T3/OUTK","$(P)$(SGM):EnergyRBV.VAL",2760,1140,16777215,"",0) +#! Connector("$(P)$(SGM):T3/OUTJ","$(P)$(SGM):LambdaRBV.VAL",2780,1080,16777215,"",0) +#! Connector("$(P)$(SGM):T3/OUTI","$(P)$(SGM):phiRBV.VAL",2760,1020,16777215,"",0) +#! Field("$(P)$(SGM):T3.PROC",16777215,0,"$(P)$(SGM):T3.PROC") +#! Record("$(P)$(SGM):delta",580,680,0,0,"$(P)$(SGM):delta") +#! Field("$(P)$(SGM):delta.INPA",16777215,0,"$(P)$(SGM):delta.INPA") +#! Link("$(P)$(SGM):delta.INPA","$(P)$(SGM):delta/INPA") +#! Field("$(P)$(SGM):delta.INPB",16777215,0,"$(P)$(SGM):delta.INPB") +#! Link("$(P)$(SGM):delta.INPB","$(P)$(SGM):delta/INPB") +#! Field("$(P)$(SGM):delta.INPE",16777215,1,"$(P)$(SGM):delta.INPE") +#! Link("$(P)$(SGM):delta.INPE","$(P)$(SGM):delta/INPE") +#! Field("$(P)$(SGM):delta.INPD",16777215,1,"$(P)$(SGM):delta.INPD") +#! Link("$(P)$(SGM):delta.INPD","$(P)$(SGM):d.VAL") +#! Field("$(P)$(SGM):delta.INPC",16777215,1,"$(P)$(SGM):delta.INPC") +#! Link("$(P)$(SGM):delta.INPC","$(P)$(SGM):delta/INPC") +#! Field("$(P)$(SGM):delta.INPF",16777215,1,"$(P)$(SGM):delta.INPF") +#! Link("$(P)$(SGM):delta.INPF","$(P)$(SGM):delta/INPF") +#! Field("$(P)$(SGM):delta.INPG",16777215,1,"$(P)$(SGM):delta.INPG") +#! Link("$(P)$(SGM):delta.INPG","$(P)$(SGM):delta/INPG") +#! Field("$(P)$(SGM):delta.INPH",16777215,1,"$(P)$(SGM):delta.INPH") +#! Link("$(P)$(SGM):delta.INPH","$(P)$(SGM):delta/INPH") +#! Field("$(P)$(SGM):delta.I",16777215,0,"$(P)$(SGM):delta.I") +#! Field("$(P)$(SGM):delta.J",16777215,0,"$(P)$(SGM):delta.J") +#! Field("$(P)$(SGM):delta.K",16777215,0,"$(P)$(SGM):delta.K") +#! Connector("$(P)$(SGM):delta/INPH","$(P)$(SGM):LambdaRBV.VAL",3120,1140,16777215,"",0) +#! Connector("$(P)$(SGM):delta/INPG","$(P)$(SGM):phiRBV.VAL",3100,1080,16777215,"",0) +#! Connector("$(P)$(SGM):delta/INPF","$(P)$(SGM):2Theta.VAL",820,1360,16777215,"",0) +#! Connector("$(P)$(SGM):delta/INPE","$(P)$(SGM):m.VAL",840,890,16777215,"",0) +#! Connector("$(P)$(SGM):delta/INPC","$(P)$(SGM):len.VAL",1000,1250,16777215,"",0) +#! Connector("$(P)$(SGM):delta/INPB",null,520,1140,16777215,"",3) +#! Connector("$(P)$(SGM):delta/INPA",null,520,1120,16777215,"",3) +#! Field("$(P)$(SGM):delta.PROC",16777215,0,"$(P)$(SGM):delta.PROC") +#! Record("$(P)$(SGM):limits",4460,4162,0,0,"$(P)$(SGM):limits") +#! Field("$(P)$(SGM):limits.A",16777215,0,"$(P)$(SGM):limits.A") +#! Field("$(P)$(SGM):limits.B",16777215,0,"$(P)$(SGM):limits.B") +#! Field("$(P)$(SGM):limits.INPC",16777215,0,"$(P)$(SGM):limits.INPC") +#! Link("$(P)$(SGM):limits.INPC","$(P)$(SGM):limits/INPC") +#! Field("$(P)$(SGM):limits.INPD",16777215,0,"$(P)$(SGM):limits.INPD") +#! Link("$(P)$(SGM):limits.INPD","$(P)$(SGM):limits/INPD1") +#! Field("$(P)$(SGM):limits.INPE",16777215,0,"$(P)$(SGM):limits.INPE") +#! Link("$(P)$(SGM):limits.INPE","$(P)$(SGM):limits/INPE") +#! Field("$(P)$(SGM):limits.OUTA",16777215,0,"$(P)$(SGM):limits.OUTA") +#! Link("$(P)$(SGM):limits.OUTA","$(P)$(SGM):limits/OUTA") +#! Field("$(P)$(SGM):limits.OUTB",16777215,0,"$(P)$(SGM):limits.OUTB") +#! Link("$(P)$(SGM):limits.OUTB","$(P)$(SGM):limits/OUTB") +#! Field("$(P)$(SGM):limits.OUTF",16777215,0,"$(P)$(SGM):limits.OUTF") +#! Link("$(P)$(SGM):limits.OUTF","$(P)$(SGM):limits/OUTF") +#! Field("$(P)$(SGM):limits.OUTG",16777215,0,"$(P)$(SGM):limits.OUTG") +#! Link("$(P)$(SGM):limits.OUTG","$(P)$(SGM):limits/OUTG") +#! Field("$(P)$(SGM):limits.OUTI",16777215,0,"$(P)$(SGM):limits.OUTI") +#! Link("$(P)$(SGM):limits.OUTI","$(P)$(SGM):limits/OUTI") +#! Field("$(P)$(SGM):limits.OUTJ",16777215,0,"$(P)$(SGM):limits.OUTJ") +#! Link("$(P)$(SGM):limits.OUTJ","$(P)$(SGM):limits/OUTJ") +#! Connector("$(P)$(SGM):limits/INPE","$(P)$(SGM):2Theta.VAL",1200,3120,16777215,"",0) +#! Connector("$(P)$(SGM):limits/INPD1","$(P)$(SGM):d.VAL",1120,2890,16777215,"",0) +#! Connector("$(P)$(SGM):limits/INPC","$(P)$(SGM):m.VAL",1620,2660,16777215,"",0) +#! Connector("$(P)$(SGM):limits/OUTJ","$(P)$(SGM):phi.DRVL",840,3500,16777215,"",0) +#! Connector("$(P)$(SGM):limits/OUTI","$(P)$(SGM):phi.DRVH",820,3480,16777215,"",0) +#! Connector("$(P)$(SGM):limits/OUTG","$(P)$(SGM):Energy.DRVL",760,3250,16777215,"",0) +#! Connector("$(P)$(SGM):limits/OUTF","$(P)$(SGM):Energy.DRVH",740,3230,16777215,"",0) +#! Connector("$(P)$(SGM):limits/OUTB","$(P)$(SGM):Lambda.DRVL",800,3340,16777215,"",0) +#! Connector("$(P)$(SGM):limits/OUTA","$(P)$(SGM):Lambda.DRVH",780,3320,16777215,"",0) +#! Record("$(P)$(SGM):phiTweak",480,1872,0,0,"$(P)$(SGM):phiTweak") +#! Field("$(P)$(SGM):phiTweak.INPD",16777215,1,"$(P)$(SGM):phiTweak.INPD") +#! Link("$(P)$(SGM):phiTweak.INPD","$(P)$(SGM):phiTweak/INPD") +#! Field("$(P)$(SGM):phiTweak.OUTE",16777215,1,"$(P)$(SGM):phiTweak.OUTE") +#! Link("$(P)$(SGM):phiTweak.OUTE","$(P)$(SGM):phi.VAL") +#! Field("$(P)$(SGM):phiTweak.INPF",16777215,0,"$(P)$(SGM):phiTweak.INPF") +#! Link("$(P)$(SGM):phiTweak.INPF","$(P)$(SGM):phiTweak/INPF") +#! Field("$(P)$(SGM):phiTweak.A",16777215,0,"$(P)$(SGM):phiTweak.A") +#! Field("$(P)$(SGM):phiTweak.OUTG",16777215,0,"$(P)$(SGM):phiTweak.OUTG") +#! Link("$(P)$(SGM):phiTweak.OUTG","$(P)$(SGM):phiTweak.A") +#! Field("$(P)$(SGM):phiTweak.B",16777215,0,"$(P)$(SGM):phiTweak.B") +#! Field("$(P)$(SGM):phiTweak.OUTH",16777215,0,"$(P)$(SGM):phiTweak.OUTH") +#! Link("$(P)$(SGM):phiTweak.OUTH","$(P)$(SGM):phiTweak.B") +#! Connector("$(P)$(SGM):phiTweak/INPF","$(P)$(SGM):delta.I",380,1710,16777215,"",0) +#! Connector("$(P)$(SGM):phiTweak/INPD","$(P)$(SGM):phi.VAL",700,2200,16777215,"",0) +#! Record("$(P)$(SGM):GrMotPut",6400,3112,0,0,"$(P)$(SGM):GrMotPut") +#! Field("$(P)$(SGM):GrMotPut.A",16777215,0,"$(P)$(SGM):GrMotPut.A") +#! Field("$(P)$(SGM):GrMotPut.FLNK",16777215,1,"$(P)$(SGM):GrMotPut.FLNK") +#! Link("$(P)$(SGM):GrMotPut.FLNK","$(P)$(SGM):GrMotPut/FLNK") +#! Connector("$(P)$(SGM):GrMotPut/FLNK","$(P)$(SGM):GrMotPut/FLNK1",6620,3285,16777215,"",0) +#! Connector("$(P)$(SGM):GrMotPut/FLNK1","$(P)$(SGM):GrMotPut/FLNK2",6490,3300,16777215,"",0) +#! Connector("$(P)$(SGM):GrMotPut/FLNK2","$(P)$(SGM):GrMotPut2",6360,3266,16777215,"",0) +#! Record("$(P)$(SGM):rOutWait",3580,1748,0,0,"$(P)$(SGM):rOutWait") +#! Field("$(P)$(SGM):rOutWait.SDIS",16777215,0,"$(P)$(SGM):rOutWait.SDIS") +#! Link("$(P)$(SGM):rOutWait.SDIS","$(P)$(SGM):rTrack.VAL") +#! Record("$(P)$(SGM):xWait",3580,1903,0,0,"$(P)$(SGM):xWait") +#! Field("$(P)$(SGM):xWait.SDIS",16777215,0,"$(P)$(SGM):xWait.SDIS") +#! Link("$(P)$(SGM):xWait.SDIS","$(P)$(SGM):rTrack.VAL") +#! Record("$(P)$(SGM):sel_desc_1",3340,2696,0,0,"$(P)$(SGM):sel_desc_1") +#! Field("$(P)$(SGM):sel_desc_1.SDIS",16777215,0,"$(P)$(SGM):sel_desc_1.SDIS") +#! Link("$(P)$(SGM):sel_desc_1.SDIS","$(P)$(SGM):sel_desc_1/SDIS") +#! Field("$(P)$(SGM):sel_desc_1.SELL",16777215,0,"$(P)$(SGM):sel_desc_1.SELL") +#! Link("$(P)$(SGM):sel_desc_1.SELL","$(P)$(SGM):sel_desc_1/SELL") +#! Field("$(P)$(SGM):sel_desc_1.LNK1",16777215,1,"$(P)$(SGM):sel_desc_1.LNK1") +#! Link("$(P)$(SGM):sel_desc_1.LNK1","$(P)$(SGM):stripeDesc.VAL") +#! Field("$(P)$(SGM):sel_desc_1.LNK2",16777215,1,"$(P)$(SGM):sel_desc_1.LNK2") +#! Link("$(P)$(SGM):sel_desc_1.LNK2","$(P)$(SGM):stripeDesc.VAL") +#! Field("$(P)$(SGM):sel_desc_1.LNK3",16777215,1,"$(P)$(SGM):sel_desc_1.LNK3") +#! Link("$(P)$(SGM):sel_desc_1.LNK3","$(P)$(SGM):stripeDesc.VAL") +#! Field("$(P)$(SGM):sel_desc_1.LNK4",16777215,1,"$(P)$(SGM):sel_desc_1.LNK4") +#! Link("$(P)$(SGM):sel_desc_1.LNK4","$(P)$(SGM):stripeDesc.VAL") +#! Field("$(P)$(SGM):sel_desc_1.LNK5",16777215,1,"$(P)$(SGM):sel_desc_1.LNK5") +#! Link("$(P)$(SGM):sel_desc_1.LNK5","$(P)$(SGM):stripeDesc.VAL") +#! Field("$(P)$(SGM):sel_desc_1.LNK6",16777215,1,"$(P)$(SGM):sel_desc_1.LNK6") +#! Link("$(P)$(SGM):sel_desc_1.LNK6","$(P)$(SGM):stripeDesc.VAL") +#! Field("$(P)$(SGM):sel_desc_1.LNK7",16777215,1,"$(P)$(SGM):sel_desc_1.LNK7") +#! Link("$(P)$(SGM):sel_desc_1.LNK7","$(P)$(SGM):stripeDesc.VAL") +#! Field("$(P)$(SGM):sel_desc_1.LNK8",16777215,1,"$(P)$(SGM):sel_desc_1.LNK8") +#! Link("$(P)$(SGM):sel_desc_1.LNK8","$(P)$(SGM):stripeDesc.VAL") +#! Field("$(P)$(SGM):sel_desc_1.LNK9",16777215,1,"$(P)$(SGM):sel_desc_1.LNK9") +#! Link("$(P)$(SGM):sel_desc_1.LNK9","$(P)$(SGM):stripeDesc.VAL") +#! Field("$(P)$(SGM):sel_desc_1.LNKA",16777215,1,"$(P)$(SGM):sel_desc_1.LNKA") +#! Link("$(P)$(SGM):sel_desc_1.LNKA","$(P)$(SGM):stripeDesc.VAL") +#! Connector("$(P)$(SGM):sel_desc_1/SELL","$(P)$(SGM):selVal.VAL",3240,2630,16777215,"",0) +#! Connector("$(P)$(SGM):sel_desc_1/SDIS","$(P)$(SGM):selBank.VAL",3220,2530,16777215,"",0) +#! Record("$(P)$(SGM):sel_desc_2",3340,3059,0,0,"$(P)$(SGM):sel_desc_2") +#! Field("$(P)$(SGM):sel_desc_2.SDIS",16777215,0,"$(P)$(SGM):sel_desc_2.SDIS") +#! Link("$(P)$(SGM):sel_desc_2.SDIS","$(P)$(SGM):sel_desc_2/SDIS") +#! Field("$(P)$(SGM):sel_desc_2.SELL",16777215,0,"$(P)$(SGM):sel_desc_2.SELL") +#! Link("$(P)$(SGM):sel_desc_2.SELL","$(P)$(SGM):sel_desc_2/SELL") +#! Field("$(P)$(SGM):sel_desc_2.LNK1",16777215,1,"$(P)$(SGM):sel_desc_2.LNK1") +#! Link("$(P)$(SGM):sel_desc_2.LNK1","$(P)$(SGM):stripeDesc.VAL") +#! Field("$(P)$(SGM):sel_desc_2.LNK2",16777215,1,"$(P)$(SGM):sel_desc_2.LNK2") +#! Link("$(P)$(SGM):sel_desc_2.LNK2","$(P)$(SGM):stripeDesc.VAL") +#! Field("$(P)$(SGM):sel_desc_2.LNK3",16777215,1,"$(P)$(SGM):sel_desc_2.LNK3") +#! Link("$(P)$(SGM):sel_desc_2.LNK3","$(P)$(SGM):stripeDesc.VAL") +#! Field("$(P)$(SGM):sel_desc_2.LNK4",16777215,1,"$(P)$(SGM):sel_desc_2.LNK4") +#! Link("$(P)$(SGM):sel_desc_2.LNK4","$(P)$(SGM):stripeDesc.VAL") +#! Field("$(P)$(SGM):sel_desc_2.LNK5",16777215,1,"$(P)$(SGM):sel_desc_2.LNK5") +#! Link("$(P)$(SGM):sel_desc_2.LNK5","$(P)$(SGM):stripeDesc.VAL") +#! Field("$(P)$(SGM):sel_desc_2.LNK6",16777215,1,"$(P)$(SGM):sel_desc_2.LNK6") +#! Link("$(P)$(SGM):sel_desc_2.LNK6","$(P)$(SGM):stripeDesc.VAL") +#! Connector("$(P)$(SGM):sel_desc_2/SDIS","$(P)$(SGM):selBank.VAL",3220,2690,16777215,"",0) +#! Connector("$(P)$(SGM):sel_desc_2/SELL","$(P)$(SGM):selVal.VAL",3240,2790,16777215,"",0) +#! Record("$(P)$(SGM):dPut",1420,1055,0,1,"$(P)$(SGM):dPut") +#! Field("$(P)$(SGM):dPut.SDIS",16777215,0,"$(P)$(SGM):dPut.SDIS") +#! Link("$(P)$(SGM):dPut.SDIS","$(P)$(SGM):dPut/SDIS") +#! Field("$(P)$(SGM):dPut.OUT",16777215,1,"$(P)$(SGM):dPut.OUT") +#! Link("$(P)$(SGM):dPut.OUT","$(P)$(SGM):T1.B") +#! Field("$(P)$(SGM):dPut.VAL",16777215,1,"$(P)$(SGM):dPut.VAL") +#! Connector("$(P)$(SGM):dPut/SDIS","$(P)$(SGM):init.PACT",1400,840,16777215,"",0) diff --git a/opticsApp/Db/fb_epid.db b/opticsApp/Db/fb_epid.db index 42bafc3..6589c20 100644 --- a/opticsApp/Db/fb_epid.db +++ b/opticsApp/Db/fb_epid.db @@ -1,9 +1,9 @@ ########### SVN repository information ################### -# $Date: 2012-03-01 16:56:26 -0600 (Thu, 01 Mar 2012) $ -# $Author: jemian $ -# $Revision: 14536 $ -# $URL: https://subversion.xray.aps.anl.gov/synApps/optics/tags/R2-9-1/opticsApp/Db/fb_epid.db $ -# $Id: fb_epid.db 14536 2012-03-01 22:56:26Z jemian $ +# $Date$ +# $Author$ +# $Revision$ +# $URL$ +# $Id$ ########### SVN repository information ################### # # file: fb_epid.db diff --git a/opticsApp/Db/filterDrive.db b/opticsApp/Db/filterDrive.db index 10e52d5..43ef950 100644 --- a/opticsApp/Db/filterDrive.db +++ b/opticsApp/Db/filterDrive.db @@ -187,4 +187,4 @@ record(ai, "$(P)$(R)NumFilters"){ field(DESC, "$(DESC) number of filters") field(VAL, "0") field(PREC, "0") -} +} \ No newline at end of file diff --git a/opticsApp/Db/flexCapSensor.db b/opticsApp/Db/flexCapSensor.db new file mode 100644 index 0000000..b16520a --- /dev/null +++ b/opticsApp/Db/flexCapSensor.db @@ -0,0 +1,56 @@ +### Convert the cap_sensor voltage to motor units + +record(ai, "$(P)$(C):voltage") +{ + field(DESC, "cap sensor voltage") + field(INP, "$(V) CP NMS") + field(PREC, "$(PREC=5)") + field(EGU, "V") +} + +record(calcout, "$(P)$(C):posCalc") +{ + field(DESC, "cap sensor pos calc") + field(INPA, "$(P)$(C):voltage CP NMS") + field(INPB, "$(P)$(C):umPerV CP NMS") + field(INPC, "$(P)$(C):offset CP NMS") + field(CALC, "A * B + C") + field(OUT, "$(P)$(C):pos PP NMS") + field(PREC, "$(PREC=5)") + field(EGU, "$(EGU=um)") +} + +record(ao, "$(P)$(C):pos") +{ + field(DESC, "cap sensor position") + field(PREC, "$(PREC=5)") + field(EGU, "$(EGU=um)") +} + +record(ao, "$(P)$(C):umPerV") +{ + field(DESC, "um per Volt") + field(PREC, "$(PREC=5)") + field(VAL, "$(UMV)") + field(EGU, "$(EGU=um)") +} + +record(ao, "$(P)$(C):offset") +{ + field(DESC, "cap sensor offset") + field(PREC, "$(PREC=5)") + field(VAL, "$(OFF)") + field(EGU, "$(EGU=um)") + +} + +record(calcout, "$(P)$(C):zero") +{ + field(DESC, "zero cap sensor offset") + field(PREC, "$(PREC=5)") + field(INPA, "$(P)$(C):offset NPP NMS") + field(INPB, "$(P)$(C):posCalc NPP NMS") + field(CALC, "A-B") + field(SCAN, "Passive") + field(OUT, "$(P)$(C):offset PP NMS") +} diff --git a/opticsApp/Db/flexCapSensor_settings.req b/opticsApp/Db/flexCapSensor_settings.req new file mode 100644 index 0000000..404116c --- /dev/null +++ b/opticsApp/Db/flexCapSensor_settings.req @@ -0,0 +1,6 @@ +$(P)$(C):posCalc.PREC +$(P)$(C):pos.PREC +$(P)$(C):umPerV.VAL +$(P)$(C):umPerV.PREC +$(P)$(C):offset.VAL +$(P)$(C):offset.PREC diff --git a/opticsApp/Db/flexCombinedMotion.db b/opticsApp/Db/flexCombinedMotion.db new file mode 100644 index 0000000..fc08f48 --- /dev/null +++ b/opticsApp/Db/flexCombinedMotion.db @@ -0,0 +1,188 @@ +### Configure a soft motor for the combined motion, which uses the cap sensor as feedback + +record(motor,"$(P)$(M)") +{ + field(DTYP,"Soft Channel") + field(DESC,"$(DESC)") + field(OUT,"$(P)$(M):setPoint PP MS") + field(RDBL,"$(P)$(C):pos NPP MS") + field(URIP,"Yes") + field(STOO,"$(P)$(M):stop PP MS") + field(DINP,"$(P)$(M):dmov NPP MS") + field(MRES,"0.0001") + field(RRES,"1.000") + field(PREC,"4") + field(DHLM,"$(DHLM=0)") + field(DLLM,"$(DLLM=0)") + field(TWV,"$(TWV=1)") + field(RTRY,"$(RTRY=0)") + field(EGU,"$(EGU=um)") + # Setting NTM=NO eliminates tdir messages after every move + field(NTM, "NO") + field(SDIS, "$(P)$(M)_able.VAL") +} + +record(bo, "$(P)$(M)_able") { + field(DESC, "motor enable") + field(PINI, "YES") + field(OUT, "$(P)$(M).DISP") + field(ZNAM, "Enable") + field(ONAM, "Disable") +} + +### Records that are used by the sequence program + +record(longout, "$(P)$(M):debug") +{ + field(VAL, "10") +} + +record(mbbo, "$(P)$(M):mode") +{ + field(DESC, "combined mode") + field(VAL, "0") + field(ZRST, "fast") + field(ZRVL, "0") + field(ONST, "precise") + field(ONVL, "1") + field(TWST, "coarse") + field(TWVL, "2") + field(THST, "fine") + field(THVL, "3") + field(OMSL, "supervisory") +} + +record(ao, "$(P)$(M):deadband") +{ + field(DESC, "Coarse motor deadband") + field(VAL, "0.03") + field(PREC, 3) +} + +record(longout, "$(P)$(M):retries") +{ + field(DESC, "Coarse motor retries") + field(VAL, "0") +} + +record(ao, "$(P)$(M):setPoint") +{ + field(DESC, "Combined-motion target") + field(PREC, 4) + field(LOPR, "-100000.0") + field(HOPR, "100000.0") + field(MDEL, "-1") + field(FLNK, "$(P)$(M):setBusy") +} + +record(calcout, "$(P)$(M):setBusy") +{ + field(DESC, "Set busy") + field(CALC, "1") + field(OUT, "$(P)$(M):busy PP") + field(OOPT, "Every Time") +} + +record(busy, "$(P)$(M):busy") +{ + field(DESC, "Combined-motion busy") +} + +record(calcout, "$(P)$(M):resetBusy") +{ + field(DESC, "Reset busy") + field(CALC, "0") + field(OUT, "$(P)$(M):busy CA") + field(OOPT, "Every Time") +} + +record(ao, "$(P)$(M):upperLimit") +{ + field(DESC, "Upper fine motor limit") + field(VAL, "$(HLM)") + field(PREC, 3) +} + +record(ao, "$(P)$(M):homePos") +{ + field(DESC, "fine motor home position") + field(VAL, "$(HOME)") + field(PREC, 3) +} + +record(ao, "$(P)$(M):lowerLimit") +{ + field(DESC, "Lower fine motor limit") + field(VAL, "$(LLM)") + field(PREC, 3) +} + +record(bo, "$(P)$(M):stop") +{ + field(DESC, "Stop motors") + field(VAL, "0") + field(ZNAM, "Done") + field(ONAM, "Stop") +} + +record(calcout, "$(P)$(M):dmov") +{ + field(DESC, "Done-moving calc") + field(INPA, "$(P)$(M):busy CP NMS") + field(CALC, "!A") +} + +# The following records allow the piezo to be moved to its home position +# and the coarse motor to be repositioned to hold the previous position +# with a single button press + +record(busy, $(P)$(M):rehome) +{ + field(DESC, "Re-home the piezo") +} + +record(stringin, $(P)$(M):lastMode) +{ + field(DESC, "Store the last mode") + field(INP, "$(P)$(M):mode") + field(SCAN, "Passive") +} + +record(calcout, "$(P)$(M):rehomeCalc") +{ + field(DESC, "Rehome trigger calc") + field(INPA, "$(P)$(M):rehome CP") + field(CALC, "A") + field(OOPT, "Transition To Non-zero") + field(DOPT, "Use CALC") + field(OUT, "$(P)$(M):rehomeSeq.PROC PP") +} + +record(sseq, "$(P)$(M):rehomeSeq") +{ + field(DESC, "Re-home the piezo") + field(SELM, "All") + # Store the last mode + field(DOL1, "1") + field(LNK1, "$(P)$(M):lastMode.PROC CA") + field(WAIT1, "Wait") + # Set the mode to coarse + field(DOL2, "2") + field(LNK2, "$(P)$(M):mode.VAL CA") + field(WAIT2, "Wait") + # Tell the motor to go to the last target position + #!field(DOL3, "1") + #!field(LNK3, "$(P)$(M):setPoint.PROC CA") + # Tell the motor to go to the current readback position + field(DOL3, "$(P)$(C):pos NPP") + field(LNK3, "$(P)$(M):setPoint.VAL CA") + field(WAIT3, "Wait") + # Restore the last mode + field(DOL4, "$(P)$(M):lastMode") + field(LNK4, "$(P)$(M):mode CA") + field(WAIT4, "Wait") + # Reset the rehome busy + field(DOL5, "0") + field(LNK5, "$(P)$(M):rehome CA") + field(WAIT5, "NoWait") +} diff --git a/opticsApp/Db/flexCombinedMotion_settings.req b/opticsApp/Db/flexCombinedMotion_settings.req new file mode 100644 index 0000000..9f318f8 --- /dev/null +++ b/opticsApp/Db/flexCombinedMotion_settings.req @@ -0,0 +1,15 @@ +file motor_settings.req P=$(P),M=$(M) + +$(P)$(M):mode.VAL +$(P)$(M):setPoint.VAL +$(P)$(M):setPoint.EGU +$(P)$(M):setPoint.DESC +$(P)$(M):setPoint.PREC +$(P)$(M):deadband.VAL +$(P)$(M):deadband.PREC +$(P)$(M):upperLimit.VAL +$(P)$(M):upperLimit.PREC +$(P)$(M):homePos.VAL +$(P)$(M):homePos.PREC +$(P)$(M):lowerLimit.VAL +$(P)$(M):lowerLimit.PREC diff --git a/opticsApp/Db/hrSeq.db b/opticsApp/Db/hrSeq.db index 60f2c55..2fac0f3 100644 --- a/opticsApp/Db/hrSeq.db +++ b/opticsApp/Db/hrSeq.db @@ -374,7 +374,7 @@ grecord(mbbo,"$(P)HR$(N)_Mode2MO") { } grecord(seq,"$(P)HR$(N)_1TypeSQ") { field(SELM,"Specified") - field(SELL,"$(P)HR$(N)_1TypeMO.VAL NPP NMS") + field(SELL,"$(P)HR$(N)_1TypeMO.RVAL PP NMS") field(PREC,"7") field(DOL1,"5.4310196") field(LNK1,"$(P)HR$(N)_A1AO.VAL PP MS") @@ -385,7 +385,7 @@ grecord(seq,"$(P)HR$(N)_1TypeSQ") { } grecord(seq,"$(P)HR$(N)_2TypeSQ") { field(SELM,"Specified") - field(SELL,"$(P)HR$(N)_2TypeMO.VAL NPP NMS") + field(SELL,"$(P)HR$(N)_2TypeMO.RVAL PP NMS") field(PREC,"7") field(DOL1,"5.4310196") field(LNK1,"$(P)HR$(N)_A2AO.VAL PP MS") diff --git a/opticsApp/Db/hrSeq_settings.req b/opticsApp/Db/hrSeq_settings.req index b031205..2b6f9b4 100644 --- a/opticsApp/Db/hrSeq_settings.req +++ b/opticsApp/Db/hrSeq_settings.req @@ -10,6 +10,7 @@ $(P)HR$(N)_K2AO.VAL $(P)HR$(N)_L2AO.VAL $(P)HR$(N)_EAO.VAL $(P)HR$(N)_Mode2MO.VAL +$(P)HR$(N)_GeomMO.VAL $(P)HR$(N)_phi1OffAO.VAL $(P)HR$(N)_phi2OffAO.VAL $(P)HR$(N)_ETweakAI.VAL diff --git a/opticsApp/Db/kohzuSeq.db b/opticsApp/Db/kohzuSeq.db index 0bd26ba..191d69c 100644 --- a/opticsApp/Db/kohzuSeq.db +++ b/opticsApp/Db/kohzuSeq.db @@ -293,3 +293,9 @@ grecord(busy,"$(P)KohzuMoving") { grecord(longout,"$(P)KohzuCtlDebug") { field(DOL,"0") } +grecord(bo,"$(P)KohzuSpeedCtrl") { + field(DESC,"Disable/enable speed control") + field(ZNAM,"Disable") + field(ONAM,"Enable") + field(DOL, "1") +} diff --git a/opticsApp/Db/kohzuSeq_settings.req b/opticsApp/Db/kohzuSeq_settings.req index 23b8559..ebe22d1 100644 --- a/opticsApp/Db/kohzuSeq_settings.req +++ b/opticsApp/Db/kohzuSeq_settings.req @@ -6,3 +6,4 @@ $(P)BraggAAO.VAL $(P)BraggTypeMO.VAL $(P)KohzuMode2MO.VAL $(P)Kohzu_yOffsetAO.VAL +$(P)KohzuSpeedCtrl diff --git a/opticsApp/Db/kohzuSeq_soft.db b/opticsApp/Db/kohzuSeq_soft.db new file mode 100644 index 0000000..cf20d3a --- /dev/null +++ b/opticsApp/Db/kohzuSeq_soft.db @@ -0,0 +1,320 @@ +record(ai,"$(P)$(MONO)ZVel") { + field(PREC,"5") +} +record(ai,"$(P)$(MONO)ZRdbk") { + field(PREC,"3") +} +record(ai,"$(P)$(MONO)YVel") { + field(PREC,"5") +} +record(ai,"$(P)$(MONO)YRdbk") { + field(PREC,"3") +} +record(ai,"$(P)$(MONO)ThetaVel") { + field(PREC,"5") +} +record(ai,"$(P)$(MONO)ThetaMotRdbk") { + field(PREC,"5") +} +record(ao,"$(P)$(MONO)ZSet") { + field(DESC,"Kohzu Z") + field(PREC,"3") + field(EGU,"mm") +} +record(ao,"$(P)$(MONO)ZCmd") { + field(PREC,"3") +} +record(ao,"$(P)$(MONO)YSet") { + field(DESC,"Kohzu Y") + field(PREC,"3") + field(EGU,"mm") +} +record(ao,"$(P)$(MONO)YCmd") { + field(PREC,"3") +} +record(ao,"$(P)$(MONO)H") { + field(DESC,"Miller index H") + field(PINI,"YES") + field(DOL,"1") + field(DRVH,"15") + field(DRVL,"0") + field(HOPR,"15") + field(LOPR,"0") +} +record(ao,"$(P)$(MONO)K") { + field(DESC,"Miller index K") + field(PINI,"YES") + field(DOL,"1") + field(DRVH,"15") + field(DRVL,"0") + field(HOPR,"15") + field(LOPR,"0") +} +record(ao,"$(P)$(MONO)L") { + field(DESC,"Miller index L") + field(PINI,"YES") + field(DOL,"1") + field(DRVH,"15") + field(DRVL,"0") + field(HOPR,"15") + field(LOPR,"0") +} +record(ao,"$(P)$(MONO)A") { + field(DESC,"Lattice constant") + field(PINI,"YES") + field(DOL,"5.43102") + field(PREC,"5") + field(EGUF,"20") + field(EGUL,"0.1") + field(EGU,"Angstroms") + field(DRVH,"20") + field(DRVL,"0.1") + field(HOPR,"20") + field(LOPR,"0.1") +} +record(bo, "$(P)$(MONO)startMove") { + field(DOL, "1") + field(OUT, "$(P)$(MONO)isSoftMove PP") + field(FLNK, "$(P)$(MONO)PutMoving.PROC PP") +} +record(dfanout, "$(P)$(MONO)isSoftMove") { + field(OUTA, "$(P)$(MONO)E.LOCK") + field(OUTB, "$(P)$(MONO)Lambda.LOCK") + field(OUTC, "$(P)$(MONO)Theta.LOCK") +} +record(motor, "$(P)$(MONO)E") { + field(DESC,"Kohzu Energy") + field(DTYP, "Soft Channel") + field(OUT, "$(P)$(MONO)startMove PP MS") + field(RDBL, "$(P)$(MONO)ERdbk NPP MS") + field(MRES, ".00001") + field(RRES, "1") + field(URIP, "Yes") + field(PREC, "5") + field(EGU, "mm") + field(TWV, "1") + field(DINP, "$(P)$(MONO)Done NPP MS") + field(RTRY, "0") +} +record(motor, "$(P)$(MONO)Lambda") { + field(DESC,"Kohzu Wavelength") + field(DTYP, "Soft Channel") + field(OUT, "$(P)$(MONO)startMove PP MS") + field(RDBL, "$(P)$(MONO)LambdaRdbk NPP MS") + field(MRES, ".00001") + field(RRES, "1") + field(URIP, "Yes") + field(PREC, "5") + field(EGU, "Angstroms") + field(TWV, "1") + field(DINP, "$(P)$(MONO)Done NPP MS") + field(RTRY, "0") +} +record(ao, "$(P)$(MONO)thetaResCopy") { + field(DOL, "$(P)$(M_THETA).MRES CP") + field(OMSL, "closed_loop") + field(OUT, "$(P)$(MONO)Theta.MRES") +} +record(motor, "$(P)$(MONO)Theta") { + field(DESC,"Kohzu Theta") + field(DTYP, "Soft Channel") + field(OUT, "$(P)$(MONO)startMove PP MS") + field(RDBL, "$(P)$(MONO)ThetaRdbk NPP MS") + field(MRES, ".00001") + field(RRES, "1") + field(URIP, "Yes") + field(PREC, "5") + field(EGU, "degrees") + field(TWV, "1") + field(DINP, "$(P)$(MONO)Done NPP MS") + field(RTRY, "0") +} +#record(ao,"$(P)$(MONO)Theta") { +# field(DESC,"Kohzu Theta") +# field(FLNK,"$(P)$(MONO)PutMoving.PROC PP MS") +# field(PREC,"5") +# field(EGU,"degrees") +#} +record(ao,"$(P)$(MONO)ERdbk") { + field(DESC,"Kohzu Energy Readback") + field(PREC,"4") + field(EGU,"keV") +} +record(ao,"$(P)$(MONO)LambdaRdbk") { + field(DESC,"Kohzu Wavelength Readback") + field(PREC,"5") + field(EGU,"Angstroms") +} +record(ao,"$(P)$(MONO)ThetaRdbk") { + field(DESC,"Kohzu Theta Readback") + field(PREC,"5") + field(EGU,"degrees") +} +record(ao,"$(P)$(MONO)ThetaSet") { + field(DESC,"Kohzu Theta Set") + field(PREC,"5") + field(EGU,"keV") +} +record(ao,"$(P)$(MONO)2dSpacing") { + field(DESC,"Crystal 2d spacing") + field(PINI,"YES") + field(DOL,"1") + field(PREC,"5") + field(EGU,"Angstroms") +} +record(ao,"$(P)$(MONO)ThetaCmd") { + field(PREC,"5") +} +record(ao,"$(P)$(MONO)yOffset") { + field(DESC,"y offset") + field(PINI,"YES") + field(DOL,"1") + field(PREC,"3") + field(EGU,"mm") + field(DRVH,"$(yOffHi)") + field(DRVL,"$(yOffLo)") +} +record(bi,"$(P)$(MONO)zSimLls") { + field(ZNAM,"No Limit") + field(ONAM,"Limit") +} +record(bi,"$(P)$(MONO)zSimHls") { + field(ZNAM,"No Limit") + field(ONAM,"Limit") +} +record(bi,"$(P)$(MONO)ySimLls") { + field(ZNAM,"No Limit") + field(ONAM,"Limit") +} +record(bi,"$(P)$(MONO)ySimHls") { + field(ZNAM,"No Limit") + field(ONAM,"Limit") +} +record(bi,"$(P)$(MONO)thetaSimHls") { + field(ZNAM,"No Limit") + field(ONAM,"Limit") +} +record(bi,"$(P)$(MONO)thetaSimLls") { + field(ZNAM,"No Limit") + field(ONAM,"Limit") +} +record(bi,"$(P)$(MONO)ZDmov") { + field(ZNAM,"Stopped") + field(ONAM,"Moving") +} +record(bi,"$(P)$(MONO)YDmov") { + field(ZNAM,"Stopped") + field(ONAM,"Moving") +} +record(bi,"$(P)$(MONO)ThetaDmov") { + field(ZNAM,"Stopped") + field(ONAM,"Moving") +} +record(bo,"$(P)$(MONO)Put1") { + field(SDIS,"$(P)$(MONO)Put.VAL NPP MS") + field(DOL,"1") + field(OUT,"$(P)$(MONO)Moving.VAL PP MS") +} +record(bo,"$(P)$(MONO)Alert") { + field(ZNAM,"Normal") + field(ONAM,"Alert") + field(OSV,"MAJOR") +} +record(bo,"$(P)$(MONO)Mode") { + field(DESC,"Disable Kohzu_poke") + field(ZNAM,"Manual") + field(ONAM,"Auto") +} +record(bo,"$(P)$(MONO)Put") { + field(DESC,"Manually Poke values") + field(FLNK,"$(P)$(MONO)Put1.VAL PP MS") + field(OUT,"0") + field(ZNAM,"Idle") + field(ONAM,"Go") +} +record(bo,"$(P)$(MONO)OperAck") { + field(ZNAM,"Normal") + field(ONAM,"Ack") + field(OSV,"MAJOR") +} +record(bo,"$(P)$(MONO)UseSet") { + field(DESC,"Put motors in Use/Set mode") + field(ZNAM,"Use") + field(ONAM,"Set") +} +record(bo,"$(P)$(MONO)PutMoving") { + field(DOL,"1") + field(OUT,"$(P)$(MONO)Moving.VAL PP MS") +} +record(mbbo,"$(P)$(MONO)Type") { + field(DTYP,"Raw Soft Channel") + field(FLNK,"$(P)$(MONO)TypeSQ.PROC PP MS") + field(ZRVL,"0x1") + field(ONVL,"0x2") + field(TWVL,"0x3") + field(THVL,"0x4") + field(ZRST,"Silicon") + field(ONST,"Germanium") + field(TWST,"Diamond") + field(THST,"Si (77K)") +} +record(mbbo,"$(P)$(MONO)Mode2") { + field(DTYP,"Raw Soft Channel") + field(ONVL,"0x1") + field(TWVL,"0x2") + field(THVL,"0x3") + field(ZRST,"Normal") + field(ONST,"Channel Cut") + field(TWST,"Freeze Z") + field(THST,"Freeze Y") +} +record(seq,"$(P)$(MONO)TypeSQ") { + field(SELM,"Specified") + field(SELL,"$(P)$(MONO)Type.RVAL NPP NMS") + field(PREC,"7") + field(DOL1,"5.4310196") + field(LNK1,"$(P)$(MONO)A.VAL PP MS") + field(DOL2,"5.657952") + field(LNK2,"$(P)$(MONO)A.VAL PP MS") + field(DOL3,"3.56688") + field(LNK3,"$(P)$(MONO)A.VAL PP MS") + field(DOL4,"5.4295") + field(LNK4,"$(P)$(MONO)A.VAL PP MS") +} +record(stringin,"$(P)$(MONO)ZPv") { + field(VAL,"$(P)$(M_Z)") +} +record(stringin,"$(P)$(MONO)YPv") { + field(VAL,"$(P)$(M_Y)") +} +record(stringin,"$(P)$(MONO)SeqMsg1") { + field(VAL,"Kohzu Control Not Ready") +} +record(stringin,"$(P)$(MONO)SeqMsg2") { + field(VAL,"Kohzu Control Not Ready") +} +record(stringin,"$(P)$(MONO)ThetaPv") { + field(VAL,"$(P)$(M_THETA)") +} +record(busy,"$(P)$(MONO)Moving") { + field(DESC,"Kohzu moving") + field(OUT, "$(P)$(MONO)DoneCalc.A PP") +} +record(calcout, "$(P)$(MONO)DoneCalc") { + field(CALC, "!A") + field(OUT, "$(P)$(MONO)Done PP") +} +record(bo,"$(P)$(MONO)Done") { + field(DESC,"Kohzu done") +} +record(calcout, "$(P)$(MONO)clearIsSoftMove") { + field(INPA, "$(P)$(MONO)Moving CP") + field(CALC, "A") + field(OOPT, "When Zero") + field(OUT, "$(P)$(MONO)isSoftMove PP") +} + + +record(longout,"$(P)$(MONO)CtlDebug") { + field(DOL,"0") +} diff --git a/opticsApp/Db/table.db b/opticsApp/Db/table.db index e0ae5ca..929eb61 100644 --- a/opticsApp/Db/table.db +++ b/opticsApp/Db/table.db @@ -186,7 +186,7 @@ record(table, "$(P)$(T)") { field(L2YL, "$(P)$(M2Y).LLM NPP NMS") field(L2ZL, "$(P)$(M2Z).LLM NPP NMS") field(LEGU, "mm") - field(AEGU, "degrees") + field(AUNIT, "$(ANGLE_UNITS=degrees)") field(PREC, "4") field(GEOM, "$(GEOM)") } diff --git a/opticsApp/Db/table_settings.req b/opticsApp/Db/table_settings.req index 4c1d1a3..6f54530 100644 --- a/opticsApp/Db/table_settings.req +++ b/opticsApp/Db/table_settings.req @@ -11,7 +11,7 @@ $(P)$(T).RX $(P)$(T).RY $(P)$(T).RZ $(P)$(T).LEGU -$(P)$(T).AEGU +$(P)$(T).AUNIT $(P)$(T).PREC $(P)$(T).X0 $(P)$(T).Y0 @@ -32,6 +32,12 @@ $(P)$(T).ULAY $(P)$(T).UHAZ $(P)$(T).ULAZ $(P)$(T).GEOM +$(P)$(Q):x_tweakVal.VAL +$(P)$(Q):y_tweakVal.VAL +$(P)$(Q):z_tweakVal.VAL +$(P)$(Q):ax_tweakVal.VAL +$(P)$(Q):ay_tweakVal.VAL +$(P)$(Q):az_tweakVal.VAL $(P)$(Q)fp0Name.VAL $(P)$(Q)fp0.DO2 $(P)$(Q)fp0.DO3 diff --git a/opticsApp/Db/table_soft.vdb b/opticsApp/Db/table_soft.vdb new file mode 100644 index 0000000..57b4d68 --- /dev/null +++ b/opticsApp/Db/table_soft.vdb @@ -0,0 +1,1707 @@ +#! Generated by VisualDCT v2.6 +#! DBDSTART +#! DBD("../../../../xxx/dbd/iocxxxVX.dbd") +#! DBDEND + + +record(transform, "$(P)$(Q):setMonitor") { + field(INPA, "$(P)$(Q):x.SET CP") + field(INPB, "$(P)$(Q):y.SET CP") + field(INPC, "$(P)$(Q):z.SET CP") + field(INPD, "$(P)$(Q):ax.SET CP") + field(INPE, "$(P)$(Q):ay.SET CP") + field(INPF, "$(P)$(Q):az.SET CP") + field(CLCG, "a||b||c||d||e||f") + field(OUTG, "$(P)$(T).SET CA") +} + +# We already have a mechanism for stopping the table when any soft motor's +# STOP field is 1. Reimplement existing table:stop PV to drive that mechanism +record(bo, "$(P)$(Q):stop") { + field(DTYP, "Soft Channel") + field(DOL, "1") + field(OUT, "$(P)$(Q):x.STOP PP MS") +} + +record(bo, "$(P)$(Q):update") { + field(SCAN, ".2 second") + field(DTYP, "Soft Channel") + field(SDIS, "$(P)$(Q):done.VAL") + field(OMSL, "closed_loop") + field(DOL, "1") + field(OUT, "$(P)$(T).READ PP MS") + field(ONAM, "Sync") +} + +record(calc, "$(P)$(Q):geomIsGEOCARS") { + field(CALC, "a=1") + field(INPA, "$(P)$(T).GEOM CP MS") +} + +record(calc, "$(P)$(Q):geomIsNEWPORT") { + field(CALC, "a=2") + field(INPA, "$(P)$(T).GEOM CP MS") +} + +record(calc, "$(P)$(Q):geomIsSRI") { + field(CALC, "a=0") + field(INPA, "$(P)$(T).GEOM CP MS") +} + +record(table, "$(P)$(T)") { + field(DESC, "Optical Table") + field(LX, "510") + field(LZ, "1080") + field(SX, "255") + field(SY, "100") + field(SZ, "540") + field(M0XL, "$(P)$(Q):setValuesWritten.PROC PP") + field(M0YL, "$(P)$(Q):setValuesWritten.PROC PP") + field(M1YL, "$(P)$(Q):setValuesWritten.PROC PP") + field(M2XL, "$(P)$(Q):setValuesWritten.PROC PP") + field(M2YL, "$(P)$(Q):setValuesWritten.PROC PP") + field(M2ZL, "$(P)$(Q):setValuesWritten.PROC PP") + field(R0XI, "$(P)$(M0X).VAL NPP NMS") + field(R0YI, "$(P)$(M0Y).VAL NPP NMS") + field(R1YI, "$(P)$(M1Y).VAL NPP NMS") + field(R2XI, "$(P)$(M2X).VAL NPP NMS") + field(R2YI, "$(P)$(M2Y).VAL NPP NMS") + field(R2ZI, "$(P)$(M2Z).VAL NPP NMS") + field(E0XI, "$(P)$(M0X).RBV NPP NMS") + field(E0YI, "$(P)$(M0Y).RBV NPP NMS") + field(E1YI, "$(P)$(M1Y).RBV NPP NMS") + field(E2XI, "$(P)$(M2X).RBV NPP NMS") + field(E2YI, "$(P)$(M2Y).RBV NPP NMS") + field(E2ZI, "$(P)$(M2Z).RBV NPP NMS") + field(V0XL, "$(P)$(M0X).VELO NPP NMS") + field(V0YL, "$(P)$(M0Y).VELO NPP NMS") + field(V1YL, "$(P)$(M1Y).VELO NPP NMS") + field(V2XL, "$(P)$(M2X).VELO NPP NMS") + field(V2YL, "$(P)$(M2Y).VELO NPP NMS") + field(V2ZL, "$(P)$(M2Z).VELO NPP NMS") + field(V0XI, "$(P)$(M0X).VELO NPP NMS") + field(V0YI, "$(P)$(M0Y).VELO NPP NMS") + field(V1YI, "$(P)$(M1Y).VELO NPP NMS") + field(V2XI, "$(P)$(M2X).VELO NPP NMS") + field(V2YI, "$(P)$(M2Y).VELO NPP NMS") + field(V2ZI, "$(P)$(M2Z).VELO NPP NMS") + field(H0XL, "$(P)$(M0X).HLM NPP NMS") + field(H0YL, "$(P)$(M0Y).HLM NPP NMS") + field(H1YL, "$(P)$(M1Y).HLM NPP NMS") + field(H2XL, "$(P)$(M2X).HLM NPP NMS") + field(H2YL, "$(P)$(M2Y).HLM NPP NMS") + field(H2ZL, "$(P)$(M2Z).HLM NPP NMS") + field(L0XL, "$(P)$(M0X).LLM NPP NMS") + field(L0YL, "$(P)$(M0Y).LLM NPP NMS") + field(L1YL, "$(P)$(M1Y).LLM NPP NMS") + field(L2XL, "$(P)$(M2X).LLM NPP NMS") + field(L2YL, "$(P)$(M2Y).LLM NPP NMS") + field(L2ZL, "$(P)$(M2Z).LLM NPP NMS") + field(LEGU, "mm") + field(AUNIT, "$(ANGLE_UNITS=degrees)") + field(PREC, "4") + field(GEOM, "$(GEOM)") + field(FLNK, "$(P)$(Q):ifValuesWritten") +} + +# We're going to monitor the STOP fields of the soft motors, so we know when +# the user told a motor to stop. We're also going to write to all of those +# STOP fields when we detect that the user wants the table to stop. We need +# to distinguish our writes from the user's writes. +record(bo, "$(P)$(Q):weSaidStop") { + #field(TPRO, "1") + field(ZNAM, "No") + field(ONAM, "Yes") +} +record(transform, "$(P)$(Q):monitorStop") { + #field(TPRO, "1") + field(SDIS, "$(P)$(Q):weSaidStop") + field(DISV, "1") + # listen to our soft motors' .STOP fields + field(INPA, "$(P)$(Q):x.STOP CP MS") + field(INPB, "$(P)$(Q):y.STOP CP MS") + field(INPC, "$(P)$(Q):z.STOP CP MS") + field(INPD, "$(P)$(Q):ax.STOP CP MS") + field(INPE, "$(P)$(Q):ay.STOP CP MS") + field(INPF, "$(P)$(Q):az.STOP CP MS") + # I==any soft motor was told to stop + field(CLCI, "a||b||c||d||e||f") + field(OUTI, "$(P)$(Q):weSaidStop PP MS") + # don't write to the .STOP field that triggered us to process + field(CMTJ, "bitmask for doStop") + field(CLCJ, "!a+!b*2+!c*4+!d*8+!e*16+!f*32+64+128") + field(OUTK, "$(P)$(Q):doStop.PROC PP") +} +record(seq, "$(P)$(Q):doStop") { + #field(TPRO, "1") + field(SDIS, "$(P)$(Q):weSaidStop") + field(DISV, "0") + field(SELL, "$(P)$(Q):monitorStop.J") + field(SELM, "Mask") + field(DOL1, "1") + field(LNK1, "$(P)$(Q):x.STOP PP") + field(DOL2, "1") + field(LNK2, "$(P)$(Q):y.STOP PP") + field(DOL3, "1") + field(LNK3, "$(P)$(Q):z.STOP PP") + field(DOL4, "1") + field(LNK4, "$(P)$(Q):ax.STOP PP") + field(DOL5, "1") + field(LNK5, "$(P)$(Q):ay.STOP PP") + field(DOL6, "1") + field(LNK6, "$(P)$(Q):az.STOP PP") + field(DOL7, "1") + field(LNK7, "$(P)$(Q):stop1.A PP") + # We need to wait for all the postings resulting from puts to stop_* + # fields to be received by monitorStop's CP links before enabling + # that record to respond to new postings of those fields. Writing + # with a CA link should ensure that, but delaying by 0.1 s provides + # additional protection. + field(DOL8, "0") + field(DLY8, ".1") + field(LNK8, "$(P)$(Q):weSaidStop CA") +} + +record(transform, "$(P)$(Q):stop1") { + field(DESC, "Table-stop distribution") + field(CLCB, "a") + field(CLCC, "a") + field(CLCD, "a") + field(CLCE, "a") + field(CLCF, "a") + field(OUTA, "$(P)$(M0X).STOP PP MS") + field(OUTB, "$(P)$(M0Y).STOP PP MS") + field(OUTC, "$(P)$(M1Y).STOP PP MS") + field(OUTD, "$(P)$(M2X).STOP PP MS") + field(OUTE, "$(P)$(M2Y).STOP PP MS") + field(OUTF, "$(P)$(M2Z).STOP PP MS") +} + +record(calc, "$(P)$(Q):geomIsPNC") { + field(CALC, "a=2") + field(INPA, "$(P)$(T).GEOM CP MS") +} + +record(sseq, "$(P)$(Q)fp") { + field(LNK2, "$(P)$(T).SX") + field(LNK3, "$(P)$(T).SY") + field(LNK4, "$(P)$(T).SZ PP") + field(STR1, "_default_") + field(DO2, "255") + field(DO3, "100") + field(SELM, "All") + field(DO4, "540") +} + +record(sseq, "$(P)$(Q)fp0") { + field(LNK1, "$(P)$(Q)fp.STR1") + field(LNK2, "$(P)$(Q)fp.DO2") + field(STR1, "Default") + field(DO2, "255") + field(DO3, "100") + field(LNK3, "$(P)$(Q)fp.DO3") + field(DO4, "540") + field(SELM, "All") + field(LNK4, "$(P)$(Q)fp.DO4 PP") + field(PREC, "3") +} + +record(sseq, "$(P)$(Q)fp1") { + field(LNK1, "$(P)$(Q)fp.STR1") + field(LNK2, "$(P)$(Q)fp.DO2") + field(STR1, "User 1") + field(DO2, "255") + field(DO3, "100") + field(LNK3, "$(P)$(Q)fp.DO3") + field(DO4, "540") + field(SELM, "All") + field(LNK4, "$(P)$(Q)fp.DO4 PP") + field(PREC, "3") +} + +record(sseq, "$(P)$(Q)fpSeq") { + field(SELM, "Specified") + field(DOL1, "$(P)$(Q)fpSelect.ZRST") + field(LNK1, "$(P)$(Q)fp0.STR1 PP") + field(DOL2, "$(P)$(Q)fpSelect.ONST") + field(LNK2, "$(P)$(Q)fp1.STR1 PP") + field(DOL3, "$(P)$(Q)fpSelect.TWST") + field(LNK3, "$(P)$(Q)fp2.STR1 PP") + field(DOL4, "$(P)$(Q)fpSelect.THST") + field(LNK4, "$(P)$(Q)fp3.STR1 PP") + field(DOL5, "$(P)$(Q)fpSelect.FRST") + field(LNK5, "$(P)$(Q)fp4.STR1 PP") + field(DOL6, "$(P)$(Q)fpSelect.FVST") + field(LNK6, "$(P)$(Q)fp5.STR1 PP") + field(DOL7, "$(P)$(Q)fpSelect.SXST") + field(LNK7, "$(P)$(Q)fp6.STR1 PP") + field(DOL8, "$(P)$(Q)fpSelect.SVST") + field(LNK8, "$(P)$(Q)fp7.STR1 PP") + field(DOL9, "$(P)$(Q)fpSelect.EIST") + field(LNK9, "$(P)$(Q)fp8.STR1 PP") + field(DOLA, "$(P)$(Q)fpSelect.NIST") + field(LNKA, "$(P)$(Q)fp9.STR1 PP") +} + +record(sseq, "$(P)$(Q)fp2") { + field(LNK1, "$(P)$(Q)fp.STR1") + field(LNK2, "$(P)$(Q)fp.DO2") + field(STR1, "User 2") + field(DO2, "255") + field(DO3, "100") + field(LNK3, "$(P)$(Q)fp.DO3") + field(DO4, "540") + field(SELM, "All") + field(LNK4, "$(P)$(Q)fp.DO4 PP") + field(PREC, "3") +} + +record(sseq, "$(P)$(Q)fp3") { + field(LNK1, "$(P)$(Q)fp.STR1") + field(LNK2, "$(P)$(Q)fp.DO2") + field(STR1, "User 3") + field(DO2, "255") + field(DO3, "100") + field(LNK3, "$(P)$(Q)fp.DO3") + field(DO4, "540") + field(SELM, "All") + field(LNK4, "$(P)$(Q)fp.DO4 PP") + field(PREC, "3") +} + +record(sseq, "$(P)$(Q)fp4") { + field(LNK1, "$(P)$(Q)fp.STR1") + field(LNK2, "$(P)$(Q)fp.DO2") + field(STR1, "User 4") + field(DO2, "255") + field(DO3, "100") + field(LNK3, "$(P)$(Q)fp.DO3") + field(DO4, "540") + field(SELM, "All") + field(LNK4, "$(P)$(Q)fp.DO4 PP") + field(PREC, "3") +} + +record(sseq, "$(P)$(Q)fp5") { + field(LNK1, "$(P)$(Q)fp.STR1") + field(LNK2, "$(P)$(Q)fp.DO2") + field(STR1, "User 5") + field(DO2, "255") + field(DO3, "100") + field(LNK3, "$(P)$(Q)fp.DO3") + field(DO4, "540") + field(SELM, "All") + field(LNK4, "$(P)$(Q)fp.DO4 PP") + field(PREC, "3") +} + +record(sseq, "$(P)$(Q)fp6") { + field(LNK1, "$(P)$(Q)fp.STR1") + field(LNK2, "$(P)$(Q)fp.DO2") + field(STR1, "User 6") + field(DO2, "255") + field(DO3, "100") + field(LNK3, "$(P)$(Q)fp.DO3") + field(DO4, "540") + field(SELM, "All") + field(LNK4, "$(P)$(Q)fp.DO4 PP") + field(PREC, "3") +} + +record(sseq, "$(P)$(Q)fp7") { + field(LNK1, "$(P)$(Q)fp.STR1") + field(LNK2, "$(P)$(Q)fp.DO2") + field(STR1, "User 7") + field(DO2, "255") + field(DO3, "100") + field(LNK3, "$(P)$(Q)fp.DO3") + field(DO4, "540") + field(SELM, "All") + field(LNK4, "$(P)$(Q)fp.DO4 PP") + field(PREC, "3") +} + +record(sseq, "$(P)$(Q)fp8") { + field(LNK1, "$(P)$(Q)fp.STR1") + field(LNK2, "$(P)$(Q)fp.DO2") + field(STR1, "User 8") + field(DO2, "255") + field(DO3, "100") + field(LNK3, "$(P)$(Q)fp.DO3") + field(DO4, "540") + field(SELM, "All") + field(LNK4, "$(P)$(Q)fp.DO4 PP") + field(PREC, "3") +} + +record(sseq, "$(P)$(Q)fp9") { + field(LNK1, "$(P)$(Q)fp.STR1") + field(LNK2, "$(P)$(Q)fp.DO2") + field(STR1, "User 9") + field(DO2, "255") + field(DO3, "100") + field(LNK3, "$(P)$(Q)fp.DO3") + field(DO4, "540") + field(SELM, "All") + field(LNK4, "$(P)$(Q)fp.DO4 PP") + field(PREC, "3") +} + +record(mbbo, "$(P)$(Q)fpSelect") { + field(DTYP, "Raw Soft Channel") + field(OUT, "$(P)$(Q)fpSeq.SELN PP") + field(ZRVL, "1") + field(ONVL, "2") + field(TWVL, "3") + field(THVL, "4") + field(FRVL, "5") + field(FVVL, "6") + field(SXVL, "7") + field(SVVL, "8") + field(EIVL, "9") + field(NIVL, "10") + field(ZRST, "Default") + field(ONST, "User 1") + field(TWST, "User 2") + field(THST, "User 3") + field(FRST, "User 4") + field(FVST, "User 5") + field(SXST, "User 6") + field(SVST, "User 7") + field(EIST, "User 8") + field(NIST, "User 9") +} + +record(stringout, "$(P)$(Q)fp0Name") { + field(OUT, "$(P)$(Q)fpSelect.ZRST") + field(VAL, "Default") +} + +record(stringout, "$(P)$(Q)fp1Name") { + field(OUT, "$(P)$(Q)fpSelect.ONST") + field(VAL, "User 1") +} + +record(stringout, "$(P)$(Q)fp2Name") { + field(OUT, "$(P)$(Q)fpSelect.TWST") + field(VAL, "User 2") +} + +record(stringout, "$(P)$(Q)fp3Name") { + field(OUT, "$(P)$(Q)fpSelect.THST") + field(VAL, "User 3") +} + +record(stringout, "$(P)$(Q)fp4Name") { + field(OUT, "$(P)$(Q)fpSelect.FRST") + field(VAL, "User 4") +} + +record(stringout, "$(P)$(Q)fp5Name") { + field(OUT, "$(P)$(Q)fpSelect.FVST") + field(VAL, "User 5") +} + +record(stringout, "$(P)$(Q)fp6Name") { + field(OUT, "$(P)$(Q)fpSelect.SXST") + field(VAL, "User 6") +} + +record(stringout, "$(P)$(Q)fp7Name") { + field(OUT, "$(P)$(Q)fpSelect.SVST") + field(VAL, "User 7") +} + +record(stringout, "$(P)$(Q)fp8Name") { + field(OUT, "$(P)$(Q)fpSelect.EIST") + field(VAL, "User 8") +} + +record(stringout, "$(P)$(Q)fp9Name") { + field(OUT, "$(P)$(Q)fpSelect.NIST") + field(VAL, "User 9") +} + +record(fanout, "$(P)$(Q)fpInit") { + field(FLNK, "$(P)$(Q)fpInit1.PROC PP") + field(LNK1, "$(P)$(Q)fp0Name.PROC PP") + field(LNK2, "$(P)$(Q)fp1Name.PROC PP") + field(LNK3, "$(P)$(Q)fp2Name.PROC PP") + field(LNK4, "$(P)$(Q)fp3Name.PROC PP") + field(LNK5, "$(P)$(Q)fp4Name.PROC PP") + field(LNK6, "$(P)$(Q)fp5Name.PROC PP") + field(PINI, "YES") +} + +record(fanout, "$(P)$(Q)fpInit1") { + field(LNK1, "$(P)$(Q)fp6Name.PROC PP") + field(LNK2, "$(P)$(Q)fp7Name.PROC PP") + field(LNK3, "$(P)$(Q)fp8Name.PROC PP") + field(LNK4, "$(P)$(Q)fp9Name.PROC PP") + field(LNK5, "$(P)$(Q)fpSelect.PROC PP") +} + +record(sseq, "$(P)$(Q):writeMotors") { + field(DO1, "1") + field(LNK1, "$(P)$(Q):startMove.DO1 PP") + field(DOL2, "$(P)$(T).M0X") + field(LNK2, "$(P)$(M0X).VAL PP") + field(DOL3, "$(P)$(T).M0Y") + field(LNK3, "$(P)$(M0Y).VAL PP") + field(DOL4, "$(P)$(T).M1Y") + field(LNK4, "$(P)$(M1Y).VAL PP") + field(DOL5, "$(P)$(T).M2X") + field(LNK5, "$(P)$(M2X).VAL PP") + field(DOL6, "$(P)$(T).M2Y") + field(LNK6, "$(P)$(M2Y).VAL PP") + field(DOL7, "$(P)$(T).M2Z") + field(LNK7, "$(P)$(M2Z).VAL PP") + field(DO8, "0") + field(LNK8, "$(P)$(Q):valuesWritten PP") +} + +record(bo, "$(P)$(Q):isSoftMove") { + field(OUT, "$(P)$(Q):isSoftFan PP") + field(ZNAM, "No") + field(ONAM, "Yes") +} + +record(dfanout, "$(P)$(Q):isSoftFan") { + field(OUTA, "$(P)$(Q):x.LOCK") + field(OUTB, "$(P)$(Q):y.LOCK") + field(OUTC, "$(P)$(Q):z.LOCK") + field(OUTD, "$(P)$(Q):ax.LOCK") + field(OUTE, "$(P)$(Q):ay.LOCK") + field(OUTF, "$(P)$(Q):az.LOCK") +} + +record(motor, "$(P)$(Q):x") { + # alias is for spec, to make it easier to manage configuration of soft motors + alias("$(P)$(Q):m1") + field(DTYP, "Soft Channel") + # ignore the SET field, we're going to implement it in the database, rather + # than in individual motor records + field(IGSET, "1") + field(OUT, "$(P)$(T).X PP") + field(RDBL, "$(P)$(T).EX") + field(MRES, ".00001") + field(RRES, "1") + field(URIP, "Yes") + field(PREC, "$(PREC=3)") + field(RTRY, "0") + field(DINP, "$(P)$(Q):done.VAL") +} + +record(motor, "$(P)$(Q):y") { + alias("$(P)$(Q):m2") + field(DTYP, "Soft Channel") + field(IGSET, "1") + field(OUT, "$(P)$(T).Y PP") + field(RDBL, "$(P)$(T).EY") + field(MRES, ".00001") + field(RRES, "1") + field(URIP, "Yes") + field(PREC, "$(PREC=3)") + field(RDBD, ".00001") + field(RTRY, "0") + field(DINP, "$(P)$(Q):done.VAL") +} + +record(motor, "$(P)$(Q):z") { + alias("$(P)$(Q):m3") + field(DTYP, "Soft Channel") + field(IGSET, "1") + field(OUT, "$(P)$(T).Z PP") + field(RDBL, "$(P)$(T).EZ") + field(MRES, ".00001") + field(RRES, "1") + field(URIP, "Yes") + field(PREC, "$(PREC=3)") + field(RDBD, ".00001") + field(RTRY, "0") + field(DINP, "$(P)$(Q):done.VAL") +} + +record(motor, "$(P)$(Q):ax") { + alias("$(P)$(Q):m4") + field(DTYP, "Soft Channel") + field(IGSET, "1") + field(OUT, "$(P)$(T).AX PP") + field(RDBL, "$(P)$(T).EAX") + field(MRES, ".00001") + field(RRES, "1") + field(URIP, "Yes") + field(PREC, "$(PREC=3)") + field(RDBD, ".00001") + field(RTRY, "0") + field(DINP, "$(P)$(Q):done.VAL") +} + +record(motor, "$(P)$(Q):ay") { + alias("$(P)$(Q):m5") + field(DTYP, "Soft Channel") + field(IGSET, "1") + field(OUT, "$(P)$(T).AY PP") + field(RDBL, "$(P)$(T).EAY") + field(MRES, ".00001") + field(RRES, "1") + field(URIP, "Yes") + field(PREC, "$(PREC=3)") + field(RDBD, ".00001") + field(RTRY, "0") + field(DINP, "$(P)$(Q):done.VAL") +} + + +record(motor, "$(P)$(Q):az") { + alias("$(P)$(Q):m6") + field(DTYP, "Soft Channel") + field(IGSET, "1") + field(OUT, "$(P)$(T).AZ PP") + field(RDBL, "$(P)$(T).EAZ") + field(MRES, ".00001") + field(RRES, "1") + field(URIP, "Yes") + field(PREC, "$(PREC=3)") + field(RDBD, ".00001") + field(RTRY, "0") + field(DINP, "$(P)$(Q):done.VAL") +} + +record(ao, "$(P)$(Q):axHlimCopy") { + field(OUT, "$(P)$(Q):ax.HLM CA") + field(DOL, "$(P)$(T).HLAX CP") + field(OMSL, "closed_loop") +} + +record(ao, "$(P)$(Q):axLlimCopy") { + field(OUT, "$(P)$(Q):ax.LLM CA") + field(DOL, "$(P)$(T).LLAX CP") + field(OMSL, "closed_loop") +} + +record(ao, "$(P)$(Q):xHlimCopy") { + field(OUT, "$(P)$(Q):x.HLM CA") + field(DOL, "$(P)$(T).HLX CP") + field(OMSL, "closed_loop") +} + +record(ao, "$(P)$(Q):xLlimCopy") { + field(OUT, "$(P)$(Q):x.LLM CA") + field(DOL, "$(P)$(T).LLX CP") + field(OMSL, "closed_loop") +} + +record(ao, "$(P)$(Q):yHlimCopy") { + field(OUT, "$(P)$(Q):y.HLM CA") + field(DOL, "$(P)$(T).HLY CP") + field(OMSL, "closed_loop") +} + +record(ao, "$(P)$(Q):yLlimCopy") { + field(OUT, "$(P)$(Q):y.LLM CA") + field(DOL, "$(P)$(T).LLY CP") + field(OMSL, "closed_loop") +} + +record(ao, "$(P)$(Q):zHlimCopy") { + field(OUT, "$(P)$(Q):z.HLM CA") + field(DOL, "$(P)$(T).HLZ CP") + field(OMSL, "closed_loop") +} + +record(ao, "$(P)$(Q):zLlimCopy") { + field(OUT, "$(P)$(Q):z.LLM CA") + field(DOL, "$(P)$(T).LLZ CP") + field(OMSL, "closed_loop") +} + +record(ao, "$(P)$(Q):ayHlimCopy") { + field(OUT, "$(P)$(Q):ay.HLM CA") + field(DOL, "$(P)$(T).HLAY CP") + field(OMSL, "closed_loop") +} + +record(ao, "$(P)$(Q):ayLlimCopy") { + field(OUT, "$(P)$(Q):ay.LLM CA") + field(DOL, "$(P)$(T).LLAY CP") + field(OMSL, "closed_loop") +} + +record(ao, "$(P)$(Q):azHlimCopy") { + field(OUT, "$(P)$(Q):az.HLM CA") + field(DOL, "$(P)$(T).HLAZ CP") + field(OMSL, "closed_loop") +} + +record(ao, "$(P)$(Q):azLlimCopy") { + field(OUT, "$(P)$(Q):az.LLM CA") + field(DOL, "$(P)$(T).LLAZ CP") + field(OMSL, "closed_loop") +} + + +record(sseq, "$(P)$(Q):startMove") { + field(LNK1, "$(P)$(Q):isSoftMove PP") + field(DO2, "0") + field(LNK3, "$(P)$(Q):gate PP") + field(DOL3, "1") +} + +record(sseq, "$(P)$(Q):endMove") { + field(DO3, "1") + field(LNK3, "$(P)$(T).READ PP") + field(DO4, "0") + field(LNK4, "$(P)$(Q):isSoftMove PP") +} + +record(calcout, "$(P)$(Q):dmov") { + field(DESC, "Get DMOV and check links") + field(INPA, "$(P)$(M0X).DMOV CP MS") + field(INPB, "$(P)$(M0Y).DMOV CP MS") + field(INPC, "$(P)$(M1Y).DMOV CP MS") + field(INPD, "$(P)$(M2X).DMOV CP MS") + field(INPE, "$(P)$(M2Y).DMOV CP MS") + field(INPF, "$(P)$(M2Z).DMOV CP MS") +} + + +record(calcout, "$(P)$(Q):done2") { + field(CALC, "A&!B&&(I||!J)&(K||!L)") + field(INPA, "$(P)$(Q):done1.VAL CP MS") + field(INPI, "$(P)$(Q):dmov.E CP MS") + field(INPJ, "$(P)$(Q):dmov.INEV CP MS") + field(INPK, "$(P)$(Q):dmov.F CP MS") + field(INPL, "$(P)$(Q):dmov.INFV CP MS") + field(OOPT, "Transition To Non-zero") + field(INPB, "$(P)$(Q):gate CP") +} + +record(calcout, "$(P)$(Q):done1") { + field(CALC, "(A||!B)&(C||!D)&(E||!F)&(G||!H)") + field(INPA, "$(P)$(Q):dmov.A CP MS") + field(INPB, "$(P)$(Q):dmov.INAV CP MS") + field(INPC, "$(P)$(Q):dmov.B CP MS") + field(INPD, "$(P)$(Q):dmov.INBV CP MS") + field(INPE, "$(P)$(Q):dmov.C CP MS") + field(INPF, "$(P)$(Q):dmov.INCV CP MS") + field(INPG, "$(P)$(Q):dmov.D CP MS") + field(INPH, "$(P)$(Q):dmov.INDV CP MS") +} + +record(calcout, "$(P)$(Q):done") { + field(CALC, "a") + field(INPA, "$(P)$(Q):done2 CP") + field(OUT, "$(P)$(Q):endMove.PROC PP") + field(OOPT, "Transition To Non-zero") +} + +# Strategy: We need to find out when all motors have finished executing a move +# that we started. To do this without a race condition, we set a gate PV to +# "open", write to motors, and then have the last motor written to set the gate +# PV to "closed" when it finishes. But we don't know which motor will be the +# last motor written to, because the table record can work with fewer than six +# motors, and we don't know which motors don't actually exist. +# $(P)$(Q):lastMotor figures this out at init time. + +# Evidently, $(P)$(Q):lastMotor's PINI==RUNNING field isn't getting +# $(P)$(Q):closeGate.INPA initialized. This seems bulletproof. +record(scalcout, "$(P)$(Q):initLastMotor") { + #field(TPRO, "1") + field(SCAN, "10 second") + # Note that this must be a CA link so it can read a link field + field(INAA, "$(P)$(Q):closeGate.INPA CA") + field(CALC, "aa==''") + field(OOPT, "When Zero") + field(DOPT, "Use OCAL") + field(OCAL, "'Passive'") + field(OUT, "$(P)$(Q):initLastMotor.SCAN CA") + field(FLNK, "$(P)$(Q):lastMotor") +} + +# Find the last motor that will be written to. (Ignore motors that +# don't actually exist.) Write that motor's .DMOV PV +record(scalcout, "$(P)$(Q):lastMotor") { + field(CALC, "(f?ff:e?ee:d?dd:c?cc:b?bb:aa)[0,' ']+' CP'") + field(INPA, "$(P)$(Q):dmov.INAV CA") + field(INPB, "$(P)$(Q):dmov.INBV CA") + field(INPC, "$(P)$(Q):dmov.INCV CA") + field(INPD, "$(P)$(Q):dmov.INDV CA") + field(INPE, "$(P)$(Q):dmov.INEV CA") + field(INPF, "$(P)$(Q):dmov.INFV CA") + field(INAA, "$(P)$(Q):dmov.INPA CA") + field(INBB, "$(P)$(Q):dmov.INPB CA") + field(INCC, "$(P)$(Q):dmov.INPC CA") + field(INDD, "$(P)$(Q):dmov.INPD CA") + field(INEE, "$(P)$(Q):dmov.INPE CA") + field(INFF, "$(P)$(Q):dmov.INPF CA") + field(PINI, "RUNNING") + field(OUT, "$(P)$(Q):closeGate.INPA CA") +} + +record(calcout, "$(P)$(Q):closeGate") { + field(CALC, "!a") + field(OUT, "$(P)$(Q):gate.VAL PP") + field(OOPT, "Transition To Zero") +} + +record(bo, "$(P)$(Q):gate") { + field(ZNAM, "closed") + field(ONAM, "open") +} + + +record(bo, "$(P)$(Q):setValuesWritten") { + field(DOL, "1") + field(OUT, "$(P)$(Q):valuesWritten.VAL PP") +} + + +record(bo, "$(P)$(Q):valuesWritten") { +} + + +record(bo, "$(P)$(Q):ifValuesWritten") { + field(DISV, "0") + field(SDIS, "$(P)$(Q):valuesWritten.VAL") + field(OUT, "$(P)$(Q):writeMotors.PROC PP") +} + + +record(dfanout, "$(P)$(Q):syncMotors") { + field(OUTA, "$(P)$(Q):x.SYNC CA") + field(OUTB, "$(P)$(Q):y.SYNC CA") + field(OUTC, "$(P)$(Q):z.SYNC CA") + field(OUTD, "$(P)$(Q):ax.SYNC CA") + field(OUTE, "$(P)$(Q):ay.SYNC CA") + field(OUTF, "$(P)$(Q):az.SYNC CA") +} + +record(dfanout, "$(P)$(Q):sync") { + field(OUTA, "$(P)$(T).SYNC PP") + field(OUTB, "$(P)$(Q):syncMotors PP") +} + +record(dfanout, "$(P)$(Q):init") { + field(OUTA, "$(P)$(T).INIT PP") + field(OUTB, "$(P)$(Q):syncMotors PP") +} + +record(dfanout, "$(P)$(Q):zero") { + field(OUTA, "$(P)$(T).ZERO PP") + field(OUTB, "$(P)$(Q):syncMotors PP") +} + +#! Further lines contain data used by VisualDCT +#! View(0,0,0.2) +#! Record("$(P)$(Q):stop",1020,1340,0,0,"$(P)$(Q):stop") +#! Field("$(P)$(Q):stop.OUT",16777215,1,"$(P)$(Q):stop.OUT") +#! Link("$(P)$(Q):stop.OUT","$(P)$(Q):stop1.A") +#! Record("$(P)$(Q):update",2300,585,0,0,"$(P)$(Q):update") +#! Field("$(P)$(Q):update.SDIS",16777215,0,"$(P)$(Q):update.SDIS") +#! Link("$(P)$(Q):update.SDIS","$(P)$(Q):done.VAL") +#! Field("$(P)$(Q):update.OUT",16777215,1,"$(P)$(Q):update.OUT") +#! Link("$(P)$(Q):update.OUT","$(P)$(Q):update/OUT") +#! Connector("$(P)$(Q):update/OUT","$(P)$(T).READ",2540,780,16777215,"",0) +#! Visibility("$(P)$(Q):update.DTYP",2) +#! Visibility("$(P)$(Q):update.SDIS",2) +#! Visibility("$(P)$(Q):update.OUT",2) +#! Visibility("$(P)$(Q):update.ONAM",2) +#! Visibility("$(P)$(Q):update.DISV",1) +#! Record("$(P)$(Q):geomIsGEOCARS",3040,555,0,0,"$(P)$(Q):geomIsGEOCARS") +#! Field("$(P)$(Q):geomIsGEOCARS.INPA",16777215,0,"$(P)$(Q):geomIsGEOCARS.INPA") +#! Link("$(P)$(Q):geomIsGEOCARS.INPA","$(P)$(T).GEOM") +#! Visibility("$(P)$(Q):geomIsGEOCARS.INPA",2) +#! Record("$(P)$(Q):geomIsNEWPORT",3040,635,0,0,"$(P)$(Q):geomIsNEWPORT") +#! Field("$(P)$(Q):geomIsNEWPORT.INPA",16777215,0,"$(P)$(Q):geomIsNEWPORT.INPA") +#! Link("$(P)$(Q):geomIsNEWPORT.INPA","$(P)$(T).GEOM") +#! Visibility("$(P)$(Q):geomIsNEWPORT.INPA",2) +#! Record("$(P)$(Q):geomIsSRI",3040,475,0,0,"$(P)$(Q):geomIsSRI") +#! Field("$(P)$(Q):geomIsSRI.INPA",16777215,0,"$(P)$(Q):geomIsSRI.INPA") +#! Link("$(P)$(Q):geomIsSRI.INPA","$(P)$(T).GEOM") +#! Visibility("$(P)$(Q):geomIsSRI.INPA",2) +#! Record("$(P)$(T)",2660,610,0,0,"$(P)$(T)") +#! Field("$(P)$(T).ZERO",16777215,0,"$(P)$(T).ZERO") +#! Field("$(P)$(T).INIT",16777215,0,"$(P)$(T).INIT") +#! Field("$(P)$(T).SYNC",16777215,0,"$(P)$(T).SYNC") +#! Field("$(P)$(T).READ",16777215,0,"$(P)$(T).READ") +#! Field("$(P)$(T).GEOM",16777215,1,"$(P)$(T).GEOM") +#! Field("$(P)$(T).M0XL",16777215,1,"$(P)$(T).M0XL") +#! Link("$(P)$(T).M0XL","$(P)$(Q):setValuesWritten.PROC") +#! Field("$(P)$(T).M2YL",16777215,1,"$(P)$(T).M2YL") +#! Link("$(P)$(T).M2YL","$(P)$(Q):setValuesWritten.PROC") +#! Field("$(P)$(T).M2XL",16777215,1,"$(P)$(T).M2XL") +#! Link("$(P)$(T).M2XL","$(P)$(Q):setValuesWritten.PROC") +#! Field("$(P)$(T).M1YL",16777215,1,"$(P)$(T).M1YL") +#! Link("$(P)$(T).M1YL","$(P)$(Q):setValuesWritten.PROC") +#! Field("$(P)$(T).M0YL",16777215,1,"$(P)$(T).M0YL") +#! Link("$(P)$(T).M0YL","$(P)$(Q):setValuesWritten.PROC") +#! Field("$(P)$(T).M2ZL",16777215,1,"$(P)$(T).M2ZL") +#! Link("$(P)$(T).M2ZL","$(P)$(Q):setValuesWritten.PROC") +#! Field("$(P)$(T).HLX",16777215,0,"$(P)$(T).HLX") +#! Field("$(P)$(T).EX",16777215,0,"$(P)$(T).EX") +#! Field("$(P)$(T).X",16777215,0,"$(P)$(T).X") +#! Field("$(P)$(T).LLX",16777215,0,"$(P)$(T).LLX") +#! Field("$(P)$(T).M0X",16777215,1,"$(P)$(T).M0X") +#! Field("$(P)$(T).R0XI",16777215,1,"$(P)$(T).R0XI") +#! Field("$(P)$(T).R0YI",16777215,1,"$(P)$(T).R0YI") +#! Field("$(P)$(T).R1YI",16777215,1,"$(P)$(T).R1YI") +#! Field("$(P)$(T).R2YI",16777215,1,"$(P)$(T).R2YI") +#! Field("$(P)$(T).R2XI",16777215,1,"$(P)$(T).R2XI") +#! Field("$(P)$(T).R2ZI",16777215,1,"$(P)$(T).R2ZI") +#! Field("$(P)$(T).HLY",16777215,0,"$(P)$(T).HLY") +#! Field("$(P)$(T).EY",16777215,0,"$(P)$(T).EY") +#! Field("$(P)$(T).Y",16777215,0,"$(P)$(T).Y") +#! Field("$(P)$(T).LLY",16777215,0,"$(P)$(T).LLY") +#! Field("$(P)$(T).M0Y",16777215,1,"$(P)$(T).M0Y") +#! Field("$(P)$(T).E0XI",16777215,1,"$(P)$(T).E0XI") +#! Field("$(P)$(T).E0YI",16777215,1,"$(P)$(T).E0YI") +#! Field("$(P)$(T).E1YI",16777215,1,"$(P)$(T).E1YI") +#! Field("$(P)$(T).E2XI",16777215,1,"$(P)$(T).E2XI") +#! Field("$(P)$(T).E2YI",16777215,1,"$(P)$(T).E2YI") +#! Field("$(P)$(T).E2ZI",16777215,1,"$(P)$(T).E2ZI") +#! Field("$(P)$(T).HLZ",16777215,0,"$(P)$(T).HLZ") +#! Field("$(P)$(T).EZ",16777215,0,"$(P)$(T).EZ") +#! Field("$(P)$(T).Z",16777215,0,"$(P)$(T).Z") +#! Field("$(P)$(T).LLZ",16777215,0,"$(P)$(T).LLZ") +#! Field("$(P)$(T).M1Y",16777215,1,"$(P)$(T).M1Y") +#! Field("$(P)$(T).V0XL",16777215,1,"$(P)$(T).V0XL") +#! Field("$(P)$(T).V1YL",16777215,1,"$(P)$(T).V1YL") +#! Field("$(P)$(T).V0YL",16777215,1,"$(P)$(T).V0YL") +#! Field("$(P)$(T).V2XL",16777215,1,"$(P)$(T).V2XL") +#! Field("$(P)$(T).V2YL",16777215,1,"$(P)$(T).V2YL") +#! Field("$(P)$(T).V2ZL",16777215,1,"$(P)$(T).V2ZL") +#! Field("$(P)$(T).HLAX",16777215,0,"$(P)$(T).HLAX") +#! Field("$(P)$(T).EAX",16777215,0,"$(P)$(T).EAX") +#! Field("$(P)$(T).AX",16777215,0,"$(P)$(T).AX") +#! Field("$(P)$(T).LLAX",16777215,0,"$(P)$(T).LLAX") +#! Field("$(P)$(T).M2X",16777215,1,"$(P)$(T).M2X") +#! Field("$(P)$(T).V0XI",16777215,1,"$(P)$(T).V0XI") +#! Field("$(P)$(T).V0YI",16777215,1,"$(P)$(T).V0YI") +#! Field("$(P)$(T).V1YI",16777215,1,"$(P)$(T).V1YI") +#! Field("$(P)$(T).V2XI",16777215,1,"$(P)$(T).V2XI") +#! Field("$(P)$(T).V2YI",16777215,1,"$(P)$(T).V2YI") +#! Field("$(P)$(T).V2ZI",16777215,1,"$(P)$(T).V2ZI") +#! Field("$(P)$(T).HLAY",16777215,0,"$(P)$(T).HLAY") +#! Field("$(P)$(T).EAY",16777215,0,"$(P)$(T).EAY") +#! Field("$(P)$(T).AY",16777215,0,"$(P)$(T).AY") +#! Field("$(P)$(T).LLAY",16777215,0,"$(P)$(T).LLAY") +#! Field("$(P)$(T).M2Y",16777215,1,"$(P)$(T).M2Y") +#! Field("$(P)$(T).H0XL",16777215,1,"$(P)$(T).H0XL") +#! Field("$(P)$(T).H0YL",16777215,1,"$(P)$(T).H0YL") +#! Field("$(P)$(T).H1YL",16777215,1,"$(P)$(T).H1YL") +#! Field("$(P)$(T).H2XL",16777215,1,"$(P)$(T).H2XL") +#! Field("$(P)$(T).H2YL",16777215,1,"$(P)$(T).H2YL") +#! Field("$(P)$(T).H2ZL",16777215,1,"$(P)$(T).H2ZL") +#! Field("$(P)$(T).HLAZ",16777215,0,"$(P)$(T).HLAZ") +#! Field("$(P)$(T).EAZ",16777215,0,"$(P)$(T).EAZ") +#! Field("$(P)$(T).AZ",16777215,0,"$(P)$(T).AZ") +#! Field("$(P)$(T).LLAZ",16777215,0,"$(P)$(T).LLAZ") +#! Field("$(P)$(T).M2Z",16777215,1,"$(P)$(T).M2Z") +#! Field("$(P)$(T).L0XL",16777215,1,"$(P)$(T).L0XL") +#! Field("$(P)$(T).L0YL",16777215,1,"$(P)$(T).L0YL") +#! Field("$(P)$(T).L1YL",16777215,1,"$(P)$(T).L1YL") +#! Field("$(P)$(T).L2XL",16777215,1,"$(P)$(T).L2XL") +#! Field("$(P)$(T).L2YL",16777215,1,"$(P)$(T).L2YL") +#! Field("$(P)$(T).L2ZL",16777215,1,"$(P)$(T).L2ZL") +#! Field("$(P)$(T).FLNK",16777215,1,"$(P)$(T).FLNK") +#! Link("$(P)$(T).FLNK","$(P)$(T)/FLNK") +#! Field("$(P)$(T).SX",16777215,0,"$(P)$(T).SX") +#! Field("$(P)$(T).SY",16777215,0,"$(P)$(T).SY") +#! Field("$(P)$(T).SZ",16777215,0,"$(P)$(T).SZ") +#! Connector("$(P)$(T)/FLNK","$(P)$(Q):ifValuesWritten",2960,1700,16777215,"",0) +#! Visibility("$(P)$(T).DESC",2) +#! Visibility("$(P)$(T).LX",2) +#! Visibility("$(P)$(T).LZ",2) +#! Visibility("$(P)$(T).M0YL",2) +#! Visibility("$(P)$(T).M1YL",2) +#! Visibility("$(P)$(T).M2XL",2) +#! Visibility("$(P)$(T).M2YL",2) +#! Visibility("$(P)$(T).M2ZL",2) +#! Visibility("$(P)$(T).R0XI",2) +#! Visibility("$(P)$(T).R0YI",2) +#! Visibility("$(P)$(T).R1YI",2) +#! Visibility("$(P)$(T).R2XI",2) +#! Visibility("$(P)$(T).R2YI",2) +#! Visibility("$(P)$(T).R2ZI",2) +#! Visibility("$(P)$(T).E0XI",2) +#! Visibility("$(P)$(T).E0YI",2) +#! Visibility("$(P)$(T).E1YI",2) +#! Visibility("$(P)$(T).E2XI",2) +#! Visibility("$(P)$(T).E2YI",2) +#! Visibility("$(P)$(T).E2ZI",2) +#! Visibility("$(P)$(T).V0XL",2) +#! Visibility("$(P)$(T).V0YL",2) +#! Visibility("$(P)$(T).V1YL",2) +#! Visibility("$(P)$(T).V2XL",2) +#! Visibility("$(P)$(T).V2YL",2) +#! Visibility("$(P)$(T).V2ZL",2) +#! Visibility("$(P)$(T).V0XI",2) +#! Visibility("$(P)$(T).V0YI",2) +#! Visibility("$(P)$(T).V1YI",2) +#! Visibility("$(P)$(T).V2XI",2) +#! Visibility("$(P)$(T).V2YI",2) +#! Visibility("$(P)$(T).V2ZI",2) +#! Visibility("$(P)$(T).H0XL",2) +#! Visibility("$(P)$(T).H0YL",2) +#! Visibility("$(P)$(T).H1YL",2) +#! Visibility("$(P)$(T).H2XL",2) +#! Visibility("$(P)$(T).H2YL",2) +#! Visibility("$(P)$(T).H2ZL",2) +#! Visibility("$(P)$(T).L0XL",2) +#! Visibility("$(P)$(T).L0YL",2) +#! Visibility("$(P)$(T).L1YL",2) +#! Visibility("$(P)$(T).L2XL",2) +#! Visibility("$(P)$(T).L2YL",2) +#! Visibility("$(P)$(T).L2ZL",2) +#! Visibility("$(P)$(T).LEGU",2) +#! Visibility("$(P)$(T).PREC",2) +#! Visibility("$(P)$(T).GEOM",2) +#! Record("$(P)$(Q):stop1",1300,1350,0,0,"$(P)$(Q):stop1") +#! Field("$(P)$(Q):stop1.A",16777215,0,"$(P)$(Q):stop1.A") +#! Field("$(P)$(Q):stop1.OUTA",16777215,1,"$(P)$(Q):stop1.OUTA") +#! Field("$(P)$(Q):stop1.OUTB",16777215,1,"$(P)$(Q):stop1.OUTB") +#! Field("$(P)$(Q):stop1.OUTC",16777215,1,"$(P)$(Q):stop1.OUTC") +#! Field("$(P)$(Q):stop1.OUTD",16777215,1,"$(P)$(Q):stop1.OUTD") +#! Field("$(P)$(Q):stop1.OUTE",16777215,1,"$(P)$(Q):stop1.OUTE") +#! Field("$(P)$(Q):stop1.OUTF",16777215,1,"$(P)$(Q):stop1.OUTF") +#! Visibility("$(P)$(Q):stop1.DESC",2) +#! Visibility("$(P)$(Q):stop1.CLCB",2) +#! Visibility("$(P)$(Q):stop1.CLCC",2) +#! Visibility("$(P)$(Q):stop1.CLCD",2) +#! Visibility("$(P)$(Q):stop1.CLCE",2) +#! Visibility("$(P)$(Q):stop1.CLCF",2) +#! Visibility("$(P)$(Q):stop1.OUTA",2) +#! Visibility("$(P)$(Q):stop1.OUTB",2) +#! Visibility("$(P)$(Q):stop1.OUTC",2) +#! Visibility("$(P)$(Q):stop1.OUTD",2) +#! Visibility("$(P)$(Q):stop1.OUTE",2) +#! Visibility("$(P)$(Q):stop1.OUTF",2) +#! Record("$(P)$(Q):geomIsPNC",3040,715,0,1,"$(P)$(Q):geomIsPNC") +#! Field("$(P)$(Q):geomIsPNC.INPA",16777215,0,"$(P)$(Q):geomIsPNC.INPA") +#! Link("$(P)$(Q):geomIsPNC.INPA","$(P)$(T).GEOM") +#! Visibility("$(P)$(Q):geomIsPNC.INPA",2) +#! Record("$(P)$(Q)fp",1920,2435,0,1,"$(P)$(Q)fp") +#! Field("$(P)$(Q)fp.STR1",16777215,0,"$(P)$(Q)fp.STR1") +#! Field("$(P)$(Q)fp.DO2",16777215,0,"$(P)$(Q)fp.DO2") +#! Field("$(P)$(Q)fp.DO3",16777215,0,"$(P)$(Q)fp.DO3") +#! Field("$(P)$(Q)fp.DO4",16777215,0,"$(P)$(Q)fp.DO4") +#! Field("$(P)$(Q)fp.LNK2",16777215,1,"$(P)$(Q)fp.LNK2") +#! Link("$(P)$(Q)fp.LNK2","$(P)$(T).SX") +#! Field("$(P)$(Q)fp.LNK3",16777215,1,"$(P)$(Q)fp.LNK3") +#! Link("$(P)$(Q)fp.LNK3","$(P)$(T).SY") +#! Field("$(P)$(Q)fp.LNK4",16777215,1,"$(P)$(Q)fp.LNK4") +#! Link("$(P)$(Q)fp.LNK4","$(P)$(T).SZ") +#! Record("$(P)$(Q)fp0",1380,2500,0,1,"$(P)$(Q)fp0") +#! Field("$(P)$(Q)fp0.STR1",16777215,0,"$(P)$(Q)fp0.STR1") +#! Field("$(P)$(Q)fp0.LNK1",16777215,1,"$(P)$(Q)fp0.LNK1") +#! Link("$(P)$(Q)fp0.LNK1","$(P)$(Q)fp.STR1") +#! Field("$(P)$(Q)fp0.LNK2",16777215,1,"$(P)$(Q)fp0.LNK2") +#! Link("$(P)$(Q)fp0.LNK2","$(P)$(Q)fp.DO2") +#! Field("$(P)$(Q)fp0.LNK3",16777215,1,"$(P)$(Q)fp0.LNK3") +#! Link("$(P)$(Q)fp0.LNK3","$(P)$(Q)fp.DO3") +#! Field("$(P)$(Q)fp0.LNK4",16777215,1,"$(P)$(Q)fp0.LNK4") +#! Link("$(P)$(Q)fp0.LNK4","$(P)$(Q)fp.DO4") +#! Visibility("$(P)$(Q)fp0.LNK1",2) +#! Visibility("$(P)$(Q)fp0.LNK2",2) +#! Visibility("$(P)$(Q)fp0.STR1",2) +#! Visibility("$(P)$(Q)fp0.DO2",2) +#! Visibility("$(P)$(Q)fp0.DO3",2) +#! Visibility("$(P)$(Q)fp0.LNK3",2) +#! Visibility("$(P)$(Q)fp0.DO4",2) +#! Record("$(P)$(Q)fp1",1380,2660,0,1,"$(P)$(Q)fp1") +#! Field("$(P)$(Q)fp1.STR1",16777215,0,"$(P)$(Q)fp1.STR1") +#! Field("$(P)$(Q)fp1.LNK1",16777215,1,"$(P)$(Q)fp1.LNK1") +#! Link("$(P)$(Q)fp1.LNK1","$(P)$(Q)fp.STR1") +#! Field("$(P)$(Q)fp1.LNK2",16777215,1,"$(P)$(Q)fp1.LNK2") +#! Link("$(P)$(Q)fp1.LNK2","$(P)$(Q)fp.DO2") +#! Field("$(P)$(Q)fp1.LNK3",16777215,1,"$(P)$(Q)fp1.LNK3") +#! Link("$(P)$(Q)fp1.LNK3","$(P)$(Q)fp.DO3") +#! Field("$(P)$(Q)fp1.LNK4",16777215,1,"$(P)$(Q)fp1.LNK4") +#! Link("$(P)$(Q)fp1.LNK4","$(P)$(Q)fp.DO4") +#! Visibility("$(P)$(Q)fp1.LNK1",2) +#! Visibility("$(P)$(Q)fp1.LNK2",2) +#! Visibility("$(P)$(Q)fp1.STR1",2) +#! Visibility("$(P)$(Q)fp1.DO2",2) +#! Visibility("$(P)$(Q)fp1.DO3",2) +#! Visibility("$(P)$(Q)fp1.LNK3",2) +#! Visibility("$(P)$(Q)fp1.DO4",2) +#! Record("$(P)$(Q)fpSeq",980,1720,0,1,"$(P)$(Q)fpSeq") +#! Field("$(P)$(Q)fpSeq.DOL1",16777215,0,"$(P)$(Q)fpSeq.DOL1") +#! Link("$(P)$(Q)fpSeq.DOL1","$(P)$(Q)fpSelect.ZRST") +#! Field("$(P)$(Q)fpSeq.DOL2",16777215,0,"$(P)$(Q)fpSeq.DOL2") +#! Link("$(P)$(Q)fpSeq.DOL2","$(P)$(Q)fpSelect.ONST") +#! Field("$(P)$(Q)fpSeq.DOL3",16777215,0,"$(P)$(Q)fpSeq.DOL3") +#! Link("$(P)$(Q)fpSeq.DOL3","$(P)$(Q)fpSelect.TWST") +#! Field("$(P)$(Q)fpSeq.DOL4",16777215,0,"$(P)$(Q)fpSeq.DOL4") +#! Link("$(P)$(Q)fpSeq.DOL4","$(P)$(Q)fpSelect.THST") +#! Field("$(P)$(Q)fpSeq.DOL5",16777215,0,"$(P)$(Q)fpSeq.DOL5") +#! Link("$(P)$(Q)fpSeq.DOL5","$(P)$(Q)fpSelect.FRST") +#! Field("$(P)$(Q)fpSeq.DOL6",16777215,0,"$(P)$(Q)fpSeq.DOL6") +#! Link("$(P)$(Q)fpSeq.DOL6","$(P)$(Q)fpSelect.FVST") +#! Field("$(P)$(Q)fpSeq.DOL7",16777215,0,"$(P)$(Q)fpSeq.DOL7") +#! Link("$(P)$(Q)fpSeq.DOL7","$(P)$(Q)fpSelect.SXST") +#! Field("$(P)$(Q)fpSeq.DOL8",16777215,0,"$(P)$(Q)fpSeq.DOL8") +#! Link("$(P)$(Q)fpSeq.DOL8","$(P)$(Q)fpSelect.SVST") +#! Field("$(P)$(Q)fpSeq.DOL9",16777215,0,"$(P)$(Q)fpSeq.DOL9") +#! Link("$(P)$(Q)fpSeq.DOL9","$(P)$(Q)fpSelect.EIST") +#! Field("$(P)$(Q)fpSeq.DOLA",16777215,0,"$(P)$(Q)fpSeq.DOLA") +#! Link("$(P)$(Q)fpSeq.DOLA","$(P)$(Q)fpSelect.NIST") +#! Field("$(P)$(Q)fpSeq.SELN",16777215,0,"$(P)$(Q)fpSeq.SELN") +#! Field("$(P)$(Q)fpSeq.LNK1",16777215,1,"$(P)$(Q)fpSeq.LNK1") +#! Link("$(P)$(Q)fpSeq.LNK1","$(P)$(Q)fp0.STR1") +#! Field("$(P)$(Q)fpSeq.LNK2",16777215,1,"$(P)$(Q)fpSeq.LNK2") +#! Link("$(P)$(Q)fpSeq.LNK2","$(P)$(Q)fp1.STR1") +#! Field("$(P)$(Q)fpSeq.LNK3",16777215,1,"$(P)$(Q)fpSeq.LNK3") +#! Link("$(P)$(Q)fpSeq.LNK3","$(P)$(Q)fp2.STR1") +#! Field("$(P)$(Q)fpSeq.LNK4",16777215,1,"$(P)$(Q)fpSeq.LNK4") +#! Link("$(P)$(Q)fpSeq.LNK4","$(P)$(Q)fp3.STR1") +#! Field("$(P)$(Q)fpSeq.LNK5",16777215,1,"$(P)$(Q)fpSeq.LNK5") +#! Link("$(P)$(Q)fpSeq.LNK5","$(P)$(Q)fp4.STR1") +#! Field("$(P)$(Q)fpSeq.LNK6",16777215,1,"$(P)$(Q)fpSeq.LNK6") +#! Link("$(P)$(Q)fpSeq.LNK6","$(P)$(Q)fp5.STR1") +#! Field("$(P)$(Q)fpSeq.LNK7",16777215,1,"$(P)$(Q)fpSeq.LNK7") +#! Link("$(P)$(Q)fpSeq.LNK7","$(P)$(Q)fp6.STR1") +#! Field("$(P)$(Q)fpSeq.LNK8",16777215,1,"$(P)$(Q)fpSeq.LNK8") +#! Link("$(P)$(Q)fpSeq.LNK8","$(P)$(Q)fp7.STR1") +#! Field("$(P)$(Q)fpSeq.LNK9",16777215,1,"$(P)$(Q)fpSeq.LNK9") +#! Link("$(P)$(Q)fpSeq.LNK9","$(P)$(Q)fp8.STR1") +#! Field("$(P)$(Q)fpSeq.LNKA",16777215,1,"$(P)$(Q)fpSeq.LNKA") +#! Link("$(P)$(Q)fpSeq.LNKA","$(P)$(Q)fp9.STR1") +#! Record("$(P)$(Q)fp2",1380,2820,0,1,"$(P)$(Q)fp2") +#! Field("$(P)$(Q)fp2.STR1",16777215,0,"$(P)$(Q)fp2.STR1") +#! Field("$(P)$(Q)fp2.LNK1",16777215,1,"$(P)$(Q)fp2.LNK1") +#! Link("$(P)$(Q)fp2.LNK1","$(P)$(Q)fp.STR1") +#! Field("$(P)$(Q)fp2.LNK2",16777215,1,"$(P)$(Q)fp2.LNK2") +#! Link("$(P)$(Q)fp2.LNK2","$(P)$(Q)fp.DO2") +#! Field("$(P)$(Q)fp2.LNK3",16777215,1,"$(P)$(Q)fp2.LNK3") +#! Link("$(P)$(Q)fp2.LNK3","$(P)$(Q)fp.DO3") +#! Field("$(P)$(Q)fp2.LNK4",16777215,1,"$(P)$(Q)fp2.LNK4") +#! Link("$(P)$(Q)fp2.LNK4","$(P)$(Q)fp.DO4") +#! Visibility("$(P)$(Q)fp2.LNK1",2) +#! Visibility("$(P)$(Q)fp2.LNK2",2) +#! Visibility("$(P)$(Q)fp2.STR1",2) +#! Visibility("$(P)$(Q)fp2.DO2",2) +#! Visibility("$(P)$(Q)fp2.DO3",2) +#! Visibility("$(P)$(Q)fp2.LNK3",2) +#! Visibility("$(P)$(Q)fp2.DO4",2) +#! Record("$(P)$(Q)fp3",1380,2980,0,1,"$(P)$(Q)fp3") +#! Field("$(P)$(Q)fp3.STR1",16777215,0,"$(P)$(Q)fp3.STR1") +#! Field("$(P)$(Q)fp3.LNK1",16777215,1,"$(P)$(Q)fp3.LNK1") +#! Link("$(P)$(Q)fp3.LNK1","$(P)$(Q)fp.STR1") +#! Field("$(P)$(Q)fp3.LNK2",16777215,1,"$(P)$(Q)fp3.LNK2") +#! Link("$(P)$(Q)fp3.LNK2","$(P)$(Q)fp.DO2") +#! Field("$(P)$(Q)fp3.LNK3",16777215,1,"$(P)$(Q)fp3.LNK3") +#! Link("$(P)$(Q)fp3.LNK3","$(P)$(Q)fp.DO3") +#! Field("$(P)$(Q)fp3.LNK4",16777215,1,"$(P)$(Q)fp3.LNK4") +#! Link("$(P)$(Q)fp3.LNK4","$(P)$(Q)fp.DO4") +#! Visibility("$(P)$(Q)fp3.LNK1",2) +#! Visibility("$(P)$(Q)fp3.LNK2",2) +#! Visibility("$(P)$(Q)fp3.STR1",2) +#! Visibility("$(P)$(Q)fp3.DO2",2) +#! Visibility("$(P)$(Q)fp3.DO3",2) +#! Visibility("$(P)$(Q)fp3.LNK3",2) +#! Visibility("$(P)$(Q)fp3.DO4",2) +#! Record("$(P)$(Q)fp4",1380,3140,0,1,"$(P)$(Q)fp4") +#! Field("$(P)$(Q)fp4.STR1",16777215,0,"$(P)$(Q)fp4.STR1") +#! Field("$(P)$(Q)fp4.LNK1",16777215,1,"$(P)$(Q)fp4.LNK1") +#! Link("$(P)$(Q)fp4.LNK1","$(P)$(Q)fp.STR1") +#! Field("$(P)$(Q)fp4.LNK2",16777215,1,"$(P)$(Q)fp4.LNK2") +#! Link("$(P)$(Q)fp4.LNK2","$(P)$(Q)fp.DO2") +#! Field("$(P)$(Q)fp4.LNK3",16777215,1,"$(P)$(Q)fp4.LNK3") +#! Link("$(P)$(Q)fp4.LNK3","$(P)$(Q)fp.DO3") +#! Field("$(P)$(Q)fp4.LNK4",16777215,1,"$(P)$(Q)fp4.LNK4") +#! Link("$(P)$(Q)fp4.LNK4","$(P)$(Q)fp.DO4") +#! Visibility("$(P)$(Q)fp4.LNK1",2) +#! Visibility("$(P)$(Q)fp4.LNK2",2) +#! Visibility("$(P)$(Q)fp4.STR1",2) +#! Visibility("$(P)$(Q)fp4.DO2",2) +#! Visibility("$(P)$(Q)fp4.DO3",2) +#! Visibility("$(P)$(Q)fp4.LNK3",2) +#! Visibility("$(P)$(Q)fp4.DO4",2) +#! Record("$(P)$(Q)fp5",1380,3300,0,1,"$(P)$(Q)fp5") +#! Field("$(P)$(Q)fp5.STR1",16777215,0,"$(P)$(Q)fp5.STR1") +#! Field("$(P)$(Q)fp5.LNK1",16777215,1,"$(P)$(Q)fp5.LNK1") +#! Link("$(P)$(Q)fp5.LNK1","$(P)$(Q)fp.STR1") +#! Field("$(P)$(Q)fp5.LNK2",16777215,1,"$(P)$(Q)fp5.LNK2") +#! Link("$(P)$(Q)fp5.LNK2","$(P)$(Q)fp.DO2") +#! Field("$(P)$(Q)fp5.LNK3",16777215,1,"$(P)$(Q)fp5.LNK3") +#! Link("$(P)$(Q)fp5.LNK3","$(P)$(Q)fp.DO3") +#! Field("$(P)$(Q)fp5.LNK4",16777215,1,"$(P)$(Q)fp5.LNK4") +#! Link("$(P)$(Q)fp5.LNK4","$(P)$(Q)fp.DO4") +#! Visibility("$(P)$(Q)fp5.LNK1",2) +#! Visibility("$(P)$(Q)fp5.LNK2",2) +#! Visibility("$(P)$(Q)fp5.STR1",2) +#! Visibility("$(P)$(Q)fp5.DO2",2) +#! Visibility("$(P)$(Q)fp5.DO3",2) +#! Visibility("$(P)$(Q)fp5.LNK3",2) +#! Visibility("$(P)$(Q)fp5.DO4",2) +#! Record("$(P)$(Q)fp6",1380,3460,0,1,"$(P)$(Q)fp6") +#! Field("$(P)$(Q)fp6.STR1",16777215,0,"$(P)$(Q)fp6.STR1") +#! Field("$(P)$(Q)fp6.LNK1",16777215,1,"$(P)$(Q)fp6.LNK1") +#! Link("$(P)$(Q)fp6.LNK1","$(P)$(Q)fp.STR1") +#! Field("$(P)$(Q)fp6.LNK2",16777215,1,"$(P)$(Q)fp6.LNK2") +#! Link("$(P)$(Q)fp6.LNK2","$(P)$(Q)fp.DO2") +#! Field("$(P)$(Q)fp6.LNK3",16777215,1,"$(P)$(Q)fp6.LNK3") +#! Link("$(P)$(Q)fp6.LNK3","$(P)$(Q)fp.DO3") +#! Field("$(P)$(Q)fp6.LNK4",16777215,1,"$(P)$(Q)fp6.LNK4") +#! Link("$(P)$(Q)fp6.LNK4","$(P)$(Q)fp.DO4") +#! Visibility("$(P)$(Q)fp6.LNK1",2) +#! Visibility("$(P)$(Q)fp6.LNK2",2) +#! Visibility("$(P)$(Q)fp6.STR1",2) +#! Visibility("$(P)$(Q)fp6.DO2",2) +#! Visibility("$(P)$(Q)fp6.DO3",2) +#! Visibility("$(P)$(Q)fp6.LNK3",2) +#! Visibility("$(P)$(Q)fp6.DO4",2) +#! Record("$(P)$(Q)fp7",1380,3620,0,1,"$(P)$(Q)fp7") +#! Field("$(P)$(Q)fp7.STR1",16777215,0,"$(P)$(Q)fp7.STR1") +#! Field("$(P)$(Q)fp7.LNK1",16777215,1,"$(P)$(Q)fp7.LNK1") +#! Link("$(P)$(Q)fp7.LNK1","$(P)$(Q)fp.STR1") +#! Field("$(P)$(Q)fp7.LNK2",16777215,1,"$(P)$(Q)fp7.LNK2") +#! Link("$(P)$(Q)fp7.LNK2","$(P)$(Q)fp.DO2") +#! Field("$(P)$(Q)fp7.LNK3",16777215,1,"$(P)$(Q)fp7.LNK3") +#! Link("$(P)$(Q)fp7.LNK3","$(P)$(Q)fp.DO3") +#! Field("$(P)$(Q)fp7.LNK4",16777215,1,"$(P)$(Q)fp7.LNK4") +#! Link("$(P)$(Q)fp7.LNK4","$(P)$(Q)fp.DO4") +#! Visibility("$(P)$(Q)fp7.LNK1",2) +#! Visibility("$(P)$(Q)fp7.LNK2",2) +#! Visibility("$(P)$(Q)fp7.STR1",2) +#! Visibility("$(P)$(Q)fp7.DO2",2) +#! Visibility("$(P)$(Q)fp7.DO3",2) +#! Visibility("$(P)$(Q)fp7.LNK3",2) +#! Visibility("$(P)$(Q)fp7.DO4",2) +#! Record("$(P)$(Q)fp8",1380,3780,0,1,"$(P)$(Q)fp8") +#! Field("$(P)$(Q)fp8.STR1",16777215,0,"$(P)$(Q)fp8.STR1") +#! Field("$(P)$(Q)fp8.LNK1",16777215,1,"$(P)$(Q)fp8.LNK1") +#! Link("$(P)$(Q)fp8.LNK1","$(P)$(Q)fp.STR1") +#! Field("$(P)$(Q)fp8.LNK2",16777215,1,"$(P)$(Q)fp8.LNK2") +#! Link("$(P)$(Q)fp8.LNK2","$(P)$(Q)fp.DO2") +#! Field("$(P)$(Q)fp8.LNK3",16777215,1,"$(P)$(Q)fp8.LNK3") +#! Link("$(P)$(Q)fp8.LNK3","$(P)$(Q)fp.DO3") +#! Field("$(P)$(Q)fp8.LNK4",16777215,1,"$(P)$(Q)fp8.LNK4") +#! Link("$(P)$(Q)fp8.LNK4","$(P)$(Q)fp.DO4") +#! Visibility("$(P)$(Q)fp8.LNK1",2) +#! Visibility("$(P)$(Q)fp8.LNK2",2) +#! Visibility("$(P)$(Q)fp8.STR1",2) +#! Visibility("$(P)$(Q)fp8.DO2",2) +#! Visibility("$(P)$(Q)fp8.DO3",2) +#! Visibility("$(P)$(Q)fp8.LNK3",2) +#! Visibility("$(P)$(Q)fp8.DO4",2) +#! Record("$(P)$(Q)fp9",1380,3940,0,1,"$(P)$(Q)fp9") +#! Field("$(P)$(Q)fp9.STR1",16777215,0,"$(P)$(Q)fp9.STR1") +#! Field("$(P)$(Q)fp9.LNK1",16777215,1,"$(P)$(Q)fp9.LNK1") +#! Link("$(P)$(Q)fp9.LNK1","$(P)$(Q)fp.STR1") +#! Field("$(P)$(Q)fp9.LNK2",16777215,1,"$(P)$(Q)fp9.LNK2") +#! Link("$(P)$(Q)fp9.LNK2","$(P)$(Q)fp.DO2") +#! Field("$(P)$(Q)fp9.LNK3",16777215,1,"$(P)$(Q)fp9.LNK3") +#! Link("$(P)$(Q)fp9.LNK3","$(P)$(Q)fp.DO3") +#! Field("$(P)$(Q)fp9.LNK4",16777215,1,"$(P)$(Q)fp9.LNK4") +#! Link("$(P)$(Q)fp9.LNK4","$(P)$(Q)fp.DO4") +#! Visibility("$(P)$(Q)fp9.LNK1",2) +#! Visibility("$(P)$(Q)fp9.LNK2",2) +#! Visibility("$(P)$(Q)fp9.STR1",2) +#! Visibility("$(P)$(Q)fp9.DO2",2) +#! Visibility("$(P)$(Q)fp9.DO3",2) +#! Visibility("$(P)$(Q)fp9.LNK3",2) +#! Visibility("$(P)$(Q)fp9.DO4",2) +#! Record("$(P)$(Q)fpSelect",720,1945,0,0,"$(P)$(Q)fpSelect") +#! Field("$(P)$(Q)fpSelect.ZRST",16777215,1,"$(P)$(Q)fpSelect.ZRST") +#! Field("$(P)$(Q)fpSelect.ONST",16777215,1,"$(P)$(Q)fpSelect.ONST") +#! Field("$(P)$(Q)fpSelect.TWST",16777215,1,"$(P)$(Q)fpSelect.TWST") +#! Field("$(P)$(Q)fpSelect.THST",16777215,1,"$(P)$(Q)fpSelect.THST") +#! Field("$(P)$(Q)fpSelect.FRST",16777215,1,"$(P)$(Q)fpSelect.FRST") +#! Field("$(P)$(Q)fpSelect.FVST",16777215,1,"$(P)$(Q)fpSelect.FVST") +#! Field("$(P)$(Q)fpSelect.SXST",16777215,1,"$(P)$(Q)fpSelect.SXST") +#! Field("$(P)$(Q)fpSelect.SVST",16777215,1,"$(P)$(Q)fpSelect.SVST") +#! Field("$(P)$(Q)fpSelect.EIST",16777215,1,"$(P)$(Q)fpSelect.EIST") +#! Field("$(P)$(Q)fpSelect.NIST",16777215,1,"$(P)$(Q)fpSelect.NIST") +#! Field("$(P)$(Q)fpSelect.OUT",16777215,1,"$(P)$(Q)fpSelect.OUT") +#! Link("$(P)$(Q)fpSelect.OUT","$(P)$(Q)fpSeq.SELN") +#! Visibility("$(P)$(Q)fpSelect.DTYP",2) +#! Visibility("$(P)$(Q)fpSelect.ZRVL",2) +#! Visibility("$(P)$(Q)fpSelect.ONVL",2) +#! Visibility("$(P)$(Q)fpSelect.TWVL",2) +#! Visibility("$(P)$(Q)fpSelect.THVL",2) +#! Visibility("$(P)$(Q)fpSelect.FRVL",2) +#! Visibility("$(P)$(Q)fpSelect.FVVL",2) +#! Visibility("$(P)$(Q)fpSelect.SXVL",2) +#! Visibility("$(P)$(Q)fpSelect.SVVL",2) +#! Visibility("$(P)$(Q)fpSelect.EIVL",2) +#! Visibility("$(P)$(Q)fpSelect.NIVL",2) +#! Record("$(P)$(Q)fp0Name",440,1395,0,0,"$(P)$(Q)fp0Name") +#! Field("$(P)$(Q)fp0Name.OUT",16777215,1,"$(P)$(Q)fp0Name.OUT") +#! Link("$(P)$(Q)fp0Name.OUT","$(P)$(Q)fpSelect.ZRST") +#! Visibility("$(P)$(Q)fp0Name.VAL",2) +#! Record("$(P)$(Q)fp1Name",440,1495,0,0,"$(P)$(Q)fp1Name") +#! Field("$(P)$(Q)fp1Name.OUT",16777215,1,"$(P)$(Q)fp1Name.OUT") +#! Link("$(P)$(Q)fp1Name.OUT","$(P)$(Q)fpSelect.ONST") +#! Visibility("$(P)$(Q)fp1Name.VAL",2) +#! Record("$(P)$(Q)fp2Name",440,1595,0,0,"$(P)$(Q)fp2Name") +#! Field("$(P)$(Q)fp2Name.OUT",16777215,1,"$(P)$(Q)fp2Name.OUT") +#! Link("$(P)$(Q)fp2Name.OUT","$(P)$(Q)fpSelect.TWST") +#! Visibility("$(P)$(Q)fp2Name.VAL",2) +#! Record("$(P)$(Q)fp3Name",440,1695,0,0,"$(P)$(Q)fp3Name") +#! Field("$(P)$(Q)fp3Name.OUT",16777215,1,"$(P)$(Q)fp3Name.OUT") +#! Link("$(P)$(Q)fp3Name.OUT","$(P)$(Q)fpSelect.THST") +#! Visibility("$(P)$(Q)fp3Name.VAL",2) +#! Record("$(P)$(Q)fp4Name",440,1815,0,0,"$(P)$(Q)fp4Name") +#! Field("$(P)$(Q)fp4Name.OUT",16777215,1,"$(P)$(Q)fp4Name.OUT") +#! Link("$(P)$(Q)fp4Name.OUT","$(P)$(Q)fpSelect.FRST") +#! Visibility("$(P)$(Q)fp4Name.VAL",2) +#! Record("$(P)$(Q)fp5Name",440,1915,0,0,"$(P)$(Q)fp5Name") +#! Field("$(P)$(Q)fp5Name.OUT",16777215,1,"$(P)$(Q)fp5Name.OUT") +#! Link("$(P)$(Q)fp5Name.OUT","$(P)$(Q)fpSelect.FVST") +#! Visibility("$(P)$(Q)fp5Name.VAL",2) +#! Record("$(P)$(Q)fp6Name",440,2035,0,0,"$(P)$(Q)fp6Name") +#! Field("$(P)$(Q)fp6Name.OUT",16777215,1,"$(P)$(Q)fp6Name.OUT") +#! Link("$(P)$(Q)fp6Name.OUT","$(P)$(Q)fpSelect.SXST") +#! Visibility("$(P)$(Q)fp6Name.VAL",2) +#! Record("$(P)$(Q)fp7Name",440,2135,0,0,"$(P)$(Q)fp7Name") +#! Field("$(P)$(Q)fp7Name.OUT",16777215,1,"$(P)$(Q)fp7Name.OUT") +#! Link("$(P)$(Q)fp7Name.OUT","$(P)$(Q)fpSelect.SVST") +#! Visibility("$(P)$(Q)fp7Name.VAL",2) +#! Record("$(P)$(Q)fp8Name",440,2235,0,0,"$(P)$(Q)fp8Name") +#! Field("$(P)$(Q)fp8Name.OUT",16777215,1,"$(P)$(Q)fp8Name.OUT") +#! Link("$(P)$(Q)fp8Name.OUT","$(P)$(Q)fpSelect.EIST") +#! Visibility("$(P)$(Q)fp8Name.VAL",2) +#! Record("$(P)$(Q)fp9Name",440,2355,0,0,"$(P)$(Q)fp9Name") +#! Field("$(P)$(Q)fp9Name.OUT",16777215,1,"$(P)$(Q)fp9Name.OUT") +#! Link("$(P)$(Q)fp9Name.OUT","$(P)$(Q)fpSelect.NIST") +#! Visibility("$(P)$(Q)fp9Name.VAL",2) +#! Record("$(P)$(Q)fpInit",100,855,0,1,"$(P)$(Q)fpInit") +#! Field("$(P)$(Q)fpInit.LNK1",16777215,1,"$(P)$(Q)fpInit.LNK1") +#! Link("$(P)$(Q)fpInit.LNK1","$(P)$(Q)fp0Name") +#! Field("$(P)$(Q)fpInit.LNK2",16777215,1,"$(P)$(Q)fpInit.LNK2") +#! Link("$(P)$(Q)fpInit.LNK2","$(P)$(Q)fp1Name") +#! Field("$(P)$(Q)fpInit.LNK3",16777215,1,"$(P)$(Q)fpInit.LNK3") +#! Link("$(P)$(Q)fpInit.LNK3","$(P)$(Q)fp2Name") +#! Field("$(P)$(Q)fpInit.LNK4",16777215,1,"$(P)$(Q)fpInit.LNK4") +#! Link("$(P)$(Q)fpInit.LNK4","$(P)$(Q)fp3Name") +#! Field("$(P)$(Q)fpInit.LNK5",16777215,1,"$(P)$(Q)fpInit.LNK5") +#! Link("$(P)$(Q)fpInit.LNK5","$(P)$(Q)fp4Name") +#! Field("$(P)$(Q)fpInit.LNK6",16777215,1,"$(P)$(Q)fpInit.LNK6") +#! Link("$(P)$(Q)fpInit.LNK6","$(P)$(Q)fp5Name") +#! Field("$(P)$(Q)fpInit.FLNK",16777215,0,"$(P)$(Q)fpInit.FLNK") +#! Link("$(P)$(Q)fpInit.FLNK","$(P)$(Q)fpInit1") +#! Record("$(P)$(Q)fpInit1",100,1170,0,0,"$(P)$(Q)fpInit1") +#! Field("$(P)$(Q)fpInit1.LNK1",16777215,1,"$(P)$(Q)fpInit1.LNK1") +#! Link("$(P)$(Q)fpInit1.LNK1","$(P)$(Q)fp6Name") +#! Field("$(P)$(Q)fpInit1.LNK2",16777215,1,"$(P)$(Q)fpInit1.LNK2") +#! Link("$(P)$(Q)fpInit1.LNK2","$(P)$(Q)fp7Name") +#! Field("$(P)$(Q)fpInit1.LNK3",16777215,1,"$(P)$(Q)fpInit1.LNK3") +#! Link("$(P)$(Q)fpInit1.LNK3","$(P)$(Q)fp8Name") +#! Field("$(P)$(Q)fpInit1.LNK4",16777215,1,"$(P)$(Q)fpInit1.LNK4") +#! Link("$(P)$(Q)fpInit1.LNK4","$(P)$(Q)fp9Name") +#! Field("$(P)$(Q)fpInit1.LNK5",16777215,1,"$(P)$(Q)fpInit1.LNK5") +#! Link("$(P)$(Q)fpInit1.LNK5","$(P)$(Q)fpSelect") +#! Record("$(P)$(Q):x",2300,740,0,1,"$(P)$(Q):x") +#! Field("$(P)$(Q):x.RDBL",16777215,1,"$(P)$(Q):x.RDBL") +#! Link("$(P)$(Q):x.RDBL","$(P)$(Q):x/RDBL") +#! Field("$(P)$(Q):x.OUT",16777215,1,"$(P)$(Q):x.OUT") +#! Link("$(P)$(Q):x.OUT","$(P)$(Q):x/OUT") +#! Field("$(P)$(Q):x.HLM",16777215,0,"$(P)$(Q):x.HLM") +#! Field("$(P)$(Q):x.DINP",16737792,0,"$(P)$(Q):x.DINP") +#! Link("$(P)$(Q):x.DINP","$(P)$(Q):x/DINP") +#! Field("$(P)$(Q):x.LLM",16777215,0,"$(P)$(Q):x.LLM") +#! Field("$(P)$(Q):x.LOCK",52428,0,"$(P)$(Q):x.LOCK") +#! Connector("$(P)$(Q):x/DINP","$(P)$(Q):done.VAL",2200,860,16737792,"",0) +#! Field("$(P)$(Q):x.SYNC",13369548,0,"$(P)$(Q):x.SYNC") +#! Connector("$(P)$(Q):x/OUT","$(P)$(T).X",2560,1000,16777215,"",0) +#! Connector("$(P)$(Q):x/RDBL","$(P)$(T).EX",2580,980,16777215,"",0) +#! Record("$(P)$(Q):writeMotors",3080,960,0,1,"$(P)$(Q):writeMotors") +#! Field("$(P)$(Q):writeMotors.PROC",16777215,1,"$(P)$(Q):writeMotors.PROC") +#! Field("$(P)$(Q):writeMotors.LNK1",16777215,1,"$(P)$(Q):writeMotors.LNK1") +#! Link("$(P)$(Q):writeMotors.LNK1","$(P)$(Q):startMove.DO1") +#! Field("$(P)$(Q):writeMotors.LNK2",16777215,1,"$(P)$(Q):writeMotors.LNK2") +#! Field("$(P)$(Q):writeMotors.LNK3",16777215,1,"$(P)$(Q):writeMotors.LNK3") +#! Field("$(P)$(Q):writeMotors.LNK4",16777215,1,"$(P)$(Q):writeMotors.LNK4") +#! Field("$(P)$(Q):writeMotors.LNK5",16777215,1,"$(P)$(Q):writeMotors.LNK5") +#! Field("$(P)$(Q):writeMotors.LNK6",16777215,1,"$(P)$(Q):writeMotors.LNK6") +#! Field("$(P)$(Q):writeMotors.LNK7",16777215,1,"$(P)$(Q):writeMotors.LNK7") +#! Field("$(P)$(Q):writeMotors.LNK8",16777215,0,"$(P)$(Q):writeMotors.LNK8") +#! Link("$(P)$(Q):writeMotors.LNK8","$(P)$(Q):valuesWritten.VAL") +#! Field("$(P)$(Q):writeMotors.DOL2",16777215,0,"$(P)$(Q):writeMotors.DOL2") +#! Link("$(P)$(Q):writeMotors.DOL2","$(P)$(Q):writeMotors/DOL2") +#! Field("$(P)$(Q):writeMotors.DOL3",16777215,0,"$(P)$(Q):writeMotors.DOL3") +#! Link("$(P)$(Q):writeMotors.DOL3","$(P)$(Q):writeMotors/DOL3") +#! Field("$(P)$(Q):writeMotors.DOL4",16777215,0,"$(P)$(Q):writeMotors.DOL4") +#! Link("$(P)$(Q):writeMotors.DOL4","$(P)$(T).M1Y") +#! Field("$(P)$(Q):writeMotors.DOL5",16777215,0,"$(P)$(Q):writeMotors.DOL5") +#! Link("$(P)$(Q):writeMotors.DOL5","$(P)$(Q):writeMotors/DOL5") +#! Field("$(P)$(Q):writeMotors.DOL6",16777215,0,"$(P)$(Q):writeMotors.DOL6") +#! Link("$(P)$(Q):writeMotors.DOL6","$(P)$(Q):writeMotors/DOL6") +#! Field("$(P)$(Q):writeMotors.DOL7",16777215,0,"$(P)$(Q):writeMotors.DOL7") +#! Link("$(P)$(Q):writeMotors.DOL7","$(P)$(Q):writeMotors/DOL7") +#! Connector("$(P)$(Q):writeMotors/DOL2","$(P)$(T).M0X",2920,1270,16777215,"",0) +#! Connector("$(P)$(Q):writeMotors/DOL3","$(P)$(T).M0Y",2900,1390,16777215,"",0) +#! Connector("$(P)$(Q):writeMotors/DOL7","$(P)$(T).M2Z",2920,1870,16777215,"",0) +#! Connector("$(P)$(Q):writeMotors/DOL6","$(P)$(T).M2Y",2900,1750,16777215,"",0) +#! Connector("$(P)$(Q):writeMotors/DOL5","$(P)$(T).M2X",2880,1630,16777215,"",0) +#! Visibility("$(P)$(Q):writeMotors.DO1",1) +#! Record("$(P)$(Q):isSoftMove",1760,2300,0,1,"$(P)$(Q):isSoftMove") +#! Field("$(P)$(Q):isSoftMove.VAL",16777215,0,"$(P)$(Q):isSoftMove.VAL") +#! Field("$(P)$(Q):isSoftMove.OUT",16777215,1,"$(P)$(Q):isSoftMove.OUT") +#! Link("$(P)$(Q):isSoftMove.OUT","$(P)$(Q):isSoftFan.VAL") +#! Record("$(P)$(Q):isSoftFan",2020,2270,0,1,"$(P)$(Q):isSoftFan") +#! Field("$(P)$(Q):isSoftFan.VAL",16777215,0,"$(P)$(Q):isSoftFan.VAL") +#! Field("$(P)$(Q):isSoftFan.OUTA",52428,1,"$(P)$(Q):isSoftFan.OUTA") +#! Link("$(P)$(Q):isSoftFan.OUTA","$(P)$(Q):isSoftFan/OUTA") +#! Field("$(P)$(Q):isSoftFan.OUTB",52428,1,"$(P)$(Q):isSoftFan.OUTB") +#! Link("$(P)$(Q):isSoftFan.OUTB","$(P)$(Q):isSoftFan/OUTB") +#! Field("$(P)$(Q):isSoftFan.OUTC",52428,1,"$(P)$(Q):isSoftFan.OUTC") +#! Link("$(P)$(Q):isSoftFan.OUTC","$(P)$(Q):isSoftFan/OUTC") +#! Field("$(P)$(Q):isSoftFan.OUTD",52428,1,"$(P)$(Q):isSoftFan.OUTD") +#! Link("$(P)$(Q):isSoftFan.OUTD","$(P)$(Q):isSoftFan/OUTD") +#! Field("$(P)$(Q):isSoftFan.OUTE",52428,1,"$(P)$(Q):isSoftFan.OUTE") +#! Link("$(P)$(Q):isSoftFan.OUTE","$(P)$(Q):isSoftFan/OUTE") +#! Field("$(P)$(Q):isSoftFan.OUTF",52428,1,"$(P)$(Q):isSoftFan.OUTF") +#! Link("$(P)$(Q):isSoftFan.OUTF","$(P)$(Q):isSoftFan/OUTF") +#! Connector("$(P)$(Q):isSoftFan/OUTA","$(P)$(Q):x.LOCK",2240,1750,52428,"",0) +#! Connector("$(P)$(Q):isSoftFan/OUTB","$(P)$(Q):y.LOCK",2240,1870,52428,"",0) +#! Connector("$(P)$(Q):isSoftFan/OUTC","$(P)$(Q):z.LOCK",2240,2000,52428,"",0) +#! Connector("$(P)$(Q):isSoftFan/OUTD","$(P)$(Q):ax.LOCK",2240,2130,52428,"",0) +#! Connector("$(P)$(Q):isSoftFan/OUTE","$(P)$(Q):ay.LOCK",2240,2260,52428,"",0) +#! Connector("$(P)$(Q):isSoftFan/OUTF","$(P)$(Q):az.LOCK",2240,2390,52428,"",0) +#! Record("$(P)$(Q):y",2300,965,0,1,"$(P)$(Q):y") +#! Field("$(P)$(Q):y.RDBL",16777215,1,"$(P)$(Q):y.RDBL") +#! Link("$(P)$(Q):y.RDBL","$(P)$(Q):y/RDBL") +#! Field("$(P)$(Q):y.OUT",16777215,1,"$(P)$(Q):y.OUT") +#! Link("$(P)$(Q):y.OUT","$(P)$(Q):y/OUT") +#! Field("$(P)$(Q):y.HLM",16777215,0,"$(P)$(Q):y.HLM") +#! Field("$(P)$(Q):y.DINP",16737792,0,"$(P)$(Q):y.DINP") +#! Link("$(P)$(Q):y.DINP","$(P)$(Q):y/DINP") +#! Field("$(P)$(Q):y.LOCK",52428,0,"$(P)$(Q):y.LOCK") +#! Field("$(P)$(Q):y.LLM",16777215,0,"$(P)$(Q):y.LLM") +#! Connector("$(P)$(Q):y/DINP","$(P)$(Q):done.VAL",2200,980,16737792,"",0) +#! Field("$(P)$(Q):y.SYNC",13369548,0,"$(P)$(Q):y.SYNC") +#! Connector("$(P)$(Q):y/OUT","$(P)$(T).Y",2560,1230,16777215,"",0) +#! Connector("$(P)$(Q):y/RDBL","$(P)$(T).EY",2580,1210,16777215,"",0) +#! Record("$(P)$(Q):z",2300,1205,0,1,"$(P)$(Q):z") +#! Field("$(P)$(Q):z.RDBL",16777215,1,"$(P)$(Q):z.RDBL") +#! Link("$(P)$(Q):z.RDBL","$(P)$(T).EZ") +#! Field("$(P)$(Q):z.OUT",16777215,1,"$(P)$(Q):z.OUT") +#! Link("$(P)$(Q):z.OUT","$(P)$(Q):z/OUT") +#! Field("$(P)$(Q):z.HLM",16777215,0,"$(P)$(Q):z.HLM") +#! Field("$(P)$(Q):z.DINP",16737792,0,"$(P)$(Q):z.DINP") +#! Link("$(P)$(Q):z.DINP","$(P)$(Q):z/DINP") +#! Field("$(P)$(Q):z.LOCK",52428,0,"$(P)$(Q):z.LOCK") +#! Field("$(P)$(Q):z.LLM",16777215,0,"$(P)$(Q):z.LLM") +#! Connector("$(P)$(Q):z/DINP","$(P)$(Q):done.VAL",2200,1100,16737792,"",0) +#! Field("$(P)$(Q):z.SYNC",13369548,0,"$(P)$(Q):z.SYNC") +#! Connector("$(P)$(Q):z/OUT","$(P)$(T).Z",2560,1460,16777215,"",0) +#! Record("$(P)$(Q):ax",2300,1445,0,1,"$(P)$(Q):ax") +#! Field("$(P)$(Q):ax.RDBL",16777215,1,"$(P)$(Q):ax.RDBL") +#! Link("$(P)$(Q):ax.RDBL","$(P)$(T).EAX") +#! Field("$(P)$(Q):ax.OUT",16777215,1,"$(P)$(Q):ax.OUT") +#! Link("$(P)$(Q):ax.OUT","$(P)$(T).AX") +#! Field("$(P)$(Q):ax.HLM",16777215,0,"$(P)$(Q):ax.HLM") +#! Field("$(P)$(Q):ax.DINP",16737792,0,"$(P)$(Q):ax.DINP") +#! Link("$(P)$(Q):ax.DINP","$(P)$(Q):ax/DINP") +#! Field("$(P)$(Q):ax.LOCK",52428,0,"$(P)$(Q):ax.LOCK") +#! Field("$(P)$(Q):ax.LLM",16777215,0,"$(P)$(Q):ax.LLM") +#! Connector("$(P)$(Q):ax/DINP","$(P)$(Q):done.VAL",2200,1220,16737792,"",0) +#! Field("$(P)$(Q):ax.SYNC",13369548,0,"$(P)$(Q):ax.SYNC") +#! Record("$(P)$(Q):ay",2300,1685,0,1,"$(P)$(Q):ay") +#! Field("$(P)$(Q):ay.RDBL",16777215,1,"$(P)$(Q):ay.RDBL") +#! Link("$(P)$(Q):ay.RDBL","$(P)$(Q):ay/RDBL") +#! Field("$(P)$(Q):ay.OUT",16777215,1,"$(P)$(Q):ay.OUT") +#! Link("$(P)$(Q):ay.OUT","$(P)$(Q):ay/OUT") +#! Field("$(P)$(Q):ay.HLM",16777215,0,"$(P)$(Q):ay.HLM") +#! Field("$(P)$(Q):ay.DINP",16737792,0,"$(P)$(Q):ay.DINP") +#! Link("$(P)$(Q):ay.DINP","$(P)$(Q):ay/DINP") +#! Field("$(P)$(Q):ay.LOCK",52428,0,"$(P)$(Q):ay.LOCK") +#! Field("$(P)$(Q):ay.LLM",16777215,0,"$(P)$(Q):ay.LLM") +#! Connector("$(P)$(Q):ay/DINP","$(P)$(Q):done.VAL",2200,1340,16737792,"",0) +#! Field("$(P)$(Q):ay.SYNC",13369548,0,"$(P)$(Q):ay.SYNC") +#! Connector("$(P)$(Q):ay/RDBL","$(P)$(T).EAY",2560,1900,16777215,"",0) +#! Connector("$(P)$(Q):ay/OUT","$(P)$(T).AY",2580,1920,16777215,"",0) +#! Record("$(P)$(Q):az",2300,1925,0,1,"$(P)$(Q):az") +#! Field("$(P)$(Q):az.RDBL",16777215,1,"$(P)$(Q):az.RDBL") +#! Link("$(P)$(Q):az.RDBL","$(P)$(Q):az/RDBL") +#! Field("$(P)$(Q):az.OUT",16777215,1,"$(P)$(Q):az.OUT") +#! Link("$(P)$(Q):az.OUT","$(P)$(Q):az/OUT") +#! Field("$(P)$(Q):az.HLM",16777215,0,"$(P)$(Q):az.HLM") +#! Field("$(P)$(Q):az.DINP",16737792,0,"$(P)$(Q):az.DINP") +#! Link("$(P)$(Q):az.DINP","$(P)$(Q):az/DINP") +#! Field("$(P)$(Q):az.LOCK",52428,0,"$(P)$(Q):az.LOCK") +#! Field("$(P)$(Q):az.LLM",16777215,0,"$(P)$(Q):az.LLM") +#! Connector("$(P)$(Q):az/DINP","$(P)$(Q):done.VAL",2200,1460,16737792,"",0) +#! Field("$(P)$(Q):az.SYNC",13369548,0,"$(P)$(Q):az.SYNC") +#! Connector("$(P)$(Q):az/RDBL","$(P)$(T).EAZ",2560,2130,16777215,"",0) +#! Connector("$(P)$(Q):az/OUT","$(P)$(T).AZ",2580,2150,16777215,"",0) +#! Record("$(P)$(Q):axHlimCopy",1920,1580,0,1,"$(P)$(Q):axHlimCopy") +#! Field("$(P)$(Q):axHlimCopy.DOL",16777215,1,"$(P)$(Q):axHlimCopy.DOL") +#! Link("$(P)$(Q):axHlimCopy.DOL","$(P)$(Q):axHlimCopy/DOL1") +#! Field("$(P)$(Q):axHlimCopy.OUT",16777215,1,"$(P)$(Q):axHlimCopy.OUT") +#! Link("$(P)$(Q):axHlimCopy.OUT","$(P)$(Q):axHlimCopy/OUT") +#! Connector("$(P)$(Q):axHlimCopy/DOL","$(P)$(T).HLAX",2395,1580,16777215,"",0) +#! Connector("$(P)$(Q):axHlimCopy/DOL1","$(P)$(Q):axHlimCopy/DOL",2180,1635,16777215,"",0) +#! Connector("$(P)$(Q):axHlimCopy/OUT","$(P)$(Q):ax.HLM",2180,1710,16777215,"",0) +#! Record("$(P)$(Q):axLlimCopy",1920,1680,0,1,"$(P)$(Q):axLlimCopy") +#! Field("$(P)$(Q):axLlimCopy.OUT",16777215,1,"$(P)$(Q):axLlimCopy.OUT") +#! Link("$(P)$(Q):axLlimCopy.OUT","$(P)$(Q):axLlimCopy/OUT") +#! Field("$(P)$(Q):axLlimCopy.DOL",16777215,1,"$(P)$(Q):axLlimCopy.DOL") +#! Link("$(P)$(Q):axLlimCopy.DOL","$(P)$(T).LLAX") +#! Connector("$(P)$(Q):axLlimCopy/OUT","$(P)$(Q):ax.LLM",2200,1780,16777215,"",0) +#! Record("$(P)$(Q):xHlimCopy",1920,860,0,1,"$(P)$(Q):xHlimCopy") +#! Field("$(P)$(Q):xHlimCopy.DOL",16777215,1,"$(P)$(Q):xHlimCopy.DOL") +#! Link("$(P)$(Q):xHlimCopy.DOL","$(P)$(Q):xHlimCopy/DOL1") +#! Field("$(P)$(Q):xHlimCopy.OUT",16777215,1,"$(P)$(Q):xHlimCopy.OUT") +#! Link("$(P)$(Q):xHlimCopy.OUT","$(P)$(Q):x.HLM") +#! Connector("$(P)$(Q):xHlimCopy/DOL","$(P)$(T).HLX",2395,860,16777215,"",0) +#! Connector("$(P)$(Q):xHlimCopy/DOL1","$(P)$(Q):xHlimCopy/DOL",2180,915,16777215,"",0) +#! Record("$(P)$(Q):xLlimCopy",1920,960,0,1,"$(P)$(Q):xLlimCopy") +#! Field("$(P)$(Q):xLlimCopy.OUT",16777215,1,"$(P)$(Q):xLlimCopy.OUT") +#! Link("$(P)$(Q):xLlimCopy.OUT","$(P)$(Q):xLlimCopy/OUT") +#! Field("$(P)$(Q):xLlimCopy.DOL",16777215,1,"$(P)$(Q):xLlimCopy.DOL") +#! Link("$(P)$(Q):xLlimCopy.DOL","$(P)$(T).LLX") +#! Connector("$(P)$(Q):xLlimCopy/OUT","$(P)$(Q):x.LLM",2180,1050,16777215,"",0) +#! Record("$(P)$(Q):yHlimCopy",1920,1100,0,1,"$(P)$(Q):yHlimCopy") +#! Field("$(P)$(Q):yHlimCopy.DOL",16777215,1,"$(P)$(Q):yHlimCopy.DOL") +#! Link("$(P)$(Q):yHlimCopy.DOL","$(P)$(Q):yHlimCopy/DOL1") +#! Field("$(P)$(Q):yHlimCopy.OUT",16777215,1,"$(P)$(Q):yHlimCopy.OUT") +#! Link("$(P)$(Q):yHlimCopy.OUT","$(P)$(Q):y.HLM") +#! Connector("$(P)$(Q):yHlimCopy/DOL","$(P)$(T).HLY",2395,1100,16777215,"",0) +#! Connector("$(P)$(Q):yHlimCopy/DOL1","$(P)$(Q):yHlimCopy/DOL",2180,1155,16777215,"",0) +#! Record("$(P)$(Q):yLlimCopy",1920,1200,0,1,"$(P)$(Q):yLlimCopy") +#! Field("$(P)$(Q):yLlimCopy.OUT",16777215,1,"$(P)$(Q):yLlimCopy.OUT") +#! Link("$(P)$(Q):yLlimCopy.OUT","$(P)$(Q):yLlimCopy/OUT") +#! Field("$(P)$(Q):yLlimCopy.DOL",16777215,1,"$(P)$(Q):yLlimCopy.DOL") +#! Link("$(P)$(Q):yLlimCopy.DOL","$(P)$(T).LLY") +#! Connector("$(P)$(Q):yLlimCopy/OUT","$(P)$(Q):y.LLM",2200,1300,16777215,"",0) +#! Record("$(P)$(Q):zHlimCopy",1920,1340,0,1,"$(P)$(Q):zHlimCopy") +#! Field("$(P)$(Q):zHlimCopy.DOL",16777215,1,"$(P)$(Q):zHlimCopy.DOL") +#! Link("$(P)$(Q):zHlimCopy.DOL","$(P)$(Q):zHlimCopy/DOL1") +#! Field("$(P)$(Q):zHlimCopy.OUT",16777215,1,"$(P)$(Q):zHlimCopy.OUT") +#! Link("$(P)$(Q):zHlimCopy.OUT","$(P)$(Q):zHlimCopy/OUT") +#! Connector("$(P)$(Q):zHlimCopy/DOL","$(P)$(T).HLZ",2395,1340,16777215,"",0) +#! Connector("$(P)$(Q):zHlimCopy/DOL1","$(P)$(Q):zHlimCopy/DOL",2180,1395,16777215,"",0) +#! Connector("$(P)$(Q):zHlimCopy/OUT","$(P)$(Q):z.HLM",2180,1470,16777215,"",0) +#! Record("$(P)$(Q):zLlimCopy",1920,1440,0,1,"$(P)$(Q):zLlimCopy") +#! Field("$(P)$(Q):zLlimCopy.OUT",16777215,1,"$(P)$(Q):zLlimCopy.OUT") +#! Link("$(P)$(Q):zLlimCopy.OUT","$(P)$(Q):zLlimCopy/OUT") +#! Field("$(P)$(Q):zLlimCopy.DOL",16777215,1,"$(P)$(Q):zLlimCopy.DOL") +#! Link("$(P)$(Q):zLlimCopy.DOL","$(P)$(T).LLZ") +#! Connector("$(P)$(Q):zLlimCopy/OUT","$(P)$(Q):z.LLM",2200,1540,16777215,"",0) +#! Record("$(P)$(Q):ayHlimCopy",1920,1820,0,1,"$(P)$(Q):ayHlimCopy") +#! Field("$(P)$(Q):ayHlimCopy.DOL",16777215,1,"$(P)$(Q):ayHlimCopy.DOL") +#! Link("$(P)$(Q):ayHlimCopy.DOL","$(P)$(Q):ayHlimCopy/DOL1") +#! Field("$(P)$(Q):ayHlimCopy.OUT",16777215,1,"$(P)$(Q):ayHlimCopy.OUT") +#! Link("$(P)$(Q):ayHlimCopy.OUT","$(P)$(Q):ayHlimCopy/OUT") +#! Connector("$(P)$(Q):ayHlimCopy/DOL","$(P)$(T).HLAY",2395,1820,16777215,"",0) +#! Connector("$(P)$(Q):ayHlimCopy/DOL1","$(P)$(Q):ayHlimCopy/DOL",2180,1875,16777215,"",0) +#! Connector("$(P)$(Q):ayHlimCopy/OUT","$(P)$(Q):ay.HLM",2180,1950,16777215,"",0) +#! Record("$(P)$(Q):ayLlimCopy",1920,1920,0,1,"$(P)$(Q):ayLlimCopy") +#! Field("$(P)$(Q):ayLlimCopy.OUT",16777215,1,"$(P)$(Q):ayLlimCopy.OUT") +#! Link("$(P)$(Q):ayLlimCopy.OUT","$(P)$(Q):ayLlimCopy/OUT") +#! Field("$(P)$(Q):ayLlimCopy.DOL",16777215,1,"$(P)$(Q):ayLlimCopy.DOL") +#! Link("$(P)$(Q):ayLlimCopy.DOL","$(P)$(T).LLAY") +#! Connector("$(P)$(Q):ayLlimCopy/OUT","$(P)$(Q):ay.LLM",2200,2020,16777215,"",0) +#! Record("$(P)$(Q):azHlimCopy",1920,2060,0,1,"$(P)$(Q):azHlimCopy") +#! Field("$(P)$(Q):azHlimCopy.DOL",16777215,1,"$(P)$(Q):azHlimCopy.DOL") +#! Link("$(P)$(Q):azHlimCopy.DOL","$(P)$(Q):azHlimCopy/DOL1") +#! Field("$(P)$(Q):azHlimCopy.OUT",16777215,1,"$(P)$(Q):azHlimCopy.OUT") +#! Link("$(P)$(Q):azHlimCopy.OUT","$(P)$(Q):azHlimCopy/OUT") +#! Connector("$(P)$(Q):azHlimCopy/DOL","$(P)$(T).HLAZ",2395,2060,16777215,"",0) +#! Connector("$(P)$(Q):azHlimCopy/DOL1","$(P)$(Q):azHlimCopy/DOL",2180,2115,16777215,"",0) +#! Connector("$(P)$(Q):azHlimCopy/OUT","$(P)$(Q):az.HLM",2180,2190,16777215,"",0) +#! Record("$(P)$(Q):azLlimCopy",1920,2160,0,1,"$(P)$(Q):azLlimCopy") +#! Field("$(P)$(Q):azLlimCopy.OUT",16777215,1,"$(P)$(Q):azLlimCopy.OUT") +#! Link("$(P)$(Q):azLlimCopy.OUT","$(P)$(Q):azLlimCopy/OUT") +#! Field("$(P)$(Q):azLlimCopy.DOL",16777215,1,"$(P)$(Q):azLlimCopy.DOL") +#! Link("$(P)$(Q):azLlimCopy.DOL","$(P)$(T).LLAZ") +#! Connector("$(P)$(Q):azLlimCopy/OUT","$(P)$(Q):az.LLM",2200,2260,16777215,"",0) +#! Record("$(P)$(Q):startMove",3360,1265,0,1,"$(P)$(Q):startMove") +#! Field("$(P)$(Q):startMove.DO1",16777215,0,"$(P)$(Q):startMove.DO1") +#! Field("$(P)$(Q):startMove.LNK3",16777215,1,"$(P)$(Q):startMove.LNK3") +#! Link("$(P)$(Q):startMove.LNK3","$(P)$(Q):gate.VAL") +#! Field("$(P)$(Q):startMove.LNK1",16777215,1,"$(P)$(Q):startMove.LNK1") +#! Link("$(P)$(Q):startMove.LNK1","$(P)$(Q):startMove/LNK11") +#! Connector("$(P)$(Q):startMove/LNK1","$(P)$(Q):startMove/LNK12",2640,2460,16777215,"",0) +#! Connector("$(P)$(Q):startMove/LNK11","$(P)$(Q):startMove/LNK1",3580,1945,16777215,"",0) +#! Connector("$(P)$(Q):startMove/LNK12","$(P)$(Q):isSoftMove.VAL",1700,2435,16777215,"",0) +#! Visibility("$(P)$(Q):startMove.DO2",1) +#! Visibility("$(P)$(Q):startMove.DOL3",1) +#! Record("$(P)$(Q):endMove",1960,685,0,1,"$(P)$(Q):endMove") +#! Field("$(P)$(Q):endMove.PROC",16777215,0,"$(P)$(Q):endMove.PROC") +#! Field("$(P)$(Q):endMove.LNK3",16777215,1,"$(P)$(Q):endMove.LNK3") +#! Link("$(P)$(Q):endMove.LNK3","$(P)$(T).READ") +#! Field("$(P)$(Q):endMove.LNK4",16777215,0,"$(P)$(Q):endMove.LNK4") +#! Link("$(P)$(Q):endMove.LNK4","$(P)$(Q):endMove/LNK4") +#! Connector("$(P)$(Q):endMove/LNK4","$(P)$(Q):isSoftMove.VAL",1700,1630,16777215,"",0) +#! Visibility("$(P)$(Q):endMove.DO3",1) +#! Visibility("$(P)$(Q):endMove.DO4",1) +#! Record("$(P)$(Q):dmov",1000,370,0,1,"$(P)$(Q):dmov") +#! Field("$(P)$(Q):dmov.INDV",16777215,1,"$(P)$(Q):dmov.INDV") +#! Field("$(P)$(Q):dmov.D",16777215,1,"$(P)$(Q):dmov.D") +#! Field("$(P)$(Q):dmov.INCV",16777215,1,"$(P)$(Q):dmov.INCV") +#! Field("$(P)$(Q):dmov.C",16777215,1,"$(P)$(Q):dmov.C") +#! Field("$(P)$(Q):dmov.INBV",16777215,1,"$(P)$(Q):dmov.INBV") +#! Field("$(P)$(Q):dmov.B",16777215,1,"$(P)$(Q):dmov.B") +#! Field("$(P)$(Q):dmov.INAV",16777215,1,"$(P)$(Q):dmov.INAV") +#! Field("$(P)$(Q):dmov.A",16777215,1,"$(P)$(Q):dmov.A") +#! Field("$(P)$(Q):dmov.INPA",16777215,1,"$(P)$(Q):dmov.INPA") +#! Field("$(P)$(Q):dmov.INPB",16777215,1,"$(P)$(Q):dmov.INPB") +#! Field("$(P)$(Q):dmov.INPC",16777215,1,"$(P)$(Q):dmov.INPC") +#! Field("$(P)$(Q):dmov.INPD",16777215,1,"$(P)$(Q):dmov.INPD") +#! Field("$(P)$(Q):dmov.INPE",16777215,1,"$(P)$(Q):dmov.INPE") +#! Field("$(P)$(Q):dmov.INPF",16777215,1,"$(P)$(Q):dmov.INPF") +#! Field("$(P)$(Q):dmov.INFV",16777215,1,"$(P)$(Q):dmov.INFV") +#! Field("$(P)$(Q):dmov.F",16777215,1,"$(P)$(Q):dmov.F") +#! Field("$(P)$(Q):dmov.INEV",16777215,1,"$(P)$(Q):dmov.INEV") +#! Field("$(P)$(Q):dmov.E",16777215,1,"$(P)$(Q):dmov.E") +#! Visibility("$(P)$(Q):dmov.DESC",2) +#! Visibility("$(P)$(Q):dmov.INPA",2) +#! Visibility("$(P)$(Q):dmov.INPB",2) +#! Visibility("$(P)$(Q):dmov.INPC",2) +#! Visibility("$(P)$(Q):dmov.INPD",2) +#! Visibility("$(P)$(Q):dmov.INPE",2) +#! Visibility("$(P)$(Q):dmov.INPF",2) +#! Record("$(P)$(Q):done2",1360,600,0,1,"$(P)$(Q):done2") +#! Field("$(P)$(Q):done2.INPA",16777215,0,"$(P)$(Q):done2.INPA") +#! Link("$(P)$(Q):done2.INPA","$(P)$(Q):done1.VAL") +#! Field("$(P)$(Q):done2.INPI",16777215,0,"$(P)$(Q):done2.INPI") +#! Link("$(P)$(Q):done2.INPI","$(P)$(Q):dmov.E") +#! Field("$(P)$(Q):done2.INPJ",16777215,0,"$(P)$(Q):done2.INPJ") +#! Link("$(P)$(Q):done2.INPJ","$(P)$(Q):dmov.INEV") +#! Field("$(P)$(Q):done2.INPK",16777215,0,"$(P)$(Q):done2.INPK") +#! Link("$(P)$(Q):done2.INPK","$(P)$(Q):dmov.F") +#! Field("$(P)$(Q):done2.INPL",16777215,0,"$(P)$(Q):done2.INPL") +#! Link("$(P)$(Q):done2.INPL","$(P)$(Q):dmov.INFV") +#! Field("$(P)$(Q):done2.VAL",16777215,1,"$(P)$(Q):done2.VAL") +#! Field("$(P)$(Q):done2.INPB",16777215,0,"$(P)$(Q):done2.INPB") +#! Link("$(P)$(Q):done2.INPB","$(P)$(Q):done2/INPB2") +#! Connector("$(P)$(Q):done2/INPB","$(P)$(Q):gate.VAL",3880,775,16777215,"",0) +#! Connector("$(P)$(Q):done2/INPB1","$(P)$(Q):done2/INPB",2570,140,16777215,"",0) +#! Connector("$(P)$(Q):done2/INPB2","$(P)$(Q):done2/INPB1",1260,475,16777215,"",0) +#! Visibility("$(P)$(Q):done2.CALC",2) +#! Visibility("$(P)$(Q):done2.INPA",2) +#! Visibility("$(P)$(Q):done2.INPI",2) +#! Visibility("$(P)$(Q):done2.INPJ",2) +#! Visibility("$(P)$(Q):done2.INPK",2) +#! Visibility("$(P)$(Q):done2.INPL",2) +#! Visibility("$(P)$(Q):done2.OUT",2) +#! Record("$(P)$(Q):done1",1360,370,0,1,"$(P)$(Q):done1") +#! Field("$(P)$(Q):done1.INPA",16777215,0,"$(P)$(Q):done1.INPA") +#! Link("$(P)$(Q):done1.INPA","$(P)$(Q):dmov.A") +#! Field("$(P)$(Q):done1.INPB",16777215,0,"$(P)$(Q):done1.INPB") +#! Link("$(P)$(Q):done1.INPB","$(P)$(Q):dmov.INAV") +#! Field("$(P)$(Q):done1.INPC",16777215,0,"$(P)$(Q):done1.INPC") +#! Link("$(P)$(Q):done1.INPC","$(P)$(Q):dmov.B") +#! Field("$(P)$(Q):done1.INPD",16777215,0,"$(P)$(Q):done1.INPD") +#! Link("$(P)$(Q):done1.INPD","$(P)$(Q):dmov.INBV") +#! Field("$(P)$(Q):done1.INPE",16777215,0,"$(P)$(Q):done1.INPE") +#! Link("$(P)$(Q):done1.INPE","$(P)$(Q):dmov.C") +#! Field("$(P)$(Q):done1.INPF",16777215,0,"$(P)$(Q):done1.INPF") +#! Link("$(P)$(Q):done1.INPF","$(P)$(Q):dmov.INCV") +#! Field("$(P)$(Q):done1.INPG",16777215,0,"$(P)$(Q):done1.INPG") +#! Link("$(P)$(Q):done1.INPG","$(P)$(Q):dmov.D") +#! Field("$(P)$(Q):done1.INPH",16777215,0,"$(P)$(Q):done1.INPH") +#! Link("$(P)$(Q):done1.INPH","$(P)$(Q):dmov.INDV") +#! Field("$(P)$(Q):done1.VAL",16777215,0,"$(P)$(Q):done1.VAL") +#! Visibility("$(P)$(Q):done1.CALC",2) +#! Visibility("$(P)$(Q):done1.INPA",2) +#! Visibility("$(P)$(Q):done1.INPB",2) +#! Visibility("$(P)$(Q):done1.INPC",2) +#! Visibility("$(P)$(Q):done1.INPD",2) +#! Visibility("$(P)$(Q):done1.INPE",2) +#! Visibility("$(P)$(Q):done1.INPF",2) +#! Visibility("$(P)$(Q):done1.INPG",2) +#! Visibility("$(P)$(Q):done1.INPH",2) +#! Record("$(P)$(Q):done",1660,565,0,1,"$(P)$(Q):done") +#! Field("$(P)$(Q):done.INPA",16777215,0,"$(P)$(Q):done.INPA") +#! Link("$(P)$(Q):done.INPA","$(P)$(Q):done2.VAL") +#! Field("$(P)$(Q):done.VAL",16777215,1,"$(P)$(Q):done.VAL") +#! Field("$(P)$(Q):done.OUT",16777215,1,"$(P)$(Q):done.OUT") +#! Link("$(P)$(Q):done.OUT","$(P)$(Q):endMove.PROC") +#! Visibility("$(P)$(Q):done.OOPT",1) +#! Record("$(P)$(Q):lastMotor",1280,700,0,1,"$(P)$(Q):lastMotor") +#! Field("$(P)$(Q):lastMotor.INPA",16777215,0,"$(P)$(Q):lastMotor.INPA") +#! Link("$(P)$(Q):lastMotor.INPA","$(P)$(Q):dmov.INAV") +#! Field("$(P)$(Q):lastMotor.INPB",16777215,0,"$(P)$(Q):lastMotor.INPB") +#! Link("$(P)$(Q):lastMotor.INPB","$(P)$(Q):dmov.INBV") +#! Field("$(P)$(Q):lastMotor.INPC",16777215,0,"$(P)$(Q):lastMotor.INPC") +#! Link("$(P)$(Q):lastMotor.INPC","$(P)$(Q):dmov.INCV") +#! Field("$(P)$(Q):lastMotor.INPD",16777215,0,"$(P)$(Q):lastMotor.INPD") +#! Link("$(P)$(Q):lastMotor.INPD","$(P)$(Q):dmov.INDV") +#! Field("$(P)$(Q):lastMotor.INPE",16777215,0,"$(P)$(Q):lastMotor.INPE") +#! Link("$(P)$(Q):lastMotor.INPE","$(P)$(Q):dmov.INEV") +#! Field("$(P)$(Q):lastMotor.INPF",16777215,0,"$(P)$(Q):lastMotor.INPF") +#! Link("$(P)$(Q):lastMotor.INPF","$(P)$(Q):dmov.INFV") +#! Field("$(P)$(Q):lastMotor.INAA",16777215,0,"$(P)$(Q):lastMotor.INAA") +#! Link("$(P)$(Q):lastMotor.INAA","$(P)$(Q):dmov.INPA") +#! Field("$(P)$(Q):lastMotor.INBB",16777215,0,"$(P)$(Q):lastMotor.INBB") +#! Link("$(P)$(Q):lastMotor.INBB","$(P)$(Q):dmov.INPB") +#! Field("$(P)$(Q):lastMotor.INCC",16777215,0,"$(P)$(Q):lastMotor.INCC") +#! Link("$(P)$(Q):lastMotor.INCC","$(P)$(Q):dmov.INPC") +#! Field("$(P)$(Q):lastMotor.INDD",16777215,0,"$(P)$(Q):lastMotor.INDD") +#! Link("$(P)$(Q):lastMotor.INDD","$(P)$(Q):dmov.INPD") +#! Field("$(P)$(Q):lastMotor.INEE",16777215,0,"$(P)$(Q):lastMotor.INEE") +#! Link("$(P)$(Q):lastMotor.INEE","$(P)$(Q):dmov.INPE") +#! Field("$(P)$(Q):lastMotor.INFF",16777215,0,"$(P)$(Q):lastMotor.INFF") +#! Link("$(P)$(Q):lastMotor.INFF","$(P)$(Q):dmov.INPF") +#! Field("$(P)$(Q):lastMotor.OUT",16777215,1,"$(P)$(Q):lastMotor.OUT") +#! Record("$(P)$(Q):closeGate",3560,1220,0,1,"$(P)$(Q):closeGate") +#! Field("$(P)$(Q):closeGate.OUT",16777215,1,"$(P)$(Q):closeGate.OUT") +#! Link("$(P)$(Q):closeGate.OUT","$(P)$(Q):gate.VAL") +#! Record("$(P)$(Q):gate",3620,1320,0,1,"$(P)$(Q):gate") +#! Field("$(P)$(Q):gate.VAL",16777215,1,"$(P)$(Q):gate.VAL") +#! TextBox(TB0,1280,900,1480,940,0,"Dialog",14,1,16777215,"Don't edit INAA, etc. links.",null) +#! TextBox(TB6,2680,500,2860,600,0,"Dialog",12,1,16777215,"standard table sizes:\ntype LX LZ\n-----------------------\noptical table 510 1080\ndiffractometer table 525 1225\n",null) +#! TextBox(TB5,3020,400,3220,440,0,"Dialog",36,1,16777215,"Geometry",null) +#! TextBox(TB4,2000,360,2220,420,0,"Dialog",36,1,16777215,"Sync, init",null) +#! TextBox(TB3,1040,1300,1140,1340,0,"Dialog",36,1,16777215,"Stop\n",null) +#! TextBox(TB2,2280,580,2540,620,0,"Dialog",36,1,16777215,"Periodic read",null) +#! TextBox(TB1,840,260,1240,320,0,"Dialog",36,1,16777215,"Check motors done",null) +#! TextBox(TB7,3560,1220,3720,1260,0,"Dialog",12,1,16777215,"INPA link written by\n$(P)$(Q):lastMotor",null) +#! Record("$(P)$(Q):setValuesWritten",3040,860,0,1,"$(P)$(Q):setValuesWritten") +#! Field("$(P)$(Q):setValuesWritten.PROC",16777215,0,"$(P)$(Q):setValuesWritten.PROC") +#! Field("$(P)$(Q):setValuesWritten.OUT",16777215,1,"$(P)$(Q):setValuesWritten.OUT") +#! Link("$(P)$(Q):setValuesWritten.OUT","$(P)$(Q):valuesWritten.VAL") +#! Record("$(P)$(Q):valuesWritten",3060,990,0,1,"$(P)$(Q):valuesWritten") +#! Field("$(P)$(Q):valuesWritten.VAL",16777215,1,"$(P)$(Q):valuesWritten.VAL") +#! Record("$(P)$(Q):ifValuesWritten",3080,1040,0,0,"$(P)$(Q):ifValuesWritten") +#! Field("$(P)$(Q):ifValuesWritten.SDIS",16777215,0,"$(P)$(Q):ifValuesWritten.SDIS") +#! Link("$(P)$(Q):ifValuesWritten.SDIS","$(P)$(Q):valuesWritten.VAL") +#! Field("$(P)$(Q):ifValuesWritten.OUT",16777215,1,"$(P)$(Q):ifValuesWritten.OUT") +#! Link("$(P)$(Q):ifValuesWritten.OUT","$(P)$(Q):ifValuesWritten/OUT") +#! Connector("$(P)$(Q):ifValuesWritten/OUT","$(P)$(Q):writeMotors.PROC",3300,1230,16777215,"",0) +#! Visibility("$(P)$(Q):ifValuesWritten.DISV",1) +#! Record("$(P)$(Q):syncMotors",1980,390,0,1,"$(P)$(Q):syncMotors") +#! Field("$(P)$(Q):syncMotors.OUTA",13369548,1,"$(P)$(Q):syncMotors.OUTA") +#! Link("$(P)$(Q):syncMotors.OUTA","$(P)$(Q):syncFan/OUTA") +#! Field("$(P)$(Q):syncMotors.OUTB",13369548,1,"$(P)$(Q):syncMotors.OUTB") +#! Link("$(P)$(Q):syncMotors.OUTB","$(P)$(Q):syncFan/OUTB") +#! Field("$(P)$(Q):syncMotors.OUTC",13369548,1,"$(P)$(Q):syncMotors.OUTC") +#! Link("$(P)$(Q):syncMotors.OUTC","$(P)$(Q):syncFan/OUTC") +#! Field("$(P)$(Q):syncMotors.OUTD",13369548,1,"$(P)$(Q):syncMotors.OUTD") +#! Link("$(P)$(Q):syncMotors.OUTD","$(P)$(Q):syncFan/OUTD") +#! Field("$(P)$(Q):syncMotors.OUTE",13369548,1,"$(P)$(Q):syncMotors.OUTE") +#! Link("$(P)$(Q):syncMotors.OUTE","$(P)$(Q):syncFan/OUTE") +#! Field("$(P)$(Q):syncMotors.OUTF",13369548,1,"$(P)$(Q):syncMotors.OUTF") +#! Link("$(P)$(Q):syncMotors.OUTF","$(P)$(Q):syncFan/OUTF") +#! Connector("$(P)$(Q):syncFan/OUTA","$(P)$(Q):x.SYNC",2220,810,13369548,"",0) +#! Connector("$(P)$(Q):syncFan/OUTB","$(P)$(Q):y.SYNC",2220,940,13369548,"",0) +#! Connector("$(P)$(Q):syncFan/OUTC","$(P)$(Q):z.SYNC",2220,1070,13369548,"",0) +#! Connector("$(P)$(Q):syncFan/OUTD","$(P)$(Q):ax.SYNC",2220,1200,13369548,"",0) +#! Connector("$(P)$(Q):syncFan/OUTE","$(P)$(Q):ay.SYNC",2220,1330,13369548,"",0) +#! Connector("$(P)$(Q):syncFan/OUTF","$(P)$(Q):az.SYNC",2220,1460,13369548,"",0) +#! Field("$(P)$(Q):syncMotors.VAL",16777215,0,"$(P)$(Q):syncMotors.VAL") +#! Record("$(P)$(Q):sync",1680,380,0,1,"$(P)$(Q):sync") +#! Field("$(P)$(Q):sync.OUTA",16777215,1,"$(P)$(Q):sync.OUTA") +#! Link("$(P)$(Q):sync.OUTA","$(P)$(Q):sync/OUTA") +#! Field("$(P)$(Q):sync.OUTB",16777215,1,"$(P)$(Q):sync.OUTB") +#! Link("$(P)$(Q):sync.OUTB","$(P)$(Q):syncMotors.VAL") +#! Connector("$(P)$(Q):sync/OUTA","$(P)$(T).SYNC",2560,640,16777215,"",0) +#! Record("$(P)$(Q):init",1680,260,0,1,"$(P)$(Q):init") +#! Field("$(P)$(Q):init.OUTA",16777215,1,"$(P)$(Q):init.OUTA") +#! Link("$(P)$(Q):init.OUTA","$(P)$(Q):init/OUTA") +#! Field("$(P)$(Q):init.OUTB",16777215,1,"$(P)$(Q):init.OUTB") +#! Link("$(P)$(Q):init.OUTB","$(P)$(Q):syncMotors.VAL") +#! Connector("$(P)$(Q):init/OUTA","$(P)$(T).INIT",2580,570,16777215,"",0) +#! Record("$(P)$(Q):zero",1680,140,0,1,"$(P)$(Q):zero") +#! Field("$(P)$(Q):zero.OUTA",16777215,1,"$(P)$(Q):zero.OUTA") +#! Link("$(P)$(Q):zero.OUTA","$(P)$(Q):zero/OUTA") +#! Field("$(P)$(Q):zero.OUTB",16777215,1,"$(P)$(Q):zero.OUTB") +#! Link("$(P)$(Q):zero.OUTB","$(P)$(Q):syncMotors.VAL") +#! Connector("$(P)$(Q):zero/OUTA","$(P)$(T).ZERO",2600,500,16777215,"",0) diff --git a/opticsApp/Db/table_soft_settings.req b/opticsApp/Db/table_soft_settings.req new file mode 100644 index 0000000..57171f4 --- /dev/null +++ b/opticsApp/Db/table_soft_settings.req @@ -0,0 +1,109 @@ +# FILE... table_settings.req +# USAGE.. table.db fields autosave'd. +$(P)$(T).DESC +$(P)$(T).YANG +$(P)$(T).LX +$(P)$(T).LZ +$(P)$(T).SX +$(P)$(T).SY +$(P)$(T).SZ +$(P)$(T).RX +$(P)$(T).RY +$(P)$(T).RZ +$(P)$(T).LEGU +$(P)$(T).AUNIT +$(P)$(T).PREC +$(P)$(T).X0 +$(P)$(T).Y0 +$(P)$(T).Z0 +$(P)$(T).AX0 +$(P)$(T).AY0 +$(P)$(T).AZ0 +$(P)$(T).UHX +$(P)$(T).ULX +$(P)$(T).UHY +$(P)$(T).ULY +$(P)$(T).UHZ +$(P)$(T).ULZ +$(P)$(T).UHAX +$(P)$(T).ULAX +$(P)$(T).UHAY +$(P)$(T).ULAY +$(P)$(T).UHAZ +$(P)$(T).ULAZ +$(P)$(T).GEOM +$(P)$(Q):x.TWV +$(P)$(Q):y.TWV +$(P)$(Q):z.TWV +$(P)$(Q):ax.TWV +$(P)$(Q):ay.TWV +$(P)$(Q):az.TWV +$(P)$(Q):x.DESC +$(P)$(Q):y.DESC +$(P)$(Q):z.DESC +$(P)$(Q):ax.DESC +$(P)$(Q):ay.DESC +$(P)$(Q):az.DESC +$(P)$(Q):x.EGU +$(P)$(Q):y.EGU +$(P)$(Q):z.EGU +$(P)$(Q):ax.EGU +$(P)$(Q):ay.EGU +$(P)$(Q):az.EGU +$(P)$(Q):x.MRES +$(P)$(Q):y.MRES +$(P)$(Q):z.MRES +$(P)$(Q):ax.MRES +$(P)$(Q):ay.MRES +$(P)$(Q):az.MRES +$(P)$(Q)fp0Name.VAL +$(P)$(Q)fp0.DO2 +$(P)$(Q)fp0.DO3 +$(P)$(Q)fp0.DO4 +$(P)$(Q)fp1Name.VAL +$(P)$(Q)fp1.DO2 +$(P)$(Q)fp1.DO3 +$(P)$(Q)fp1.DO4 +$(P)$(Q)fp2Name.VAL +$(P)$(Q)fp2.DO2 +$(P)$(Q)fp2.DO3 +$(P)$(Q)fp2.DO4 +$(P)$(Q)fp3Name.VAL +$(P)$(Q)fp3.DO2 +$(P)$(Q)fp3.DO3 +$(P)$(Q)fp3.DO4 +$(P)$(Q)fp4Name.VAL +$(P)$(Q)fp4.DO2 +$(P)$(Q)fp4.DO3 +$(P)$(Q)fp4.DO4 +$(P)$(Q)fp5Name.VAL +$(P)$(Q)fp5.DO2 +$(P)$(Q)fp5.DO3 +$(P)$(Q)fp5.DO4 +$(P)$(Q)fp6Name.VAL +$(P)$(Q)fp6.DO2 +$(P)$(Q)fp6.DO3 +$(P)$(Q)fp6.DO4 +$(P)$(Q)fp7Name.VAL +$(P)$(Q)fp7.DO2 +$(P)$(Q)fp7.DO3 +$(P)$(Q)fp7.DO4 +$(P)$(Q)fp8Name.VAL +$(P)$(Q)fp8.DO2 +$(P)$(Q)fp8.DO3 +$(P)$(Q)fp8.DO4 +$(P)$(Q)fp9Name.VAL +$(P)$(Q)fp9.DO2 +$(P)$(Q)fp9.DO3 +$(P)$(Q)fp9.DO4 +$(P)$(Q)fpSelect.VAL +$(P)$(Q)fpSelect.ZRST +$(P)$(Q)fpSelect.ONST +$(P)$(Q)fpSelect.TWST +$(P)$(Q)fpSelect.THST +$(P)$(Q)fpSelect.FRST +$(P)$(Q)fpSelect.FVST +$(P)$(Q)fpSelect.SXST +$(P)$(Q)fpSelect.SVST +$(P)$(Q)fpSelect.EIST +$(P)$(Q)fpSelect.NIST diff --git a/opticsApp/Db/transform2D.db b/opticsApp/Db/transform2D.db new file mode 100644 index 0000000..dac58d4 --- /dev/null +++ b/opticsApp/Db/transform2D.db @@ -0,0 +1,87 @@ +# This database implements a generic transformation where motors aren't +# necessarily orthogonal or parallel. This is most useful for NSLS-II +# style slits where a horiontal and diagonal stage are used to produce +# x, y motions. +# +# +# Given two real motors $(P)$(M1DRV) and $(P)$(M1DRV), as (summed) +# components of the two real motors. The transformation is as follows: +# +# HOR = (( $(P)$(M1DRV) * $(P)$(HOR)C1 ) + ( $(P)$(M2DRV) * $(P)$(HOR)C2 )) +# VERT = (( $(P)$(M1DRV) * $(P)$(VERT)C1 ) + ( $(P)$(M2DRV) * $(P)$(VERT)C2 )) +# +# Where: +# $(P)$(HOR)C1 = cos(theta_1) +# $(P)$(HOR)C2 = cos(theta_2) +# $(P)$(VERT)C1 = sin(theta_1) +# $(P)$(VERT)C2 = sin(theta_2) +# and +# theta_1 = angle between motor 1 axis and x-axis +# theta_2 = angle between motor 2 axis and x-axis +# +# These two records are where the soft motors write their output. +# They are needed because writing to a transform record field does not +# cause the record to process? +# We use forward links to the transform record (rather than making the INPA and +# INPB fields of the transform record CP) so that the scan record waits +# for the motors to move. +grecord(ao,"$(P)$(HOR)DVAL") { + field(FLNK, "$(P)$(T)Drive") + field(PREC, "8") +} +grecord(ao,"$(P)$(VERT)DVAL") { + field(FLNK, "$(P)$(T)Drive") + field(PREC, "8") +} + +# This record is processed whenever the soft motor records HOR or VERT write +# new values to the DVAL records above. +# Note: the INPA and INPB fields get their values directly from the .DVAL +# fields of the soft motor records, rather than from the DVAL record above. +# This is because the .DVAL fields are always correct, while the DVAL records +# do not get updated when the soft motor .DVAL fields are modified in SET mode. +grecord(transform,"$(P)$(T)Drive") { + field(INPA,"$(P)$(HOR).DVAL NPP NMS") + field(INPB,"$(P)$(VERT).DVAL NPP NMS") + field(INPC,"$(P)$(HOR)C1.VAL NPP NMS") + field(INPD,"$(P)$(HOR)C2.VAL NPP NMS") + field(INPE,"$(P)$(VERT)C1.VAL NPP NMS") + field(INPF,"$(P)$(VERT)C2.VAL NPP NMS") + field(CLCG,"(A*F-B*D)/(C*F-D*E)") + field(OUTG,"$(P)$(M1DRV) PP MS") + field(CLCH,"(A*E-B*C)/(D*E-C*F)") + field(OUTH,"$(P)$(M2DRV) PP MS") + field(PREC,"$(PREC)") +} + +# This record calculates the readback positions of the soft motors. It +# processes whenever the readbacks of the real motors change, or whenever +# one of the the geometry constants changes. +grecord(transform,"$(P)$(T)Readback") { + field(INPA,"$(P)$(M1RBV) CP MS") + field(INPB,"$(P)$(M2RBV) CP MS") + field(INPC,"$(P)$(HOR)C1.VAL CP NMS") + field(INPD,"$(P)$(HOR)C2.VAL CP NMS") + field(INPE,"$(P)$(VERT)C1.VAL CP NMS") + field(INPF,"$(P)$(VERT)C2.VAL CP NMS") + field(CLCG,"A*C+B*D") + field(CLCH,"A*E+B*F") + field(IVLA,"Do Nothing") + field(PREC,"$(PREC)") +} + +# This record processes if either of the soft motor STOP fields is set. +grecord(dfanout,"$(P)$(T)Stop") { + field(VAL,"1") + field(OUTA,"$(P)$(M1STOP) PP MS") + field(OUTB,"$(P)$(M2STOP) PP MS") +} + +# This record computes whether the compound motor is done moving. +# It goes to 1 when both real motors are done moving. +# positions of the real motors. +grecord(calcout,"$(P)$(T)Done") { + field(INPA,"$(P)$(M1DONE) CP MS") + field(INPB,"$(P)$(M2DONE) CP MS") + field(CALC,"A & B") +} diff --git a/opticsApp/Db/transformVMAS.db b/opticsApp/Db/transformVMAS.db new file mode 100644 index 0000000..dcf3492 --- /dev/null +++ b/opticsApp/Db/transformVMAS.db @@ -0,0 +1,69 @@ +# This database implements the transformation necessary for variable +# mask aperture slits +# +# The horizontal and vertical slit sizes are each controlled by a single +# motor (yaw and pitch, respectively) +# +# +# size = $(P)$(VMAS)C1 - $(P)$(VMAS)C2 * $(P)$(M1DRV) +# +# Where: +# $(P)$(VMAS)C1 = horizontal aperture size when mask angle is 0 degrees +# $(P)$(VMAS)C2 = ratio of edge separation to motor lever arm + +# +# These two records are where the soft motors write their output. +# They are needed because writing to a transform record field does not +# cause the record to process? +# We use forward links to the transform record (rather than making the INPA +# field of the transform record CP) so that the scan record waits +# for the motors to move. +grecord(ao,"$(P)$(VMAS)DVAL") { + field(FLNK, "$(P)$(T)Drive") + field(PREC, "8") +} + +# This record is processed whenever the soft motor record VMAS writes +# new values to the DVAL records above. +# Note: the INPA field get their values directly from the .DVAL +# fields of the soft motor records, rather than from the DVAL record above. +# This is because the .DVAL fields are always correct, while the DVAL records +# do not get updated when the soft motor .DVAL fields are modified in SET mode. +grecord(transform,"$(P)$(T)Drive") { + field(INPA,"$(P)$(VMAS).DVAL NPP NMS") + field(INPB,"$(P)$(VMAS)C1.VAL NPP NMS") + field(INPC,"$(P)$(VMAS)C2.VAL NPP NMS") +# field(INPD,"$(P)$(VMAS)C3.VAL NPP NMS") +# field(INPE,"$(P)$(VMAS)C4.VAL NPP NMS") + field(CLCG,"(B - A) / C") + field(OUTG,"$(P)$(M1DRV) PP MS") + field(PREC,"$(PREC)") +} + +# This record calculates the readback positions of the soft motors. It +# processes whenever the readbacks of the real motors change, or whenever +# one of the the geometry constants changes. +grecord(transform,"$(P)$(T)Readback") { + field(INPA,"$(P)$(M1RBV) CP MS") + field(INPB,"$(P)$(VMAS)C1.VAL CP NMS") + field(INPC,"$(P)$(VMAS)C2.VAL CP NMS") +# field(INPD,"$(P)$(VMAS)C3.VAL NPP NMS") +# field(INPE,"$(P)$(VMAS)C4.VAL NPP NMS") + field(CLCG,"B - C * A") + field(IVLA,"Do Nothing") + field(PREC,"$(PREC)") +} + +# This record processes if either of the soft motor STOP fields is set. +grecord(dfanout,"$(P)$(T)Stop") { + field(VAL,"1") + field(OUTA,"$(P)$(M1STOP) PP MS") +} + +# This record computes whether the compound motor is done moving. +# It goes to 1 when both real motors are done moving. +# positions of the real motors. +grecord(calcout,"$(P)$(T)Done") { + field(INPA,"$(P)$(M1DONE) CP MS") + field(CALC,"A") +} diff --git a/opticsApp/Db/xia_slit.req b/opticsApp/Db/xia_slit_settings.req similarity index 79% rename from opticsApp/Db/xia_slit.req rename to opticsApp/Db/xia_slit_settings.req index 01c7477..196fe64 100644 --- a/opticsApp/Db/xia_slit.req +++ b/opticsApp/Db/xia_slit_settings.req @@ -1,3 +1,6 @@ +# FILE... xia_slit_settings.req +# USAGE... xia_slit.db fields to autosave + $(P)$(HSC)hID $(P)$(HSC)vID $(P)$(HSC)hOrient diff --git a/opticsApp/Makefile b/opticsApp/Makefile index 10e0126..e9d4a5f 100644 --- a/opticsApp/Makefile +++ b/opticsApp/Makefile @@ -4,5 +4,7 @@ DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *src*)) DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *Src*)) DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *db*)) DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *Db*)) +DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *op*)) +DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *iocsh*)) include $(TOP)/configure/RULES_DIRS diff --git a/opticsApp/iocsh/EXAMPLE_filterDrive.substitutions b/opticsApp/iocsh/EXAMPLE_filterDrive.substitutions new file mode 100644 index 0000000..4cc204e --- /dev/null +++ b/opticsApp/iocsh/EXAMPLE_filterDrive.substitutions @@ -0,0 +1,20 @@ +file "$(OPTICS)/opticsApp/Db/filterBladeNoSensor.db" { + pattern + {N, DESC, OUT OUT_STRING, IN_STRING} + {1, "Filter $(N)", "$(P)userTran1.A", "Out", "In"} + {2, "Filter $(N)", "$(P)userTran1.B", "Out", "In"} + {3, "Filter $(N)", "$(P)userTran1.C", "Out", "In"} + {4, "Filter $(N)", "$(P)userTran1.D", "Out", "In"} + {5, "Filter $(N)", "$(P)userTran1.E", "Out", "In"} + {6, "Filter $(N)", "$(P)userTran1.F", "Out", "In"} + {7, "Filter $(N)", "$(P)userTran1.G", "Out", "In"} + {8, "Filter $(N)", "$(P)userTran1.H", "Out", "In"} + {9, "Filter $(N)", "$(P)userTran1.I", "Out", "In"} + {10, "Filter $(N)", "$(P)userTran1.J", "Out", "In"} + {11, "Filter $(N)", "$(P)userTran1.K", "Out", "In"} + {12, "Filter $(N)", "$(P)userTran1.L", "Out", "In"} + {13, "Filter $(N)", "$(P)userTran1.M", "Out", "In"} + {14, "Filter $(N)", "$(P)userTran1.N", "Out", "In"} + {15, "Filter $(N)", "$(P)userTran1.O", "Out", "In"} + {16, "Filter $(N)", "$(P)userTran1.P", "Out", "In"} +} diff --git a/opticsApp/iocsh/EXAMPLE_orient.substitutions b/opticsApp/iocsh/EXAMPLE_orient.substitutions new file mode 100644 index 0000000..653cb8c --- /dev/null +++ b/opticsApp/iocsh/EXAMPLE_orient.substitutions @@ -0,0 +1,15 @@ +file "$(OPTICS)/opticsApp/Db/orient_xtals.db" +{ +pattern +{N, xtal, a, b, c, alpha, beta, gamma} +{1, Silicon, 5.431, 5.431, 5.431, 90, 90, 90} +{2, "Beryllium hcp", 2.2858, 2.2858, 3.5843, 90, 90, 120} +{3, VO2, 5.743, 4.517, 5.375, 90, 122.6, 90} +{4, undefined, 1, 1, 1, 90, 90, 90} +{5, undefined, 1, 1, 1, 90, 90, 90} +{6, undefined, 1, 1, 1, 90, 90, 90} +{7, undefined, 1, 1, 1, 90, 90, 90} +{8, undefined, 1, 1, 1, 90, 90, 90} +{9, undefined, 1, 1, 1, 90, 90, 90} +{10, undefined, 1, 1, 1, 90, 90, 90} +} diff --git a/opticsApp/iocsh/EXAMPLE_vmas.substitutions b/opticsApp/iocsh/EXAMPLE_vmas.substitutions new file mode 100644 index 0000000..810fedf --- /dev/null +++ b/opticsApp/iocsh/EXAMPLE_vmas.substitutions @@ -0,0 +1,41 @@ +# The new slits (variable mask aperture slits) in the APS Upgrade +# use a combination of stages to create both the horizontal +# and vertical center position of the aperture. Pitch and yaw stages +# determine aperture size. + +# transform2D handles the center position +# transformVMAS turns the pitch and yaw stages into vertical and +# horizontal sizes, respectively +# +# hSize - horizontal size pseudomotor +# vSize - vertical size pseudomotor +# hCenter - horizontal position pseudomotor +# vCenter - vertical postion pseudomotor +# + + +file "$(MOTOR)/motorApp/Db/pseudoMotor.db" +{ +pattern +{M, DINP, OUT, RDBL, STOO, DESC, EGU, DIR, VELO, VBAS, ACCL, BDST, BVEL, BACC, MRES, RRES, PREC, DHLM, DLLM} +{hSize, "$(P)size1Done NPP NMS", "$(P)hSizeDVAL.VAL PP MS", "$(P)size1Readback.G NPP NMS", "$(P)size1Stop PP MS", "Slits hor size", mm, Pos, 1, .1, .1, 0, 1, .1, .1, 1.0, 6, 100, -100} +{vSize, "$(P)size2Done NPP NMS", "$(P)vSizeDVAL.VAL PP MS", "$(P)size2Readback.G NPP NMS", "$(P)size2Stop PP MS", "Slits vert size", mm, Pos, 1, .1, .1, 0, 1, .1, .1, 1.0, 6, 100, -100} +{hCenter, "$(P)centerDone NPP NMS", "$(P)hCenterDVAL.VAL PP MS", "$(P)centerReadback.G NPP NMS", "$(P)centerStop PP MS", "Slits hor center", mm, Pos, 1, .1, .1, 0, 1, .1, .1, 1.0, 6, 100, -100} +{vCenter, "$(P)centerDone NPP NMS", "$(P)vCenterDVAL.VAL PP MS", "$(P)centerReadback.H NPP NMS", "$(P)centerStop PP MS", "Slits vert center", mm, Pos, 1, .1, .1, 0, 1, .1, .1, 1.0, 6, 100, -100} + + +file "$(TOP)/db/transform2D.db" +{ +pattern +{T, HOR, VERT, M1DRV, M1RBV, M2DRV, M2RBV, M1STOP, M1DONE, M2STOP, M2DONE, PREC} +{center, hCenter, vCenter, "$(HOR).VAL", "$(HOR).RBV", "$(DIA).VAL", "$(DIA).RBV", "$(HOR).STOP", "$(HOR).DMOV", "$(DIA).STOP", "$(DIA).DMOV", 8} +} + +file "$(TOP)/db/transformVMAS.db" +{ +pattern +{T, VMAS, M1DRV, M1RBV, M1STOP, M1DONE, PREC} +{size1, hSize, "$(YAW).VAL", "$(YAW).RBV", "$(YAW).STOP", "$(YAW).DMOV", 8} +{size2, vSize, "$(PITCH).VAL", "$(PITCH).RBV", "$(PITCH).STOP", "$(PITCH).DMOV", 8} +} + diff --git a/opticsApp/iocsh/Huber_xia.iocsh b/opticsApp/iocsh/Huber_xia.iocsh new file mode 100644 index 0000000..203bb8a --- /dev/null +++ b/opticsApp/iocsh/Huber_xia.iocsh @@ -0,0 +1,14 @@ +# ### Huber_xia.iocsh ### + +#- ################################################### +#- PREFIX - IOC Prefix +#- INSTANCE - Instance +#- ASYN_REC - Asyn record for communication +#- OPTICS - Location of optics module +#- ################################################### + +#- X-ray Instrumentation Associates Huber Slit Controller +#- supported by a customized version of the SNL program written by Pete Jemian +#- (Uses asyn record loaded separately) +dbLoadRecords("$(OPTICS)/opticsApp/Db/xia_slit.db", "P=$(PREFIX), HSC=$(INSTANCE):") +doAfterIocInit("seq &xia_slit, 'name=$(INSTANCE), P=$(PREFIX), HSC=$(INSTANCE):, S=$(ASYN_REC)'") diff --git a/opticsApp/iocsh/Makefile b/opticsApp/iocsh/Makefile new file mode 100644 index 0000000..cc56704 --- /dev/null +++ b/opticsApp/iocsh/Makefile @@ -0,0 +1,9 @@ +TOP = ../.. +include $(TOP)/configure/CONFIG + +# Add example substitutions + +IOCSH += EXAMPLE_filterDrive.substitutions +IOCSH += EXAMPLE_orient.substitutions + +include $(TOP)/configure/RULES diff --git a/opticsApp/iocsh/XIA_shutter.iocsh b/opticsApp/iocsh/XIA_shutter.iocsh new file mode 100644 index 0000000..d817572 --- /dev/null +++ b/opticsApp/iocsh/XIA_shutter.iocsh @@ -0,0 +1,19 @@ +# ### XIA_shutter.iocsh ### + +#- ################################################### +#- PREFIX - IOC Prefix +#- INSTANCE - Instance Prefix +#- ADDRESS - PFCU Address +#- PORT - Serial port name +#- IP - Location of IP module +#- OPTICS - Location of OPTICS module +#- ################################################### + +#- XIA PFCU Shutter +iocshLoad("$(IP)/iocsh/setSerialParams.iocsh", "PORT=$(PORT), BAUD=9600, BITS=8, STOP=1, PARITY=none") + +asynOctetSetInputEos( "$(PORT)", -1, "\r") +asynOctetSetOutputEos("$(PORT)", -1, "\r") + +dbLoadRecords("$(OPTICS)/opticsApp/Db/XIA_shutter.db", "P=$(PREFIX),S=$(INSTANCE),PORT=$(PORT),ADDRESS=$(ADDRESS)") + diff --git a/opticsApp/iocsh/filterDrive.iocsh b/opticsApp/iocsh/filterDrive.iocsh new file mode 100644 index 0000000..76b607b --- /dev/null +++ b/opticsApp/iocsh/filterDrive.iocsh @@ -0,0 +1,17 @@ +# ### filterDrive.iocsh ### + +#- ################################################### +#- PREFIX - IOC Prefix +#- INSTANCE - Instance Prefix +#- KEV - Name of PV channel giving beam energy in keV. +#- NUM_FILTERS - Number of filter records loaded in substitutions file +#- SUB - Optional: Filter settings substitutions file (filterBladeNoSensor.db) +#- Macros P and R will be set automatically +#- Default: $(OPTICS)/iocsh/EXAMPLE_filterDrive.substitutions +#- OPTICS - Location of optics module +#- ################################################### + + +dbLoadTemplate("$(SUB=$(OPTICS)/iocsh/EXAMPLE_filterDrive.substitutions)", "P=$(PREFIX), R=$(INSTANCE):") +dbLoadRecords("$(OPTICS)/opticsApp/Db/filterDrive.db", "P=$(PREFIX), R=$(INSTANCE):, DESC=Filters, KEV=$(KEV)") +doAfterIocInit("seq filterDrive,'NAME=$(INSTANCE),P=$(PREFIX),R=$(INSTANCE):,NUM_FILTERS=$(NUM_FILTERS)'") diff --git a/opticsApp/iocsh/flexCombinedMotion.iocsh b/opticsApp/iocsh/flexCombinedMotion.iocsh new file mode 100644 index 0000000..bbeabd8 --- /dev/null +++ b/opticsApp/iocsh/flexCombinedMotion.iocsh @@ -0,0 +1,38 @@ +# ### flexCombinedMotion.iocsh ### + +#- ################################################### +#- P - IOC Prefix +#- C - Cap sensor name (cap1) +#- V - Cap sensor voltage PV (PREFIX:LJT8:1:Ai0) +#- UMV - Cap sensor microns per volt (32.5) +#- OFF - Optional: Cap sensor voltage offset +#- Default: 0.0 +#- +#- PREC - Optional: Cap Sensor precision +#- Default: 5 +#- +#- EGU - Optional: Cap Sensor and cap sensor motor EGU +#- Default: um +#- +#- M - Cap sensor motor name (m1) +#- DESC - Optional: Cap sensor motor description +#- Default: "cap motor" +#- +#- LLM - Fine motor lower limit (in EGU) +#- HOME - Fine motor parked position (in EGU) +#- HLM - Fine motor high limit (in EGU) +#- +#- FM - Fine motor name (pi:c0:m1) +#- CM - Coarse motor name (nf:c0:m1) +#- +#- ################################################### + +### APS flexure combined motion support ### +#- +dbLoadRecords("$(OPTICS)/db/flexCapSensor.db","P=$(P),C=$(C),V=$(V),UMV=$(UMV),OFF=$(OFF=0.0),PREC=$(PREC=5),EGU=$(EGU=um)") +#- +dbLoadRecords("$(OPTICS)/db/flexCombinedMotion.db","P=$(P),M=$(M),DESC=$(DESC='cap motor'),C=$(C),EGU=$(EGU=um),LLM=$(LLM),HOME=$(HOME),HLM=$(HLM)") +#- +doAfterIocInit("seq(flexCombinedMotion,'P=$(P),M=$(M),C=$(C),FM=$(FM),CM=$(CM)')") +#- Sync the target position, which is not autosaved, with the readback +doAfterIocInit("dbpf '$(P)$(M).SYNC', '1'") diff --git a/opticsApp/iocsh/hr_mono.iocsh b/opticsApp/iocsh/hr_mono.iocsh new file mode 100644 index 0000000..e0e0767 --- /dev/null +++ b/opticsApp/iocsh/hr_mono.iocsh @@ -0,0 +1,18 @@ +# ### hr_mono.iocsh ### + +#- ################################################### +#- PREFIX - IOC Prefix +#- INSTANCE - Instance Prefix +#- M_PHI1 - Phi Motor 1 +#- M_PHI2 - Phi Motor 2 +#- OPTICS - Location of optics module +#- +#- LOG - Optional: Logfile +#- Default: hrCtl.log +#- ################################################### + +# 4-bounce high-resolution monochromator +dbLoadRecords("$(OPTICS)/opticsApp/Db/hrSeq.db","P=$(PREFIX),N=$(INSTANCE),M_PHI1=$(M_PHI1),M_PHI2=$(M_PHI2)") + +doAfterIocInit("dbpf '$(PREFIX)HR$(INSTANCE)CtlDebug','1'") +doAfterIocInit("seq &hrCtl, 'P=$(PREFIX), N=$(INSTANCE), M_PHI1=$(M_PHI1), M_PHI2=$(M_PHI2), logfile=$(LOG=hrCtl.log)'") diff --git a/opticsApp/iocsh/io.iocsh b/opticsApp/iocsh/io.iocsh new file mode 100644 index 0000000..7bf6b86 --- /dev/null +++ b/opticsApp/iocsh/io.iocsh @@ -0,0 +1,12 @@ +# ### io.iocsh ### + +#- ################################################### +#- PREFIX - IOC Prefix +#- MONO - Monochrometer positioner field +#- VSC - Associated scan record +#- OPTICS - Location of optics module +#- ################################################### + +#- Io calculation +dbLoadRecords("$(OPTICS)/opticsApp/Db/Io.db","P=$(PREFIX)Io:") +doAfterIocInit("seq &Io, 'P=$(PREFIX)Io:,MONO=$(MONO),VSC=$(VSC)'") diff --git a/opticsApp/iocsh/kohzu_mono.iocsh b/opticsApp/iocsh/kohzu_mono.iocsh new file mode 100644 index 0000000..c3ebd7a --- /dev/null +++ b/opticsApp/iocsh/kohzu_mono.iocsh @@ -0,0 +1,25 @@ +# ### kohzu_mono.iocsh ### + +#- ################################################### +#- PREFIX - IOC Prefix +#- M_Y - Y Motor +#- M_Z - Z Motor +#- M_THETA - Theta motor +#- OPTICS - Location of optics module +#- GEOM - Optional: Geometry type (1- standard, 2-modified) +#- Default: 1 +#- +#- LOG - Optional: Logfile +#- Default: kohzuCtl.log +#- +#- YOFF_HI - Optional: Y Offset High +#- Default: 0 +#- +#- YOFF_LO - Optional: Y Offset Low +#- Default: 0 +#- ################################################### + +### Monochromator support ### +# Kohzu and PSL monochromators: Bragg and theta/Y/Z motors +dbLoadRecords("$(OPTICS)/opticsApp/Db/kohzuSeq.db","P=$(PREFIX),M_THETA=$(M_THETA),M_Y=$(M_Y),M_Z=$(M_Z),yOffLo=$(YOFF_LO),yOffHi=$(YOFF_HI=0)") +doAfterIocInit("seq &kohzuCtl, 'P=$(PREFIX), M_THETA=$(M_THETA), M_Y=$(M_Y), M_Z=$(M_Z), GEOM=$(GEOM=1), logfile=$(LOG=kohzuCtl.log)'") diff --git a/opticsApp/iocsh/ml_mono.iocsh b/opticsApp/iocsh/ml_mono.iocsh new file mode 100644 index 0000000..1e881e6 --- /dev/null +++ b/opticsApp/iocsh/ml_mono.iocsh @@ -0,0 +1,19 @@ +# ### ml_mono.iocsh ### + +#- ################################################### +#- PREFIX - IOC Prefix +#- M_Y - Y Motor +#- M_Z - Z Motor +#- M_THETA1 - Theta motor 1 +#- M_THETA2 - Theta motor 2 +#- OPTICS - Location of optics module +#- GEOM - Optional: Geometry type (1- standard, 2-modified) +#- Default: 1 +#- +#- YOFF - Optional: Y Offset +#- Default: 0 +#- ################################################### + +### multilayer monochromator: Bragg and theta/Y/Z motors +dbLoadRecords("$(OPTICS)/opticsApp/Db/ml_monoSeq.db","P=$(PREFIX)") +doAfterIocInit("seq &ml_monoCtl, 'P=$(PREFIX), M_THETA=$(M_THETA1), M_THETA2=$(M_THETA2), M_Y=$(M_Y), M_Z=$(M_Z), Y_OFF=$(YOFF=0), GEOM=$(GEOM=1)'") diff --git a/opticsApp/iocsh/orient.iocsh b/opticsApp/iocsh/orient.iocsh new file mode 100644 index 0000000..52c3e6c --- /dev/null +++ b/opticsApp/iocsh/orient.iocsh @@ -0,0 +1,22 @@ +# ### orient.iocsh ### + +#- ################################################### +#- PREFIX - IOC Prefix +#- INSTANCE - Instance Prefix, should match $(O) in substitutions file +#- M_TTH - TTH Motor +#- M_TH - TH Motor +#- M_CHI - Chi Motor +#- M_PHI - Phi Motor +#- OPTICS - Location of the optics module +#- SUB - Optional: xtals substitions file (orient_xtals.db), +#- Macros O, P, and PREC will be set for you. +#- Default: $(OPTICS)/iocsh/EXAMPLE_orient.substitutions +#- +#- PREC - Optional: Digits of precision +#- Default: 6 +#- ################################################### + +### Orientation matrix, four-circle diffractometer (see seq program 'orient' below) +dbLoadRecords("$(OPTICS)/opticsApp/Db/orient.db", "P=$(PREFIX),O=$(INSTANCE),PREC=$(PREC=6)") +dbLoadTemplate("$(SUB=$(OPTICS)/iocsh/EXAMPLE_orient.substitutions)", "P=$(PREFIX), O=$(INSTANCE), PREC=$(PREC)") +doAfterIocInit("seq &orient, 'P=$(PREFIX)orient$(INSTANCE):,PM=$(PREFIX),mTTH=$(M_TTH),mTH=$(M_TH),mCHI=$(M_CHI),mPHI=$(M_PHI)'") diff --git a/opticsApp/iocsh/pf4filters.iocsh b/opticsApp/iocsh/pf4filters.iocsh new file mode 100644 index 0000000..2cfcee6 --- /dev/null +++ b/opticsApp/iocsh/pf4filters.iocsh @@ -0,0 +1,28 @@ +# ### pf4filters.iocsh ### + +#- ################################################### +#- PREFIX - IOC Prefix +#- INSTANCE - Instance Prefix +#- OPTICS - Location of optics module +#- CALC - Location of calc module +#- ################################################### + +### Load database records for dual PF4 filters +dbLoadRecords("$(OPTICS)/opticsApp/Db/pf4common.db","P=$(PREFIX),H=$(INSTANCE):,A=A,B=B") +dbLoadRecords("$(OPTICS)/opticsApp/Db/pf4bank.db","P=$(PREFIX),H=$(INSTANCE):,B=A") +dbLoadRecords("$(OPTICS)/opticsApp/Db/pf4bank.db","P=$(PREFIX),H=$(INSTANCE):,B=B") +dbLoadRecords("$(CALC)/calcApp/Db/userTransform.db","P=$(PREFIX),N=$(INSTANCE)") + +#- Start PF4 filter sequence programs +#- name = what user will call it +#- P = prefix of database and sequencer +#- H = hardware (i.e. pf4) +#- B = bank indicator (i.e. A,B) +#- M = Monochromatic-beam energy PV +#- BP = Filter control bit PV prefix +#- B1 = Filter control bit 0 number +#- B2 = Filter control bit 1 number +#- B3 = Filter control bit 2 number +#- B4 = Filter control bit 3 number +doAfterIocInit("seq pf4,'name=$(INSTANCE)_1,P=$(PREFIX),H=$(INSTANCE):,B=A,M=$(PREFIX)userTran$(INSTANCE).I,B1=$(PREFIX)userTran$(INSTANCE).A,B2=$(PREFIX)userTran$(INSTANCE).B,B3=$(PREFIX)userTran$(INSTANCE).C,B4=$(PREFIX)userTran$(INSTANCE).D'") +doAfterIocInit("seq pf4,'name=$(INSTANCE)_2,P=$(PREFIX),H=$(INSTANCE):,B=B,M=$(PREFIX)userTran$(INSTANCE).I,B1=$(PREFIX)userTran$(INSTANCE).E,B2=$(PREFIX)userTran$(INSTANCE).F,B3=$(PREFIX)userTran$(INSTANCE).G,B4=$(PREFIX)userTran$(INSTANCE).H'") diff --git a/opticsApp/iocsh/vmas.iocsh b/opticsApp/iocsh/vmas.iocsh new file mode 100644 index 0000000..b87b995 --- /dev/null +++ b/opticsApp/iocsh/vmas.iocsh @@ -0,0 +1,44 @@ +#- ################################################### +#- The new slits (variable mask aperture slits) in the APS Upgrade +#- use a combination of stages to create both the horizontal +#- and vertical center position of the aperture. Pitch and yaw stages +#- determine aperture size. +# +#- PREFIX - IOC Prefix (e.g. xxx:) +#- YAW - yaw motor (horizontal size) +#- PITCH - pitch motor (vertical size) +#- HORIZONTAL - horizontal motor (horizontal position) +#- DIAGONAL - vertical motor (horizontal/vertical position) +# +#- Creates the following pseudo motors (similar to slits) +#- hSize - aperture horizontal size +#- vSize - aperture vertical size +#- hCenter - aperture horizontal center position +#- vCenter - aperture vertical center position +#- +##- ################################################### + + +# Load motor records +dbLoadTemplate("EXAMPLE_vmas.substitutions","P=$(PREFIX),YAW=$(YAW),PITCH=$(PITCH),HOR=$(HORIZONTAL),DIA=$(DIAGONAL)") + +######################################################################## +# Set the weighting to account for the angle of the diagonal stage +# used in the slits (14 degrees). +doAfterIocInit("dbpf('$(PREFIX)hCenterC1', '1.0')") +doAfterIocInit("dbpf('$(PREFIX)hCenterC2', '0.97029573')") +doAfterIocInit("dbpf('$(PREFIX)vCenterC1', '0.0')") +doAfterIocInit("dbpf('$(PREFIX)vCenterC2', '0.24192189')") + +######################################################################## +# C1 = aperture size when mask angle is 0 degrees +# C2 = ratio of edge separation to motor lever arm + +doAfterIocInit("dbpf('$(PREFIX)hSizeC1', '4.03')") +#Using Motor coord: 0.8889; Using encoder coord: 0.9364 +doAfterIocInit("dbpf('$(PREFIX)hSizeC2', '0.9364')") + +doAfterIocInit("dbpf('$(PREFIX)vSizeC1', '3.01')") +#Using Motor coord: 0.3534 or 0.4008; Using encoder coord: +doAfterIocInit("dbpf('$(PREFIX)vSizeC2', '0.4008')") + diff --git a/opticsApp/op/Makefile b/opticsApp/op/Makefile new file mode 100644 index 0000000..c0b8a1e --- /dev/null +++ b/opticsApp/op/Makefile @@ -0,0 +1,12 @@ +TOP = ../.. +include $(TOP)/configure/CONFIG + +ADL_DIR = adl +UI_DIR = ui/autoconvert +EDL_DIR = edl/autoconvert +OPI_DIR = opi/autoconvert +BOB_DIR = bob/autoconvert + +include $(CONFIG)/RULES_DIRS + +-include $(SUPPORT)/configure/RULES_OPI diff --git a/opticsApp/op/adl/2filter_setup.adl b/opticsApp/op/adl/2filter_setup.adl index 195519e..8040a76 100644 --- a/opticsApp/op/adl/2filter_setup.adl +++ b/opticsApp/op/adl/2filter_setup.adl @@ -1,7 +1,7 @@ file { - name="/tmp_mnt/home/sricat/BCDA/epics/3.13.0/baseR3.13.0.beta7_shareR1.0/stdApp/op/adl/2filter_setup_4.1.adl" - version=020205 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/2filter_setup.adl" + version=030111 } display { object { @@ -13,6 +13,9 @@ display { clr=14 bclr=4 cmap="" + gridSpacing=5 + gridOn=0 + snapToGrid=0 } "color map" { ncolors=65 @@ -132,6 +135,8 @@ text { bclr=35 } format="string" + limits { + } } text { object { @@ -161,6 +166,8 @@ text { clr=14 bclr=51 } + limits { + } } "text entry" { object { @@ -174,6 +181,8 @@ text { clr=14 bclr=51 } + limits { + } } "text entry" { object { @@ -187,6 +196,8 @@ text { clr=14 bclr=51 } + limits { + } } "text entry" { object { @@ -200,6 +211,8 @@ text { clr=14 bclr=51 } + limits { + } } "text entry" { object { @@ -213,6 +226,8 @@ text { clr=14 bclr=51 } + limits { + } } "text entry" { object { @@ -226,6 +241,8 @@ text { clr=14 bclr=51 } + limits { + } } "choice button" { object { @@ -265,96 +282,97 @@ text { bclr=35 } format="string" + limits { + } } -composite { +"text entry" { object { x=385 y=125 width=70 - height=120 - } - "composite name"="" - vis="static" - chan="" - children { - "text entry" { - object { - x=385 - y=125 - width=70 - height=20 - } - control { - chan="$(P)$(Q2)pos5.VAL" - clr=14 - bclr=51 - } - } - "text entry" { - object { - x=385 - y=145 - width=70 - height=20 - } - control { - chan="$(P)$(Q2)pos4.VAL" - clr=14 - bclr=51 - } - } - "text entry" { - object { - x=385 - y=165 - width=70 - height=20 - } - control { - chan="$(P)$(Q2)pos3.VAL" - clr=14 - bclr=51 - } - } - "text entry" { - object { - x=385 - y=185 - width=70 - height=20 - } - control { - chan="$(P)$(Q2)pos2.VAL" - clr=14 - bclr=51 - } - } - "text entry" { - object { - x=385 - y=225 - width=70 - height=20 - } - control { - chan="$(P)$(Q2)posHome.VAL" - clr=14 - bclr=51 - } - } - "text entry" { - object { - x=385 - y=205 - width=70 - height=20 - } - control { - chan="$(P)$(Q2)pos1.VAL" - clr=14 - bclr=51 - } - } + height=20 + } + control { + chan="$(P)$(Q2)pos5.VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=385 + y=145 + width=70 + height=20 + } + control { + chan="$(P)$(Q2)pos4.VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=385 + y=165 + width=70 + height=20 + } + control { + chan="$(P)$(Q2)pos3.VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=385 + y=185 + width=70 + height=20 + } + control { + chan="$(P)$(Q2)pos2.VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=385 + y=225 + width=70 + height=20 + } + control { + chan="$(P)$(Q2)posHome.VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=385 + y=205 + width=70 + height=20 + } + control { + chan="$(P)$(Q2)pos1.VAL" + clr=14 + bclr=51 + } + limits { } } "choice button" { @@ -398,6 +416,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -411,6 +431,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -424,6 +446,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -437,6 +461,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -450,6 +476,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -463,6 +491,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -476,6 +506,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -489,6 +521,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -502,6 +536,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -515,6 +551,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -528,6 +566,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -541,6 +581,8 @@ text { clr=14 bclr=16 } + limits { + } } text { object { @@ -675,6 +717,8 @@ text { bclr=35 } format="string" + limits { + } } text { object { @@ -910,6 +954,8 @@ text { bclr=35 } format="string" + limits { + } } text { object { diff --git a/opticsApp/op/adl/2slit_soft.adl b/opticsApp/op/adl/2slit_soft.adl index f0da5ee..4f3acf4 100644 --- a/opticsApp/op/adl/2slit_soft.adl +++ b/opticsApp/op/adl/2slit_soft.adl @@ -1,7 +1,7 @@ file { - name="/home/sricat/BCDA/epics/synApps_R3.13.1.1_R4.2/share/stdApp/op/adl/2slit_soft_1.1.adl" - version=020303 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/2slit_soft.adl" + version=030107 } display { object { @@ -130,6 +130,8 @@ text { bclr=0 } align="horiz. centered" + limits { + } } rectangle { object { @@ -306,7 +308,6 @@ text { label="$(SLIT)xn (Tiny)" name="motorx_tiny.adl" args="P=$(P),M=$(SLIT)xn" - policy="replace display" } display[1] { label="$(SLIT)xn (Help)" @@ -335,7 +336,7 @@ text { } clr=0 bclr=17 - label=-More + label="-More" } "message button" { object { @@ -364,6 +365,8 @@ text { clr=14 bclr=51 } + limits { + } } "message button" { object { @@ -392,6 +395,8 @@ text { clr=14 bclr=51 } + limits { + } } rectangle { object { @@ -436,6 +441,8 @@ rectangle { bclr=3 } align="horiz. centered" + limits { + } } rectangle { object { @@ -510,6 +517,8 @@ rectangle { bclr=3 } align="horiz. centered" + limits { + } } text { object { @@ -586,6 +595,8 @@ text { bclr=0 } align="horiz. centered" + limits { + } } rectangle { object { @@ -762,7 +773,6 @@ text { label="$(SLIT)xp (Tiny)" name="motorx_tiny.adl" args="P=$(P),M=$(SLIT)xp" - policy="replace display" } display[1] { label="$(SLIT)xp (Help)" @@ -791,7 +801,7 @@ text { } clr=0 bclr=17 - label=-More + label="-More" } "message button" { object { @@ -820,6 +830,8 @@ text { clr=14 bclr=51 } + limits { + } } "message button" { object { @@ -848,6 +860,8 @@ text { clr=14 bclr=51 } + limits { + } } rectangle { object { @@ -892,6 +906,8 @@ rectangle { bclr=3 } align="horiz. centered" + limits { + } } rectangle { object { @@ -966,6 +982,8 @@ rectangle { bclr=3 } align="horiz. centered" + limits { + } } text { object { @@ -1042,6 +1060,8 @@ text { bclr=0 } align="horiz. centered" + limits { + } } rectangle { object { @@ -1218,7 +1238,6 @@ text { label="$(SLIT)size (Tiny)" name="motorx_tiny.adl" args="P=$(P),M=$(SLIT)size" - policy="replace display" } display[1] { label="$(SLIT)size (Help)" @@ -1247,7 +1266,7 @@ text { } clr=0 bclr=17 - label=-More + label="-More" } "message button" { object { @@ -1276,6 +1295,8 @@ text { clr=14 bclr=51 } + limits { + } } "message button" { object { @@ -1304,6 +1325,8 @@ text { clr=14 bclr=51 } + limits { + } } rectangle { object { @@ -1348,6 +1371,8 @@ rectangle { bclr=3 } align="horiz. centered" + limits { + } } rectangle { object { @@ -1422,6 +1447,8 @@ rectangle { bclr=3 } align="horiz. centered" + limits { + } } text { object { @@ -1498,6 +1525,8 @@ text { bclr=0 } align="horiz. centered" + limits { + } } rectangle { object { @@ -1674,7 +1703,6 @@ text { label="$(SLIT)center (Tiny)" name="motorx_tiny.adl" args="P=$(P),M=$(SLIT)center" - policy="replace display" } display[1] { label="$(SLIT)center (Help)" @@ -1703,7 +1731,7 @@ text { } clr=0 bclr=17 - label=-More + label="-More" } "message button" { object { @@ -1732,6 +1760,8 @@ text { clr=14 bclr=51 } + limits { + } } "message button" { object { @@ -1760,6 +1790,8 @@ text { clr=14 bclr=51 } + limits { + } } rectangle { object { @@ -1804,6 +1836,8 @@ rectangle { bclr=3 } align="horiz. centered" + limits { + } } rectangle { object { @@ -1878,6 +1912,8 @@ rectangle { bclr=3 } align="horiz. centered" + limits { + } } text { object { @@ -1925,36 +1961,6 @@ text { } stacking="column" } -"message button" { - object { - x=260 - y=234 - width=60 - height=27 - } - control { - chan="$(P)$(SLIT)stop.PROC" - clr=30 - bclr=20 - } - label="Stop" - press_msg="1" -} -"message button" { - object { - x=85 - y=240 - width=110 - height=20 - } - control { - chan="$(P)$(SLIT)sync.PROC" - clr=14 - bclr=51 - } - label="Sync to motors" - press_msg="1" -} "related display" { object { x=200 @@ -1965,16 +1971,51 @@ text { display[0] { label="drive transform" name="yyTransform_full.adl" - args="P=$(P),T=$(SLIT)t1" + args="P=$(P),T=$(SLIT)tFwd" } display[1] { label="readback transform" name="yyTransform_full.adl" - args="P=$(P),T=$(SLIT)t2" + args="P=$(P),T=$(SLIT)tRev" + } + display[2] { + label="limits transform" + name="yyTransform_full.adl" + args="P=$(P),T=$(SLIT)tLimits" + } + display[3] { + label="calcDone" + name="yyCalcoutRecord.adl" + args="P=$(P),C=$(SLIT)calcDone" + } + display[4] { + label="monitorStop" + name="yyTransform_full.adl" + args="P=$(P),T=$(SLIT)monitorStop" + } + display[5] { + label="doStop" + name="yySeq_full.adl" + args="P=$(P),S=$(SLIT)doStop" + } + display[6] { + label="spectator" + name="yyTransform.adl" + args="P=$(P),T=$(SLIT)spectator" + } + display[7] { + label="syncCalc" + name="yyTransform.adl" + args="P=$(P),T=$(SLIT)tSyncCalc" + } + display[8] { + label="sync" + name="yyTransform.adl" + args="P=$(P),T=$(SLIT)tSync" } clr=0 bclr=17 - label=-Debug + label="-Debug" } rectangle { object { @@ -2058,6 +2099,8 @@ text { bclr=3 } format="string" + limits { + } } "text update" { object { @@ -2072,4 +2115,6 @@ text { bclr=3 } format="string" + limits { + } } diff --git a/opticsApp/op/adl/4filter_setup.adl b/opticsApp/op/adl/4filter_setup.adl index e687f39..a54cc33 100644 --- a/opticsApp/op/adl/4filter_setup.adl +++ b/opticsApp/op/adl/4filter_setup.adl @@ -1,7 +1,7 @@ file { - name="/tmp_mnt/home/sricat/BCDA/epics/3.13.0/baseR3.13.0.beta7_shareR1.0/stdApp/op/adl/4filter_setup_4.1.adl" - version=020205 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/4filter_setup.adl" + version=030111 } display { object { @@ -13,6 +13,9 @@ display { clr=14 bclr=4 cmap="" + gridSpacing=5 + gridOn=0 + snapToGrid=0 } "color map" { ncolors=65 @@ -133,6 +136,8 @@ text { bclr=35 } format="string" + limits { + } } text { object { @@ -162,6 +167,8 @@ text { clr=14 bclr=51 } + limits { + } } "text entry" { object { @@ -175,6 +182,8 @@ text { clr=14 bclr=51 } + limits { + } } "text entry" { object { @@ -188,6 +197,8 @@ text { clr=14 bclr=51 } + limits { + } } "text entry" { object { @@ -201,6 +212,8 @@ text { clr=14 bclr=51 } + limits { + } } "text entry" { object { @@ -214,6 +227,8 @@ text { clr=14 bclr=51 } + limits { + } } "text entry" { object { @@ -227,6 +242,8 @@ text { clr=14 bclr=51 } + limits { + } } "choice button" { object { @@ -305,96 +322,97 @@ text { bclr=35 } format="string" + limits { + } } -composite { +"text entry" { object { x=385 y=125 width=70 - height=120 - } - "composite name"="" - vis="static" - chan="" - children { - "text entry" { - object { - x=385 - y=125 - width=70 - height=20 - } - control { - chan="$(P)$(Q2)pos5.VAL" - clr=14 - bclr=51 - } - } - "text entry" { - object { - x=385 - y=145 - width=70 - height=20 - } - control { - chan="$(P)$(Q2)pos4.VAL" - clr=14 - bclr=51 - } - } - "text entry" { - object { - x=385 - y=165 - width=70 - height=20 - } - control { - chan="$(P)$(Q2)pos3.VAL" - clr=14 - bclr=51 - } - } - "text entry" { - object { - x=385 - y=185 - width=70 - height=20 - } - control { - chan="$(P)$(Q2)pos2.VAL" - clr=14 - bclr=51 - } - } - "text entry" { - object { - x=385 - y=225 - width=70 - height=20 - } - control { - chan="$(P)$(Q2)posHome.VAL" - clr=14 - bclr=51 - } - } - "text entry" { - object { - x=385 - y=205 - width=70 - height=20 - } - control { - chan="$(P)$(Q2)pos1.VAL" - clr=14 - bclr=51 - } - } + height=20 + } + control { + chan="$(P)$(Q2)pos5.VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=385 + y=145 + width=70 + height=20 + } + control { + chan="$(P)$(Q2)pos4.VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=385 + y=165 + width=70 + height=20 + } + control { + chan="$(P)$(Q2)pos3.VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=385 + y=185 + width=70 + height=20 + } + control { + chan="$(P)$(Q2)pos2.VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=385 + y=225 + width=70 + height=20 + } + control { + chan="$(P)$(Q2)posHome.VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=385 + y=205 + width=70 + height=20 + } + control { + chan="$(P)$(Q2)pos1.VAL" + clr=14 + bclr=51 + } + limits { } } text { @@ -425,6 +443,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -438,6 +458,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -451,6 +473,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -464,6 +488,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -477,6 +503,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -490,6 +518,8 @@ text { clr=14 bclr=16 } + limits { + } } text { object { @@ -627,6 +657,8 @@ text { bclr=35 } format="string" + limits { + } } text { object { @@ -652,6 +684,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -665,6 +699,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -678,6 +714,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -691,6 +729,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -704,6 +744,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -717,6 +759,8 @@ text { clr=14 bclr=16 } + limits { + } } text { object { @@ -851,6 +895,8 @@ text { bclr=35 } format="string" + limits { + } } text { object { @@ -950,6 +996,8 @@ text { bclr=35 } format="string" + limits { + } } "text entry" { object { @@ -963,6 +1011,8 @@ text { clr=14 bclr=51 } + limits { + } } "text entry" { object { @@ -976,6 +1026,8 @@ text { clr=14 bclr=51 } + limits { + } } "text entry" { object { @@ -989,6 +1041,8 @@ text { clr=14 bclr=51 } + limits { + } } "text entry" { object { @@ -1002,6 +1056,8 @@ text { clr=14 bclr=51 } + limits { + } } "text entry" { object { @@ -1015,6 +1071,8 @@ text { clr=14 bclr=51 } + limits { + } } "text entry" { object { @@ -1028,6 +1086,8 @@ text { clr=14 bclr=51 } + limits { + } } text { object { @@ -1057,6 +1117,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -1070,6 +1132,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -1083,6 +1147,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -1096,6 +1162,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -1109,6 +1177,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -1122,6 +1192,8 @@ text { clr=14 bclr=16 } + limits { + } } text { object { @@ -1259,6 +1331,8 @@ text { bclr=35 } format="string" + limits { + } } text { object { @@ -1297,6 +1371,8 @@ text { bclr=35 } format="string" + limits { + } } "text entry" { object { @@ -1310,6 +1386,8 @@ text { clr=14 bclr=51 } + limits { + } } "text entry" { object { @@ -1323,6 +1401,8 @@ text { clr=14 bclr=51 } + limits { + } } "text entry" { object { @@ -1336,6 +1416,8 @@ text { clr=14 bclr=51 } + limits { + } } "text entry" { object { @@ -1349,6 +1431,8 @@ text { clr=14 bclr=51 } + limits { + } } "text entry" { object { @@ -1362,6 +1446,8 @@ text { clr=14 bclr=51 } + limits { + } } "text entry" { object { @@ -1375,6 +1461,8 @@ text { clr=14 bclr=51 } + limits { + } } text { object { @@ -1404,6 +1492,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -1417,6 +1507,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -1430,6 +1522,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -1443,6 +1537,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -1456,6 +1552,8 @@ text { clr=14 bclr=16 } + limits { + } } "text entry" { object { @@ -1469,6 +1567,8 @@ text { clr=14 bclr=16 } + limits { + } } text { object { @@ -1619,6 +1719,8 @@ text { bclr=35 } format="string" + limits { + } } text { object { diff --git a/opticsApp/op/adl/4slitGraphic_soft.adl b/opticsApp/op/adl/4slitGraphic_soft.adl index c944c39..b3474c1 100644 --- a/opticsApp/op/adl/4slitGraphic_soft.adl +++ b/opticsApp/op/adl/4slitGraphic_soft.adl @@ -1,7 +1,7 @@ file { - name="/home/oxygen4/MOONEY/epics/3.13.1.1/tmm/tmmApp/op/adl/4slitGraphic_soft_1.1.adl" - version=020306 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/4slitGraphic_soft.adl" + version=030107 } display { object { @@ -1302,30 +1302,15 @@ text { "message button" { object { x=110 - y=25 - width=60 - height=22 - } - control { - chan="$(P)$(H)sync.PROC" - clr=14 - bclr=51 - } - label="Sync H" - press_msg="1" -} -"message button" { - object { - x=110 - y=303 - width=60 - height=22 + y=305 + width=53 + height=20 } control { - chan="$(P)$(V)sync.PROC" - clr=14 - bclr=55 + chan="$(P)$(H)xn.STOP" + clr=31 + bclr=20 } - label="Sync V" + label="STOP" press_msg="1" } diff --git a/opticsApp/op/adl/ASRPmirrorTable_small.adl b/opticsApp/op/adl/ASRPmirrorTable_small.adl index 557b4cb..562e0b0 100755 --- a/opticsApp/op/adl/ASRPmirrorTable_small.adl +++ b/opticsApp/op/adl/ASRPmirrorTable_small.adl @@ -1,7 +1,7 @@ file { - name="C:\cygwin\home\mooney\epics\synApps\support\all_adl\ASRPmirrorTable_small.adl" - version=030004 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/ASRPmirrorTable_small.adl" + version=030111 } display { object { @@ -144,55 +144,44 @@ polyline { (179,21) } } -composite { +"text entry" { + object { + x=27 + y=52 + width=100 + height=20 + } + control { + chan="$(P)$(TBL):tran.F" + clr=14 + bclr=51 + } + limits { + } +} +text { object { x=27 y=28 - width=123 - height=44 - } - "composite name"="" - children { - "text entry" { - object { - x=27 - y=52 - width=100 - height=20 - } - control { - chan="$(P)$(TBL):tran.F" - clr=14 - bclr=51 - } - limits { - } - } - text { - object { - x=27 - y=28 - width=100 - height=20 - } - "basic attribute" { - clr=14 - } - textix="PITCH" - align="horiz. centered" - } - text { - object { - x=130 - y=54 - width=20 - height=14 - } - "basic attribute" { - clr=14 - } - textix="(mR)" - align="horiz. centered" - } + width=100 + height=20 + } + "basic attribute" { + clr=14 } + textix="PITCH" + align="horiz. centered" +} +text { + object { + x=130 + y=54 + width=20 + height=14 + } + "basic attribute" { + clr=14 + } + textix="(mR)" + align="horiz. centered" } diff --git a/opticsApp/op/adl/CoarseFineMotor.adl b/opticsApp/op/adl/CoarseFineMotor.adl index 0b01ec6..3d3288d 100644 --- a/opticsApp/op/adl/CoarseFineMotor.adl +++ b/opticsApp/op/adl/CoarseFineMotor.adl @@ -1,7 +1,7 @@ file { name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/CoarseFineMotor.adl" - version=030004 + version=030111 } display { object { @@ -153,52 +153,41 @@ text { bclr=63 label="-?" } -composite { +"related display" { + object { + x=90 + y=75 + width=40 + height=20 + } + display[0] { + label="Graphic of stage" + name="CoarseFineMotorShow.adl" + args="P=$(P),M=MOT,PM=$(PM),CM=$(CM),FM=$(FM)" + policy="replace display" + } + clr=0 + bclr=17 + label="-More" +} +"related display" { object { x=5 y=75 - width=125 + width=55 height=20 } - "composite name"="" - children { - "related display" { - object { - x=90 - y=75 - width=40 - height=20 - } - display[0] { - label="Graphic of stage" - name="CoarseFineMotorShow.adl" - args="P=$(P),M=MOT,PM=$(PM),CM=$(CM),FM=$(FM)" - policy="replace display" - } - clr=0 - bclr=17 - label="-More" - } - "related display" { - object { - x=5 - y=75 - width=55 - height=20 - } - display[0] { - label="Combined (soft) motor" - name="motorx.adl" - args="P=$(P),M=MOT" - } - display[1] { - label="Actual motors" - name="motor2x.adl" - args="P=$(PM),M1=$(CM),M2=$(FM)" - } - clr=0 - bclr=63 - label="-Motors" - } + display[0] { + label="Combined (soft) motor" + name="motorx.adl" + args="P=$(P),M=MOT" } + display[1] { + label="Actual motors" + name="motor2x.adl" + args="P=$(PM),M1=$(CM),M2=$(FM)" + } + clr=0 + bclr=63 + label="-Motors" } diff --git a/opticsApp/op/adl/CoarseFineMotorShow.adl b/opticsApp/op/adl/CoarseFineMotorShow.adl index d4c58fc..d266ac0 100644 --- a/opticsApp/op/adl/CoarseFineMotorShow.adl +++ b/opticsApp/op/adl/CoarseFineMotorShow.adl @@ -1,7 +1,7 @@ file { name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/CoarseFineMotorShow.adl" - version=030004 + version=030111 } display { object { @@ -153,75 +153,64 @@ text { bclr=63 label="-?" } -composite { +indicator { object { - x=163 + x=178 + y=52 + width=250 + height=25 + } + monitor { + chan="$(PM)$(CM).RBV" + clr=14 + bclr=51 + } + label="no decorations" + limits { + } +} +indicator { + object { + x=228 y=24 - width=265 - height=53 - } - "composite name"="" - children { - indicator { - object { - x=178 - y=52 - width=250 - height=25 - } - monitor { - chan="$(PM)$(CM).RBV" - clr=14 - bclr=51 - } - label="no decorations" - limits { - } - } - indicator { - object { - x=228 - y=24 - width=150 - height=25 - } - monitor { - chan="$(PM)$(FM).RBV" - clr=14 - bclr=51 - } - label="no decorations" - limits { - } - } - text { - object { - x=213 - y=27 - width=10 - height=20 - } - "basic attribute" { - clr=14 - } - textix="F" - align="horiz. centered" - } - text { - object { - x=163 - y=57 - width=10 - height=20 - } - "basic attribute" { - clr=14 - } - textix="C" - align="horiz. centered" - } + width=150 + height=25 + } + monitor { + chan="$(PM)$(FM).RBV" + clr=14 + bclr=51 + } + label="no decorations" + limits { } } +text { + object { + x=213 + y=27 + width=10 + height=20 + } + "basic attribute" { + clr=14 + } + textix="F" + align="horiz. centered" +} +text { + object { + x=163 + y=57 + width=10 + height=20 + } + "basic attribute" { + clr=14 + } + textix="C" + align="horiz. centered" +} "related display" { object { x=430 @@ -263,52 +252,41 @@ composite { bclr=2 label="-DEBUG" } -composite { +"related display" { object { x=5 y=75 - width=125 + width=55 height=20 } - "composite name"="" - children { - "related display" { - object { - x=5 - y=75 - width=55 - height=20 - } - display[0] { - label="Combined (soft) motor" - name="motorx.adl" - args="P=$(P),M=MOT" - } - display[1] { - label="Actual motors" - name="motor2x.adl" - args="P=$(PM),M1=$(CM),M2=$(FM)" - } - clr=0 - bclr=63 - label="-Motors" - } - "related display" { - object { - x=90 - y=75 - width=40 - height=20 - } - display[0] { - label="Small display" - name="CoarseFineMotor.adl" - args="P=$(P),M=MOT,PM=$(PM),CM=$(CM),FM=$(FM)" - policy="replace display" - } - clr=0 - bclr=17 - label="-Less" - } + display[0] { + label="Combined (soft) motor" + name="motorx.adl" + args="P=$(P),M=MOT" + } + display[1] { + label="Actual motors" + name="motor2x.adl" + args="P=$(PM),M1=$(CM),M2=$(FM)" } + clr=0 + bclr=63 + label="-Motors" +} +"related display" { + object { + x=90 + y=75 + width=40 + height=20 + } + display[0] { + label="Small display" + name="CoarseFineMotor.adl" + args="P=$(P),M=MOT,PM=$(PM),CM=$(CM),FM=$(FM)" + policy="replace display" + } + clr=0 + bclr=17 + label="-Less" } diff --git a/opticsApp/op/adl/Io.adl b/opticsApp/op/adl/Io.adl index cde6f27..45f4719 100755 --- a/opticsApp/op/adl/Io.adl +++ b/opticsApp/op/adl/Io.adl @@ -1,7 +1,7 @@ file { - name="/export/home/epics/screens/ORNL/Io.adl" - version=020304 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/Io.adl" + version=030111 } display { object { @@ -113,282 +113,247 @@ text { textix="Io.adl" align="horiz. right" } -composite { +"text update" { object { x=10 + y=296 + width=131 + height=15 + } + monitor { + chan="$(P)HePath.DESC" + clr=14 + bclr=2 + } + align="horiz. right" + format="string" + limits { + } +} +"text entry" { + object { + x=142 y=291 - width=246 + width=60 height=25 } - "composite name"="" - vis="static" - chan="" - children { - "text update" { - object { - x=10 - y=296 - width=131 - height=15 - } - monitor { - chan="$(P)HePath.DESC" - clr=14 - bclr=2 - } - align="horiz. right" - format="string" - } - "text entry" { - object { - x=142 - y=291 - width=60 - height=25 - } - control { - chan="$(P)HePath" - clr=14 - bclr=3 - } - } - "text update" { - object { - x=206 - y=296 - width=50 - height=15 - } - monitor { - chan="$(P)HePath.EGU" - clr=14 - bclr=2 - } - format="string" - } - } -} -composite { + control { + chan="$(P)HePath" + clr=14 + bclr=3 + } + limits { + } +} +"text update" { + object { + x=206 + y=296 + width=50 + height=15 + } + monitor { + chan="$(P)HePath.EGU" + clr=14 + bclr=2 + } + format="string" + limits { + } +} +"text update" { object { x=10 + y=326 + width=131 + height=15 + } + monitor { + chan="$(P)airPath.DESC" + clr=14 + bclr=2 + } + align="horiz. right" + format="string" + limits { + } +} +"text entry" { + object { + x=142 y=321 - width=246 + width=60 height=25 } - "composite name"="" - vis="static" - chan="" - children { - "text update" { - object { - x=10 - y=326 - width=131 - height=15 - } - monitor { - chan="$(P)airPath.DESC" - clr=14 - bclr=2 - } - align="horiz. right" - format="string" - } - "text entry" { - object { - x=142 - y=321 - width=60 - height=25 - } - control { - chan="$(P)airPath" - clr=14 - bclr=3 - } - } - "text update" { - object { - x=206 - y=326 - width=50 - height=15 - } - monitor { - chan="$(P)airPath.EGU" - clr=14 - bclr=2 - } - format="string" - } - } -} -composite { + control { + chan="$(P)airPath" + clr=14 + bclr=3 + } + limits { + } +} +"text update" { + object { + x=206 + y=326 + width=50 + height=15 + } + monitor { + chan="$(P)airPath.EGU" + clr=14 + bclr=2 + } + format="string" + limits { + } +} +"text update" { object { x=272 + y=296 + width=131 + height=15 + } + monitor { + chan="$(P)Be.DESC" + clr=14 + bclr=2 + } + align="horiz. right" + format="string" + limits { + } +} +"text entry" { + object { + x=403 y=291 - width=245 + width=60 height=25 } - "composite name"="" - vis="static" - chan="" - children { - "text update" { - object { - x=272 - y=296 - width=131 - height=15 - } - monitor { - chan="$(P)Be.DESC" - clr=14 - bclr=2 - } - align="horiz. right" - format="string" - } - "text entry" { - object { - x=403 - y=291 - width=60 - height=25 - } - control { - chan="$(P)Be" - clr=14 - bclr=3 - } - } - "text update" { - object { - x=467 - y=296 - width=50 - height=15 - } - monitor { - chan="$(P)Be.EGU" - clr=14 - bclr=2 - } - format="string" - } - } -} -composite { + control { + chan="$(P)Be" + clr=14 + bclr=3 + } + limits { + } +} +"text update" { + object { + x=467 + y=296 + width=50 + height=15 + } + monitor { + chan="$(P)Be.EGU" + clr=14 + bclr=2 + } + format="string" + limits { + } +} +"text update" { object { x=265 + y=163 + width=131 + height=15 + } + monitor { + chan="$(P)v2f.DESC" + clr=14 + bclr=2 + } + align="horiz. right" + format="string" + limits { + } +} +"text entry" { + object { + x=397 y=158 - width=246 + width=60 height=25 } - "composite name"="" - vis="static" - chan="" - children { - "text update" { - object { - x=265 - y=163 - width=131 - height=15 - } - monitor { - chan="$(P)v2f.DESC" - clr=14 - bclr=2 - } - align="horiz. right" - format="string" - } - "text entry" { - object { - x=397 - y=158 - width=60 - height=25 - } - control { - chan="$(P)v2f" - clr=14 - bclr=3 - } - format="exponential" - } - "text update" { - object { - x=461 - y=163 - width=50 - height=15 - } - monitor { - chan="$(P)v2f.EGU" - clr=14 - bclr=2 - } - format="string" - } - } -} -composite { + control { + chan="$(P)v2f" + clr=14 + bclr=3 + } + format="exponential" + limits { + } +} +"text update" { + object { + x=461 + y=163 + width=50 + height=15 + } + monitor { + chan="$(P)v2f.EGU" + clr=14 + bclr=2 + } + format="string" + limits { + } +} +"text update" { object { x=1 + y=32 + width=113 + height=18 + } + monitor { + chan="$(P)flux.DESC" + clr=14 + bclr=2 + } + align="horiz. right" + format="string" + limits { + } +} +"text update" { + object { + x=115 y=30 - width=299 + width=100 height=23 } - "composite name"="" - vis="static" - chan="" - children { - "text update" { - object { - x=1 - y=32 - width=113 - height=18 - } - monitor { - chan="$(P)flux.DESC" - clr=14 - bclr=2 - } - align="horiz. right" - format="string" - } - "text update" { - object { - x=115 - y=30 - width=100 - height=23 - } - monitor { - chan="$(P)flux" - clr=14 - bclr=51 - } - align="horiz. right" - format="exponential" - } - "text update" { - object { - x=220 - y=34 - width=80 - height=15 - } - monitor { - chan="$(P)flux.EGU" - clr=14 - bclr=2 - } - format="string" - } + monitor { + chan="$(P)flux" + clr=14 + bclr=51 + } + align="horiz. right" + format="exponential" + limits { + } +} +"text update" { + object { + x=220 + y=34 + width=80 + height=15 + } + monitor { + chan="$(P)flux.EGU" + clr=14 + bclr=2 + } + format="string" + limits { } } "related display" { @@ -408,1161 +373,959 @@ composite { bclr=2 label="small" } -composite { +"text update" { object { x=1 + y=60 + width=113 + height=18 + } + monitor { + chan="$(P)detector.DESC" + clr=14 + bclr=2 + } + align="horiz. right" + format="string" + limits { + } +} +"text update" { + object { + x=115 y=58 - width=299 + width=100 height=23 } - "composite name"="" - vis="static" - chan="" - children { - "text update" { - object { - x=1 - y=60 - width=113 - height=18 - } - monitor { - chan="$(P)detector.DESC" - clr=14 - bclr=2 - } - align="horiz. right" - format="string" - } - "text update" { - object { - x=115 - y=58 - width=100 - height=23 - } - monitor { - chan="$(P)detector" - clr=14 - bclr=51 - } - align="horiz. right" - format="exponential" - } - "text update" { - object { - x=220 - y=62 - width=80 - height=15 - } - monitor { - chan="$(P)detector.EGU" - clr=14 - bclr=2 - } - format="string" - } - } -} -composite { + monitor { + chan="$(P)detector" + clr=14 + bclr=51 + } + align="horiz. right" + format="exponential" + limits { + } +} +"text update" { object { - x=1 - y=110 - width=299 - height=18 + x=220 + y=62 + width=80 + height=15 + } + monitor { + chan="$(P)detector.EGU" + clr=14 + bclr=2 + } + format="string" + limits { } - "composite name"="" - vis="static" - chan="" - children { - "text update" { - object { - x=115 - y=110 - width=100 - height=18 - } - monitor { - chan="$(P)ionAbs" - clr=14 - bclr=51 - } - align="horiz. right" - format="compact" - } - "text update" { - object { - x=1 - y=111 - width=113 - height=16 - } - monitor { - chan="$(P)ionAbs.DESC" - clr=14 - bclr=2 - } - align="horiz. right" - format="string" - } - "text update" { - object { - x=220 - y=112 - width=80 - height=15 - } - monitor { - chan="$(P)ionAbs.EGU" - clr=14 - bclr=2 - } - format="string" - } - } -} -composite { +} +"text update" { object { - x=1 - y=86 - width=299 + x=115 + y=110 + width=100 height=18 } - "composite name"="" - vis="static" - chan="" - children { - "text update" { - object { - x=1 - y=87 - width=113 - height=16 - } - monitor { - chan="$(P)ionPhotons.DESC" - clr=14 - bclr=2 - } - align="horiz. right" - format="string" - } - "text update" { - object { - x=115 - y=86 - width=100 - height=18 - } - monitor { - chan="$(P)ionPhotons" - clr=14 - bclr=51 - } - align="horiz. right" - format="exponential" - } - "text update" { - object { - x=220 - y=88 - width=80 - height=15 - } - monitor { - chan="$(P)ionPhotons.EGU" - clr=14 - bclr=2 - } - format="string" - } - } -} -composite { - object { - x=292 - y=37 - width=260 - height=68 - } - "composite name"="" - vis="static" - chan="" - children { - "text update" { - object { - x=397 - y=62 - width=80 - height=18 - } - monitor { - chan="$(S).S1" - clr=14 - bclr=3 - } - format="exponential" - } - "text update" { - object { - x=397 - y=37 - width=80 - height=18 - } - monitor { - chan="$(S).FREQ" - clr=14 - bclr=3 - } - format="exponential" - } - text { - object { - x=482 - y=39 - width=70 - height=14 - } - "basic attribute" { - clr=14 - } - textix="Hz" - } - text { - object { - x=482 - y=64 - width=70 - height=14 - } - "basic attribute" { - clr=14 - } - textix="scaler cnts" - } - text { - object { - x=482 - y=89 - width=70 - height=14 - } - "basic attribute" { - clr=14 - } - textix="scaler cnts" - } - text { - object { - x=292 - y=39 - width=95 - height=14 - } - "basic attribute" { - clr=14 - } - textix="counter clock" - align="horiz. right" - } - text { - object { - x=292 - y=64 - width=95 - height=14 - } - "basic attribute" { - clr=14 - } - textix="clock ticks" - align="horiz. right" - } - text { - object { - x=292 - y=89 - width=95 - height=14 - } - "basic attribute" { - clr=14 - } - textix="Io counts" - align="horiz. right" - } - "text update" { - object { - x=397 - y=87 - width=80 - height=18 - } - monitor { - chan="$(S).S5" - clr=14 - bclr=3 - } - } - } -} -composite { - object { - x=272 - y=321 - width=271 - height=40 - } - "composite name"="" - vis="static" - chan="" - children { - text { - object { - x=377 - y=349 - width=140 - height=12 - } - "basic attribute" { - clr=14 - } - textix="2'' proportional cntr" - align="horiz. right" - } - "text entry" { - object { - x=404 - y=322 - width=60 - height=25 - } - control { - chan="$(P)efficiency" - clr=14 - bclr=3 - } - } - menu { - object { - x=468 - y=321 - width=75 - height=23 - } - control { - chan="$(P)ArPcntr" - clr=14 - bclr=2 - } - } - "text update" { - object { - x=272 - y=327 - width=131 - height=15 - } - monitor { - chan="$(P)efficiency.DESC" - clr=14 - bclr=2 - } - align="horiz. right" - format="string" - } + monitor { + chan="$(P)ionAbs" + clr=14 + bclr=51 + } + align="horiz. right" + format="compact" + limits { } } -polyline { +"text update" { object { - x=10 - y=367 - width=525 - height=4 + x=1 + y=111 + width=113 + height=16 } - "basic attribute" { + monitor { + chan="$(P)ionAbs.DESC" clr=14 - width=4 + bclr=2 } - points { - (12,369) - (533,369) + align="horiz. right" + format="string" + limits { } } -composite { - object { - x=10 - y=375 - width=508 - height=83 - } - "composite name"="" - vis="static" - chan="" - children { - composite { - object { - x=272 - y=404 - width=246 - height=25 - } - "composite name"="" - vis="static" - chan="" - children { - "text update" { - object { - x=272 - y=409 - width=131 - height=15 - } - monitor { - chan="$(P)kapton2.DESC" - clr=14 - bclr=2 - } - align="horiz. right" - format="string" - } - "text entry" { - object { - x=404 - y=404 - width=60 - height=25 - } - control { - chan="$(P)kapton2" - clr=14 - bclr=3 - } - } - "text update" { - object { - x=468 - y=409 - width=50 - height=15 - } - monitor { - chan="$(P)kapton2.EGU" - clr=14 - bclr=2 - } - format="string" - } - } - } - composite { - object { - x=272 - y=375 - width=246 - height=25 - } - "composite name"="" - vis="static" - chan="" - children { - "text update" { - object { - x=272 - y=380 - width=131 - height=15 - } - monitor { - chan="$(P)kapton1.DESC" - clr=14 - bclr=2 - } - align="horiz. right" - format="string" - } - "text entry" { - object { - x=404 - y=375 - width=60 - height=25 - } - control { - chan="$(P)kapton1" - clr=14 - bclr=3 - } - } - "text update" { - object { - x=468 - y=380 - width=50 - height=15 - } - monitor { - chan="$(P)kapton1.EGU" - clr=14 - bclr=2 - } - format="string" - } - } - } - composite { - object { - x=10 - y=375 - width=246 - height=25 - } - "composite name"="" - vis="static" - chan="" - children { - "text update" { - object { - x=10 - y=380 - width=131 - height=15 - } - monitor { - chan="$(P)activeLen.DESC" - clr=14 - bclr=2 - } - align="horiz. right" - format="string" - } - "text entry" { - object { - x=142 - y=375 - width=60 - height=25 - } - control { - chan="$(P)activeLen" - clr=14 - bclr=3 - } - } - "text update" { - object { - x=206 - y=380 - width=50 - height=15 - } - monitor { - chan="$(P)activeLen.EGU" - clr=14 - bclr=2 - } - format="string" - } - } - } - composite { - object { - x=10 - y=404 - width=246 - height=25 - } - "composite name"="" - vis="static" - chan="" - children { - "text update" { - object { - x=10 - y=409 - width=131 - height=15 - } - monitor { - chan="$(P)deadFront.DESC" - clr=14 - bclr=2 - } - align="horiz. right" - format="string" - } - "text entry" { - object { - x=142 - y=404 - width=60 - height=25 - } - control { - chan="$(P)deadFront" - clr=14 - bclr=3 - } - } - "text update" { - object { - x=206 - y=409 - width=50 - height=15 - } - monitor { - chan="$(P)deadFront.EGU" - clr=14 - bclr=2 - } - format="string" - } - } - } - composite { - object { - x=10 - y=433 - width=246 - height=25 - } - "composite name"="" - vis="static" - chan="" - children { - "text update" { - object { - x=10 - y=438 - width=131 - height=15 - } - monitor { - chan="$(P)deadRear.DESC" - clr=14 - bclr=2 - } - align="horiz. right" - format="string" - } - "text entry" { - object { - x=142 - y=433 - width=60 - height=25 - } - control { - chan="$(P)deadRear" - clr=14 - bclr=3 - } - } - "text update" { - object { - x=206 - y=438 - width=50 - height=15 - } - monitor { - chan="$(P)deadRear.EGU" - clr=14 - bclr=2 - } - format="string" - } - } - } - } -} -composite { +"text update" { object { - x=104 - y=210 - width=400 - height=75 + x=220 + y=112 + width=80 + height=15 } - "composite name"="" - vis="static" - chan="" - children { - text { - object { - x=176 - y=218 - width=250 - height=15 - } - "basic attribute" { - clr=29 - } - textix="ion chamber fill gas (atm)" - align="horiz. centered" - } - rectangle { - object { - x=104 - y=210 - width=400 - height=75 - } - "basic attribute" { - clr=29 - fill="outline" - width=5 - } - } - composite { - object { - x=342 - y=237 - width=60 - height=40 - } - "composite name"="" - vis="static" - chan="" - children { - "text entry" { - object { - x=342 - y=252 - width=60 - height=25 - } - control { - chan="$(P)xAr" - clr=14 - bclr=3 - } - } - text { - object { - x=342 - y=237 - width=60 - height=15 - } - "basic attribute" { - clr=14 - } - textix="Argon" - align="horiz. centered" - } - } - } - composite { - object { - x=412 - y=237 - width=60 - height=40 - } - "composite name"="" - vis="static" - chan="" - children { - "text entry" { - object { - x=412 - y=252 - width=60 - height=25 - } - control { - chan="$(P)xAr" - clr=14 - bclr=3 - } - } - text { - object { - x=412 - y=237 - width=60 - height=15 - } - "basic attribute" { - clr=14 - } - textix="CO2" - align="horiz. centered" - } - } - } - composite { - object { - x=272 - y=237 - width=60 - height=40 - } - "composite name"="" - vis="static" - chan="" - children { - "text entry" { - object { - x=272 - y=252 - width=60 - height=25 - } - control { - chan="$(P)xHe" - clr=14 - bclr=3 - } - } - text { - object { - x=272 - y=237 - width=60 - height=15 - } - "basic attribute" { - clr=14 - } - textix="He" - align="horiz. centered" - } - } - } - composite { - object { - x=132 - y=237 - width=60 - height=40 - } - "composite name"="" - vis="static" - chan="" - children { - text { - object { - x=132 - y=237 - width=60 - height=15 - } - "basic attribute" { - clr=14 - } - textix="Air" - align="horiz. centered" - } - "text entry" { - object { - x=132 - y=252 - width=60 - height=25 - } - control { - chan="$(P)xAir" - clr=14 - bclr=3 - } - } - } - } - composite { - object { - x=202 - y=237 - width=60 - height=40 - } - "composite name"="" - vis="static" - chan="" - children { - text { - object { - x=202 - y=237 - width=60 - height=15 - } - "basic attribute" { - clr=14 - } - textix="Nitrogen" - align="horiz. centered" - } - "text entry" { - object { - x=202 - y=252 - width=60 - height=25 - } - control { - chan="$(P)xN2" - clr=14 - bclr=3 - } - } - } - } + monitor { + chan="$(P)ionAbs.EGU" + clr=14 + bclr=2 + } + format="string" + limits { } } -text { +"text update" { object { - x=306 - y=444 - width=236 - height=14 + x=1 + y=87 + width=113 + height=16 } - "basic attribute" { + monitor { + chan="$(P)ionPhotons.DESC" clr=14 + bclr=2 } - textix="CHESS chamber (17.5, 60, 17.5 mm)" align="horiz. right" + format="string" + limits { + } } -composite { +"text update" { object { - x=3 - y=132 - width=278 + x=115 + y=86 + width=100 height=18 } - "composite name"="" - vis="static" - chan="" - children { - "text update" { - object { - x=171 - y=135 - width=110 - height=15 - } - monitor { - chan="$(P)scaler.DESC" - clr=14 - bclr=2 - } - format="string" - } - menu { - object { - x=128 - y=132 - width=35 - height=18 - } - control { - chan="$(P)scaler" - clr=14 - bclr=4 - } - } - text { - object { - x=3 - y=135 - width=120 - height=15 - } - "basic attribute" { - clr=14 - } - textix="scaler channel" - align="horiz. right" - } - } -} -composite { + monitor { + chan="$(P)ionPhotons" + clr=14 + bclr=51 + } + align="horiz. right" + format="exponential" + limits { + } +} +"text update" { object { - x=24 - y=160 - width=240 - height=44 - } - "composite name"="" - vis="static" - chan="" - children { - composite { - object { - x=28 - y=186 - width=236 - height=18 - } - "composite name"="" - vis="static" - chan="" - children { - text { - object { - x=28 - y=188 - width=95 - height=14 - } - "basic attribute" { - clr=14 - } - textix="using" - align="horiz. right" - } - "text entry" { - object { - x=129 - y=186 - width=80 - height=18 - } - control { - chan="$(P)E_using" - clr=14 - bclr=51 - } - } - "text update" { - object { - x=214 - y=188 - width=50 - height=14 - } - monitor { - chan="$(P)E_using.EGU" - clr=14 - bclr=2 - } - format="string" - } - } - } - composite { - object { - x=24 - y=160 - width=240 - height=18 - } - "composite name"="" - vis="static" - chan="" - children { - text { - object { - x=24 - y=164 - width=95 - height=14 - } - "basic attribute" { - clr=14 - } - textix="monochromator" - align="horiz. right" - } - "text update" { - object { - x=129 - y=160 - width=80 - height=18 - } - monitor { - chan="$(MONO)" - clr=14 - bclr=51 - } - } - "text update" { - object { - x=214 - y=164 - width=50 - height=14 - } - monitor { - chan="$(MONO).EGU" - clr=14 - bclr=2 - } - format="string" - } - } - } + x=220 + y=88 + width=80 + height=15 + } + monitor { + chan="$(P)ionPhotons.EGU" + clr=14 + bclr=2 + } + format="string" + limits { } } "text update" { object { - x=396 - y=133 + x=397 + y=62 width=80 height=18 } monitor { - chan="$(P)VperA" + chan="$(S).S1" clr=14 bclr=3 } format="exponential" + limits { + } } -composite { +"text update" { object { - x=293 - y=110 - width=240 + x=397 + y=37 + width=80 height=18 } - "composite name"="" - vis="static" - chan="" - children { - text { - object { - x=293 - y=112 - width=95 - height=14 - } - "basic attribute" { - clr=14 - } - textix="Current Amp" - align="horiz. right" - } - "text entry" { - object { - x=396 - y=110 - width=80 - height=18 - } - control { - chan="$(P)VperA" - clr=14 - bclr=51 - } - format="exponential" - } - "text update" { - object { - x=483 - y=112 - width=50 - height=14 - } - monitor { - chan="$(P)VperA.EGU" - clr=14 - bclr=2 - } - format="string" - } + monitor { + chan="$(S).FREQ" + clr=14 + bclr=3 + } + format="exponential" + limits { + } +} +text { + object { + x=482 + y=39 + width=70 + height=14 + } + "basic attribute" { + clr=14 + } + textix="Hz" +} +text { + object { + x=482 + y=64 + width=70 + height=14 + } + "basic attribute" { + clr=14 + } + textix="scaler cnts" +} +text { + object { + x=482 + y=89 + width=70 + height=14 + } + "basic attribute" { + clr=14 + } + textix="scaler cnts" +} +text { + object { + x=292 + y=39 + width=95 + height=14 + } + "basic attribute" { + clr=14 + } + textix="counter clock" + align="horiz. right" +} +text { + object { + x=292 + y=64 + width=95 + height=14 + } + "basic attribute" { + clr=14 + } + textix="clock ticks" + align="horiz. right" +} +text { + object { + x=292 + y=89 + width=95 + height=14 + } + "basic attribute" { + clr=14 + } + textix="Io counts" + align="horiz. right" +} +"text update" { + object { + x=397 + y=87 + width=80 + height=18 + } + monitor { + chan="$(S).S5" + clr=14 + bclr=3 + } + limits { + } +} +text { + object { + x=377 + y=349 + width=140 + height=12 + } + "basic attribute" { + clr=14 + } + textix="2'' proportional cntr" + align="horiz. right" +} +"text entry" { + object { + x=404 + y=322 + width=60 + height=25 + } + control { + chan="$(P)efficiency" + clr=14 + bclr=3 + } + limits { + } +} +menu { + object { + x=468 + y=321 + width=75 + height=23 + } + control { + chan="$(P)ArPcntr" + clr=14 + bclr=2 + } +} +"text update" { + object { + x=272 + y=327 + width=131 + height=15 + } + monitor { + chan="$(P)efficiency.DESC" + clr=14 + bclr=2 + } + align="horiz. right" + format="string" + limits { + } +} +polyline { + object { + x=10 + y=367 + width=525 + height=4 + } + "basic attribute" { + clr=14 + width=4 + } + points { + (12,369) + (533,369) + } +} +"text update" { + object { + x=272 + y=409 + width=131 + height=15 + } + monitor { + chan="$(P)kapton2.DESC" + clr=14 + bclr=2 + } + align="horiz. right" + format="string" + limits { + } +} +"text entry" { + object { + x=404 + y=404 + width=60 + height=25 + } + control { + chan="$(P)kapton2" + clr=14 + bclr=3 + } + limits { + } +} +"text update" { + object { + x=468 + y=409 + width=50 + height=15 + } + monitor { + chan="$(P)kapton2.EGU" + clr=14 + bclr=2 + } + format="string" + limits { + } +} +"text update" { + object { + x=272 + y=380 + width=131 + height=15 + } + monitor { + chan="$(P)kapton1.DESC" + clr=14 + bclr=2 + } + align="horiz. right" + format="string" + limits { + } +} +"text entry" { + object { + x=404 + y=375 + width=60 + height=25 + } + control { + chan="$(P)kapton1" + clr=14 + bclr=3 + } + limits { + } +} +"text update" { + object { + x=468 + y=380 + width=50 + height=15 + } + monitor { + chan="$(P)kapton1.EGU" + clr=14 + bclr=2 + } + format="string" + limits { + } +} +"text update" { + object { + x=10 + y=380 + width=131 + height=15 + } + monitor { + chan="$(P)activeLen.DESC" + clr=14 + bclr=2 + } + align="horiz. right" + format="string" + limits { + } +} +"text entry" { + object { + x=142 + y=375 + width=60 + height=25 + } + control { + chan="$(P)activeLen" + clr=14 + bclr=3 + } + limits { + } +} +"text update" { + object { + x=206 + y=380 + width=50 + height=15 + } + monitor { + chan="$(P)activeLen.EGU" + clr=14 + bclr=2 + } + format="string" + limits { + } +} +"text update" { + object { + x=10 + y=409 + width=131 + height=15 + } + monitor { + chan="$(P)deadFront.DESC" + clr=14 + bclr=2 + } + align="horiz. right" + format="string" + limits { + } +} +"text entry" { + object { + x=142 + y=404 + width=60 + height=25 + } + control { + chan="$(P)deadFront" + clr=14 + bclr=3 + } + limits { + } +} +"text update" { + object { + x=206 + y=409 + width=50 + height=15 + } + monitor { + chan="$(P)deadFront.EGU" + clr=14 + bclr=2 + } + format="string" + limits { + } +} +"text update" { + object { + x=10 + y=438 + width=131 + height=15 + } + monitor { + chan="$(P)deadRear.DESC" + clr=14 + bclr=2 + } + align="horiz. right" + format="string" + limits { + } +} +"text entry" { + object { + x=142 + y=433 + width=60 + height=25 + } + control { + chan="$(P)deadRear" + clr=14 + bclr=3 + } + limits { + } +} +"text update" { + object { + x=206 + y=438 + width=50 + height=15 + } + monitor { + chan="$(P)deadRear.EGU" + clr=14 + bclr=2 + } + format="string" + limits { + } +} +text { + object { + x=176 + y=218 + width=250 + height=15 + } + "basic attribute" { + clr=29 + } + textix="ion chamber fill gas (atm)" + align="horiz. centered" +} +rectangle { + object { + x=104 + y=210 + width=400 + height=75 + } + "basic attribute" { + clr=29 + fill="outline" + width=5 + } +} +"text entry" { + object { + x=342 + y=252 + width=60 + height=25 + } + control { + chan="$(P)xAr" + clr=14 + bclr=3 + } + limits { + } +} +text { + object { + x=342 + y=237 + width=60 + height=15 + } + "basic attribute" { + clr=14 + } + textix="Argon" + align="horiz. centered" +} +"text entry" { + object { + x=412 + y=252 + width=60 + height=25 + } + control { + chan="$(P)xAr" + clr=14 + bclr=3 + } + limits { + } +} +text { + object { + x=412 + y=237 + width=60 + height=15 + } + "basic attribute" { + clr=14 + } + textix="CO2" + align="horiz. centered" +} +"text entry" { + object { + x=272 + y=252 + width=60 + height=25 + } + control { + chan="$(P)xHe" + clr=14 + bclr=3 + } + limits { + } +} +text { + object { + x=272 + y=237 + width=60 + height=15 + } + "basic attribute" { + clr=14 + } + textix="He" + align="horiz. centered" +} +text { + object { + x=132 + y=237 + width=60 + height=15 + } + "basic attribute" { + clr=14 + } + textix="Air" + align="horiz. centered" +} +"text entry" { + object { + x=132 + y=252 + width=60 + height=25 + } + control { + chan="$(P)xAir" + clr=14 + bclr=3 + } + limits { + } +} +text { + object { + x=202 + y=237 + width=60 + height=15 + } + "basic attribute" { + clr=14 + } + textix="Nitrogen" + align="horiz. centered" +} +"text entry" { + object { + x=202 + y=252 + width=60 + height=25 + } + control { + chan="$(P)xN2" + clr=14 + bclr=3 + } + limits { + } +} +text { + object { + x=306 + y=444 + width=236 + height=14 + } + "basic attribute" { + clr=14 + } + textix="CHESS chamber (17.5, 60, 17.5 mm)" + align="horiz. right" +} +"text update" { + object { + x=171 + y=135 + width=110 + height=15 + } + monitor { + chan="$(P)scaler.DESC" + clr=14 + bclr=2 + } + format="string" + limits { + } +} +menu { + object { + x=128 + y=132 + width=35 + height=18 + } + control { + chan="$(P)scaler" + clr=14 + bclr=4 + } +} +text { + object { + x=3 + y=135 + width=120 + height=15 + } + "basic attribute" { + clr=14 + } + textix="scaler channel" + align="horiz. right" +} +text { + object { + x=28 + y=188 + width=95 + height=14 + } + "basic attribute" { + clr=14 + } + textix="using" + align="horiz. right" +} +"text entry" { + object { + x=129 + y=186 + width=80 + height=18 + } + control { + chan="$(P)E_using" + clr=14 + bclr=51 + } + limits { + } +} +"text update" { + object { + x=214 + y=188 + width=50 + height=14 + } + monitor { + chan="$(P)E_using.EGU" + clr=14 + bclr=2 + } + format="string" + limits { + } +} +text { + object { + x=24 + y=164 + width=95 + height=14 + } + "basic attribute" { + clr=14 + } + textix="monochromator" + align="horiz. right" +} +"text update" { + object { + x=129 + y=160 + width=80 + height=18 + } + monitor { + chan="$(MONO)" + clr=14 + bclr=51 + } + limits { + } +} +"text update" { + object { + x=214 + y=164 + width=50 + height=14 + } + monitor { + chan="$(MONO).EGU" + clr=14 + bclr=2 + } + format="string" + limits { + } +} +"text update" { + object { + x=396 + y=133 + width=80 + height=18 + } + monitor { + chan="$(P)VperA" + clr=14 + bclr=3 + } + format="exponential" + limits { + } +} +text { + object { + x=293 + y=112 + width=95 + height=14 + } + "basic attribute" { + clr=14 + } + textix="Current Amp" + align="horiz. right" +} +"text entry" { + object { + x=396 + y=110 + width=80 + height=18 + } + control { + chan="$(P)VperA" + clr=14 + bclr=51 + } + format="exponential" + limits { + } +} +"text update" { + object { + x=483 + y=112 + width=50 + height=14 + } + monitor { + chan="$(P)VperA.EGU" + clr=14 + bclr=2 + } + format="string" + limits { } } diff --git a/opticsApp/op/adl/Io_small.adl b/opticsApp/op/adl/Io_small.adl index 5747530..32108fa 100755 --- a/opticsApp/op/adl/Io_small.adl +++ b/opticsApp/op/adl/Io_small.adl @@ -1,7 +1,7 @@ file { - name="/export/home/laser/femto/7idD/7idDApp/op/adl/Io_small.adl" - version=020305 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/Io_small.adl" + version=030111 } display { object { @@ -113,67 +113,54 @@ text { textix="Io_small.adl" align="horiz. right" } -composite { +"text update" { object { x=1 + y=35 + width=113 + height=18 + } + monitor { + chan="$(P)flux.DESC" + clr=14 + bclr=2 + } + align="horiz. right" + format="string" + limits { + } +} +"text update" { + object { + x=115 y=33 - width=299 + width=100 height=23 } - "composite name"="" - vis="static" - chan="" - children { - "text update" { - object { - x=1 - y=35 - width=113 - height=18 - } - monitor { - chan="$(P)flux.DESC" - clr=14 - bclr=2 - } - align="horiz. right" - format="string" - limits { - } - } - "text update" { - object { - x=115 - y=33 - width=100 - height=23 - } - monitor { - chan="$(P)flux" - clr=14 - bclr=51 - } - align="horiz. right" - format="exponential" - limits { - } - } - "text update" { - object { - x=220 - y=37 - width=80 - height=15 - } - monitor { - chan="$(P)flux.EGU" - clr=14 - bclr=2 - } - format="string" - limits { - } - } + monitor { + chan="$(P)flux" + clr=14 + bclr=51 + } + align="horiz. right" + format="exponential" + limits { + } +} +"text update" { + object { + x=220 + y=37 + width=80 + height=15 + } + monitor { + chan="$(P)flux.EGU" + clr=14 + bclr=2 + } + format="string" + limits { } } "related display" { @@ -193,67 +180,54 @@ composite { bclr=2 label="all" } -composite { +"text update" { object { x=1 + y=63 + width=113 + height=18 + } + monitor { + chan="$(P)detector.DESC" + clr=14 + bclr=2 + } + align="horiz. right" + format="string" + limits { + } +} +"text update" { + object { + x=115 y=61 - width=299 + width=100 height=23 } - "composite name"="" - vis="static" - chan="" - children { - "text update" { - object { - x=1 - y=63 - width=113 - height=18 - } - monitor { - chan="$(P)detector.DESC" - clr=14 - bclr=2 - } - align="horiz. right" - format="string" - limits { - } - } - "text update" { - object { - x=115 - y=61 - width=100 - height=23 - } - monitor { - chan="$(P)detector" - clr=14 - bclr=51 - } - align="horiz. right" - format="exponential" - limits { - } - } - "text update" { - object { - x=220 - y=65 - width=80 - height=15 - } - monitor { - chan="$(P)detector.EGU" - clr=14 - bclr=2 - } - format="string" - limits { - } - } + monitor { + chan="$(P)detector" + clr=14 + bclr=51 + } + align="horiz. right" + format="exponential" + limits { + } +} +"text update" { + object { + x=220 + y=65 + width=80 + height=15 + } + monitor { + chan="$(P)detector.EGU" + clr=14 + bclr=2 + } + format="string" + limits { } } text { diff --git a/opticsApp/op/adl/MLLH.adl b/opticsApp/op/adl/MLLH.adl new file mode 100644 index 0000000..b64350d --- /dev/null +++ b/opticsApp/op/adl/MLLH.adl @@ -0,0 +1,197 @@ + +file { + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/MLLH.adl" + version=030107 +} +display { + object { + x=503 + y=49 + width=390 + height=250 + } + clr=14 + bclr=3 + cmap="" + gridSpacing=5 + gridOn=0 + snapToGrid=1 +} +"color map" { + ncolors=65 + colors { + ffffff, + ececec, + dadada, + c8c8c8, + bbbbbb, + aeaeae, + 9e9e9e, + 919191, + 858585, + 787878, + 696969, + 5a5a5a, + 464646, + 2d2d2d, + 000000, + 00d800, + 1ebb00, + 339900, + 2d7f00, + 216c00, + fd0000, + de1309, + be190b, + a01207, + 820400, + 5893ff, + 597ee1, + 4b6ec7, + 3a5eab, + 27548d, + fbf34a, + f9da3c, + eeb62b, + e19015, + cd6100, + ffb0ff, + d67fe2, + ae4ebc, + 8b1a96, + 610a75, + a4aaff, + 8793e2, + 6a73c1, + 4d52a4, + 343386, + c7bb6d, + b79d5c, + a47e3c, + 7d5627, + 58340f, + 99ffff, + 73dfff, + 4ea5f9, + 2a63e4, + 0a00b8, + ebf1b5, + d4db9d, + bbc187, + a6a462, + 8b8239, + 73ff6b, + 52da3b, + 3cb420, + 289315, + 1a7309, + } +} +composite { + object { + x=0 + y=0 + width=390 + height=206 + } + "composite name"="" + "composite file"="MLLH_bare.adl;P=$(P),Q=$(Q)" +} +"related display" { + object { + x=290 + y=215 + width=45 + height=20 + } + display[0] { + label="th" + name="motorx.adl" + args="P=$(P),M=$(Q)th" + } + display[1] { + label="z" + name="motorx.adl" + args="P=$(P),M=$(Q)z" + } + display[2] { + label="x" + name="motorx.adl" + args="P=$(P),M=$(Q)x" + } + display[3] { + label="t1" + name="yyTransform.adl" + args="P=$(P),T=$(Q)t1" + } + display[4] { + label="t2" + name="yyTransform.adl" + args="P=$(P),T=$(Q)t2" + } + display[5] { + label="t3" + name="yyTransform.adl" + args="P=$(P),T=$(Q)t3" + } + display[6] { + label="calcDone" + name="yyCalcoutRecord.adl" + args="P=$(P),C=$(Q)calcDone" + } + display[7] { + label="softPut" + name="yySeq.adl" + args="P=$(P),S=$(Q)softPut" + } + clr=0 + bclr=17 + label="-debug" +} +"related display" { + object { + x=340 + y=215 + width=40 + height=20 + } + display[0] { + label="more" + name="MLLH_more.adl" + args="P=$(P),Q=$(Q)" + policy="replace display" + } + clr=0 + bclr=17 + label="-More" +} +"message button" { + object { + x=20 + y=215 + width=110 + height=20 + } + control { + chan="$(P)$(Q)sync" + clr=14 + bclr=51 + } + label="Sync to Motors" + press_msg="1" +} +"message button" { + object { + x=160 + y=215 + width=100 + height=30 + } + control { + chan="$(P)$(Q)stop" + clr=30 + bclr=20 + } + label="Stop MLLH" + press_msg="1" +} diff --git a/opticsApp/op/adl/MLLH_bare.adl b/opticsApp/op/adl/MLLH_bare.adl new file mode 100644 index 0000000..41cdec6 --- /dev/null +++ b/opticsApp/op/adl/MLLH_bare.adl @@ -0,0 +1,159 @@ + +file { + name="/home/oxygen/MOONEY/epics/synApps/support/xxx/xxxApp/op/adl/MLLH_bare.adl" + version=030107 +} +display { + object { + x=945 + y=281 + width=390 + height=210 + } + clr=14 + bclr=3 + cmap="" + gridSpacing=5 + gridOn=0 + snapToGrid=0 +} +"color map" { + ncolors=65 + colors { + ffffff, + ececec, + dadada, + c8c8c8, + bbbbbb, + aeaeae, + 9e9e9e, + 919191, + 858585, + 787878, + 696969, + 5a5a5a, + 464646, + 2d2d2d, + 000000, + 00d800, + 1ebb00, + 339900, + 2d7f00, + 216c00, + fd0000, + de1309, + be190b, + a01207, + 820400, + 5893ff, + 597ee1, + 4b6ec7, + 3a5eab, + 27548d, + fbf34a, + f9da3c, + eeb62b, + e19015, + cd6100, + ffb0ff, + d67fe2, + ae4ebc, + 8b1a96, + 610a75, + a4aaff, + 8793e2, + 6a73c1, + 4d52a4, + 343386, + c7bb6d, + b79d5c, + a47e3c, + 7d5627, + 58340f, + 99ffff, + 73dfff, + 4ea5f9, + 2a63e4, + 0a00b8, + ebf1b5, + d4db9d, + bbc187, + a6a462, + 8b8239, + 73ff6b, + 52da3b, + 3cb420, + 289315, + 1a7309, + } +} +rectangle { + object { + x=0 + y=0 + width=390 + height=25 + } + "basic attribute" { + clr=0 + } +} +composite { + object { + x=10 + y=30 + width=116 + height=176 + } + "composite name"="" + "composite file"="motorx_bare.adl;P=$(P),M=$(Q)th" +} +composite { + object { + x=135 + y=30 + width=116 + height=176 + } + "composite name"="" + "composite file"="motorx_bare.adl;P=$(P),M=$(Q)z" +} +composite { + object { + x=260 + y=30 + width=116 + height=176 + } + "composite name"="" + "composite file"="motorx_bare.adl;P=$(P),M=$(Q)x" +} +text { + object { + x=10 + y=0 + width=370 + height=22 + } + "basic attribute" { + clr=14 + } + textix="MLL H stage" + align="horiz. centered" +} +polyline { + object { + x=0 + y=22 + width=389 + height=3 + } + "basic attribute" { + clr=54 + width=3 + } + points { + (1,23) + (387,23) + } +} diff --git a/opticsApp/op/adl/MLLH_more.adl b/opticsApp/op/adl/MLLH_more.adl new file mode 100644 index 0000000..2ccee73 --- /dev/null +++ b/opticsApp/op/adl/MLLH_more.adl @@ -0,0 +1,563 @@ + +file { + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/MLLH_more.adl" + version=030111 +} +display { + object { + x=993 + y=401 + width=390 + height=420 + } + clr=14 + bclr=3 + cmap="" + gridSpacing=5 + gridOn=0 + snapToGrid=1 +} +"color map" { + ncolors=65 + colors { + ffffff, + ececec, + dadada, + c8c8c8, + bbbbbb, + aeaeae, + 9e9e9e, + 919191, + 858585, + 787878, + 696969, + 5a5a5a, + 464646, + 2d2d2d, + 000000, + 00d800, + 1ebb00, + 339900, + 2d7f00, + 216c00, + fd0000, + de1309, + be190b, + a01207, + 820400, + 5893ff, + 597ee1, + 4b6ec7, + 3a5eab, + 27548d, + fbf34a, + f9da3c, + eeb62b, + e19015, + cd6100, + ffb0ff, + d67fe2, + ae4ebc, + 8b1a96, + 610a75, + a4aaff, + 8793e2, + 6a73c1, + 4d52a4, + 343386, + c7bb6d, + b79d5c, + a47e3c, + 7d5627, + 58340f, + 99ffff, + 73dfff, + 4ea5f9, + 2a63e4, + 0a00b8, + ebf1b5, + d4db9d, + bbc187, + a6a462, + 8b8239, + 73ff6b, + 52da3b, + 3cb420, + 289315, + 1a7309, + } +} +rectangle { + object { + x=104 + y=347 + width=237 + height=33 + } + "basic attribute" { + clr=14 + fill="outline" + } +} +oval { + object { + x=115 + y=357 + width=12 + height=12 + } + "basic attribute" { + clr=14 + fill="outline" + } +} +oval { + object { + x=318 + y=357 + width=12 + height=12 + } + "basic attribute" { + clr=14 + fill="outline" + } +} +arc { + object { + x=120 + y=290 + width=23 + height=21 + } + "basic attribute" { + clr=14 + fill="outline" + } + begin=7680 + path=8000 +} +arc { + object { + x=91 + y=291 + width=23 + height=21 + } + "basic attribute" { + clr=14 + fill="outline" + } + begin=18880 + path=8000 +} +polyline { + object { + x=107 + y=311 + width=0 + height=36 + } + "basic attribute" { + clr=14 + fill="outline" + } + points { + (107,311) + (107,347) + } +} +polyline { + object { + x=128 + y=311 + width=0 + height=36 + } + "basic attribute" { + clr=14 + fill="outline" + } + points { + (128,311) + (128,347) + } +} +polyline { + object { + x=107 + y=271 + width=0 + height=20 + } + "basic attribute" { + clr=14 + fill="outline" + } + points { + (107,271) + (107,291) + } +} +polyline { + object { + x=128 + y=271 + width=0 + height=20 + } + "basic attribute" { + clr=14 + fill="outline" + } + points { + (128,271) + (128,291) + } +} +polyline { + object { + x=108 + y=270 + width=20 + height=0 + } + "basic attribute" { + clr=14 + fill="outline" + } + points { + (108,270) + (128,270) + } +} +"text entry" { + object { + x=191 + y=306 + width=60 + height=20 + } + control { + chan="$(P)$(Q)xLen" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=28 + y=324 + width=60 + height=20 + } + control { + chan="$(P)$(Q)zBendLen" + clr=14 + bclr=51 + } + limits { + } +} +polyline { + object { + x=92 + y=303 + width=0 + height=60 + } + "basic attribute" { + clr=14 + fill="outline" + } + "dynamic attribute" { + chan="$(P)$(Q)xLen" + } + points { + (92,303) + (92,363) + } +} +polyline { + object { + x=215 + y=384 + width=0 + height=16 + } + "basic attribute" { + clr=14 + fill="outline" + } + "dynamic attribute" { + chan="$(P)$(Q)xLen" + } + points { + (215,384) + (215,400) + } +} +"text entry" { + object { + x=233 + y=391 + width=60 + height=20 + } + control { + chan="$(P)$(Q)zNoseLen" + clr=14 + bclr=51 + } + limits { + } +} +polyline { + object { + x=119 + y=331 + width=202 + height=0 + } + "basic attribute" { + clr=14 + fill="outline" + } + "dynamic attribute" { + chan="$(P)$(Q)xLen" + } + points { + (119,331) + (321,331) + } +} +polygon { + object { + x=210 + y=381 + width=10 + height=10 + } + "basic attribute" { + clr=14 + } + "dynamic attribute" { + chan="$(P)$(Q)zBendLen" + } + points { + (210,391) + (214,381) + (220,391) + (210,391) + } +} +polygon { + object { + x=312 + y=326 + width=10 + height=10 + } + "basic attribute" { + clr=14 + } + "dynamic attribute" { + chan="$(P)$(Q)zBendLen" + } + points { + (312,326) + (322,330) + (312,336) + (312,326) + } +} +polygon { + object { + x=120 + y=326 + width=10 + height=10 + } + "basic attribute" { + clr=14 + } + "dynamic attribute" { + chan="$(P)$(Q)zBendLen" + } + points { + (130,326) + (120,330) + (130,336) + (130,326) + } +} +polygon { + object { + x=210 + y=393 + width=10 + height=10 + } + "basic attribute" { + clr=14 + } + "dynamic attribute" { + chan="$(P)$(Q)zBendLen" + } + points { + (220,393) + (216,403) + (210,393) + (220,393) + } +} +polygon { + object { + x=86 + y=354 + width=10 + height=10 + } + "basic attribute" { + clr=14 + } + "dynamic attribute" { + chan="$(P)$(Q)zBendLen" + } + points { + (96,354) + (92,364) + (86,354) + (96,354) + } +} +polygon { + object { + x=87 + y=301 + width=10 + height=10 + } + "basic attribute" { + clr=14 + } + "dynamic attribute" { + chan="$(P)$(Q)zBendLen" + } + points { + (87,311) + (91,301) + (97,311) + (87,311) + } +} +composite { + object { + x=0 + y=0 + width=390 + height=206 + } + "composite name"="" + "composite file"="MLLH_bare.adl;P=$(P),Q=$(Q)" +} +"related display" { + object { + x=290 + y=230 + width=45 + height=20 + } + display[0] { + label="th" + name="motorx.adl" + args="P=$(P),M=$(Q)th" + } + display[1] { + label="z" + name="motorx.adl" + args="P=$(P),M=$(Q)z" + } + display[2] { + label="x" + name="motorx.adl" + args="P=$(P),M=$(Q)x" + } + display[3] { + label="t1" + name="yyTransform.adl" + args="P=$(P),T=$(Q)t1" + } + display[4] { + label="t2" + name="yyTransform.adl" + args="P=$(P),T=$(Q)t2" + } + display[5] { + label="t3" + name="yyTransform.adl" + args="P=$(P),T=$(Q)t3" + } + display[6] { + label="calcDone" + name="yyCalcoutRecord.adl" + args="P=$(P),C=$(Q)calcDone" + } + display[7] { + label="softPut" + name="yySeq.adl" + args="P=$(P),S=$(Q)softPut" + } + clr=0 + bclr=17 + label="-debug" +} +"related display" { + object { + x=340 + y=230 + width=40 + height=20 + } + display[0] { + label="more" + name="MLLH.adl" + args="P=$(P),Q=$(Q)" + policy="replace display" + } + clr=0 + bclr=17 + label="-Less" +} +"message button" { + object { + x=10 + y=230 + width=40 + height=20 + } + control { + chan="$(P)$(Q)sync" + clr=14 + bclr=51 + } + label="Sync" + press_msg="1" +} +"message button" { + object { + x=160 + y=215 + width=100 + height=30 + } + control { + chan="$(P)$(Q)stop" + clr=30 + bclr=20 + } + label="Stop MLLH" + press_msg="1" +} diff --git a/opticsApp/op/adl/MLLV.adl b/opticsApp/op/adl/MLLV.adl new file mode 100644 index 0000000..439b0db --- /dev/null +++ b/opticsApp/op/adl/MLLV.adl @@ -0,0 +1,222 @@ + +file { + name="/home/oxygen4/MOONEY/epics/synAppsSVN/support/optics/opticsApp/op/adl/MLLV.adl" + version=030107 +} +display { + object { + x=261 + y=346 + width=640 + height=250 + } + clr=14 + bclr=3 + cmap="" + gridSpacing=5 + gridOn=0 + snapToGrid=0 +} +"color map" { + ncolors=65 + colors { + ffffff, + ececec, + dadada, + c8c8c8, + bbbbbb, + aeaeae, + 9e9e9e, + 919191, + 858585, + 787878, + 696969, + 5a5a5a, + 464646, + 2d2d2d, + 000000, + 00d800, + 1ebb00, + 339900, + 2d7f00, + 216c00, + fd0000, + de1309, + be190b, + a01207, + 820400, + 5893ff, + 597ee1, + 4b6ec7, + 3a5eab, + 27548d, + fbf34a, + f9da3c, + eeb62b, + e19015, + cd6100, + ffb0ff, + d67fe2, + ae4ebc, + 8b1a96, + 610a75, + a4aaff, + 8793e2, + 6a73c1, + 4d52a4, + 343386, + c7bb6d, + b79d5c, + a47e3c, + 7d5627, + 58340f, + 99ffff, + 73dfff, + 4ea5f9, + 2a63e4, + 0a00b8, + ebf1b5, + d4db9d, + bbc187, + a6a462, + 8b8239, + 73ff6b, + 52da3b, + 3cb420, + 289315, + 1a7309, + } +} +composite { + object { + x=0 + y=0 + width=640 + height=206 + } + "composite name"="" + "composite file"="MLLV_bare.adl;P=$(P),Q=$(Q)" +} +"related display" { + object { + x=480 + y=215 + width=70 + height=20 + } + display[0] { + label="th" + name="motorx.adl" + args="P=$(P),M=$(Q)th" + } + display[1] { + label="z" + name="motorx.adl" + args="P=$(P),M=$(Q)z" + } + display[2] { + label="y" + name="motorx.adl" + args="P=$(P),M=$(Q)y" + } + display[3] { + label="chi" + name="motorx.adl" + args="P=$(P),M=$(Q)chi" + } + display[4] { + label="x" + name="motorx.adl" + args="P=$(P),M=$(Q)x" + } + display[5] { + label="tFwd" + name="yyTransform.adl" + args="P=$(P),T=$(Q)tFwd" + } + display[6] { + label="tRev" + name="yyTransform.adl" + args="P=$(P),T=$(Q)tRev" + } + display[7] { + label="tLimits" + name="yyTransform.adl" + args="P=$(P),T=$(Q)tLimits" + } + display[8] { + label="tLimits1" + name="yyTransform.adl" + args="P=$(P),T=$(Q)tLimits1" + } + display[9] { + label="calcDone" + name="yyCalcoutRecord.adl" + args="P=$(P),C=$(Q)calcDone" + } + display[10] { + label="closeGate" + name="yyCalcoutRecord.adl" + args="P=$(P),C=$(Q)closeGate" + } + display[11] { + label="misc" + name="MLLV_misc.adl" + args="P=$(P),Q=$(Q)" + } + display[12] { + label="softPut" + name="yySeq.adl" + args="P=$(P),S=$(Q)softPut" + } + clr=0 + bclr=17 + label="-debug" +} +"related display" { + object { + x=555 + y=215 + width=70 + height=20 + } + display[0] { + label="more" + name="MLLV_more.adl" + args="P=$(P),Q=$(Q)" + policy="replace display" + } + clr=0 + bclr=17 + label="-More" +} +"message button" { + object { + x=20 + y=215 + width=110 + height=20 + } + control { + chan="$(P)$(Q)sync" + clr=14 + bclr=51 + } + label="Sync to motors" + press_msg="1" +} +"message button" { + object { + x=270 + y=215 + width=100 + height=30 + } + control { + chan="$(P)$(Q)stop" + clr=30 + bclr=20 + } + label="Stop MLLV" + press_msg="1" +} diff --git a/opticsApp/op/adl/MLLV_bare.adl b/opticsApp/op/adl/MLLV_bare.adl new file mode 100644 index 0000000..1d56ecf --- /dev/null +++ b/opticsApp/op/adl/MLLV_bare.adl @@ -0,0 +1,179 @@ + +file { + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/MLLV_bare.adl" + version=030111 +} +display { + object { + x=600 + y=268 + width=640 + height=210 + } + clr=14 + bclr=3 + cmap="" + gridSpacing=5 + gridOn=0 + snapToGrid=0 +} +"color map" { + ncolors=65 + colors { + ffffff, + ececec, + dadada, + c8c8c8, + bbbbbb, + aeaeae, + 9e9e9e, + 919191, + 858585, + 787878, + 696969, + 5a5a5a, + 464646, + 2d2d2d, + 000000, + 00d800, + 1ebb00, + 339900, + 2d7f00, + 216c00, + fd0000, + de1309, + be190b, + a01207, + 820400, + 5893ff, + 597ee1, + 4b6ec7, + 3a5eab, + 27548d, + fbf34a, + f9da3c, + eeb62b, + e19015, + cd6100, + ffb0ff, + d67fe2, + ae4ebc, + 8b1a96, + 610a75, + a4aaff, + 8793e2, + 6a73c1, + 4d52a4, + 343386, + c7bb6d, + b79d5c, + a47e3c, + 7d5627, + 58340f, + 99ffff, + 73dfff, + 4ea5f9, + 2a63e4, + 0a00b8, + ebf1b5, + d4db9d, + bbc187, + a6a462, + 8b8239, + 73ff6b, + 52da3b, + 3cb420, + 289315, + 1a7309, + } +} +rectangle { + object { + x=0 + y=0 + width=640 + height=25 + } + "basic attribute" { + clr=0 + } +} +composite { + object { + x=10 + y=30 + width=116 + height=176 + } + "composite name"="" + "composite file"="motorx_bare.adl;P=$(P),M=$(Q)th" +} +text { + object { + x=10 + y=0 + width=620 + height=22 + } + "basic attribute" { + clr=14 + } + textix="MLL V stage" + align="horiz. centered" +} +polyline { + object { + x=0 + y=22 + width=638 + height=3 + } + "basic attribute" { + clr=54 + width=3 + } + points { + (1,23) + (636,23) + } +} +composite { + object { + x=135 + y=30 + width=116 + height=176 + } + "composite name"="" + "composite file"="motorx_bare.adl;P=$(P),M=$(Q)z" +} +composite { + object { + x=260 + y=30 + width=116 + height=176 + } + "composite name"="" + "composite file"="motorx_bare.adl;P=$(P),M=$(Q)y" +} +composite { + object { + x=385 + y=30 + width=116 + height=176 + } + "composite name"="" + "composite file"="motorx_bare.adl;P=$(P),M=$(Q)chi" +} +composite { + object { + x=510 + y=30 + width=116 + height=176 + } + "composite name"="" + "composite file"="motorx_bare.adl;P=$(P),M=$(Q)x" +} diff --git a/opticsApp/op/adl/MLLV_more.adl b/opticsApp/op/adl/MLLV_more.adl new file mode 100644 index 0000000..ae6cd5c --- /dev/null +++ b/opticsApp/op/adl/MLLV_more.adl @@ -0,0 +1,222 @@ + +file { + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/MLLV_more.adl" + version=030107 +} +display { + object { + x=905 + y=346 + width=640 + height=250 + } + clr=14 + bclr=3 + cmap="" + gridSpacing=5 + gridOn=0 + snapToGrid=0 +} +"color map" { + ncolors=65 + colors { + ffffff, + ececec, + dadada, + c8c8c8, + bbbbbb, + aeaeae, + 9e9e9e, + 919191, + 858585, + 787878, + 696969, + 5a5a5a, + 464646, + 2d2d2d, + 000000, + 00d800, + 1ebb00, + 339900, + 2d7f00, + 216c00, + fd0000, + de1309, + be190b, + a01207, + 820400, + 5893ff, + 597ee1, + 4b6ec7, + 3a5eab, + 27548d, + fbf34a, + f9da3c, + eeb62b, + e19015, + cd6100, + ffb0ff, + d67fe2, + ae4ebc, + 8b1a96, + 610a75, + a4aaff, + 8793e2, + 6a73c1, + 4d52a4, + 343386, + c7bb6d, + b79d5c, + a47e3c, + 7d5627, + 58340f, + 99ffff, + 73dfff, + 4ea5f9, + 2a63e4, + 0a00b8, + ebf1b5, + d4db9d, + bbc187, + a6a462, + 8b8239, + 73ff6b, + 52da3b, + 3cb420, + 289315, + 1a7309, + } +} +composite { + object { + x=0 + y=0 + width=640 + height=206 + } + "composite name"="" + "composite file"="MLLV_bare.adl;P=$(P),Q=$(Q)" +} +"related display" { + object { + x=555 + y=215 + width=70 + height=20 + } + display[0] { + label="more" + name="MLLV.adl" + args="P=$(P),Q=$(Q)" + policy="replace display" + } + clr=0 + bclr=17 + label="-Less" +} +"message button" { + object { + x=20 + y=215 + width=110 + height=20 + } + control { + chan="$(P)$(Q)sync" + clr=14 + bclr=51 + } + label="Sync to motors" + press_msg="1" +} +"message button" { + object { + x=270 + y=215 + width=100 + height=30 + } + control { + chan="$(P)$(Q)stop" + clr=30 + bclr=20 + } + label="Stop MLLV" + press_msg="1" +} +"related display" { + object { + x=480 + y=215 + width=70 + height=20 + } + display[0] { + label="th" + name="motorx.adl" + args="P=$(P),M=$(Q)th" + } + display[1] { + label="z" + name="motorx.adl" + args="P=$(P),M=$(Q)z" + } + display[2] { + label="y" + name="motorx.adl" + args="P=$(P),M=$(Q)y" + } + display[3] { + label="chi" + name="motorx.adl" + args="P=$(P),M=$(Q)chi" + } + display[4] { + label="x" + name="motorx.adl" + args="P=$(P),M=$(Q)x" + } + display[5] { + label="tFwd" + name="yyTransform.adl" + args="P=$(P),T=$(Q)tFwd" + } + display[6] { + label="tRev" + name="yyTransform.adl" + args="P=$(P),T=$(Q)tRev" + } + display[7] { + label="tLimits" + name="yyTransform.adl" + args="P=$(P),T=$(Q)tLimits" + } + display[8] { + label="tLimits1" + name="yyTransform.adl" + args="P=$(P),T=$(Q)tLimits1" + } + display[9] { + label="calcDone" + name="yyCalcoutRecord.adl" + args="P=$(P),C=$(Q)calcDone" + } + display[10] { + label="closeGate" + name="yyCalcoutRecord.adl" + args="P=$(P),C=$(Q)closeGate" + } + display[11] { + label="misc" + name="MLLV_misc.adl" + args="P=$(P),Q=$(Q)" + } + display[12] { + label="softPut" + name="yySeq.adl" + args="P=$(P),S=$(Q)softPut" + } + clr=0 + bclr=17 + label="-debug" +} diff --git a/opticsApp/op/adl/SGM.adl b/opticsApp/op/adl/SGM.adl index 05457cc..3ba6501 100644 --- a/opticsApp/op/adl/SGM.adl +++ b/opticsApp/op/adl/SGM.adl @@ -1,12 +1,12 @@ file { name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/SGM.adl" - version=030107 + version=030111 } display { object { - x=381 - y=44 + x=812 + y=582 width=592 height=290 } @@ -1604,73 +1604,62 @@ text { textix="AT LIMIT" align="horiz. centered" } -composite { +rectangle { object { x=462 y=120 width=65 height=38 } - "composite name"="" - children { - rectangle { - object { - x=462 - y=120 - width=65 - height=38 - } - "basic attribute" { - clr=9 - } - } - "text update" { - object { - x=467 - y=122 - width=56 - height=10 - } - monitor { - chan="$(P)$(M_x).RRBV" - clr=54 - bclr=9 - } - align="horiz. centered" - limits { - } - } - "text entry" { - object { - x=467 - y=130 - width=56 - height=16 - } - control { - chan="$(P)$(M_x).RVAL" - clr=14 - bclr=51 - } - limits { - } - } - text { - object { - x=462 - y=148 - width=65 - height=10 - } - "basic attribute" { - clr=14 - fill="outline" - } - textix="steps" - align="horiz. centered" - } + "basic attribute" { + clr=9 + } +} +"text update" { + object { + x=467 + y=122 + width=56 + height=10 + } + monitor { + chan="$(P)$(M_x).RRBV" + clr=54 + bclr=9 + } + align="horiz. centered" + limits { + } +} +"text entry" { + object { + x=467 + y=130 + width=56 + height=16 + } + control { + chan="$(P)$(M_x).RVAL" + clr=14 + bclr=51 + } + limits { } } +text { + object { + x=462 + y=148 + width=65 + height=10 + } + "basic attribute" { + clr=14 + fill="outline" + } + textix="steps" + align="horiz. centered" +} "text entry" { object { x=467 @@ -2173,127 +2162,94 @@ text { limits { } } -composite { +"text update" { + object { + x=320 + y=269 + width=65 + height=14 + } + monitor { + chan="$(P)SGM$(N):2Theta.EGU" + clr=54 + bclr=3 + } + limits { + } +} +"text update" { + object { + x=320 + y=249 + width=65 + height=14 + } + monitor { + chan="$(P)SGM$(N):len.EGU" + clr=54 + bclr=3 + } + limits { + } +} +"text update" { object { x=320 y=209 width=65 - height=74 - } - "composite name"="" - children { - composite { - object { - x=320 - y=249 - width=65 - height=34 - } - "composite name"="" - children { - "text update" { - object { - x=320 - y=269 - width=65 - height=14 - } - monitor { - chan="$(P)SGM$(N):2Theta.EGU" - clr=54 - bclr=3 - } - limits { - } - } - "text update" { - object { - x=320 - y=249 - width=65 - height=14 - } - monitor { - chan="$(P)SGM$(N):len.EGU" - clr=54 - bclr=3 - } - limits { - } - } - } - } - "text update" { - object { - x=320 - y=209 - width=65 - height=14 - } - monitor { - chan="$(P)SGM$(N):gDensity.EGU" - clr=54 - bclr=3 - } - limits { - } - } - "text update" { - object { - x=320 - y=229 - width=65 - height=14 - } - monitor { - chan="$(P)SGM$(N):R.EGU" - clr=54 - bclr=3 - } - limits { - } - } - } -} -composite { + height=14 + } + monitor { + chan="$(P)SGM$(N):gDensity.EGU" + clr=54 + bclr=3 + } + limits { + } +} +"text update" { + object { + x=320 + y=229 + width=65 + height=14 + } + monitor { + chan="$(P)SGM$(N):R.EGU" + clr=54 + bclr=3 + } + limits { + } +} +"text update" { + object { + x=325 + y=189 + width=60 + height=14 + } + monitor { + chan="$(P)SGM$(N):m.EGU" + clr=54 + bclr=3 + } + limits { + } +} +"text update" { object { x=255 y=189 - width=130 + width=65 height=14 } - "composite name"="" - children { - "text update" { - object { - x=325 - y=189 - width=60 - height=14 - } - monitor { - chan="$(P)SGM$(N):m.EGU" - clr=54 - bclr=3 - } - limits { - } - } - "text update" { - object { - x=255 - y=189 - width=65 - height=14 - } - monitor { - chan="$(P)SGM$(N):m" - clr=54 - bclr=3 - } - limits { - } - } + monitor { + chan="$(P)SGM$(N):m" + clr=54 + bclr=3 + } + limits { } } "text update" { diff --git a/opticsApp/op/adl/SGM_gratings.adl b/opticsApp/op/adl/SGM_gratings.adl index bbe1146..9823c3a 100644 --- a/opticsApp/op/adl/SGM_gratings.adl +++ b/opticsApp/op/adl/SGM_gratings.adl @@ -1,7 +1,7 @@ file { - name="/home/oxygen4/MOONEY/epics/3.13.2/tmm/tmmApp/op/adl/SGM_gratings_2.0.adl" - version=030000 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/SGM_gratings.adl" + version=030111 } display { object { @@ -87,2753 +87,2720 @@ display { 1a7309, } } -composite { +text { object { x=0 y=20 width=25 - height=338 - } - "composite name"="" - children { - text { - object { - x=0 - y=20 - width=25 - height=14 - } - "basic attribute" { - clr=13 - fill="outline" - } - textix="USE" - align="horiz. centered" - } - "message button" { - object { - x=2 - y=160 - width=22 - height=16 - } - control { - chan="$(P)SGM$(N):grating" - clr=14 - bclr=51 - } - label="7" - release_msg="6" - } - "message button" { - object { - x=2 - y=180 - width=22 - height=16 - } - control { - chan="$(P)SGM$(N):grating" - clr=14 - bclr=51 - } - label="8" - release_msg="7" - } - "message button" { - object { - x=2 - y=200 - width=22 - height=16 - } - control { - chan="$(P)SGM$(N):grating" - clr=14 - bclr=51 - } - label="9" - release_msg="8" - } - "message button" { - object { - x=2 - y=220 - width=22 - height=16 - } - control { - chan="$(P)SGM$(N):grating" - clr=14 - bclr=51 - } - label="10" - release_msg="9" - } - rectangle { - object { - x=0 - y=178 - width=25 - height=20 - } - "basic attribute" { - clr=20 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)SGM$(N):sel_exists_1.DO8" - } - } - rectangle { - object { - x=0 - y=158 - width=25 - height=20 - } - "basic attribute" { - clr=20 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)SGM$(N):sel_exists_1.DO7" - } - } - rectangle { - object { - x=0 - y=198 - width=25 - height=20 - } - "basic attribute" { - clr=20 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)SGM$(N):sel_exists_1.DO9" - } - } - rectangle { - object { - x=0 - y=218 - width=25 - height=20 - } - "basic attribute" { - clr=20 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)SGM$(N):sel_exists_1.DOA" - } - } - "message button" { - object { - x=2 - y=40 - width=22 - height=16 - } - control { - chan="$(P)SGM$(N):grating" - clr=14 - bclr=51 - } - label="1" - release_msg="0" - } - "message button" { - object { - x=2 - y=60 - width=22 - height=16 - } - control { - chan="$(P)SGM$(N):grating" - clr=14 - bclr=51 - } - label="2" - release_msg="1" - } - "message button" { - object { - x=2 - y=80 - width=22 - height=16 - } - control { - chan="$(P)SGM$(N):grating" - clr=14 - bclr=51 - } - label="3" - release_msg="2" - } - "message button" { - object { - x=2 - y=100 - width=22 - height=16 - } - control { - chan="$(P)SGM$(N):grating" - clr=14 - bclr=51 - } - label="4" - release_msg="3" - } - "message button" { - object { - x=2 - y=120 - width=22 - height=16 - } - control { - chan="$(P)SGM$(N):grating" - clr=14 - bclr=51 - } - label="5" - release_msg="4" - } - rectangle { - object { - x=0 - y=78 - width=25 - height=20 - } - "basic attribute" { - clr=20 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)SGM$(N):sel_exists_1.DO3" - } - } - rectangle { - object { - x=0 - y=58 - width=25 - height=20 - } - "basic attribute" { - clr=20 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)SGM$(N):sel_exists_1.DO2" - } - } - rectangle { - object { - x=0 - y=38 - width=25 - height=20 - } - "basic attribute" { - clr=20 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)SGM$(N):sel_exists_1.DO1" - } - } - rectangle { - object { - x=0 - y=98 - width=25 - height=20 - } - "basic attribute" { - clr=20 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)SGM$(N):sel_exists_1.DO4" - } - } - rectangle { - object { - x=0 - y=118 - width=25 - height=20 - } - "basic attribute" { - clr=20 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)SGM$(N):sel_exists_1.DO5" - } - } - "message button" { - object { - x=2 - y=140 - width=22 - height=16 - } - control { - chan="$(P)SGM$(N):grating" - clr=14 - bclr=51 - } - label="6" - release_msg="5" - } - rectangle { - object { - x=0 - y=138 - width=25 - height=20 - } - "basic attribute" { - clr=20 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)SGM$(N):sel_exists_1.DO6" - } - } - "message button" { - object { - x=2 - y=240 - width=22 - height=16 - } - control { - chan="$(P)SGM$(N):grating" - clr=14 - bclr=51 - } - label="11" - release_msg="10" - } - "message button" { - object { - x=2 - y=260 - width=22 - height=16 - } - control { - chan="$(P)SGM$(N):grating" - clr=14 - bclr=51 - } - label="12" - release_msg="11" - } - "message button" { - object { - x=2 - y=280 - width=22 - height=16 - } - control { - chan="$(P)SGM$(N):grating" - clr=14 - bclr=51 - } - label="13" - release_msg="12" - } - "message button" { - object { - x=2 - y=300 - width=22 - height=16 - } - control { - chan="$(P)SGM$(N):grating" - clr=14 - bclr=51 - } - label="14" - release_msg="13" - } - "message button" { - object { - x=2 - y=320 - width=22 - height=16 - } - control { - chan="$(P)SGM$(N):grating" - clr=14 - bclr=51 - } - label="15" - release_msg="14" - } - rectangle { - object { - x=0 - y=278 - width=25 - height=20 - } - "basic attribute" { - clr=20 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)SGM$(N):sel_exists_2.DO3" - } - } - rectangle { - object { - x=0 - y=258 - width=25 - height=20 - } - "basic attribute" { - clr=20 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)SGM$(N):sel_exists_2.DO2" - } - } - rectangle { - object { - x=0 - y=238 - width=25 - height=20 - } - "basic attribute" { - clr=20 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)SGM$(N):sel_exists_2.DO1" - } - } - rectangle { - object { - x=0 - y=298 - width=25 - height=20 - } - "basic attribute" { - clr=20 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)SGM$(N):sel_exists_2.DO4" - } - } - rectangle { - object { - x=0 - y=318 - width=25 - height=20 - } - "basic attribute" { - clr=20 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)SGM$(N):sel_exists_2.DO5" - } - } - "message button" { - object { - x=2 - y=340 - width=22 - height=16 - } - control { - chan="$(P)SGM$(N):grating" - clr=14 - bclr=51 - } - label="16" - release_msg="15" - } - rectangle { - object { - x=0 - y=338 - width=25 - height=20 - } - "basic attribute" { - clr=20 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)SGM$(N):sel_exists_2.DO6" - } - } - } -} -composite { + height=14 + } + "basic attribute" { + clr=13 + fill="outline" + } + textix="USE" + align="horiz. centered" +} +"message button" { object { - x=30 + x=2 + y=160 + width=22 + height=16 + } + control { + chan="$(P)SGM$(N):grating" + clr=14 + bclr=51 + } + label="7" + release_msg="6" +} +"message button" { + object { + x=2 + y=180 + width=22 + height=16 + } + control { + chan="$(P)SGM$(N):grating" + clr=14 + bclr=51 + } + label="8" + release_msg="7" +} +"message button" { + object { + x=2 + y=200 + width=22 + height=16 + } + control { + chan="$(P)SGM$(N):grating" + clr=14 + bclr=51 + } + label="9" + release_msg="8" +} +"message button" { + object { + x=2 + y=220 + width=22 + height=16 + } + control { + chan="$(P)SGM$(N):grating" + clr=14 + bclr=51 + } + label="10" + release_msg="9" +} +rectangle { + object { + x=0 + y=178 + width=25 + height=20 + } + "basic attribute" { + clr=20 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)SGM$(N):sel_exists_1.DO8" + } +} +rectangle { + object { + x=0 + y=158 + width=25 + height=20 + } + "basic attribute" { + clr=20 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)SGM$(N):sel_exists_1.DO7" + } +} +rectangle { + object { + x=0 + y=198 + width=25 + height=20 + } + "basic attribute" { + clr=20 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)SGM$(N):sel_exists_1.DO9" + } +} +rectangle { + object { + x=0 + y=218 + width=25 + height=20 + } + "basic attribute" { + clr=20 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)SGM$(N):sel_exists_1.DOA" + } +} +"message button" { + object { + x=2 + y=40 + width=22 + height=16 + } + control { + chan="$(P)SGM$(N):grating" + clr=14 + bclr=51 + } + label="1" + release_msg="0" +} +"message button" { + object { + x=2 + y=60 + width=22 + height=16 + } + control { + chan="$(P)SGM$(N):grating" + clr=14 + bclr=51 + } + label="2" + release_msg="1" +} +"message button" { + object { + x=2 + y=80 + width=22 + height=16 + } + control { + chan="$(P)SGM$(N):grating" + clr=14 + bclr=51 + } + label="3" + release_msg="2" +} +"message button" { + object { + x=2 + y=100 + width=22 + height=16 + } + control { + chan="$(P)SGM$(N):grating" + clr=14 + bclr=51 + } + label="4" + release_msg="3" +} +"message button" { + object { + x=2 + y=120 + width=22 + height=16 + } + control { + chan="$(P)SGM$(N):grating" + clr=14 + bclr=51 + } + label="5" + release_msg="4" +} +rectangle { + object { + x=0 + y=78 + width=25 + height=20 + } + "basic attribute" { + clr=20 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)SGM$(N):sel_exists_1.DO3" + } +} +rectangle { + object { + x=0 + y=58 + width=25 + height=20 + } + "basic attribute" { + clr=20 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)SGM$(N):sel_exists_1.DO2" + } +} +rectangle { + object { + x=0 + y=38 + width=25 + height=20 + } + "basic attribute" { + clr=20 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)SGM$(N):sel_exists_1.DO1" + } +} +rectangle { + object { + x=0 + y=98 + width=25 + height=20 + } + "basic attribute" { + clr=20 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)SGM$(N):sel_exists_1.DO4" + } +} +rectangle { + object { + x=0 + y=118 + width=25 + height=20 + } + "basic attribute" { + clr=20 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)SGM$(N):sel_exists_1.DO5" + } +} +"message button" { + object { + x=2 + y=140 + width=22 + height=16 + } + control { + chan="$(P)SGM$(N):grating" + clr=14 + bclr=51 + } + label="6" + release_msg="5" +} +rectangle { + object { + x=0 + y=138 + width=25 + height=20 + } + "basic attribute" { + clr=20 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)SGM$(N):sel_exists_1.DO6" + } +} +"message button" { + object { + x=2 + y=240 + width=22 + height=16 + } + control { + chan="$(P)SGM$(N):grating" + clr=14 + bclr=51 + } + label="11" + release_msg="10" +} +"message button" { + object { + x=2 + y=260 + width=22 + height=16 + } + control { + chan="$(P)SGM$(N):grating" + clr=14 + bclr=51 + } + label="12" + release_msg="11" +} +"message button" { + object { + x=2 + y=280 + width=22 + height=16 + } + control { + chan="$(P)SGM$(N):grating" + clr=14 + bclr=51 + } + label="13" + release_msg="12" +} +"message button" { + object { + x=2 + y=300 + width=22 + height=16 + } + control { + chan="$(P)SGM$(N):grating" + clr=14 + bclr=51 + } + label="14" + release_msg="13" +} +"message button" { + object { + x=2 + y=320 + width=22 + height=16 + } + control { + chan="$(P)SGM$(N):grating" + clr=14 + bclr=51 + } + label="15" + release_msg="14" +} +rectangle { + object { + x=0 + y=278 + width=25 + height=20 + } + "basic attribute" { + clr=20 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)SGM$(N):sel_exists_2.DO3" + } +} +rectangle { + object { + x=0 + y=258 + width=25 + height=20 + } + "basic attribute" { + clr=20 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)SGM$(N):sel_exists_2.DO2" + } +} +rectangle { + object { + x=0 + y=238 + width=25 + height=20 + } + "basic attribute" { + clr=20 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)SGM$(N):sel_exists_2.DO1" + } +} +rectangle { + object { + x=0 + y=298 + width=25 + height=20 + } + "basic attribute" { + clr=20 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)SGM$(N):sel_exists_2.DO4" + } +} +rectangle { + object { + x=0 + y=318 + width=25 + height=20 + } + "basic attribute" { + clr=20 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)SGM$(N):sel_exists_2.DO5" + } +} +"message button" { + object { + x=2 + y=340 + width=22 + height=16 + } + control { + chan="$(P)SGM$(N):grating" + clr=14 + bclr=51 + } + label="16" + release_msg="15" +} +rectangle { + object { + x=0 + y=338 + width=25 + height=20 + } + "basic attribute" { + clr=20 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)SGM$(N):sel_exists_2.DO6" + } +} +"text entry" { + object { + x=555 y=40 - width=565 - height=346 - } - "composite name"="" - children { - "text entry" { - object { - x=555 - y=40 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_exists_1.DO1" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=555 - y=60 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_exists_1.DO2" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=555 - y=80 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_exists_1.DO3" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=555 - y=100 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_exists_1.DO4" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=555 - y=120 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_exists_1.DO5" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=555 - y=140 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_exists_1.DO6" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=555 - y=160 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_exists_1.DO7" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=555 - y=180 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_exists_1.DO8" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=555 - y=200 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_exists_1.DO9" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=555 - y=220 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_exists_1.DOA" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=555 - y=240 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_exists_2.DO1" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=555 - y=260 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_exists_2.DO2" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=555 - y=280 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_exists_2.DO3" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=555 - y=300 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_exists_2.DO4" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=555 - y=320 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_exists_2.DO5" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=555 - y=340 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_exists_2.DO6" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=30 - y=40 - width=100 - height=16 - } - control { - chan="$(P)SGM$(N):sel_desc_1.STR1" - clr=14 - bclr=1 - } - limits { - } - } - "text entry" { - object { - x=30 - y=60 - width=100 - height=16 - } - control { - chan="$(P)SGM$(N):sel_desc_1.STR2" - clr=14 - bclr=1 - } - limits { - } - } - "text entry" { - object { - x=30 - y=80 - width=100 - height=16 - } - control { - chan="$(P)SGM$(N):sel_desc_1.STR3" - clr=14 - bclr=1 - } - limits { - } - } - "text entry" { - object { - x=30 - y=100 - width=100 - height=16 - } - control { - chan="$(P)SGM$(N):sel_desc_1.STR4" - clr=14 - bclr=1 - } - limits { - } - } - "text entry" { - object { - x=30 - y=120 - width=100 - height=16 - } - control { - chan="$(P)SGM$(N):sel_desc_1.STR5" - clr=14 - bclr=1 - } - limits { - } - } - "text entry" { - object { - x=30 - y=140 - width=100 - height=16 - } - control { - chan="$(P)SGM$(N):sel_desc_1.STR6" - clr=14 - bclr=1 - } - limits { - } - } - "text entry" { - object { - x=30 - y=160 - width=100 - height=16 - } - control { - chan="$(P)SGM$(N):sel_desc_1.STR7" - clr=14 - bclr=1 - } - limits { - } - } - "text entry" { - object { - x=30 - y=180 - width=100 - height=16 - } - control { - chan="$(P)SGM$(N):sel_desc_1.STR8" - clr=14 - bclr=1 - } - limits { - } - } - "text entry" { - object { - x=30 - y=200 - width=100 - height=16 - } - control { - chan="$(P)SGM$(N):sel_desc_1.STR9" - clr=14 - bclr=1 - } - limits { - } - } - "text entry" { - object { - x=30 - y=220 - width=100 - height=16 - } - control { - chan="$(P)SGM$(N):sel_desc_1.STRA" - clr=14 - bclr=1 - } - limits { - } - } - "text entry" { - object { - x=30 - y=240 - width=100 - height=16 - } - control { - chan="$(P)SGM$(N):sel_desc_2.STR1" - clr=14 - bclr=1 - } - limits { - } - } - "text entry" { - object { - x=30 - y=260 - width=100 - height=16 - } - control { - chan="$(P)SGM$(N):sel_desc_2.STR2" - clr=14 - bclr=1 - } - limits { - } - } - "text entry" { - object { - x=30 - y=280 - width=100 - height=16 - } - control { - chan="$(P)SGM$(N):sel_desc_2.STR3" - clr=14 - bclr=1 - } - limits { - } - } - "text entry" { - object { - x=30 - y=300 - width=100 - height=16 - } - control { - chan="$(P)SGM$(N):sel_desc_2.STR4" - clr=14 - bclr=1 - } - limits { - } - } - "text entry" { - object { - x=30 - y=320 - width=100 - height=16 - } - control { - chan="$(P)SGM$(N):sel_desc_2.STR5" - clr=14 - bclr=1 - } - limits { - } - } - "text entry" { - object { - x=30 - y=340 - width=100 - height=16 - } - control { - chan="$(P)SGM$(N):sel_desc_2.STR6" - clr=14 - bclr=1 - } - limits { - } - } - "text entry" { - object { - x=135 - y=160 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_m_1.DO7" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=180 - y=160 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_den_1.DO7" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=245 - y=160 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_R_1.DO7" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=310 - y=160 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Wlow_1.DO7" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=375 - y=160 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Whigh_1.DO7" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=440 - y=160 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_loc_1.DO7" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=135 - y=180 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_m_1.DO8" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=180 - y=180 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_den_1.DO8" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=245 - y=180 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_R_1.DO8" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=310 - y=180 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Wlow_1.DO8" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=375 - y=180 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Whigh_1.DO8" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=440 - y=180 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_loc_1.DO8" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=135 - y=200 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_m_1.DO9" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=180 - y=200 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_den_1.DO9" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=245 - y=200 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_R_1.DO9" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=310 - y=200 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Wlow_1.DO9" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=375 - y=200 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Whigh_1.DO9" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=440 - y=200 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_loc_1.DO9" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=135 - y=220 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_m_1.DOA" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=180 - y=220 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_den_1.DOA" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=245 - y=220 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_R_1.DOA" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=310 - y=220 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Wlow_1.DOA" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=375 - y=220 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Whigh_1.DOA" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=440 - y=220 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_loc_1.DOA" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=135 - y=40 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_m_1.DO1" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=180 - y=40 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_den_1.DO1" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=245 - y=40 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_R_1.DO1" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=310 - y=40 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Wlow_1.DO1" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=375 - y=40 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Whigh_1.DO1" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=440 - y=40 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_loc_1.DO1" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=135 - y=60 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_m_1.DO2" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=180 - y=60 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_den_1.DO2" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=245 - y=60 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_R_1.DO2" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=310 - y=60 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Wlow_1.DO2" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=375 - y=60 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Whigh_1.DO2" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=440 - y=60 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_loc_1.DO2" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=135 - y=80 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_m_1.DO3" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=180 - y=80 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_den_1.DO3" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=245 - y=80 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_R_1.DO3" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=310 - y=80 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Wlow_1.DO3" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=375 - y=80 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Whigh_1.DO3" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=440 - y=80 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_loc_1.DO3" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=135 - y=100 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_m_1.DO4" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=180 - y=100 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_den_1.DO4" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=245 - y=100 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_R_1.DO4" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=310 - y=100 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Wlow_1.DO4" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=375 - y=100 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Whigh_1.DO4" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=440 - y=100 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_loc_1.DO4" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=135 - y=120 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_m_1.DO5" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=180 - y=120 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_den_1.DO5" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=245 - y=120 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_R_1.DO5" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=310 - y=120 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Wlow_1.DO5" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=375 - y=120 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Whigh_1.DO5" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=440 - y=120 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_loc_1.DO6" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=135 - y=140 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_m_1.DO6" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=180 - y=140 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_den_1.DO6" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=245 - y=140 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_R_1.DO6" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=310 - y=140 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Wlow_1.DO6" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=375 - y=140 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Whigh_1.DO6" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=440 - y=140 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_loc_1.DO6" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=135 - y=240 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_m_2.DO1" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=180 - y=240 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_den_2.DO1" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=245 - y=240 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_R_2.DO1" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=310 - y=240 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Wlow_2.DO1" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=375 - y=240 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Whigh_2.DO1" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=440 - y=240 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_loc_2.DO1" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=135 - y=260 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_m_2.DO2" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=180 - y=260 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_den_2.DO2" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=245 - y=260 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_R_2.DO2" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=310 - y=260 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Wlow_2.DO2" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=375 - y=260 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Whigh_2.DO2" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=440 - y=260 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_loc_2.DO2" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=135 - y=280 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_m_2.DO3" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=180 - y=280 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_den_2.DO3" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=245 - y=280 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_R_2.DO3" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=310 - y=280 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Wlow_2.DO3" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=375 - y=280 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Whigh_2.DO3" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=440 - y=280 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_loc_2.DO3" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=135 - y=300 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_m_2.DO4" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=180 - y=300 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_den_2.DO4" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=245 - y=300 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_R_2.DO4" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=310 - y=300 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Wlow_2.DO4" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=375 - y=300 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Whigh_2.DO4" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=440 - y=300 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_loc_2.DO4" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=135 - y=320 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_m_2.DO5" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=180 - y=320 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_den_2.DO5" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=245 - y=320 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_R_2.DO5" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=310 - y=320 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Wlow_2.DO5" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=375 - y=320 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Whigh_2.DO5" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=440 - y=320 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_loc_2.DO6" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=135 - y=340 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_m_2.DO6" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=180 - y=340 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_den_2.DO6" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=245 - y=340 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_R_2.DO6" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=310 - y=340 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Wlow_2.DO6" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=375 - y=340 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_Whigh_2.DO6" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=440 - y=340 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):sel_loc_2.DO6" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=505 - y=40 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_xOff_1.DO1" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=505 - y=60 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_xOff_1.DO2" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=505 - y=80 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_xOff_1.DO3" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=505 - y=100 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_xOff_1.DO4" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=505 - y=120 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_xOff_1.DO5" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=505 - y=140 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_xOff_1.DO6" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=505 - y=160 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_xOff_1.DO7" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=505 - y=180 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_xOff_1.DO8" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=505 - y=200 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_xOff_1.DO9" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=505 - y=220 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_xOff_1.DOA" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=505 - y=240 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_xOff_2.DO1" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=505 - y=260 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_xOff_2.DO2" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=505 - y=280 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_xOff_2.DO3" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=505 - y=300 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_xOff_2.DO4" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=505 - y=320 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_xOff_2.DO5" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=505 - y=340 - width=40 - height=16 - } - control { - chan="$(P)SGM$(N):sel_xOff_2.DO6" - clr=14 - bclr=51 - } - limits { - } - } - composite { - object { - x=345 - y=370 - width=155 - height=16 - } - "composite name"="" - children { - "text entry" { - object { - x=440 - y=370 - width=60 - height=16 - } - control { - chan="$(P)SGM$(N):StripeWidth" - clr=14 - bclr=51 - } - limits { - } - } - text { - object { - x=345 - y=370 - width=90 - height=14 - } - "basic attribute" { - clr=13 - fill="outline" - } - textix="Stripe width:" - align="horiz. right" - } - } - } + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_exists_1.DO1" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=555 + y=60 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_exists_1.DO2" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=555 + y=80 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_exists_1.DO3" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=555 + y=100 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_exists_1.DO4" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=555 + y=120 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_exists_1.DO5" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=555 + y=140 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_exists_1.DO6" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=555 + y=160 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_exists_1.DO7" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=555 + y=180 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_exists_1.DO8" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=555 + y=200 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_exists_1.DO9" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=555 + y=220 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_exists_1.DOA" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=555 + y=240 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_exists_2.DO1" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=555 + y=260 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_exists_2.DO2" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=555 + y=280 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_exists_2.DO3" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=555 + y=300 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_exists_2.DO4" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=555 + y=320 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_exists_2.DO5" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=555 + y=340 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_exists_2.DO6" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=30 + y=40 + width=100 + height=16 + } + control { + chan="$(P)SGM$(N):sel_desc_1.STR1" + clr=14 + bclr=1 + } + limits { + } +} +"text entry" { + object { + x=30 + y=60 + width=100 + height=16 + } + control { + chan="$(P)SGM$(N):sel_desc_1.STR2" + clr=14 + bclr=1 + } + limits { + } +} +"text entry" { + object { + x=30 + y=80 + width=100 + height=16 + } + control { + chan="$(P)SGM$(N):sel_desc_1.STR3" + clr=14 + bclr=1 + } + limits { + } +} +"text entry" { + object { + x=30 + y=100 + width=100 + height=16 + } + control { + chan="$(P)SGM$(N):sel_desc_1.STR4" + clr=14 + bclr=1 + } + limits { + } +} +"text entry" { + object { + x=30 + y=120 + width=100 + height=16 + } + control { + chan="$(P)SGM$(N):sel_desc_1.STR5" + clr=14 + bclr=1 + } + limits { + } +} +"text entry" { + object { + x=30 + y=140 + width=100 + height=16 + } + control { + chan="$(P)SGM$(N):sel_desc_1.STR6" + clr=14 + bclr=1 + } + limits { + } +} +"text entry" { + object { + x=30 + y=160 + width=100 + height=16 + } + control { + chan="$(P)SGM$(N):sel_desc_1.STR7" + clr=14 + bclr=1 + } + limits { + } +} +"text entry" { + object { + x=30 + y=180 + width=100 + height=16 + } + control { + chan="$(P)SGM$(N):sel_desc_1.STR8" + clr=14 + bclr=1 + } + limits { + } +} +"text entry" { + object { + x=30 + y=200 + width=100 + height=16 + } + control { + chan="$(P)SGM$(N):sel_desc_1.STR9" + clr=14 + bclr=1 + } + limits { + } +} +"text entry" { + object { + x=30 + y=220 + width=100 + height=16 + } + control { + chan="$(P)SGM$(N):sel_desc_1.STRA" + clr=14 + bclr=1 + } + limits { + } +} +"text entry" { + object { + x=30 + y=240 + width=100 + height=16 + } + control { + chan="$(P)SGM$(N):sel_desc_2.STR1" + clr=14 + bclr=1 + } + limits { + } +} +"text entry" { + object { + x=30 + y=260 + width=100 + height=16 + } + control { + chan="$(P)SGM$(N):sel_desc_2.STR2" + clr=14 + bclr=1 + } + limits { + } +} +"text entry" { + object { + x=30 + y=280 + width=100 + height=16 + } + control { + chan="$(P)SGM$(N):sel_desc_2.STR3" + clr=14 + bclr=1 + } + limits { + } +} +"text entry" { + object { + x=30 + y=300 + width=100 + height=16 + } + control { + chan="$(P)SGM$(N):sel_desc_2.STR4" + clr=14 + bclr=1 + } + limits { + } +} +"text entry" { + object { + x=30 + y=320 + width=100 + height=16 + } + control { + chan="$(P)SGM$(N):sel_desc_2.STR5" + clr=14 + bclr=1 + } + limits { + } +} +"text entry" { + object { + x=30 + y=340 + width=100 + height=16 + } + control { + chan="$(P)SGM$(N):sel_desc_2.STR6" + clr=14 + bclr=1 + } + limits { + } +} +"text entry" { + object { + x=135 + y=160 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_m_1.DO7" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=180 + y=160 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_den_1.DO7" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=245 + y=160 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_R_1.DO7" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=310 + y=160 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Wlow_1.DO7" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=375 + y=160 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Whigh_1.DO7" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=440 + y=160 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_loc_1.DO7" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=135 + y=180 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_m_1.DO8" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=180 + y=180 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_den_1.DO8" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=245 + y=180 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_R_1.DO8" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=310 + y=180 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Wlow_1.DO8" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=375 + y=180 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Whigh_1.DO8" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=440 + y=180 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_loc_1.DO8" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=135 + y=200 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_m_1.DO9" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=180 + y=200 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_den_1.DO9" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=245 + y=200 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_R_1.DO9" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=310 + y=200 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Wlow_1.DO9" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=375 + y=200 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Whigh_1.DO9" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=440 + y=200 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_loc_1.DO9" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=135 + y=220 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_m_1.DOA" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=180 + y=220 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_den_1.DOA" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=245 + y=220 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_R_1.DOA" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=310 + y=220 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Wlow_1.DOA" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=375 + y=220 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Whigh_1.DOA" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=440 + y=220 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_loc_1.DOA" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=135 + y=40 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_m_1.DO1" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=180 + y=40 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_den_1.DO1" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=245 + y=40 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_R_1.DO1" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=310 + y=40 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Wlow_1.DO1" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=375 + y=40 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Whigh_1.DO1" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=440 + y=40 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_loc_1.DO1" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=135 + y=60 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_m_1.DO2" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=180 + y=60 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_den_1.DO2" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=245 + y=60 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_R_1.DO2" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=310 + y=60 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Wlow_1.DO2" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=375 + y=60 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Whigh_1.DO2" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=440 + y=60 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_loc_1.DO2" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=135 + y=80 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_m_1.DO3" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=180 + y=80 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_den_1.DO3" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=245 + y=80 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_R_1.DO3" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=310 + y=80 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Wlow_1.DO3" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=375 + y=80 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Whigh_1.DO3" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=440 + y=80 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_loc_1.DO3" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=135 + y=100 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_m_1.DO4" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=180 + y=100 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_den_1.DO4" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=245 + y=100 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_R_1.DO4" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=310 + y=100 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Wlow_1.DO4" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=375 + y=100 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Whigh_1.DO4" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=440 + y=100 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_loc_1.DO4" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=135 + y=120 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_m_1.DO5" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=180 + y=120 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_den_1.DO5" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=245 + y=120 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_R_1.DO5" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=310 + y=120 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Wlow_1.DO5" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=375 + y=120 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Whigh_1.DO5" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=440 + y=120 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_loc_1.DO6" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=135 + y=140 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_m_1.DO6" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=180 + y=140 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_den_1.DO6" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=245 + y=140 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_R_1.DO6" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=310 + y=140 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Wlow_1.DO6" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=375 + y=140 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Whigh_1.DO6" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=440 + y=140 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_loc_1.DO6" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=135 + y=240 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_m_2.DO1" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=180 + y=240 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_den_2.DO1" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=245 + y=240 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_R_2.DO1" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=310 + y=240 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Wlow_2.DO1" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=375 + y=240 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Whigh_2.DO1" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=440 + y=240 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_loc_2.DO1" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=135 + y=260 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_m_2.DO2" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=180 + y=260 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_den_2.DO2" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=245 + y=260 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_R_2.DO2" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=310 + y=260 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Wlow_2.DO2" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=375 + y=260 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Whigh_2.DO2" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=440 + y=260 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_loc_2.DO2" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=135 + y=280 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_m_2.DO3" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=180 + y=280 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_den_2.DO3" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=245 + y=280 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_R_2.DO3" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=310 + y=280 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Wlow_2.DO3" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=375 + y=280 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Whigh_2.DO3" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=440 + y=280 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_loc_2.DO3" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=135 + y=300 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_m_2.DO4" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=180 + y=300 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_den_2.DO4" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=245 + y=300 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_R_2.DO4" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=310 + y=300 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Wlow_2.DO4" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=375 + y=300 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Whigh_2.DO4" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=440 + y=300 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_loc_2.DO4" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=135 + y=320 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_m_2.DO5" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=180 + y=320 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_den_2.DO5" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=245 + y=320 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_R_2.DO5" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=310 + y=320 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Wlow_2.DO5" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=375 + y=320 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Whigh_2.DO5" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=440 + y=320 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_loc_2.DO6" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=135 + y=340 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_m_2.DO6" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=180 + y=340 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_den_2.DO6" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=245 + y=340 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_R_2.DO6" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=310 + y=340 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Wlow_2.DO6" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=375 + y=340 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_Whigh_2.DO6" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=440 + y=340 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):sel_loc_2.DO6" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=505 + y=40 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_xOff_1.DO1" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=505 + y=60 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_xOff_1.DO2" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=505 + y=80 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_xOff_1.DO3" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=505 + y=100 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_xOff_1.DO4" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=505 + y=120 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_xOff_1.DO5" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=505 + y=140 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_xOff_1.DO6" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=505 + y=160 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_xOff_1.DO7" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=505 + y=180 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_xOff_1.DO8" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=505 + y=200 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_xOff_1.DO9" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=505 + y=220 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_xOff_1.DOA" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=505 + y=240 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_xOff_2.DO1" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=505 + y=260 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_xOff_2.DO2" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=505 + y=280 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_xOff_2.DO3" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=505 + y=300 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_xOff_2.DO4" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=505 + y=320 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_xOff_2.DO5" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=505 + y=340 + width=40 + height=16 + } + control { + chan="$(P)SGM$(N):sel_xOff_2.DO6" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=440 + y=370 + width=60 + height=16 + } + control { + chan="$(P)SGM$(N):StripeWidth" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=345 + y=370 + width=90 + height=14 + } + "basic attribute" { + clr=13 + fill="outline" } + textix="Stripe width:" + align="horiz. right" } text { object { diff --git a/opticsApp/op/adl/SGM_tiny.adl b/opticsApp/op/adl/SGM_tiny.adl index f2d8d38..1213403 100644 --- a/opticsApp/op/adl/SGM_tiny.adl +++ b/opticsApp/op/adl/SGM_tiny.adl @@ -1,7 +1,7 @@ file { - name="/home/beams/BCDA/epics/synApps_R3.13.2_R4.3/share/stdApp/op/adl/SGM_tiny_1.4.adl" - version=020306 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/SGM_tiny.adl" + version=030111 } display { object { @@ -262,46 +262,35 @@ menu { bclr=51 } } -composite { +"message button" { object { x=80 y=144 - width=75 + width=35 height=20 } - "composite name"="" - children { - "message button" { - object { - x=80 - y=144 - width=35 - height=20 - } - control { - chan="$(P)SGM$(N):move.PROC" - clr=14 - bclr=51 - } - label="Move" - press_msg="1" - } - "message button" { - object { - x=120 - y=144 - width=35 - height=20 - } - control { - chan="$(P)SGM$(N):sync.PROC" - clr=14 - bclr=51 - } - label="Sync" - press_msg="1" - } + control { + chan="$(P)SGM$(N):move.PROC" + clr=14 + bclr=51 } + label="Move" + press_msg="1" +} +"message button" { + object { + x=120 + y=144 + width=35 + height=20 + } + control { + chan="$(P)SGM$(N):sync.PROC" + clr=14 + bclr=51 + } + label="Sync" + press_msg="1" } rectangle { object { diff --git a/opticsApp/op/adl/TheBox_graphic_try.adl b/opticsApp/op/adl/TheBox_graphic_try.adl index 4113b04..87a5def 100644 --- a/opticsApp/op/adl/TheBox_graphic_try.adl +++ b/opticsApp/op/adl/TheBox_graphic_try.adl @@ -1,6 +1,7 @@ file { - name="/tmp_mnt/home/oxygen2/MOONEY/epics/3.12.0/tmmApp/op/adl/TheBox_graphic_try.adl" + name="/home/epics/devel/optics-2-13-3/opticsApp/op/adl/TheBox_graphic_try.adl" + version=030109 } display { object { @@ -12,406 +13,78 @@ display { clr=14 bclr=3 cmap="" + gridSpacing=5 + gridOn=0 + snapToGrid=0 } "color map" { ncolors=65 - dl_color { - r=255 - g=255 - b=255 - inten=255 - } - dl_color { - r=236 - g=236 - b=236 - inten=0 - } - dl_color { - r=218 - g=218 - b=218 - inten=0 - } - dl_color { - r=200 - g=200 - b=200 - inten=0 - } - dl_color { - r=187 - g=187 - b=187 - inten=0 - } - dl_color { - r=174 - g=174 - b=174 - inten=0 - } - dl_color { - r=158 - g=158 - b=158 - inten=0 - } - dl_color { - r=145 - g=145 - b=145 - inten=0 - } - dl_color { - r=133 - g=133 - b=133 - inten=0 - } - dl_color { - r=120 - g=120 - b=120 - inten=0 - } - dl_color { - r=105 - g=105 - b=105 - inten=0 - } - dl_color { - r=90 - g=90 - b=90 - inten=0 - } - dl_color { - r=70 - g=70 - b=70 - inten=0 - } - dl_color { - r=45 - g=45 - b=45 - inten=0 - } - dl_color { - r=0 - g=0 - b=0 - inten=0 - } - dl_color { - r=0 - g=216 - b=0 - inten=0 - } - dl_color { - r=30 - g=187 - b=0 - inten=0 - } - dl_color { - r=51 - g=153 - b=0 - inten=0 - } - dl_color { - r=45 - g=127 - b=0 - inten=0 - } - dl_color { - r=33 - g=108 - b=0 - inten=0 - } - dl_color { - r=253 - g=0 - b=0 - inten=0 - } - dl_color { - r=222 - g=19 - b=9 - inten=0 - } - dl_color { - r=190 - g=25 - b=11 - inten=0 - } - dl_color { - r=160 - g=18 - b=7 - inten=0 - } - dl_color { - r=130 - g=4 - b=0 - inten=0 - } - dl_color { - r=88 - g=147 - b=255 - inten=0 - } - dl_color { - r=89 - g=126 - b=225 - inten=0 - } - dl_color { - r=75 - g=110 - b=199 - inten=0 - } - dl_color { - r=58 - g=94 - b=171 - inten=0 - } - dl_color { - r=39 - g=84 - b=141 - inten=0 - } - dl_color { - r=251 - g=243 - b=74 - inten=0 - } - dl_color { - r=249 - g=218 - b=60 - inten=0 - } - dl_color { - r=238 - g=182 - b=43 - inten=0 - } - dl_color { - r=225 - g=144 - b=21 - inten=0 - } - dl_color { - r=205 - g=97 - b=0 - inten=0 - } - dl_color { - r=255 - g=176 - b=255 - inten=0 - } - dl_color { - r=214 - g=127 - b=226 - inten=0 - } - dl_color { - r=174 - g=78 - b=188 - inten=0 - } - dl_color { - r=139 - g=26 - b=150 - inten=0 - } - dl_color { - r=97 - g=10 - b=117 - inten=0 - } - dl_color { - r=164 - g=170 - b=255 - inten=0 - } - dl_color { - r=135 - g=147 - b=226 - inten=0 - } - dl_color { - r=106 - g=115 - b=193 - inten=0 - } - dl_color { - r=77 - g=82 - b=164 - inten=0 - } - dl_color { - r=52 - g=51 - b=134 - inten=0 - } - dl_color { - r=199 - g=187 - b=109 - inten=0 - } - dl_color { - r=183 - g=157 - b=92 - inten=0 - } - dl_color { - r=164 - g=126 - b=60 - inten=0 - } - dl_color { - r=125 - g=86 - b=39 - inten=0 - } - dl_color { - r=88 - g=52 - b=15 - inten=0 - } - dl_color { - r=153 - g=255 - b=255 - inten=0 - } - dl_color { - r=115 - g=223 - b=255 - inten=0 - } - dl_color { - r=78 - g=165 - b=249 - inten=0 - } - dl_color { - r=42 - g=99 - b=228 - inten=0 - } - dl_color { - r=10 - g=0 - b=184 - inten=0 - } - dl_color { - r=235 - g=241 - b=181 - inten=0 - } - dl_color { - r=212 - g=219 - b=157 - inten=0 - } - dl_color { - r=187 - g=193 - b=135 - inten=0 - } - dl_color { - r=166 - g=164 - b=98 - inten=0 - } - dl_color { - r=139 - g=130 - b=57 - inten=0 - } - dl_color { - r=115 - g=255 - b=107 - inten=0 - } - dl_color { - r=82 - g=218 - b=59 - inten=0 - } - dl_color { - r=60 - g=180 - b=32 - inten=0 - } - dl_color { - r=40 - g=147 - b=21 - inten=0 - } - dl_color { - r=26 - g=115 - b=9 - inten=0 - } -} -"basic attribute" { - attr { - clr=4 - style="solid" - fill="solid" - width=3 + colors { + ffffff, + ececec, + dadada, + c8c8c8, + bbbbbb, + aeaeae, + 9e9e9e, + 919191, + 858585, + 787878, + 696969, + 5a5a5a, + 464646, + 2d2d2d, + 000000, + 00d800, + 1ebb00, + 339900, + 2d7f00, + 216c00, + fd0000, + de1309, + be190b, + a01207, + 820400, + 5893ff, + 597ee1, + 4b6ec7, + 3a5eab, + 27548d, + fbf34a, + f9da3c, + eeb62b, + e19015, + cd6100, + ffb0ff, + d67fe2, + ae4ebc, + 8b1a96, + 610a75, + a4aaff, + 8793e2, + 6a73c1, + 4d52a4, + 343386, + c7bb6d, + b79d5c, + a47e3c, + 7d5627, + 58340f, + 99ffff, + 73dfff, + 4ea5f9, + 2a63e4, + 0a00b8, + ebf1b5, + d4db9d, + bbc187, + a6a462, + 8b8239, + 73ff6b, + 52da3b, + 3cb420, + 289315, + 1a7309, } } rectangle { @@ -421,12 +94,8 @@ rectangle { width=500 height=320 } -} -"basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" + "basic attribute" { + clr=4 width=3 } } @@ -437,13 +106,10 @@ rectangle { width=500 height=320 } -} -"basic attribute" { - attr { - clr=2 - style="solid" - fill="solid" - width=2 + "basic attribute" { + clr=14 + fill="outline" + width=3 } } rectangle { @@ -453,12 +119,8 @@ rectangle { width=100 height=203 } -} -"basic attribute" { - attr { - clr=11 - style="solid" - fill="outline" + "basic attribute" { + clr=2 width=2 } } @@ -469,12 +131,9 @@ rectangle { width=100 height=203 } -} -"basic attribute" { - attr { - clr=2 - style="solid" - fill="solid" + "basic attribute" { + clr=11 + fill="outline" width=2 } } @@ -485,12 +144,8 @@ rectangle { width=175 height=75 } -} -"basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" + "basic attribute" { + clr=2 width=2 } } @@ -501,12 +156,9 @@ rectangle { width=175 height=75 } -} -"basic attribute" { - attr { - clr=15 - style="solid" - fill="solid" + "basic attribute" { + clr=14 + fill="outline" width=2 } } @@ -517,12 +169,8 @@ oval { width=60 height=60 } -} -"basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" + "basic attribute" { + clr=15 width=2 } } @@ -533,12 +181,9 @@ oval { width=60 height=60 } -} -"basic attribute" { - attr { - clr=2 - style="solid" - fill="solid" + "basic attribute" { + clr=14 + fill="outline" width=2 } } @@ -549,12 +194,8 @@ rectangle { width=100 height=169 } -} -"basic attribute" { - attr { - clr=11 - style="solid" - fill="outline" + "basic attribute" { + clr=2 width=2 } } @@ -565,6 +206,11 @@ rectangle { width=100 height=169 } + "basic attribute" { + clr=11 + fill="outline" + width=2 + } } composite { object { @@ -574,8 +220,6 @@ composite { height=102 } "composite name"="" - vis="static" - chan="" children { composite { object { @@ -585,17 +229,7 @@ composite { height=100 } "composite name"="" - vis="static" - chan="" children { - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=412 @@ -603,19 +237,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (412,94) (420,99) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=412 @@ -623,19 +253,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (412,100) (420,106) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=412 @@ -643,19 +269,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (412,106) (420,112) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=412 @@ -663,19 +285,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (412,112) (420,118) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=412 @@ -683,19 +301,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (412,119) (420,124) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=412 @@ -703,19 +317,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (412,125) (420,131) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=412 @@ -723,19 +333,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (412,131) (420,137) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=412 @@ -743,19 +349,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (412,137) (420,143) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=412 @@ -763,19 +365,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (412,144) (420,150) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=412 @@ -783,19 +381,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (412,150) (420,156) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=412 @@ -803,19 +397,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (412,157) (420,163) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=412 @@ -823,19 +413,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (412,163) (420,169) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=412 @@ -843,19 +429,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (412,169) (420,175) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=412 @@ -863,19 +445,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (412,175) (420,181) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=412 @@ -883,19 +461,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (412,181) (420,187) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=412 @@ -903,6 +477,10 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (412,188) (420,194) @@ -910,14 +488,6 @@ composite { } } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } rectangle { object { x=411 @@ -925,17 +495,13 @@ composite { width=9 height=102 } + "basic attribute" { + clr=14 + fill="outline" + } } } } -"basic attribute" { - attr { - clr=11 - style="solid" - fill="outline" - width=2 - } -} composite { object { x=121 @@ -944,8 +510,6 @@ composite { height=102 } "composite name"="" - vis="static" - chan="" children { composite { object { @@ -955,17 +519,7 @@ composite { height=100 } "composite name"="" - vis="static" - chan="" children { - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=122 @@ -973,19 +527,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (122,92) (130,97) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=122 @@ -993,19 +543,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (122,98) (130,104) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=122 @@ -1013,19 +559,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (122,104) (130,110) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=122 @@ -1033,19 +575,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (122,110) (130,116) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=122 @@ -1053,19 +591,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (122,117) (130,122) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=122 @@ -1073,19 +607,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (122,123) (130,129) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=122 @@ -1093,19 +623,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (122,129) (130,135) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=122 @@ -1113,19 +639,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (122,135) (130,141) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=122 @@ -1133,19 +655,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (122,142) (130,148) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=122 @@ -1153,19 +671,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (122,148) (130,154) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=122 @@ -1173,19 +687,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (122,155) (130,161) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=122 @@ -1193,19 +703,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (122,161) (130,167) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=122 @@ -1213,19 +719,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (122,167) (130,173) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=122 @@ -1233,19 +735,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (122,173) (130,179) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=122 @@ -1253,19 +751,15 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (122,179) (130,185) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=122 @@ -1273,6 +767,10 @@ composite { width=8 height=6 } + "basic attribute" { + clr=14 + fill="outline" + } points { (122,186) (130,192) @@ -1280,14 +778,6 @@ composite { } } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } rectangle { object { x=121 @@ -1295,17 +785,13 @@ composite { width=9 height=102 } + "basic attribute" { + clr=14 + fill="outline" + } } } } -"basic attribute" { - attr { - clr=2 - style="solid" - fill="solid" - width=2 - } -} rectangle { object { x=290 @@ -1313,12 +799,8 @@ rectangle { width=175 height=75 } -} -"basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" + "basic attribute" { + clr=2 width=2 } } @@ -1330,17 +812,7 @@ composite { height=30 } "composite name"="" - vis="static" - chan="" children { - "basic attribute" { - attr { - clr=52 - style="solid" - fill="solid" - width=0 - } - } rectangle { object { x=226 @@ -1348,13 +820,8 @@ composite { width=25 height=30 } - } - "basic attribute" { - attr { - clr=0 - style="solid" - fill="outline" - width=0 + "basic attribute" { + clr=52 } } text { @@ -1364,17 +831,13 @@ composite { width=20 height=14 } + "basic attribute" { + clr=0 + fill="outline" + } textix="TH1" align="horiz. centered" - } - } -} -"basic attribute" { - attr { - clr=30 - style="solid" - fill="outline" - width=3 + } } } polyline { @@ -1384,6 +847,11 @@ polyline { width=29 height=12 } + "basic attribute" { + clr=30 + fill="outline" + width=3 + } points { (198,219) (224,210) @@ -1397,8 +865,6 @@ composite { height=50 } "composite name"="" - vis="static" - chan="" children { composite { object { @@ -1408,17 +874,7 @@ composite { height=49 } "composite name"="" - vis="static" - chan="" children { - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=236 @@ -1426,19 +882,15 @@ composite { width=5 height=5 } + "basic attribute" { + clr=14 + fill="outline" + } points { (236,176) (242,180) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=236 @@ -1446,19 +898,15 @@ composite { width=5 height=5 } + "basic attribute" { + clr=14 + fill="outline" + } points { (236,181) (242,186) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=236 @@ -1466,19 +914,15 @@ composite { width=5 height=5 } + "basic attribute" { + clr=14 + fill="outline" + } points { (236,186) (242,190) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=236 @@ -1486,19 +930,15 @@ composite { width=5 height=5 } + "basic attribute" { + clr=14 + fill="outline" + } points { (236,190) (242,195) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=236 @@ -1506,19 +946,15 @@ composite { width=5 height=5 } + "basic attribute" { + clr=14 + fill="outline" + } points { (236,196) (242,200) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=236 @@ -1526,19 +962,15 @@ composite { width=5 height=5 } + "basic attribute" { + clr=14 + fill="outline" + } points { (236,201) (242,205) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=236 @@ -1546,19 +978,15 @@ composite { width=5 height=5 } + "basic attribute" { + clr=14 + fill="outline" + } points { (236,205) (242,210) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=236 @@ -1566,19 +994,15 @@ composite { width=5 height=5 } + "basic attribute" { + clr=14 + fill="outline" + } points { (236,210) (242,215) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=236 @@ -1586,19 +1010,15 @@ composite { width=5 height=5 } + "basic attribute" { + clr=14 + fill="outline" + } points { (236,215) (242,220) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=236 @@ -1606,6 +1026,10 @@ composite { width=5 height=5 } + "basic attribute" { + clr=14 + fill="outline" + } points { (236,220) (242,225) @@ -1613,14 +1037,6 @@ composite { } } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } rectangle { object { x=236 @@ -1628,17 +1044,13 @@ composite { width=6 height=50 } + "basic attribute" { + clr=14 + fill="outline" + } } } } -"basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } -} "related display" { object { x=250 @@ -1661,42 +1073,9 @@ composite { name="motorx_all.adl" args="P=$(P), M=$(mTH1)" } - display[3] { - label="" - name="" - args="" - } - display[4] { - label="" - name="" - args="" - } - display[5] { - label="" - name="" - args="" - } - display[6] { - label="" - name="" - args="" - } - display[7] { - label="" - name="" - args="" - } clr=14 bclr=51 } -"basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=2 - } -} rectangle { object { x=73 @@ -1704,6 +1083,11 @@ rectangle { width=100 height=30 } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } } composite { object { @@ -1713,17 +1097,7 @@ composite { height=20 } "composite name"="" - vis="static" - chan="" children { - "basic attribute" { - attr { - clr=52 - style="solid" - fill="solid" - width=0 - } - } oval { object { x=115 @@ -1731,13 +1105,8 @@ composite { width=20 height=20 } - } - "basic attribute" { - attr { - clr=0 - style="solid" - fill="outline" - width=0 + "basic attribute" { + clr=52 } } text { @@ -1747,6 +1116,10 @@ composite { width=15 height=14 } + "basic attribute" { + clr=0 + fill="outline" + } textix="X1" align="horiz. centered" } @@ -1772,44 +1145,11 @@ composite { name="motorx_all.adl" args="P=$(P), M=$(mX1)" } - display[3] { - label="" - name="" - args="" - } - display[4] { - label="" - name="" - args="" - } - display[5] { - label="" - name="" - args="" - } - display[6] { - label="" - name="" - args="" - } - display[7] { - label="" - name="" - args="" - } clr=14 bclr=51 } } } -"basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=2 - } -} rectangle { object { x=236 @@ -1817,13 +1157,10 @@ rectangle { width=250 height=30 } -} -"basic attribute" { - attr { - clr=52 - style="solid" - fill="solid" - width=0 + "basic attribute" { + clr=14 + fill="outline" + width=2 } } rectangle { @@ -1833,13 +1170,8 @@ rectangle { width=30 height=20 } -} -"basic attribute" { - attr { - clr=0 - style="solid" - fill="outline" - width=0 + "basic attribute" { + clr=52 } } text { @@ -1849,6 +1181,10 @@ text { width=15 height=14 } + "basic attribute" { + clr=0 + fill="outline" + } textix="Z2" align="horiz. centered" } @@ -1874,42 +1210,9 @@ text { name="motorx_all.adl" args="P=$(P), M=$(mZ2)" } - display[3] { - label="" - name="" - args="" - } - display[4] { - label="" - name="" - args="" - } - display[5] { - label="" - name="" - args="" - } - display[6] { - label="" - name="" - args="" - } - display[7] { - label="" - name="" - args="" - } clr=14 bclr=51 } -"basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=2 - } -} rectangle { object { x=368 @@ -1917,13 +1220,10 @@ rectangle { width=100 height=30 } -} -"basic attribute" { - attr { - clr=52 - style="solid" - fill="solid" - width=0 + "basic attribute" { + clr=14 + fill="outline" + width=2 } } oval { @@ -1933,13 +1233,8 @@ oval { width=20 height=20 } -} -"basic attribute" { - attr { - clr=0 - style="solid" - fill="outline" - width=0 + "basic attribute" { + clr=52 } } text { @@ -1949,6 +1244,10 @@ text { width=15 height=14 } + "basic attribute" { + clr=0 + fill="outline" + } textix="X2" align="horiz. centered" } @@ -1974,42 +1273,9 @@ text { name="motorx_all.adl" args="P=$(P), M=$(mX2)" } - display[3] { - label="" - name="" - args="" - } - display[4] { - label="" - name="" - args="" - } - display[5] { - label="" - name="" - args="" - } - display[6] { - label="" - name="" - args="" - } - display[7] { - label="" - name="" - args="" - } clr=14 bclr=51 } -"basic attribute" { - attr { - clr=52 - style="solid" - fill="solid" - width=0 - } -} rectangle { object { x=404 @@ -2017,13 +1283,8 @@ rectangle { width=25 height=30 } -} -"basic attribute" { - attr { - clr=0 - style="solid" - fill="outline" - width=0 + "basic attribute" { + clr=52 } } text { @@ -2033,6 +1294,10 @@ text { width=15 height=14 } + "basic attribute" { + clr=0 + fill="outline" + } textix="Y2" align="horiz. centered" } @@ -2058,42 +1323,9 @@ text { name="motorx_all.adl" args="P=$(P), M=$(mY2)" } - display[3] { - label="" - name="" - args="" - } - display[4] { - label="" - name="" - args="" - } - display[5] { - label="" - name="" - args="" - } - display[6] { - label="" - name="" - args="" - } - display[7] { - label="" - name="" - args="" - } clr=14 bclr=51 } -"basic attribute" { - attr { - clr=52 - style="solid" - fill="solid" - width=0 - } -} rectangle { object { x=114 @@ -2101,13 +1333,8 @@ rectangle { width=25 height=30 } -} -"basic attribute" { - attr { - clr=0 - style="solid" - fill="outline" - width=0 + "basic attribute" { + clr=52 } } text { @@ -2117,16 +1344,12 @@ text { width=15 height=14 } - textix="Y1" - align="horiz. centered" -} -"basic attribute" { - attr { + "basic attribute" { clr=0 - style="solid" fill="outline" - width=0 } + textix="Y1" + align="horiz. centered" } "related display" { object { @@ -2150,42 +1373,9 @@ text { name="motorx_all.adl" args="P=$(P), M=$(mY1)" } - display[3] { - label="" - name="" - args="" - } - display[4] { - label="" - name="" - args="" - } - display[5] { - label="" - name="" - args="" - } - display[6] { - label="" - name="" - args="" - } - display[7] { - label="" - name="" - args="" - } clr=14 bclr=51 } -"basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=2 - } -} rectangle { object { x=290 @@ -2193,12 +1383,9 @@ rectangle { width=175 height=75 } -} -"basic attribute" { - attr { - clr=15 - style="solid" - fill="solid" + "basic attribute" { + clr=14 + fill="outline" width=2 } } @@ -2209,13 +1396,9 @@ oval { width=60 height=60 } -} -"basic attribute" { - attr { - clr=30 - style="solid" - fill="outline" - width=3 + "basic attribute" { + clr=15 + width=2 } } polyline { @@ -2225,19 +1408,16 @@ polyline { width=29 height=12 } + "basic attribute" { + clr=30 + fill="outline" + width=3 + } points { (318,139) (344,130) } } -"basic attribute" { - attr { - clr=52 - style="solid" - fill="solid" - width=0 - } -} rectangle { object { x=288 @@ -2245,13 +1425,8 @@ rectangle { width=25 height=30 } -} -"basic attribute" { - attr { - clr=0 - style="solid" - fill="outline" - width=0 + "basic attribute" { + clr=52 } } text { @@ -2261,6 +1436,10 @@ text { width=20 height=14 } + "basic attribute" { + clr=0 + fill="outline" + } textix="TH2" align="horiz. centered" } @@ -2286,42 +1465,9 @@ text { name="motorx_all.adl" args="P=$(P), M=$(mTH2)" } - display[3] { - label="" - name="" - args="" - } - display[4] { - label="" - name="" - args="" - } - display[5] { - label="" - name="" - args="" - } - display[6] { - label="" - name="" - args="" - } - display[7] { - label="" - name="" - args="" - } clr=14 bclr=51 } -"basic attribute" { - attr { - clr=0 - style="dash" - fill="outline" - width=3 - } -} polyline { object { x=-1 @@ -2329,17 +1475,15 @@ polyline { width=213 height=3 } - points { - (210,213) - (0,213) - } -} -"basic attribute" { - attr { + "basic attribute" { clr=0 style="dash" fill="outline" - width=1 + width=3 + } + points { + (210,213) + (0,213) } } polyline { @@ -2349,18 +1493,16 @@ polyline { width=123 height=80 } - points { - (209,214) - (331,135) - } -} -"basic attribute" { - attr { + "basic attribute" { clr=0 style="dash" fill="outline" width=1 } + points { + (209,214) + (331,135) + } } polyline { object { @@ -2369,19 +1511,17 @@ polyline { width=190 height=1 } + "basic attribute" { + clr=0 + style="dash" + fill="outline" + width=1 + } points { (331,135) (520,135) } } -"basic attribute" { - attr { - clr=0 - style="solid" - fill="outline" - width=1 - } -} polyline { object { x=17 @@ -2389,20 +1529,17 @@ polyline { width=40 height=6 } + "basic attribute" { + clr=0 + fill="outline" + width=1 + } points { (17,208) (56,208) (51,203) } } -"basic attribute" { - attr { - clr=0 - style="solid" - fill="outline" - width=1 - } -} text { object { x=509 @@ -2410,6 +1547,11 @@ text { width=13 height=20 } + "basic attribute" { + clr=0 + fill="outline" + width=1 + } textix=">" align="horiz. right" } @@ -2421,8 +1563,6 @@ composite { height=50 } "composite name"="" - vis="static" - chan="" children { composite { object { @@ -2432,17 +1572,7 @@ composite { height=49 } "composite name"="" - vis="static" - chan="" children { - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=298 @@ -2450,19 +1580,15 @@ composite { width=5 height=5 } + "basic attribute" { + clr=14 + fill="outline" + } points { (298,98) (304,102) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=298 @@ -2470,19 +1596,15 @@ composite { width=5 height=5 } + "basic attribute" { + clr=14 + fill="outline" + } points { (298,103) (304,108) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=298 @@ -2490,19 +1612,15 @@ composite { width=5 height=5 } + "basic attribute" { + clr=14 + fill="outline" + } points { (298,108) (304,112) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=298 @@ -2510,19 +1628,15 @@ composite { width=5 height=5 } + "basic attribute" { + clr=14 + fill="outline" + } points { (298,112) (304,117) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=298 @@ -2530,19 +1644,15 @@ composite { width=5 height=5 } + "basic attribute" { + clr=14 + fill="outline" + } points { (298,118) (304,122) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=298 @@ -2550,19 +1660,15 @@ composite { width=5 height=5 } + "basic attribute" { + clr=14 + fill="outline" + } points { (298,123) (304,127) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=298 @@ -2570,19 +1676,15 @@ composite { width=5 height=5 } + "basic attribute" { + clr=14 + fill="outline" + } points { (298,127) (304,132) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=298 @@ -2590,19 +1692,15 @@ composite { width=5 height=5 } + "basic attribute" { + clr=14 + fill="outline" + } points { (298,132) (304,137) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=298 @@ -2610,19 +1708,15 @@ composite { width=5 height=5 } + "basic attribute" { + clr=14 + fill="outline" + } points { (298,137) (304,142) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } polyline { object { x=298 @@ -2630,6 +1724,10 @@ composite { width=5 height=5 } + "basic attribute" { + clr=14 + fill="outline" + } points { (298,142) (304,147) @@ -2637,14 +1735,6 @@ composite { } } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 - } - } rectangle { object { x=298 @@ -2652,6 +1742,10 @@ composite { width=6 height=50 } + "basic attribute" { + clr=14 + fill="outline" + } } } } @@ -2663,14 +1757,13 @@ composite { height=20 } control { - ctrl="$(P)$(mTH2).TWR" + chan="$(P)$(mTH2).TWR" clr=14 bclr=51 } label="-" press_msg="1" release_msg="0" - clrmod="static" } "message button" { object { @@ -2680,14 +1773,13 @@ composite { height=20 } control { - ctrl="$(P)$(mTH2).TWF" + chan="$(P)$(mTH2).TWF" clr=14 bclr=51 } label="+" press_msg="1" release_msg="0" - clrmod="static" } composite { object { @@ -2697,8 +1789,6 @@ composite { height=68 } "composite name"="" - vis="static" - chan="" children { "message button" { object { @@ -2708,14 +1798,13 @@ composite { height=20 } control { - ctrl="$(P)$(mY2).TWR" + chan="$(P)$(mY2).TWR" clr=14 bclr=51 } label="-" press_msg="1" release_msg="0" - clrmod="static" } "message button" { object { @@ -2725,14 +1814,13 @@ composite { height=20 } control { - ctrl="$(P)$(mY2).TWF" + chan="$(P)$(mY2).TWF" clr=14 bclr=51 } label="+" press_msg="1" release_msg="0" - clrmod="static" } } } @@ -2744,14 +1832,13 @@ composite { height=20 } control { - ctrl="$(P)$(mTH1).TWR" + chan="$(P)$(mTH1).TWR" clr=14 bclr=51 } label="-" press_msg="1" release_msg="0" - clrmod="static" } "message button" { object { @@ -2761,14 +1848,13 @@ composite { height=20 } control { - ctrl="$(P)$(mTH1).TWF" + chan="$(P)$(mTH1).TWF" clr=14 bclr=51 } label="+" press_msg="1" release_msg="0" - clrmod="static" } "message button" { object { @@ -2778,14 +1864,13 @@ composite { height=20 } control { - ctrl="$(P)$(mZ2).TWR" + chan="$(P)$(mZ2).TWR" clr=14 bclr=51 } label="-" press_msg="1" release_msg="0" - clrmod="static" } "message button" { object { @@ -2795,14 +1880,13 @@ composite { height=20 } control { - ctrl="$(P)$(mZ2).TWF" + chan="$(P)$(mZ2).TWF" clr=14 bclr=51 } label="+" press_msg="1" release_msg="0" - clrmod="static" } "message button" { object { @@ -2812,14 +1896,13 @@ composite { height=20 } control { - ctrl="$(P)$(mX1).TWR" + chan="$(P)$(mX1).TWR" clr=14 bclr=51 } label="-" press_msg="1" release_msg="0" - clrmod="static" } "message button" { object { @@ -2829,14 +1912,13 @@ composite { height=20 } control { - ctrl="$(P)$(mX1).TWF" + chan="$(P)$(mX1).TWF" clr=14 bclr=51 } label="+" press_msg="1" release_msg="0" - clrmod="static" } "message button" { object { @@ -2846,14 +1928,13 @@ composite { height=20 } control { - ctrl="$(P)$(mX2).TWR" + chan="$(P)$(mX2).TWR" clr=14 bclr=51 } label="-" press_msg="1" release_msg="0" - clrmod="static" } "message button" { object { @@ -2863,22 +1944,13 @@ composite { height=20 } control { - ctrl="$(P)$(mX2).TWF" + chan="$(P)$(mX2).TWF" clr=14 bclr=51 } label="+" press_msg="1" release_msg="0" - clrmod="static" -} -"basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=2 - } } oval { object { @@ -2887,6 +1959,11 @@ oval { width=60 height=60 } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } } "message button" { object { @@ -2896,14 +1973,12 @@ oval { height=40 } control { - ctrl="$(P)allstop.VAL" + chan="$(P)allstop.VAL" clr=30 bclr=20 } label="All Stop" press_msg="1" - release_msg="" - clrmod="static" } composite { object { @@ -2913,8 +1988,6 @@ composite { height=25 } "composite name"="" - vis="static" - chan="" children { "text entry" { object { @@ -2924,12 +1997,12 @@ composite { height=15 } control { - ctrl="$(P)$(mX1).VAL" + chan="$(P)$(mX1).VAL" clr=14 bclr=51 } - clrmod="static" - format="decimal" + limits { + } } "text update" { object { @@ -2939,13 +2012,12 @@ composite { height=12 } monitor { - rdbk="$(P)$(mX1).RBV" + chan="$(P)$(mX1).RBV" clr=54 bclr=0 } - clrmod="static" - align="horiz. left" - format="decimal" + limits { + } } } } @@ -2957,20 +2029,11 @@ composite { height=12 } monitor { - rdbk="$(P)$(mX2).RBV" + chan="$(P)$(mX2).RBV" clr=54 bclr=0 } - clrmod="static" - align="horiz. left" - format="decimal" -} -"basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=0 + limits { } } text { @@ -2980,16 +2043,12 @@ text { width=500 height=25 } - textix="Prototype Monochromator" - align="horiz. centered" -} -"basic attribute" { - attr { + "basic attribute" { clr=14 - style="solid" fill="outline" - width=2 } + textix="Prototype Monochromator" + align="horiz. centered" } polyline { object { @@ -2998,20 +2057,17 @@ polyline { width=10 height=18 } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } points { (179,229) (187,245) (180,241) } } -"basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=2 - } -} polyline { object { x=179 @@ -3019,6 +2075,11 @@ polyline { width=13 height=18 } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } points { (180,200) (180,200) @@ -3026,14 +2087,6 @@ polyline { (185,187) } } -"basic attribute" { - attr { - clr=14 - style="solid" - fill="solid" - width=2 - } -} polyline { object { x=348 @@ -3041,20 +2094,16 @@ polyline { width=19 height=25 } + "basic attribute" { + clr=14 + width=2 + } points { (366,128) (349,105) (359,108) } } -"basic attribute" { - attr { - clr=14 - style="solid" - fill="solid" - width=2 - } -} polyline { object { x=349 @@ -3062,6 +2111,10 @@ polyline { width=18 height=22 } + "basic attribute" { + clr=14 + width=2 + } points { (366,143) (350,163) @@ -3076,17 +2129,7 @@ composite { height=67 } "composite name"="" - vis="static" - chan="" children { - "basic attribute" { - attr { - clr=14 - style="solid" - fill="solid" - width=2 - } - } polyline { object { x=447 @@ -3094,6 +2137,10 @@ composite { width=5 height=25 } + "basic attribute" { + clr=14 + width=2 + } points { (448,125) (448,102) @@ -3102,14 +2149,6 @@ composite { (451,109) } } - "basic attribute" { - attr { - clr=14 - style="solid" - fill="solid" - width=2 - } - } polyline { object { x=447 @@ -3117,6 +2156,10 @@ composite { width=6 height=27 } + "basic attribute" { + clr=14 + width=2 + } points { (448,142) (448,167) @@ -3125,14 +2168,6 @@ composite { } } } -"basic attribute" { - attr { - clr=14 - style="solid" - fill="solid" - width=2 - } -} polyline { object { x=428 @@ -3140,20 +2175,16 @@ polyline { width=35 height=6 } + "basic attribute" { + clr=14 + width=2 + } points { (429,230) (462,230) (453,226) } } -"basic attribute" { - attr { - clr=14 - style="solid" - fill="solid" - width=2 - } -} polyline { object { x=371 @@ -3161,6 +2192,10 @@ polyline { width=37 height=6 } + "basic attribute" { + clr=14 + width=2 + } points { (407,230) (372,230) @@ -3175,8 +2210,6 @@ composite { height=25 } "composite name"="" - vis="static" - chan="" children { "text entry" { object { @@ -3186,12 +2219,12 @@ composite { height=15 } control { - ctrl="$(P)$(mZ2).VAL" + chan="$(P)$(mZ2).VAL" clr=14 bclr=51 } - clrmod="static" - format="decimal" + limits { + } } "text update" { object { @@ -3201,24 +2234,15 @@ composite { height=12 } monitor { - rdbk="$(P)$(mZ2).RBV" + chan="$(P)$(mZ2).RBV" clr=54 bclr=0 } - clrmod="static" - align="horiz. left" - format="decimal" + limits { + } } } } -"basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=2 - } -} "text update" { object { x=140 @@ -3227,20 +2251,11 @@ composite { height=12 } monitor { - rdbk="$(P)$(mTH1).RBV" + chan="$(P)$(mTH1).RBV" clr=54 bclr=0 } - clrmod="static" - align="horiz. left" - format="decimal" -} -"basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=2 + limits { } } "text entry" { @@ -3251,19 +2266,11 @@ composite { height=15 } control { - ctrl="$(P)$(mTH1).VAL" + chan="$(P)$(mTH1).VAL" clr=14 bclr=51 } - clrmod="static" - format="decimal" -} -"basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=2 + limits { } } "text entry" { @@ -3274,19 +2281,11 @@ composite { height=15 } control { - ctrl="$(P)$(mX2).VAL" + chan="$(P)$(mX2).VAL" clr=14 bclr=51 } - clrmod="static" - format="decimal" -} -"basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=2 + limits { } } "text entry" { @@ -3297,19 +2296,11 @@ composite { height=15 } control { - ctrl="$(P)$(mTH2).VAL" + chan="$(P)$(mTH2).VAL" clr=14 bclr=51 } - clrmod="static" - format="decimal" -} -"basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=2 + limits { } } "text update" { @@ -3320,13 +2311,12 @@ composite { height=12 } monitor { - rdbk="$(P)$(mTH2).RBV" + chan="$(P)$(mTH2).RBV" clr=54 bclr=0 } - clrmod="static" - align="horiz. left" - format="decimal" + limits { + } } composite { object { @@ -3336,8 +2326,6 @@ composite { height=25 } "composite name"="" - vis="static" - chan="" children { "text entry" { object { @@ -3347,12 +2335,12 @@ composite { height=15 } control { - ctrl="$(P)$(mY2).VAL" + chan="$(P)$(mY2).VAL" clr=14 bclr=51 } - clrmod="static" - format="decimal" + limits { + } } "text update" { object { @@ -3362,24 +2350,15 @@ composite { height=12 } monitor { - rdbk="$(P)$(mY2).RBV" + chan="$(P)$(mY2).RBV" clr=54 bclr=0 } - clrmod="static" - align="horiz. left" - format="decimal" + limits { + } } } } -"basic attribute" { - attr { - clr=60 - style="solid" - fill="solid" - width=2 - } -} composite { object { x=80 @@ -3388,8 +2367,6 @@ composite { height=68 } "composite name"="" - vis="static" - chan="" children { "message button" { object { @@ -3399,14 +2376,13 @@ composite { height=20 } control { - ctrl="$(P)$(mY1).TWR" + chan="$(P)$(mY1).TWR" clr=14 bclr=51 } label="-" press_msg="1" release_msg="0" - clrmod="static" } "text entry" { object { @@ -3416,12 +2392,12 @@ composite { height=15 } control { - ctrl="$(P)$(mY1).VAL" + chan="$(P)$(mY1).VAL" clr=14 bclr=51 } - clrmod="static" - format="decimal" + limits { + } } "text update" { object { @@ -3431,13 +2407,12 @@ composite { height=12 } monitor { - rdbk="$(P)$(mY1).RBV" + chan="$(P)$(mY1).RBV" clr=54 bclr=0 } - clrmod="static" - align="horiz. left" - format="decimal" + limits { + } } "message button" { object { @@ -3447,25 +2422,16 @@ composite { height=20 } control { - ctrl="$(P)$(mY1).TWF" + chan="$(P)$(mY1).TWF" clr=14 bclr=51 } label="+" press_msg="1" release_msg="0" - clrmod="static" } } } -"basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=2 - } -} polyline { object { x=86 @@ -3473,20 +2439,17 @@ polyline { width=7 height=22 } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } points { (92,202) (92,182) (87,189) } } -"basic attribute" { - attr { - clr=14 - style="solid" - fill="outline" - width=2 - } -} polyline { object { x=86 @@ -3494,20 +2457,17 @@ polyline { width=7 height=24 } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } points { (92,227) (92,249) (87,240) } } -"basic attribute" { - attr { - clr=14 - style="solid" - fill="solid" - width=3 - } -} text { object { x=99 @@ -3515,16 +2475,12 @@ text { width=50 height=12 } - textix="$(mY1)" - align="horiz. centered" -} -"basic attribute" { - attr { + "basic attribute" { clr=14 - style="solid" - fill="solid" width=3 } + textix="$(mY1)" + align="horiz. centered" } text { object { @@ -3533,16 +2489,12 @@ text { width=50 height=12 } - textix="$(mX1)" - align="horiz. centered" -} -"basic attribute" { - attr { + "basic attribute" { clr=14 - style="solid" - fill="solid" width=3 } + textix="$(mX1)" + align="horiz. centered" } text { object { @@ -3551,16 +2503,12 @@ text { width=50 height=12 } - textix="$(mZ2)" - align="horiz. centered" -} -"basic attribute" { - attr { + "basic attribute" { clr=14 - style="solid" - fill="solid" width=3 } + textix="$(mZ2)" + align="horiz. centered" } text { object { @@ -3569,16 +2517,12 @@ text { width=50 height=12 } - textix="$(mTH1)" - align="horiz. centered" -} -"basic attribute" { - attr { + "basic attribute" { clr=14 - style="solid" - fill="solid" width=3 } + textix="$(mTH1)" + align="horiz. centered" } text { object { @@ -3587,16 +2531,12 @@ text { width=50 height=12 } - textix="$(mTH2)" - align="horiz. centered" -} -"basic attribute" { - attr { + "basic attribute" { clr=14 - style="solid" - fill="solid" width=3 } + textix="$(mTH2)" + align="horiz. centered" } text { object { @@ -3605,16 +2545,12 @@ text { width=50 height=12 } - textix="$(mY2)" - align="horiz. centered" -} -"basic attribute" { - attr { + "basic attribute" { clr=14 - style="solid" - fill="solid" width=3 } + textix="$(mY2)" + align="horiz. centered" } text { object { @@ -3623,6 +2559,10 @@ text { width=50 height=12 } + "basic attribute" { + clr=14 + width=3 + } textix="$(mX2)" align="horiz. centered" } diff --git a/opticsApp/op/adl/XIA_shutterTry.adl b/opticsApp/op/adl/XIA_shutterTry.adl index 0bffbaa..066d5e7 100644 --- a/opticsApp/op/adl/XIA_shutterTry.adl +++ b/opticsApp/op/adl/XIA_shutterTry.adl @@ -1,7 +1,7 @@ file { name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/XIA_shutterTry.adl" - version=030101 + version=030111 } display { object { @@ -425,101 +425,90 @@ text { bclr=63 label="-More" } -composite { +"message button" { object { x=15 y=40 - width=205 + width=50 + height=20 + } + control { + chan="$(P)$(S):expose.PROC" + clr=14 + bclr=51 + } + label="Expose" + press_msg="1" +} +"text entry" { + object { + x=65 + y=40 + width=50 + height=20 + } + control { + chan="$(P)$(S):exposeTime" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=115 + y=42 + width=10 + height=16 + } + "basic attribute" { + clr=14 + } + textix="(s)" +} +composite { + object { + x=140 + y=40 + width=80 height=20 } "composite name"="" children { - "message button" { - object { - x=15 - y=40 - width=50 - height=20 - } - control { - chan="$(P)$(S):expose.PROC" - clr=14 - bclr=51 - } - label="Expose" - press_msg="1" - } - "text entry" { + text { object { - x=65 + x=140 y=40 - width=50 + width=80 height=20 } - control { - chan="$(P)$(S):exposeTime" - clr=14 - bclr=51 + "basic attribute" { + clr=17 } - limits { + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(S):busy" } + textix="EXPOSING" + align="horiz. centered" } text { - object { - x=115 - y=42 - width=10 - height=16 - } - "basic attribute" { - clr=14 - } - textix="(s)" - } - composite { object { x=140 y=40 width=80 height=20 } - "composite name"="" - children { - text { - object { - x=140 - y=40 - width=80 - height=20 - } - "basic attribute" { - clr=17 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)$(S):busy" - } - textix="EXPOSING" - align="horiz. centered" - } - text { - object { - x=140 - y=40 - width=80 - height=20 - } - "basic attribute" { - clr=54 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)$(S):busy" - } - textix="DONE" - align="horiz. centered" - } + "basic attribute" { + clr=54 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(S):busy" } + textix="DONE" + align="horiz. centered" } } } diff --git a/opticsApp/op/adl/XIA_shutterTry_more.adl b/opticsApp/op/adl/XIA_shutterTry_more.adl index cbb3b8f..5781d0a 100644 --- a/opticsApp/op/adl/XIA_shutterTry_more.adl +++ b/opticsApp/op/adl/XIA_shutterTry_more.adl @@ -1,7 +1,7 @@ file { name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/XIA_shutterTry_more.adl" - version=030101 + version=030111 } display { object { @@ -202,101 +202,90 @@ text { textix="ADDRESS" align="horiz. centered" } -composite { +"message button" { object { x=15 y=40 - width=205 + width=50 + height=20 + } + control { + chan="$(P)$(S):expose.PROC" + clr=14 + bclr=51 + } + label="Expose" + press_msg="1" +} +"text entry" { + object { + x=65 + y=40 + width=50 + height=20 + } + control { + chan="$(P)$(S):exposeTime" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=115 + y=42 + width=10 + height=16 + } + "basic attribute" { + clr=14 + } + textix="(s)" +} +composite { + object { + x=140 + y=40 + width=80 height=20 } "composite name"="" children { - "message button" { - object { - x=15 - y=40 - width=50 - height=20 - } - control { - chan="$(P)$(S):expose.PROC" - clr=14 - bclr=51 - } - label="Expose" - press_msg="1" - } - "text entry" { + text { object { - x=65 + x=140 y=40 - width=50 + width=80 height=20 } - control { - chan="$(P)$(S):exposeTime" - clr=14 - bclr=51 + "basic attribute" { + clr=17 } - limits { + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(S):busy" } + textix="EXPOSING" + align="horiz. centered" } text { - object { - x=115 - y=42 - width=10 - height=16 - } - "basic attribute" { - clr=14 - } - textix="(s)" - } - composite { object { x=140 y=40 width=80 height=20 } - "composite name"="" - children { - text { - object { - x=140 - y=40 - width=80 - height=20 - } - "basic attribute" { - clr=17 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)$(S):busy" - } - textix="EXPOSING" - align="horiz. centered" - } - text { - object { - x=140 - y=40 - width=80 - height=20 - } - "basic attribute" { - clr=54 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)$(S):busy" - } - textix="DONE" - align="horiz. centered" - } + "basic attribute" { + clr=54 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(S):busy" } + textix="DONE" + align="horiz. centered" } } } diff --git a/opticsApp/op/adl/XIA_shutterTry_small.adl b/opticsApp/op/adl/XIA_shutterTry_small.adl index 909688b..2e854f0 100644 --- a/opticsApp/op/adl/XIA_shutterTry_small.adl +++ b/opticsApp/op/adl/XIA_shutterTry_small.adl @@ -1,7 +1,7 @@ file { name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/XIA_shutterTry_small.adl" - version=030101 + version=030111 } display { object { @@ -174,101 +174,90 @@ text { bclr=63 label="-More" } -composite { +"message button" { object { x=15 y=40 - width=205 + width=50 + height=20 + } + control { + chan="$(P)$(S):expose.PROC" + clr=14 + bclr=51 + } + label="Expose" + press_msg="1" +} +"text entry" { + object { + x=65 + y=40 + width=50 + height=20 + } + control { + chan="$(P)$(S):exposeTime" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=115 + y=42 + width=10 + height=16 + } + "basic attribute" { + clr=14 + } + textix="(s)" +} +composite { + object { + x=140 + y=40 + width=80 height=20 } "composite name"="" children { - "message button" { - object { - x=15 - y=40 - width=50 - height=20 - } - control { - chan="$(P)$(S):expose.PROC" - clr=14 - bclr=51 - } - label="Expose" - press_msg="1" - } - "text entry" { + text { object { - x=65 + x=140 y=40 - width=50 + width=80 height=20 } - control { - chan="$(P)$(S):exposeTime" - clr=14 - bclr=51 + "basic attribute" { + clr=17 } - limits { + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(S):busy" } + textix="EXPOSING" + align="horiz. centered" } text { - object { - x=115 - y=42 - width=10 - height=16 - } - "basic attribute" { - clr=14 - } - textix="(s)" - } - composite { object { x=140 y=40 width=80 height=20 } - "composite name"="" - children { - text { - object { - x=140 - y=40 - width=80 - height=20 - } - "basic attribute" { - clr=17 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)$(S):busy" - } - textix="EXPOSING" - align="horiz. centered" - } - text { - object { - x=140 - y=40 - width=80 - height=20 - } - "basic attribute" { - clr=54 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)$(S):busy" - } - textix="DONE" - align="horiz. centered" - } + "basic attribute" { + clr=54 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(S):busy" } + textix="DONE" + align="horiz. centered" } } } diff --git a/opticsApp/op/adl/fb_epid.adl b/opticsApp/op/adl/fb_epid.adl index 308136f..582c903 100644 --- a/opticsApp/op/adl/fb_epid.adl +++ b/opticsApp/op/adl/fb_epid.adl @@ -1,7 +1,7 @@ file { - name="/home/jemian/epics/ioc/prj/prjApp/op/adl/fb_epid.adl" - version=030104 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/fb_epid.adl" + version=030111 } display { object { @@ -818,166 +818,136 @@ text { limits { } } -composite { +"text update" { object { x=164 + y=238 + width=80 + height=14 + } + monitor { + chan="$(P).D" + clr=14 + bclr=50 + } + align="horiz. centered" + format="compact" + limits { + } +} +"text entry" { + object { + x=164 + y=217 + width=80 + height=16 + } + control { + chan="$(P).I" + clr=14 + bclr=50 + } + format="compact" + limits { + } +} +text { + object { + x=282 + y=220 + width=220 + height=10 + } + "basic attribute" { + clr=14 + } + textix="I = KP * KI * sum(FE*DT)" +} +text { + object { + x=282 y=200 - width=338 - height=52 - } - "composite name"="" - children { - "text update" { - object { - x=164 - y=238 - width=80 - height=14 - } - monitor { - chan="$(P).D" - clr=14 - bclr=50 - } - align="horiz. centered" - format="compact" - limits { - } - } - "text entry" { - object { - x=164 - y=217 - width=80 - height=16 - } - control { - chan="$(P).I" - clr=14 - bclr=50 - } - format="compact" - limits { - } - } - text { - object { - x=282 - y=220 - width=220 - height=10 - } - "basic attribute" { - clr=14 - } - textix="I = KP * KI * sum(FE*DT)" - } - text { - object { - x=282 - y=200 - width=220 - height=10 - } - "basic attribute" { - clr=14 - } - textix="P = KP * FE" - } - text { - object { - x=282 - y=241 - width=220 - height=10 - } - "basic attribute" { - clr=14 - } - textix="D = KP * KD * (FE[i] - FE[i-1])/DT" - } - } - "dynamic attribute" { - vis="if zero" - chan="$(P).FMOD" + width=220 + height=10 + } + "basic attribute" { + clr=14 } + textix="P = KP * FE" } -composite { +text { + object { + x=282 + y=241 + width=220 + height=10 + } + "basic attribute" { + clr=14 + } + textix="D = KP * KD * (FE[i] - FE[i-1])/DT" +} +text { + object { + x=199 + y=217 + width=12 + height=14 + } + "basic attribute" { + clr=14 + } + textix="0" + align="horiz. centered" +} +text { object { x=199 + y=238 + width=12 + height=14 + } + "basic attribute" { + clr=14 + } + textix="0" + align="horiz. centered" +} +text { + object { + x=282 + y=241 + width=220 + height=10 + } + "basic attribute" { + clr=14 + } + textix="D = 0" +} +text { + object { + x=282 + y=220 + width=220 + height=10 + } + "basic attribute" { + clr=14 + } + textix="I = 0" +} +text { + object { + x=282 y=200 - width=303 - height=52 - } - "composite name"="" - children { - text { - object { - x=199 - y=217 - width=12 - height=14 - } - "basic attribute" { - clr=14 - } - textix="0" - align="horiz. centered" - } - text { - object { - x=199 - y=238 - width=12 - height=14 - } - "basic attribute" { - clr=14 - } - textix="0" - align="horiz. centered" - } - text { - object { - x=282 - y=241 - width=220 - height=10 - } - "basic attribute" { - clr=14 - } - textix="D = 0" - } - text { - object { - x=282 - y=220 - width=220 - height=10 - } - "basic attribute" { - clr=14 - } - textix="I = 0" - } - text { - object { - x=282 - y=200 - width=220 - height=10 - } - "basic attribute" { - clr=14 - } - textix="P = KP * (INP[i] - INP[i-1])/DT" - } - } - "dynamic attribute" { - vis="if not zero" - chan="$(P).FMOD" + width=220 + height=10 + } + "basic attribute" { + clr=14 } + textix="P = KP * (INP[i] - INP[i-1])/DT" } text { object { diff --git a/opticsApp/op/adl/filter_16_0_less.adl b/opticsApp/op/adl/filter_16_0_less.adl index cbfe506..edbe5d7 100644 --- a/opticsApp/op/adl/filter_16_0_less.adl +++ b/opticsApp/op/adl/filter_16_0_less.adl @@ -1,12 +1,12 @@ file { - name="/net/s33dserv/xorApps/epics/synApps_5_6/ioc/33bmTEST/33bmTESTApp/op/adl/filter_16_0_less.adl" - version=030107 + name="/home/oxygen40/KPETERSN/development/github-forks/optics/opticsApp/op/adl/filter_16_0_less.adl" + version=030111 } display { object { - x=300 - y=300 + x=600 + y=666 width=680 height=285 } @@ -789,367 +789,356 @@ text { } composite { object { - x=5 + x=303 y=188 - width=671 - height=85 + width=79 + height=19 } "composite name"="" children { composite { object { - x=303 + x=325 y=188 - width=79 + width=35 height=19 } "composite name"="" children { + text { + object { + x=326 + y=197 + width=21 + height=10 + } + "basic attribute" { + clr=19 + } + textix="free" + } composite { object { x=325 y=188 width=35 - height=19 + height=10 } "composite name"="" children { text { object { - x=326 - y=197 + x=325 + y=188 width=21 height=10 } "basic attribute" { - clr=19 + clr=20 } - textix="free" + textix="lock" } - composite { + text { object { - x=325 + x=350 y=188 - width=35 + width=10 height=10 } - "composite name"="" - children { - text { - object { - x=325 - y=188 - width=21 - height=10 - } - "basic attribute" { - clr=20 - } - textix="lock" - } - text { - object { - x=350 - y=188 - width=10 - height=10 - } - "basic attribute" { - clr=14 - } - textix="/" - } + "basic attribute" { + clr=14 } + textix="/" } } } + } + } + polyline { + object { + x=303 + y=193 + width=19 + height=1 + } + "basic attribute" { + clr=14 + width=1 + } + points { + (303,193) + (321,193) + } + } + polyline { + object { + x=363 + y=193 + width=19 + height=1 + } + "basic attribute" { + clr=14 + width=1 + } + points { + (363,193) + (381,193) + } + } + } +} +composite { + object { + x=5 + y=226 + width=671 + height=15 + } + "composite name"="" + children { + composite { + object { + x=5 + y=226 + width=20 + height=15 + } + "composite name"="" + children { polyline { object { - x=303 - y=193 - width=19 - height=1 + x=5 + y=226 + width=21 + height=9 } "basic attribute" { - clr=14 - width=1 + clr=20 + width=2 + } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" } points { - (303,193) - (321,193) + (6,234) + (25,227) } } polyline { object { - x=363 - y=193 - width=19 - height=1 + x=5 + y=232 + width=21 + height=9 } "basic attribute" { - clr=14 - width=1 + clr=20 + width=2 + } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" } points { - (363,193) - (381,193) + (6,233) + (25,240) } } } } composite { object { - x=5 + x=335 y=226 - width=671 + width=20 height=15 } "composite name"="" children { - composite { + polyline { object { - x=5 + x=335 y=226 - width=20 - height=15 + width=21 + height=9 } - "composite name"="" - children { - polyline { - object { - x=5 - y=226 - width=21 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (6,234) - (25,227) - } - } - polyline { - object { - x=5 - y=232 - width=21 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (6,233) - (25,240) - } - } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } + points { + (336,234) + (355,227) } } - composite { + polyline { object { x=335 - y=226 - width=20 - height=15 + y=232 + width=21 + height=9 } - "composite name"="" - children { - polyline { - object { - x=335 - y=226 - width=21 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (336,234) - (355,227) - } - } - polyline { - object { - x=335 - y=232 - width=21 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (336,233) - (355,240) - } - } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } + points { + (336,233) + (355,240) } } - composite { + } + } + composite { + object { + x=651 + y=226 + width=20 + height=15 + } + "composite name"="" + children { + polyline { object { x=651 y=226 - width=20 - height=15 + width=21 + height=9 } - "composite name"="" - children { - polyline { - object { - x=651 - y=226 - width=21 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (652,234) - (671,227) - } - } - polyline { - object { - x=651 - y=232 - width=21 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (652,233) - (671,240) - } - } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } + points { + (652,234) + (671,227) } } polyline { object { - x=5 - y=233 - width=671 - height=2 + x=651 + y=232 + width=21 + height=9 } "basic attribute" { clr=20 width=2 } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } points { - (6,234) - (675,234) + (652,233) + (671,240) } } } } - composite { + polyline { + object { + x=5 + y=233 + width=671 + height=2 + } + "basic attribute" { + clr=20 + width=2 + } + points { + (6,234) + (675,234) + } + } + } +} +composite { + object { + x=303 + y=253 + width=79 + height=20 + } + "composite name"="" + children { + polyline { object { x=303 + y=260 + width=19 + height=1 + } + "basic attribute" { + clr=14 + width=1 + } + points { + (303,260) + (321,260) + } + } + composite { + object { + x=320 y=253 - width=79 + width=45 height=20 } "composite name"="" children { - polyline { + text { object { - x=303 - y=260 - width=19 - height=1 + x=320 + y=253 + width=45 + height=10 } "basic attribute" { clr=14 - width=1 - } - points { - (303,260) - (321,260) } + textix="remove" + align="horiz. centered" } - composite { + text { object { x=320 - y=253 + y=263 width=45 - height=20 - } - "composite name"="" - children { - text { - object { - x=320 - y=253 - width=45 - height=10 - } - "basic attribute" { - clr=14 - } - textix="remove" - align="horiz. centered" - } - text { - object { - x=320 - y=263 - width=45 - height=10 - } - "basic attribute" { - clr=14 - } - textix="insert" - align="horiz. centered" - } - } - } - polyline { - object { - x=363 - y=260 - width=19 - height=1 + height=10 } "basic attribute" { clr=14 - width=1 - } - points { - (363,260) - (381,260) } + textix="insert" + align="horiz. centered" } } } + polyline { + object { + x=363 + y=260 + width=19 + height=1 + } + "basic attribute" { + clr=14 + width=1 + } + points { + (363,260) + (381,260) + } + } } } diff --git a/opticsApp/op/adl/filter_16_0_more.adl b/opticsApp/op/adl/filter_16_0_more.adl index e2385c3..25f6403 100644 --- a/opticsApp/op/adl/filter_16_0_more.adl +++ b/opticsApp/op/adl/filter_16_0_more.adl @@ -1,7 +1,7 @@ file { - name="/net/s33dserv/xorApps/epics/synApps_5_6/ioc/33bmTEST/33bmTESTApp/op/adl/filter_16_0_more.adl" - version=030107 + name="/home/oxygen/KPETERSN/development/github-forks/optics/opticsApp/op/adl/filter_16_0_more.adl" + version=030111 } display { object { @@ -217,417 +217,395 @@ text { } composite { object { - x=5 + x=40 y=225 - width=671 + width=130 + height=170 + } + "composite name"="" + "composite file"="filterbox_more.adl;P=$(P),R=$(R),N1=13,N2=14,N3=15,N4=16" +} +composite { + object { + x=180 + y=225 + width=130 + height=170 + } + "composite name"="" + "composite file"="filterbox_more.adl;P=$(P),R=$(R),N1=9,N2=10,N3=11,N4=12" +} +composite { + object { + x=375 + y=225 + width=130 + height=170 + } + "composite name"="" + "composite file"="filterbox_more.adl;P=$(P),R=$(R),N1=5,N2=6,N3=7,N4=8" +} +composite { + object { + x=515 + y=225 + width=130 height=170 } "composite name"="" + "composite file"="filterbox_more.adl;P=$(P),R=$(R),N1=1,N2=2,N3=3,N4=4" +} +composite { + object { + x=303 + y=280 + width=79 + height=19 + } + "composite name"="" children { composite { object { - x=40 - y=225 - width=130 - height=170 - } - "composite name"="" - "composite file"="filterbox_more.adl;P=$(P),R=$(R),N1=13,N2=14,N3=15,N4=16" - } - composite { - object { - x=180 - y=225 - width=130 - height=170 - } - "composite name"="" - "composite file"="filterbox_more.adl;P=$(P),R=$(R),N1=9,N2=10,N3=11,N4=12" - } - composite { - object { - x=375 - y=225 - width=130 - height=170 - } - "composite name"="" - "composite file"="filterbox_more.adl;P=$(P),R=$(R),N1=5,N2=6,N3=7,N4=8" - } - composite { - object { - x=515 - y=225 - width=130 - height=170 - } - "composite name"="" - "composite file"="filterbox_more.adl;P=$(P),R=$(R),N1=1,N2=2,N3=3,N4=4" - } - composite { - object { - x=5 + x=325 y=280 - width=671 - height=85 + width=35 + height=19 } "composite name"="" children { + text { + object { + x=326 + y=289 + width=21 + height=10 + } + "basic attribute" { + clr=19 + } + textix="free" + } composite { object { - x=303 + x=325 y=280 - width=79 - height=19 + width=35 + height=10 } "composite name"="" children { - composite { + text { object { x=325 y=280 - width=35 - height=19 - } - "composite name"="" - children { - text { - object { - x=326 - y=289 - width=21 - height=10 - } - "basic attribute" { - clr=19 - } - textix="free" - } - composite { - object { - x=325 - y=280 - width=35 - height=10 - } - "composite name"="" - children { - text { - object { - x=325 - y=280 - width=21 - height=10 - } - "basic attribute" { - clr=20 - } - textix="lock" - } - text { - object { - x=350 - y=280 - width=10 - height=10 - } - "basic attribute" { - clr=14 - } - textix="/" - } - } - } - } - } - polyline { - object { - x=303 - y=285 - width=19 - height=1 + width=21 + height=10 } "basic attribute" { - clr=14 - width=1 - } - points { - (303,285) - (321,285) + clr=20 } + textix="lock" } - polyline { + text { object { - x=363 - y=285 - width=19 - height=1 + x=350 + y=280 + width=10 + height=10 } "basic attribute" { clr=14 - width=1 - } - points { - (363,285) - (381,285) } + textix="/" } } } - composite { + } + } + polyline { + object { + x=303 + y=285 + width=19 + height=1 + } + "basic attribute" { + clr=14 + width=1 + } + points { + (303,285) + (321,285) + } + } + polyline { + object { + x=363 + y=285 + width=19 + height=1 + } + "basic attribute" { + clr=14 + width=1 + } + points { + (363,285) + (381,285) + } + } + } +} +composite { + object { + x=5 + y=318 + width=671 + height=15 + } + "composite name"="" + children { + composite { + object { + x=5 + y=318 + width=20 + height=15 + } + "composite name"="" + children { + polyline { object { x=5 y=318 - width=671 - height=15 + width=21 + height=9 } - "composite name"="" - children { - composite { - object { - x=5 - y=318 - width=20 - height=15 - } - "composite name"="" - children { - polyline { - object { - x=5 - y=318 - width=21 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (6,326) - (25,319) - } - } - polyline { - object { - x=5 - y=324 - width=21 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (6,325) - (25,332) - } - } - } - } - composite { - object { - x=335 - y=318 - width=20 - height=15 - } - "composite name"="" - children { - polyline { - object { - x=335 - y=318 - width=21 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (336,326) - (355,319) - } - } - polyline { - object { - x=335 - y=324 - width=21 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (336,325) - (355,332) - } - } - } - } - composite { - object { - x=651 - y=318 - width=20 - height=15 - } - "composite name"="" - children { - polyline { - object { - x=651 - y=318 - width=21 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (652,326) - (671,319) - } - } - polyline { - object { - x=651 - y=324 - width=21 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (652,325) - (671,332) - } - } - } - } - polyline { - object { - x=5 - y=325 - width=671 - height=2 - } - "basic attribute" { - clr=20 - width=2 - } - points { - (6,326) - (675,326) - } - } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } + points { + (6,326) + (25,319) } } - composite { + polyline { + object { + x=5 + y=324 + width=21 + height=9 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } + points { + (6,325) + (25,332) + } + } + } + } + composite { + object { + x=335 + y=318 + width=20 + height=15 + } + "composite name"="" + children { + polyline { + object { + x=335 + y=318 + width=21 + height=9 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } + points { + (336,326) + (355,319) + } + } + polyline { + object { + x=335 + y=324 + width=21 + height=9 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } + points { + (336,325) + (355,332) + } + } + } + } + composite { + object { + x=651 + y=318 + width=20 + height=15 + } + "composite name"="" + children { + polyline { + object { + x=651 + y=318 + width=21 + height=9 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } + points { + (652,326) + (671,319) + } + } + polyline { + object { + x=651 + y=324 + width=21 + height=9 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } + points { + (652,325) + (671,332) + } + } + } + } + polyline { + object { + x=5 + y=325 + width=671 + height=2 + } + "basic attribute" { + clr=20 + width=2 + } + points { + (6,326) + (675,326) + } + } + } +} +composite { + object { + x=303 + y=345 + width=79 + height=20 + } + "composite name"="" + children { + polyline { + object { + x=303 + y=352 + width=19 + height=1 + } + "basic attribute" { + clr=14 + width=1 + } + points { + (303,352) + (321,352) + } + } + composite { + object { + x=320 + y=345 + width=45 + height=20 + } + "composite name"="" + children { + text { object { - x=303 + x=320 y=345 - width=79 - height=20 + width=45 + height=10 } - "composite name"="" - children { - polyline { - object { - x=303 - y=352 - width=19 - height=1 - } - "basic attribute" { - clr=14 - width=1 - } - points { - (303,352) - (321,352) - } - } - composite { - object { - x=320 - y=345 - width=45 - height=20 - } - "composite name"="" - children { - text { - object { - x=320 - y=345 - width=45 - height=10 - } - "basic attribute" { - clr=14 - } - textix="remove" - align="horiz. centered" - } - text { - object { - x=320 - y=355 - width=45 - height=10 - } - "basic attribute" { - clr=14 - } - textix="insert" - align="horiz. centered" - } - } - } - polyline { - object { - x=363 - y=352 - width=19 - height=1 - } - "basic attribute" { - clr=14 - width=1 - } - points { - (363,352) - (381,352) - } - } + "basic attribute" { + clr=14 } + textix="remove" + align="horiz. centered" } + text { + object { + x=320 + y=355 + width=45 + height=10 + } + "basic attribute" { + clr=14 + } + textix="insert" + align="horiz. centered" + } + } + } + polyline { + object { + x=363 + y=352 + width=19 + height=1 + } + "basic attribute" { + clr=14 + width=1 + } + points { + (363,352) + (381,352) } } } diff --git a/opticsApp/op/adl/filter_4_4_less.adl b/opticsApp/op/adl/filter_4_4_less.adl index 84529e4..3bb82a9 100644 --- a/opticsApp/op/adl/filter_4_4_less.adl +++ b/opticsApp/op/adl/filter_4_4_less.adl @@ -1,7 +1,7 @@ file { - name="/xorApps/epics/synApps_5_6/ioc/33bmTEST/33bmTESTApp/op/adl/filter_4_4_less.adl" - version=030102 + name="/home/oxygen/KPETERSN/development/github-forks/optics/opticsApp/op/adl/filter_4_4_less.adl" + version=030111 } display { object { @@ -951,152 +951,141 @@ composite { } } } +oval { + object { + x=328 + y=222 + width=22 + height=22 + } + "basic attribute" { + clr=11 + width=2 + } +} composite { object { - x=148 - y=220 - width=358 - height=26 + x=310 + y=226 + width=16 + height=15 } "composite name"="" children { - oval { + polyline { object { - x=328 - y=222 - width=22 - height=22 + x=310 + y=226 + width=18 + height=9 } "basic attribute" { - clr=11 + clr=20 width=2 } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } + points { + (311,234) + (327,227) + } } - composite { + polyline { object { x=310 - y=226 - width=16 - height=15 + y=232 + width=18 + height=9 } - "composite name"="" - children { - polyline { - object { - x=310 - y=226 - width=18 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (311,234) - (327,227) - } - } - polyline { - object { - x=310 - y=232 - width=18 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (311,233) - (327,240) - } - } + "basic attribute" { + clr=20 + width=2 } - } - composite { - object { - x=486 - y=226 - width=16 - height=15 + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" } - "composite name"="" - children { - polyline { - object { - x=486 - y=226 - width=18 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (487,234) - (503,227) - } - } - polyline { - object { - x=486 - y=232 - width=18 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (487,233) - (503,240) - } - } + points { + (311,233) + (327,240) } } + } +} +composite { + object { + x=486 + y=226 + width=16 + height=15 + } + "composite name"="" + children { polyline { object { - x=160 - y=233 - width=346 - height=2 + x=486 + y=226 + width=18 + height=9 } "basic attribute" { clr=20 width=2 } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } points { - (161,234) - (505,234) + (487,234) + (503,227) } } - rectangle { + polyline { object { - x=148 - y=220 - width=15 - height=26 + x=486 + y=232 + width=18 + height=9 } "basic attribute" { - clr=11 + clr=20 width=2 } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } + points { + (487,233) + (503,240) + } } } } +polyline { + object { + x=160 + y=233 + width=346 + height=2 + } + "basic attribute" { + clr=20 + width=2 + } + points { + (161,234) + (505,234) + } +} +rectangle { + object { + x=148 + y=220 + width=15 + height=26 + } + "basic attribute" { + clr=11 + width=2 + } +} diff --git a/opticsApp/op/adl/filter_4_4_more.adl b/opticsApp/op/adl/filter_4_4_more.adl index a975a24..c22bc76 100644 --- a/opticsApp/op/adl/filter_4_4_more.adl +++ b/opticsApp/op/adl/filter_4_4_more.adl @@ -1,7 +1,7 @@ file { - name="/net/s33dserv/xorApps/epics/synApps_5_6/ioc/33bmTEST/33bmTESTApp/op/adl/filter_4_4_more.adl" - version=030107 + name="/home/oxygen/KPETERSN/development/github-forks/optics/opticsApp/op/adl/filter_4_4_more.adl" + version=030111 } display { object { @@ -119,470 +119,299 @@ polyline { limits { } } -composite { +rectangle { object { x=10 + y=250 + width=115 + height=21 + } + "basic attribute" { + clr=54 + } +} +composite { + object { + x=180 + y=225 + width=130 + height=170 + } + "composite name"="" + "composite file"="filterbox_more.adl;P=$(P),R=$(R),N1=5,N2=6,N3=7,N4=8" +} +composite { + object { + x=355 + y=225 + width=130 + height=170 + } + "composite name"="" + "composite file"="filterbox_more.adl;P=$(P),R=$(R),N1=1,N2=2,N3=3,N4=4" +} +polyline { + object { + x=130 y=220 - width=496 + width=0 height=180 } + "basic attribute" { + clr=12 + } + points { + (130,220) + (130,400) + } +} +rectangle { + object { + x=10 + y=227 + width=115 + height=21 + } + "basic attribute" { + clr=54 + } +} +text { + object { + x=10 + y=254 + width=115 + height=13 + } + "basic attribute" { + clr=0 + } + textix="$(R)" + align="horiz. centered" +} +"related display" { + object { + x=10 + y=276 + width=50 + height=18 + } + display[0] { + label="less" + name="filter_4_4_less.adl" + args="P=$(P),R=$(R)" + policy="replace display" + } + clr=0 + bclr=49 + label="-less" +} +"related display" { + object { + x=65 + y=275 + width=60 + height=18 + } + display[0] { + label="configure" + name="filter_drive_config.adl" + args="P=$(P),R=$(R)" + } + clr=0 + bclr=49 + label="-configure" +} +text { + object { + x=10 + y=297 + width=118 + height=10 + } + "basic attribute" { + clr=14 + } + textix="filter_4_4_more.adl" +} +text { + object { + x=10 + y=312 + width=118 + height=10 + } + "basic attribute" { + clr=14 + } + textix="2013-01-24 (CMS)" +} +text { + object { + x=10 + y=231 + width=115 + height=13 + } + "basic attribute" { + clr=0 + } + textix="$(P)" + align="horiz. centered" +} +composite { + object { + x=127 + y=275 + width=62 + height=88 + } "composite name"="" children { - rectangle { - object { - x=10 - y=250 - width=115 - height=21 - } - "basic attribute" { - clr=54 - } - } composite { object { - x=180 - y=225 - width=130 - height=170 - } - "composite name"="" - "composite file"="filterbox_more.adl;P=$(P),R=$(R),N1=5,N2=6,N3=7,N4=8" - } - composite { - object { - x=355 - y=225 - width=130 - height=170 - } - "composite name"="" - "composite file"="filterbox_more.adl;P=$(P),R=$(R),N1=1,N2=2,N3=3,N4=4" - } - polyline { - object { - x=130 - y=220 - width=0 - height=180 - } - "basic attribute" { - clr=12 - } - points { - (130,220) - (130,400) - } - } - rectangle { - object { - x=10 - y=227 - width=115 - height=21 - } - "basic attribute" { - clr=54 - } - } - text { - object { - x=10 - y=254 - width=115 - height=13 - } - "basic attribute" { - clr=0 - } - textix="$(R)" - align="horiz. centered" - } - "related display" { - object { - x=10 - y=276 - width=50 - height=18 - } - display[0] { - label="less" - name="filter_4_4_less.adl" - args="P=$(P),R=$(R)" - policy="replace display" - } - clr=0 - bclr=49 - label="-less" - } - "related display" { - object { - x=65 + x=139 y=275 - width=60 - height=18 - } - display[0] { - label="configure" - name="filter_drive_config.adl" - args="P=$(P),R=$(R)" - } - clr=0 - bclr=49 - label="-configure" - } - text { - object { - x=10 - y=297 - width=118 - height=10 - } - "basic attribute" { - clr=14 - } - textix="filter_4_4_more.adl" - } - text { - object { - x=10 - y=312 - width=118 - height=10 - } - "basic attribute" { - clr=14 - } - textix="2013-01-24 (CMS)" - } - text { - object { - x=10 - y=231 - width=115 - height=13 - } - "basic attribute" { - clr=0 - } - textix="$(P)" - align="horiz. centered" - } - composite { - object { - x=127 - y=275 - width=379 - height=88 + width=50 + height=20 } "composite name"="" children { + polyline { + object { + x=170 + y=285 + width=19 + height=1 + } + "basic attribute" { + clr=14 + width=1 + } + points { + (170,285) + (188,285) + } + } composite { object { - x=127 + x=139 y=275 - width=62 - height=88 + width=34 + height=20 } "composite name"="" children { - composite { + text { object { x=139 - y=275 - width=50 - height=20 + y=285 + width=20 + height=10 } - "composite name"="" - children { - polyline { - object { - x=170 - y=285 - width=19 - height=1 - } - "basic attribute" { - clr=14 - width=1 - } - points { - (170,285) - (188,285) - } - } - composite { - object { - x=139 - y=275 - width=34 - height=20 - } - "composite name"="" - children { - text { - object { - x=139 - y=285 - width=20 - height=10 - } - "basic attribute" { - clr=19 - } - textix="free" - } - composite { - object { - x=139 - y=275 - width=34 - height=10 - } - "composite name"="" - children { - text { - object { - x=163 - y=275 - width=10 - height=10 - } - "basic attribute" { - clr=14 - } - textix="/" - } - text { - object { - x=139 - y=275 - width=20 - height=10 - } - "basic attribute" { - clr=20 - } - textix="lock" - } - } - } - } - } + "basic attribute" { + clr=19 } + textix="free" } composite { object { - x=127 - y=343 - width=60 - height=20 + x=139 + y=275 + width=34 + height=10 } "composite name"="" children { - polyline { + text { object { - x=169 - y=352 - width=18 - height=1 + x=163 + y=275 + width=10 + height=10 } "basic attribute" { clr=14 - width=1 - } - points { - (169,352) - (186,352) } + textix="/" } - composite { + text { object { - x=127 - y=343 - width=55 - height=20 + x=139 + y=275 + width=20 + height=10 } - "composite name"="" - children { - text { - object { - x=127 - y=343 - width=55 - height=10 - } - "basic attribute" { - clr=14 - } - textix="remove" - align="horiz. centered" - } - text { - object { - x=127 - y=353 - width=55 - height=10 - } - "basic attribute" { - clr=14 - } - textix="insert" - align="horiz. centered" - } + "basic attribute" { + clr=20 } + textix="lock" } } } } } + } + } + composite { + object { + x=127 + y=343 + width=60 + height=20 + } + "composite name"="" + children { + polyline { + object { + x=169 + y=352 + width=18 + height=1 + } + "basic attribute" { + clr=14 + width=1 + } + points { + (169,352) + (186,352) + } + } composite { object { - x=148 - y=312 - width=358 - height=26 + x=127 + y=343 + width=55 + height=20 } "composite name"="" children { - oval { - object { - x=328 - y=314 - width=22 - height=22 - } - "basic attribute" { - clr=11 - width=2 - } - } - composite { - object { - x=310 - y=318 - width=16 - height=15 - } - "composite name"="" - children { - polyline { - object { - x=310 - y=318 - width=18 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (311,326) - (327,319) - } - } - polyline { - object { - x=310 - y=324 - width=18 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (311,325) - (327,332) - } - } - } - } - composite { + text { object { - x=486 - y=318 - width=16 - height=15 - } - "composite name"="" - children { - polyline { - object { - x=486 - y=318 - width=18 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (487,326) - (503,319) - } - } - polyline { - object { - x=486 - y=324 - width=18 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (487,325) - (503,332) - } - } - } - } - polyline { - object { - x=160 - y=325 - width=346 - height=2 + x=127 + y=343 + width=55 + height=10 } "basic attribute" { - clr=20 - width=2 - } - points { - (161,326) - (505,326) + clr=14 } + textix="remove" + align="horiz. centered" } - rectangle { + text { object { - x=148 - y=312 - width=15 - height=26 + x=127 + y=353 + width=55 + height=10 } "basic attribute" { - clr=11 - width=2 + clr=14 } + textix="insert" + align="horiz. centered" } } } @@ -590,6 +419,144 @@ composite { } } } +oval { + object { + x=328 + y=314 + width=22 + height=22 + } + "basic attribute" { + clr=11 + width=2 + } +} +composite { + object { + x=310 + y=318 + width=16 + height=15 + } + "composite name"="" + children { + polyline { + object { + x=310 + y=318 + width=18 + height=9 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } + points { + (311,326) + (327,319) + } + } + polyline { + object { + x=310 + y=324 + width=18 + height=9 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } + points { + (311,325) + (327,332) + } + } + } +} +composite { + object { + x=486 + y=318 + width=16 + height=15 + } + "composite name"="" + children { + polyline { + object { + x=486 + y=318 + width=18 + height=9 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } + points { + (487,326) + (503,319) + } + } + polyline { + object { + x=486 + y=324 + width=18 + height=9 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } + points { + (487,325) + (503,332) + } + } + } +} +polyline { + object { + x=160 + y=325 + width=346 + height=2 + } + "basic attribute" { + clr=20 + width=2 + } + points { + (161,326) + (505,326) + } +} +rectangle { + object { + x=148 + y=312 + width=15 + height=26 + } + "basic attribute" { + clr=11 + width=2 + } +} composite { object { x=10 diff --git a/opticsApp/op/adl/filter_8_0_less.adl b/opticsApp/op/adl/filter_8_0_less.adl index 6eaa351..cc59f17 100644 --- a/opticsApp/op/adl/filter_8_0_less.adl +++ b/opticsApp/op/adl/filter_8_0_less.adl @@ -1,7 +1,7 @@ file { - name="/xorApps/epics/synApps_5_6/ioc/33bmTEST/33bmTESTApp/op/adl/filter_8_0_less.adl" - version=030102 + name="/home/oxygen/KPETERSN/development/github-forks/optics/opticsApp/op/adl/filter_8_0_less.adl" + version=030111 } display { object { @@ -769,284 +769,273 @@ text { } composite { object { - x=163 + x=175 y=183 - width=348 - height=88 + width=50 + height=20 } "composite name"="" children { + polyline { + object { + x=206 + y=193 + width=19 + height=1 + } + "basic attribute" { + clr=14 + width=1 + } + points { + (206,193) + (224,193) + } + } composite { object { x=175 y=183 - width=50 + width=34 height=20 } "composite name"="" children { - polyline { + text { object { - x=206 + x=175 y=193 - width=19 - height=1 + width=20 + height=10 } "basic attribute" { - clr=14 - width=1 - } - points { - (206,193) - (224,193) + clr=19 } + textix="free" } composite { object { x=175 y=183 width=34 - height=20 + height=10 } "composite name"="" children { text { object { - x=175 - y=193 - width=20 + x=199 + y=183 + width=10 height=10 } "basic attribute" { - clr=19 + clr=14 } - textix="free" + textix="/" } - composite { + text { object { x=175 y=183 - width=34 + width=20 height=10 } - "composite name"="" - children { - text { - object { - x=199 - y=183 - width=10 - height=10 - } - "basic attribute" { - clr=14 - } - textix="/" - } - text { - object { - x=175 - y=183 - width=20 - height=10 - } - "basic attribute" { - clr=20 - } - textix="lock" - } + "basic attribute" { + clr=20 } + textix="lock" } } } } } + } +} +composite { + object { + x=185 + y=226 + width=326 + height=15 + } + "composite name"="" + children { composite { object { - x=185 + x=190 y=226 - width=326 + width=20 height=15 } "composite name"="" children { - composite { + polyline { object { x=190 y=226 - width=20 - height=15 + width=21 + height=9 } - "composite name"="" - children { - polyline { - object { - x=190 - y=226 - width=21 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (191,234) - (210,227) - } - } - polyline { - object { - x=190 - y=232 - width=21 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (191,233) - (210,240) - } - } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } + points { + (191,234) + (210,227) } } - composite { + polyline { + object { + x=190 + y=232 + width=21 + height=9 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } + points { + (191,233) + (210,240) + } + } + } + } + composite { + object { + x=486 + y=226 + width=20 + height=15 + } + "composite name"="" + children { + polyline { object { x=486 y=226 - width=20 - height=15 + width=21 + height=9 } - "composite name"="" - children { - polyline { - object { - x=486 - y=226 - width=21 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (487,234) - (506,227) - } - } - polyline { - object { - x=486 - y=232 - width=21 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (487,233) - (506,240) - } - } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } + points { + (487,234) + (506,227) } } polyline { object { - x=185 - y=233 - width=326 - height=2 + x=486 + y=232 + width=21 + height=9 } "basic attribute" { clr=20 width=2 } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } points { - (186,234) - (510,234) + (487,233) + (506,240) } } } } + polyline { + object { + x=185 + y=233 + width=326 + height=2 + } + "basic attribute" { + clr=20 + width=2 + } + points { + (186,234) + (510,234) + } + } + } +} +composite { + object { + x=163 + y=251 + width=60 + height=20 + } + "composite name"="" + children { + polyline { + object { + x=205 + y=260 + width=18 + height=1 + } + "basic attribute" { + clr=14 + width=1 + } + points { + (205,260) + (222,260) + } + } composite { object { x=163 y=251 - width=60 + width=55 height=20 } "composite name"="" children { - polyline { + text { object { - x=205 - y=260 - width=18 - height=1 + x=163 + y=251 + width=55 + height=10 } "basic attribute" { clr=14 - width=1 - } - points { - (205,260) - (222,260) } + textix="remove" + align="horiz. centered" } - composite { + text { object { x=163 - y=251 + y=261 width=55 - height=20 + height=10 } - "composite name"="" - children { - text { - object { - x=163 - y=251 - width=55 - height=10 - } - "basic attribute" { - clr=14 - } - textix="remove" - align="horiz. centered" - } - text { - object { - x=163 - y=261 - width=55 - height=10 - } - "basic attribute" { - clr=14 - } - textix="insert" - align="horiz. centered" - } + "basic attribute" { + clr=14 } + textix="insert" + align="horiz. centered" } } } diff --git a/opticsApp/op/adl/filter_8_0_more.adl b/opticsApp/op/adl/filter_8_0_more.adl index 142c933..fe63c8e 100644 --- a/opticsApp/op/adl/filter_8_0_more.adl +++ b/opticsApp/op/adl/filter_8_0_more.adl @@ -1,7 +1,7 @@ file { - name="/net/s33dserv/xorApps/epics/synApps_5_6/ioc/33bmTEST/33bmTESTApp/op/adl/filter_8_0_more.adl" - version=030107 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/filter_8_0_more.adl" + version=030111 } display { object { @@ -235,279 +235,191 @@ text { bclr=49 label="-less" } -composite { +polyline { object { - x=185 + x=190 y=318 + width=21 + height=9 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } + points { + (191,326) + (210,319) + } +} +polyline { + object { + x=190 + y=324 + width=21 + height=9 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } + points { + (191,325) + (210,332) + } +} +polyline { + object { + x=486 + y=318 + width=21 + height=9 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } + points { + (487,326) + (506,319) + } +} +polyline { + object { + x=486 + y=324 + width=21 + height=9 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } + points { + (487,325) + (506,332) + } +} +polyline { + object { + x=185 + y=325 width=326 - height=15 + height=2 } - "composite name"="" - children { - composite { - object { - x=190 - y=318 - width=20 - height=15 - } - "composite name"="" - children { - polyline { - object { - x=190 - y=318 - width=21 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (191,326) - (210,319) - } - } - polyline { - object { - x=190 - y=324 - width=21 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (191,325) - (210,332) - } - } - } - } - composite { - object { - x=486 - y=318 - width=20 - height=15 - } - "composite name"="" - children { - polyline { - object { - x=486 - y=318 - width=21 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (487,326) - (506,319) - } - } - polyline { - object { - x=486 - y=324 - width=21 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (487,325) - (506,332) - } - } - } - } - polyline { - object { - x=185 - y=325 - width=326 - height=2 - } - "basic attribute" { - clr=20 - width=2 - } - points { - (186,326) - (510,326) - } - } + "basic attribute" { + clr=20 + width=2 + } + points { + (186,326) + (510,326) } } -composite { +polyline { + object { + x=206 + y=285 + width=19 + height=1 + } + "basic attribute" { + clr=14 + width=1 + } + points { + (206,285) + (224,285) + } +} +text { object { x=175 + y=285 + width=20 + height=10 + } + "basic attribute" { + clr=19 + } + textix="free" +} +text { + object { + x=199 y=275 - width=50 - height=20 + width=10 + height=10 } - "composite name"="" - children { - polyline { - object { - x=206 - y=285 - width=19 - height=1 - } - "basic attribute" { - clr=14 - width=1 - } - points { - (206,285) - (224,285) - } - } - composite { - object { - x=175 - y=275 - width=34 - height=20 - } - "composite name"="" - children { - text { - object { - x=175 - y=285 - width=20 - height=10 - } - "basic attribute" { - clr=19 - } - textix="free" - } - composite { - object { - x=175 - y=275 - width=34 - height=10 - } - "composite name"="" - children { - text { - object { - x=199 - y=275 - width=10 - height=10 - } - "basic attribute" { - clr=14 - } - textix="/" - } - text { - object { - x=175 - y=275 - width=20 - height=10 - } - "basic attribute" { - clr=20 - } - textix="lock" - } - } - } - } - } + "basic attribute" { + clr=14 } + textix="/" } -composite { +text { + object { + x=175 + y=275 + width=20 + height=10 + } + "basic attribute" { + clr=20 + } + textix="lock" +} +polyline { + object { + x=205 + y=352 + width=18 + height=1 + } + "basic attribute" { + clr=14 + width=1 + } + points { + (205,352) + (222,352) + } +} +text { object { x=163 y=343 - width=60 - height=20 + width=55 + height=10 } - "composite name"="" - children { - polyline { - object { - x=205 - y=352 - width=18 - height=1 - } - "basic attribute" { - clr=14 - width=1 - } - points { - (205,352) - (222,352) - } - } - composite { - object { - x=163 - y=343 - width=55 - height=20 - } - "composite name"="" - children { - text { - object { - x=163 - y=343 - width=55 - height=10 - } - "basic attribute" { - clr=14 - } - textix="remove" - align="horiz. centered" - } - text { - object { - x=163 - y=353 - width=55 - height=10 - } - "basic attribute" { - clr=14 - } - textix="insert" - align="horiz. centered" - } - } - } + "basic attribute" { + clr=14 } + textix="remove" + align="horiz. centered" +} +text { + object { + x=163 + y=353 + width=55 + height=10 + } + "basic attribute" { + clr=14 + } + textix="insert" + align="horiz. centered" } composite { object { diff --git a/opticsApp/op/adl/filter_8_8_less.adl b/opticsApp/op/adl/filter_8_8_less.adl index 26058fc..7d8b200 100644 --- a/opticsApp/op/adl/filter_8_8_less.adl +++ b/opticsApp/op/adl/filter_8_8_less.adl @@ -1,7 +1,7 @@ file { - name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/filter_8_8_less.adl" - version=030102 + name="/home/oxygen/KPETERSN/development/github-forks/optics/opticsApp/op/adl/filter_8_8_less.adl" + version=030111 } display { object { @@ -787,320 +787,298 @@ text { bclr=49 label="-more" } +oval { + object { + x=330 + y=216 + width=30 + height=30 + } + "basic attribute" { + clr=12 + } +} +polyline { + object { + x=5 + y=231 + width=671 + height=2 + } + "basic attribute" { + clr=20 + width=2 + } + points { + (6,232) + (675,232) + } +} composite { + object { + x=651 + y=224 + width=20 + height=15 + } + "composite name"="" + children { + polyline { + object { + x=651 + y=224 + width=21 + height=9 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } + points { + (652,232) + (671,225) + } + } + polyline { + object { + x=651 + y=230 + width=21 + height=9 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } + points { + (652,231) + (671,238) + } + } + } +} +composite { + object { + x=305 + y=224 + width=20 + height=15 + } + "composite name"="" + children { + polyline { + object { + x=305 + y=224 + width=21 + height=9 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } + points { + (306,232) + (325,225) + } + } + polyline { + object { + x=305 + y=230 + width=21 + height=9 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } + points { + (306,231) + (325,238) + } + } + } +} +rectangle { object { x=5 + y=219 + width=20 + height=25 + } + "basic attribute" { + clr=12 + } +} +composite { + object { + x=290 y=186 - width=671 - height=85 + width=96 + height=10 } "composite name"="" children { - composite { + polyline { object { - x=5 - y=216 - width=671 - height=30 + x=290 + y=191 + width=20 + height=1 } - "composite name"="" - children { - oval { - object { - x=330 - y=216 - width=30 - height=30 - } - "basic attribute" { - clr=12 - } - } - polyline { - object { - x=5 - y=231 - width=671 - height=2 - } - "basic attribute" { - clr=20 - width=2 - } - points { - (6,232) - (675,232) - } - } - composite { - object { - x=651 - y=224 - width=20 - height=15 - } - "composite name"="" - children { - polyline { - object { - x=651 - y=224 - width=21 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (652,232) - (671,225) - } - } - polyline { - object { - x=651 - y=230 - width=21 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (652,231) - (671,238) - } - } - } - } - composite { - object { - x=305 - y=224 - width=20 - height=15 - } - "composite name"="" - children { - polyline { - object { - x=305 - y=224 - width=21 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (306,232) - (325,225) - } - } - polyline { - object { - x=305 - y=230 - width=21 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (306,231) - (325,238) - } - } - } - } - rectangle { - object { - x=5 - y=219 - width=20 - height=25 - } - "basic attribute" { - clr=12 - } - } + "basic attribute" { + clr=14 + width=1 + } + points { + (290,191) + (309,191) } } composite { object { - x=290 + x=312 y=186 - width=96 + width=49 height=10 } "composite name"="" children { - polyline { - object { - x=290 - y=191 - width=20 - height=1 - } - "basic attribute" { - clr=14 - width=1 - } - points { - (290,191) - (309,191) - } - } - composite { + text { object { x=312 y=186 - width=49 + width=20 height=10 } - "composite name"="" - children { - text { - object { - x=312 - y=186 - width=20 - height=10 - } - "basic attribute" { - clr=20 - } - textix="lock" - } - text { - object { - x=336 - y=186 - width=10 - height=10 - } - "basic attribute" { - clr=14 - } - textix="/" - } - text { - object { - x=341 - y=186 - width=20 - height=10 - } - "basic attribute" { - clr=19 - } - textix="free" - } - } - } - polyline { - object { - x=367 - y=191 - width=19 - height=1 - } "basic attribute" { - clr=14 - width=1 - } - points { - (367,191) - (385,191) - } - } - } - } - composite { - object { - x=293 - y=251 - width=89 - height=20 - } - "composite name"="" - children { - polyline { - object { - x=358 - y=258 - width=24 - height=1 - } - "basic attribute" { - clr=14 - width=1 - } - points { - (358,258) - (381,258) - } - } - polyline { - object { - x=293 - y=258 - width=24 - height=1 - } - "basic attribute" { - clr=14 - width=1 - } - points { - (293,258) - (316,258) + clr=20 } + textix="lock" } text { object { - x=311 - y=261 - width=55 + x=336 + y=186 + width=10 height=10 } "basic attribute" { clr=14 } - textix="insert" - align="horiz. centered" + textix="/" } text { object { - x=311 - y=251 - width=55 + x=341 + y=186 + width=20 height=10 } "basic attribute" { - clr=14 + clr=19 } - textix="remove" - align="horiz. centered" + textix="free" } } } + polyline { + object { + x=367 + y=191 + width=19 + height=1 + } + "basic attribute" { + clr=14 + width=1 + } + points { + (367,191) + (385,191) + } + } + } +} +composite { + object { + x=293 + y=251 + width=89 + height=20 + } + "composite name"="" + children { + polyline { + object { + x=358 + y=258 + width=24 + height=1 + } + "basic attribute" { + clr=14 + width=1 + } + points { + (358,258) + (381,258) + } + } + polyline { + object { + x=293 + y=258 + width=24 + height=1 + } + "basic attribute" { + clr=14 + width=1 + } + points { + (293,258) + (316,258) + } + } + text { + object { + x=311 + y=261 + width=55 + height=10 + } + "basic attribute" { + clr=14 + } + textix="insert" + align="horiz. centered" + } + text { + object { + x=311 + y=251 + width=55 + height=10 + } + "basic attribute" { + clr=14 + } + textix="remove" + align="horiz. centered" + } } } diff --git a/opticsApp/op/adl/filter_8_8_more.adl b/opticsApp/op/adl/filter_8_8_more.adl index 1fe77dc..4b8dfbf 100644 --- a/opticsApp/op/adl/filter_8_8_more.adl +++ b/opticsApp/op/adl/filter_8_8_more.adl @@ -1,7 +1,7 @@ file { - name="/net/s33dserv/xorApps/epics/synApps_5_6/ioc/33bmTEST/33bmTESTApp/op/adl/filter_8_8_more.adl" - version=030107 + name="/home/oxygen/KPETERSN/development/github-forks/optics/opticsApp/op/adl/filter_8_8_more.adl" + version=030111 } display { object { @@ -398,153 +398,142 @@ composite { } } } -composite { +oval { object { - x=5 + x=330 y=310 - width=671 + width=30 height=30 } + "basic attribute" { + clr=12 + } +} +polyline { + object { + x=5 + y=325 + width=671 + height=2 + } + "basic attribute" { + clr=20 + width=2 + } + points { + (6,326) + (675,326) + } +} +composite { + object { + x=651 + y=318 + width=20 + height=15 + } "composite name"="" children { - oval { + polyline { object { - x=330 - y=310 - width=30 - height=30 + x=651 + y=318 + width=21 + height=9 } "basic attribute" { - clr=12 + clr=20 + width=2 + } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } + points { + (652,326) + (671,319) } } polyline { object { - x=5 - y=325 - width=671 - height=2 + x=651 + y=324 + width=21 + height=9 } "basic attribute" { clr=20 width=2 } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } points { - (6,326) - (675,326) + (652,325) + (671,332) } } - composite { + } +} +composite { + object { + x=305 + y=318 + width=20 + height=15 + } + "composite name"="" + children { + polyline { object { - x=651 + x=305 y=318 - width=20 - height=15 + width=21 + height=9 } - "composite name"="" - children { - polyline { - object { - x=651 - y=318 - width=21 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (652,326) - (671,319) - } - } - polyline { - object { - x=651 - y=324 - width=21 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (652,325) - (671,332) - } - } + "basic attribute" { + clr=20 + width=2 } - } - composite { - object { - x=305 - y=318 - width=20 - height=15 + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" } - "composite name"="" - children { - polyline { - object { - x=305 - y=318 - width=21 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (306,326) - (325,319) - } - } - polyline { - object { - x=305 - y=324 - width=21 - height=9 - } - "basic attribute" { - clr=20 - width=2 - } - "dynamic attribute" { - chan="$(P)$(R)EnergyLocal" - } - points { - (306,325) - (325,332) - } - } + points { + (306,326) + (325,319) } } - rectangle { + polyline { object { - x=5 - y=313 - width=20 - height=25 + x=305 + y=324 + width=21 + height=9 } "basic attribute" { - clr=12 + clr=20 + width=2 + } + "dynamic attribute" { + chan="$(P)$(R)EnergyLocal" + } + points { + (306,325) + (325,332) } } } } +rectangle { + object { + x=5 + y=313 + width=20 + height=25 + } + "basic attribute" { + clr=12 + } +} polyline { object { x=0 diff --git a/opticsApp/op/adl/filter_blade.adl b/opticsApp/op/adl/filter_blade.adl index 773bb91..e141ea1 100644 --- a/opticsApp/op/adl/filter_blade.adl +++ b/opticsApp/op/adl/filter_blade.adl @@ -1,13 +1,13 @@ file { - name="/xorApps/epics/synApps_5_6/ioc/33bmTEST/33bmTESTApp/op/adl/filter_blade.adl" - version=030102 + name="/home/oxygen40/KPETERSN/development/github-forks/optics/opticsApp/op/adl/filter_blade.adl" + version=030111 } display { object { x=990 y=150 - width=26 + width=72 height=88 } clr=14 @@ -167,37 +167,26 @@ composite { } "composite name"="" children { - composite { + "message button" { object { x=6 y=0 width=14 height=14 } - "composite name"="" - children { - "message button" { - object { - x=6 - y=0 - width=14 - height=14 - } - control { - chan="$(P)$(R)Fi$(N):Lock" - clr=14 - bclr=15 - } - label="F" - press_msg="1" - } - } - "dynamic attribute" { - vis="if zero" + control { chan="$(P)$(R)Fi$(N):Lock" + clr=14 + bclr=15 } + label="F" + press_msg="1" } } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(R)Fi$(N):Lock" + } } rectangle { object { diff --git a/opticsApp/op/adl/filter_drive.adl b/opticsApp/op/adl/filter_drive.adl index 1f1e2b1..c021287 100644 --- a/opticsApp/op/adl/filter_drive.adl +++ b/opticsApp/op/adl/filter_drive.adl @@ -1,7 +1,7 @@ file { - name="/net/s33dserv/xorApps/epics/synApps_5_6/ioc/33bmTEST/33bmTESTApp/op/adl/filter_drive.adl" - version=030107 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/filter_drive.adl" + version=030111 } display { object { @@ -383,239 +383,228 @@ text { } textix="keV" } -composite { +"message button" { object { x=230 y=0 - width=155 - height=108 - } - "composite name"="" - children { - "message button" { - object { - x=230 - y=0 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionFactor" - clr=14 - bclr=51 - } - label="/1000" - press_msg="0.001" - } - "message button" { - object { - x=340 - y=0 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionSetpoint" - clr=14 - bclr=51 - } - label="1e-2" - press_msg="1.0e-2" - } - "message button" { - object { - x=340 - y=22 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionSetpoint" - clr=14 - bclr=51 - } - label="1e-4" - press_msg="1.0e-4" - } - "message button" { - object { - x=340 - y=44 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionSetpoint" - clr=14 - bclr=51 - } - label="1e-6" - press_msg="1.0e-6" - } - "message button" { - object { - x=340 - y=66 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionSetpoint" - clr=14 - bclr=51 - } - label="1e-8" - press_msg="1.0e-8" - } - "message button" { - object { - x=340 - y=88 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionSetpoint" - clr=14 - bclr=51 - } - label="1e-10" - press_msg="1.0e-10" - } - "message button" { - object { - x=230 - y=22 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionFactor" - clr=14 - bclr=51 - } - label="/10" - press_msg="0.1" - } - "message button" { - object { - x=230 - y=44 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionFactor" - clr=14 - bclr=51 - } - label="/2" - press_msg=".5" - } - "message button" { - object { - x=230 - y=66 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionFactor" - clr=14 - bclr=51 - } - label="-10%" - press_msg="0.9" - } - "message button" { - object { - x=230 - y=88 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionStepDown" - clr=14 - bclr=51 - } - label="-" - press_msg="1" - } - "message button" { - object { - x=280 - y=88 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionStepUp" - clr=14 - bclr=51 - } - label="+" - press_msg="1" - } - "message button" { - object { - x=280 - y=0 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionFactor" - clr=14 - bclr=51 - } - label="*1000" - press_msg="1000" - } - "message button" { - object { - x=280 - y=22 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionFactor" - clr=14 - bclr=51 - } - label="*10" - press_msg="10" - } - "message button" { - object { - x=280 - y=44 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionFactor" - clr=14 - bclr=51 - } - label="*2" - press_msg="2" - } - "message button" { - object { - x=280 - y=66 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionFactor" - clr=14 - bclr=51 - } - label="+10%" - press_msg="1.1" - } + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionFactor" + clr=14 + bclr=51 + } + label="/1000" + press_msg="0.001" +} +"message button" { + object { + x=340 + y=0 + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionSetpoint" + clr=14 + bclr=51 + } + label="1e-2" + press_msg="1.0e-2" +} +"message button" { + object { + x=340 + y=22 + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionSetpoint" + clr=14 + bclr=51 + } + label="1e-4" + press_msg="1.0e-4" +} +"message button" { + object { + x=340 + y=44 + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionSetpoint" + clr=14 + bclr=51 + } + label="1e-6" + press_msg="1.0e-6" +} +"message button" { + object { + x=340 + y=66 + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionSetpoint" + clr=14 + bclr=51 + } + label="1e-8" + press_msg="1.0e-8" +} +"message button" { + object { + x=340 + y=88 + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionSetpoint" + clr=14 + bclr=51 + } + label="1e-10" + press_msg="1.0e-10" +} +"message button" { + object { + x=230 + y=22 + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionFactor" + clr=14 + bclr=51 + } + label="/10" + press_msg="0.1" +} +"message button" { + object { + x=230 + y=44 + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionFactor" + clr=14 + bclr=51 + } + label="/2" + press_msg=".5" +} +"message button" { + object { + x=230 + y=66 + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionFactor" + clr=14 + bclr=51 + } + label="-10%" + press_msg="0.9" +} +"message button" { + object { + x=230 + y=88 + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionStepDown" + clr=14 + bclr=51 + } + label="-" + press_msg="1" +} +"message button" { + object { + x=280 + y=88 + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionStepUp" + clr=14 + bclr=51 + } + label="+" + press_msg="1" +} +"message button" { + object { + x=280 + y=0 + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionFactor" + clr=14 + bclr=51 + } + label="*1000" + press_msg="1000" +} +"message button" { + object { + x=280 + y=22 + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionFactor" + clr=14 + bclr=51 + } + label="*10" + press_msg="10" +} +"message button" { + object { + x=280 + y=44 + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionFactor" + clr=14 + bclr=51 + } + label="*2" + press_msg="2" +} +"message button" { + object { + x=280 + y=66 + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionFactor" + clr=14 + bclr=51 } + label="+10%" + press_msg="1.1" } diff --git a/opticsApp/op/adl/filter_drive_more.adl b/opticsApp/op/adl/filter_drive_more.adl index da2ff71..a0f68d3 100644 --- a/opticsApp/op/adl/filter_drive_more.adl +++ b/opticsApp/op/adl/filter_drive_more.adl @@ -1,7 +1,7 @@ file { - name="/net/s33dserv/xorApps/epics/synApps_5_6/ioc/33bmTEST/33bmTESTApp/op/adl/filter_drive_more.adl" - version=030107 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/filter_drive_more.adl" + version=030111 } display { object { @@ -244,241 +244,230 @@ text { } textix="keV" } -composite { +"message button" { object { x=230 y=0 - width=155 - height=108 - } - "composite name"="" - children { - "message button" { - object { - x=230 - y=0 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionFactor" - clr=14 - bclr=51 - } - label="/1000" - press_msg="0.001" - } - "message button" { - object { - x=340 - y=0 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionSetpoint" - clr=14 - bclr=51 - } - label="1e-2" - press_msg="1.0e-2" - } - "message button" { - object { - x=340 - y=22 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionSetpoint" - clr=14 - bclr=51 - } - label="1e-4" - press_msg="1.0e-4" - } - "message button" { - object { - x=340 - y=44 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionSetpoint" - clr=14 - bclr=51 - } - label="1e-6" - press_msg="1.0e-6" - } - "message button" { - object { - x=340 - y=66 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionSetpoint" - clr=14 - bclr=51 - } - label="1e-8" - press_msg="1.0e-8" - } - "message button" { - object { - x=340 - y=88 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionSetpoint" - clr=14 - bclr=51 - } - label="1e-10" - press_msg="1.0e-10" - } - "message button" { - object { - x=230 - y=22 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionFactor" - clr=14 - bclr=51 - } - label="/10" - press_msg="0.1" - } - "message button" { - object { - x=230 - y=44 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionFactor" - clr=14 - bclr=51 - } - label="/2" - press_msg=".5" - } - "message button" { - object { - x=230 - y=66 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionFactor" - clr=14 - bclr=51 - } - label="-10%" - press_msg="0.9" - } - "message button" { - object { - x=230 - y=88 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionStepDown" - clr=14 - bclr=51 - } - label="-" - press_msg="1" - } - "message button" { - object { - x=280 - y=88 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionStepUp" - clr=14 - bclr=51 - } - label="+" - press_msg="1" - } - "message button" { - object { - x=280 - y=0 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionFactor" - clr=14 - bclr=51 - } - label="*1000" - press_msg="1000" - } - "message button" { - object { - x=280 - y=22 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionFactor" - clr=14 - bclr=51 - } - label="*10" - press_msg="10" - } - "message button" { - object { - x=280 - y=44 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionFactor" - clr=14 - bclr=51 - } - label="*2" - press_msg="2" - } - "message button" { - object { - x=280 - y=66 - width=45 - height=20 - } - control { - chan="$(P)$(R)TransmissionFactor" - clr=14 - bclr=51 - } - label="+10%" - press_msg="1.1" - } + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionFactor" + clr=14 + bclr=51 + } + label="/1000" + press_msg="0.001" +} +"message button" { + object { + x=340 + y=0 + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionSetpoint" + clr=14 + bclr=51 + } + label="1e-2" + press_msg="1.0e-2" +} +"message button" { + object { + x=340 + y=22 + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionSetpoint" + clr=14 + bclr=51 + } + label="1e-4" + press_msg="1.0e-4" +} +"message button" { + object { + x=340 + y=44 + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionSetpoint" + clr=14 + bclr=51 + } + label="1e-6" + press_msg="1.0e-6" +} +"message button" { + object { + x=340 + y=66 + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionSetpoint" + clr=14 + bclr=51 + } + label="1e-8" + press_msg="1.0e-8" +} +"message button" { + object { + x=340 + y=88 + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionSetpoint" + clr=14 + bclr=51 + } + label="1e-10" + press_msg="1.0e-10" +} +"message button" { + object { + x=230 + y=22 + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionFactor" + clr=14 + bclr=51 + } + label="/10" + press_msg="0.1" +} +"message button" { + object { + x=230 + y=44 + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionFactor" + clr=14 + bclr=51 + } + label="/2" + press_msg=".5" +} +"message button" { + object { + x=230 + y=66 + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionFactor" + clr=14 + bclr=51 + } + label="-10%" + press_msg="0.9" +} +"message button" { + object { + x=230 + y=88 + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionStepDown" + clr=14 + bclr=51 + } + label="-" + press_msg="1" +} +"message button" { + object { + x=280 + y=88 + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionStepUp" + clr=14 + bclr=51 + } + label="+" + press_msg="1" +} +"message button" { + object { + x=280 + y=0 + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionFactor" + clr=14 + bclr=51 + } + label="*1000" + press_msg="1000" +} +"message button" { + object { + x=280 + y=22 + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionFactor" + clr=14 + bclr=51 + } + label="*10" + press_msg="10" +} +"message button" { + object { + x=280 + y=44 + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionFactor" + clr=14 + bclr=51 + } + label="*2" + press_msg="2" +} +"message button" { + object { + x=280 + y=66 + width=45 + height=20 + } + control { + chan="$(P)$(R)TransmissionFactor" + clr=14 + bclr=51 } + label="+10%" + press_msg="1.1" } "text update" { object { diff --git a/opticsApp/op/adl/filterbox_config.adl b/opticsApp/op/adl/filterbox_config.adl index deff801..081813f 100644 --- a/opticsApp/op/adl/filterbox_config.adl +++ b/opticsApp/op/adl/filterbox_config.adl @@ -1,12 +1,12 @@ file { - name="/xorApps/epics/synApps_5_6/ioc/33bmTEST/33bmTESTApp/op/adl/filterbox_config.adl" - version=030102 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/filterbox_config.adl" + version=030111 } display { object { - x=300 - y=200 + x=664 + y=480 width=425 height=125 } @@ -87,374 +87,319 @@ display { 1a7309, } } -composite { +text { object { x=5 y=5 - width=325 + width=45 height=15 } - "composite name"="" - children { - text { - object { - x=5 - y=5 - width=45 - height=15 - } - "basic attribute" { - clr=14 - } - textix="Filter" - } - text { - object { - x=70 - y=5 - width=70 - height=15 - } - "basic attribute" { - clr=14 - } - textix="Material" - } - text { - object { - x=150 - y=5 - width=70 - height=15 - } - "basic attribute" { - clr=14 - } - textix="Thickness" - } - text { - object { - x=280 - y=5 - width=50 - height=15 - } - "basic attribute" { - clr=14 - } - textix="Enable" - } + "basic attribute" { + clr=14 } + textix="Filter" } -composite { +text { + object { + x=70 + y=5 + width=70 + height=15 + } + "basic attribute" { + clr=14 + } + textix="Material" +} +text { + object { + x=150 + y=5 + width=70 + height=15 + } + "basic attribute" { + clr=14 + } + textix="Thickness" +} +text { + object { + x=280 + y=5 + width=50 + height=15 + } + "basic attribute" { + clr=14 + } + textix="Enable" +} +text { object { x=5 + y=27 + width=45 + height=15 + } + "basic attribute" { + clr=14 + } + textix="$(N1):" +} +menu { + object { + x=70 y=25 - width=415 + width=70 height=20 } - "composite name"="" - children { - text { - object { - x=5 - y=27 - width=45 - height=15 - } - "basic attribute" { - clr=14 - } - textix="$(N1):" - } - menu { - object { - x=70 - y=25 - width=70 - height=20 - } - control { - chan="$(P)$(R)Fi$(N1):Material" - clr=14 - bclr=6 - } - } - "text entry" { - object { - x=150 - y=25 - width=100 - height=20 - } - control { - chan="$(P)$(R)Fi$(N1):Thickness" - clr=14 - bclr=51 - } - limits { - } - } - "choice button" { - object { - x=280 - y=25 - width=140 - height=20 - } - control { - chan="$(P)$(R)Fi$(N1):Enable" - clr=14 - bclr=51 - } - clrmod="alarm" - stacking="column" - } - text { - object { - x=255 - y=26 - width=16 - height=17 - } - "basic attribute" { - clr=14 - } - textix="um" - } + control { + chan="$(P)$(R)Fi$(N1):Material" + clr=14 + bclr=6 } } -composite { +"text entry" { object { - x=5 + x=150 + y=25 + width=100 + height=20 + } + control { + chan="$(P)$(R)Fi$(N1):Thickness" + clr=14 + bclr=51 + } + limits { + } +} +"choice button" { + object { + x=280 + y=25 + width=140 + height=20 + } + control { + chan="$(P)$(R)Fi$(N1):Enable" + clr=14 + bclr=51 + } + clrmod="alarm" + stacking="column" +} +text { + object { + x=255 + y=26 + width=16 + height=17 + } + "basic attribute" { + clr=14 + } + textix="um" +} +menu { + object { + x=70 y=50 - width=415 + width=70 height=20 } - "composite name"="" - children { - menu { - object { - x=70 - y=50 - width=70 - height=20 - } - control { - chan="$(P)$(R)Fi$(N2):Material" - clr=14 - bclr=6 - } - } - "text entry" { - object { - x=150 - y=50 - width=100 - height=20 - } - control { - chan="$(P)$(R)Fi$(N2):Thickness" - clr=14 - bclr=51 - } - limits { - } - } - "choice button" { - object { - x=280 - y=50 - width=140 - height=20 - } - control { - chan="$(P)$(R)Fi$(N2):Enable" - clr=14 - bclr=51 - } - clrmod="alarm" - stacking="column" - } - text { - object { - x=255 - y=51 - width=16 - height=17 - } - "basic attribute" { - clr=14 - } - textix="um" - } - text { - object { - x=5 - y=52 - width=45 - height=15 - } - "basic attribute" { - clr=14 - } - textix="$(N2):" - } + control { + chan="$(P)$(R)Fi$(N2):Material" + clr=14 + bclr=6 + } +} +"text entry" { + object { + x=150 + y=50 + width=100 + height=20 + } + control { + chan="$(P)$(R)Fi$(N2):Thickness" + clr=14 + bclr=51 + } + limits { + } +} +"choice button" { + object { + x=280 + y=50 + width=140 + height=20 + } + control { + chan="$(P)$(R)Fi$(N2):Enable" + clr=14 + bclr=51 + } + clrmod="alarm" + stacking="column" +} +text { + object { + x=255 + y=51 + width=16 + height=17 + } + "basic attribute" { + clr=14 + } + textix="um" +} +text { + object { + x=5 + y=52 + width=45 + height=15 + } + "basic attribute" { + clr=14 } + textix="$(N2):" } -composite { +text { object { x=5 + y=77 + width=45 + height=15 + } + "basic attribute" { + clr=14 + } + textix="$(N3):" +} +menu { + object { + x=70 y=75 - width=415 + width=70 height=20 } - "composite name"="" - children { - text { - object { - x=5 - y=77 - width=45 - height=15 - } - "basic attribute" { - clr=14 - } - textix="$(N3):" - } - menu { - object { - x=70 - y=75 - width=70 - height=20 - } - control { - chan="$(P)$(R)Fi$(N3):Material" - clr=14 - bclr=6 - } - } - "text entry" { - object { - x=150 - y=75 - width=100 - height=20 - } - control { - chan="$(P)$(R)Fi$(N3):Thickness" - clr=14 - bclr=51 - } - limits { - } - } - text { - object { - x=255 - y=76 - width=16 - height=17 - } - "basic attribute" { - clr=14 - } - textix="um" - } - "choice button" { - object { - x=280 - y=75 - width=140 - height=20 - } - control { - chan="$(P)$(R)Fi$(N3):Enable" - clr=14 - bclr=51 - } - clrmod="alarm" - stacking="column" - } + control { + chan="$(P)$(R)Fi$(N3):Material" + clr=14 + bclr=6 } } -composite { +"text entry" { object { - x=5 + x=150 + y=75 + width=100 + height=20 + } + control { + chan="$(P)$(R)Fi$(N3):Thickness" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=255 + y=76 + width=16 + height=17 + } + "basic attribute" { + clr=14 + } + textix="um" +} +"choice button" { + object { + x=280 + y=75 + width=140 + height=20 + } + control { + chan="$(P)$(R)Fi$(N3):Enable" + clr=14 + bclr=51 + } + clrmod="alarm" + stacking="column" +} +"choice button" { + object { + x=280 + y=100 + width=140 + height=20 + } + control { + chan="$(P)$(R)Fi$(N4):Enable" + clr=14 + bclr=51 + } + clrmod="alarm" + stacking="column" +} +text { + object { + x=255 + y=101 + width=16 + height=17 + } + "basic attribute" { + clr=14 + } + textix="um" +} +"text entry" { + object { + x=150 y=100 - width=415 + width=100 height=20 } - "composite name"="" - children { - "choice button" { - object { - x=280 - y=100 - width=140 - height=20 - } - control { - chan="$(P)$(R)Fi$(N4):Enable" - clr=14 - bclr=51 - } - clrmod="alarm" - stacking="column" - } - text { - object { - x=255 - y=101 - width=16 - height=17 - } - "basic attribute" { - clr=14 - } - textix="um" - } - "text entry" { - object { - x=150 - y=100 - width=100 - height=20 - } - control { - chan="$(P)$(R)Fi$(N4):Thickness" - clr=14 - bclr=51 - } - limits { - } - } - menu { - object { - x=70 - y=100 - width=70 - height=20 - } - control { - chan="$(P)$(R)Fi$(N4):Material" - clr=14 - bclr=6 - } - } - text { - object { - x=5 - y=102 - width=45 - height=15 - } - "basic attribute" { - clr=14 - } - textix="$(N4):" - } + control { + chan="$(P)$(R)Fi$(N4):Thickness" + clr=14 + bclr=51 + } + limits { + } +} +menu { + object { + x=70 + y=100 + width=70 + height=20 + } + control { + chan="$(P)$(R)Fi$(N4):Material" + clr=14 + bclr=6 + } +} +text { + object { + x=5 + y=102 + width=45 + height=15 + } + "basic attribute" { + clr=14 } + textix="$(N4):" } diff --git a/opticsApp/op/adl/filterbox_less.adl b/opticsApp/op/adl/filterbox_less.adl index 5bd920e..790b6b5 100644 --- a/opticsApp/op/adl/filterbox_less.adl +++ b/opticsApp/op/adl/filterbox_less.adl @@ -1,7 +1,7 @@ file { - name="/xorApps/epics/synApps_5_6/ioc/33bmTEST/33bmTESTApp/op/adl/filterbox_less.adl" - version=030102 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/filterbox_less.adl" + version=030111 } display { object { @@ -87,94 +87,72 @@ display { 1a7309, } } -composite { +rectangle { object { x=5 y=5 width=130 height=100 } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } +} +composite { + object { + x=12 + y=11 + width=26 + height=88 + } + "composite name"="" + "composite file"="filter_blade.adl;P=$(P),R=$(R),N=$(N4)" + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(R)Fi$(N4):Enable" + } +} +composite { + object { + x=43 + y=11 + width=26 + height=88 + } + "composite name"="" + "composite file"="filter_blade.adl;P=$(P),R=$(R),N=$(N3)" + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(R)Fi$(N3):Enable" + } +} +composite { + object { + x=74 + y=11 + width=26 + height=88 + } + "composite name"="" + "composite file"="filter_blade.adl;P=$(P),R=$(R),N=$(N2)" + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(R)Fi$(N2):Enable" + } +} +composite { + object { + x=105 + y=11 + width=26 + height=88 + } "composite name"="" - children { - composite { - object { - x=5 - y=5 - width=130 - height=100 - } - "composite name"="" - children { - rectangle { - object { - x=5 - y=5 - width=130 - height=100 - } - "basic attribute" { - clr=14 - fill="outline" - width=2 - } - } - } - } - composite { - object { - x=12 - y=11 - width=26 - height=88 - } - "composite name"="" - "composite file"="filter_blade.adl;P=$(P),R=$(R),N=$(N4)" - "dynamic attribute" { - vis="if not zero" - chan="$(P)$(R)Fi$(N4):Enable" - } - } - composite { - object { - x=43 - y=11 - width=26 - height=88 - } - "composite name"="" - "composite file"="filter_blade.adl;P=$(P),R=$(R),N=$(N3)" - "dynamic attribute" { - vis="if not zero" - chan="$(P)$(R)Fi$(N3):Enable" - } - } - composite { - object { - x=74 - y=11 - width=26 - height=88 - } - "composite name"="" - "composite file"="filter_blade.adl;P=$(P),R=$(R),N=$(N2)" - "dynamic attribute" { - vis="if not zero" - chan="$(P)$(R)Fi$(N2):Enable" - } - } - composite { - object { - x=105 - y=11 - width=26 - height=88 - } - "composite name"="" - "composite file"="filter_blade.adl;P=$(P),R=$(R),N=$(N1)" - "dynamic attribute" { - vis="if not zero" - chan="$(P)$(R)Fi$(N1):Enable" - } - } + "composite file"="filter_blade.adl;P=$(P),R=$(R),N=$(N1)" + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(R)Fi$(N1):Enable" } } diff --git a/opticsApp/op/adl/filterbox_more.adl b/opticsApp/op/adl/filterbox_more.adl index bcf5328..cfb13d4 100644 --- a/opticsApp/op/adl/filterbox_more.adl +++ b/opticsApp/op/adl/filterbox_more.adl @@ -1,7 +1,7 @@ file { - name="/xorApps/epics/synApps_5_6/ioc/33bmTEST/33bmTESTApp/op/adl/filterbox_more.adl" - version=030102 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/filterbox_more.adl" + version=030111 } display { object { @@ -87,28 +87,17 @@ display { 1a7309, } } -composite { +rectangle { object { x=5 y=48 width=130 height=100 } - "composite name"="" - children { - rectangle { - object { - x=5 - y=48 - width=130 - height=100 - } - "basic attribute" { - clr=14 - fill="outline" - width=2 - } - } + "basic attribute" { + clr=14 + fill="outline" + width=2 } } "related display" { @@ -191,304 +180,244 @@ text { } textix="$(N4): Disabled" } -composite { +text { object { x=5 y=12 - width=127 + width=15 height=10 } - "composite name"="" - children { - text { - object { - x=5 - y=12 - width=15 - height=10 - } - "basic attribute" { - clr=14 - } - textix="$(N2):" - } - "text update" { - object { - x=24 - y=12 - width=12 - height=10 - } - monitor { - chan="$(P)$(R)Fi$(N2):Material" - clr=14 - bclr=3 - } - format="string" - limits { - } - } - "text update" { - object { - x=40 - y=12 - width=38 - height=10 - } - monitor { - chan="$(P)$(R)Fi$(N2):Thickness" - clr=14 - bclr=3 - } - format="compact" - limits { - } - } - "text update" { - object { - x=82 - y=12 - width=50 - height=10 - } - monitor { - chan="$(P)$(R)Fi$(N2):Transmission" - clr=54 - bclr=3 - } - format="exponential" - limits { - } - } + "basic attribute" { + clr=14 } - "dynamic attribute" { - vis="if not zero" - chan="$(P)$(R)Fi$(N2):Enable" + textix="$(N2):" +} +"text update" { + object { + x=24 + y=12 + width=12 + height=10 + } + monitor { + chan="$(P)$(R)Fi$(N2):Material" + clr=14 + bclr=3 + } + format="string" + limits { } } -composite { +"text update" { + object { + x=40 + y=12 + width=38 + height=10 + } + monitor { + chan="$(P)$(R)Fi$(N2):Thickness" + clr=14 + bclr=3 + } + format="compact" + limits { + } +} +"text update" { + object { + x=82 + y=12 + width=50 + height=10 + } + monitor { + chan="$(P)$(R)Fi$(N2):Transmission" + clr=54 + bclr=3 + } + format="exponential" + limits { + } +} +text { object { x=5 y=0 - width=127 + width=15 height=10 } - "composite name"="" - children { - text { - object { - x=5 - y=0 - width=15 - height=10 - } - "basic attribute" { - clr=14 - } - textix="$(N1):" - } - "text update" { - object { - x=24 - y=0 - width=12 - height=10 - } - monitor { - chan="$(P)$(R)Fi$(N1):Material" - clr=14 - bclr=3 - } - format="string" - limits { - } - } - "text update" { - object { - x=40 - y=0 - width=38 - height=10 - } - monitor { - chan="$(P)$(R)Fi$(N1):Thickness" - clr=14 - bclr=3 - } - format="compact" - limits { - } - } - "text update" { - object { - x=82 - y=0 - width=50 - height=10 - } - monitor { - chan="$(P)$(R)Fi$(N1):Transmission" - clr=54 - bclr=3 - } - format="exponential" - limits { - } - } + "basic attribute" { + clr=14 } - "dynamic attribute" { - vis="if not zero" - chan="$(P)$(R)Fi$(N1):Enable" + textix="$(N1):" +} +"text update" { + object { + x=24 + y=0 + width=12 + height=10 + } + monitor { + chan="$(P)$(R)Fi$(N1):Material" + clr=14 + bclr=3 + } + format="string" + limits { } } -composite { +"text update" { + object { + x=40 + y=0 + width=38 + height=10 + } + monitor { + chan="$(P)$(R)Fi$(N1):Thickness" + clr=14 + bclr=3 + } + format="compact" + limits { + } +} +"text update" { + object { + x=82 + y=0 + width=50 + height=10 + } + monitor { + chan="$(P)$(R)Fi$(N1):Transmission" + clr=54 + bclr=3 + } + format="exponential" + limits { + } +} +text { object { x=5 y=24 - width=127 + width=15 height=10 } - "composite name"="" - children { - text { - object { - x=5 - y=24 - width=15 - height=10 - } - "basic attribute" { - clr=14 - } - textix="$(N3):" - } - "text update" { - object { - x=24 - y=24 - width=12 - height=10 - } - monitor { - chan="$(P)$(R)Fi$(N3):Material" - clr=14 - bclr=3 - } - format="string" - limits { - } - } - "text update" { - object { - x=40 - y=24 - width=38 - height=10 - } - monitor { - chan="$(P)$(R)Fi$(N3):Thickness" - clr=14 - bclr=3 - } - format="compact" - limits { - } - } - "text update" { - object { - x=82 - y=24 - width=50 - height=10 - } - monitor { - chan="$(P)$(R)Fi$(N3):Transmission" - clr=54 - bclr=3 - } - format="exponential" - limits { - } - } + "basic attribute" { + clr=14 } - "dynamic attribute" { - vis="if not zero" - chan="$(P)$(R)Fi$(N3):Enable" + textix="$(N3):" +} +"text update" { + object { + x=24 + y=24 + width=12 + height=10 + } + monitor { + chan="$(P)$(R)Fi$(N3):Material" + clr=14 + bclr=3 + } + format="string" + limits { } } -composite { +"text update" { + object { + x=40 + y=24 + width=38 + height=10 + } + monitor { + chan="$(P)$(R)Fi$(N3):Thickness" + clr=14 + bclr=3 + } + format="compact" + limits { + } +} +"text update" { + object { + x=82 + y=24 + width=50 + height=10 + } + monitor { + chan="$(P)$(R)Fi$(N3):Transmission" + clr=54 + bclr=3 + } + format="exponential" + limits { + } +} +text { object { x=5 y=36 - width=127 + width=15 height=10 } - "composite name"="" - children { - text { - object { - x=5 - y=36 - width=15 - height=10 - } - "basic attribute" { - clr=14 - } - textix="$(N4):" - } - "text update" { - object { - x=24 - y=36 - width=12 - height=10 - } - monitor { - chan="$(P)$(R)Fi$(N4):Material" - clr=14 - bclr=3 - } - format="string" - limits { - } - } - "text update" { - object { - x=40 - y=36 - width=38 - height=10 - } - monitor { - chan="$(P)$(R)Fi$(N4):Thickness" - clr=14 - bclr=3 - } - format="compact" - limits { - } - } - "text update" { - object { - x=82 - y=36 - width=50 - height=10 - } - monitor { - chan="$(P)$(R)Fi$(N4):Transmission" - clr=54 - bclr=3 - } - format="exponential" - limits { - } - } + "basic attribute" { + clr=14 } - "dynamic attribute" { - vis="if not zero" - chan="$(P)$(R)Fi$(N4):Enable" + textix="$(N4):" +} +"text update" { + object { + x=24 + y=36 + width=12 + height=10 + } + monitor { + chan="$(P)$(R)Fi$(N4):Material" + clr=14 + bclr=3 + } + format="string" + limits { + } +} +"text update" { + object { + x=40 + y=36 + width=38 + height=10 + } + monitor { + chan="$(P)$(R)Fi$(N4):Thickness" + clr=14 + bclr=3 + } + format="compact" + limits { + } +} +"text update" { + object { + x=82 + y=36 + width=50 + height=10 + } + monitor { + chan="$(P)$(R)Fi$(N4):Transmission" + clr=54 + bclr=3 + } + format="exponential" + limits { } } composite { diff --git a/opticsApp/op/adl/flexCapSensor.adl b/opticsApp/op/adl/flexCapSensor.adl new file mode 100644 index 0000000..242570f --- /dev/null +++ b/opticsApp/op/adl/flexCapSensor.adl @@ -0,0 +1,245 @@ + +file { + name="/home/beams3/KPETERSN/development/github-forks/optics/opticsApp/op/adl/flexCapSensor.adl" + version=030111 +} +display { + object { + x=643 + y=151 + width=210 + height=210 + } + clr=14 + bclr=4 + cmap="" + gridSpacing=5 + gridOn=0 + snapToGrid=0 +} +"color map" { + ncolors=65 + colors { + ffffff, + ececec, + dadada, + c8c8c8, + bbbbbb, + aeaeae, + 9e9e9e, + 919191, + 858585, + 787878, + 696969, + 5a5a5a, + 464646, + 2d2d2d, + 000000, + 00d800, + 1ebb00, + 339900, + 2d7f00, + 216c00, + fd0000, + de1309, + be190b, + a01207, + 820400, + 5893ff, + 597ee1, + 4b6ec7, + 3a5eab, + 27548d, + fbf34a, + f9da3c, + eeb62b, + e19015, + cd6100, + ffb0ff, + d67fe2, + ae4ebc, + 8b1a96, + 610a75, + a4aaff, + 8793e2, + 6a73c1, + 4d52a4, + 343386, + c7bb6d, + b79d5c, + a47e3c, + 7d5627, + 58340f, + 99ffff, + 73dfff, + 4ea5f9, + 2a63e4, + 0a00b8, + ebf1b5, + d4db9d, + bbc187, + a6a462, + 8b8239, + 73ff6b, + 52da3b, + 3cb420, + 289315, + 1a7309, + } +} +text { + object { + x=5 + y=5 + width=200 + height=45 + } + "basic attribute" { + clr=14 + } + textix="Cap Sensor $(P)$(C)" + align="horiz. centered" +} +"related display" { + object { + x=107 + y=160 + width=80 + height=28 + } + display[0] { + label="Position Calc" + name="yyCalcoutRecord.adl" + args="P=$(P),C=$(C):posCalc" + } + clr=0 + bclr=63 + label="-Pos Calc" +} +"message button" { + object { + x=11 + y=160 + width=80 + height=28 + } + control { + chan="$(P)$(C):zero.PROC" + clr=0 + bclr=53 + } + label="Zero Pos" + press_msg="1" +} +"text update" { + object { + x=93 + y=57 + width=100 + height=18 + } + monitor { + chan="$(P)$(C):pos" + clr=54 + bclr=3 + } + limits { + } +} +text { + object { + x=13 + y=57 + width=75 + height=18 + } + "basic attribute" { + clr=14 + fill="outline" + } + textix="Position" +} +"text update" { + object { + x=93 + y=80 + width=100 + height=18 + } + monitor { + chan="$(P)$(C):voltage" + clr=54 + bclr=3 + } + limits { + } +} +text { + object { + x=13 + y=80 + width=75 + height=18 + } + "basic attribute" { + clr=14 + fill="outline" + } + textix="Voltage" +} +"text update" { + object { + x=93 + y=103 + width=100 + height=18 + } + monitor { + chan="$(P)$(C):umPerV" + clr=54 + bclr=3 + } + limits { + } +} +text { + object { + x=13 + y=103 + width=75 + height=18 + } + "basic attribute" { + clr=14 + fill="outline" + } + textix="um per V" +} +text { + object { + x=13 + y=126 + width=75 + height=18 + } + "basic attribute" { + clr=14 + fill="outline" + } + textix="Offset" +} +"text entry" { + object { + x=93 + y=126 + width=96 + height=18 + } + control { + chan="$(P)$(C):offset" + clr=14 + bclr=50 + } + limits { + } +} diff --git a/opticsApp/op/adl/flexCombinedMotion.adl b/opticsApp/op/adl/flexCombinedMotion.adl new file mode 100644 index 0000000..19e7127 --- /dev/null +++ b/opticsApp/op/adl/flexCombinedMotion.adl @@ -0,0 +1,473 @@ + +file { + name="/home/beams3/KPETERSN/development/github-forks/optics/opticsApp/op/adl/flexCombinedMotion.adl" + version=030111 +} +display { + object { + x=616 + y=127 + width=210 + height=302 + } + clr=14 + bclr=4 + cmap="" + gridSpacing=5 + gridOn=0 + snapToGrid=0 +} +"color map" { + ncolors=65 + colors { + ffffff, + ececec, + dadada, + c8c8c8, + bbbbbb, + aeaeae, + 9e9e9e, + 919191, + 858585, + 787878, + 696969, + 5a5a5a, + 464646, + 2d2d2d, + 000000, + 00d800, + 1ebb00, + 339900, + 2d7f00, + 216c00, + fd0000, + de1309, + be190b, + a01207, + 820400, + 5893ff, + 597ee1, + 4b6ec7, + 3a5eab, + 27548d, + fbf34a, + f9da3c, + eeb62b, + e19015, + cd6100, + ffb0ff, + d67fe2, + ae4ebc, + 8b1a96, + 610a75, + a4aaff, + 8793e2, + 6a73c1, + 4d52a4, + 343386, + c7bb6d, + b79d5c, + a47e3c, + 7d5627, + 58340f, + 99ffff, + 73dfff, + 4ea5f9, + 2a63e4, + 0a00b8, + ebf1b5, + d4db9d, + bbc187, + a6a462, + 8b8239, + 73ff6b, + 52da3b, + 3cb420, + 289315, + 1a7309, + } +} +text { + object { + x=5 + y=5 + width=200 + height=45 + } + "basic attribute" { + clr=14 + } + textix="Combined Motion $(P)$(M)" + align="horiz. centered" +} +composite { + object { + x=13 + y=60 + width=180 + height=18 + } + "composite name"="" + children { + "text update" { + object { + x=93 + y=60 + width=100 + height=18 + } + monitor { + chan="$(P)$(M):setPoint" + clr=54 + bclr=3 + } + limits { + } + } + text { + object { + x=13 + y=60 + width=75 + height=18 + } + "basic attribute" { + clr=14 + fill="outline" + } + textix="Set Point" + } + } +} +composite { + object { + x=13 + y=106 + width=176 + height=18 + } + "composite name"="" + children { + text { + object { + x=13 + y=106 + width=75 + height=18 + } + "basic attribute" { + clr=14 + fill="outline" + } + textix="Upper Lim" + } + "text entry" { + object { + x=93 + y=106 + width=96 + height=18 + } + control { + chan="$(P)$(M):upperLimit" + clr=14 + bclr=50 + } + limits { + } + } + } +} +composite { + object { + x=13 + y=129 + width=176 + height=18 + } + "composite name"="" + children { + text { + object { + x=13 + y=129 + width=75 + height=18 + } + "basic attribute" { + clr=14 + fill="outline" + } + textix="Home Pos" + } + "text entry" { + object { + x=93 + y=129 + width=96 + height=18 + } + control { + chan="$(P)$(M):homePos" + clr=14 + bclr=50 + } + limits { + } + } + } +} +composite { + object { + x=13 + y=83 + width=176 + height=18 + } + "composite name"="" + children { + text { + object { + x=13 + y=83 + width=75 + height=18 + } + "basic attribute" { + clr=14 + fill="outline" + } + textix="Deadband" + } + "text entry" { + object { + x=93 + y=83 + width=96 + height=18 + } + control { + chan="$(P)$(M):deadband" + clr=14 + bclr=50 + } + limits { + } + } + } +} +composite { + object { + x=13 + y=175 + width=176 + height=18 + } + "composite name"="" + children { + text { + object { + x=13 + y=175 + width=75 + height=18 + } + "basic attribute" { + clr=14 + fill="outline" + } + textix="Lower Lim" + } + "text entry" { + object { + x=93 + y=175 + width=96 + height=18 + } + control { + chan="$(P)$(M):lowerLimit" + clr=14 + bclr=50 + } + limits { + } + } + } +} +composite { + object { + x=13 + y=267 + width=180 + height=18 + } + "composite name"="" + children { + text { + object { + x=13 + y=267 + width=75 + height=18 + } + "basic attribute" { + clr=14 + fill="outline" + } + textix="Mode" + } + menu { + object { + x=93 + y=267 + width=100 + height=18 + } + control { + chan="$(P)$(M):mode" + clr=14 + bclr=3 + } + } + } +} +composite { + object { + x=13 + y=244 + width=176 + height=18 + } + "composite name"="" + children { + text { + object { + x=13 + y=244 + width=75 + height=18 + } + "basic attribute" { + clr=14 + fill="outline" + } + textix="Debug" + } + "text entry" { + object { + x=93 + y=244 + width=96 + height=18 + } + control { + chan="$(P)$(M):debug" + clr=14 + bclr=50 + } + limits { + } + } + } +} +text { + object { + x=13 + y=198 + width=75 + height=18 + } + "basic attribute" { + clr=14 + fill="outline" + } + textix="Busy" +} +"text update" { + object { + x=93 + y=198 + width=100 + height=18 + } + monitor { + chan="$(P)$(M):busy" + clr=54 + bclr=3 + } + format="string" + limits { + } +} +composite { + object { + x=13 + y=221 + width=180 + height=18 + } + "composite name"="" + children { + text { + object { + x=13 + y=221 + width=75 + height=18 + } + "basic attribute" { + clr=14 + fill="outline" + } + textix="Retries" + } + "text update" { + object { + x=93 + y=221 + width=100 + height=18 + } + monitor { + chan="$(P)$(M):retries" + clr=54 + bclr=3 + } + format="string" + limits { + } + } + } +} +"text update" { + object { + x=93 + y=152 + width=100 + height=18 + } + monitor { + chan="$(P)$(M):rehome" + clr=54 + bclr=3 + } + format="string" + limits { + } +} +"message button" { + object { + x=13 + y=152 + width=75 + height=18 + } + control { + chan="$(P)$(M):rehome" + clr=54 + bclr=3 + } + label="Rehome" + press_msg="1" +} diff --git a/opticsApp/op/adl/flexCombinedMotionTop.adl b/opticsApp/op/adl/flexCombinedMotionTop.adl new file mode 100644 index 0000000..42efb8b --- /dev/null +++ b/opticsApp/op/adl/flexCombinedMotionTop.adl @@ -0,0 +1,141 @@ + +file { + name="flexCombinedMotionTop.adl" + version=030111 +} +display { + object { + x=273 + y=398 + width=200 + height=130 + } + clr=14 + bclr=4 + cmap="" + gridSpacing=5 + gridOn=0 + snapToGrid=0 +} +"color map" { + ncolors=65 + colors { + ffffff, + ececec, + dadada, + c8c8c8, + bbbbbb, + aeaeae, + 9e9e9e, + 919191, + 858585, + 787878, + 696969, + 5a5a5a, + 464646, + 2d2d2d, + 000000, + 00d800, + 1ebb00, + 339900, + 2d7f00, + 216c00, + fd0000, + de1309, + be190b, + a01207, + 820400, + 5893ff, + 597ee1, + 4b6ec7, + 3a5eab, + 27548d, + fbf34a, + f9da3c, + eeb62b, + e19015, + cd6100, + ffb0ff, + d67fe2, + ae4ebc, + 8b1a96, + 610a75, + a4aaff, + 8793e2, + 6a73c1, + 4d52a4, + 343386, + c7bb6d, + b79d5c, + a47e3c, + 7d5627, + 58340f, + 99ffff, + 73dfff, + 4ea5f9, + 2a63e4, + 0a00b8, + ebf1b5, + d4db9d, + bbc187, + a6a462, + 8b8239, + 73ff6b, + 52da3b, + 3cb420, + 289315, + 1a7309, + } +} +"related display" { + object { + x=25 + y=85 + width=150 + height=28 + } + display[0] { + label="Motors" + name="motor3x.adl" + args="P=$(P),M1=$(M),M2=$(CM),M3=$(FM)" + } + display[1] { + label="Combined Motion" + name="flexCombinedMotion.adl" + args="P=$(P),M=$(M)" + } + display[2] { + label="Cap Sensor" + name="flexCapSensor.adl" + args="P=$(P),C=$(C)" + } + clr=0 + bclr=63 + label="-Menu" +} +text { + object { + x=10 + y=10 + width=180 + height=25 + } + "basic attribute" { + clr=14 + } + textix="Combined Motion" + align="horiz. centered" +} +text { + object { + x=10 + y=45 + width=180 + height=25 + } + "basic attribute" { + clr=14 + } + textix="$(P)$(M)" + align="horiz. centered" +} diff --git a/opticsApp/op/adl/hrSeqCtl_All.adl b/opticsApp/op/adl/hrSeqCtl_All.adl index 0b303f8..b665b12 100644 --- a/opticsApp/op/adl/hrSeqCtl_All.adl +++ b/opticsApp/op/adl/hrSeqCtl_All.adl @@ -1,7 +1,7 @@ file { - name="/home/oxygen4/MOONEY/epics/3.13.2/tmm/tmmApp/op/adl/hrSeqCtl_All_3.2.adl" - version=030000 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/hrSeqCtl_All.adl" + version=030111 } display { object { @@ -672,196 +672,185 @@ text { textix="Lambda (A)" align="horiz. centered" } -composite { +rectangle { + object { + x=220 + y=0 + width=80 + height=110 + } + "basic attribute" { + clr=5 + width=2 + } +} +text { + object { + x=275 + y=2 + width=20 + height=20 + } + "basic attribute" { + clr=14 + fill="outline" + } + textix="L1" + align="horiz. centered" +} +"text entry" { + object { + x=275 + y=20 + width=20 + height=20 + } + control { + chan="$(P)HR$(N)_L1AO.VAL" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=250 + y=2 + width=20 + height=20 + } + "basic attribute" { + clr=14 + fill="outline" + } + textix="K1" + align="horiz. centered" +} +"text entry" { + object { + x=250 + y=20 + width=20 + height=20 + } + control { + chan="$(P)HR$(N)_K1AO.VAL" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=225 + y=2 + width=20 + height=20 + } + "basic attribute" { + clr=14 + fill="outline" + } + textix="H1" + align="horiz. centered" +} +"text entry" { + object { + x=225 + y=20 + width=20 + height=20 + } + control { + chan="$(P)HR$(N)_H1AO.VAL" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=225 + y=43 + width=20 + height=14 + } + "basic attribute" { + clr=14 + fill="outline" + } + textix="a" +} +"text entry" { + object { + x=240 + y=40 + width=55 + height=20 + } + control { + chan="$(P)HR$(N)_A1AO.VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=240 + y=63 + width=55 + height=20 + } + control { + chan="$(P)HR$(N)_2d1AO" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=225 + y=66 + width=20 + height=14 + } + "basic attribute" { + clr=14 + fill="outline" + } + textix="2d" +} +menu { + object { + x=225 + y=85 + width=70 + height=16 + } + control { + chan="$(P)HR$(N)_1TypeMO" + clr=14 + bclr=51 + } +} +rectangle { object { x=220 y=0 width=80 height=110 } - "composite name"="" - children { - rectangle { - object { - x=220 - y=0 - width=80 - height=110 - } - "basic attribute" { - clr=5 - width=2 - } - } - text { - object { - x=275 - y=2 - width=20 - height=20 - } - "basic attribute" { - clr=14 - fill="outline" - } - textix="L1" - align="horiz. centered" - } - "text entry" { - object { - x=275 - y=20 - width=20 - height=20 - } - control { - chan="$(P)HR$(N)_L1AO.VAL" - clr=14 - bclr=51 - } - limits { - } - } - text { - object { - x=250 - y=2 - width=20 - height=20 - } - "basic attribute" { - clr=14 - fill="outline" - } - textix="K1" - align="horiz. centered" - } - "text entry" { - object { - x=250 - y=20 - width=20 - height=20 - } - control { - chan="$(P)HR$(N)_K1AO.VAL" - clr=14 - bclr=51 - } - limits { - } - } - text { - object { - x=225 - y=2 - width=20 - height=20 - } - "basic attribute" { - clr=14 - fill="outline" - } - textix="H1" - align="horiz. centered" - } - "text entry" { - object { - x=225 - y=20 - width=20 - height=20 - } - control { - chan="$(P)HR$(N)_H1AO.VAL" - clr=14 - bclr=51 - } - limits { - } - } - text { - object { - x=225 - y=43 - width=20 - height=14 - } - "basic attribute" { - clr=14 - fill="outline" - } - textix="a" - } - "text entry" { - object { - x=240 - y=40 - width=55 - height=20 - } - control { - chan="$(P)HR$(N)_A1AO.VAL" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=240 - y=63 - width=55 - height=20 - } - control { - chan="$(P)HR$(N)_2d1AO" - clr=14 - bclr=51 - } - limits { - } - } - text { - object { - x=225 - y=66 - width=20 - height=14 - } - "basic attribute" { - clr=14 - fill="outline" - } - textix="2d" - } - menu { - object { - x=225 - y=85 - width=70 - height=16 - } - control { - chan="$(P)HR$(N)_1TypeMO" - clr=14 - bclr=51 - } - } - rectangle { - object { - x=220 - y=0 - width=80 - height=110 - } - "basic attribute" { - clr=14 - fill="outline" - width=2 - } - } + "basic attribute" { + clr=14 + fill="outline" + width=2 } } rectangle { @@ -1199,77 +1188,55 @@ text { limits { } } -composite { +arc { object { - x=74 + x=96 + y=193 + width=25 + height=18 + } + "basic attribute" { + clr=33 + fill="outline" + width=2 + } + begin=5760 + path=11520 +} +polyline { + object { + x=103 y=190 - width=47 - height=21 - } - "composite name"="" - children { - composite { - object { - x=96 - y=190 - width=25 - height=21 - } - "composite name"="" - children { - arc { - object { - x=96 - y=193 - width=25 - height=18 - } - "basic attribute" { - clr=33 - fill="outline" - width=2 - } - begin=5760 - path=11520 - } - polyline { - object { - x=103 - y=190 - width=8 - height=10 - } - "basic attribute" { - clr=33 - fill="outline" - width=2 - } - points { - (104,191) - (110,194) - (104,199) - } - } - } - } - polyline { - object { - x=74 - y=204 - width=20 - height=2 - } - "basic attribute" { - clr=33 - style="dash" - fill="outline" - width=2 - } - points { - (93,205) - (75,205) - } - } + width=8 + height=10 + } + "basic attribute" { + clr=33 + fill="outline" + width=2 + } + points { + (104,191) + (110,194) + (104,199) + } +} +polyline { + object { + x=74 + y=204 + width=20 + height=2 + } + "basic attribute" { + clr=33 + style="dash" + fill="outline" + width=2 + } + points { + (93,205) + (75,205) } } text { @@ -1837,46 +1804,35 @@ text { bclr=17 label="-ScanParm" } -composite { +"message button" { + object { + x=82 + y=111 + width=21 + height=20 + } + control { + chan="$(P)HR$(N)_E:scanParms.GO" + clr=14 + bclr=51 + } + label="Go" + press_msg="1" +} +"message button" { object { x=62 y=111 - width=41 + width=21 height=20 } - "composite name"="" - children { - "message button" { - object { - x=82 - y=111 - width=21 - height=20 - } - control { - chan="$(P)HR$(N)_E:scanParms.GO" - clr=14 - bclr=51 - } - label="Go" - press_msg="1" - } - "message button" { - object { - x=62 - y=111 - width=21 - height=20 - } - control { - chan="$(P)HR$(N)_E:scanParms.LOAD" - clr=14 - bclr=51 - } - label="Ld" - press_msg="1" - } + control { + chan="$(P)HR$(N)_E:scanParms.LOAD" + clr=14 + bclr=51 } + label="Ld" + press_msg="1" } "choice button" { object { diff --git a/opticsApp/op/adl/hr_nested.adl b/opticsApp/op/adl/hr_nested.adl index 59c09c6..bb6d760 100644 --- a/opticsApp/op/adl/hr_nested.adl +++ b/opticsApp/op/adl/hr_nested.adl @@ -1,7 +1,7 @@ file { name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/hr_nested.adl" - version=030004 + version=030111 } display { object { @@ -244,157 +244,135 @@ text { textix="Theta2" align="horiz. centered" } -composite { +rectangle { object { x=253 y=222 width=64 height=38 } - "composite name"="" - children { - rectangle { - object { - x=253 - y=222 - width=64 - height=38 - } - "basic attribute" { - clr=0 - } - } - rectangle { - object { - x=253 - y=222 - width=64 - height=38 - } - "basic attribute" { - clr=14 - fill="outline" - } - } - "text update" { - object { - x=255 - y=238 - width=61 - height=10 - } - monitor { - chan="$(P)HR$(N)_phi1RdbkAI" - clr=53 - bclr=2 - } - limits { - } - } - text { - object { - x=255 - y=222 - width=60 - height=14 - } - "basic attribute" { - clr=14 - } - textix="Phi1" - align="horiz. centered" - } - "text update" { - object { - x=255 - y=248 - width=61 - height=10 - } - monitor { - chan="$(P)HR$(N)_phi1AO" - clr=53 - bclr=0 - } - limits { - } - } + "basic attribute" { + clr=0 + } +} +rectangle { + object { + x=253 + y=222 + width=64 + height=38 + } + "basic attribute" { + clr=14 + fill="outline" + } +} +"text update" { + object { + x=255 + y=238 + width=61 + height=10 + } + monitor { + chan="$(P)HR$(N)_phi1RdbkAI" + clr=53 + bclr=2 + } + limits { + } +} +text { + object { + x=255 + y=222 + width=60 + height=14 + } + "basic attribute" { + clr=14 + } + textix="Phi1" + align="horiz. centered" +} +"text update" { + object { + x=255 + y=248 + width=61 + height=10 + } + monitor { + chan="$(P)HR$(N)_phi1AO" + clr=53 + bclr=0 + } + limits { + } +} +rectangle { + object { + x=354 + y=70 + width=64 + height=38 + } + "basic attribute" { + clr=0 } } -composite { +rectangle { object { x=354 y=70 width=64 height=38 } - "composite name"="" - children { - rectangle { - object { - x=354 - y=70 - width=64 - height=38 - } - "basic attribute" { - clr=0 - } - } - rectangle { - object { - x=354 - y=70 - width=64 - height=38 - } - "basic attribute" { - clr=14 - fill="outline" - } - } - "text update" { - object { - x=356 - y=86 - width=61 - height=10 - } - monitor { - chan="$(P)HR$(N)_phi2RdbkAI" - clr=53 - bclr=2 - } - limits { - } - } - text { - object { - x=356 - y=70 - width=60 - height=14 - } - "basic attribute" { - clr=14 - } - textix="Phi2" - align="horiz. centered" - } - "text update" { - object { - x=356 - y=96 - width=61 - height=10 - } - monitor { - chan="$(P)HR$(N)_phi2AO" - clr=53 - bclr=0 - } - limits { - } - } + "basic attribute" { + clr=14 + fill="outline" + } +} +"text update" { + object { + x=356 + y=86 + width=61 + height=10 + } + monitor { + chan="$(P)HR$(N)_phi2RdbkAI" + clr=53 + bclr=2 + } + limits { + } +} +text { + object { + x=356 + y=70 + width=60 + height=14 + } + "basic attribute" { + clr=14 + } + textix="Phi2" + align="horiz. centered" +} +"text update" { + object { + x=356 + y=96 + width=61 + height=10 + } + monitor { + chan="$(P)HR$(N)_phi2AO" + clr=53 + bclr=0 + } + limits { } } diff --git a/opticsApp/op/adl/hr_symmetric.adl b/opticsApp/op/adl/hr_symmetric.adl index 7be7832..9d105cb 100644 --- a/opticsApp/op/adl/hr_symmetric.adl +++ b/opticsApp/op/adl/hr_symmetric.adl @@ -1,7 +1,7 @@ file { name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/hr_symmetric.adl" - version=030004 + version=030111 } display { object { @@ -244,157 +244,135 @@ text { textix="Theta2" align="horiz. centered" } -composite { +rectangle { object { x=145 y=235 width=64 height=38 } - "composite name"="" - children { - rectangle { - object { - x=145 - y=235 - width=64 - height=38 - } - "basic attribute" { - clr=0 - } - } - rectangle { - object { - x=145 - y=235 - width=64 - height=38 - } - "basic attribute" { - clr=14 - fill="outline" - } - } - "text update" { - object { - x=147 - y=251 - width=61 - height=10 - } - monitor { - chan="$(P)HR$(N)_phi1RdbkAI" - clr=53 - bclr=2 - } - limits { - } - } - text { - object { - x=147 - y=235 - width=60 - height=14 - } - "basic attribute" { - clr=14 - } - textix="Phi1" - align="horiz. centered" - } - "text update" { - object { - x=147 - y=261 - width=61 - height=10 - } - monitor { - chan="$(P)HR$(N)_phi1AO" - clr=53 - bclr=0 - } - limits { - } - } + "basic attribute" { + clr=0 + } +} +rectangle { + object { + x=145 + y=235 + width=64 + height=38 + } + "basic attribute" { + clr=14 + fill="outline" + } +} +"text update" { + object { + x=147 + y=251 + width=61 + height=10 + } + monitor { + chan="$(P)HR$(N)_phi1RdbkAI" + clr=53 + bclr=2 + } + limits { + } +} +text { + object { + x=147 + y=235 + width=60 + height=14 + } + "basic attribute" { + clr=14 + } + textix="Phi1" + align="horiz. centered" +} +"text update" { + object { + x=147 + y=261 + width=61 + height=10 + } + monitor { + chan="$(P)HR$(N)_phi1AO" + clr=53 + bclr=0 + } + limits { + } +} +rectangle { + object { + x=215 + y=235 + width=64 + height=38 + } + "basic attribute" { + clr=0 } } -composite { +rectangle { object { x=215 y=235 width=64 height=38 } - "composite name"="" - children { - rectangle { - object { - x=215 - y=235 - width=64 - height=38 - } - "basic attribute" { - clr=0 - } - } - rectangle { - object { - x=215 - y=235 - width=64 - height=38 - } - "basic attribute" { - clr=14 - fill="outline" - } - } - "text update" { - object { - x=217 - y=251 - width=61 - height=10 - } - monitor { - chan="$(P)HR$(N)_phi2RdbkAI" - clr=53 - bclr=2 - } - limits { - } - } - text { - object { - x=217 - y=235 - width=60 - height=14 - } - "basic attribute" { - clr=14 - } - textix="Phi2" - align="horiz. centered" - } - "text update" { - object { - x=217 - y=261 - width=61 - height=10 - } - monitor { - chan="$(P)HR$(N)_phi2AO" - clr=53 - bclr=0 - } - limits { - } - } + "basic attribute" { + clr=14 + fill="outline" + } +} +"text update" { + object { + x=217 + y=251 + width=61 + height=10 + } + monitor { + chan="$(P)HR$(N)_phi2RdbkAI" + clr=53 + bclr=2 + } + limits { + } +} +text { + object { + x=217 + y=235 + width=60 + height=14 + } + "basic attribute" { + clr=14 + } + textix="Phi2" + align="horiz. centered" +} +"text update" { + object { + x=217 + y=261 + width=61 + height=10 + } + monitor { + chan="$(P)HR$(N)_phi2AO" + clr=53 + bclr=0 + } + limits { } } diff --git a/opticsApp/op/adl/kohzu2Graphic.adl b/opticsApp/op/adl/kohzu2Graphic.adl index bf7f750..9a1935a 100644 --- a/opticsApp/op/adl/kohzu2Graphic.adl +++ b/opticsApp/op/adl/kohzu2Graphic.adl @@ -1,7 +1,7 @@ file { - name="/home/oxygen4/MOONEY/epics/ppt_drawings/kohzu2Graphic.adl" - version=030004 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/kohzu2Graphic.adl" + version=030111 } display { object { @@ -441,69 +441,58 @@ text { textix="Theta2" align="horiz. centered" } -composite { +"text update" { + object { + x=215 + y=37 + width=60 + height=10 + } + monitor { + chan="$(P)$(mZ2).RBV" + clr=53 + bclr=2 + } + limits { + } +} +rectangle { object { x=213 y=25 width=64 height=38 } - "composite name"="" - children { - "text update" { - object { - x=215 - y=37 - width=60 - height=10 - } - monitor { - chan="$(P)$(mZ2).RBV" - clr=53 - bclr=2 - } - limits { - } - } - rectangle { - object { - x=213 - y=25 - width=64 - height=38 - } - "basic attribute" { - clr=14 - fill="outline" - } - } - text { - object { - x=215 - y=27 - width=60 - height=10 - } - "basic attribute" { - clr=14 - } - textix="$(P)$(mZ2)" - } - "text entry" { - object { - x=215 - y=47 - width=60 - height=15 - } - control { - chan="$(P)$(mZ2).VAL" - clr=14 - bclr=51 - } - limits { - } - } + "basic attribute" { + clr=14 + fill="outline" + } +} +text { + object { + x=215 + y=27 + width=60 + height=10 + } + "basic attribute" { + clr=14 + } + textix="$(P)$(mZ2)" +} +"text entry" { + object { + x=215 + y=47 + width=60 + height=15 + } + control { + chan="$(P)$(mZ2).VAL" + clr=14 + bclr=51 + } + limits { } } text { @@ -519,80 +508,69 @@ text { textix="Z2" align="horiz. centered" } -composite { +rectangle { + object { + x=196 + y=166 + width=64 + height=38 + } + "basic attribute" { + clr=0 + } +} +text { + object { + x=198 + y=168 + width=60 + height=10 + } + "basic attribute" { + clr=14 + } + textix="$(P)$(mY2)" +} +"text update" { + object { + x=198 + y=178 + width=60 + height=10 + } + monitor { + chan="$(P)$(mY2).RBV" + clr=53 + bclr=2 + } + limits { + } +} +"text entry" { + object { + x=198 + y=188 + width=60 + height=15 + } + control { + chan="$(P)$(mY2).VAL" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { object { x=196 y=166 width=64 height=38 } - "composite name"="" - children { - rectangle { - object { - x=196 - y=166 - width=64 - height=38 - } - "basic attribute" { - clr=0 - } - } - text { - object { - x=198 - y=168 - width=60 - height=10 - } - "basic attribute" { - clr=14 - } - textix="$(P)$(mY2)" - } - "text update" { - object { - x=198 - y=178 - width=60 - height=10 - } - monitor { - chan="$(P)$(mY2).RBV" - clr=53 - bclr=2 - } - limits { - } - } - "text entry" { - object { - x=198 - y=188 - width=60 - height=15 - } - control { - chan="$(P)$(mY2).VAL" - clr=14 - bclr=51 - } - limits { - } - } - rectangle { - object { - x=196 - y=166 - width=64 - height=38 - } - "basic attribute" { - clr=14 - fill="outline" - } - } + "basic attribute" { + clr=14 + fill="outline" } } text { @@ -634,80 +612,69 @@ text { textix="X2" align="horiz. centered" } -composite { +rectangle { + object { + x=342 + y=18 + width=64 + height=38 + } + "basic attribute" { + clr=0 + } +} +text { + object { + x=344 + y=20 + width=61 + height=10 + } + "basic attribute" { + clr=14 + } + textix="$(P)$(mY)" +} +"text update" { + object { + x=344 + y=30 + width=61 + height=10 + } + monitor { + chan="$(P)$(mY).RBV" + clr=53 + bclr=2 + } + limits { + } +} +"text entry" { + object { + x=344 + y=40 + width=61 + height=15 + } + control { + chan="$(P)$(mY).VAL" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { object { x=342 y=18 width=64 height=38 } - "composite name"="" - children { - rectangle { - object { - x=342 - y=18 - width=64 - height=38 - } - "basic attribute" { - clr=0 - } - } - text { - object { - x=344 - y=20 - width=61 - height=10 - } - "basic attribute" { - clr=14 - } - textix="$(P)$(mY)" - } - "text update" { - object { - x=344 - y=30 - width=61 - height=10 - } - monitor { - chan="$(P)$(mY).RBV" - clr=53 - bclr=2 - } - limits { - } - } - "text entry" { - object { - x=344 - y=40 - width=61 - height=15 - } - control { - chan="$(P)$(mY).VAL" - clr=14 - bclr=51 - } - limits { - } - } - rectangle { - object { - x=342 - y=18 - width=64 - height=38 - } - "basic attribute" { - clr=14 - fill="outline" - } - } + "basic attribute" { + clr=14 + fill="outline" } } text { @@ -783,92 +750,81 @@ polyline { (218,123) } } -composite { +rectangle { object { x=81 - y=198 + y=212 + width=64 + height=38 + } + "basic attribute" { + clr=0 + } +} +rectangle { + object { + x=81 + y=212 width=64 - height=52 - } - "composite name"="" - children { - rectangle { - object { - x=81 - y=212 - width=64 - height=38 - } - "basic attribute" { - clr=0 - } - } - rectangle { - object { - x=81 - y=212 - width=64 - height=38 - } - "basic attribute" { - clr=14 - fill="outline" - } - } - "text update" { - object { - x=83 - y=224 - width=61 - height=10 - } - monitor { - chan="$(P)$(mTH).RBV" - clr=53 - bclr=2 - } - limits { - } - } - text { - object { - x=83 - y=214 - width=61 - height=10 - } - "basic attribute" { - clr=14 - } - textix="$(P)$(mTH)" - } - "text entry" { - object { - x=83 - y=234 - width=61 - height=15 - } - control { - chan="$(P)$(mTH).VAL" - clr=14 - bclr=51 - } - limits { - } - } - text { - object { - x=83 - y=198 - width=60 - height=14 - } - "basic attribute" { - clr=14 - } - textix="Theta" - align="horiz. centered" - } + height=38 + } + "basic attribute" { + clr=14 + fill="outline" + } +} +"text update" { + object { + x=83 + y=224 + width=61 + height=10 } + monitor { + chan="$(P)$(mTH).RBV" + clr=53 + bclr=2 + } + limits { + } +} +text { + object { + x=83 + y=214 + width=61 + height=10 + } + "basic attribute" { + clr=14 + } + textix="$(P)$(mTH)" +} +"text entry" { + object { + x=83 + y=234 + width=61 + height=15 + } + control { + chan="$(P)$(mTH).VAL" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=83 + y=198 + width=60 + height=14 + } + "basic attribute" { + clr=14 + } + textix="Theta" + align="horiz. centered" } diff --git a/opticsApp/op/adl/kohzuGraphic.adl b/opticsApp/op/adl/kohzuGraphic.adl index 6477c3d..1188a22 100644 --- a/opticsApp/op/adl/kohzuGraphic.adl +++ b/opticsApp/op/adl/kohzuGraphic.adl @@ -1,7 +1,7 @@ file { name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/kohzuGraphic.adl" - version=030004 + version=030111 } display { object { @@ -112,780 +112,659 @@ image { label="All Stop" press_msg="1" } -composite { +rectangle { object { x=38 y=288 width=64 height=40 } - "composite name"="" - children { - rectangle { - object { - x=38 - y=288 - width=64 - height=40 - } - "basic attribute" { - clr=14 - } - } - "text update" { - object { - x=40 - y=302 - width=60 - height=10 - } - monitor { - chan="$(P)BraggThetaRdbkAO" - clr=53 - bclr=2 - } - limits { - } - } - "text entry" { - object { - x=40 - y=312 - width=60 - height=15 - } - control { - chan="$(P)BraggThetaAO" - clr=14 - bclr=51 - } - limits { - } - } - text { - object { - x=40 - y=290 - width=60 - height=12 - } - "basic attribute" { - clr=30 - } - textix="Theta(Y,Z)" - align="horiz. centered" - } - } -} -composite { + "basic attribute" { + clr=14 + } +} +"text update" { + object { + x=40 + y=302 + width=60 + height=10 + } + monitor { + chan="$(P)BraggThetaRdbkAO" + clr=53 + bclr=2 + } + limits { + } +} +"text entry" { + object { + x=40 + y=312 + width=60 + height=15 + } + control { + chan="$(P)BraggThetaAO" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=40 + y=290 + width=60 + height=12 + } + "basic attribute" { + clr=30 + } + textix="Theta(Y,Z)" + align="horiz. centered" +} +rectangle { object { x=73 + y=232 + width=64 + height=38 + } + "basic attribute" { + clr=0 + } +} +rectangle { + object { + x=73 + y=232 + width=64 + height=38 + } + "basic attribute" { + clr=14 + fill="outline" + } +} +"text update" { + object { + x=75 + y=244 + width=61 + height=10 + } + monitor { + chan="$(P)$(mTH).RBV" + clr=53 + bclr=2 + } + limits { + } +} +text { + object { + x=75 + y=234 + width=61 + height=10 + } + "basic attribute" { + clr=14 + } + textix="$(P)$(mTH)" +} +"text entry" { + object { + x=75 + y=254 + width=61 + height=15 + } + control { + chan="$(P)$(mTH).VAL" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=75 y=218 + width=60 + height=14 + } + "basic attribute" { + clr=14 + } + textix="Theta" + align="horiz. centered" +} +rectangle { + object { + x=77 + y=131 width=64 - height=52 - } - "composite name"="" - children { - rectangle { - object { - x=73 - y=232 - width=64 - height=38 - } - "basic attribute" { - clr=0 - } - } - rectangle { - object { - x=73 - y=232 - width=64 - height=38 - } - "basic attribute" { - clr=14 - fill="outline" - } - } - "text update" { - object { - x=75 - y=244 - width=61 - height=10 - } - monitor { - chan="$(P)$(mTH).RBV" - clr=53 - bclr=2 - } - limits { - } - } - text { - object { - x=75 - y=234 - width=61 - height=10 - } - "basic attribute" { - clr=14 - } - textix="$(P)$(mTH)" - } - "text entry" { - object { - x=75 - y=254 - width=61 - height=15 - } - control { - chan="$(P)$(mTH).VAL" - clr=14 - bclr=51 - } - limits { - } - } - text { - object { - x=75 - y=218 - width=60 - height=14 - } - "basic attribute" { - clr=14 - } - textix="Theta" - align="horiz. centered" - } - } -} -composite { + height=38 + } + "basic attribute" { + clr=0 + } +} +"text update" { + object { + x=79 + y=143 + width=61 + height=10 + } + monitor { + chan="$(P)$(mCHI2).RBV" + clr=53 + bclr=2 + } + limits { + } +} +"text entry" { + object { + x=79 + y=153 + width=61 + height=15 + } + control { + chan="$(P)$(mCHI2).VAL" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=79 + y=133 + width=61 + height=10 + } + "basic attribute" { + clr=14 + } + textix="$(P)$(mCHI2)" +} +rectangle { object { x=77 + y=131 + width=64 + height=38 + } + "basic attribute" { + clr=14 + fill="outline" + } +} +text { + object { + x=79 y=117 + width=60 + height=14 + } + "basic attribute" { + clr=14 + } + textix="Chi" + align="horiz. centered" +} +rectangle { + object { + x=160 + y=42 width=64 - height=52 - } - "composite name"="" - children { - rectangle { - object { - x=77 - y=131 - width=64 - height=38 - } - "basic attribute" { - clr=0 - } - } - "text update" { - object { - x=79 - y=143 - width=61 - height=10 - } - monitor { - chan="$(P)$(mCHI2).RBV" - clr=53 - bclr=2 - } - limits { - } - } - "text entry" { - object { - x=79 - y=153 - width=61 - height=15 - } - control { - chan="$(P)$(mCHI2).VAL" - clr=14 - bclr=51 - } - limits { - } - } - text { - object { - x=79 - y=133 - width=61 - height=10 - } - "basic attribute" { - clr=14 - } - textix="$(P)$(mCHI2)" - } - rectangle { - object { - x=77 - y=131 - width=64 - height=38 - } - "basic attribute" { - clr=14 - fill="outline" - } - } - text { - object { - x=79 - y=117 - width=60 - height=14 - } - "basic attribute" { - clr=14 - } - textix="Chi" - align="horiz. centered" - } - } -} -composite { + height=38 + } + "basic attribute" { + clr=0 + } +} +text { + object { + x=162 + y=44 + width=61 + height=10 + } + "basic attribute" { + clr=14 + } + textix="$(P)$(mTH2)" +} +"text update" { + object { + x=162 + y=54 + width=61 + height=10 + } + monitor { + chan="$(P)$(mTH2).RBV" + clr=53 + bclr=2 + } + limits { + } +} +"text entry" { + object { + x=162 + y=64 + width=61 + height=15 + } + control { + chan="$(P)$(mTH2).VAL" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { object { x=160 - y=28 + y=42 width=64 - height=52 - } - "composite name"="" - children { - rectangle { - object { - x=160 - y=42 - width=64 - height=38 - } - "basic attribute" { - clr=0 - } - } - text { - object { - x=162 - y=44 - width=61 - height=10 - } - "basic attribute" { - clr=14 - } - textix="$(P)$(mTH2)" - } - "text update" { - object { - x=162 - y=54 - width=61 - height=10 - } - monitor { - chan="$(P)$(mTH2).RBV" - clr=53 - bclr=2 - } - limits { - } - } - "text entry" { - object { - x=162 - y=64 - width=61 - height=15 - } - control { - chan="$(P)$(mTH2).VAL" - clr=14 - bclr=51 - } - limits { - } - } - rectangle { - object { - x=160 - y=42 - width=64 - height=38 - } - "basic attribute" { - clr=14 - fill="outline" - } - } - text { - object { - x=162 - y=28 - width=60 - height=14 - } - "basic attribute" { - clr=14 - } - textix="Theta2" - align="horiz. centered" - } - } -} -composite { + height=38 + } + "basic attribute" { + clr=14 + fill="outline" + } +} +text { + object { + x=162 + y=28 + width=60 + height=14 + } + "basic attribute" { + clr=14 + } + textix="Theta2" + align="horiz. centered" +} +"text update" { + object { + x=233 + y=85 + width=60 + height=10 + } + monitor { + chan="$(P)$(mZ2).RBV" + clr=53 + bclr=2 + } + limits { + } +} +rectangle { object { x=231 + y=73 + width=64 + height=38 + } + "basic attribute" { + clr=14 + fill="outline" + } +} +text { + object { + x=233 + y=75 + width=60 + height=10 + } + "basic attribute" { + clr=14 + } + textix="$(P)$(mZ2)" +} +"text entry" { + object { + x=233 + y=95 + width=60 + height=15 + } + control { + chan="$(P)$(mZ2).VAL" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=233 y=59 + width=60 + height=14 + } + "basic attribute" { + clr=14 + } + textix="Z2" + align="horiz. centered" +} +rectangle { + object { + x=374 + y=24 width=64 - height=52 - } - "composite name"="" - children { - composite { - object { - x=231 - y=73 - width=64 - height=38 - } - "composite name"="" - children { - "text update" { - object { - x=233 - y=85 - width=60 - height=10 - } - monitor { - chan="$(P)$(mZ2).RBV" - clr=53 - bclr=2 - } - limits { - } - } - rectangle { - object { - x=231 - y=73 - width=64 - height=38 - } - "basic attribute" { - clr=14 - fill="outline" - } - } - text { - object { - x=233 - y=75 - width=60 - height=10 - } - "basic attribute" { - clr=14 - } - textix="$(P)$(mZ2)" - } - "text entry" { - object { - x=233 - y=95 - width=60 - height=15 - } - control { - chan="$(P)$(mZ2).VAL" - clr=14 - bclr=51 - } - limits { - } - } - } - } - text { - object { - x=233 - y=59 - width=60 - height=14 - } - "basic attribute" { - clr=14 - } - textix="Z2" - align="horiz. centered" - } - } -} -composite { + height=38 + } + "basic attribute" { + clr=0 + } +} +text { + object { + x=376 + y=26 + width=61 + height=10 + } + "basic attribute" { + clr=14 + } + textix="$(P)$(mY)" +} +"text update" { + object { + x=376 + y=36 + width=61 + height=10 + } + monitor { + chan="$(P)$(mY).RBV" + clr=53 + bclr=2 + } + limits { + } +} +"text entry" { + object { + x=376 + y=46 + width=61 + height=15 + } + control { + chan="$(P)$(mY).VAL" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { object { x=374 + y=24 + width=64 + height=38 + } + "basic attribute" { + clr=14 + fill="outline" + } +} +text { + object { + x=376 y=10 + width=60 + height=14 + } + "basic attribute" { + clr=14 + } + textix="Y" + align="horiz. centered" +} +rectangle { + object { + x=317 + y=80 width=64 - height=52 - } - "composite name"="" - children { - composite { - object { - x=374 - y=24 - width=64 - height=38 - } - "composite name"="" - children { - rectangle { - object { - x=374 - y=24 - width=64 - height=38 - } - "basic attribute" { - clr=0 - } - } - text { - object { - x=376 - y=26 - width=61 - height=10 - } - "basic attribute" { - clr=14 - } - textix="$(P)$(mY)" - } - "text update" { - object { - x=376 - y=36 - width=61 - height=10 - } - monitor { - chan="$(P)$(mY).RBV" - clr=53 - bclr=2 - } - limits { - } - } - "text entry" { - object { - x=376 - y=46 - width=61 - height=15 - } - control { - chan="$(P)$(mY).VAL" - clr=14 - bclr=51 - } - limits { - } - } - rectangle { - object { - x=374 - y=24 - width=64 - height=38 - } - "basic attribute" { - clr=14 - fill="outline" - } - } - } - } - text { - object { - x=376 - y=10 - width=60 - height=14 - } - "basic attribute" { - clr=14 - } - textix="Y" - align="horiz. centered" - } - } -} -composite { + height=38 + } + "basic attribute" { + clr=0 + } +} +text { + object { + x=319 + y=82 + width=61 + height=10 + } + "basic attribute" { + clr=14 + } + textix="$(P)$(mX2)" +} +"text update" { + object { + x=319 + y=92 + width=61 + height=10 + } + monitor { + chan="$(P)$(mX2).RBV" + clr=53 + bclr=2 + } + limits { + } +} +"text entry" { + object { + x=319 + y=102 + width=61 + height=15 + } + control { + chan="$(P)$(mX2).VAL" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { object { x=317 - y=66 + y=80 width=64 - height=52 - } - "composite name"="" - children { - rectangle { - object { - x=317 - y=80 - width=64 - height=38 - } - "basic attribute" { - clr=0 - } - } - text { - object { - x=319 - y=82 - width=61 - height=10 - } - "basic attribute" { - clr=14 - } - textix="$(P)$(mX2)" - } - "text update" { - object { - x=319 - y=92 - width=61 - height=10 - } - monitor { - chan="$(P)$(mX2).RBV" - clr=53 - bclr=2 - } - limits { - } - } - "text entry" { - object { - x=319 - y=102 - width=61 - height=15 - } - control { - chan="$(P)$(mX2).VAL" - clr=14 - bclr=51 - } - limits { - } - } - rectangle { - object { - x=317 - y=80 - width=64 - height=38 - } - "basic attribute" { - clr=14 - fill="outline" - } - } - text { - object { - x=319 - y=66 - width=60 - height=14 - } - "basic attribute" { - clr=14 - } - textix="X2" - align="horiz. centered" - } - } -} -composite { + height=38 + } + "basic attribute" { + clr=14 + fill="outline" + } +} +text { + object { + x=319 + y=66 + width=60 + height=14 + } + "basic attribute" { + clr=14 + } + textix="X2" + align="horiz. centered" +} +"text update" { + object { + x=317 + y=254 + width=61 + height=10 + } + monitor { + chan="$(P)$(mX).RBV" + clr=53 + bclr=2 + } + limits { + } +} +rectangle { object { x=315 + y=242 + width=64 + height=38 + } + "basic attribute" { + clr=14 + fill="outline" + } +} +text { + object { + x=317 + y=244 + width=61 + height=10 + } + "basic attribute" { + clr=14 + } + textix="$(P)$(mX)" +} +"text entry" { + object { + x=317 + y=264 + width=61 + height=15 + } + control { + chan="$(P)$(mX).VAL" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=317 y=228 + width=60 + height=14 + } + "basic attribute" { + clr=14 + } + textix="X" + align="horiz. centered" +} +rectangle { + object { + x=214 + y=196 width=64 - height=52 - } - "composite name"="" - children { - "text update" { - object { - x=317 - y=254 - width=61 - height=10 - } - monitor { - chan="$(P)$(mX).RBV" - clr=53 - bclr=2 - } - limits { - } - } - rectangle { - object { - x=315 - y=242 - width=64 - height=38 - } - "basic attribute" { - clr=14 - fill="outline" - } - } - text { - object { - x=317 - y=244 - width=61 - height=10 - } - "basic attribute" { - clr=14 - } - textix="$(P)$(mX)" - } - "text entry" { - object { - x=317 - y=264 - width=61 - height=15 - } - control { - chan="$(P)$(mX).VAL" - clr=14 - bclr=51 - } - limits { - } - } - text { - object { - x=317 - y=228 - width=60 - height=14 - } - "basic attribute" { - clr=14 - } - textix="X" - align="horiz. centered" - } - } -} -composite { + height=38 + } + "basic attribute" { + clr=0 + } +} +text { + object { + x=216 + y=198 + width=60 + height=10 + } + "basic attribute" { + clr=14 + } + textix="$(P)$(mY1)" +} +"text update" { + object { + x=216 + y=208 + width=60 + height=10 + } + monitor { + chan="$(P)$(mY1).RBV" + clr=53 + bclr=2 + } + limits { + } +} +"text entry" { + object { + x=216 + y=218 + width=60 + height=15 + } + control { + chan="$(P)$(mY1).VAL" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { object { x=214 - y=182 + y=196 width=64 - height=52 - } - "composite name"="" - children { - rectangle { - object { - x=214 - y=196 - width=64 - height=38 - } - "basic attribute" { - clr=0 - } - } - text { - object { - x=216 - y=198 - width=60 - height=10 - } - "basic attribute" { - clr=14 - } - textix="$(P)$(mY1)" - } - "text update" { - object { - x=216 - y=208 - width=60 - height=10 - } - monitor { - chan="$(P)$(mY1).RBV" - clr=53 - bclr=2 - } - limits { - } - } - "text entry" { - object { - x=216 - y=218 - width=60 - height=15 - } - control { - chan="$(P)$(mY1).VAL" - clr=14 - bclr=51 - } - limits { - } - } - rectangle { - object { - x=214 - y=196 - width=64 - height=38 - } - "basic attribute" { - clr=14 - fill="outline" - } - } - text { - object { - x=216 - y=182 - width=60 - height=14 - } - "basic attribute" { - clr=14 - } - textix="Y1" - align="horiz. centered" - } + height=38 + } + "basic attribute" { + clr=14 + fill="outline" + } +} +text { + object { + x=216 + y=182 + width=60 + height=14 + } + "basic attribute" { + clr=14 } + textix="Y1" + align="horiz. centered" } diff --git a/opticsApp/op/adl/kohzuGraphicLarge.adl b/opticsApp/op/adl/kohzuGraphicLarge.adl index e8ccdf2..10ca528 100644 --- a/opticsApp/op/adl/kohzuGraphicLarge.adl +++ b/opticsApp/op/adl/kohzuGraphicLarge.adl @@ -1,7 +1,7 @@ file { - name="/tmp_mnt/home/sricat/BCDA/epics/3.13.0/baseR3.13.0.beta7_shareR1.0/stdApp/op/adl/kohzuGraphicLarge.adl" - version=020205 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/kohzuGraphicLarge.adl" + version=030111 } display { object { @@ -13,6 +13,9 @@ display { clr=14 bclr=4 cmap="" + gridSpacing=5 + gridOn=0 + snapToGrid=0 } "color map" { ncolors=65 @@ -94,264 +97,218 @@ image { type="gif" "image name"="kohzu.gif" } -composite { +"text update" { + object { + x=454 + y=197 + width=40 + height=10 + } + monitor { + chan="$(P)$(mZ2).RBV" + clr=53 + bclr=2 + } + limits { + } +} +"message button" { + object { + x=474 + y=207 + width=20 + height=20 + } + control { + chan="$(P)$(mZ2).JOGF" + clr=14 + bclr=51 + } + label="+" + press_msg="1" + release_msg="0" +} +"message button" { + object { + x=454 + y=207 + width=20 + height=20 + } + control { + chan="$(P)$(mZ2).JOGR" + clr=14 + bclr=51 + } + label="-" + press_msg="1" + release_msg="0" +} +rectangle { object { x=453 - y=186 + y=196 width=42 - height=42 - } - "composite name"="" - vis="static" - chan="" - children { - composite { - object { - x=453 - y=196 - width=42 - height=32 - } - "composite name"="" - vis="static" - chan="" - children { - "text update" { - object { - x=454 - y=197 - width=40 - height=10 - } - monitor { - chan="$(P)$(mZ2).RBV" - clr=53 - bclr=2 - } - } - "message button" { - object { - x=474 - y=207 - width=20 - height=20 - } - control { - chan="$(P)$(mZ2).JOGF" - clr=14 - bclr=51 - } - label="+" - press_msg="1" - release_msg="0" - } - "message button" { - object { - x=454 - y=207 - width=20 - height=20 - } - control { - chan="$(P)$(mZ2).JOGR" - clr=14 - bclr=51 - } - label="-" - press_msg="1" - release_msg="0" - } - rectangle { - object { - x=453 - y=196 - width=42 - height=32 - } - "basic attribute" { - clr=14 - fill="outline" - } - } - } - } - text { - object { - x=453 - y=186 - width=40 - height=10 - } - "basic attribute" { - clr=14 - } - textix="$(P)$(mZ2)" - } - } -} -composite { + height=32 + } + "basic attribute" { + clr=14 + fill="outline" + } +} +text { + object { + x=453 + y=186 + width=40 + height=10 + } + "basic attribute" { + clr=14 + } + textix="$(P)$(mZ2)" +} +"text update" { + object { + x=390 + y=354 + width=40 + height=10 + } + monitor { + chan="$(P)$(mY1).RBV" + clr=53 + bclr=2 + } + limits { + } +} +"message button" { + object { + x=410 + y=364 + width=20 + height=20 + } + control { + chan="$(P)$(mY1).JOGF" + clr=14 + bclr=51 + } + label="+" + press_msg="1" + release_msg="0" +} +"message button" { + object { + x=390 + y=364 + width=20 + height=20 + } + control { + chan="$(P)$(mY1).JOGR" + clr=14 + bclr=51 + } + label="-" + press_msg="1" + release_msg="0" +} +rectangle { object { x=389 - y=343 + y=353 width=42 - height=42 - } - "composite name"="" - vis="static" - chan="" - children { - "text update" { - object { - x=390 - y=354 - width=40 - height=10 - } - monitor { - chan="$(P)$(mY1).RBV" - clr=53 - bclr=2 - } - } - "message button" { - object { - x=410 - y=364 - width=20 - height=20 - } - control { - chan="$(P)$(mY1).JOGF" - clr=14 - bclr=51 - } - label="+" - press_msg="1" - release_msg="0" - } - "message button" { - object { - x=390 - y=364 - width=20 - height=20 - } - control { - chan="$(P)$(mY1).JOGR" - clr=14 - bclr=51 - } - label="-" - press_msg="1" - release_msg="0" - } - rectangle { - object { - x=389 - y=353 - width=42 - height=32 - } - "basic attribute" { - clr=14 - fill="outline" - } - } - text { - object { - x=390 - y=343 - width=40 - height=10 - } - "basic attribute" { - clr=14 - } - textix="$(P)$(mY1)" - } - } -} -composite { + height=32 + } + "basic attribute" { + clr=14 + fill="outline" + } +} +text { + object { + x=390 + y=343 + width=40 + height=10 + } + "basic attribute" { + clr=14 + } + textix="$(P)$(mY1)" +} +"text update" { + object { + x=209 + y=444 + width=40 + height=10 + } + monitor { + chan="$(P)$(mTH).RBV" + clr=53 + bclr=2 + } + limits { + } +} +"message button" { + object { + x=229 + y=454 + width=20 + height=20 + } + control { + chan="$(P)$(mTH).JOGF" + clr=14 + bclr=51 + } + label="+" + press_msg="1" + release_msg="0" +} +"message button" { + object { + x=209 + y=454 + width=20 + height=20 + } + control { + chan="$(P)$(mTH).JOGR" + clr=14 + bclr=51 + } + label="-" + press_msg="1" + release_msg="0" +} +rectangle { object { x=208 - y=433 + y=443 width=42 - height=42 - } - "composite name"="" - vis="static" - chan="" - children { - "text update" { - object { - x=209 - y=444 - width=40 - height=10 - } - monitor { - chan="$(P)$(mTH).RBV" - clr=53 - bclr=2 - } - } - "message button" { - object { - x=229 - y=454 - width=20 - height=20 - } - control { - chan="$(P)$(mTH).JOGF" - clr=14 - bclr=51 - } - label="+" - press_msg="1" - release_msg="0" - } - "message button" { - object { - x=209 - y=454 - width=20 - height=20 - } - control { - chan="$(P)$(mTH).JOGR" - clr=14 - bclr=51 - } - label="-" - press_msg="1" - release_msg="0" - } - rectangle { - object { - x=208 - y=443 - width=42 - height=32 - } - "basic attribute" { - clr=14 - fill="outline" - } - } - text { - object { - x=209 - y=433 - width=40 - height=10 - } - "basic attribute" { - clr=14 - } - textix="$(P)$(mTH)" - } + height=32 + } + "basic attribute" { + clr=14 + fill="outline" + } +} +text { + object { + x=209 + y=433 + width=40 + height=10 } + "basic attribute" { + clr=14 + } + textix="$(P)$(mTH)" } "text update" { object { @@ -365,6 +322,8 @@ composite { clr=53 bclr=2 } + limits { + } } "message button" { object { @@ -422,87 +381,76 @@ text { } textix="$(P)$(mCHI2)" } -composite { +"text update" { + object { + x=321 + y=134 + width=40 + height=10 + } + monitor { + chan="$(P)$(mTH2).RBV" + clr=53 + bclr=2 + } + limits { + } +} +"message button" { + object { + x=341 + y=144 + width=20 + height=20 + } + control { + chan="$(P)$(mTH2).JOGF" + clr=14 + bclr=51 + } + label="+" + press_msg="1" + release_msg="0" +} +"message button" { + object { + x=321 + y=144 + width=20 + height=20 + } + control { + chan="$(P)$(mTH2).JOGR" + clr=14 + bclr=51 + } + label="-" + press_msg="1" + release_msg="0" +} +rectangle { object { x=320 - y=123 + y=133 width=42 - height=42 - } - "composite name"="" - vis="static" - chan="" - children { - "text update" { - object { - x=321 - y=134 - width=40 - height=10 - } - monitor { - chan="$(P)$(mTH2).RBV" - clr=53 - bclr=2 - } - } - "message button" { - object { - x=341 - y=144 - width=20 - height=20 - } - control { - chan="$(P)$(mTH2).JOGF" - clr=14 - bclr=51 - } - label="+" - press_msg="1" - release_msg="0" - } - "message button" { - object { - x=321 - y=144 - width=20 - height=20 - } - control { - chan="$(P)$(mTH2).JOGR" - clr=14 - bclr=51 - } - label="-" - press_msg="1" - release_msg="0" - } - rectangle { - object { - x=320 - y=133 - width=42 - height=32 - } - "basic attribute" { - clr=14 - fill="outline" - } - } - text { - object { - x=321 - y=123 - width=40 - height=10 - } - "basic attribute" { - clr=14 - } - textix="$(P)$(mTH2)" - } + height=32 + } + "basic attribute" { + clr=14 + fill="outline" + } +} +text { + object { + x=321 + y=123 + width=40 + height=10 + } + "basic attribute" { + clr=14 } + textix="$(P)$(mTH2)" } "text update" { object { @@ -516,6 +464,8 @@ composite { clr=53 bclr=2 } + limits { + } } "message button" { object { @@ -585,6 +535,8 @@ text { clr=53 bclr=2 } + limits { + } } "message button" { object { @@ -654,6 +606,8 @@ text { clr=53 bclr=2 } + limits { + } } "message button" { object { diff --git a/opticsApp/op/adl/kohzuSeqCtl.adl b/opticsApp/op/adl/kohzuSeqCtl.adl index 360df27..b9c5668 100644 --- a/opticsApp/op/adl/kohzuSeqCtl.adl +++ b/opticsApp/op/adl/kohzuSeqCtl.adl @@ -1,7 +1,7 @@ file { - name="/home/sricat/BCDA/epics/3.13.0/baseR3.13.0.beta11_shareR1.0/stdApp/op/adl/kohzuSeqCtl_2.2.adl" - version=020303 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/kohzuSeqCtl.adl" + version=030111 } display { object { @@ -222,6 +222,8 @@ polygon { bclr=3 } align="horiz. centered" + limits { + } } "text update" { object { @@ -236,6 +238,8 @@ polygon { bclr=51 } align="horiz. centered" + limits { + } } "text update" { object { @@ -250,6 +254,8 @@ polygon { bclr=3 } align="horiz. centered" + limits { + } } rectangle { object { @@ -281,6 +287,8 @@ rectangle { bclr=3 } align="horiz. centered" + limits { + } } "text update" { object { @@ -295,6 +303,8 @@ rectangle { bclr=51 } align="horiz. centered" + limits { + } } "text update" { object { @@ -309,6 +319,8 @@ rectangle { bclr=3 } align="horiz. centered" + limits { + } } rectangle { object { @@ -377,72 +389,59 @@ polygon { (275,55) } } -composite { +text { + object { + x=431 + y=89 + width=100 + height=26 + } + "basic attribute" { + clr=54 + fill="outline" + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)KohzuMoving" + } + textix="Moving" + align="horiz. centered" +} +text { + object { + x=432 + y=90 + width=100 + height=26 + } + "basic attribute" { + clr=54 + fill="outline" + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)KohzuMoving" + } + textix="Moving" + align="horiz. centered" +} +text { object { x=430 y=88 - width=102 - height=28 - } - "composite name"="" - vis="static" - chan="$(P)KohzuMoving" - children { - text { - object { - x=431 - y=89 - width=100 - height=26 - } - "basic attribute" { - clr=54 - fill="outline" - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)KohzuMoving" - } - textix="Moving" - align="horiz. centered" - } - text { - object { - x=432 - y=90 - width=100 - height=26 - } - "basic attribute" { - clr=54 - fill="outline" - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)KohzuMoving" - } - textix="Moving" - align="horiz. centered" - } - text { - object { - x=430 - y=88 - width=100 - height=26 - } - "basic attribute" { - clr=50 - fill="outline" - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)KohzuMoving" - } - textix="Moving" - align="horiz. centered" - } + width=100 + height=26 + } + "basic attribute" { + clr=50 + fill="outline" } + "dynamic attribute" { + vis="if not zero" + chan="$(P)KohzuMoving" + } + textix="Moving" + align="horiz. centered" } "choice button" { object { @@ -593,6 +592,8 @@ rectangle { bclr=1 } align="horiz. centered" + limits { + } } "text update" { object { @@ -607,6 +608,8 @@ rectangle { bclr=1 } align="horiz. centered" + limits { + } } "related display" { object { @@ -732,6 +735,8 @@ text { clr=54 bclr=3 } + limits { + } } "text entry" { object { @@ -745,6 +750,8 @@ text { clr=14 bclr=51 } + limits { + } } "message button" { object { @@ -773,6 +780,8 @@ text { clr=14 bclr=51 } + limits { + } } "message button" { object { @@ -802,6 +811,8 @@ text { bclr=3 } align="horiz. centered" + limits { + } } "text update" { object { @@ -816,6 +827,8 @@ text { bclr=3 } align="horiz. centered" + limits { + } } "text update" { object { @@ -829,6 +842,8 @@ text { clr=54 bclr=3 } + limits { + } } "text entry" { object { @@ -842,6 +857,8 @@ text { clr=14 bclr=51 } + limits { + } } "message button" { object { @@ -870,6 +887,8 @@ text { clr=14 bclr=51 } + limits { + } } "message button" { object { @@ -899,6 +918,8 @@ text { bclr=3 } align="horiz. centered" + limits { + } } "text update" { object { @@ -913,6 +934,8 @@ text { bclr=3 } align="horiz. centered" + limits { + } } text { object { @@ -1055,6 +1078,8 @@ text { bclr=3 } align="horiz. centered" + limits { + } } "text update" { object { @@ -1069,6 +1094,8 @@ text { bclr=51 } align="horiz. centered" + limits { + } } "text update" { object { @@ -1083,6 +1110,8 @@ text { bclr=3 } align="horiz. centered" + limits { + } } rectangle { object { diff --git a/opticsApp/op/adl/kohzuSeqCtl_All.adl b/opticsApp/op/adl/kohzuSeqCtl_All.adl index ebce8ab..2c2822b 100644 --- a/opticsApp/op/adl/kohzuSeqCtl_All.adl +++ b/opticsApp/op/adl/kohzuSeqCtl_All.adl @@ -1,14 +1,14 @@ file { - name="/home/oxygen4/MOONEY/epics/3.13.0/xxx2/xxxApp/op/adl/kohzuSeqCtl_All_3.0.adl" - version=020304 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/kohzuSeqCtl_All.adl" + version=030111 } display { object { - x=10 - y=10 + x=901 + y=617 width=535 - height=342 + height=365 } clr=14 bclr=3 @@ -140,6 +140,8 @@ text { clr=14 bclr=51 } + limits { + } } text { object { @@ -166,6 +168,8 @@ text { clr=14 bclr=51 } + limits { + } } text { object { @@ -192,6 +196,8 @@ text { clr=14 bclr=51 } + limits { + } } text { object { @@ -218,6 +224,8 @@ text { clr=14 bclr=51 } + limits { + } } text { object { @@ -244,6 +252,8 @@ text { clr=14 bclr=51 } + limits { + } } text { object { @@ -327,6 +337,8 @@ text { clr=54 bclr=3 } + limits { + } } "text entry" { object { @@ -340,6 +352,8 @@ text { clr=14 bclr=51 } + limits { + } } "message button" { object { @@ -368,6 +382,8 @@ text { clr=14 bclr=51 } + limits { + } } "message button" { object { @@ -397,6 +413,8 @@ text { bclr=3 } align="horiz. centered" + limits { + } } "text update" { object { @@ -411,6 +429,8 @@ text { bclr=3 } align="horiz. centered" + limits { + } } "text update" { object { @@ -425,6 +445,8 @@ text { bclr=3 } align="horiz. centered" + limits { + } } "text update" { object { @@ -439,6 +461,8 @@ text { bclr=3 } align="horiz. centered" + limits { + } } "text update" { object { @@ -452,6 +476,8 @@ text { clr=54 bclr=3 } + limits { + } } "text entry" { object { @@ -465,6 +491,8 @@ text { clr=14 bclr=51 } + limits { + } } "message button" { object { @@ -493,6 +521,8 @@ text { clr=14 bclr=51 } + limits { + } } "message button" { object { @@ -521,6 +551,8 @@ text { clr=54 bclr=3 } + limits { + } } "text entry" { object { @@ -534,6 +566,8 @@ text { clr=14 bclr=51 } + limits { + } } "text entry" { object { @@ -547,6 +581,8 @@ text { clr=14 bclr=51 } + limits { + } } "message button" { object { @@ -591,6 +627,8 @@ text { bclr=3 } align="horiz. centered" + limits { + } } "text update" { object { @@ -604,6 +642,8 @@ text { clr=54 bclr=3 } + limits { + } } text { object { @@ -766,6 +806,8 @@ polyline { clr=54 bclr=3 } + limits { + } } "text update" { object { @@ -779,6 +821,8 @@ polyline { clr=54 bclr=3 } + limits { + } } "text update" { object { @@ -792,6 +836,8 @@ polyline { clr=54 bclr=3 } + limits { + } } "message button" { object { @@ -833,6 +879,8 @@ rectangle { clr=34 bclr=3 } + limits { + } } "text update" { object { @@ -846,6 +894,8 @@ rectangle { clr=34 bclr=3 } + limits { + } } "text update" { object { @@ -859,51 +909,40 @@ rectangle { clr=34 bclr=3 } + limits { + } } -composite { +arc { object { x=100 - y=177 + y=180 width=25 - height=21 - } - "composite name"="" - vis="static" - chan="" - children { - arc { - object { - x=100 - y=180 - width=25 - height=18 - } - "basic attribute" { - clr=33 - fill="outline" - width=2 - } - begin=5760 - path=11520 - } - polyline { - object { - x=107 - y=177 - width=8 - height=10 - } - "basic attribute" { - clr=33 - fill="outline" - width=2 - } - points { - (108,178) - (114,181) - (108,186) - } - } + height=18 + } + "basic attribute" { + clr=33 + fill="outline" + width=2 + } + begin=5760 + path=11520 +} +polyline { + object { + x=107 + y=177 + width=8 + height=10 + } + "basic attribute" { + clr=33 + fill="outline" + width=2 + } + points { + (108,178) + (114,181) + (108,186) } } polyline { @@ -949,6 +988,8 @@ rectangle { bclr=1 } align="horiz. centered" + limits { + } } polyline { object { @@ -980,6 +1021,8 @@ polyline { bclr=1 } align="horiz. centered" + limits { + } } "message button" { object { @@ -1036,6 +1079,8 @@ text { bclr=1 } align="horiz. centered" + limits { + } } "text update" { object { @@ -1050,6 +1095,8 @@ text { bclr=1 } align="horiz. centered" + limits { + } } "text update" { object { @@ -1064,6 +1111,8 @@ text { bclr=1 } align="horiz. centered" + limits { + } } text { object { @@ -1091,6 +1140,8 @@ text { bclr=1 } align="horiz. centered" + limits { + } } "text update" { object { @@ -1105,6 +1156,8 @@ text { bclr=1 } align="horiz. centered" + limits { + } } "text update" { object { @@ -1119,6 +1172,8 @@ text { bclr=1 } align="horiz. centered" + limits { + } } "choice button" { object { @@ -1146,6 +1201,8 @@ text { bclr=1 } align="horiz. centered" + limits { + } } "text update" { object { @@ -1160,6 +1217,8 @@ text { bclr=1 } align="horiz. centered" + limits { + } } "text update" { object { @@ -1174,6 +1233,8 @@ text { bclr=1 } align="horiz. centered" + limits { + } } rectangle { object { @@ -1289,45 +1350,34 @@ text { textix="Done" align="horiz. centered" } -composite { +"text entry" { object { - x=119 + x=181 y=263 - width=122 + width=60 height=20 } - "composite name"="" - vis="static" - chan="" - children { - "text entry" { - object { - x=181 - y=263 - width=60 - height=20 - } - control { - chan="$(P)Kohzu_yOffsetAO.VAL" - clr=14 - bclr=51 - } - } - text { - object { - x=119 - y=266 - width=65 - height=14 - } - "basic attribute" { - clr=13 - fill="outline" - } - textix="y offset:" - } + control { + chan="$(P)Kohzu_yOffsetAO.VAL" + clr=14 + bclr=51 + } + limits { } } +text { + object { + x=119 + y=266 + width=65 + height=14 + } + "basic attribute" { + clr=13 + fill="outline" + } + textix="y offset:" +} text { object { x=107 @@ -1356,3 +1406,30 @@ text { textix="Y1 and Z2 motors" align="horiz. centered" } +text { + object { + x=20 + y=345 + width=100 + height=14 + } + "basic attribute" { + clr=13 + fill="outline" + } + textix="Speed Control:" +} +"choice button" { + object { + x=125 + y=344 + width=150 + height=22 + } + control { + chan="$(P)KohzuSpeedCtrl" + clr=14 + bclr=51 + } + stacking="column" +} diff --git a/opticsApp/op/adl/kohzu2SeqCtl.adl b/opticsApp/op/adl/kohzuSeqCtl_soft.adl similarity index 75% rename from opticsApp/op/adl/kohzu2SeqCtl.adl rename to opticsApp/op/adl/kohzuSeqCtl_soft.adl index 6ae44dd..430339e 100644 --- a/opticsApp/op/adl/kohzu2SeqCtl.adl +++ b/opticsApp/op/adl/kohzuSeqCtl_soft.adl @@ -1,18 +1,21 @@ file { - name="/tmp_mnt/home/sricat/BCDA/epics/3.13.0/share/stdApp/op/adl/kohzu2SeqCtl_2.2.adl" - version=020205 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/kohzuSeqCtl_soft.adl" + version=030111 } display { object { x=10 - y=10 + y=25 width=525 height=200 } clr=14 bclr=3 cmap="" + gridSpacing=5 + gridOn=0 + snapToGrid=0 } "color map" { ncolors=65 @@ -131,7 +134,7 @@ text { height=20 } control { - chan="$(P)BraggE:scanParms.GO" + chan="$(P)$(MONO)E:scanParms.GO" clr=14 bclr=51 } @@ -146,7 +149,7 @@ text { height=20 } control { - chan="$(P)BraggE:scanParms.LOAD" + chan="$(P)$(MONO)E:scanParms.LOAD" clr=14 bclr=51 } @@ -163,7 +166,7 @@ text { display[5] { label="Energy-scan parameters" name="scanParms.adl" - args="P=$(P),Q=BraggE,PV=BraggEAO" + args="P=$(P),Q=$(MONO)E,PV=$(MONO)E" } clr=14 bclr=51 @@ -197,7 +200,7 @@ polygon { } "dynamic attribute" { vis="if not zero" - chan="$(P)KohzuModeBO.VAL" + chan="$(P)$(MONO)Mode.VAL" } points { (275,55) @@ -214,11 +217,13 @@ polygon { height=15 } monitor { - chan="$(P)KohzuZ2RdbkAI" + chan="$(P)$(MONO)ZRdbk" clr=54 bclr=3 } align="horiz. centered" + limits { + } } "text update" { object { @@ -228,11 +233,13 @@ polygon { height=15 } monitor { - chan="$(P)KohzuZ2CmdAO" + chan="$(P)$(MONO)ZCmd" clr=14 bclr=51 } align="horiz. centered" + limits { + } } "text update" { object { @@ -242,11 +249,13 @@ polygon { height=10 } monitor { - chan="$(P)KohzuZ2PvSI" + chan="$(P)$(MONO)ZPv" clr=14 bclr=3 } align="horiz. centered" + limits { + } } rectangle { object { @@ -262,7 +271,7 @@ rectangle { } "dynamic attribute" { vis="if zero" - chan="$(P)KohzuZ2DmovBI" + chan="$(P)$(MONO)ZDmov" } } "text update" { @@ -273,11 +282,13 @@ rectangle { height=15 } monitor { - chan="$(P)KohzuThetaRdbkAI" + chan="$(P)$(MONO)ThetaMotRdbk" clr=54 bclr=3 } align="horiz. centered" + limits { + } } "text update" { object { @@ -287,11 +298,13 @@ rectangle { height=15 } monitor { - chan="$(P)KohzuThetaCmdAO" + chan="$(P)$(MONO)ThetaCmd" clr=14 bclr=51 } align="horiz. centered" + limits { + } } "text update" { object { @@ -301,11 +314,13 @@ rectangle { height=10 } monitor { - chan="$(P)KohzuThetaPvSI" + chan="$(P)$(MONO)ThetaPv" clr=14 bclr=3 } align="horiz. centered" + limits { + } } rectangle { object { @@ -321,66 +336,7 @@ rectangle { } "dynamic attribute" { vis="if zero" - chan="$(P)KohzuThetaDmovBI" - } -} -"text update" { - object { - x=376 - y=42 - width=67 - height=15 - } - monitor { - chan="$(P)KohzuY2RdbkAI" - clr=54 - bclr=3 - } - align="horiz. centered" -} -"text update" { - object { - x=376 - y=57 - width=67 - height=15 - } - monitor { - chan="$(P)KohzuY2CmdAO" - clr=14 - bclr=51 - } - align="horiz. centered" -} -"text update" { - object { - x=375 - y=32 - width=70 - height=10 - } - monitor { - chan="$(P)KohzuY2PvSI" - clr=14 - bclr=3 - } - align="horiz. centered" -} -rectangle { - object { - x=375 - y=42 - width=70 - height=32 - } - "basic attribute" { - clr=60 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)KohzuY2DmovBI" + chan="$(P)$(MONO)ThetaDmov" } } text { @@ -408,143 +364,84 @@ text { clr=14 fill="outline" } - textix="Z2" + textix="Z" align="horiz. centered" } -text { +polygon { object { - x=375 - y=17 - width=70 + x=275 + y=55 + width=15 height=15 } "basic attribute" { - clr=14 - fill="outline" - } - textix="Y2" - align="horiz. centered" -} -polyline { - object { - x=372 - y=20 - width=0 - height=54 + clr=50 + width=1 } - "basic attribute" { - clr=14 - fill="outline" + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(MONO)Put.VAL" } points { - (372,20) - (372,74) + (275,55) + (275,70) + (290,62) + (275,55) } } -polyline { +text { object { - x=447 - y=20 - width=0 - height=54 + x=431 + y=89 + width=100 + height=26 } "basic attribute" { - clr=14 + clr=54 fill="outline" } - points { - (447,20) - (447,74) + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(MONO)Moving" } + textix="Moving" + align="horiz. centered" } -polygon { +text { object { - x=275 - y=55 - width=15 - height=15 + x=432 + y=90 + width=100 + height=26 } "basic attribute" { - clr=50 - width=1 + clr=54 + fill="outline" } "dynamic attribute" { vis="if not zero" - chan="$(P)KohzuPutBO.VAL" - } - points { - (275,55) - (275,70) - (290,62) - (275,55) + chan="$(P)$(MONO)Moving" } + textix="Moving" + align="horiz. centered" } -composite { +text { object { x=430 y=88 - width=102 - height=28 - } - "composite name"="" - vis="static" - chan="$(P)KohzuMovingBO" - children { - text { - object { - x=431 - y=89 - width=100 - height=26 - } - "basic attribute" { - clr=54 - fill="outline" - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)KohzuMovingBO" - } - textix="Moving" - align="horiz. centered" - } - text { - object { - x=432 - y=90 - width=100 - height=26 - } - "basic attribute" { - clr=54 - fill="outline" - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)KohzuMovingBO" - } - textix="Moving" - align="horiz. centered" - } - text { - object { - x=430 - y=88 - width=100 - height=26 - } - "basic attribute" { - clr=50 - fill="outline" - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)KohzuMovingBO" - } - textix="Moving" - align="horiz. centered" - } + width=100 + height=26 } + "basic attribute" { + clr=50 + fill="outline" + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(MONO)Moving" + } + textix="Moving" + align="horiz. centered" } "choice button" { object { @@ -554,7 +451,7 @@ composite { height=22 } control { - chan="$(P)KohzuUseSetBO.VAL" + chan="$(P)$(MONO)UseSet.VAL" clr=14 bclr=51 } @@ -617,7 +514,7 @@ rectangle { } "dynamic attribute" { vis="if not zero" - chan="$(P)KohzuPutBO.VAL" + chan="$(P)$(MONO)Put.VAL" } } polyline { @@ -645,7 +542,7 @@ polyline { height=18 } control { - chan="$(P)KohzuMode2MO.VAL" + chan="$(P)$(MONO)Mode2.VAL" clr=14 bclr=51 } @@ -659,7 +556,7 @@ polyline { height=34 } control { - chan="$(P)KohzuOperAckBO" + chan="$(P)$(MONO)OperAck" clr=14 bclr=51 } @@ -679,7 +576,7 @@ rectangle { } "dynamic attribute" { vis="if not zero" - chan="$(P)KohzuAlertBO" + chan="$(P)$(MONO)Alert" } } "text update" { @@ -690,11 +587,13 @@ rectangle { height=14 } monitor { - chan="$(P)KohzuSeqMsg1SI" + chan="$(P)$(MONO)SeqMsg1" clr=14 bclr=1 } align="horiz. centered" + limits { + } } "text update" { object { @@ -704,11 +603,13 @@ rectangle { height=14 } monitor { - chan="$(P)KohzuSeqMsg2SI" + chan="$(P)$(MONO)SeqMsg2" clr=14 bclr=1 } align="horiz. centered" + limits { + } } "related display" { object { @@ -719,33 +620,38 @@ rectangle { } display[0] { label="Kohzu Graphic" - name="kohzu2Graphic.adl" - args="P=$(P),mTH=m9,mY1=m10,mZ2=m11,mCHI2=m12,mTH2=m13,mX=m14,mY=m15,mX2=m16,QE=BraggE,PVE=BraggEAO,QL=BraggLambda,PVL=BraggLambdaAO,QTh=BraggTheta,PVTh=BraggThetaAO" + name="kohzuGraphic.adl" + args="P=$(P),mTH=$(mTH),mY=$(mY),mZ=$(mZ),mCHI2=$(mCHI2),mTH2=$(mTH2),mX2=$(mX2),QE=BraggE,PVE=BraggEAO,QL=BraggLambda,PVL=BraggLambdaAO,QTh=BraggTheta,PVTh=BraggTheta" } display[1] { label="Kohzu Graphic (L)" - name="kohzu2GraphicLarge.adl" - args="P=$(P),mTH=m9,mY1=m10,mZ2=m11,mCHI2=m12,mTH2=m13,mX=m14,mY=m15,mX2=m16,QE=BraggE,PVE=BraggEAO,QL=BraggLambda,PVL=BraggLambdaAO,QTh=BraggTheta,PVTh=BraggThetaAO" + name="kohzuGraphicLarge.adl" + args="P=$(P),mTH=$(mTH),mY=$(mY),mZ=$(mZ),mCHI2=$(mCHI2),mTH2=$(mTH2),mX2=$(mX2),QE=BraggE,PVE=BraggEAO,QL=BraggLambda,PVL=BraggLambdaAO,QTh=BraggTheta,PVTh=BraggTheta" } display[2] { - label="KohzuSeq" - name="kohzu2SeqCtl.adl" - args="P=$(P)" + label="KohzuSeq (tiny)" + name="kohzuSeqCtl_soft_tiny.adl" + args="P=$(P),MONO=$(MONO,mTH=$(mTH),mY=$(mY),mZ=$(mZ),mCHI2=$(mCHI2),mTH2=$(mTH2),mX2=$(mX2)" } display[3] { + label="KohzuSeq (all)" + name="kohzuSeqCtl_soft_All.adl" + args="P=$(P),MONO=$(MONO)mTH=$(mTH),mY=$(mY),mZ=$(mZ),mCHI2=$(mCHI2),mTH2=$(mTH2),mX2=$(mX2)" + } + display[4] { label="Energy-scan parameters" name="scanParms.adl" - args="P=$(P),Q=BraggE,PV=BraggEAO" + args="P=$(P),Q=BraggE,PV=BraggE" } - display[4] { + display[5] { label="Theta-scan parameters" name="scanParms.adl" - args="P=$(P),Q=BraggTheta,PV=BraggThetaAO" + args="P=$(P),Q=BraggTheta,PV=BraggTheta" } - display[5] { + display[6] { label="Wavelength-scan parameters" name="scanParms.adl" - args="P=$(P),Q=BraggLambda,PV=BraggLambdaAO" + args="P=$(P),Q=BraggLambda,PV=BraggLambda" } clr=14 bclr=51 @@ -783,7 +689,7 @@ text { height=45 } control { - chan="$(P)KohzuModeBO.VAL" + chan="$(P)$(MONO)Mode.VAL" clr=14 bclr=51 } @@ -796,7 +702,7 @@ text { height=25 } control { - chan="$(P)KohzuPutBO" + chan="$(P)$(MONO)Put" clr=14 bclr=51 } @@ -825,10 +731,12 @@ text { height=20 } monitor { - chan="$(P)BraggThetaRdbkAO" + chan="$(P)$(MONO)Theta.RBV" clr=54 bclr=3 } + limits { + } } "text entry" { object { @@ -838,10 +746,12 @@ text { height=25 } control { - chan="$(P)BraggThetaAO.VAL" + chan="$(P)$(MONO)Theta.VAL" clr=14 bclr=51 } + limits { + } } "message button" { object { @@ -851,7 +761,7 @@ text { height=20 } control { - chan="$(P)BraggThetaIncBO.VAL" + chan="$(P)$(MONO)Theta.TWF" clr=14 bclr=51 } @@ -866,10 +776,12 @@ text { height=20 } control { - chan="$(P)BraggThetaTweakAI" + chan="$(P)$(MONO)Theta.TWV" clr=14 bclr=51 } + limits { + } } "message button" { object { @@ -879,7 +791,7 @@ text { height=20 } control { - chan="$(P)BraggThetaDecBO.VAL" + chan="$(P)$(MONO)Theta.TWR" clr=14 bclr=51 } @@ -894,11 +806,13 @@ text { height=15 } monitor { - chan="$(P)BraggThetaAO.DRVH" + chan="$(P)$(MONO)Theta.HLM" clr=54 bclr=3 } align="horiz. centered" + limits { + } } "text update" { object { @@ -908,11 +822,13 @@ text { height=15 } monitor { - chan="$(P)BraggThetaAO.DRVL" + chan="$(P)$(MONO)Theta.LLM" clr=54 bclr=3 } align="horiz. centered" + limits { + } } "text update" { object { @@ -922,10 +838,12 @@ text { height=20 } monitor { - chan="$(P)BraggERdbkAO" + chan="$(P)$(MONO)E.RBV" clr=54 bclr=3 } + limits { + } } "text entry" { object { @@ -935,10 +853,12 @@ text { height=25 } control { - chan="$(P)BraggEAO.VAL" + chan="$(P)$(MONO)E.VAL" clr=14 bclr=51 } + limits { + } } "message button" { object { @@ -948,7 +868,7 @@ text { height=20 } control { - chan="$(P)BraggEIncBO.VAL" + chan="$(P)$(MONO)E.TWF" clr=14 bclr=51 } @@ -963,10 +883,12 @@ text { height=20 } control { - chan="$(P)BraggETweakAI" + chan="$(P)$(MONO)E.TWV" clr=14 bclr=51 } + limits { + } } "message button" { object { @@ -976,7 +898,7 @@ text { height=20 } control { - chan="$(P)BraggEDecBO.VAL" + chan="$(P)$(MONO)E.TWR" clr=14 bclr=51 } @@ -991,11 +913,13 @@ text { height=15 } monitor { - chan="$(P)BraggEAO.DRVL" + chan="$(P)$(MONO)E.LLM" clr=54 bclr=3 } align="horiz. centered" + limits { + } } "text update" { object { @@ -1005,11 +929,13 @@ text { height=15 } monitor { - chan="$(P)BraggEAO.DRVH" + chan="$(P)$(MONO)E.HLM" clr=54 bclr=3 } align="horiz. centered" + limits { + } } text { object { @@ -1038,7 +964,7 @@ rectangle { } "dynamic attribute" { vis="if not zero" - chan="$(P)KohzuModeBO.VAL" + chan="$(P)$(MONO)Mode.VAL" } } rectangle { @@ -1088,7 +1014,7 @@ text { height=20 } control { - chan="$(P)BraggTheta:scanParms.GO" + chan="$(P)$(MONO)Theta:scanParms.GO" clr=14 bclr=51 } @@ -1103,7 +1029,7 @@ text { height=20 } control { - chan="$(P)BraggTheta:scanParms.LOAD" + chan="$(P)$(MONO)Theta:scanParms.LOAD" clr=14 bclr=51 } @@ -1120,7 +1046,7 @@ text { display[6] { label="Theta-scan parameters" name="scanParms.adl" - args="P=$(P),Q=BraggTheta,PV=BraggThetaAO" + args="P=$(P),Q=$(MONO)Theta,PV=$(MONO)Theta" } clr=14 bclr=51 @@ -1139,3 +1065,114 @@ text { textix="Monochromator Motors" align="horiz. centered" } +"text update" { + object { + x=376 + y=43 + width=67 + height=15 + } + monitor { + chan="$(P)$(MONO)YRdbk" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text update" { + object { + x=376 + y=57 + width=67 + height=15 + } + monitor { + chan="$(P)$(MONO)YCmd" + clr=14 + bclr=51 + } + align="horiz. centered" + limits { + } +} +"text update" { + object { + x=375 + y=32 + width=70 + height=10 + } + monitor { + chan="$(P)$(MONO)YPv" + clr=14 + bclr=3 + } + align="horiz. centered" + limits { + } +} +rectangle { + object { + x=375 + y=42 + width=70 + height=32 + } + "basic attribute" { + clr=60 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(MONO)YDmov" + } +} +text { + object { + x=375 + y=17 + width=70 + height=14 + } + "basic attribute" { + clr=14 + fill="outline" + } + textix="Y" + align="horiz. centered" +} +polyline { + object { + x=372 + y=20 + width=0 + height=54 + } + "basic attribute" { + clr=14 + fill="outline" + } + points { + (372,20) + (372,74) + } +} +polyline { + object { + x=447 + y=20 + width=0 + height=54 + } + "basic attribute" { + clr=14 + fill="outline" + } + points { + (447,20) + (447,74) + } +} diff --git a/opticsApp/op/adl/kohzu2SeqCtl_All.adl b/opticsApp/op/adl/kohzuSeqCtl_soft_All.adl similarity index 76% rename from opticsApp/op/adl/kohzu2SeqCtl_All.adl rename to opticsApp/op/adl/kohzuSeqCtl_soft_All.adl index 03a1f76..39deea4 100644 --- a/opticsApp/op/adl/kohzu2SeqCtl_All.adl +++ b/opticsApp/op/adl/kohzuSeqCtl_soft_All.adl @@ -1,18 +1,21 @@ file { - name="/tmp_mnt/home/oxygen2/MOONEY/epics/3.12.2/stdApp/op/adl/kohzu2SeqCtl_All_3.0.adl" - version=020209 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/kohzuSeqCtl_soft_All.adl" + version=030111 } display { object { - x=10 - y=10 + x=951 + y=454 width=535 - height=342 + height=365 } clr=14 bclr=3 cmap="" + gridSpacing=5 + gridOn=0 + snapToGrid=0 } "color map" { ncolors=65 @@ -84,55 +87,6 @@ display { 1a7309, } } -composite { - object { - x=445 - y=230 - width=88 - height=22 - } - "composite name"="" - vis="static" - chan="" - children { - text { - object { - x=445 - y=230 - width=88 - height=22 - } - "basic attribute" { - clr=50 - fill="outline" - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)KohzuMovingBO" - } - textix="Moving" - align="horiz. centered" - } - text { - object { - x=445 - y=230 - width=88 - height=22 - } - "basic attribute" { - clr=14 - fill="outline" - } - "dynamic attribute" { - vis="if zero" - chan="$(P)KohzuMovingBO" - } - textix="Done" - align="horiz. centered" - } - } -} rectangle { object { x=84 @@ -146,7 +100,7 @@ rectangle { } "dynamic attribute" { vis="if not zero" - chan="$(P)KohzuAlertBO" + chan="$(P)$(MONO)Alert" } } rectangle { @@ -182,10 +136,12 @@ text { height=20 } control { - chan="$(P)BraggHAO.VAL" + chan="$(P)$(MONO)H" clr=14 bclr=51 } + limits { + } } text { object { @@ -208,10 +164,12 @@ text { height=20 } control { - chan="$(P)BraggKAO.VAL" + chan="$(P)$(MONO)K" clr=14 bclr=51 } + limits { + } } text { object { @@ -234,10 +192,12 @@ text { height=20 } control { - chan="$(P)BraggLAO.VAL" + chan="$(P)$(MONO)L" clr=14 bclr=51 } + limits { + } } text { object { @@ -260,10 +220,12 @@ text { height=20 } control { - chan="$(P)BraggAAO.VAL" + chan="$(P)$(MONO)A" clr=14 bclr=51 } + limits { + } } text { object { @@ -286,10 +248,12 @@ text { height=20 } control { - chan="$(P)Bragg2dSpacingAO" + chan="$(P)$(MONO)2dSpacing" clr=14 bclr=51 } + limits { + } } text { object { @@ -316,7 +280,7 @@ text { clr=14 fill="outline" } - textix="Z2" + textix="Z" align="horiz. centered" } "choice button" { @@ -327,7 +291,7 @@ text { height=45 } control { - chan="$(P)KohzuModeBO.VAL" + chan="$(P)$(MONO)Mode.VAL" clr=14 bclr=33 } @@ -340,7 +304,7 @@ text { height=25 } control { - chan="$(P)KohzuPutBO" + chan="$(P)$(MONO)Put" clr=14 bclr=33 } @@ -369,10 +333,12 @@ text { height=20 } monitor { - chan="$(P)BraggThetaRdbkAO" + chan="$(P)$(MONO)Theta.RBV" clr=54 bclr=3 } + limits { + } } "text entry" { object { @@ -382,10 +348,12 @@ text { height=25 } control { - chan="$(P)BraggThetaAO.VAL" + chan="$(P)$(MONO)Theta" clr=14 bclr=51 } + limits { + } } "message button" { object { @@ -395,7 +363,7 @@ text { height=20 } control { - chan="$(P)BraggThetaIncBO.VAL" + chan="$(P)$(MONO)Theta.TWF" clr=14 bclr=51 } @@ -410,10 +378,12 @@ text { height=20 } control { - chan="$(P)BraggThetaTweakAI" + chan="$(P)$(MONO)Theta.TWV" clr=14 bclr=51 } + limits { + } } "message button" { object { @@ -423,7 +393,7 @@ text { height=20 } control { - chan="$(P)BraggThetaDecBO.VAL" + chan="$(P)$(MONO)Theta.TWR" clr=14 bclr=51 } @@ -438,11 +408,13 @@ text { height=15 } monitor { - chan="$(P)BraggThetaAO.DRVH" + chan="$(P)$(MONO)Theta.HLM" clr=54 bclr=3 } align="horiz. centered" + limits { + } } "text update" { object { @@ -452,11 +424,13 @@ text { height=15 } monitor { - chan="$(P)BraggThetaAO.DRVL" + chan="$(P)$(MONO)Theta.LLM" clr=54 bclr=3 } align="horiz. centered" + limits { + } } "text update" { object { @@ -466,11 +440,13 @@ text { height=15 } monitor { - chan="$(P)BraggLambdaAO.DRVL" + chan="$(P)$(MONO)Lambda.LLM" clr=54 bclr=3 } align="horiz. centered" + limits { + } } "text update" { object { @@ -480,11 +456,13 @@ text { height=15 } monitor { - chan="$(P)BraggEAO.DRVL" + chan="$(P)$(MONO)E.LLM" clr=54 bclr=3 } align="horiz. centered" + limits { + } } "text update" { object { @@ -494,10 +472,12 @@ text { height=20 } monitor { - chan="$(P)BraggLambdaRdbkAO" + chan="$(P)$(MONO)Lambda.RBV" clr=54 bclr=3 } + limits { + } } "text entry" { object { @@ -507,10 +487,12 @@ text { height=25 } control { - chan="$(P)BraggLambdaAO.VAL" + chan="$(P)$(MONO)Lambda" clr=14 bclr=51 } + limits { + } } "message button" { object { @@ -520,7 +502,7 @@ text { height=20 } control { - chan="$(P)BraggLambdaIncBO.VAL" + chan="$(P)$(MONO)Lambda.TWF" clr=14 bclr=51 } @@ -535,10 +517,12 @@ text { height=20 } control { - chan="$(P)BraggLambdaTweakAI" + chan="$(P)$(MONO)Lambda.TWV" clr=14 bclr=51 } + limits { + } } "message button" { object { @@ -548,7 +532,7 @@ text { height=20 } control { - chan="$(P)BraggLambdaDecBO.VAL" + chan="$(P)$(MONO)Lambda.TWR" clr=14 bclr=51 } @@ -563,10 +547,12 @@ text { height=15 } monitor { - chan="$(P)BraggLambdaAO.DRVH" + chan="$(P)$(MONO)Lambda.HLM" clr=54 bclr=3 } + limits { + } } "text entry" { object { @@ -576,10 +562,12 @@ text { height=25 } control { - chan="$(P)BraggEAO.VAL" + chan="$(P)$(MONO)E" clr=14 bclr=51 } + limits { + } } "text entry" { object { @@ -589,10 +577,12 @@ text { height=20 } control { - chan="$(P)BraggETweakAI" + chan="$(P)$(MONO)E.TWV" clr=14 bclr=51 } + limits { + } } "message button" { object { @@ -602,7 +592,7 @@ text { height=20 } control { - chan="$(P)BraggEDecBO.VAL" + chan="$(P)$(MONO)E.TWR" clr=14 bclr=51 } @@ -617,7 +607,7 @@ text { height=20 } control { - chan="$(P)BraggEIncBO.VAL" + chan="$(P)$(MONO)E.TWF" clr=14 bclr=51 } @@ -632,11 +622,13 @@ text { height=15 } monitor { - chan="$(P)BraggEAO.DRVH" + chan="$(P)$(MONO)E.HLM" clr=54 bclr=3 } align="horiz. centered" + limits { + } } "text update" { object { @@ -646,10 +638,12 @@ text { height=20 } monitor { - chan="$(P)BraggERdbkAO" + chan="$(P)$(MONO)E.RBV" clr=54 bclr=3 } + limits { + } } text { object { @@ -808,10 +802,12 @@ polyline { height=15 } monitor { - chan="$(P)KohzuThetaRdbkAI" + chan="$(P)$(MONO)ThetaMotRdbk" clr=54 bclr=3 } + limits { + } } "text update" { object { @@ -821,10 +817,12 @@ polyline { height=15 } monitor { - chan="$(P)KohzuY2RdbkAI" + chan="$(P)$(MONO)YRdbk" clr=54 bclr=3 } + limits { + } } "text update" { object { @@ -834,10 +832,12 @@ polyline { height=15 } monitor { - chan="$(P)KohzuZ2RdbkAI" + chan="$(P)$(MONO)ZRdbk" clr=54 bclr=3 } + limits { + } } "message button" { object { @@ -875,10 +875,12 @@ rectangle { height=15 } monitor { - chan="$(P)KohzuZ2SetAO" + chan="$(P)$(MONO)ZSet" clr=34 bclr=3 } + limits { + } } "text update" { object { @@ -888,10 +890,12 @@ rectangle { height=15 } monitor { - chan="$(P)KohzuY2SetAO" + chan="$(P)$(MONO)YSet" clr=34 bclr=3 } + limits { + } } "text update" { object { @@ -901,55 +905,44 @@ rectangle { height=15 } monitor { - chan="$(P)KohzuThetaSetAO" + chan="$(P)$(MONO)ThetaSet" clr=34 bclr=3 } + limits { + } } -composite { +arc { object { x=100 - y=177 + y=180 width=25 - height=21 - } - "composite name"="" - vis="static" - chan="" - children { - arc { - object { - x=100 - y=180 - width=25 - height=18 - } - "basic attribute" { - clr=33 - fill="outline" - width=2 - } - begin=5760 - path=11520 - } - polyline { - object { - x=107 - y=177 - width=8 - height=10 - } - "basic attribute" { - clr=33 - fill="outline" - width=2 - } - points { - (108,178) - (114,181) - (108,186) - } - } + height=18 + } + "basic attribute" { + clr=33 + fill="outline" + width=2 + } + begin=5760 + path=11520 +} +polyline { + object { + x=107 + y=177 + width=8 + height=10 + } + "basic attribute" { + clr=33 + fill="outline" + width=2 + } + points { + (108,178) + (114,181) + (108,186) } } polyline { @@ -990,11 +983,13 @@ rectangle { height=18 } monitor { - chan="$(P)KohzuSeqMsg1SI" + chan="$(P)$(MONO)SeqMsg1" clr=14 bclr=1 } align="horiz. centered" + limits { + } } polyline { object { @@ -1021,11 +1016,13 @@ polyline { height=18 } monitor { - chan="$(P)KohzuSeqMsg2SI" + chan="$(P)$(MONO)SeqMsg2" clr=14 bclr=1 } align="horiz. centered" + limits { + } } "message button" { object { @@ -1035,7 +1032,7 @@ polyline { height=34 } control { - chan="$(P)KohzuOperAckBO" + chan="$(P)$(MONO)OperAck" clr=14 bclr=51 } @@ -1050,7 +1047,7 @@ menu { height=16 } control { - chan="$(P)BraggTypeMO" + chan="$(P)$(MONO)Type" clr=14 bclr=51 } @@ -1066,7 +1063,7 @@ text { clr=14 fill="outline" } - textix="Y2" + textix="Y" align="horiz. centered" } "text update" { @@ -1077,11 +1074,13 @@ text { height=13 } monitor { - chan="$(P)KohzuThetaPvSI" + chan="$(P)$(MONO)ThetaPv" clr=14 bclr=1 } align="horiz. centered" + limits { + } } "text update" { object { @@ -1091,11 +1090,13 @@ text { height=13 } monitor { - chan="$(P)KohzuY2PvSI" + chan="$(P)$(MONO)YPv" clr=14 bclr=1 } align="horiz. centered" + limits { + } } "text update" { object { @@ -1105,11 +1106,13 @@ text { height=13 } monitor { - chan="$(P)KohzuZ2PvSI" + chan="$(P)$(MONO)ZPv" clr=14 bclr=1 } align="horiz. centered" + limits { + } } text { object { @@ -1132,11 +1135,13 @@ text { height=13 } monitor { - chan="$(P)KohzuZ2VelAI" + chan="$(P)$(MONO)ZVel" clr=14 bclr=1 } align="horiz. centered" + limits { + } } "text update" { object { @@ -1146,11 +1151,13 @@ text { height=13 } monitor { - chan="$(P)KohzuY2VelAI" + chan="$(P)$(MONO)YVel" clr=14 bclr=1 } align="horiz. centered" + limits { + } } "text update" { object { @@ -1160,11 +1167,13 @@ text { height=13 } monitor { - chan="$(P)KohzuThetaVelAI" + chan="$(P)$(MONO)ThetaVel" clr=14 bclr=1 } align="horiz. centered" + limits { + } } "choice button" { object { @@ -1174,52 +1183,11 @@ text { height=65 } control { - chan="$(P)KohzuMode2MO.VAL" + chan="$(P)$(MONO)Mode2.VAL" clr=14 bclr=51 } } -composite { - object { - x=125 - y=230 - width=120 - height=16 - } - "composite name"="" - vis="static" - chan="" - children { - text { - object { - x=125 - y=230 - width=120 - height=9 - } - "basic attribute" { - clr=13 - fill="outline" - } - textix="Channel Cut inhibits" - align="horiz. centered" - } - text { - object { - x=125 - y=237 - width=120 - height=9 - } - "basic attribute" { - clr=13 - fill="outline" - } - textix="Y2 and Z2 motors" - align="horiz. centered" - } - } -} "text update" { object { x=307 @@ -1228,11 +1196,13 @@ composite { height=13 } monitor { - chan="$(P)KohzuZ2CmdAO" + chan="$(P)$(MONO)ZCmd" clr=14 bclr=1 } align="horiz. centered" + limits { + } } "text update" { object { @@ -1242,11 +1212,13 @@ composite { height=13 } monitor { - chan="$(P)KohzuY2CmdAO" + chan="$(P)$(MONO)YCmd" clr=14 bclr=1 } align="horiz. centered" + limits { + } } "text update" { object { @@ -1256,11 +1228,13 @@ composite { height=13 } monitor { - chan="$(P)KohzuThetaCmdAO" + chan="$(P)$(MONO)ThetaCmd" clr=14 bclr=1 } align="horiz. centered" + limits { + } } rectangle { object { @@ -1276,7 +1250,7 @@ rectangle { } "dynamic attribute" { vis="if zero" - chan="$(P)KohzuZ2DmovBI" + chan="$(P)$(MONO)ZDmov" } } rectangle { @@ -1293,7 +1267,7 @@ rectangle { } "dynamic attribute" { vis="if zero" - chan="$(P)KohzuThetaDmovBI" + chan="$(P)$(MONO)ThetaDmov" } } rectangle { @@ -1310,7 +1284,7 @@ rectangle { } "dynamic attribute" { vis="if zero" - chan="$(P)KohzuY2DmovBI" + chan="$(P)$(MONO)YDmov" } } "choice button" { @@ -1321,7 +1295,7 @@ rectangle { height=22 } control { - chan="$(P)KohzuUseSetBO.VAL" + chan="$(P)$(MONO)UseSet.VAL" clr=14 bclr=51 } @@ -1340,23 +1314,61 @@ text { } textix="Calibration:" } +text { + object { + x=445 + y=230 + width=88 + height=22 + } + "basic attribute" { + clr=50 + fill="outline" + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(MONO)Moving" + } + textix="Moving" + align="horiz. centered" +} +text { + object { + x=445 + y=230 + width=88 + height=22 + } + "basic attribute" { + clr=14 + fill="outline" + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(MONO)Moving" + } + textix="Done" + align="horiz. centered" +} "text entry" { object { - x=182 - y=264 + x=181 + y=263 width=60 height=20 } control { - chan="$(P)Kohzu_yOffsetAO.VAL" + chan="$(P)$(MONO)yOffset" clr=14 bclr=51 } + limits { + } } text { object { - x=120 - y=267 + x=119 + y=266 width=65 height=14 } @@ -1366,3 +1378,58 @@ text { } textix="y offset:" } +text { + object { + x=107 + y=230 + width=150 + height=9 + } + "basic attribute" { + clr=13 + fill="outline" + } + textix="Channel Cut inhibits" + align="horiz. centered" +} +text { + object { + x=108 + y=237 + width=150 + height=9 + } + "basic attribute" { + clr=13 + fill="outline" + } + textix="Y1 and Z2 motors" + align="horiz. centered" +} +text { + object { + x=21 + y=344 + width=100 + height=14 + } + "basic attribute" { + clr=13 + fill="outline" + } + textix="Speed Control:" +} +"choice button" { + object { + x=126 + y=343 + width=150 + height=22 + } + control { + chan="$(P)$(MONO)SpeedCtrl" + clr=14 + bclr=51 + } + stacking="column" +} diff --git a/opticsApp/op/adl/kohzuSeqCtl_soft_tiny.adl b/opticsApp/op/adl/kohzuSeqCtl_soft_tiny.adl new file mode 100644 index 0000000..96cd689 --- /dev/null +++ b/opticsApp/op/adl/kohzuSeqCtl_soft_tiny.adl @@ -0,0 +1,499 @@ + +file { + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/kohzuSeqCtl_soft_tiny.adl" + version=030107 +} +display { + object { + x=300 + y=258 + width=215 + height=140 + } + clr=14 + bclr=3 + cmap="" + gridSpacing=5 + gridOn=0 + snapToGrid=0 +} +"color map" { + ncolors=65 + colors { + ffffff, + ececec, + dadada, + c8c8c8, + bbbbbb, + aeaeae, + 9e9e9e, + 919191, + 858585, + 787878, + 696969, + 5a5a5a, + 464646, + 2d2d2d, + 000000, + 00d800, + 1ebb00, + 339900, + 2d7f00, + 216c00, + fd0000, + de1309, + be190b, + a01207, + 820400, + 5893ff, + 597ee1, + 4b6ec7, + 3a5eab, + 27548d, + fbf34a, + f9da3c, + eeb62b, + e19015, + cd6100, + ffb0ff, + d67fe2, + ae4ebc, + 8b1a96, + 610a75, + a4aaff, + 8793e2, + 6a73c1, + 4d52a4, + 343386, + c7bb6d, + b79d5c, + a47e3c, + 7d5627, + 58340f, + 99ffff, + 73dfff, + 4ea5f9, + 2a63e4, + 0a00b8, + ebf1b5, + d4db9d, + bbc187, + a6a462, + 8b8239, + 73ff6b, + 52da3b, + 3cb420, + 289315, + 1a7309, + } +} +"text update" { + object { + x=0 + y=32 + width=105 + height=20 + } + monitor { + chan="$(P)$(MONO)E.RBV" + clr=54 + bclr=3 + } + limits { + } +} +"text entry" { + object { + x=0 + y=48 + width=105 + height=25 + } + control { + chan="$(P)$(MONO)E.VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text update" { + object { + x=0 + y=19 + width=105 + height=15 + } + monitor { + chan="$(P)$(MONO)E.HLM" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text update" { + object { + x=0 + y=71 + width=105 + height=15 + } + monitor { + chan="$(P)$(MONO)E.LLM" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +text { + object { + x=0 + y=0 + width=105 + height=20 + } + "basic attribute" { + clr=14 + fill="outline" + } + textix="E (keV)" + align="horiz. centered" +} +"text entry" { + object { + x=20 + y=84 + width=65 + height=20 + } + control { + chan="$(P)$(MONO)E.TWV" + clr=14 + bclr=51 + } + limits { + } +} +"message button" { + object { + x=0 + y=84 + width=20 + height=20 + } + control { + chan="$(P)$(MONO)E.TWR" + clr=14 + bclr=51 + } + label="<" + press_msg="1" +} +"message button" { + object { + x=85 + y=84 + width=20 + height=20 + } + control { + chan="$(P)$(MONO)E.TWF" + clr=14 + bclr=51 + } + label=">" + press_msg="1" +} +rectangle { + object { + x=0 + y=105 + width=105 + height=32 + } + "basic attribute" { + clr=14 + } +} +text { + object { + x=0 + y=105 + width=105 + height=10 + } + "basic attribute" { + clr=15 + } + textix="SCAN CONTROL" + align="horiz. centered" +} +"message button" { + object { + x=64 + y=115 + width=40 + height=20 + } + control { + chan="$(P)allstop.VAL" + clr=30 + bclr=20 + } + label="Abort" + press_msg="1" +} +"message button" { + object { + x=43 + y=115 + width=20 + height=20 + } + control { + chan="$(P)$(MONO)E:scanParms.GO" + clr=14 + bclr=51 + } + label="Go" + press_msg="1" +} +"message button" { + object { + x=22 + y=115 + width=20 + height=20 + } + control { + chan="$(P)$(MONO)E:scanParms.LOAD" + clr=14 + bclr=51 + } + label="Ld" + press_msg="1" +} +"related display" { + object { + x=1 + y=115 + width=20 + height=20 + } + display[5] { + label="Energy-scan parameters" + name="scanParms.adl" + args="P=$(P),Q=BraggE,PV=BraggE" + } + clr=14 + bclr=51 +} +text { + object { + x=110 + y=0 + width=105 + height=20 + } + "basic attribute" { + clr=14 + fill="outline" + } + textix="TH (deg.)" + align="horiz. centered" +} +"text update" { + object { + x=110 + y=32 + width=105 + height=20 + } + monitor { + chan="$(P)$(MONO)Theta.RBV" + clr=54 + bclr=3 + } + limits { + } +} +"text entry" { + object { + x=110 + y=48 + width=105 + height=25 + } + control { + chan="$(P)$(MONO)Theta.VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text update" { + object { + x=110 + y=19 + width=105 + height=15 + } + monitor { + chan="$(P)$(MONO)Theta.HLM" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text update" { + object { + x=110 + y=71 + width=105 + height=15 + } + monitor { + chan="$(P)$(MONO)Theta.LLM" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"message button" { + object { + x=195 + y=84 + width=20 + height=20 + } + control { + chan="$(P)$(MONO)Theta.TWF" + clr=14 + bclr=51 + } + label=">" + press_msg="1" +} +"text entry" { + object { + x=130 + y=84 + width=65 + height=20 + } + control { + chan="$(P)$(MONO)Theta.TWV" + clr=14 + bclr=51 + } + limits { + } +} +"message button" { + object { + x=110 + y=84 + width=20 + height=20 + } + control { + chan="$(P)$(MONO)Theta.TWR" + clr=14 + bclr=51 + } + label="<" + press_msg="1" +} +rectangle { + object { + x=110 + y=105 + width=105 + height=32 + } + "basic attribute" { + clr=14 + } +} +text { + object { + x=110 + y=105 + width=105 + height=10 + } + "basic attribute" { + clr=15 + } + textix="SCAN CONTROL" + align="horiz. centered" +} +"message button" { + object { + x=174 + y=115 + width=40 + height=20 + } + control { + chan="$(P)allstop.VAL" + clr=30 + bclr=20 + } + label="Abort" + press_msg="1" +} +"message button" { + object { + x=153 + y=115 + width=20 + height=20 + } + control { + chan="$(P)$(MONO)Theta:scanParms.GO" + clr=14 + bclr=51 + } + label="Go" + press_msg="1" +} +"message button" { + object { + x=132 + y=115 + width=20 + height=20 + } + control { + chan="$(P)$(MONO)Theta:scanParms.LOAD" + clr=14 + bclr=51 + } + label="Ld" + press_msg="1" +} +"related display" { + object { + x=111 + y=115 + width=20 + height=20 + } + display[6] { + label="Theta-scan parameters" + name="scanParms.adl" + args="P=$(P),Q=BraggTheta,PV=BraggTheta" + } + clr=14 + bclr=51 +} diff --git a/opticsApp/op/adl/kohzuSeqCtl_tiny.adl b/opticsApp/op/adl/kohzuSeqCtl_tiny.adl index 4451b75..7a39b4a 100644 --- a/opticsApp/op/adl/kohzuSeqCtl_tiny.adl +++ b/opticsApp/op/adl/kohzuSeqCtl_tiny.adl @@ -1,7 +1,7 @@ file { - name="/home/oxygen4/MOONEY/epics/3.13.0/xxx2/xxxApp/op/adl/kohzuSeqCtl_tiny_3.0.adl" - version=020304 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/kohzuSeqCtl_tiny.adl" + version=030111 } display { object { @@ -99,6 +99,8 @@ display { clr=54 bclr=3 } + limits { + } } "text entry" { object { @@ -112,6 +114,8 @@ display { clr=14 bclr=51 } + limits { + } } "text update" { object { @@ -126,6 +130,8 @@ display { bclr=3 } align="horiz. centered" + limits { + } } "text update" { object { @@ -140,6 +146,8 @@ display { bclr=3 } align="horiz. centered" + limits { + } } text { object { @@ -167,6 +175,8 @@ text { clr=14 bclr=51 } + limits { + } } "message button" { object { @@ -282,211 +292,208 @@ text { clr=14 bclr=51 } -composite { +text { object { x=110 y=0 width=105 - height=137 - } - "composite name"="" - vis="static" - chan="" - children { - text { - object { - x=110 - y=0 - width=105 - height=20 - } - "basic attribute" { - clr=14 - fill="outline" - } - textix="TH (deg.)" - align="horiz. centered" - } - "text update" { - object { - x=110 - y=32 - width=105 - height=20 - } - monitor { - chan="$(P)BraggThetaRdbkAO" - clr=54 - bclr=3 - } - } - "text entry" { - object { - x=110 - y=48 - width=105 - height=25 - } - control { - chan="$(P)BraggThetaAO.VAL" - clr=14 - bclr=51 - } - } - "text update" { - object { - x=110 - y=19 - width=105 - height=15 - } - monitor { - chan="$(P)BraggThetaAO.DRVH" - clr=54 - bclr=3 - } - align="horiz. centered" - } - "text update" { - object { - x=110 - y=71 - width=105 - height=15 - } - monitor { - chan="$(P)BraggThetaAO.DRVL" - clr=54 - bclr=3 - } - align="horiz. centered" - } - "message button" { - object { - x=195 - y=84 - width=20 - height=20 - } - control { - chan="$(P)BraggThetaIncBO.VAL" - clr=14 - bclr=51 - } - label=">" - press_msg="1" - } - "text entry" { - object { - x=130 - y=84 - width=65 - height=20 - } - control { - chan="$(P)BraggThetaTweakAI" - clr=14 - bclr=51 - } - } - "message button" { - object { - x=110 - y=84 - width=20 - height=20 - } - control { - chan="$(P)BraggThetaDecBO.VAL" - clr=14 - bclr=51 - } - label="<" - press_msg="1" - } - rectangle { - object { - x=110 - y=105 - width=105 - height=32 - } - "basic attribute" { - clr=14 - } - } - text { - object { - x=110 - y=105 - width=105 - height=10 - } - "basic attribute" { - clr=15 - } - textix="SCAN CONTROL" - align="horiz. centered" - } - "message button" { - object { - x=174 - y=115 - width=40 - height=20 - } - control { - chan="$(P)allstop.VAL" - clr=30 - bclr=20 - } - label="Abort" - press_msg="1" - } - "message button" { - object { - x=153 - y=115 - width=20 - height=20 - } - control { - chan="$(P)BraggTheta:scanParms.GO" - clr=14 - bclr=51 - } - label="Go" - press_msg="1" - } - "message button" { - object { - x=132 - y=115 - width=20 - height=20 - } - control { - chan="$(P)BraggTheta:scanParms.LOAD" - clr=14 - bclr=51 - } - label="Ld" - press_msg="1" - } - "related display" { - object { - x=111 - y=115 - width=20 - height=20 - } - display[6] { - label="Theta-scan parameters" - name="scanParms.adl" - args="P=$(P),Q=BraggTheta,PV=BraggThetaAO" - } - clr=14 - bclr=51 - } + height=20 + } + "basic attribute" { + clr=14 + fill="outline" + } + textix="TH (deg.)" + align="horiz. centered" +} +"text update" { + object { + x=110 + y=32 + width=105 + height=20 + } + monitor { + chan="$(P)BraggThetaRdbkAO" + clr=54 + bclr=3 + } + limits { + } +} +"text entry" { + object { + x=110 + y=48 + width=105 + height=25 + } + control { + chan="$(P)BraggThetaAO.VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text update" { + object { + x=110 + y=19 + width=105 + height=15 + } + monitor { + chan="$(P)BraggThetaAO.DRVH" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text update" { + object { + x=110 + y=71 + width=105 + height=15 + } + monitor { + chan="$(P)BraggThetaAO.DRVL" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"message button" { + object { + x=195 + y=84 + width=20 + height=20 + } + control { + chan="$(P)BraggThetaIncBO.VAL" + clr=14 + bclr=51 + } + label=">" + press_msg="1" +} +"text entry" { + object { + x=130 + y=84 + width=65 + height=20 + } + control { + chan="$(P)BraggThetaTweakAI" + clr=14 + bclr=51 + } + limits { + } +} +"message button" { + object { + x=110 + y=84 + width=20 + height=20 + } + control { + chan="$(P)BraggThetaDecBO.VAL" + clr=14 + bclr=51 + } + label="<" + press_msg="1" +} +rectangle { + object { + x=110 + y=105 + width=105 + height=32 + } + "basic attribute" { + clr=14 + } +} +text { + object { + x=110 + y=105 + width=105 + height=10 + } + "basic attribute" { + clr=15 + } + textix="SCAN CONTROL" + align="horiz. centered" +} +"message button" { + object { + x=174 + y=115 + width=40 + height=20 + } + control { + chan="$(P)allstop.VAL" + clr=30 + bclr=20 } + label="Abort" + press_msg="1" +} +"message button" { + object { + x=153 + y=115 + width=20 + height=20 + } + control { + chan="$(P)BraggTheta:scanParms.GO" + clr=14 + bclr=51 + } + label="Go" + press_msg="1" +} +"message button" { + object { + x=132 + y=115 + width=20 + height=20 + } + control { + chan="$(P)BraggTheta:scanParms.LOAD" + clr=14 + bclr=51 + } + label="Ld" + press_msg="1" +} +"related display" { + object { + x=111 + y=115 + width=20 + height=20 + } + display[6] { + label="Theta-scan parameters" + name="scanParms.adl" + args="P=$(P),Q=BraggTheta,PV=BraggThetaAO" + } + clr=14 + bclr=51 } diff --git a/opticsApp/op/adl/ml_monoGraphic.adl b/opticsApp/op/adl/ml_monoGraphic.adl index 9df7e75..f17830c 100644 --- a/opticsApp/op/adl/ml_monoGraphic.adl +++ b/opticsApp/op/adl/ml_monoGraphic.adl @@ -1,7 +1,7 @@ file { - name="/net/s7dserv/xorApps/epics/synApps_5_2_1/ioc/7bma1/7bma1App/op/adl/ml_monoGraphic.adl" - version=030003 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/ml_monoGraphic.adl" + version=030111 } display { object { @@ -274,96 +274,85 @@ rectangle { bclr=17 label="-Z1" } -composite { +rectangle { + object { + x=235 + y=190 + width=64 + height=38 + } + "basic attribute" { + clr=0 + } +} +text { + object { + x=237 + y=192 + width=60 + height=10 + } + "basic attribute" { + clr=14 + } + textix="$(P)$(mY1)" +} +"text update" { + object { + x=237 + y=202 + width=60 + height=10 + } + monitor { + chan="$(P)$(mY1).RBV" + clr=53 + bclr=2 + } + limits { + } +} +"text entry" { + object { + x=237 + y=212 + width=60 + height=15 + } + control { + chan="$(P)$(mY1).VAL" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { + object { + x=235 + y=190 + width=64 + height=38 + } + "basic attribute" { + clr=14 + fill="outline" + } +} +"related display" { object { x=235 y=170 width=64 - height=58 - } - "composite name"="" - children { - rectangle { - object { - x=235 - y=190 - width=64 - height=38 - } - "basic attribute" { - clr=0 - } - } - text { - object { - x=237 - y=192 - width=60 - height=10 - } - "basic attribute" { - clr=14 - } - textix="$(P)$(mY1)" - } - "text update" { - object { - x=237 - y=202 - width=60 - height=10 - } - monitor { - chan="$(P)$(mY1).RBV" - clr=53 - bclr=2 - } - limits { - } - } - "text entry" { - object { - x=237 - y=212 - width=60 - height=15 - } - control { - chan="$(P)$(mY1).VAL" - clr=14 - bclr=51 - } - limits { - } - } - rectangle { - object { - x=235 - y=190 - width=64 - height=38 - } - "basic attribute" { - clr=14 - fill="outline" - } - } - "related display" { - object { - x=235 - y=170 - width=64 - height=20 - } - display[0] { - name="motorx.adl" - args="P=$(P),M=$(mY1)" - } - clr=0 - bclr=17 - label="-Y1" - } + height=20 } + display[0] { + name="motorx.adl" + args="P=$(P),M=$(mY1)" + } + clr=0 + bclr=17 + label="-Y1" } rectangle { object { @@ -525,289 +514,245 @@ rectangle { bclr=17 label="-Phi2" } -composite { +"related display" { object { x=15 y=170 width=64 - height=58 - } - "composite name"="" - children { - "related display" { - object { - x=15 - y=170 - width=64 - height=20 - } - display[0] { - name="motorx.adl" - args="P=$(P),M=$(mB)" - } - clr=0 - bclr=17 - label="-Bend" - } - composite { - object { - x=15 - y=190 - width=64 - height=38 - } - "composite name"="" - children { - rectangle { - object { - x=15 - y=190 - width=64 - height=38 - } - "basic attribute" { - clr=0 - } - } - text { - object { - x=17 - y=192 - width=60 - height=10 - } - "basic attribute" { - clr=14 - } - textix="$(P)$(mB)" - } - "text update" { - object { - x=17 - y=202 - width=60 - height=10 - } - monitor { - chan="$(P)$(mB).RBV" - clr=53 - bclr=2 - } - limits { - } - } - "text entry" { - object { - x=17 - y=212 - width=60 - height=15 - } - control { - chan="$(P)$(mB).VAL" - clr=14 - bclr=51 - } - limits { - } - } - rectangle { - object { - x=15 - y=190 - width=64 - height=38 - } - "basic attribute" { - clr=14 - fill="outline" - } - } - } - } - } -} -composite { + height=20 + } + display[0] { + name="motorx.adl" + args="P=$(P),M=$(mB)" + } + clr=0 + bclr=17 + label="-Bend" +} +rectangle { + object { + x=15 + y=190 + width=64 + height=38 + } + "basic attribute" { + clr=0 + } +} +text { + object { + x=17 + y=192 + width=60 + height=10 + } + "basic attribute" { + clr=14 + } + textix="$(P)$(mB)" +} +"text update" { + object { + x=17 + y=202 + width=60 + height=10 + } + monitor { + chan="$(P)$(mB).RBV" + clr=53 + bclr=2 + } + limits { + } +} +"text entry" { + object { + x=17 + y=212 + width=60 + height=15 + } + control { + chan="$(P)$(mB).VAL" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { + object { + x=15 + y=190 + width=64 + height=38 + } + "basic attribute" { + clr=14 + fill="outline" + } +} +rectangle { + object { + x=90 + y=190 + width=64 + height=38 + } + "basic attribute" { + clr=0 + } +} +text { + object { + x=92 + y=192 + width=60 + height=10 + } + "basic attribute" { + clr=14 + } + textix="$(P)$(mY2)" +} +"text update" { + object { + x=92 + y=202 + width=60 + height=10 + } + monitor { + chan="$(P)$(mY2).RBV" + clr=53 + bclr=2 + } + limits { + } +} +"text entry" { + object { + x=92 + y=212 + width=60 + height=15 + } + control { + chan="$(P)$(mY2).VAL" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { + object { + x=90 + y=190 + width=64 + height=38 + } + "basic attribute" { + clr=14 + fill="outline" + } +} +"related display" { object { x=90 y=170 width=64 - height=58 - } - "composite name"="" - children { - rectangle { - object { - x=90 - y=190 - width=64 - height=38 - } - "basic attribute" { - clr=0 - } - } - text { - object { - x=92 - y=192 - width=60 - height=10 - } - "basic attribute" { - clr=14 - } - textix="$(P)$(mY2)" - } - "text update" { - object { - x=92 - y=202 - width=60 - height=10 - } - monitor { - chan="$(P)$(mY2).RBV" - clr=53 - bclr=2 - } - limits { - } - } - "text entry" { - object { - x=92 - y=212 - width=60 - height=15 - } - control { - chan="$(P)$(mY2).VAL" - clr=14 - bclr=51 - } - limits { - } - } - rectangle { - object { - x=90 - y=190 - width=64 - height=38 - } - "basic attribute" { - clr=14 - fill="outline" - } - } - "related display" { - object { - x=90 - y=170 - width=64 - height=20 - } - display[0] { - name="motorx.adl" - args="P=$(P),M=$(mY2)" - } - clr=0 - bclr=17 - label="-Y2" - } - } -} -composite { + height=20 + } + display[0] { + name="motorx.adl" + args="P=$(P),M=$(mY2)" + } + clr=0 + bclr=17 + label="-Y2" +} +rectangle { + object { + x=90 + y=255 + width=64 + height=38 + } + "basic attribute" { + clr=0 + } +} +text { + object { + x=92 + y=257 + width=60 + height=10 + } + "basic attribute" { + clr=14 + } + textix="$(P)$(mZ2)" +} +"text update" { + object { + x=92 + y=267 + width=60 + height=10 + } + monitor { + chan="$(P)$(mZ2).RBV" + clr=53 + bclr=2 + } + limits { + } +} +"text entry" { + object { + x=92 + y=277 + width=60 + height=15 + } + control { + chan="$(P)$(mZ2).VAL" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { + object { + x=90 + y=255 + width=64 + height=38 + } + "basic attribute" { + clr=14 + fill="outline" + } +} +"related display" { object { x=90 y=235 width=64 - height=58 - } - "composite name"="" - children { - rectangle { - object { - x=90 - y=255 - width=64 - height=38 - } - "basic attribute" { - clr=0 - } - } - text { - object { - x=92 - y=257 - width=60 - height=10 - } - "basic attribute" { - clr=14 - } - textix="$(P)$(mZ2)" - } - "text update" { - object { - x=92 - y=267 - width=60 - height=10 - } - monitor { - chan="$(P)$(mZ2).RBV" - clr=53 - bclr=2 - } - limits { - } - } - "text entry" { - object { - x=92 - y=277 - width=60 - height=15 - } - control { - chan="$(P)$(mZ2).VAL" - clr=14 - bclr=51 - } - limits { - } - } - rectangle { - object { - x=90 - y=255 - width=64 - height=38 - } - "basic attribute" { - clr=14 - fill="outline" - } - } - "related display" { - object { - x=90 - y=235 - width=64 - height=20 - } - display[0] { - name="motorx.adl" - args="P=$(P),M=$(mZ2)" - } - clr=0 - bclr=17 - label="-Z2" - } + height=20 + } + display[0] { + name="motorx.adl" + args="P=$(P),M=$(mZ2)" } + clr=0 + bclr=17 + label="-Z2" } rectangle { object { @@ -969,96 +914,85 @@ rectangle { bclr=17 label="-X2" } -composite { +rectangle { + object { + x=63 + y=104 + width=64 + height=38 + } + "basic attribute" { + clr=0 + } +} +text { + object { + x=65 + y=106 + width=60 + height=10 + } + "basic attribute" { + clr=14 + } + textix="$(P)$(mT2)" +} +"text update" { + object { + x=65 + y=116 + width=60 + height=10 + } + monitor { + chan="$(P)$(mT2).RBV" + clr=53 + bclr=2 + } + limits { + } +} +"text entry" { + object { + x=65 + y=126 + width=60 + height=15 + } + control { + chan="$(P)$(mT2).VAL" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { + object { + x=63 + y=104 + width=64 + height=38 + } + "basic attribute" { + clr=14 + fill="outline" + } +} +"related display" { object { x=63 y=84 width=64 - height=58 - } - "composite name"="" - children { - rectangle { - object { - x=63 - y=104 - width=64 - height=38 - } - "basic attribute" { - clr=0 - } - } - text { - object { - x=65 - y=106 - width=60 - height=10 - } - "basic attribute" { - clr=14 - } - textix="$(P)$(mT2)" - } - "text update" { - object { - x=65 - y=116 - width=60 - height=10 - } - monitor { - chan="$(P)$(mT2).RBV" - clr=53 - bclr=2 - } - limits { - } - } - "text entry" { - object { - x=65 - y=126 - width=60 - height=15 - } - control { - chan="$(P)$(mT2).VAL" - clr=14 - bclr=51 - } - limits { - } - } - rectangle { - object { - x=63 - y=104 - width=64 - height=38 - } - "basic attribute" { - clr=14 - fill="outline" - } - } - "related display" { - object { - x=63 - y=84 - width=64 - height=20 - } - display[0] { - name="motorx.adl" - args="P=$(P),M=$(mT2)" - } - clr=0 - bclr=17 - label="-Theta2" - } + height=20 + } + display[0] { + name="motorx.adl" + args="P=$(P),M=$(mT2)" } + clr=0 + bclr=17 + label="-Theta2" } rectangle { object { @@ -1140,94 +1074,83 @@ rectangle { bclr=17 label="-X1" } -composite { +rectangle { + object { + x=261 + y=67 + width=64 + height=38 + } + "basic attribute" { + clr=0 + } +} +text { + object { + x=263 + y=69 + width=60 + height=10 + } + "basic attribute" { + clr=14 + } + textix="$(P)$(mT1)" +} +"text update" { + object { + x=263 + y=79 + width=60 + height=10 + } + monitor { + chan="$(P)$(mT1).RBV" + clr=53 + bclr=2 + } + limits { + } +} +"text entry" { + object { + x=263 + y=89 + width=60 + height=15 + } + control { + chan="$(P)$(mT1).VAL" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { + object { + x=261 + y=67 + width=64 + height=38 + } + "basic attribute" { + clr=14 + fill="outline" + } +} +"related display" { object { x=261 y=47 width=64 - height=58 - } - "composite name"="" - children { - rectangle { - object { - x=261 - y=67 - width=64 - height=38 - } - "basic attribute" { - clr=0 - } - } - text { - object { - x=263 - y=69 - width=60 - height=10 - } - "basic attribute" { - clr=14 - } - textix="$(P)$(mT1)" - } - "text update" { - object { - x=263 - y=79 - width=60 - height=10 - } - monitor { - chan="$(P)$(mT1).RBV" - clr=53 - bclr=2 - } - limits { - } - } - "text entry" { - object { - x=263 - y=89 - width=60 - height=15 - } - control { - chan="$(P)$(mT1).VAL" - clr=14 - bclr=51 - } - limits { - } - } - rectangle { - object { - x=261 - y=67 - width=64 - height=38 - } - "basic attribute" { - clr=14 - fill="outline" - } - } - "related display" { - object { - x=261 - y=47 - width=64 - height=20 - } - display[0] { - name="motorx.adl" - args="P=$(P),M=$(mT1)" - } - clr=0 - bclr=17 - label="-Theta1" - } + height=20 + } + display[0] { + name="motorx.adl" + args="P=$(P),M=$(mT1)" } + clr=0 + bclr=17 + label="-Theta1" } diff --git a/opticsApp/op/adl/ml_monoSeqCtl.adl b/opticsApp/op/adl/ml_monoSeqCtl.adl index 298c390..0c81a86 100644 --- a/opticsApp/op/adl/ml_monoSeqCtl.adl +++ b/opticsApp/op/adl/ml_monoSeqCtl.adl @@ -1,7 +1,7 @@ file { name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/ml_monoSeqCtl.adl" - version=030103 + version=030111 } display { object { @@ -359,70 +359,59 @@ polygon { (275,55) } } -composite { +text { + object { + x=431 + y=89 + width=100 + height=26 + } + "basic attribute" { + clr=54 + fill="outline" + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)ml_monoMoving" + } + textix="Moving" + align="horiz. centered" +} +text { + object { + x=432 + y=90 + width=100 + height=26 + } + "basic attribute" { + clr=54 + fill="outline" + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)ml_monoMoving" + } + textix="Moving" + align="horiz. centered" +} +text { object { x=430 y=88 - width=102 - height=28 - } - "composite name"="" - children { - text { - object { - x=431 - y=89 - width=100 - height=26 - } - "basic attribute" { - clr=54 - fill="outline" - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)ml_monoMoving" - } - textix="Moving" - align="horiz. centered" - } - text { - object { - x=432 - y=90 - width=100 - height=26 - } - "basic attribute" { - clr=54 - fill="outline" - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)ml_monoMoving" - } - textix="Moving" - align="horiz. centered" - } - text { - object { - x=430 - y=88 - width=100 - height=26 - } - "basic attribute" { - clr=50 - fill="outline" - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)ml_monoMoving" - } - textix="Moving" - align="horiz. centered" - } + width=100 + height=26 + } + "basic attribute" { + clr=50 + fill="outline" } + "dynamic attribute" { + vis="if not zero" + chan="$(P)ml_monoMoving" + } + textix="Moving" + align="horiz. centered" } "choice button" { object { diff --git a/opticsApp/op/adl/ml_monoSeqCtl_All.adl b/opticsApp/op/adl/ml_monoSeqCtl_All.adl index 395025c..cc1878a 100644 --- a/opticsApp/op/adl/ml_monoSeqCtl_All.adl +++ b/opticsApp/op/adl/ml_monoSeqCtl_All.adl @@ -1,7 +1,7 @@ file { name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/ml_monoSeqCtl_All.adl" - version=030103 + version=030111 } display { object { @@ -643,48 +643,37 @@ rectangle { width=2 } } -composite { +arc { object { x=100 - y=177 + y=180 width=25 - height=21 - } - "composite name"="" - children { - arc { - object { - x=100 - y=180 - width=25 - height=18 - } - "basic attribute" { - clr=33 - fill="outline" - width=2 - } - begin=5760 - path=11520 - } - polyline { - object { - x=107 - y=177 - width=8 - height=10 - } - "basic attribute" { - clr=33 - fill="outline" - width=2 - } - points { - (108,178) - (114,181) - (108,186) - } - } + height=18 + } + "basic attribute" { + clr=33 + fill="outline" + width=2 + } + begin=5760 + path=11520 +} +polyline { + object { + x=107 + y=177 + width=8 + height=10 + } + "basic attribute" { + clr=33 + fill="outline" + width=2 + } + points { + (108,178) + (114,181) + (108,186) } } polyline { diff --git a/opticsApp/op/adl/ml_monoSeqCtl_tiny.adl b/opticsApp/op/adl/ml_monoSeqCtl_tiny.adl index a7dfbaf..49933fa 100644 --- a/opticsApp/op/adl/ml_monoSeqCtl_tiny.adl +++ b/opticsApp/op/adl/ml_monoSeqCtl_tiny.adl @@ -1,7 +1,7 @@ file { - name="/home/oxygen4/MOONEY/epics/3.13.0/xxx2/xxxApp/op/adl/ml_monoSeqCtl_tiny_3.0.adl" - version=020304 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/ml_monoSeqCtl_tiny.adl" + version=030111 } display { object { @@ -99,6 +99,8 @@ display { clr=54 bclr=3 } + limits { + } } "text entry" { object { @@ -112,6 +114,8 @@ display { clr=14 bclr=51 } + limits { + } } "text update" { object { @@ -126,6 +130,8 @@ display { bclr=3 } align="horiz. centered" + limits { + } } "text update" { object { @@ -140,6 +146,8 @@ display { bclr=3 } align="horiz. centered" + limits { + } } text { object { @@ -167,6 +175,8 @@ text { clr=14 bclr=51 } + limits { + } } "message button" { object { @@ -282,211 +292,208 @@ text { clr=14 bclr=51 } -composite { +text { object { x=110 y=0 width=105 - height=137 - } - "composite name"="" - vis="static" - chan="" - children { - text { - object { - x=110 - y=0 - width=105 - height=20 - } - "basic attribute" { - clr=14 - fill="outline" - } - textix="TH (deg.)" - align="horiz. centered" - } - "text update" { - object { - x=110 - y=32 - width=105 - height=20 - } - monitor { - chan="$(P)ml_monoThetaRdbk" - clr=54 - bclr=3 - } - } - "text entry" { - object { - x=110 - y=48 - width=105 - height=25 - } - control { - chan="$(P)ml_monoTheta.VAL" - clr=14 - bclr=51 - } - } - "text update" { - object { - x=110 - y=19 - width=105 - height=15 - } - monitor { - chan="$(P)ml_monoTheta.DRVH" - clr=54 - bclr=3 - } - align="horiz. centered" - } - "text update" { - object { - x=110 - y=71 - width=105 - height=15 - } - monitor { - chan="$(P)ml_monoTheta.DRVL" - clr=54 - bclr=3 - } - align="horiz. centered" - } - "message button" { - object { - x=195 - y=84 - width=20 - height=20 - } - control { - chan="$(P)ml_monoThetaInc.VAL" - clr=14 - bclr=51 - } - label=">" - press_msg="1" - } - "text entry" { - object { - x=130 - y=84 - width=65 - height=20 - } - control { - chan="$(P)ml_monoThetaTweak" - clr=14 - bclr=51 - } - } - "message button" { - object { - x=110 - y=84 - width=20 - height=20 - } - control { - chan="$(P)ml_monoThetaDec.VAL" - clr=14 - bclr=51 - } - label="<" - press_msg="1" - } - rectangle { - object { - x=110 - y=105 - width=105 - height=32 - } - "basic attribute" { - clr=14 - } - } - text { - object { - x=110 - y=105 - width=105 - height=10 - } - "basic attribute" { - clr=15 - } - textix="SCAN CONTROL" - align="horiz. centered" - } - "message button" { - object { - x=174 - y=115 - width=40 - height=20 - } - control { - chan="$(P)allstop.VAL" - clr=30 - bclr=20 - } - label="Abort" - press_msg="1" - } - "message button" { - object { - x=153 - y=115 - width=20 - height=20 - } - control { - chan="$(P)ml_monoTheta:scanParms.GO" - clr=14 - bclr=51 - } - label="Go" - press_msg="1" - } - "message button" { - object { - x=132 - y=115 - width=20 - height=20 - } - control { - chan="$(P)ml_monoTheta:scanParms.LOAD" - clr=14 - bclr=51 - } - label="Ld" - press_msg="1" - } - "related display" { - object { - x=111 - y=115 - width=20 - height=20 - } - display[6] { - label="Theta-scan parameters" - name="scanParms.adl" - args="P=$(P),Q=ml_monoTheta,PV=ml_monoTheta" - } - clr=14 - bclr=51 - } + height=20 + } + "basic attribute" { + clr=14 + fill="outline" + } + textix="TH (deg.)" + align="horiz. centered" +} +"text update" { + object { + x=110 + y=32 + width=105 + height=20 + } + monitor { + chan="$(P)ml_monoThetaRdbk" + clr=54 + bclr=3 + } + limits { + } +} +"text entry" { + object { + x=110 + y=48 + width=105 + height=25 + } + control { + chan="$(P)ml_monoTheta.VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text update" { + object { + x=110 + y=19 + width=105 + height=15 + } + monitor { + chan="$(P)ml_monoTheta.DRVH" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text update" { + object { + x=110 + y=71 + width=105 + height=15 + } + monitor { + chan="$(P)ml_monoTheta.DRVL" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"message button" { + object { + x=195 + y=84 + width=20 + height=20 + } + control { + chan="$(P)ml_monoThetaInc.VAL" + clr=14 + bclr=51 + } + label=">" + press_msg="1" +} +"text entry" { + object { + x=130 + y=84 + width=65 + height=20 + } + control { + chan="$(P)ml_monoThetaTweak" + clr=14 + bclr=51 + } + limits { + } +} +"message button" { + object { + x=110 + y=84 + width=20 + height=20 + } + control { + chan="$(P)ml_monoThetaDec.VAL" + clr=14 + bclr=51 + } + label="<" + press_msg="1" +} +rectangle { + object { + x=110 + y=105 + width=105 + height=32 + } + "basic attribute" { + clr=14 + } +} +text { + object { + x=110 + y=105 + width=105 + height=10 + } + "basic attribute" { + clr=15 + } + textix="SCAN CONTROL" + align="horiz. centered" +} +"message button" { + object { + x=174 + y=115 + width=40 + height=20 + } + control { + chan="$(P)allstop.VAL" + clr=30 + bclr=20 } + label="Abort" + press_msg="1" +} +"message button" { + object { + x=153 + y=115 + width=20 + height=20 + } + control { + chan="$(P)ml_monoTheta:scanParms.GO" + clr=14 + bclr=51 + } + label="Go" + press_msg="1" +} +"message button" { + object { + x=132 + y=115 + width=20 + height=20 + } + control { + chan="$(P)ml_monoTheta:scanParms.LOAD" + clr=14 + bclr=51 + } + label="Ld" + press_msg="1" +} +"related display" { + object { + x=111 + y=115 + width=20 + height=20 + } + display[6] { + label="Theta-scan parameters" + name="scanParms.adl" + args="P=$(P),Q=ml_monoTheta,PV=ml_monoTheta" + } + clr=14 + bclr=51 } diff --git a/opticsApp/op/adl/orient.adl b/opticsApp/op/adl/orient.adl index 7c0ca2a..6a28d62 100644 --- a/opticsApp/op/adl/orient.adl +++ b/opticsApp/op/adl/orient.adl @@ -1,7 +1,7 @@ file { - name="/home/oxygen4/MOONEY/epics/synApps_T202_E3_14_7_R5_1/support/optics/opticsApp/op/adl/orient.adl" - version=030004 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/orient.adl" + version=030111 } display { object { @@ -377,45 +377,34 @@ polygon { (344,108) } } -composite { +menu { object { x=280 y=97 width=55 - height=34 - } - "composite name"="" - children { - menu { - object { - x=280 - y=97 - width=55 - height=14 - } - control { - chan="$(P)orient$(O):motPut_Auto" - clr=14 - bclr=51 - } - } - "message button" { - object { - x=280 - y=111 - width=55 - height=20 - } - control { - chan="$(P)orient$(O):motPut" - clr=14 - bclr=51 - } - label="Move" - press_msg="1" - } + height=14 + } + control { + chan="$(P)orient$(O):motPut_Auto" + clr=14 + bclr=51 } } +"message button" { + object { + x=280 + y=111 + width=55 + height=20 + } + control { + chan="$(P)orient$(O):motPut" + clr=14 + bclr=51 + } + label="Move" + press_msg="1" +} "message button" { object { x=249 @@ -570,59 +559,48 @@ rectangle { limits { } } -composite { +text { object { x=10 + y=120 + width=10 + height=20 + } + "basic attribute" { + clr=14 + } + textix="K" +} +"text entry" { + object { + x=25 + y=119 + width=80 + height=20 + } + control { + chan="$(P)orient$(O):K" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { + object { + x=23 y=117 - width=97 + width=84 height=24 } - "composite name"="" - children { - text { - object { - x=10 - y=120 - width=10 - height=20 - } - "basic attribute" { - clr=14 - } - textix="K" - } - "text entry" { - object { - x=25 - y=119 - width=80 - height=20 - } - control { - chan="$(P)orient$(O):K" - clr=14 - bclr=51 - } - limits { - } - } - rectangle { - object { - x=23 - y=117 - width=84 - height=24 - } - "basic attribute" { - clr=16 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)orient$(O):K_busy" - } - } + "basic attribute" { + clr=16 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)orient$(O):K_busy" } } "text update" { @@ -685,101 +663,79 @@ rectangle { chan="$(P)orient$(O):H_busy" } } -composite { +menu { object { - x=252 + x=280 y=145 - width=111 - height=37 - } - "composite name"="" - children { - composite { - object { - x=280 - y=145 - width=55 - height=34 - } - "composite name"="" - children { - menu { - object { - x=280 - y=145 - width=55 - height=14 - } - control { - chan="$(P)orient$(O):motGet_Auto" - clr=14 - bclr=51 - } - } - "message button" { - object { - x=280 - y=159 - width=55 - height=20 - } - control { - chan="$(P)orient$(O):motGet" - clr=14 - bclr=51 - } - label="Read" - press_msg="1" - } - } - } - polyline { - object { - x=264 - y=165 - width=99 - height=7 - } - "basic attribute" { - clr=17 - fill="outline" - width=6 - } - "dynamic attribute" { - vis="calc" - calc="A||B" - chan="$(P)orient$(O):motGet" - chanB="$(P)orient$(O):motGet_Auto" - } - points { - (267,169) - (360,168) - } - } - polygon { - object { - x=252 - y=156 - width=23 - height=26 - } - "basic attribute" { - clr=17 - width=1 - } - "dynamic attribute" { - vis="calc" - calc="A||B" - chan="$(P)orient$(O):motGet" - chanB="$(P)orient$(O):motGet_Auto" - } - points { - (275,156) - (275,182) - (252,167) - (275,156) - } - } + width=55 + height=14 + } + control { + chan="$(P)orient$(O):motGet_Auto" + clr=14 + bclr=51 + } +} +"message button" { + object { + x=280 + y=159 + width=55 + height=20 + } + control { + chan="$(P)orient$(O):motGet" + clr=14 + bclr=51 + } + label="Read" + press_msg="1" +} +polyline { + object { + x=264 + y=165 + width=99 + height=7 + } + "basic attribute" { + clr=17 + fill="outline" + width=6 + } + "dynamic attribute" { + vis="calc" + calc="A||B" + chan="$(P)orient$(O):motGet" + chanB="$(P)orient$(O):motGet_Auto" + } + points { + (267,169) + (360,168) + } +} +polygon { + object { + x=252 + y=156 + width=23 + height=26 + } + "basic attribute" { + clr=17 + width=1 + } + "dynamic attribute" { + vis="calc" + calc="A||B" + chan="$(P)orient$(O):motGet" + chanB="$(P)orient$(O):motGet_Auto" + } + points { + (275,156) + (275,182) + (252,167) + (275,156) } } "related display" { @@ -866,459 +822,426 @@ composite { limits { } } -composite { +"message button" { + object { + x=85 + y=199 + width=20 + height=20 + } + control { + chan="$(P)orient$(O):L_tweak.A" + clr=14 + bclr=51 + } + label="+" + press_msg="1" +} +"message button" { object { x=25 y=199 - width=80 + width=20 height=20 } - "composite name"="" - children { - "message button" { - object { - x=85 - y=199 - width=20 - height=20 - } - control { - chan="$(P)orient$(O):L_tweak.A" - clr=14 - bclr=51 - } - label="+" - press_msg="1" - } - "message button" { - object { - x=25 - y=199 - width=20 - height=20 - } - control { - chan="$(P)orient$(O):L_tweak.B" - clr=14 - bclr=51 - } - label="-" - press_msg="1" - } - "text entry" { - object { - x=45 - y=201 - width=40 - height=18 - } - control { - chan="$(P)orient$(O):L_tweak.C" - clr=14 - bclr=51 - } - limits { - } - } - } -} -composite { + control { + chan="$(P)orient$(O):L_tweak.B" + clr=14 + bclr=51 + } + label="-" + press_msg="1" +} +"text entry" { + object { + x=45 + y=201 + width=40 + height=18 + } + control { + chan="$(P)orient$(O):L_tweak.C" + clr=14 + bclr=51 + } + limits { + } +} +"message button" { + object { + x=85 + y=139 + width=20 + height=20 + } + control { + chan="$(P)orient$(O):K_tweak.A" + clr=14 + bclr=51 + } + label="+" + press_msg="1" +} +"message button" { object { x=25 y=139 + width=20 + height=20 + } + control { + chan="$(P)orient$(O):K_tweak.B" + clr=14 + bclr=51 + } + label="-" + press_msg="1" +} +"text entry" { + object { + x=45 + y=141 + width=40 + height=18 + } + control { + chan="$(P)orient$(O):K_tweak.C" + clr=14 + bclr=51 + } + limits { + } +} +"text update" { + object { + x=397 + y=126 + width=80 + height=14 + } + monitor { + chan="$(PM)$(mCHI).RBV" + clr=54 + bclr=2 + } + align="horiz. centered" + limits { + } +} +rectangle { + object { + x=395 + y=140 + width=84 + height=24 + } + "basic attribute" { + clr=20 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="calc" + calc="A=0" + chan="$(P)orient$(O):motCHI_Connected" + } +} +"text entry" { + object { + x=397 + y=142 width=80 height=20 } - "composite name"="" - children { - "message button" { - object { - x=85 - y=139 - width=20 - height=20 - } - control { - chan="$(P)orient$(O):K_tweak.A" - clr=14 - bclr=51 - } - label="+" - press_msg="1" - } - "message button" { - object { - x=25 - y=139 - width=20 - height=20 - } - control { - chan="$(P)orient$(O):K_tweak.B" - clr=14 - bclr=51 - } - label="-" - press_msg="1" - } - "text entry" { - object { - x=45 - y=141 - width=40 - height=18 - } - control { - chan="$(P)orient$(O):K_tweak.C" - clr=14 - bclr=51 - } - limits { - } - } - } -} -composite { + control { + chan="$(PM)$(mCHI)" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { object { - x=365 + x=395 + y=140 + width=84 + height=24 + } + "basic attribute" { + clr=16 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)orient$(O):waiting4motCHI" + } +} +rectangle { + object { + x=395 + y=100 + width=84 + height=24 + } + "basic attribute" { + clr=20 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="calc" + calc="A=0" + chan="$(P)orient$(O):motTH_Connected" + } +} +rectangle { + object { + x=395 + y=100 + width=84 + height=24 + } + "basic attribute" { + clr=16 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)orient$(O):waiting4motTH" + } +} +"text update" { + object { + x=397 + y=86 + width=80 + height=14 + } + monitor { + chan="$(PM)$(mTH).RBV" + clr=54 + bclr=2 + } + align="horiz. centered" + limits { + } +} +"text entry" { + object { + x=397 + y=102 + width=80 + height=20 + } + control { + chan="$(PM)$(mTH)" + clr=14 + bclr=51 + } + limits { + } +} +"text update" { + object { + x=397 y=46 - width=114 - height=177 - } - "composite name"="" - children { - "text update" { - object { - x=397 - y=126 - width=80 - height=14 - } - monitor { - chan="$(PM)$(mCHI).RBV" - clr=54 - bclr=2 - } - align="horiz. centered" - limits { - } - } - rectangle { - object { - x=395 - y=140 - width=84 - height=24 - } - "basic attribute" { - clr=20 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="calc" - calc="A=0" - chan="$(P)orient$(O):motCHI_Connected" - } - } - "text entry" { - object { - x=397 - y=142 - width=80 - height=20 - } - control { - chan="$(PM)$(mCHI)" - clr=14 - bclr=51 - } - limits { - } - } - rectangle { - object { - x=395 - y=140 - width=84 - height=24 - } - "basic attribute" { - clr=16 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)orient$(O):waiting4motCHI" - } - } - rectangle { - object { - x=395 - y=100 - width=84 - height=24 - } - "basic attribute" { - clr=20 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="calc" - calc="A=0" - chan="$(P)orient$(O):motTH_Connected" - } - } - rectangle { - object { - x=395 - y=100 - width=84 - height=24 - } - "basic attribute" { - clr=16 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)orient$(O):waiting4motTH" - } - } - "text update" { - object { - x=397 - y=86 - width=80 - height=14 - } - monitor { - chan="$(PM)$(mTH).RBV" - clr=54 - bclr=2 - } - align="horiz. centered" - limits { - } - } - "text entry" { - object { - x=397 - y=102 - width=80 - height=20 - } - control { - chan="$(PM)$(mTH)" - clr=14 - bclr=51 - } - limits { - } - } - "text update" { - object { - x=397 - y=46 - width=80 - height=14 - } - monitor { - chan="$(PM)$(mTTH).RBV" - clr=54 - bclr=2 - } - align="horiz. centered" - limits { - } - } - rectangle { - object { - x=395 - y=60 - width=84 - height=24 - } - "basic attribute" { - clr=20 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="calc" - calc="A=0" - chan="$(P)orient$(O):motTTH_Connected" - } - } - "text entry" { - object { - x=397 - y=62 - width=80 - height=20 - } - control { - chan="$(PM)$(mTTH)" - clr=14 - bclr=51 - } - limits { - } - } - rectangle { - object { - x=395 - y=60 - width=84 - height=24 - } - "basic attribute" { - clr=16 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)orient$(O):waiting4motTTH" - } - } - text { - object { - x=395 - y=203 - width=84 - height=20 - } - "basic attribute" { - clr=17 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)orient$(O):waiting4Mot" - } - textix="Moving" - align="horiz. centered" - } - "text update" { - object { - x=397 - y=166 - width=80 - height=14 - } - monitor { - chan="$(PM)$(mPHI).RBV" - clr=54 - bclr=2 - } - align="horiz. centered" - limits { - } - } - rectangle { - object { - x=395 - y=180 - width=84 - height=24 - } - "basic attribute" { - clr=20 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="calc" - calc="A=0" - chan="$(P)orient$(O):motPHI_Connected" - } - } - "text entry" { - object { - x=397 - y=182 - width=80 - height=20 - } - control { - chan="$(PM)$(mPHI)" - clr=14 - bclr=51 - } - limits { - } - } - rectangle { - object { - x=395 - y=180 - width=84 - height=24 - } - "basic attribute" { - clr=16 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)orient$(O):waiting4motPHI" - } - } - text { - object { - x=365 - y=63 - width=30 - height=20 - } - "basic attribute" { - clr=14 - } - textix="TTH" - align="horiz. centered" - } - text { - object { - x=365 - y=103 - width=30 - height=20 - } - "basic attribute" { - clr=14 - } - textix="TH" - align="horiz. centered" - } - text { - object { - x=365 - y=143 - width=30 - height=20 - } - "basic attribute" { - clr=14 - } - textix="CHI" - align="horiz. centered" - } - text { - object { - x=365 - y=183 - width=30 - height=20 - } - "basic attribute" { - clr=14 - } - textix="PHI" - align="horiz. centered" - } + width=80 + height=14 + } + monitor { + chan="$(PM)$(mTTH).RBV" + clr=54 + bclr=2 + } + align="horiz. centered" + limits { + } +} +rectangle { + object { + x=395 + y=60 + width=84 + height=24 + } + "basic attribute" { + clr=20 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="calc" + calc="A=0" + chan="$(P)orient$(O):motTTH_Connected" + } +} +"text entry" { + object { + x=397 + y=62 + width=80 + height=20 + } + control { + chan="$(PM)$(mTTH)" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { + object { + x=395 + y=60 + width=84 + height=24 + } + "basic attribute" { + clr=16 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)orient$(O):waiting4motTTH" + } +} +text { + object { + x=395 + y=203 + width=84 + height=20 + } + "basic attribute" { + clr=17 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)orient$(O):waiting4Mot" + } + textix="Moving" + align="horiz. centered" +} +"text update" { + object { + x=397 + y=166 + width=80 + height=14 + } + monitor { + chan="$(PM)$(mPHI).RBV" + clr=54 + bclr=2 + } + align="horiz. centered" + limits { + } +} +rectangle { + object { + x=395 + y=180 + width=84 + height=24 + } + "basic attribute" { + clr=20 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="calc" + calc="A=0" + chan="$(P)orient$(O):motPHI_Connected" + } +} +"text entry" { + object { + x=397 + y=182 + width=80 + height=20 + } + control { + chan="$(PM)$(mPHI)" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { + object { + x=395 + y=180 + width=84 + height=24 + } + "basic attribute" { + clr=16 + fill="outline" + width=2 } + "dynamic attribute" { + vis="if not zero" + chan="$(P)orient$(O):waiting4motPHI" + } +} +text { + object { + x=365 + y=63 + width=30 + height=20 + } + "basic attribute" { + clr=14 + } + textix="TTH" + align="horiz. centered" +} +text { + object { + x=365 + y=103 + width=30 + height=20 + } + "basic attribute" { + clr=14 + } + textix="TH" + align="horiz. centered" +} +text { + object { + x=365 + y=143 + width=30 + height=20 + } + "basic attribute" { + clr=14 + } + textix="CHI" + align="horiz. centered" +} +text { + object { + x=365 + y=183 + width=30 + height=20 + } + "basic attribute" { + clr=14 + } + textix="PHI" + align="horiz. centered" } diff --git a/opticsApp/op/adl/orient9.adl b/opticsApp/op/adl/orient9.adl index 8e08f32..d43cd98 100644 --- a/opticsApp/op/adl/orient9.adl +++ b/opticsApp/op/adl/orient9.adl @@ -1,12 +1,12 @@ file { - name="/APSshare/epics/synApps_cvs/support/optics/opticsApp/op/adl/orient9.adl" - version=030004 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/orient9.adl" + version=030111 } display { object { - x=274 - y=33 + x=729 + y=568 width=675 height=280 } @@ -163,68 +163,57 @@ text { textix="L" align="horiz. centered" } -composite { +text { object { x=315 y=25 - width=350 + width=80 height=20 } - "composite name"="" - children { - text { - object { - x=315 - y=25 - width=80 - height=20 - } - "basic attribute" { - clr=14 - } - textix="TTH" - align="horiz. centered" - } - text { - object { - x=405 - y=25 - width=80 - height=20 - } - "basic attribute" { - clr=14 - } - textix="TH" - align="horiz. centered" - } - text { - object { - x=495 - y=25 - width=80 - height=20 - } - "basic attribute" { - clr=14 - } - textix="CHI" - align="horiz. centered" - } - text { - object { - x=585 - y=25 - width=80 - height=20 - } - "basic attribute" { - clr=14 - } - textix="PHI" - align="horiz. centered" - } + "basic attribute" { + clr=14 } + textix="TTH" + align="horiz. centered" +} +text { + object { + x=405 + y=25 + width=80 + height=20 + } + "basic attribute" { + clr=14 + } + textix="TH" + align="horiz. centered" +} +text { + object { + x=495 + y=25 + width=80 + height=20 + } + "basic attribute" { + clr=14 + } + textix="CHI" + align="horiz. centered" +} +text { + object { + x=585 + y=25 + width=80 + height=20 + } + "basic attribute" { + clr=14 + } + textix="PHI" + align="horiz. centered" } "related display" { object { @@ -1641,236 +1630,203 @@ rectangle { label="Stop Motors" press_msg="1" } -composite { +polyline { object { x=405 y=48 width=260 + height=1 + } + "basic attribute" { + clr=0 + fill="outline" + width=1 + } + "dynamic attribute" { + chan="$(P)orient$(O):stopMotors" + } + points { + (405,48) + (664,48) + } +} +polyline { + object { + x=405 + y=116 + width=260 + height=1 + } + "basic attribute" { + clr=14 + fill="outline" + width=1 + } + "dynamic attribute" { + chan="$(P)orient$(O):stopMotors" + } + points { + (405,116) + (664,116) + } +} +polyline { + object { + x=405 + y=48 + width=1 + height=69 + } + "basic attribute" { + clr=0 + fill="outline" + width=1 + } + "dynamic attribute" { + chan="$(P)orient$(O):stopMotors" + } + points { + (405,48) + (405,116) + } +} +polyline { + object { + x=663 + y=48 + width=1 height=69 } - "composite name"="" - children { - polyline { - object { - x=405 - y=48 - width=260 - height=1 - } - "basic attribute" { - clr=0 - fill="outline" - width=1 - } - "dynamic attribute" { - chan="$(P)orient$(O):stopMotors" - } - points { - (405,48) - (664,48) - } - } - polyline { - object { - x=405 - y=116 - width=260 - height=1 - } - "basic attribute" { - clr=14 - fill="outline" - width=1 - } - "dynamic attribute" { - chan="$(P)orient$(O):stopMotors" - } - points { - (405,116) - (664,116) - } - } - polyline { - object { - x=405 - y=48 - width=1 - height=69 - } - "basic attribute" { - clr=0 - fill="outline" - width=1 - } - "dynamic attribute" { - chan="$(P)orient$(O):stopMotors" - } - points { - (405,48) - (405,116) - } - } - polyline { - object { - x=663 - y=48 - width=1 - height=69 - } - "basic attribute" { - clr=14 - fill="outline" - width=1 - } - "dynamic attribute" { - chan="$(P)orient$(O):stopMotors" - } - points { - (663,48) - (663,116) - } - } - } -} -composite { + "basic attribute" { + clr=14 + fill="outline" + width=1 + } + "dynamic attribute" { + chan="$(P)orient$(O):stopMotors" + } + points { + (663,48) + (663,116) + } +} +polyline { object { x=405 y=205 width=260 + height=1 + } + "basic attribute" { + clr=0 + fill="outline" + width=1 + } + "dynamic attribute" { + chan="$(P)orient$(O):stopMotors" + } + points { + (405,205) + (664,205) + } +} +polyline { + object { + x=405 + y=273 + width=260 + height=1 + } + "basic attribute" { + clr=14 + fill="outline" + width=1 + } + "dynamic attribute" { + chan="$(P)orient$(O):stopMotors" + } + points { + (405,273) + (664,273) + } +} +polyline { + object { + x=405 + y=205 + width=1 height=69 } - "composite name"="" - children { - polyline { - object { - x=405 - y=205 - width=260 - height=1 - } - "basic attribute" { - clr=0 - fill="outline" - width=1 - } - "dynamic attribute" { - chan="$(P)orient$(O):stopMotors" - } - points { - (405,205) - (664,205) - } - } - polyline { - object { - x=405 - y=273 - width=260 - height=1 - } - "basic attribute" { - clr=14 - fill="outline" - width=1 - } - "dynamic attribute" { - chan="$(P)orient$(O):stopMotors" - } - points { - (405,273) - (664,273) - } - } - polyline { - object { - x=405 - y=205 - width=1 - height=69 - } - "basic attribute" { - clr=0 - fill="outline" - width=1 - } - "dynamic attribute" { - chan="$(P)orient$(O):stopMotors" - } - points { - (405,205) - (405,273) - } - } - polyline { - object { - x=663 - y=205 - width=1 - height=69 - } - "basic attribute" { - clr=14 - fill="outline" - width=1 - } - "dynamic attribute" { - chan="$(P)orient$(O):stopMotors" - } - points { - (663,205) - (663,273) - } - } - } -} -composite { + "basic attribute" { + clr=0 + fill="outline" + width=1 + } + "dynamic attribute" { + chan="$(P)orient$(O):stopMotors" + } + points { + (405,205) + (405,273) + } +} +polyline { + object { + x=663 + y=205 + width=1 + height=69 + } + "basic attribute" { + clr=14 + fill="outline" + width=1 + } + "dynamic attribute" { + chan="$(P)orient$(O):stopMotors" + } + points { + (663,205) + (663,273) + } +} +text { object { x=456 y=233 - width=175 + width=70 + height=20 + } + "basic attribute" { + clr=14 + } + textix="Energy:" + align="horiz. centered" +} +"text entry" { + object { + x=530 + y=233 + width=70 + height=20 + } + control { + chan="$(P)orient$(O):energy" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=601 + y=233 + width=30 height=20 } - "composite name"="" - children { - text { - object { - x=456 - y=233 - width=70 - height=20 - } - "basic attribute" { - clr=14 - } - textix="Energy:" - align="horiz. centered" - } - "text entry" { - object { - x=530 - y=233 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):energy" - clr=14 - bclr=51 - } - limits { - } - } - text { - object { - x=601 - y=233 - width=30 - height=20 - } - "basic attribute" { - clr=14 - } - textix="keV" - } + "basic attribute" { + clr=14 } + textix="keV" } diff --git a/opticsApp/op/adl/orient_HKL.adl b/opticsApp/op/adl/orient_HKL.adl index b607d54..a720b89 100644 --- a/opticsApp/op/adl/orient_HKL.adl +++ b/opticsApp/op/adl/orient_HKL.adl @@ -1,7 +1,7 @@ file { name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/orient_HKL.adl" - version=030004 + version=030111 } display { object { @@ -244,259 +244,226 @@ rectangle { chan="$(P)orient$(O):H_busy" } } -composite { +text { object { x=120 + y=40 + width=10 + height=20 + } + "basic attribute" { + clr=14 + } + textix="K" +} +"text entry" { + object { + x=135 + y=39 + width=80 + height=20 + } + control { + chan="$(P)orient$(O):K" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { + object { + x=133 y=37 - width=97 + width=84 height=24 } - "composite name"="" - children { - text { - object { - x=120 - y=40 - width=10 - height=20 - } - "basic attribute" { - clr=14 - } - textix="K" - } - "text entry" { - object { - x=135 - y=39 - width=80 - height=20 - } - control { - chan="$(P)orient$(O):K" - clr=14 - bclr=51 - } - limits { - } - } - rectangle { - object { - x=133 - y=37 - width=84 - height=24 - } - "basic attribute" { - clr=16 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)orient$(O):K_busy" - } - } + "basic attribute" { + clr=16 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)orient$(O):K_busy" } } -composite { +text { object { x=230 + y=40 + width=10 + height=20 + } + "basic attribute" { + clr=14 + } + textix="L" +} +"text entry" { + object { + x=245 + y=39 + width=80 + height=20 + } + control { + chan="$(P)orient$(O):L" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { + object { + x=243 y=37 - width=97 + width=84 height=24 } - "composite name"="" - children { - text { - object { - x=230 - y=40 - width=10 - height=20 - } - "basic attribute" { - clr=14 - } - textix="L" - } - "text entry" { - object { - x=245 - y=39 - width=80 - height=20 - } - control { - chan="$(P)orient$(O):L" - clr=14 - bclr=51 - } - limits { - } - } - rectangle { - object { - x=243 - y=37 - width=84 - height=24 - } - "basic attribute" { - clr=16 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)orient$(O):L_busy" - } - } + "basic attribute" { + clr=16 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)orient$(O):L_busy" + } +} +"message button" { + object { + x=85 + y=59 + width=20 + height=20 + } + control { + chan="$(P)orient$(O):H_tweak.A" + clr=14 + bclr=51 } + label="+" + press_msg="1" } -composite { +"message button" { object { x=25 y=59 - width=300 + width=20 height=20 } - "composite name"="" - children { - "message button" { - object { - x=85 - y=59 - width=20 - height=20 - } - control { - chan="$(P)orient$(O):H_tweak.A" - clr=14 - bclr=51 - } - label="+" - press_msg="1" - } - "message button" { - object { - x=25 - y=59 - width=20 - height=20 - } - control { - chan="$(P)orient$(O):H_tweak.B" - clr=14 - bclr=51 - } - label="-" - press_msg="1" - } - "text entry" { - object { - x=45 - y=61 - width=40 - height=18 - } - control { - chan="$(P)orient$(O):H_tweak.C" - clr=14 - bclr=51 - } - limits { - } - } - "message button" { - object { - x=195 - y=59 - width=20 - height=20 - } - control { - chan="$(P)orient$(O):K_tweak.A" - clr=14 - bclr=51 - } - label="+" - press_msg="1" - } - "message button" { - object { - x=135 - y=59 - width=20 - height=20 - } - control { - chan="$(P)orient$(O):K_tweak.B" - clr=14 - bclr=51 - } - label="-" - press_msg="1" - } - "text entry" { - object { - x=155 - y=61 - width=40 - height=18 - } - control { - chan="$(P)orient$(O):K_tweak.C" - clr=14 - bclr=51 - } - limits { - } - } - "message button" { - object { - x=305 - y=59 - width=20 - height=20 - } - control { - chan="$(P)orient$(O):L_tweak.A" - clr=14 - bclr=51 - } - label="+" - press_msg="1" - } - "message button" { - object { - x=245 - y=59 - width=20 - height=20 - } - control { - chan="$(P)orient$(O):L_tweak.B" - clr=14 - bclr=51 - } - label="-" - press_msg="1" - } - "text entry" { - object { - x=265 - y=61 - width=40 - height=18 - } - control { - chan="$(P)orient$(O):L_tweak.C" - clr=14 - bclr=51 - } - limits { - } - } + control { + chan="$(P)orient$(O):H_tweak.B" + clr=14 + bclr=51 + } + label="-" + press_msg="1" +} +"text entry" { + object { + x=45 + y=61 + width=40 + height=18 + } + control { + chan="$(P)orient$(O):H_tweak.C" + clr=14 + bclr=51 + } + limits { + } +} +"message button" { + object { + x=195 + y=59 + width=20 + height=20 + } + control { + chan="$(P)orient$(O):K_tweak.A" + clr=14 + bclr=51 + } + label="+" + press_msg="1" +} +"message button" { + object { + x=135 + y=59 + width=20 + height=20 + } + control { + chan="$(P)orient$(O):K_tweak.B" + clr=14 + bclr=51 + } + label="-" + press_msg="1" +} +"text entry" { + object { + x=155 + y=61 + width=40 + height=18 + } + control { + chan="$(P)orient$(O):K_tweak.C" + clr=14 + bclr=51 + } + limits { + } +} +"message button" { + object { + x=305 + y=59 + width=20 + height=20 + } + control { + chan="$(P)orient$(O):L_tweak.A" + clr=14 + bclr=51 + } + label="+" + press_msg="1" +} +"message button" { + object { + x=245 + y=59 + width=20 + height=20 + } + control { + chan="$(P)orient$(O):L_tweak.B" + clr=14 + bclr=51 + } + label="-" + press_msg="1" +} +"text entry" { + object { + x=265 + y=61 + width=40 + height=18 + } + control { + chan="$(P)orient$(O):L_tweak.C" + clr=14 + bclr=51 + } + limits { } } diff --git a/opticsApp/op/adl/orient_HKL_angles.adl b/opticsApp/op/adl/orient_HKL_angles.adl index c776394..5195cd9 100644 --- a/opticsApp/op/adl/orient_HKL_angles.adl +++ b/opticsApp/op/adl/orient_HKL_angles.adl @@ -1,12 +1,12 @@ file { name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/orient_HKL_angles.adl" - version=030004 + version=030111 } display { object { - x=73 - y=547 + x=690 + y=570 width=700 height=65 } @@ -184,59 +184,48 @@ rectangle { chan="$(P)orient$(O):H_busy" } } -composite { +text { object { x=120 + y=42 + width=10 + height=20 + } + "basic attribute" { + clr=14 + } + textix="K" +} +"text entry" { + object { + x=135 + y=41 + width=80 + height=20 + } + control { + chan="$(P)orient$(O):K" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { + object { + x=133 y=39 - width=97 + width=84 height=24 } - "composite name"="" - children { - text { - object { - x=120 - y=42 - width=10 - height=20 - } - "basic attribute" { - clr=14 - } - textix="K" - } - "text entry" { - object { - x=135 - y=41 - width=80 - height=20 - } - control { - chan="$(P)orient$(O):K" - clr=14 - bclr=51 - } - limits { - } - } - rectangle { - object { - x=133 - y=39 - width=84 - height=24 - } - "basic attribute" { - clr=16 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)orient$(O):K_busy" - } - } + "basic attribute" { + clr=16 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)orient$(O):K_busy" } } "text update" { @@ -373,44 +362,33 @@ text { limits { } } -composite { +text { object { x=340 y=25 width=80 - height=34 - } - "composite name"="" - children { - text { - object { - x=340 - y=25 - width=80 - height=20 - } - "basic attribute" { - clr=14 - } - textix="TTH" - align="horiz. centered" - } - "text update" { - object { - x=340 - y=45 - width=80 - height=14 - } - monitor { - chan="$(P)orient$(O):TTH" - clr=54 - bclr=2 - } - align="horiz. centered" - limits { - } - } + height=20 + } + "basic attribute" { + clr=14 + } + textix="TTH" + align="horiz. centered" +} +"text update" { + object { + x=340 + y=45 + width=80 + height=14 + } + monitor { + chan="$(P)orient$(O):TTH" + clr=54 + bclr=2 + } + align="horiz. centered" + limits { } } text { diff --git a/opticsApp/op/adl/orient_XTALs.adl b/opticsApp/op/adl/orient_XTALs.adl index 26d5a64..a59dd6e 100644 --- a/opticsApp/op/adl/orient_XTALs.adl +++ b/opticsApp/op/adl/orient_XTALs.adl @@ -1,7 +1,7 @@ file { name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/orient_XTALs.adl" - version=030004 + version=030111 } display { object { @@ -87,1293 +87,1260 @@ display { 1a7309, } } -composite { +text { object { x=5 + y=35 + width=25 + height=14 + } + "basic attribute" { + clr=13 + fill="outline" + } + textix="USE" + align="horiz. centered" +} +"message button" { + object { + x=5 + y=55 + width=25 + height=16 + } + control { + chan="$(P)orient$(O):xtal_1.PROC" + clr=14 + bclr=51 + } + label="1" + press_msg="1" +} +"message button" { + object { + x=5 + y=75 + width=25 + height=16 + } + control { + chan="$(P)orient$(O):xtal_2.PROC" + clr=14 + bclr=51 + } + label="2" + press_msg="2" +} +"message button" { + object { + x=5 + y=95 + width=25 + height=16 + } + control { + chan="$(P)orient$(O):xtal_3.PROC" + clr=14 + bclr=51 + } + label="3" + press_msg="3" +} +"message button" { + object { + x=5 + y=115 + width=25 + height=16 + } + control { + chan="$(P)orient$(O):xtal_4.PROC" + clr=14 + bclr=51 + } + label="4" + press_msg="4" +} +"message button" { + object { + x=5 + y=135 + width=25 + height=16 + } + control { + chan="$(P)orient$(O):xtal_5.PROC" + clr=14 + bclr=51 + } + label="5" + press_msg="5" +} +"message button" { + object { + x=5 + y=155 + width=25 + height=16 + } + control { + chan="$(P)orient$(O):xtal_6.PROC" + clr=14 + bclr=51 + } + label="6" + press_msg="6" +} +"message button" { + object { + x=5 + y=175 + width=25 + height=16 + } + control { + chan="$(P)orient$(O):xtal_7.PROC" + clr=14 + bclr=51 + } + label="7" + press_msg="7" +} +"message button" { + object { + x=5 + y=195 + width=25 + height=16 + } + control { + chan="$(P)orient$(O):xtal_8.PROC" + clr=14 + bclr=51 + } + label="8" + press_msg="8" +} +"message button" { + object { + x=530 + y=175 + width=25 + height=16 + } + control { + chan="$(P)orient$(O):xtal_7_get.PROC" + clr=14 + bclr=51 + } + label="7" + press_msg="7" +} +text { + object { + x=530 + y=35 + width=25 + height=14 + } + "basic attribute" { + clr=13 + fill="outline" + } + textix="Get" + align="horiz. centered" +} +"message button" { + object { + x=530 + y=55 + width=25 + height=16 + } + control { + chan="$(P)orient$(O):xtal_1_get.PROC" + clr=14 + bclr=51 + } + label="1" + press_msg="1" +} +"message button" { + object { + x=530 + y=75 + width=25 + height=16 + } + control { + chan="$(P)orient$(O):xtal_2_get.PROC" + clr=14 + bclr=51 + } + label="2" + press_msg="2" +} +"message button" { + object { + x=530 + y=95 + width=25 + height=16 + } + control { + chan="$(P)orient$(O):xtal_3_get.PROC" + clr=14 + bclr=51 + } + label="3" + press_msg="3" +} +"message button" { + object { + x=530 + y=115 + width=25 + height=16 + } + control { + chan="$(P)orient$(O):xtal_4_get.PROC" + clr=14 + bclr=51 + } + label="4" + press_msg="4" +} +"message button" { + object { + x=530 + y=135 + width=25 + height=16 + } + control { + chan="$(P)orient$(O):xtal_5_get.PROC" + clr=14 + bclr=51 + } + label="5" + press_msg="5" +} +"message button" { + object { + x=530 + y=155 + width=25 + height=16 + } + control { + chan="$(P)orient$(O):xtal_6_get.PROC" + clr=14 + bclr=51 + } + label="6" + press_msg="6" +} +"message button" { + object { + x=530 + y=195 + width=25 + height=16 + } + control { + chan="$(P)orient$(O):xtal_8_get.PROC" + clr=14 + bclr=51 + } + label="8" + press_msg="8" +} +"text entry" { + object { + x=35 + y=175 + width=100 + height=16 + } + control { + chan="$(P)orient$(O):xtal_7.STR1" + clr=14 + bclr=1 + } + limits { + } +} +"text entry" { + object { + x=205 + y=175 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_7.DO3" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=270 + y=175 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_7.DO4" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=335 + y=175 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_7.DO5" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=400 + y=175 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_7.DO6" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=465 + y=175 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_7.DO7" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=140 + y=175 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_7.DO2" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=35 + y=25 + width=100 + height=14 + } + "basic attribute" { + clr=13 + fill="outline" + } + textix="crystal" + align="horiz. centered" +} +text { + object { + x=35 + y=40 + width=100 + height=14 + } + "basic attribute" { + clr=13 + fill="outline" + } + textix="description" + align="horiz. centered" +} +text { + object { + x=205 + y=25 + width=60 + height=14 + } + "basic attribute" { + clr=13 + fill="outline" + } + textix="b" + align="horiz. centered" +} +text { + object { + x=270 y=25 - width=550 - height=186 - } - "composite name"="" - children { - text { - object { - x=5 - y=35 - width=25 - height=14 - } - "basic attribute" { - clr=13 - fill="outline" - } - textix="USE" - align="horiz. centered" - } - "message button" { - object { - x=5 - y=55 - width=25 - height=16 - } - control { - chan="$(P)orient$(O):xtal_1.PROC" - clr=14 - bclr=51 - } - label="1" - press_msg="1" - } - "message button" { - object { - x=5 - y=75 - width=25 - height=16 - } - control { - chan="$(P)orient$(O):xtal_2.PROC" - clr=14 - bclr=51 - } - label="2" - press_msg="2" - } - "message button" { - object { - x=5 - y=95 - width=25 - height=16 - } - control { - chan="$(P)orient$(O):xtal_3.PROC" - clr=14 - bclr=51 - } - label="3" - press_msg="3" - } - "message button" { - object { - x=5 - y=115 - width=25 - height=16 - } - control { - chan="$(P)orient$(O):xtal_4.PROC" - clr=14 - bclr=51 - } - label="4" - press_msg="4" - } - "message button" { - object { - x=5 - y=135 - width=25 - height=16 - } - control { - chan="$(P)orient$(O):xtal_5.PROC" - clr=14 - bclr=51 - } - label="5" - press_msg="5" - } - "message button" { - object { - x=5 - y=155 - width=25 - height=16 - } - control { - chan="$(P)orient$(O):xtal_6.PROC" - clr=14 - bclr=51 - } - label="6" - press_msg="6" - } - "message button" { - object { - x=5 - y=175 - width=25 - height=16 - } - control { - chan="$(P)orient$(O):xtal_7.PROC" - clr=14 - bclr=51 - } - label="7" - press_msg="7" - } - "message button" { - object { - x=5 - y=195 - width=25 - height=16 - } - control { - chan="$(P)orient$(O):xtal_8.PROC" - clr=14 - bclr=51 - } - label="8" - press_msg="8" - } - composite { - object { - x=530 - y=35 - width=25 - height=176 - } - "composite name"="" - children { - "message button" { - object { - x=530 - y=175 - width=25 - height=16 - } - control { - chan="$(P)orient$(O):xtal_7_get.PROC" - clr=14 - bclr=51 - } - label="7" - press_msg="7" - } - text { - object { - x=530 - y=35 - width=25 - height=14 - } - "basic attribute" { - clr=13 - fill="outline" - } - textix="Get" - align="horiz. centered" - } - "message button" { - object { - x=530 - y=55 - width=25 - height=16 - } - control { - chan="$(P)orient$(O):xtal_1_get.PROC" - clr=14 - bclr=51 - } - label="1" - press_msg="1" - } - "message button" { - object { - x=530 - y=75 - width=25 - height=16 - } - control { - chan="$(P)orient$(O):xtal_2_get.PROC" - clr=14 - bclr=51 - } - label="2" - press_msg="2" - } - "message button" { - object { - x=530 - y=95 - width=25 - height=16 - } - control { - chan="$(P)orient$(O):xtal_3_get.PROC" - clr=14 - bclr=51 - } - label="3" - press_msg="3" - } - "message button" { - object { - x=530 - y=115 - width=25 - height=16 - } - control { - chan="$(P)orient$(O):xtal_4_get.PROC" - clr=14 - bclr=51 - } - label="4" - press_msg="4" - } - "message button" { - object { - x=530 - y=135 - width=25 - height=16 - } - control { - chan="$(P)orient$(O):xtal_5_get.PROC" - clr=14 - bclr=51 - } - label="5" - press_msg="5" - } - "message button" { - object { - x=530 - y=155 - width=25 - height=16 - } - control { - chan="$(P)orient$(O):xtal_6_get.PROC" - clr=14 - bclr=51 - } - label="6" - press_msg="6" - } - "message button" { - object { - x=530 - y=195 - width=25 - height=16 - } - control { - chan="$(P)orient$(O):xtal_8_get.PROC" - clr=14 - bclr=51 - } - label="8" - press_msg="8" - } - } - } - "text entry" { - object { - x=35 - y=175 - width=100 - height=16 - } - control { - chan="$(P)orient$(O):xtal_7.STR1" - clr=14 - bclr=1 - } - limits { - } - } - "text entry" { - object { - x=205 - y=175 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_7.DO3" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=270 - y=175 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_7.DO4" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=335 - y=175 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_7.DO5" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=400 - y=175 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_7.DO6" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=465 - y=175 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_7.DO7" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=140 - y=175 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_7.DO2" - clr=14 - bclr=51 - } - limits { - } - } - text { - object { - x=35 - y=25 - width=100 - height=14 - } - "basic attribute" { - clr=13 - fill="outline" - } - textix="crystal" - align="horiz. centered" - } - text { - object { - x=35 - y=40 - width=100 - height=14 - } - "basic attribute" { - clr=13 - fill="outline" - } - textix="description" - align="horiz. centered" - } - text { - object { - x=205 - y=25 - width=60 - height=14 - } - "basic attribute" { - clr=13 - fill="outline" - } - textix="b" - align="horiz. centered" - } - text { - object { - x=270 - y=25 - width=60 - height=14 - } - "basic attribute" { - clr=13 - fill="outline" - } - textix="c" - align="horiz. centered" - } - text { - object { - x=335 - y=25 - width=60 - height=14 - } - "basic attribute" { - clr=13 - fill="outline" - } - textix="alpha" - align="horiz. centered" - } - text { - object { - x=400 - y=25 - width=60 - height=14 - } - "basic attribute" { - clr=13 - fill="outline" - } - textix="beta" - align="horiz. centered" - } - text { - object { - x=465 - y=25 - width=60 - height=14 - } - "basic attribute" { - clr=13 - fill="outline" - } - textix="gamma" - align="horiz. centered" - } - text { - object { - x=140 - y=25 - width=60 - height=14 - } - "basic attribute" { - clr=13 - fill="outline" - } - textix="a" - align="horiz. centered" - } - "text entry" { - object { - x=35 - y=55 - width=100 - height=16 - } - control { - chan="$(P)orient$(O):xtal_1.STR1" - clr=14 - bclr=1 - } - limits { - } - } - "text entry" { - object { - x=205 - y=55 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_1.DO3" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=270 - y=55 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_1.DO4" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=335 - y=55 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_1.DO5" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=400 - y=55 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_1.DO6" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=465 - y=55 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_1.DO7" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=140 - y=55 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_1.DO2" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=35 - y=75 - width=100 - height=16 - } - control { - chan="$(P)orient$(O):xtal_2.STR1" - clr=14 - bclr=1 - } - limits { - } - } - "text entry" { - object { - x=205 - y=75 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_2.DO3" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=270 - y=75 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_2.DO4" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=335 - y=75 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_2.DO5" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=400 - y=75 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_2.DO6" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=465 - y=75 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_2.DO7" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=140 - y=75 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_2.DO2" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=35 - y=95 - width=100 - height=16 - } - control { - chan="$(P)orient$(O):xtal_3.STR1" - clr=14 - bclr=1 - } - limits { - } - } - "text entry" { - object { - x=205 - y=95 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_3.DO3" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=270 - y=95 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_3.DO4" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=335 - y=95 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_3.DO5" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=400 - y=95 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_3.DO6" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=465 - y=95 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_3.DO7" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=140 - y=95 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_3.DO2" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=35 - y=115 - width=100 - height=16 - } - control { - chan="$(P)orient$(O):xtal_4.STR1" - clr=14 - bclr=1 - } - limits { - } - } - "text entry" { - object { - x=205 - y=115 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_4.DO3" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=270 - y=115 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_4.DO4" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=335 - y=115 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_4.DO5" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=400 - y=115 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_4.DO6" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=465 - y=115 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_4.DO7" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=140 - y=115 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_4.DO2" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=35 - y=135 - width=100 - height=16 - } - control { - chan="$(P)orient$(O):xtal_5.STR1" - clr=14 - bclr=1 - } - limits { - } - } - "text entry" { - object { - x=205 - y=135 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_5.DO3" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=270 - y=135 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_5.DO4" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=335 - y=135 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_5.DO5" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=400 - y=135 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_5.DO6" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=465 - y=135 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_5.DO7" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=140 - y=135 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_5.DO2" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=35 - y=155 - width=100 - height=16 - } - control { - chan="$(P)orient$(O):xtal_6.STR1" - clr=14 - bclr=1 - } - limits { - } - } - "text entry" { - object { - x=205 - y=155 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_6.DO3" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=270 - y=155 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_6.DO4" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=335 - y=155 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_6.DO5" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=400 - y=155 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_6.DO6" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=465 - y=155 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_6.DO7" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=140 - y=155 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_6.DO2" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=35 - y=195 - width=100 - height=16 - } - control { - chan="$(P)orient$(O):xtal_8.STR1" - clr=14 - bclr=1 - } - limits { - } - } - "text entry" { - object { - x=205 - y=195 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_8.DO3" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=270 - y=195 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_8.DO4" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=335 - y=195 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_8.DO5" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=400 - y=195 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_8.DO6" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=465 - y=195 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_8.DO7" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=140 - y=195 - width=60 - height=16 - } - control { - chan="$(P)orient$(O):xtal_8.DO2" - clr=14 - bclr=51 - } - limits { - } - } - } -} -composite { + width=60 + height=14 + } + "basic attribute" { + clr=13 + fill="outline" + } + textix="c" + align="horiz. centered" +} +text { + object { + x=335 + y=25 + width=60 + height=14 + } + "basic attribute" { + clr=13 + fill="outline" + } + textix="alpha" + align="horiz. centered" +} +text { + object { + x=400 + y=25 + width=60 + height=14 + } + "basic attribute" { + clr=13 + fill="outline" + } + textix="beta" + align="horiz. centered" +} +text { + object { + x=465 + y=25 + width=60 + height=14 + } + "basic attribute" { + clr=13 + fill="outline" + } + textix="gamma" + align="horiz. centered" +} +text { + object { + x=140 + y=25 + width=60 + height=14 + } + "basic attribute" { + clr=13 + fill="outline" + } + textix="a" + align="horiz. centered" +} +"text entry" { + object { + x=35 + y=55 + width=100 + height=16 + } + control { + chan="$(P)orient$(O):xtal_1.STR1" + clr=14 + bclr=1 + } + limits { + } +} +"text entry" { + object { + x=205 + y=55 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_1.DO3" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=270 + y=55 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_1.DO4" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=335 + y=55 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_1.DO5" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=400 + y=55 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_1.DO6" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=465 + y=55 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_1.DO7" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=140 + y=55 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_1.DO2" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=35 + y=75 + width=100 + height=16 + } + control { + chan="$(P)orient$(O):xtal_2.STR1" + clr=14 + bclr=1 + } + limits { + } +} +"text entry" { + object { + x=205 + y=75 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_2.DO3" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=270 + y=75 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_2.DO4" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=335 + y=75 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_2.DO5" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=400 + y=75 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_2.DO6" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=465 + y=75 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_2.DO7" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=140 + y=75 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_2.DO2" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=35 + y=95 + width=100 + height=16 + } + control { + chan="$(P)orient$(O):xtal_3.STR1" + clr=14 + bclr=1 + } + limits { + } +} +"text entry" { + object { + x=205 + y=95 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_3.DO3" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=270 + y=95 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_3.DO4" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=335 + y=95 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_3.DO5" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=400 + y=95 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_3.DO6" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=465 + y=95 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_3.DO7" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=140 + y=95 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_3.DO2" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=35 + y=115 + width=100 + height=16 + } + control { + chan="$(P)orient$(O):xtal_4.STR1" + clr=14 + bclr=1 + } + limits { + } +} +"text entry" { + object { + x=205 + y=115 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_4.DO3" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=270 + y=115 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_4.DO4" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=335 + y=115 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_4.DO5" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=400 + y=115 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_4.DO6" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=465 + y=115 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_4.DO7" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=140 + y=115 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_4.DO2" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=35 + y=135 + width=100 + height=16 + } + control { + chan="$(P)orient$(O):xtal_5.STR1" + clr=14 + bclr=1 + } + limits { + } +} +"text entry" { + object { + x=205 + y=135 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_5.DO3" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=270 + y=135 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_5.DO4" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=335 + y=135 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_5.DO5" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=400 + y=135 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_5.DO6" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=465 + y=135 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_5.DO7" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=140 + y=135 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_5.DO2" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=35 + y=155 + width=100 + height=16 + } + control { + chan="$(P)orient$(O):xtal_6.STR1" + clr=14 + bclr=1 + } + limits { + } +} +"text entry" { + object { + x=205 + y=155 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_6.DO3" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=270 + y=155 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_6.DO4" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=335 + y=155 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_6.DO5" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=400 + y=155 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_6.DO6" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=465 + y=155 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_6.DO7" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=140 + y=155 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_6.DO2" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=35 + y=195 + width=100 + height=16 + } + control { + chan="$(P)orient$(O):xtal_8.STR1" + clr=14 + bclr=1 + } + limits { + } +} +"text entry" { + object { + x=205 + y=195 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_8.DO3" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=270 + y=195 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_8.DO4" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=335 + y=195 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_8.DO5" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=400 + y=195 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_8.DO6" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=465 + y=195 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_8.DO7" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=140 + y=195 + width=60 + height=16 + } + control { + chan="$(P)orient$(O):xtal_8.DO2" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { object { x=0 y=0 width=560 - height=23 - } - "composite name"="" - children { - rectangle { - object { - x=0 - y=0 - width=560 - height=20 - } - "basic attribute" { - clr=0 - width=3 - } - } - text { - object { - x=0 - y=0 - width=560 - height=20 - } - "basic attribute" { - clr=14 - } - textix="Diffractometer $(P)orient$(O) crystals" - align="horiz. centered" - } - rectangle { - object { - x=0 - y=20 - width=560 - height=3 - } - "basic attribute" { - clr=54 - width=3 - } - } + height=20 + } + "basic attribute" { + clr=0 + width=3 + } +} +text { + object { + x=0 + y=0 + width=560 + height=20 + } + "basic attribute" { + clr=14 + } + textix="Diffractometer $(P)orient$(O) crystals" + align="horiz. centered" +} +rectangle { + object { + x=0 + y=20 + width=560 + height=3 + } + "basic attribute" { + clr=54 + width=3 } } diff --git a/opticsApp/op/adl/orient_full.adl b/opticsApp/op/adl/orient_full.adl index 258e016..67fdd0a 100644 --- a/opticsApp/op/adl/orient_full.adl +++ b/opticsApp/op/adl/orient_full.adl @@ -1,12 +1,12 @@ file { name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/orient_full.adl" - version=030004 + version=030111 } display { object { - x=204 - y=233 + x=756 + y=440 width=550 height=565 } @@ -305,110 +305,77 @@ text { } textix="gamma" } -composite { +text { object { x=78 + y=460 + width=10 + height=20 + } + "basic attribute" { + clr=14 + } + textix="A" +} +text { + object { + x=80 y=455 - width=12 - height=25 + width=10 + height=10 + } + "basic attribute" { + clr=14 } - "composite name"="" - children { - text { - object { - x=78 - y=460 - width=10 - height=20 - } - "basic attribute" { - clr=14 - } - textix="A" - } - text { - object { - x=80 - y=455 - width=10 - height=10 - } - "basic attribute" { - clr=14 - } - textix="o" - } - } -} -composite { + textix="o" +} +text { object { x=78 + y=480 + width=10 + height=20 + } + "basic attribute" { + clr=14 + } + textix="A" +} +text { + object { + x=80 y=475 - width=12 - height=25 + width=10 + height=10 + } + "basic attribute" { + clr=14 } - "composite name"="" - children { - text { - object { - x=78 - y=480 - width=10 - height=20 - } - "basic attribute" { - clr=14 - } - textix="A" - } - text { - object { - x=80 - y=475 - width=10 - height=10 - } - "basic attribute" { - clr=14 - } - textix="o" - } - } -} -composite { + textix="o" +} +text { object { x=78 + y=500 + width=10 + height=20 + } + "basic attribute" { + clr=14 + } + textix="A" +} +text { + object { + x=80 y=495 - width=12 - height=25 + width=10 + height=10 } - "composite name"="" - children { - text { - object { - x=78 - y=500 - width=10 - height=20 - } - "basic attribute" { - clr=14 - } - textix="A" - } - text { - object { - x=80 - y=495 - width=10 - height=10 - } - "basic attribute" { - clr=14 - } - textix="o" - } + "basic attribute" { + clr=14 } + textix="o" } rectangle { object { @@ -1146,59 +1113,48 @@ rectangle { limits { } } -composite { +text { object { x=10 + y=131 + width=10 + height=20 + } + "basic attribute" { + clr=14 + } + textix="K" +} +"text entry" { + object { + x=25 + y=130 + width=80 + height=20 + } + control { + chan="$(P)orient$(O):K" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { + object { + x=23 y=128 - width=97 + width=84 height=24 } - "composite name"="" - children { - text { - object { - x=10 - y=131 - width=10 - height=20 - } - "basic attribute" { - clr=14 - } - textix="K" - } - "text entry" { - object { - x=25 - y=130 - width=80 - height=20 - } - control { - chan="$(P)orient$(O):K" - clr=14 - bclr=51 - } - limits { - } - } - rectangle { - object { - x=23 - y=128 - width=84 - height=24 - } - "basic attribute" { - clr=16 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)orient$(O):K_busy" - } - } + "basic attribute" { + clr=16 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)orient$(O):K_busy" } } "message button" { @@ -1351,40 +1307,29 @@ rectangle { chan="$(P)orient$(O):H_busy" } } -composite { +text { object { x=10 y=258 width=55 - height=20 + height=10 + } + "basic attribute" { + clr=14 + } + textix="PRIMARY" +} +text { + object { + x=10 + y=268 + width=55 + height=10 } - "composite name"="" - children { - text { - object { - x=10 - y=258 - width=55 - height=10 - } - "basic attribute" { - clr=14 - } - textix="PRIMARY" - } - text { - object { - x=10 - y=268 - width=55 - height=10 - } - "basic attribute" { - clr=14 - } - textix="REFLECTION" - } + "basic attribute" { + clr=14 } + textix="REFLECTION" } text { object { @@ -1513,1146 +1458,397 @@ rectangle { limits { } } -composite { +"text entry" { object { x=379 y=336 width=70 - height=60 - } - "composite name"="" - children { - "text entry" { - object { - x=379 - y=336 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):OMTX_12" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=379 - y=356 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):OMTX_22" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=379 - y=376 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):OMTX_32" - clr=14 - bclr=51 - } - limits { - } - } - } -} -composite { - object { - x=449 - y=336 - width=70 - height=60 - } - "composite name"="" - children { - "text entry" { - object { - x=449 - y=336 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):OMTX_13" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=449 - y=356 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):OMTX_23" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=449 - y=376 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):OMTX_33" - clr=14 - bclr=51 - } - limits { - } - } - } -} -composite { - object { - x=309 - y=336 - width=70 - height=60 - } - "composite name"="" - children { - "text entry" { - object { - x=309 - y=336 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):OMTX_11" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=309 - y=356 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):OMTX_21" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=309 - y=376 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):OMTX_31" - clr=14 - bclr=51 - } - limits { - } - } - } -} -composite { - object { - x=313 - y=454 - width=70 - height=60 - } - "composite name"="" - children { - "text entry" { - object { - x=313 - y=454 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):A0_11" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=313 - y=474 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):A0_21" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=313 - y=494 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):A0_31" - clr=14 - bclr=51 - } - limits { - } - } - } -} -composite { - object { - x=383 - y=454 - width=70 - height=60 - } - "composite name"="" - children { - "text entry" { - object { - x=383 - y=454 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):A0_12" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=383 - y=474 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):A0_22" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=383 - y=494 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):A0_32" - clr=14 - bclr=51 - } - limits { - } - } - } -} -composite { - object { - x=453 - y=454 - width=70 - height=60 - } - "composite name"="" - children { - composite { - object { - x=453 - y=454 - width=70 - height=60 - } - "composite name"="" - children { - "text entry" { - object { - x=453 - y=454 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):A0_13" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=453 - y=474 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):A0_23" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=453 - y=494 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):A0_33" - clr=14 - bclr=51 - } - limits { - } - } - } - } + height=20 + } + control { + chan="$(P)orient$(O):OMTX_12" + clr=14 + bclr=51 + } + limits { } } -text { +"text entry" { object { - x=228 - y=457 - width=10 - height=10 + x=379 + y=356 + width=70 + height=20 } - "basic attribute" { + control { + chan="$(P)orient$(O):OMTX_22" clr=14 + bclr=51 + } + limits { } - textix="o" } -text { +"text entry" { object { - x=228 - y=478 - width=10 - height=10 + x=379 + y=376 + width=70 + height=20 } - "basic attribute" { + control { + chan="$(P)orient$(O):OMTX_32" clr=14 + bclr=51 + } + limits { } - textix="o" } -text { +"text entry" { object { - x=228 - y=498 - width=10 - height=10 + x=449 + y=336 + width=70 + height=20 } - "basic attribute" { + control { + chan="$(P)orient$(O):OMTX_13" clr=14 + bclr=51 + } + limits { } - textix="o" } -composite { +"text entry" { object { - x=155 - y=457 + x=449 + y=356 width=70 - height=60 - } - "composite name"="" - children { - "text entry" { - object { - x=155 - y=457 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):alpha" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=155 - y=477 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):beta" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=155 - y=497 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):gamma" - clr=14 - bclr=51 - } - limits { - } - } - } -} -composite { - object { - x=246 - y=475 - width=47 - height=20 - } - "composite name"="" - children { - polyline { - object { - x=246 - y=482 - width=31 - height=6 - } - "basic attribute" { - clr=17 - fill="outline" - width=6 - } - points { - (274,485) - (249,485) - } - } - polygon { - object { - x=273 - y=475 - width=20 - height=20 - } - "basic attribute" { - clr=17 - width=1 - } - points { - (273,475) - (293,485) - (273,494) - (273,495) - (273,475) - } - } + height=20 + } + control { + chan="$(P)orient$(O):OMTX_23" + clr=14 + bclr=51 + } + limits { } } -text { +"text entry" { object { - x=254 - y=461 - width=30 - height=14 + x=449 + y=376 + width=70 + height=20 } - "basic attribute" { + control { + chan="$(P)orient$(O):OMTX_33" clr=14 + bclr=51 + } + limits { } - textix="AUTO" - align="horiz. centered" } -composite { +"text entry" { object { - x=13 - y=518 - width=164 - height=25 + x=309 + y=336 + width=70 + height=20 + } + control { + chan="$(P)orient$(O):OMTX_11" + clr=14 + bclr=51 } - "composite name"="" - children { - text { - object { - x=13 - y=522 - width=75 - height=14 - } - "basic attribute" { - clr=14 - } - textix="Wavelength:" - align="horiz. centered" - } - "text entry" { - object { - x=94 - y=521 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):lambda" - clr=14 - bclr=51 - } - limits { - } - } - composite { - object { - x=165 - y=518 - width=12 - height=25 - } - "composite name"="" - children { - text { - object { - x=165 - y=523 - width=10 - height=20 - } - "basic attribute" { - clr=14 - } - textix="A" - } - text { - object { - x=167 - y=518 - width=10 - height=10 - } - "basic attribute" { - clr=14 - } - textix="o" - } - } - } + limits { } } -text { +"text entry" { object { - x=13 - y=542 - width=75 - height=14 + x=309 + y=356 + width=70 + height=20 } - "basic attribute" { + control { + chan="$(P)orient$(O):OMTX_21" clr=14 + bclr=51 + } + limits { } - textix="Energy:" - align="horiz. centered" } "text entry" { object { - x=94 - y=541 + x=309 + y=376 width=70 height=20 } control { - chan="$(P)orient$(O):energy" + chan="$(P)orient$(O):OMTX_31" clr=14 bclr=51 } limits { } } -text { +"text entry" { object { - x=165 - y=543 - width=10 + x=313 + y=454 + width=70 height=20 } - "basic attribute" { + control { + chan="$(P)orient$(O):A0_11" clr=14 + bclr=51 + } + limits { } - textix="keV" } -composite { - object { - x=299 - y=62 - width=121 - height=169 - } - "composite name"="" - children { - "message button" { - object { - x=299 - y=203 - width=120 - height=28 - } - control { - chan="$(P)orient$(O):stopMotors" - clr=30 - bclr=20 - } - label="Stop Motors" - press_msg="1" - } - menu { - object { - x=335 - y=62 - width=50 - height=20 - } - control { - chan="$(P)orient$(O):Busy" - clr=14 - bclr=51 - } - } - composite { - object { - x=305 - y=97 - width=115 - height=94 - } - "composite name"="" - children { - polyline { - object { - x=307 - y=118 - width=99 - height=6 - } - "basic attribute" { - clr=17 - fill="outline" - width=6 - } - "dynamic attribute" { - vis="calc" - calc="A||B" - chan="$(P)orient$(O):motPut" - chanB="$(P)orient$(O):motPut_Auto" - } - points { - (403,121) - (310,121) - } - } - polygon { - object { - x=397 - y=108 - width=23 - height=26 - } - "basic attribute" { - clr=17 - width=1 - } - "dynamic attribute" { - vis="calc" - calc="A||B" - chan="$(P)orient$(O):motPut" - chanB="$(P)orient$(O):motPut_Auto" - } - points { - (397,108) - (397,134) - (420,119) - (397,108) - } - } - composite { - object { - x=333 - y=97 - width=55 - height=34 - } - "composite name"="" - children { - menu { - object { - x=333 - y=97 - width=55 - height=14 - } - control { - chan="$(P)orient$(O):motPut_Auto" - clr=14 - bclr=51 - } - } - "message button" { - object { - x=333 - y=111 - width=55 - height=20 - } - control { - chan="$(P)orient$(O):motPut" - clr=14 - bclr=51 - } - label="Move" - press_msg="1" - } - } - } - composite { - object { - x=333 - y=154 - width=55 - height=34 - } - "composite name"="" - children { - menu { - object { - x=333 - y=154 - width=55 - height=14 - } - control { - chan="$(P)orient$(O):motGet_Auto" - clr=14 - bclr=51 - } - } - "message button" { - object { - x=333 - y=168 - width=55 - height=20 - } - control { - chan="$(P)orient$(O):motGet" - clr=14 - bclr=51 - } - label="Read" - press_msg="1" - } - } - } - polyline { - object { - x=317 - y=174 - width=99 - height=7 - } - "basic attribute" { - clr=17 - fill="outline" - width=6 - } - "dynamic attribute" { - vis="calc" - calc="A||B" - chan="$(P)orient$(O):motGet" - chanB="$(P)orient$(O):motGet_Auto" - } - points { - (320,178) - (413,177) - } - } - polygon { - object { - x=305 - y=165 - width=23 - height=26 - } - "basic attribute" { - clr=17 - width=1 - } - "dynamic attribute" { - vis="calc" - calc="A||B" - chan="$(P)orient$(O):motGet" - chanB="$(P)orient$(O):motGet_Auto" - } - points { - (328,165) - (328,191) - (305,176) - (328,165) - } - } - } - } - } -} -composite { +"text entry" { object { - x=180 - y=66 - width=121 - height=131 - } - "composite name"="" - children { - text { - object { - x=181 - y=66 - width=120 - height=10 - } - "basic attribute" { - clr=14 - } - textix="HKL/ANGLE CONSTRAINT:" - align="horiz. centered" - } - menu { - object { - x=181 - y=77 - width=120 - height=20 - } - control { - chan="$(P)orient$(O):Mode" - clr=14 - bclr=51 - } - } - "text entry" { - object { - x=213 - y=129 - width=80 - height=20 - } - control { - chan="$(P)orient$(O):TH" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=213 - y=152 - width=80 - height=20 - } - control { - chan="$(P)orient$(O):CHI" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=213 - y=175 - width=80 - height=20 - } - control { - chan="$(P)orient$(O):PHI" - clr=14 - bclr=51 - } - limits { - } - } - text { - object { - x=180 - y=130 - width=30 - height=20 - } - "basic attribute" { - clr=14 - } - textix="TH" - } - text { - object { - x=180 - y=153 - width=30 - height=20 - } - "basic attribute" { - clr=14 - } - textix="CHI" - } - text { - object { - x=180 - y=176 - width=30 - height=20 - } - "basic attribute" { - clr=14 - } - textix="PHI" - } - rectangle { - object { - x=210 - y=128 - width=85 - height=24 - } - "basic attribute" { - clr=16 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)orient$(O):TH_busy" - } - } - rectangle { - object { - x=210 - y=150 - width=85 - height=24 - } - "basic attribute" { - clr=16 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)orient$(O):CHI_busy" - } - } - rectangle { - object { - x=210 - y=173 - width=85 - height=24 - } - "basic attribute" { - clr=16 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)orient$(O):PHI_busy" - } - } - "text entry" { - object { - x=213 - y=106 - width=80 - height=20 - } - control { - chan="$(P)orient$(O):TTH" - clr=14 - bclr=51 - } - limits { - } - } - rectangle { - object { - x=210 - y=104 - width=85 - height=24 - } - "basic attribute" { - clr=16 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)orient$(O):TTH_busy" - } - } - text { - object { - x=180 - y=107 - width=30 - height=20 - } - "basic attribute" { - clr=14 - } - textix="TTH" - } - } -} -composite { + x=313 + y=474 + width=70 + height=20 + } + control { + chan="$(P)orient$(O):A0_21" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { object { - x=132 - y=135 - width=20 - height=25 + x=313 + y=494 + width=70 + height=20 + } + control { + chan="$(P)orient$(O):A0_31" + clr=14 + bclr=51 } - "composite name"="" - children { - text { - object { - x=136 - y=138 - width=10 - height=10 - } - "basic attribute" { - clr=14 - } - textix="OM" - align="horiz. centered" - } - text { - object { - x=136 - y=149 - width=10 - height=10 - } - "basic attribute" { - clr=14 - } - textix="A0" - align="horiz. centered" - } - rectangle { - object { - x=132 - y=135 - width=20 - height=25 - } - "basic attribute" { - clr=14 - fill="outline" - width=2 - } - } + limits { } } -polygon { +"text entry" { object { - x=152 - y=140 - width=17 - height=17 + x=383 + y=454 + width=70 + height=20 + } + control { + chan="$(P)orient$(O):A0_12" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=383 + y=474 + width=70 + height=20 + } + control { + chan="$(P)orient$(O):A0_22" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=383 + y=494 + width=70 + height=20 + } + control { + chan="$(P)orient$(O):A0_32" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=453 + y=454 + width=70 + height=20 + } + control { + chan="$(P)orient$(O):A0_13" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=453 + y=474 + width=70 + height=20 + } + control { + chan="$(P)orient$(O):A0_23" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=453 + y=494 + width=70 + height=20 + } + control { + chan="$(P)orient$(O):A0_33" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=228 + y=457 + width=10 + height=10 + } + "basic attribute" { + clr=14 + } + textix="o" +} +text { + object { + x=228 + y=478 + width=10 + height=10 + } + "basic attribute" { + clr=14 + } + textix="o" +} +text { + object { + x=228 + y=498 + width=10 + height=10 + } + "basic attribute" { + clr=14 + } + textix="o" +} +"text entry" { + object { + x=155 + y=457 + width=70 + height=20 + } + control { + chan="$(P)orient$(O):alpha" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=155 + y=477 + width=70 + height=20 + } + control { + chan="$(P)orient$(O):beta" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=155 + y=497 + width=70 + height=20 + } + control { + chan="$(P)orient$(O):gamma" + clr=14 + bclr=51 + } + limits { + } +} +polyline { + object { + x=246 + y=482 + width=31 + height=6 } "basic attribute" { clr=17 - width=1 + fill="outline" + width=6 } points { - (152,140) - (169,147) - (152,155) - (152,157) - (152,140) + (274,485) + (249,485) } } polygon { object { - x=115 - y=140 - width=17 - height=17 + x=273 + y=475 + width=20 + height=20 } "basic attribute" { clr=17 width=1 } points { - (132,140) - (115,147) - (132,155) - (132,157) - (132,140) + (273,475) + (293,485) + (273,494) + (273,495) + (273,475) } } text { object { - x=128 - y=117 + x=254 + y=461 width=30 height=14 } @@ -2662,347 +1858,898 @@ text { textix="AUTO" align="horiz. centered" } -composite { +text { object { - x=425 - y=53 - width=114 - height=177 - } - "composite name"="" - children { - "text update" { - object { - x=457 - y=133 - width=80 - height=14 - } - monitor { - chan="$(PM)$(mCHI).RBV" - clr=54 - bclr=2 - } - align="horiz. centered" - limits { - } - } - rectangle { - object { - x=455 - y=147 - width=84 - height=24 - } - "basic attribute" { - clr=20 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="calc" - calc="A=0" - chan="$(P)orient$(O):motCHI_Connected" - } - } - "text entry" { - object { - x=457 - y=149 - width=80 - height=20 - } - control { - chan="$(PM)$(mCHI)" - clr=14 - bclr=51 - } - limits { - } - } - rectangle { - object { - x=455 - y=147 - width=84 - height=24 - } - "basic attribute" { - clr=16 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)orient$(O):waiting4motCHI" - } - } - rectangle { - object { - x=455 - y=107 - width=84 - height=24 - } - "basic attribute" { - clr=20 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="calc" - calc="A=0" - chan="$(P)orient$(O):motTH_Connected" - } - } - rectangle { - object { - x=455 - y=107 - width=84 - height=24 - } - "basic attribute" { - clr=16 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)orient$(O):waiting4motTH" - } - } - "text update" { - object { - x=457 - y=93 - width=80 - height=14 - } - monitor { - chan="$(PM)$(mTH).RBV" - clr=54 - bclr=2 - } - align="horiz. centered" - limits { - } - } - "text entry" { - object { - x=457 - y=109 - width=80 - height=20 - } - control { - chan="$(PM)$(mTH)" - clr=14 - bclr=51 - } - limits { - } - } - "text update" { - object { - x=457 - y=53 - width=80 - height=14 - } - monitor { - chan="$(PM)$(mTTH).RBV" - clr=54 - bclr=2 - } - align="horiz. centered" - limits { - } - } - rectangle { - object { - x=455 - y=67 - width=84 - height=24 - } - "basic attribute" { - clr=20 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="calc" - calc="A=0" - chan="$(P)orient$(O):motTTH_Connected" - } - } - "text entry" { - object { - x=457 - y=69 - width=80 - height=20 - } - control { - chan="$(PM)$(mTTH)" - clr=14 - bclr=51 - } - limits { - } - } - rectangle { - object { - x=455 - y=67 - width=84 - height=24 - } - "basic attribute" { - clr=16 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)orient$(O):waiting4motTTH" - } - } - text { - object { - x=455 - y=210 - width=84 - height=20 - } - "basic attribute" { - clr=17 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)orient$(O):waiting4Mot" - } - textix="Moving" - align="horiz. centered" - } - "text update" { - object { - x=457 - y=173 - width=80 - height=14 - } - monitor { - chan="$(PM)$(mPHI).RBV" - clr=54 - bclr=2 - } - align="horiz. centered" - limits { - } - } - rectangle { - object { - x=455 - y=187 - width=84 - height=24 - } - "basic attribute" { - clr=20 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="calc" - calc="A=0" - chan="$(P)orient$(O):motPHI_Connected" - } - } - "text entry" { - object { - x=457 - y=189 - width=80 - height=20 - } - control { - chan="$(PM)$(mPHI)" - clr=14 - bclr=51 - } - limits { - } - } - rectangle { - object { - x=455 - y=187 - width=84 - height=24 - } - "basic attribute" { - clr=16 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)orient$(O):waiting4motPHI" - } - } - text { - object { - x=425 - y=70 - width=30 - height=20 - } - "basic attribute" { - clr=14 - } - textix="TTH" - align="horiz. centered" - } - text { - object { - x=425 - y=110 - width=30 - height=20 - } - "basic attribute" { - clr=14 - } - textix="TH" - align="horiz. centered" - } - text { - object { - x=425 - y=150 - width=30 - height=20 - } - "basic attribute" { - clr=14 - } - textix="CHI" - align="horiz. centered" - } - text { - object { - x=425 - y=190 - width=30 - height=20 - } - "basic attribute" { - clr=14 - } - textix="PHI" - align="horiz. centered" - } + x=13 + y=522 + width=75 + height=14 + } + "basic attribute" { + clr=14 + } + textix="Wavelength:" + align="horiz. centered" +} +"text entry" { + object { + x=94 + y=521 + width=70 + height=20 + } + control { + chan="$(P)orient$(O):lambda" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=165 + y=523 + width=10 + height=20 + } + "basic attribute" { + clr=14 + } + textix="A" +} +text { + object { + x=167 + y=518 + width=10 + height=10 } + "basic attribute" { + clr=14 + } + textix="o" +} +text { + object { + x=13 + y=542 + width=75 + height=14 + } + "basic attribute" { + clr=14 + } + textix="Energy:" + align="horiz. centered" +} +"text entry" { + object { + x=94 + y=541 + width=70 + height=20 + } + control { + chan="$(P)orient$(O):energy" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=165 + y=543 + width=10 + height=20 + } + "basic attribute" { + clr=14 + } + textix="keV" +} +"message button" { + object { + x=299 + y=203 + width=120 + height=28 + } + control { + chan="$(P)orient$(O):stopMotors" + clr=30 + bclr=20 + } + label="Stop Motors" + press_msg="1" +} +menu { + object { + x=335 + y=62 + width=50 + height=20 + } + control { + chan="$(P)orient$(O):Busy" + clr=14 + bclr=51 + } +} +polyline { + object { + x=307 + y=118 + width=99 + height=6 + } + "basic attribute" { + clr=17 + fill="outline" + width=6 + } + "dynamic attribute" { + vis="calc" + calc="A||B" + chan="$(P)orient$(O):motPut" + chanB="$(P)orient$(O):motPut_Auto" + } + points { + (403,121) + (310,121) + } +} +polygon { + object { + x=397 + y=108 + width=23 + height=26 + } + "basic attribute" { + clr=17 + width=1 + } + "dynamic attribute" { + vis="calc" + calc="A||B" + chan="$(P)orient$(O):motPut" + chanB="$(P)orient$(O):motPut_Auto" + } + points { + (397,108) + (397,134) + (420,119) + (397,108) + } +} +menu { + object { + x=333 + y=97 + width=55 + height=14 + } + control { + chan="$(P)orient$(O):motPut_Auto" + clr=14 + bclr=51 + } +} +"message button" { + object { + x=333 + y=111 + width=55 + height=20 + } + control { + chan="$(P)orient$(O):motPut" + clr=14 + bclr=51 + } + label="Move" + press_msg="1" +} +menu { + object { + x=333 + y=154 + width=55 + height=14 + } + control { + chan="$(P)orient$(O):motGet_Auto" + clr=14 + bclr=51 + } +} +"message button" { + object { + x=333 + y=168 + width=55 + height=20 + } + control { + chan="$(P)orient$(O):motGet" + clr=14 + bclr=51 + } + label="Read" + press_msg="1" +} +polyline { + object { + x=317 + y=174 + width=99 + height=7 + } + "basic attribute" { + clr=17 + fill="outline" + width=6 + } + "dynamic attribute" { + vis="calc" + calc="A||B" + chan="$(P)orient$(O):motGet" + chanB="$(P)orient$(O):motGet_Auto" + } + points { + (320,178) + (413,177) + } +} +polygon { + object { + x=305 + y=165 + width=23 + height=26 + } + "basic attribute" { + clr=17 + width=1 + } + "dynamic attribute" { + vis="calc" + calc="A||B" + chan="$(P)orient$(O):motGet" + chanB="$(P)orient$(O):motGet_Auto" + } + points { + (328,165) + (328,191) + (305,176) + (328,165) + } +} +text { + object { + x=181 + y=66 + width=120 + height=10 + } + "basic attribute" { + clr=14 + } + textix="HKL/ANGLE CONSTRAINT:" + align="horiz. centered" +} +menu { + object { + x=181 + y=77 + width=120 + height=20 + } + control { + chan="$(P)orient$(O):Mode" + clr=14 + bclr=51 + } +} +"text entry" { + object { + x=213 + y=129 + width=80 + height=20 + } + control { + chan="$(P)orient$(O):TH" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=213 + y=152 + width=80 + height=20 + } + control { + chan="$(P)orient$(O):CHI" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=213 + y=175 + width=80 + height=20 + } + control { + chan="$(P)orient$(O):PHI" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=180 + y=130 + width=30 + height=20 + } + "basic attribute" { + clr=14 + } + textix="TH" +} +text { + object { + x=180 + y=153 + width=30 + height=20 + } + "basic attribute" { + clr=14 + } + textix="CHI" +} +text { + object { + x=180 + y=176 + width=30 + height=20 + } + "basic attribute" { + clr=14 + } + textix="PHI" +} +rectangle { + object { + x=210 + y=128 + width=85 + height=24 + } + "basic attribute" { + clr=16 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)orient$(O):TH_busy" + } +} +rectangle { + object { + x=210 + y=150 + width=85 + height=24 + } + "basic attribute" { + clr=16 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)orient$(O):CHI_busy" + } +} +rectangle { + object { + x=210 + y=173 + width=85 + height=24 + } + "basic attribute" { + clr=16 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)orient$(O):PHI_busy" + } +} +"text entry" { + object { + x=213 + y=106 + width=80 + height=20 + } + control { + chan="$(P)orient$(O):TTH" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { + object { + x=210 + y=104 + width=85 + height=24 + } + "basic attribute" { + clr=16 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)orient$(O):TTH_busy" + } +} +text { + object { + x=180 + y=107 + width=30 + height=20 + } + "basic attribute" { + clr=14 + } + textix="TTH" +} +text { + object { + x=136 + y=138 + width=10 + height=10 + } + "basic attribute" { + clr=14 + } + textix="OM" + align="horiz. centered" +} +text { + object { + x=136 + y=149 + width=10 + height=10 + } + "basic attribute" { + clr=14 + } + textix="A0" + align="horiz. centered" +} +rectangle { + object { + x=132 + y=135 + width=20 + height=25 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } +} +polygon { + object { + x=152 + y=140 + width=17 + height=17 + } + "basic attribute" { + clr=17 + width=1 + } + points { + (152,140) + (169,147) + (152,155) + (152,157) + (152,140) + } +} +polygon { + object { + x=115 + y=140 + width=17 + height=17 + } + "basic attribute" { + clr=17 + width=1 + } + points { + (132,140) + (115,147) + (132,155) + (132,157) + (132,140) + } +} +text { + object { + x=128 + y=117 + width=30 + height=14 + } + "basic attribute" { + clr=14 + } + textix="AUTO" + align="horiz. centered" +} +"text update" { + object { + x=457 + y=133 + width=80 + height=14 + } + monitor { + chan="$(PM)$(mCHI).RBV" + clr=54 + bclr=2 + } + align="horiz. centered" + limits { + } +} +rectangle { + object { + x=455 + y=147 + width=84 + height=24 + } + "basic attribute" { + clr=20 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="calc" + calc="A=0" + chan="$(P)orient$(O):motCHI_Connected" + } +} +"text entry" { + object { + x=457 + y=149 + width=80 + height=20 + } + control { + chan="$(PM)$(mCHI)" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { + object { + x=455 + y=147 + width=84 + height=24 + } + "basic attribute" { + clr=16 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)orient$(O):waiting4motCHI" + } +} +rectangle { + object { + x=455 + y=107 + width=84 + height=24 + } + "basic attribute" { + clr=20 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="calc" + calc="A=0" + chan="$(P)orient$(O):motTH_Connected" + } +} +rectangle { + object { + x=455 + y=107 + width=84 + height=24 + } + "basic attribute" { + clr=16 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)orient$(O):waiting4motTH" + } +} +"text update" { + object { + x=457 + y=93 + width=80 + height=14 + } + monitor { + chan="$(PM)$(mTH).RBV" + clr=54 + bclr=2 + } + align="horiz. centered" + limits { + } +} +"text entry" { + object { + x=457 + y=109 + width=80 + height=20 + } + control { + chan="$(PM)$(mTH)" + clr=14 + bclr=51 + } + limits { + } +} +"text update" { + object { + x=457 + y=53 + width=80 + height=14 + } + monitor { + chan="$(PM)$(mTTH).RBV" + clr=54 + bclr=2 + } + align="horiz. centered" + limits { + } +} +rectangle { + object { + x=455 + y=67 + width=84 + height=24 + } + "basic attribute" { + clr=20 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="calc" + calc="A=0" + chan="$(P)orient$(O):motTTH_Connected" + } +} +"text entry" { + object { + x=457 + y=69 + width=80 + height=20 + } + control { + chan="$(PM)$(mTTH)" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { + object { + x=455 + y=67 + width=84 + height=24 + } + "basic attribute" { + clr=16 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)orient$(O):waiting4motTTH" + } +} +text { + object { + x=455 + y=210 + width=84 + height=20 + } + "basic attribute" { + clr=17 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)orient$(O):waiting4Mot" + } + textix="Moving" + align="horiz. centered" +} +"text update" { + object { + x=457 + y=173 + width=80 + height=14 + } + monitor { + chan="$(PM)$(mPHI).RBV" + clr=54 + bclr=2 + } + align="horiz. centered" + limits { + } +} +rectangle { + object { + x=455 + y=187 + width=84 + height=24 + } + "basic attribute" { + clr=20 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="calc" + calc="A=0" + chan="$(P)orient$(O):motPHI_Connected" + } +} +"text entry" { + object { + x=457 + y=189 + width=80 + height=20 + } + control { + chan="$(PM)$(mPHI)" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { + object { + x=455 + y=187 + width=84 + height=24 + } + "basic attribute" { + clr=16 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)orient$(O):waiting4motPHI" + } +} +text { + object { + x=425 + y=70 + width=30 + height=20 + } + "basic attribute" { + clr=14 + } + textix="TTH" + align="horiz. centered" +} +text { + object { + x=425 + y=110 + width=30 + height=20 + } + "basic attribute" { + clr=14 + } + textix="TH" + align="horiz. centered" +} +text { + object { + x=425 + y=150 + width=30 + height=20 + } + "basic attribute" { + clr=14 + } + textix="CHI" + align="horiz. centered" +} +text { + object { + x=425 + y=190 + width=30 + height=20 + } + "basic attribute" { + clr=14 + } + textix="PHI" + align="horiz. centered" } diff --git a/opticsApp/op/adl/orient_slave.adl b/opticsApp/op/adl/orient_slave.adl index 99558fb..07ef3f2 100644 --- a/opticsApp/op/adl/orient_slave.adl +++ b/opticsApp/op/adl/orient_slave.adl @@ -1,7 +1,7 @@ file { - name="/APSshare/epics/synApps_cvs/support/optics/opticsApp/op/adl/orient_slave.adl" - version=030004 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/orient_slave.adl" + version=030111 } display { object { @@ -406,59 +406,48 @@ rectangle { limits { } } -composite { +text { object { x=10 + y=120 + width=10 + height=20 + } + "basic attribute" { + clr=14 + } + textix="K" +} +"text entry" { + object { + x=25 + y=119 + width=80 + height=20 + } + control { + chan="$(P)orient$(O):K" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { + object { + x=23 y=117 - width=97 + width=84 height=24 } - "composite name"="" - children { - text { - object { - x=10 - y=120 - width=10 - height=20 - } - "basic attribute" { - clr=14 - } - textix="K" - } - "text entry" { - object { - x=25 - y=119 - width=80 - height=20 - } - control { - chan="$(P)orient$(O):K" - clr=14 - bclr=51 - } - limits { - } - } - rectangle { - object { - x=23 - y=117 - width=84 - height=24 - } - "basic attribute" { - clr=16 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)orient$(O):K_busy" - } - } + "basic attribute" { + clr=16 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)orient$(O):K_busy" } } "text update" { @@ -583,115 +572,93 @@ rectangle { limits { } } -composite { +"message button" { + object { + x=85 + y=199 + width=20 + height=20 + } + control { + chan="$(P)orient$(O):L_tweak.A" + clr=14 + bclr=51 + } + label="+" + press_msg="1" +} +"message button" { object { x=25 y=199 - width=80 + width=20 + height=20 + } + control { + chan="$(P)orient$(O):L_tweak.B" + clr=14 + bclr=51 + } + label="-" + press_msg="1" +} +"text entry" { + object { + x=45 + y=201 + width=40 + height=18 + } + control { + chan="$(P)orient$(O):L_tweak.C" + clr=14 + bclr=51 + } + limits { + } +} +"message button" { + object { + x=85 + y=139 + width=20 height=20 } - "composite name"="" - children { - "message button" { - object { - x=85 - y=199 - width=20 - height=20 - } - control { - chan="$(P)orient$(O):L_tweak.A" - clr=14 - bclr=51 - } - label="+" - press_msg="1" - } - "message button" { - object { - x=25 - y=199 - width=20 - height=20 - } - control { - chan="$(P)orient$(O):L_tweak.B" - clr=14 - bclr=51 - } - label="-" - press_msg="1" - } - "text entry" { - object { - x=45 - y=201 - width=40 - height=18 - } - control { - chan="$(P)orient$(O):L_tweak.C" - clr=14 - bclr=51 - } - limits { - } - } - } -} -composite { + control { + chan="$(P)orient$(O):K_tweak.A" + clr=14 + bclr=51 + } + label="+" + press_msg="1" +} +"message button" { object { x=25 y=139 - width=80 + width=20 height=20 } - "composite name"="" - children { - "message button" { - object { - x=85 - y=139 - width=20 - height=20 - } - control { - chan="$(P)orient$(O):K_tweak.A" - clr=14 - bclr=51 - } - label="+" - press_msg="1" - } - "message button" { - object { - x=25 - y=139 - width=20 - height=20 - } - control { - chan="$(P)orient$(O):K_tweak.B" - clr=14 - bclr=51 - } - label="-" - press_msg="1" - } - "text entry" { - object { - x=45 - y=141 - width=40 - height=18 - } - control { - chan="$(P)orient$(O):K_tweak.C" - clr=14 - bclr=51 - } - limits { - } - } + control { + chan="$(P)orient$(O):K_tweak.B" + clr=14 + bclr=51 + } + label="-" + press_msg="1" +} +"text entry" { + object { + x=45 + y=141 + width=40 + height=18 + } + control { + chan="$(P)orient$(O):K_tweak.C" + clr=14 + bclr=51 + } + limits { } } diff --git a/opticsApp/op/adl/orient_slave_full.adl b/opticsApp/op/adl/orient_slave_full.adl index c867052..312e6f6 100644 --- a/opticsApp/op/adl/orient_slave_full.adl +++ b/opticsApp/op/adl/orient_slave_full.adl @@ -1,7 +1,7 @@ file { - name="/APSshare/epics/synApps_cvs/support/optics/opticsApp/op/adl/orient_slave_full.adl" - version=030004 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/orient_slave_full.adl" + version=030111 } display { object { @@ -305,110 +305,77 @@ text { } textix="gamma" } -composite { +text { object { x=78 + y=460 + width=10 + height=20 + } + "basic attribute" { + clr=14 + } + textix="A" +} +text { + object { + x=80 y=455 - width=12 - height=25 + width=10 + height=10 + } + "basic attribute" { + clr=14 } - "composite name"="" - children { - text { - object { - x=78 - y=460 - width=10 - height=20 - } - "basic attribute" { - clr=14 - } - textix="A" - } - text { - object { - x=80 - y=455 - width=10 - height=10 - } - "basic attribute" { - clr=14 - } - textix="o" - } - } -} -composite { + textix="o" +} +text { object { x=78 + y=480 + width=10 + height=20 + } + "basic attribute" { + clr=14 + } + textix="A" +} +text { + object { + x=80 y=475 - width=12 - height=25 + width=10 + height=10 + } + "basic attribute" { + clr=14 } - "composite name"="" - children { - text { - object { - x=78 - y=480 - width=10 - height=20 - } - "basic attribute" { - clr=14 - } - textix="A" - } - text { - object { - x=80 - y=475 - width=10 - height=10 - } - "basic attribute" { - clr=14 - } - textix="o" - } - } -} -composite { + textix="o" +} +text { object { x=78 + y=500 + width=10 + height=20 + } + "basic attribute" { + clr=14 + } + textix="A" +} +text { + object { + x=80 y=495 - width=12 - height=25 + width=10 + height=10 } - "composite name"="" - children { - text { - object { - x=78 - y=500 - width=10 - height=20 - } - "basic attribute" { - clr=14 - } - textix="A" - } - text { - object { - x=80 - y=495 - width=10 - height=10 - } - "basic attribute" { - clr=14 - } - textix="o" - } + "basic attribute" { + clr=14 } + textix="o" } rectangle { object { @@ -1130,59 +1097,48 @@ rectangle { limits { } } -composite { +text { object { x=10 + y=131 + width=10 + height=20 + } + "basic attribute" { + clr=14 + } + textix="K" +} +"text entry" { + object { + x=25 + y=130 + width=80 + height=20 + } + control { + chan="$(P)orient$(O):K" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { + object { + x=23 y=128 - width=97 + width=84 height=24 } - "composite name"="" - children { - text { - object { - x=10 - y=131 - width=10 - height=20 - } - "basic attribute" { - clr=14 - } - textix="K" - } - "text entry" { - object { - x=25 - y=130 - width=80 - height=20 - } - control { - chan="$(P)orient$(O):K" - clr=14 - bclr=51 - } - limits { - } - } - rectangle { - object { - x=23 - y=128 - width=84 - height=24 - } - "basic attribute" { - clr=16 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)orient$(O):K_busy" - } - } + "basic attribute" { + clr=16 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)orient$(O):K_busy" } } "message button" { @@ -1335,40 +1291,29 @@ rectangle { chan="$(P)orient$(O):H_busy" } } -composite { +text { object { x=10 y=258 width=55 - height=20 + height=10 + } + "basic attribute" { + clr=14 + } + textix="PRIMARY" +} +text { + object { + x=10 + y=268 + width=55 + height=10 } - "composite name"="" - children { - text { - object { - x=10 - y=258 - width=55 - height=10 - } - "basic attribute" { - clr=14 - } - textix="PRIMARY" - } - text { - object { - x=10 - y=268 - width=55 - height=10 - } - "basic attribute" { - clr=14 - } - textix="REFLECTION" - } + "basic attribute" { + clr=14 } + textix="REFLECTION" } text { object { @@ -1497,880 +1442,737 @@ rectangle { limits { } } -composite { +"text entry" { object { x=379 y=336 width=70 - height=60 - } - "composite name"="" - children { - "text entry" { - object { - x=379 - y=336 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):OMTX_12" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=379 - y=356 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):OMTX_22" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=379 - y=376 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):OMTX_32" - clr=14 - bclr=51 - } - limits { - } - } - } -} -composite { - object { - x=449 - y=336 - width=70 - height=60 - } - "composite name"="" - children { - "text entry" { - object { - x=449 - y=336 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):OMTX_13" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=449 - y=356 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):OMTX_23" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=449 - y=376 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):OMTX_33" - clr=14 - bclr=51 - } - limits { - } - } - } -} -composite { - object { - x=309 - y=336 - width=70 - height=60 - } - "composite name"="" - children { - "text entry" { - object { - x=309 - y=336 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):OMTX_11" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=309 - y=356 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):OMTX_21" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=309 - y=376 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):OMTX_31" - clr=14 - bclr=51 - } - limits { - } - } - } -} -composite { - object { - x=313 - y=454 - width=70 - height=60 - } - "composite name"="" - children { - "text entry" { - object { - x=313 - y=454 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):A0_11" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=313 - y=474 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):A0_21" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=313 - y=494 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):A0_31" - clr=14 - bclr=51 - } - limits { - } - } - } -} -composite { - object { - x=383 - y=454 - width=70 - height=60 - } - "composite name"="" - children { - "text entry" { - object { - x=383 - y=454 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):A0_12" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=383 - y=474 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):A0_22" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=383 - y=494 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):A0_32" - clr=14 - bclr=51 - } - limits { - } - } - } -} -composite { - object { - x=453 - y=454 - width=70 - height=60 - } - "composite name"="" - children { - composite { - object { - x=453 - y=454 - width=70 - height=60 - } - "composite name"="" - children { - "text entry" { - object { - x=453 - y=454 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):A0_13" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=453 - y=474 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):A0_23" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=453 - y=494 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):A0_33" - clr=14 - bclr=51 - } - limits { - } - } - } - } + height=20 + } + control { + chan="$(P)orient$(O):OMTX_12" + clr=14 + bclr=51 + } + limits { } } -text { +"text entry" { object { - x=228 - y=457 - width=10 - height=10 + x=379 + y=356 + width=70 + height=20 } - "basic attribute" { + control { + chan="$(P)orient$(O):OMTX_22" clr=14 + bclr=51 + } + limits { } - textix="o" } -text { +"text entry" { object { - x=228 - y=478 - width=10 - height=10 + x=379 + y=376 + width=70 + height=20 } - "basic attribute" { + control { + chan="$(P)orient$(O):OMTX_32" clr=14 + bclr=51 + } + limits { } - textix="o" } -text { +"text entry" { object { - x=228 - y=498 - width=10 - height=10 + x=449 + y=336 + width=70 + height=20 } - "basic attribute" { + control { + chan="$(P)orient$(O):OMTX_13" clr=14 + bclr=51 + } + limits { } - textix="o" } -composite { +"text entry" { object { - x=155 - y=457 + x=449 + y=356 width=70 - height=60 - } - "composite name"="" - children { - "text entry" { - object { - x=155 - y=457 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):alpha" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=155 - y=477 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):beta" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=155 - y=497 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):gamma" - clr=14 - bclr=51 - } - limits { - } - } - } -} -composite { - object { - x=246 - y=475 - width=47 - height=20 - } - "composite name"="" - children { - polyline { - object { - x=246 - y=482 - width=31 - height=6 - } - "basic attribute" { - clr=17 - fill="outline" - width=6 - } - points { - (274,485) - (249,485) - } - } - polygon { - object { - x=273 - y=475 - width=20 - height=20 - } - "basic attribute" { - clr=17 - width=1 - } - points { - (273,475) - (293,485) - (273,494) - (273,495) - (273,475) - } - } + height=20 + } + control { + chan="$(P)orient$(O):OMTX_23" + clr=14 + bclr=51 + } + limits { } } -text { +"text entry" { object { - x=254 - y=461 - width=30 - height=14 + x=449 + y=376 + width=70 + height=20 } - "basic attribute" { + control { + chan="$(P)orient$(O):OMTX_33" clr=14 + bclr=51 + } + limits { } - textix="AUTO" - align="horiz. centered" } -composite { +"text entry" { object { - x=13 - y=518 - width=164 - height=25 + x=309 + y=336 + width=70 + height=20 + } + control { + chan="$(P)orient$(O):OMTX_11" + clr=14 + bclr=51 } - "composite name"="" - children { - text { - object { - x=13 - y=522 - width=75 - height=14 - } - "basic attribute" { - clr=14 - } - textix="Wavelength:" - align="horiz. centered" - } - "text entry" { - object { - x=94 - y=521 - width=70 - height=20 - } - control { - chan="$(P)orient$(O):lambda" - clr=14 - bclr=51 - } - limits { - } - } - composite { - object { - x=165 - y=518 - width=12 - height=25 - } - "composite name"="" - children { - text { - object { - x=165 - y=523 - width=10 - height=20 - } - "basic attribute" { - clr=14 - } - textix="A" - } - text { - object { - x=167 - y=518 - width=10 - height=10 - } - "basic attribute" { - clr=14 - } - textix="o" - } - } - } + limits { } } -text { +"text entry" { object { - x=13 - y=542 - width=75 - height=14 + x=309 + y=356 + width=70 + height=20 } - "basic attribute" { + control { + chan="$(P)orient$(O):OMTX_21" clr=14 + bclr=51 + } + limits { } - textix="Energy:" - align="horiz. centered" } "text entry" { object { - x=94 - y=541 + x=309 + y=376 width=70 height=20 } control { - chan="$(P)orient$(O):energy" + chan="$(P)orient$(O):OMTX_31" clr=14 bclr=51 } limits { } } -text { +"text entry" { object { - x=165 - y=543 - width=10 + x=313 + y=454 + width=70 height=20 } - "basic attribute" { + control { + chan="$(P)orient$(O):A0_11" clr=14 + bclr=51 + } + limits { } - textix="keV" } -composite { - object { - x=180 - y=66 - width=121 - height=131 - } - "composite name"="" - children { - text { - object { - x=181 - y=66 - width=120 - height=10 - } - "basic attribute" { - clr=14 - } - textix="HKL/ANGLE CONSTRAINT:" - align="horiz. centered" - } - menu { - object { - x=181 - y=77 - width=120 - height=20 - } - control { - chan="$(P)orient$(O):Mode" - clr=14 - bclr=51 - } - } - "text entry" { - object { - x=213 - y=129 - width=80 - height=20 - } - control { - chan="$(P)orient$(O):TH" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=213 - y=152 - width=80 - height=20 - } - control { - chan="$(P)orient$(O):CHI" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=213 - y=175 - width=80 - height=20 - } - control { - chan="$(P)orient$(O):PHI" - clr=14 - bclr=51 - } - limits { - } - } - text { - object { - x=180 - y=130 - width=30 - height=20 - } - "basic attribute" { - clr=14 - } - textix="TH" - } - text { - object { - x=180 - y=153 - width=30 - height=20 - } - "basic attribute" { - clr=14 - } - textix="CHI" - } - text { - object { - x=180 - y=176 - width=30 - height=20 - } - "basic attribute" { - clr=14 - } - textix="PHI" - } - rectangle { - object { - x=210 - y=128 - width=85 - height=24 - } - "basic attribute" { - clr=16 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)orient$(O):TH_busy" - } - } - rectangle { - object { - x=210 - y=150 - width=85 - height=24 - } - "basic attribute" { - clr=16 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)orient$(O):CHI_busy" - } - } - rectangle { - object { - x=210 - y=173 - width=85 - height=24 - } - "basic attribute" { - clr=16 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)orient$(O):PHI_busy" - } - } - "text entry" { - object { - x=213 - y=106 - width=80 - height=20 - } - control { - chan="$(P)orient$(O):TTH" - clr=14 - bclr=51 - } - limits { - } - } - rectangle { - object { - x=210 - y=104 - width=85 - height=24 - } - "basic attribute" { - clr=16 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)orient$(O):TTH_busy" - } - } - text { - object { - x=180 - y=107 - width=30 - height=20 - } - "basic attribute" { - clr=14 - } - textix="TTH" - } - } -} -composite { +"text entry" { + object { + x=313 + y=474 + width=70 + height=20 + } + control { + chan="$(P)orient$(O):A0_21" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=313 + y=494 + width=70 + height=20 + } + control { + chan="$(P)orient$(O):A0_31" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=383 + y=454 + width=70 + height=20 + } + control { + chan="$(P)orient$(O):A0_12" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=383 + y=474 + width=70 + height=20 + } + control { + chan="$(P)orient$(O):A0_22" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=383 + y=494 + width=70 + height=20 + } + control { + chan="$(P)orient$(O):A0_32" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=453 + y=454 + width=70 + height=20 + } + control { + chan="$(P)orient$(O):A0_13" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=453 + y=474 + width=70 + height=20 + } + control { + chan="$(P)orient$(O):A0_23" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=453 + y=494 + width=70 + height=20 + } + control { + chan="$(P)orient$(O):A0_33" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=228 + y=457 + width=10 + height=10 + } + "basic attribute" { + clr=14 + } + textix="o" +} +text { + object { + x=228 + y=478 + width=10 + height=10 + } + "basic attribute" { + clr=14 + } + textix="o" +} +text { + object { + x=228 + y=498 + width=10 + height=10 + } + "basic attribute" { + clr=14 + } + textix="o" +} +"text entry" { + object { + x=155 + y=457 + width=70 + height=20 + } + control { + chan="$(P)orient$(O):alpha" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=155 + y=477 + width=70 + height=20 + } + control { + chan="$(P)orient$(O):beta" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=155 + y=497 + width=70 + height=20 + } + control { + chan="$(P)orient$(O):gamma" + clr=14 + bclr=51 + } + limits { + } +} +polyline { + object { + x=246 + y=482 + width=31 + height=6 + } + "basic attribute" { + clr=17 + fill="outline" + width=6 + } + points { + (274,485) + (249,485) + } +} +polygon { + object { + x=273 + y=475 + width=20 + height=20 + } + "basic attribute" { + clr=17 + width=1 + } + points { + (273,475) + (293,485) + (273,494) + (273,495) + (273,475) + } +} +text { + object { + x=254 + y=461 + width=30 + height=14 + } + "basic attribute" { + clr=14 + } + textix="AUTO" + align="horiz. centered" +} +text { + object { + x=13 + y=522 + width=75 + height=14 + } + "basic attribute" { + clr=14 + } + textix="Wavelength:" + align="horiz. centered" +} +"text entry" { + object { + x=94 + y=521 + width=70 + height=20 + } + control { + chan="$(P)orient$(O):lambda" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=165 + y=523 + width=10 + height=20 + } + "basic attribute" { + clr=14 + } + textix="A" +} +text { + object { + x=167 + y=518 + width=10 + height=10 + } + "basic attribute" { + clr=14 + } + textix="o" +} +text { + object { + x=13 + y=542 + width=75 + height=14 + } + "basic attribute" { + clr=14 + } + textix="Energy:" + align="horiz. centered" +} +"text entry" { + object { + x=94 + y=541 + width=70 + height=20 + } + control { + chan="$(P)orient$(O):energy" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=165 + y=543 + width=10 + height=20 + } + "basic attribute" { + clr=14 + } + textix="keV" +} +text { + object { + x=181 + y=66 + width=120 + height=10 + } + "basic attribute" { + clr=14 + } + textix="HKL/ANGLE CONSTRAINT:" + align="horiz. centered" +} +menu { + object { + x=181 + y=77 + width=120 + height=20 + } + control { + chan="$(P)orient$(O):Mode" + clr=14 + bclr=51 + } +} +"text entry" { + object { + x=213 + y=129 + width=80 + height=20 + } + control { + chan="$(P)orient$(O):TH" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=213 + y=152 + width=80 + height=20 + } + control { + chan="$(P)orient$(O):CHI" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=213 + y=175 + width=80 + height=20 + } + control { + chan="$(P)orient$(O):PHI" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=180 + y=130 + width=30 + height=20 + } + "basic attribute" { + clr=14 + } + textix="TH" +} +text { + object { + x=180 + y=153 + width=30 + height=20 + } + "basic attribute" { + clr=14 + } + textix="CHI" +} +text { + object { + x=180 + y=176 + width=30 + height=20 + } + "basic attribute" { + clr=14 + } + textix="PHI" +} +rectangle { + object { + x=210 + y=128 + width=85 + height=24 + } + "basic attribute" { + clr=16 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)orient$(O):TH_busy" + } +} +rectangle { + object { + x=210 + y=150 + width=85 + height=24 + } + "basic attribute" { + clr=16 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)orient$(O):CHI_busy" + } +} +rectangle { + object { + x=210 + y=173 + width=85 + height=24 + } + "basic attribute" { + clr=16 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)orient$(O):PHI_busy" + } +} +"text entry" { + object { + x=213 + y=106 + width=80 + height=20 + } + control { + chan="$(P)orient$(O):TTH" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { + object { + x=210 + y=104 + width=85 + height=24 + } + "basic attribute" { + clr=16 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)orient$(O):TTH_busy" + } +} +text { + object { + x=180 + y=107 + width=30 + height=20 + } + "basic attribute" { + clr=14 + } + textix="TTH" +} +text { + object { + x=136 + y=138 + width=10 + height=10 + } + "basic attribute" { + clr=14 + } + textix="OM" + align="horiz. centered" +} +text { + object { + x=136 + y=149 + width=10 + height=10 + } + "basic attribute" { + clr=14 + } + textix="A0" + align="horiz. centered" +} +rectangle { object { x=132 y=135 width=20 height=25 } - "composite name"="" - children { - text { - object { - x=136 - y=138 - width=10 - height=10 - } - "basic attribute" { - clr=14 - } - textix="OM" - align="horiz. centered" - } - text { - object { - x=136 - y=149 - width=10 - height=10 - } - "basic attribute" { - clr=14 - } - textix="A0" - align="horiz. centered" - } - rectangle { - object { - x=132 - y=135 - width=20 - height=25 - } - "basic attribute" { - clr=14 - fill="outline" - width=2 - } - } + "basic attribute" { + clr=14 + fill="outline" + width=2 } } polygon { diff --git a/opticsApp/op/adl/pf4Bank_bare.adl b/opticsApp/op/adl/pf4Bank_bare.adl index a703848..a0ba4f9 100644 --- a/opticsApp/op/adl/pf4Bank_bare.adl +++ b/opticsApp/op/adl/pf4Bank_bare.adl @@ -1,7 +1,7 @@ file { name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/pf4Bank_bare.adl" - version=030105 + version=030111 } display { object { @@ -363,118 +363,81 @@ polygon { (8,70) } } -composite { +text { object { - x=15 + x=105 y=80 - width=100 + width=10 height=12 } - "composite name"="" - children { - text { - object { - x=105 - y=80 - width=10 - height=12 - } - "basic attribute" { - clr=14 - } - textix="1" - } - text { - object { - x=75 - y=80 - width=10 - height=12 - } - "basic attribute" { - clr=14 - } - textix="2" - } - text { - object { - x=45 - y=80 - width=10 - height=12 - } - "basic attribute" { - clr=14 - } - textix="3" - } - text { - object { - x=15 - y=80 - width=10 - height=12 - } - "basic attribute" { - clr=14 - } - textix="4" - } + "basic attribute" { + clr=14 } + textix="1" } -composite { +text { + object { + x=75 + y=80 + width=10 + height=12 + } + "basic attribute" { + clr=14 + } + textix="2" +} +text { object { x=45 + y=80 + width=10 + height=12 + } + "basic attribute" { + clr=14 + } + textix="3" +} +text { + object { + x=15 + y=80 + width=10 + height=12 + } + "basic attribute" { + clr=14 + } + textix="4" +} +"message button" { + object { + x=65 y=90 - width=40 + width=20 height=15 } - "composite name"="" - children { - composite { - object { - x=45 - y=90 - width=40 - height=15 - } - "composite name"="" - children { - "message button" { - object { - x=65 - y=90 - width=20 - height=15 - } - control { - chan="$(P)$(H)ftweak$(B).A" - clr=14 - bclr=51 - } - label="+" - press_msg="1" - } - "message button" { - object { - x=45 - y=90 - width=20 - height=15 - } - control { - chan="$(P)$(H)ftweak$(B).B" - clr=14 - bclr=51 - } - label="-" - press_msg="1" - } - } - } + control { + chan="$(P)$(H)ftweak$(B).A" + clr=14 + bclr=51 } - "dynamic attribute" { - vis="if not zero" - chan="$(P)$(H)bank$(B)" + label="+" + press_msg="1" +} +"message button" { + object { + x=45 + y=90 + width=20 + height=15 + } + control { + chan="$(P)$(H)ftweak$(B).B" + clr=14 + bclr=51 } + label="-" + press_msg="1" } diff --git a/opticsApp/op/adl/pf4Bankconfig.adl b/opticsApp/op/adl/pf4Bankconfig.adl index 0e929ce..c17960b 100644 --- a/opticsApp/op/adl/pf4Bankconfig.adl +++ b/opticsApp/op/adl/pf4Bankconfig.adl @@ -1,7 +1,7 @@ file { name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/pf4Bankconfig.adl" - version=030105 + version=030111 } display { object { @@ -166,48 +166,37 @@ polyline { (223,176) } } -composite { +"related display" { + object { + x=115 + y=155 + width=50 + height=20 + } + display[0] { + label="PF4 mono filter computed controls" + name="pf4Bankmore.adl" + args="P=$(P),H=$(H),B=$(B)" + policy="replace display" + } + clr=0 + bclr=17 + label="-more" +} +"related display" { object { x=60 y=155 - width=105 + width=55 height=20 } - "composite name"="" - children { - "related display" { - object { - x=115 - y=155 - width=50 - height=20 - } - display[0] { - label="PF4 mono filter computed controls" - name="pf4Bankmore.adl" - args="P=$(P),H=$(H),B=$(B)" - policy="replace display" - } - clr=0 - bclr=17 - label="-more" - } - "related display" { - object { - x=60 - y=155 - width=55 - height=20 - } - display[0] { - label="all" - name="pf4Bank.adl" - args="P=$(P),H=$(H),B=$(B)" - policy="replace display" - } - clr=0 - bclr=17 - label="--config" - } + display[0] { + label="all" + name="pf4Bank.adl" + args="P=$(P),H=$(H),B=$(B)" + policy="replace display" } + clr=0 + bclr=17 + label="--config" } diff --git a/opticsApp/op/adl/pf4Bankconfig_bare.adl b/opticsApp/op/adl/pf4Bankconfig_bare.adl index 0ff55b1..e0a6bf3 100644 --- a/opticsApp/op/adl/pf4Bankconfig_bare.adl +++ b/opticsApp/op/adl/pf4Bankconfig_bare.adl @@ -1,12 +1,12 @@ file { name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/pf4Bankconfig_bare.adl" - version=030105 + version=030111 } display { object { - x=439 - y=700 + x=950 + y=581 width=225 height=250 } @@ -205,45 +205,34 @@ text { } textix="keV" } -composite { +rectangle { object { x=77 y=65 width=66 height=20 } - "composite name"="" - children { - rectangle { - object { - x=77 - y=65 - width=66 - height=20 - } - "basic attribute" { - clr=20 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)$(H)bank$(B)" - } - } - rectangle { - object { - x=77 - y=65 - width=66 - height=20 - } - "basic attribute" { - clr=18 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)$(H)bank$(B)" - } - } + "basic attribute" { + clr=20 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(H)bank$(B)" + } +} +rectangle { + object { + x=77 + y=65 + width=66 + height=20 + } + "basic attribute" { + clr=18 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(H)bank$(B)" } } "message button" { @@ -450,15 +439,36 @@ composite { "composite name"="" "composite file"="pf4_other_bare.adl;P=$(P),H=$(H),N=3,B=B" } -composite { +"text entry" { object { x=110 y=105 - width=50 - height=22 + width=40 + height=20 } - "composite name"="" - "composite file"="pf4_other_bare.adl;P=$(P),H=$(H),N=4,B=B" + control { + chan="$(P)$(H)Other4B" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=150 + y=107 + width=10 + height=20 + } + "basic attribute" { + clr=20 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(H)OtherLegal4B" + } + textix="X" } text { object { diff --git a/opticsApp/op/adl/pf4Bankmore.adl b/opticsApp/op/adl/pf4Bankmore.adl index c1d6a59..891436b 100644 --- a/opticsApp/op/adl/pf4Bankmore.adl +++ b/opticsApp/op/adl/pf4Bankmore.adl @@ -1,7 +1,7 @@ file { name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/pf4Bankmore.adl" - version=030105 + version=030111 } display { object { @@ -190,614 +190,592 @@ composite { bclr=17 label="-less" } -composite { +rectangle { object { x=6 y=185 - width=138 + width=64 height=346 } - "composite name"="" - children { - composite { - object { - x=6 - y=185 - width=64 - height=346 - } - "composite name"="" - children { - rectangle { - object { - x=6 - y=185 - width=64 - height=346 - } - "basic attribute" { - clr=44 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)$(H)fPos$(B)" - } - } - rectangle { - object { - x=6 - y=185 - width=64 - height=346 - } - "basic attribute" { - clr=16 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)$(H)fPos$(B)" - } - } - rectangle { - object { - x=6 - y=185 - width=64 - height=346 - } - "basic attribute" { - clr=21 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)$(H)bank$(B)" - } - } - byte { - object { - x=10 - y=189 - width=10 - height=336 - } - monitor { - chan="$(P)$(H)bitFlag$(B)" - clr=38 - bclr=2 - } - direction="down" - sbit=0 - ebit=15 - } - } - } - "text update" { - object { - x=74 - y=254 - width=70 - height=14 - } - monitor { - chan="$(P)$(H)fPos$(B).THST" - clr=14 - bclr=2 - } - clrmod="discrete" - format="string" - limits { - } - } - "text update" { - object { - x=74 - y=233 - width=70 - height=14 - } - monitor { - chan="$(P)$(H)fPos$(B).TWST" - clr=14 - bclr=2 - } - clrmod="discrete" - format="string" - limits { - } - } - "text update" { - object { - x=74 - y=212 - width=70 - height=14 - } - monitor { - chan="$(P)$(H)fPos$(B).ONST" - clr=14 - bclr=2 - } - clrmod="discrete" - format="string" - limits { - } - } - "text update" { - object { - x=74 - y=191 - width=70 - height=14 - } - monitor { - chan="$(P)$(H)fPos$(B).ZRST" - clr=14 - bclr=2 - } - clrmod="discrete" - format="string" - limits { - } - } - "text update" { - object { - x=74 - y=276 - width=70 - height=14 - } - monitor { - chan="$(P)$(H)fPos$(B).FRST" - clr=14 - bclr=2 - } - clrmod="discrete" - format="string" - limits { - } - } - "text update" { - object { - x=74 - y=297 - width=70 - height=14 - } - monitor { - chan="$(P)$(H)fPos$(B).FVST" - clr=14 - bclr=2 - } - clrmod="discrete" - format="string" - limits { - } - } - "text update" { - object { - x=74 - y=318 - width=70 - height=14 - } - monitor { - chan="$(P)$(H)fPos$(B).SXST" - clr=14 - bclr=2 - } - clrmod="discrete" - format="string" - limits { - } - } - "text update" { - object { - x=74 - y=339 - width=70 - height=14 - } - monitor { - chan="$(P)$(H)fPos$(B).SVST" - clr=14 - bclr=2 - } - clrmod="discrete" - format="string" - limits { - } - } - "text update" { - object { - x=74 - y=360 - width=70 - height=14 - } - monitor { - chan="$(P)$(H)fPos$(B).EIST" - clr=14 - bclr=2 - } - clrmod="discrete" - format="string" - limits { - } - } - "text update" { - object { - x=74 - y=381 - width=70 - height=14 - } - monitor { - chan="$(P)$(H)fPos$(B).NIST" - clr=14 - bclr=2 - } - clrmod="discrete" - format="string" - limits { - } - } - "text update" { - object { - x=74 - y=402 - width=70 - height=14 - } - monitor { - chan="$(P)$(H)fPos$(B).TEST" - clr=14 - bclr=2 - } - clrmod="discrete" - format="string" - limits { - } - } - "text update" { - object { - x=74 - y=423 - width=70 - height=14 - } - monitor { - chan="$(P)$(H)fPos$(B).ELST" - clr=14 - bclr=2 - } - clrmod="discrete" - format="string" - limits { - } - } - "text update" { - object { - x=74 - y=444 - width=70 - height=14 - } - monitor { - chan="$(P)$(H)fPos$(B).TVST" - clr=14 - bclr=2 - } - clrmod="discrete" - format="string" - limits { - } - } - "text update" { - object { - x=74 - y=465 - width=70 - height=14 - } - monitor { - chan="$(P)$(H)fPos$(B).TTST" - clr=14 - bclr=2 - } - clrmod="discrete" - format="string" - limits { - } - } - "text update" { - object { - x=74 - y=486 - width=70 - height=14 - } - monitor { - chan="$(P)$(H)fPos$(B).FTST" - clr=14 - bclr=2 - } - clrmod="discrete" - format="string" - limits { - } - } - "text update" { - object { - x=74 - y=507 - width=70 - height=14 - } - monitor { - chan="$(P)$(H)fPos$(B).FFST" - clr=14 - bclr=2 - } - clrmod="discrete" - format="string" - limits { - } - } - "message button" { - object { - x=24 - y=191 - width=40 - height=18 - } - control { - chan="$(P)$(H)fPos$(B)" - clr=14 - bclr=2 - } - label="B 0" - release_msg="0" - clrmod="discrete" - } - "message button" { - object { - x=24 - y=212 - width=40 - height=18 - } - control { - chan="$(P)$(H)fPos$(B)" - clr=14 - bclr=2 - } - label="B 1" - release_msg="1" - clrmod="discrete" - } - "message button" { - object { - x=24 - y=233 - width=40 - height=18 - } - control { - chan="$(P)$(H)fPos$(B)" - clr=14 - bclr=2 - } - label="B 2" - release_msg="2" - clrmod="discrete" - } - "message button" { - object { - x=24 - y=254 - width=40 - height=18 - } - control { - chan="$(P)$(H)fPos$(B)" - clr=14 - bclr=2 - } - label="B 3" - release_msg="3" - clrmod="discrete" - } - "message button" { - object { - x=24 - y=276 - width=40 - height=18 - } - control { - chan="$(P)$(H)fPos$(B)" - clr=14 - bclr=2 - } - label="B 4" - release_msg="4" - clrmod="discrete" - } - "message button" { - object { - x=24 - y=297 - width=40 - height=18 - } - control { - chan="$(P)$(H)fPos$(B)" - clr=14 - bclr=2 - } - label="B 5" - release_msg="5" - clrmod="discrete" - } - "message button" { - object { - x=24 - y=318 - width=40 - height=18 - } - control { - chan="$(P)$(H)fPos$(B)" - clr=14 - bclr=2 - } - label="B 6" - release_msg="6" - clrmod="discrete" - } - "message button" { - object { - x=24 - y=339 - width=40 - height=18 - } - control { - chan="$(P)$(H)fPos$(B)" - clr=14 - bclr=2 - } - label="B 7" - release_msg="7" - clrmod="discrete" - } - "message button" { - object { - x=24 - y=360 - width=40 - height=18 - } - control { - chan="$(P)$(H)fPos$(B)" - clr=14 - bclr=2 - } - label="B 8" - release_msg="8" - clrmod="discrete" - } - "message button" { - object { - x=24 - y=381 - width=40 - height=18 - } - control { - chan="$(P)$(H)fPos$(B)" - clr=14 - bclr=2 - } - label="B 9" - release_msg="9" - clrmod="discrete" - } - "message button" { - object { - x=24 - y=402 - width=40 - height=18 - } - control { - chan="$(P)$(H)fPos$(B)" - clr=14 - bclr=2 - } - label="B 10" - release_msg="10" - clrmod="discrete" - } - "message button" { - object { - x=24 - y=423 - width=40 - height=18 - } - control { - chan="$(P)$(H)fPos$(B)" - clr=14 - bclr=2 - } - label="B 11" - release_msg="11" - clrmod="discrete" - } - "message button" { - object { - x=24 - y=444 - width=40 - height=18 - } - control { - chan="$(P)$(H)fPos$(B)" - clr=14 - bclr=2 - } - label="B 12" - release_msg="12" - clrmod="discrete" - } - "message button" { - object { - x=24 - y=465 - width=40 - height=18 - } - control { - chan="$(P)$(H)fPos$(B)" - clr=14 - bclr=2 - } - label="B 13" - release_msg="13" - clrmod="discrete" - } - "message button" { - object { - x=24 - y=486 - width=40 - height=18 - } - control { - chan="$(P)$(H)fPos$(B)" - clr=14 - bclr=2 - } - label="B 14" - release_msg="14" - clrmod="discrete" - } - "message button" { - object { - x=24 - y=507 - width=40 - height=18 - } - control { - chan="$(P)$(H)fPos$(B)" - clr=14 - bclr=2 - } - label="B 15" - release_msg="15" - clrmod="discrete" - } + "basic attribute" { + clr=44 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(H)fPos$(B)" + } +} +rectangle { + object { + x=6 + y=185 + width=64 + height=346 + } + "basic attribute" { + clr=16 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(H)fPos$(B)" + } +} +rectangle { + object { + x=6 + y=185 + width=64 + height=346 + } + "basic attribute" { + clr=21 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(H)bank$(B)" + } +} +byte { + object { + x=10 + y=189 + width=10 + height=336 + } + monitor { + chan="$(P)$(H)bitFlag$(B)" + clr=38 + bclr=2 + } + direction="down" + sbit=0 + ebit=15 +} +"text update" { + object { + x=74 + y=254 + width=70 + height=14 + } + monitor { + chan="$(P)$(H)fPos$(B).THST" + clr=14 + bclr=2 + } + clrmod="discrete" + format="string" + limits { + } +} +"text update" { + object { + x=74 + y=233 + width=70 + height=14 + } + monitor { + chan="$(P)$(H)fPos$(B).TWST" + clr=14 + bclr=2 + } + clrmod="discrete" + format="string" + limits { + } +} +"text update" { + object { + x=74 + y=212 + width=70 + height=14 + } + monitor { + chan="$(P)$(H)fPos$(B).ONST" + clr=14 + bclr=2 + } + clrmod="discrete" + format="string" + limits { + } +} +"text update" { + object { + x=74 + y=191 + width=70 + height=14 + } + monitor { + chan="$(P)$(H)fPos$(B).ZRST" + clr=14 + bclr=2 + } + clrmod="discrete" + format="string" + limits { + } +} +"text update" { + object { + x=74 + y=276 + width=70 + height=14 + } + monitor { + chan="$(P)$(H)fPos$(B).FRST" + clr=14 + bclr=2 + } + clrmod="discrete" + format="string" + limits { + } +} +"text update" { + object { + x=74 + y=297 + width=70 + height=14 + } + monitor { + chan="$(P)$(H)fPos$(B).FVST" + clr=14 + bclr=2 + } + clrmod="discrete" + format="string" + limits { + } +} +"text update" { + object { + x=74 + y=318 + width=70 + height=14 + } + monitor { + chan="$(P)$(H)fPos$(B).SXST" + clr=14 + bclr=2 + } + clrmod="discrete" + format="string" + limits { + } +} +"text update" { + object { + x=74 + y=339 + width=70 + height=14 + } + monitor { + chan="$(P)$(H)fPos$(B).SVST" + clr=14 + bclr=2 + } + clrmod="discrete" + format="string" + limits { + } +} +"text update" { + object { + x=74 + y=360 + width=70 + height=14 + } + monitor { + chan="$(P)$(H)fPos$(B).EIST" + clr=14 + bclr=2 + } + clrmod="discrete" + format="string" + limits { + } +} +"text update" { + object { + x=74 + y=381 + width=70 + height=14 + } + monitor { + chan="$(P)$(H)fPos$(B).NIST" + clr=14 + bclr=2 + } + clrmod="discrete" + format="string" + limits { + } +} +"text update" { + object { + x=74 + y=402 + width=70 + height=14 + } + monitor { + chan="$(P)$(H)fPos$(B).TEST" + clr=14 + bclr=2 + } + clrmod="discrete" + format="string" + limits { + } +} +"text update" { + object { + x=74 + y=423 + width=70 + height=14 + } + monitor { + chan="$(P)$(H)fPos$(B).ELST" + clr=14 + bclr=2 + } + clrmod="discrete" + format="string" + limits { + } +} +"text update" { + object { + x=74 + y=444 + width=70 + height=14 + } + monitor { + chan="$(P)$(H)fPos$(B).TVST" + clr=14 + bclr=2 + } + clrmod="discrete" + format="string" + limits { + } +} +"text update" { + object { + x=74 + y=465 + width=70 + height=14 + } + monitor { + chan="$(P)$(H)fPos$(B).TTST" + clr=14 + bclr=2 + } + clrmod="discrete" + format="string" + limits { + } +} +"text update" { + object { + x=74 + y=486 + width=70 + height=14 + } + monitor { + chan="$(P)$(H)fPos$(B).FTST" + clr=14 + bclr=2 + } + clrmod="discrete" + format="string" + limits { + } +} +"text update" { + object { + x=74 + y=507 + width=70 + height=14 + } + monitor { + chan="$(P)$(H)fPos$(B).FFST" + clr=14 + bclr=2 + } + clrmod="discrete" + format="string" + limits { + } +} +"message button" { + object { + x=24 + y=191 + width=40 + height=18 + } + control { + chan="$(P)$(H)fPos$(B)" + clr=14 + bclr=2 + } + label="B 0" + release_msg="0" + clrmod="discrete" +} +"message button" { + object { + x=24 + y=212 + width=40 + height=18 + } + control { + chan="$(P)$(H)fPos$(B)" + clr=14 + bclr=2 + } + label="B 1" + release_msg="1" + clrmod="discrete" +} +"message button" { + object { + x=24 + y=233 + width=40 + height=18 + } + control { + chan="$(P)$(H)fPos$(B)" + clr=14 + bclr=2 + } + label="B 2" + release_msg="2" + clrmod="discrete" +} +"message button" { + object { + x=24 + y=254 + width=40 + height=18 + } + control { + chan="$(P)$(H)fPos$(B)" + clr=14 + bclr=2 + } + label="B 3" + release_msg="3" + clrmod="discrete" +} +"message button" { + object { + x=24 + y=276 + width=40 + height=18 + } + control { + chan="$(P)$(H)fPos$(B)" + clr=14 + bclr=2 + } + label="B 4" + release_msg="4" + clrmod="discrete" +} +"message button" { + object { + x=24 + y=297 + width=40 + height=18 + } + control { + chan="$(P)$(H)fPos$(B)" + clr=14 + bclr=2 + } + label="B 5" + release_msg="5" + clrmod="discrete" +} +"message button" { + object { + x=24 + y=318 + width=40 + height=18 + } + control { + chan="$(P)$(H)fPos$(B)" + clr=14 + bclr=2 + } + label="B 6" + release_msg="6" + clrmod="discrete" +} +"message button" { + object { + x=24 + y=339 + width=40 + height=18 + } + control { + chan="$(P)$(H)fPos$(B)" + clr=14 + bclr=2 + } + label="B 7" + release_msg="7" + clrmod="discrete" +} +"message button" { + object { + x=24 + y=360 + width=40 + height=18 + } + control { + chan="$(P)$(H)fPos$(B)" + clr=14 + bclr=2 + } + label="B 8" + release_msg="8" + clrmod="discrete" +} +"message button" { + object { + x=24 + y=381 + width=40 + height=18 + } + control { + chan="$(P)$(H)fPos$(B)" + clr=14 + bclr=2 + } + label="B 9" + release_msg="9" + clrmod="discrete" +} +"message button" { + object { + x=24 + y=402 + width=40 + height=18 + } + control { + chan="$(P)$(H)fPos$(B)" + clr=14 + bclr=2 + } + label="B 10" + release_msg="10" + clrmod="discrete" +} +"message button" { + object { + x=24 + y=423 + width=40 + height=18 + } + control { + chan="$(P)$(H)fPos$(B)" + clr=14 + bclr=2 + } + label="B 11" + release_msg="11" + clrmod="discrete" +} +"message button" { + object { + x=24 + y=444 + width=40 + height=18 + } + control { + chan="$(P)$(H)fPos$(B)" + clr=14 + bclr=2 + } + label="B 12" + release_msg="12" + clrmod="discrete" +} +"message button" { + object { + x=24 + y=465 + width=40 + height=18 + } + control { + chan="$(P)$(H)fPos$(B)" + clr=14 + bclr=2 + } + label="B 13" + release_msg="13" + clrmod="discrete" +} +"message button" { + object { + x=24 + y=486 + width=40 + height=18 + } + control { + chan="$(P)$(H)fPos$(B)" + clr=14 + bclr=2 + } + label="B 14" + release_msg="14" + clrmod="discrete" +} +"message button" { + object { + x=24 + y=507 + width=40 + height=18 + } + control { + chan="$(P)$(H)fPos$(B)" + clr=14 + bclr=2 } + label="B 15" + release_msg="15" + clrmod="discrete" } diff --git a/opticsApp/op/adl/pf4_bare.adl b/opticsApp/op/adl/pf4_bare.adl index 82e140f..146dda6 100644 --- a/opticsApp/op/adl/pf4_bare.adl +++ b/opticsApp/op/adl/pf4_bare.adl @@ -1,7 +1,7 @@ file { name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/pf4_bare.adl" - version=030105 + version=030111 } display { object { @@ -507,64 +507,53 @@ polygon { (27,70) } } -composite { +text { + object { + x=124 + y=80 + width=10 + height=12 + } + "basic attribute" { + clr=14 + } + textix="1" +} +text { + object { + x=94 + y=80 + width=10 + height=12 + } + "basic attribute" { + clr=14 + } + textix="2" +} +text { + object { + x=64 + y=80 + width=10 + height=12 + } + "basic attribute" { + clr=14 + } + textix="3" +} +text { object { x=34 y=80 - width=100 + width=10 height=12 } - "composite name"="" - children { - text { - object { - x=124 - y=80 - width=10 - height=12 - } - "basic attribute" { - clr=14 - } - textix="1" - } - text { - object { - x=94 - y=80 - width=10 - height=12 - } - "basic attribute" { - clr=14 - } - textix="2" - } - text { - object { - x=64 - y=80 - width=10 - height=12 - } - "basic attribute" { - clr=14 - } - textix="3" - } - text { - object { - x=34 - y=80 - width=10 - height=12 - } - "basic attribute" { - clr=14 - } - textix="4" - } + "basic attribute" { + clr=14 } + textix="4" } polygon { object { @@ -754,174 +743,111 @@ polygon { (178,70) } } -composite { +text { + object { + x=275 + y=80 + width=10 + height=12 + } + "basic attribute" { + clr=14 + } + textix="1" +} +text { + object { + x=245 + y=80 + width=10 + height=12 + } + "basic attribute" { + clr=14 + } + textix="2" +} +text { + object { + x=215 + y=80 + width=10 + height=12 + } + "basic attribute" { + clr=14 + } + textix="3" +} +text { object { x=185 y=80 - width=100 + width=10 height=12 } - "composite name"="" - children { - text { - object { - x=275 - y=80 - width=10 - height=12 - } - "basic attribute" { - clr=14 - } - textix="1" - } - text { - object { - x=245 - y=80 - width=10 - height=12 - } - "basic attribute" { - clr=14 - } - textix="2" - } - text { - object { - x=215 - y=80 - width=10 - height=12 - } - "basic attribute" { - clr=14 - } - textix="3" - } - text { - object { - x=185 - y=80 - width=10 - height=12 - } - "basic attribute" { - clr=14 - } - textix="4" - } - } -} -composite { + "basic attribute" { + clr=14 + } + textix="4" +} +"message button" { + object { + x=235 + y=90 + width=20 + height=15 + } + control { + chan="$(P)$(H)ftweak$(A).A" + clr=14 + bclr=51 + } + label="+" + press_msg="1" +} +"message button" { object { x=215 y=90 - width=40 + width=20 height=15 } - "composite name"="" - children { - composite { - object { - x=215 - y=90 - width=40 - height=15 - } - "composite name"="" - children { - "message button" { - object { - x=235 - y=90 - width=20 - height=15 - } - control { - chan="$(P)$(H)ftweak$(A).A" - clr=14 - bclr=51 - } - label="+" - press_msg="1" - } - "message button" { - object { - x=215 - y=90 - width=20 - height=15 - } - control { - chan="$(P)$(H)ftweak$(A).B" - clr=14 - bclr=51 - } - label="-" - press_msg="1" - } - } - } + control { + chan="$(P)$(H)ftweak$(A).B" + clr=14 + bclr=51 } - "dynamic attribute" { - vis="if not zero" - chan="$(P)$(H)bank$(A)" + label="-" + press_msg="1" +} +"message button" { + object { + x=82 + y=90 + width=20 + height=15 + } + control { + chan="$(P)$(H)ftweak$(B).A" + clr=14 + bclr=51 } + label="+" + press_msg="1" } -composite { +"message button" { object { x=62 y=90 - width=40 + width=20 height=15 } - "composite name"="" - children { - composite { - object { - x=62 - y=90 - width=40 - height=15 - } - "composite name"="" - children { - "message button" { - object { - x=82 - y=90 - width=20 - height=15 - } - control { - chan="$(P)$(H)ftweak$(B).A" - clr=14 - bclr=51 - } - label="+" - press_msg="1" - } - "message button" { - object { - x=62 - y=90 - width=20 - height=15 - } - control { - chan="$(P)$(H)ftweak$(B).B" - clr=14 - bclr=51 - } - label="-" - press_msg="1" - } - } - } - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)$(H)bank$(B)" + control { + chan="$(P)$(H)ftweak$(B).B" + clr=14 + bclr=51 } + label="-" + press_msg="1" } diff --git a/opticsApp/op/adl/pf4_other_bare.adl b/opticsApp/op/adl/pf4_other_bare.adl index d4636af..8ce6a4e 100644 --- a/opticsApp/op/adl/pf4_other_bare.adl +++ b/opticsApp/op/adl/pf4_other_bare.adl @@ -1,7 +1,7 @@ file { - name="pf4_other_bare.adl" - version=030105 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/pf4_other_bare.adl" + version=030111 } display { object { @@ -87,50 +87,34 @@ display { 1a7309, } } -composite { +"text entry" { object { x=0 y=0 - width=50 - height=22 + width=40 + height=20 + } + control { + chan="$(P)$(H)Other$(N)$(B)" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=40 + y=2 + width=10 + height=20 } - "composite name"="" - children { - "text entry" { - object { - x=0 - y=0 - width=40 - height=20 - } - control { - chan="$(P)$(H)Other$(N)$(B)" - clr=14 - bclr=51 - } - limits { - } - } - text { - object { - x=40 - y=2 - width=10 - height=20 - } - "basic attribute" { - clr=20 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)$(H)OtherLegal$(N)$(B)" - } - textix="X" - } + "basic attribute" { + clr=20 } "dynamic attribute" { - vis="calc" - calc="a=3" - chan="$(P)$(H)Z$(N)$(B)" + vis="if zero" + chan="$(P)$(H)OtherLegal$(N)$(B)" } + textix="X" } diff --git a/opticsApp/op/adl/pf4config_bare.adl b/opticsApp/op/adl/pf4config_bare.adl index 1da25ba..c13b0ee 100644 --- a/opticsApp/op/adl/pf4config_bare.adl +++ b/opticsApp/op/adl/pf4config_bare.adl @@ -1,7 +1,7 @@ file { name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/pf4config_bare.adl" - version=030105 + version=030111 } display { object { @@ -217,45 +217,34 @@ text { } textix="Ge Mo Ag Sn Ta W Pt Au Pb" } -composite { +rectangle { object { x=77 y=65 width=66 height=20 } - "composite name"="" - children { - rectangle { - object { - x=77 - y=65 - width=66 - height=20 - } - "basic attribute" { - clr=20 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)$(H)bank$(B)" - } - } - rectangle { - object { - x=77 - y=65 - width=66 - height=20 - } - "basic attribute" { - clr=18 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)$(H)bank$(B)" - } - } + "basic attribute" { + clr=20 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(H)bank$(B)" + } +} +rectangle { + object { + x=77 + y=65 + width=66 + height=20 + } + "basic attribute" { + clr=18 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(H)bank$(B)" } } "message button" { @@ -653,53 +642,42 @@ rectangle { composite { object { x=275 - y=105 + y=165 width=50 - height=82 + height=22 } "composite name"="" - children { - composite { - object { - x=275 - y=165 - width=50 - height=22 - } - "composite name"="" - "composite file"="pf4_other_bare.adl;P=$(P),H=$(H),N=1,B=A" - } - composite { - object { - x=275 - y=145 - width=50 - height=22 - } - "composite name"="" - "composite file"="pf4_other_bare.adl;P=$(P),H=$(H),N=2,B=A" - } - composite { - object { - x=275 - y=125 - width=50 - height=22 - } - "composite name"="" - "composite file"="pf4_other_bare.adl;P=$(P),H=$(H),N=3,B=A" - } - composite { - object { - x=275 - y=105 - width=50 - height=22 - } - "composite name"="" - "composite file"="pf4_other_bare.adl;P=$(P),H=$(H),N=4,B=A" - } + "composite file"="pf4_other_bare.adl;P=$(P),H=$(H),N=1,B=A" +} +composite { + object { + x=275 + y=145 + width=50 + height=22 + } + "composite name"="" + "composite file"="pf4_other_bare.adl;P=$(P),H=$(H),N=2,B=A" +} +composite { + object { + x=275 + y=125 + width=50 + height=22 } + "composite name"="" + "composite file"="pf4_other_bare.adl;P=$(P),H=$(H),N=3,B=A" +} +composite { + object { + x=275 + y=105 + width=50 + height=22 + } + "composite name"="" + "composite file"="pf4_other_bare.adl;P=$(P),H=$(H),N=4,B=A" } menu { object { diff --git a/opticsApp/op/adl/pf4more.adl b/opticsApp/op/adl/pf4more.adl index 941f38b..4216bc7 100644 --- a/opticsApp/op/adl/pf4more.adl +++ b/opticsApp/op/adl/pf4more.adl @@ -1,7 +1,7 @@ file { name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/pf4more.adl" - version=030105 + version=030111 } display { object { @@ -117,77 +117,66 @@ polyline { (325,216) } } -composite { +rectangle { object { x=6 y=220 width=64 height=346 } - "composite name"="" - children { - rectangle { - object { - x=6 - y=220 - width=64 - height=346 - } - "basic attribute" { - clr=44 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)$(H)fPos$(B)" - } - } - rectangle { - object { - x=6 - y=220 - width=64 - height=346 - } - "basic attribute" { - clr=16 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)$(H)fPos$(B)" - } - } - rectangle { - object { - x=6 - y=220 - width=64 - height=346 - } - "basic attribute" { - clr=21 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)$(H)bank$(B)" - } - } - byte { - object { - x=10 - y=224 - width=10 - height=336 - } - monitor { - chan="$(P)$(H)bitFlag$(B)" - clr=38 - bclr=2 - } - direction="down" - sbit=0 - ebit=15 - } + "basic attribute" { + clr=44 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(H)fPos$(B)" + } +} +rectangle { + object { + x=6 + y=220 + width=64 + height=346 + } + "basic attribute" { + clr=16 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(H)fPos$(B)" + } +} +rectangle { + object { + x=6 + y=220 + width=64 + height=346 + } + "basic attribute" { + clr=21 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(H)bank$(B)" + } +} +byte { + object { + x=10 + y=224 + width=10 + height=336 } + monitor { + chan="$(P)$(H)bitFlag$(B)" + clr=38 + bclr=2 + } + direction="down" + sbit=0 + ebit=15 } "text update" { object { @@ -1339,8 +1328,8 @@ composite { object { x=5 y=25 - width=305 - height=189 + width=288 + height=182 } "composite name"="" "composite file"="pf4_bare.adl;" diff --git a/opticsApp/op/adl/qxbpm.adl b/opticsApp/op/adl/qxbpm.adl index e402944..f4f2d79 100644 --- a/opticsApp/op/adl/qxbpm.adl +++ b/opticsApp/op/adl/qxbpm.adl @@ -1,12 +1,12 @@ file { - name="c:\Apps\epics\ioc\local\oxfordApp\op\adl\qxbpm.adl" - version=030004 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/qxbpm.adl" + version=030111 } display { object { - x=19 - y=30 + x=848 + y=482 width=555 height=370 } @@ -171,6 +171,7 @@ text { xdata="$(P)diff:x" ydata="$(P)diff:y" data_clr=20 + yaxis=0 } x_axis { rangeStyle="user-specified" @@ -182,6 +183,7 @@ text { minRange=-0.100000 maxRange=0.100000 } + countPvName="100" } text { object { @@ -233,431 +235,343 @@ rectangle { clr=49 } } -composite { +rectangle { object { x=32 y=276 - width=268 - height=43 - } - "composite name"="" - children { - composite { - object { - x=32 - y=276 - width=12 - height=43 - } - "composite name"="" - children { - rectangle { - object { - x=32 - y=276 - width=12 - height=11 - } - "basic attribute" { - clr=20 - } - "dynamic attribute" { - vis="calc" - calc="!A&&B" - chan="$(P)current:ok" - chanB="$(P)current:low" - } - } - rectangle { - object { - x=32 - y=292 - width=12 - height=11 - } - "basic attribute" { - clr=30 - } - "dynamic attribute" { - vis="calc" - calc="A=B" - chan="$(P)current:ok" - chanB="$(P)current:low" - } - } - rectangle { - object { - x=32 - y=308 - width=12 - height=11 - } - "basic attribute" { - clr=15 - } - "dynamic attribute" { - vis="calc" - calc="A&&!B" - chan="$(P)current:ok" - chanB="$(P)current:low" - } - } - } - } - composite { - object { - x=50 - y=278 - width=250 - height=39 - } - "composite name"="" - children { - composite { - object { - x=50 - y=278 - width=250 - height=20 - } - "composite name"="" - children { - text { - object { - x=50 - y=278 - width=250 - height=20 - } - "basic attribute" { - clr=30 - } - "dynamic attribute" { - vis="calc" - calc="A=B" - chan="$(P)current:ok" - chanB="$(P)current:low" - } - textix="diode currents OK" - align="horiz. centered" - } - text { - object { - x=50 - y=278 - width=250 - height=20 - } - "basic attribute" { - clr=15 - } - "dynamic attribute" { - vis="calc" - calc="A&&!B" - chan="$(P)current:ok" - chanB="$(P)current:low" - } - textix="diode currents OK" - align="horiz. centered" - } - text { - object { - x=50 - y=278 - width=250 - height=20 - } - "basic attribute" { - clr=20 - } - "dynamic attribute" { - vis="calc" - calc="!A&&B" - chan="$(P)current:ok" - chanB="$(P)current:low" - } - textix="diode currents too low" - align="horiz. centered" - } - } - } - composite { - object { - x=50 - y=298 - width=250 - height=19 - } - "composite name"="" - children { - composite { - object { - x=50 - y=298 - width=250 - height=12 - } - "composite name"="" - children { - text { - object { - x=50 - y=298 - width=250 - height=12 - } - "basic attribute" { - clr=32 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)current:ok" - } - textix="not all diodes above threshold" - align="horiz. centered" - } - text { - object { - x=50 - y=298 - width=250 - height=12 - } - "basic attribute" { - clr=15 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)current:ok" - } - textix="all diodes above threshold" - align="horiz. centered" - } - } - } - composite { - object { - x=50 - y=307 - width=250 - height=10 - } - "composite name"="" - children { - text { - object { - x=50 - y=307 - width=250 - height=10 - } - "basic attribute" { - clr=32 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)current:low" - } - textix="not all diodes below threshold" - align="horiz. centered" - } - text { - object { - x=50 - y=307 - width=250 - height=10 - } - "basic attribute" { - clr=20 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)current:low" - } - textix="all diodes below threshold" - align="horiz. centered" - } - } - } - } - } - } - } - } -} -composite { + width=12 + height=11 + } + "basic attribute" { + clr=20 + } + "dynamic attribute" { + vis="calc" + calc="!A&&B" + chan="$(P)current:ok" + chanB="$(P)current:low" + } +} +rectangle { + object { + x=32 + y=292 + width=12 + height=11 + } + "basic attribute" { + clr=30 + } + "dynamic attribute" { + vis="calc" + calc="A=B" + chan="$(P)current:ok" + chanB="$(P)current:low" + } +} +rectangle { + object { + x=32 + y=308 + width=12 + height=11 + } + "basic attribute" { + clr=15 + } + "dynamic attribute" { + vis="calc" + calc="A&&!B" + chan="$(P)current:ok" + chanB="$(P)current:low" + } +} +text { + object { + x=50 + y=278 + width=250 + height=20 + } + "basic attribute" { + clr=30 + } + "dynamic attribute" { + vis="calc" + calc="A=B" + chan="$(P)current:ok" + chanB="$(P)current:low" + } + textix="diode currents OK" + align="horiz. centered" +} +text { + object { + x=50 + y=278 + width=250 + height=20 + } + "basic attribute" { + clr=15 + } + "dynamic attribute" { + vis="calc" + calc="A&&!B" + chan="$(P)current:ok" + chanB="$(P)current:low" + } + textix="diode currents OK" + align="horiz. centered" +} +text { + object { + x=50 + y=278 + width=250 + height=20 + } + "basic attribute" { + clr=20 + } + "dynamic attribute" { + vis="calc" + calc="!A&&B" + chan="$(P)current:ok" + chanB="$(P)current:low" + } + textix="diode currents too low" + align="horiz. centered" +} +text { + object { + x=50 + y=298 + width=250 + height=12 + } + "basic attribute" { + clr=32 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)current:ok" + } + textix="not all diodes above threshold" + align="horiz. centered" +} +text { + object { + x=50 + y=298 + width=250 + height=12 + } + "basic attribute" { + clr=15 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)current:ok" + } + textix="all diodes above threshold" + align="horiz. centered" +} +text { + object { + x=50 + y=307 + width=250 + height=10 + } + "basic attribute" { + clr=32 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)current:low" + } + textix="not all diodes below threshold" + align="horiz. centered" +} +text { + object { + x=50 + y=307 + width=250 + height=10 + } + "basic attribute" { + clr=20 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)current:low" + } + textix="all diodes below threshold" + align="horiz. centered" +} +"text update" { + object { + x=70 + y=192 + width=100 + height=20 + } + monitor { + chan="$(P)current:a" + clr=15 + bclr=14 + } + align="horiz. centered" + format="engr. notation" + limits { + } +} +"text update" { + object { + x=183 + y=192 + width=100 + height=20 + } + monitor { + chan="$(P)current:c" + clr=15 + bclr=14 + } + align="horiz. centered" + format="engr. notation" + limits { + } +} +text { + object { + x=43 + y=194 + width=20 + height=16 + } + "basic attribute" { + clr=14 + } + textix="A" + align="horiz. centered" +} +text { + object { + x=285 + y=194 + width=20 + height=16 + } + "basic attribute" { + clr=14 + } + textix="C" + align="horiz. centered" +} +"text update" { + object { + x=69 + y=220 + width=100 + height=20 + } + monitor { + chan="$(P)current:b" + clr=15 + bclr=14 + } + align="horiz. centered" + format="engr. notation" + limits { + } +} +"text update" { + object { + x=182 + y=220 + width=100 + height=20 + } + monitor { + chan="$(P)current:d" + clr=15 + bclr=14 + } + align="horiz. centered" + format="engr. notation" + limits { + } +} +text { object { x=42 + y=222 + width=20 + height=16 + } + "basic attribute" { + clr=14 + } + textix="B" + align="horiz. centered" +} +text { + object { + x=284 + y=222 + width=20 + height=16 + } + "basic attribute" { + clr=14 + } + textix="D" + align="horiz. centered" +} +text { + object { + x=77 y=174 - width=263 - height=96 - } - "composite name"="" - children { - "text update" { - object { - x=70 - y=192 - width=100 - height=20 - } - monitor { - chan="$(P)current:a" - clr=15 - bclr=14 - } - align="horiz. centered" - format="engr. notation" - limits { - } - } - "text update" { - object { - x=183 - y=192 - width=100 - height=20 - } - monitor { - chan="$(P)current:c" - clr=15 - bclr=14 - } - align="horiz. centered" - format="engr. notation" - limits { - } - } - text { - object { - x=43 - y=194 - width=20 - height=16 - } - "basic attribute" { - clr=14 - } - textix="A" - align="horiz. centered" - } - text { - object { - x=285 - y=194 - width=20 - height=16 - } - "basic attribute" { - clr=14 - } - textix="C" - align="horiz. centered" - } - "text update" { - object { - x=69 - y=220 - width=100 - height=20 - } - monitor { - chan="$(P)current:b" - clr=15 - bclr=14 - } - align="horiz. centered" - format="engr. notation" - limits { - } - } - "text update" { - object { - x=182 - y=220 - width=100 - height=20 - } - monitor { - chan="$(P)current:d" - clr=15 - bclr=14 - } - align="horiz. centered" - format="engr. notation" - limits { - } - } - text { - object { - x=42 - y=222 - width=20 - height=16 - } - "basic attribute" { - clr=14 - } - textix="B" - align="horiz. centered" - } - text { - object { - x=284 - y=222 - width=20 - height=16 - } - "basic attribute" { - clr=14 - } - textix="D" - align="horiz. centered" - } - text { - object { - x=77 - y=174 - width=200 - height=16 - } - "basic attribute" { - clr=14 - } - textix="photodiode currents" - align="horiz. centered" - } - text { - object { - x=99 - y=252 - width=20 - height=16 - } - "basic attribute" { - clr=14 - } - textix="A+B+C+D" - align="horiz. right" - } - "text update" { - object { - x=126 - y=250 - width=100 - height=20 - } - monitor { - chan="$(P)current:total" - clr=15 - bclr=14 - } - align="horiz. centered" - format="engr. notation" - limits { - } - } + width=200 + height=16 + } + "basic attribute" { + clr=14 + } + textix="photodiode currents" + align="horiz. centered" +} +text { + object { + x=99 + y=252 + width=20 + height=16 + } + "basic attribute" { + clr=14 + } + textix="A+B+C+D" + align="horiz. right" +} +"text update" { + object { + x=126 + y=250 + width=100 + height=20 + } + monitor { + chan="$(P)current:total" + clr=15 + bclr=14 + } + align="horiz. centered" + format="engr. notation" + limits { } } text { @@ -727,144 +641,122 @@ text { } stacking="column" } -composite { +"related display" { + object { + x=158 + y=140 + width=18 + height=18 + } + display[0] { + label="calculation" + name="userCalcOut.adl" + args="P=$(P),C=diff:x" + } + clr=0 + bclr=59 +} +"related display" { + object { + x=268 + y=140 + width=18 + height=18 + } + display[0] { + label="calculation" + name="userCalcOut.adl" + args="P=$(P),C=diff:y" + } + clr=0 + bclr=59 +} +text { object { x=11 + y=141 + width=50 + height=16 + } + "basic attribute" { + clr=14 + } + textix="diff" + align="horiz. centered" +} +"text update" { + object { + x=71 y=140 - width=275 + width=84 height=20 } - "composite name"="" - children { - "related display" { - object { - x=158 - y=140 - width=18 - height=18 - } - display[0] { - label="calculation" - name="userCalcOut.adl" - args="P=$(P),C=diff:x" - } - clr=0 - bclr=59 - } - "related display" { - object { - x=268 - y=140 - width=18 - height=18 - } - display[0] { - label="calculation" - name="userCalcOut.adl" - args="P=$(P),C=diff:y" - } - clr=0 - bclr=59 - } - text { - object { - x=11 - y=141 - width=50 - height=16 - } - "basic attribute" { - clr=14 - } - textix="diff" - align="horiz. centered" - } - "text update" { - object { - x=71 - y=140 - width=84 - height=20 - } - monitor { - chan="$(P)diff:x" - clr=15 - bclr=14 - } - align="horiz. centered" - limits { - } - } - "text update" { - object { - x=184 - y=140 - width=84 - height=20 - } - monitor { - chan="$(P)diff:y" - clr=15 - bclr=14 - } - align="horiz. centered" - limits { - } - } - } -} -composite { + monitor { + chan="$(P)diff:x" + clr=15 + bclr=14 + } + align="horiz. centered" + limits { + } +} +"text update" { + object { + x=184 + y=140 + width=84 + height=20 + } + monitor { + chan="$(P)diff:y" + clr=15 + bclr=14 + } + align="horiz. centered" + limits { + } +} +text { object { x=11 + y=116 + width=50 + height=16 + } + "basic attribute" { + clr=14 + } + textix="ref" + align="horiz. centered" +} +"text entry" { + object { + x=71 y=114 - width=273 + width=100 height=20 } - "composite name"="" - children { - text { - object { - x=11 - y=116 - width=50 - height=16 - } - "basic attribute" { - clr=14 - } - textix="ref" - align="horiz. centered" - } - "text entry" { - object { - x=71 - y=114 - width=100 - height=20 - } - control { - chan="$(P)ref:x" - clr=14 - bclr=56 - } - limits { - } - } - "text entry" { - object { - x=184 - y=114 - width=100 - height=20 - } - control { - chan="$(P)ref:y" - clr=14 - bclr=56 - } - limits { - } - } + control { + chan="$(P)ref:x" + clr=14 + bclr=56 + } + limits { + } +} +"text entry" { + object { + x=184 + y=114 + width=100 + height=20 + } + control { + chan="$(P)ref:y" + clr=14 + bclr=56 + } + limits { } } "text update" { diff --git a/opticsApp/op/adl/qxbpm_calib.adl b/opticsApp/op/adl/qxbpm_calib.adl index 74f83fc..9b21957 100644 --- a/opticsApp/op/adl/qxbpm_calib.adl +++ b/opticsApp/op/adl/qxbpm_calib.adl @@ -1,7 +1,7 @@ file { - name="c:\Apps\epics\ioc\local\oxfordApp\op\adl\qxbpm_calib.adl" - version=030004 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/qxbpm_calib.adl" + version=030111 } display { object { @@ -183,47 +183,36 @@ text { limits { } } -composite { +"message button" { + object { + x=142 + y=148 + width=130 + height=20 + } + control { + chan="$(P)set_defaults" + clr=14 + bclr=58 + } + label="set defaults" + release_msg="1" +} +rectangle { object { x=135 y=144 width=144 height=28 } - "composite name"="" - children { - "message button" { - object { - x=142 - y=148 - width=130 - height=20 - } - control { - chan="$(P)set_defaults" - clr=14 - bclr=58 - } - label="set defaults" - release_msg="1" - } - rectangle { - object { - x=135 - y=144 - width=144 - height=28 - } - "basic attribute" { - clr=61 - fill="outline" - width=8 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)set_defaults" - } - } + "basic attribute" { + clr=61 + fill="outline" + width=8 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)set_defaults" } } rectangle { @@ -252,40 +241,29 @@ text { textix="default calibration" align="horiz. centered" } -composite { +text { object { x=32 y=99 width=350 - height=37 - } - "composite name"="" - children { - text { - object { - x=32 - y=99 - width=350 - height=16 - } - "basic attribute" { - clr=14 - } - textix="Set amplifier gains and other settings" - } - text { - object { - x=32 - y=120 - width=350 - height=16 - } - "basic attribute" { - clr=14 - } - textix="to factory defaults." - } + height=16 } + "basic attribute" { + clr=14 + } + textix="Set amplifier gains and other settings" +} +text { + object { + x=32 + y=120 + width=350 + height=16 + } + "basic attribute" { + clr=14 + } + textix="to factory defaults." } rectangle { object { @@ -337,89 +315,67 @@ text { } textix="Make SURE that the X-ray beam is OFF." } -composite { +"message button" { + object { + x=204 + y=265 + width=130 + height=20 + } + control { + chan="$(P)set_offsets" + clr=14 + bclr=58 + } + label="set offsets" + release_msg="1" +} +rectangle { object { x=197 y=261 width=144 height=28 } - "composite name"="" - children { - "message button" { - object { - x=204 - y=265 - width=130 - height=20 - } - control { - chan="$(P)set_offsets" - clr=14 - bclr=58 - } - label="set offsets" - release_msg="1" - } - rectangle { - object { - x=197 - y=261 - width=144 - height=28 - } - "basic attribute" { - clr=61 - fill="outline" - width=8 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)set_offsets" - } - } + "basic attribute" { + clr=61 + fill="outline" + width=8 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)set_offsets" } } -composite { +"message button" { + object { + x=88 + y=265 + width=68 + height=20 + } + control { + chan="$(P)set_offsets" + clr=14 + bclr=58 + } + label="idle" + release_msg="0" +} +rectangle { object { x=82 y=261 width=80 height=28 } - "composite name"="" - children { - "message button" { - object { - x=88 - y=265 - width=68 - height=20 - } - control { - chan="$(P)set_offsets" - clr=14 - bclr=58 - } - label="idle" - release_msg="0" - } - rectangle { - object { - x=82 - y=261 - width=80 - height=28 - } - "basic attribute" { - clr=14 - fill="outline" - width=8 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)set_offsets" - } - } + "basic attribute" { + clr=14 + fill="outline" + width=8 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)set_offsets" } } diff --git a/opticsApp/op/adl/qxbpm_config.adl b/opticsApp/op/adl/qxbpm_config.adl index 4a108e8..5968d95 100644 --- a/opticsApp/op/adl/qxbpm_config.adl +++ b/opticsApp/op/adl/qxbpm_config.adl @@ -1,12 +1,12 @@ file { - name="c:\Apps\epics\ioc\local\oxfordApp\op\adl\qxbpm_config.adl" - version=030004 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/qxbpm_config.adl" + version=030111 } display { object { - x=71 - y=65 + x=661 + y=527 width=776 height=438 } @@ -167,1304 +167,1205 @@ text { textix="the BPM controller needs ~3 sec to fill 100 sample buffer (~30 ms/sample)" align="horiz. centered" } -composite { +rectangle { object { x=26 y=152 width=280 height=45 } - "composite name"="" - children { - rectangle { - object { - x=26 - y=152 - width=280 - height=45 - } - "basic attribute" { - clr=49 - } - } - composite { - object { - x=32 - y=153 - width=268 - height=43 - } - "composite name"="" - children { - composite { - object { - x=32 - y=153 - width=12 - height=43 - } - "composite name"="" - children { - rectangle { - object { - x=32 - y=153 - width=12 - height=11 - } - "basic attribute" { - clr=20 - } - "dynamic attribute" { - vis="calc" - calc="!A&&B" - chan="$(P)current:ok" - chanB="$(P)current:low" - } - } - rectangle { - object { - x=32 - y=169 - width=12 - height=11 - } - "basic attribute" { - clr=30 - } - "dynamic attribute" { - vis="calc" - calc="A=B" - chan="$(P)current:ok" - chanB="$(P)current:low" - } - } - rectangle { - object { - x=32 - y=185 - width=12 - height=11 - } - "basic attribute" { - clr=15 - } - "dynamic attribute" { - vis="calc" - calc="A&&!B" - chan="$(P)current:ok" - chanB="$(P)current:low" - } - } - } - } - composite { - object { - x=50 - y=155 - width=250 - height=39 - } - "composite name"="" - children { - composite { - object { - x=50 - y=155 - width=250 - height=20 - } - "composite name"="" - children { - text { - object { - x=50 - y=155 - width=250 - height=20 - } - "basic attribute" { - clr=30 - } - "dynamic attribute" { - vis="calc" - calc="A=B" - chan="$(P)current:ok" - chanB="$(P)current:low" - } - textix="diode currents OK" - align="horiz. centered" - } - text { - object { - x=50 - y=155 - width=250 - height=20 - } - "basic attribute" { - clr=15 - } - "dynamic attribute" { - vis="calc" - calc="A&&!B" - chan="$(P)current:ok" - chanB="$(P)current:low" - } - textix="diode currents OK" - align="horiz. centered" - } - text { - object { - x=50 - y=155 - width=250 - height=20 - } - "basic attribute" { - clr=20 - } - "dynamic attribute" { - vis="calc" - calc="!A&&B" - chan="$(P)current:ok" - chanB="$(P)current:low" - } - textix="diode currents too low" - align="horiz. centered" - } - } - } - composite { - object { - x=50 - y=175 - width=250 - height=19 - } - "composite name"="" - children { - composite { - object { - x=50 - y=175 - width=250 - height=12 - } - "composite name"="" - children { - text { - object { - x=50 - y=175 - width=250 - height=12 - } - "basic attribute" { - clr=32 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)current:ok" - } - textix="not all diodes above threshold" - align="horiz. centered" - } - text { - object { - x=50 - y=175 - width=250 - height=12 - } - "basic attribute" { - clr=15 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)current:ok" - } - textix="all diodes above threshold" - align="horiz. centered" - } - } - } - composite { - object { - x=50 - y=184 - width=250 - height=10 - } - "composite name"="" - children { - text { - object { - x=50 - y=184 - width=250 - height=10 - } - "basic attribute" { - clr=32 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)current:low" - } - textix="not all diodes below threshold" - align="horiz. centered" - } - text { - object { - x=50 - y=184 - width=250 - height=10 - } - "basic attribute" { - clr=20 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)current:low" - } - textix="all diodes below threshold" - align="horiz. centered" - } - } - } - } - } - } - } - } - } - } -} -composite { + "basic attribute" { + clr=49 + } +} +rectangle { + object { + x=32 + y=153 + width=12 + height=11 + } + "basic attribute" { + clr=20 + } + "dynamic attribute" { + vis="calc" + calc="!A&&B" + chan="$(P)current:ok" + chanB="$(P)current:low" + } +} +rectangle { + object { + x=32 + y=169 + width=12 + height=11 + } + "basic attribute" { + clr=30 + } + "dynamic attribute" { + vis="calc" + calc="A=B" + chan="$(P)current:ok" + chanB="$(P)current:low" + } +} +rectangle { + object { + x=32 + y=185 + width=12 + height=11 + } + "basic attribute" { + clr=15 + } + "dynamic attribute" { + vis="calc" + calc="A&&!B" + chan="$(P)current:ok" + chanB="$(P)current:low" + } +} +text { + object { + x=50 + y=155 + width=250 + height=20 + } + "basic attribute" { + clr=30 + } + "dynamic attribute" { + vis="calc" + calc="A=B" + chan="$(P)current:ok" + chanB="$(P)current:low" + } + textix="diode currents OK" + align="horiz. centered" +} +text { + object { + x=50 + y=155 + width=250 + height=20 + } + "basic attribute" { + clr=15 + } + "dynamic attribute" { + vis="calc" + calc="A&&!B" + chan="$(P)current:ok" + chanB="$(P)current:low" + } + textix="diode currents OK" + align="horiz. centered" +} +text { + object { + x=50 + y=155 + width=250 + height=20 + } + "basic attribute" { + clr=20 + } + "dynamic attribute" { + vis="calc" + calc="!A&&B" + chan="$(P)current:ok" + chanB="$(P)current:low" + } + textix="diode currents too low" + align="horiz. centered" +} +text { + object { + x=50 + y=175 + width=250 + height=12 + } + "basic attribute" { + clr=32 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)current:ok" + } + textix="not all diodes above threshold" + align="horiz. centered" +} +text { + object { + x=50 + y=175 + width=250 + height=12 + } + "basic attribute" { + clr=15 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)current:ok" + } + textix="all diodes above threshold" + align="horiz. centered" +} +text { + object { + x=50 + y=184 + width=250 + height=10 + } + "basic attribute" { + clr=32 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)current:low" + } + textix="not all diodes below threshold" + align="horiz. centered" +} +text { + object { + x=50 + y=184 + width=250 + height=10 + } + "basic attribute" { + clr=20 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)current:low" + } + textix="all diodes below threshold" + align="horiz. centered" +} +"text entry" { + object { + x=20 + y=308 + width=80 + height=17 + } + control { + chan="$(P)r1:A1" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=105 + y=308 + width=80 + height=17 + } + control { + chan="$(P)r1:B1" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=190 + y=308 + width=80 + height=17 + } + control { + chan="$(P)r1:C1" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=275 + y=308 + width=80 + height=17 + } + control { + chan="$(P)r1:D1" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=20 + y=329 + width=80 + height=17 + } + control { + chan="$(P)r2:A1" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=105 + y=329 + width=80 + height=17 + } + control { + chan="$(P)r2:B1" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=190 + y=329 + width=80 + height=17 + } + control { + chan="$(P)r2:C1" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=275 + y=329 + width=80 + height=17 + } + control { + chan="$(P)r2:D1" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=20 + y=350 + width=80 + height=17 + } + control { + chan="$(P)r3:A1" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=105 + y=350 + width=80 + height=17 + } + control { + chan="$(P)r3:B1" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=190 + y=350 + width=80 + height=17 + } + control { + chan="$(P)r3:C1" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=275 + y=350 + width=80 + height=17 + } + control { + chan="$(P)r3:D1" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=20 + y=371 + width=80 + height=17 + } + control { + chan="$(P)r4:A1" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=105 + y=371 + width=80 + height=17 + } + control { + chan="$(P)r4:B1" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=190 + y=371 + width=80 + height=17 + } + control { + chan="$(P)r4:C1" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=275 + y=371 + width=80 + height=17 + } + control { + chan="$(P)r4:D1" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=20 + y=392 + width=80 + height=17 + } + control { + chan="$(P)r5:A1" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=105 + y=392 + width=80 + height=17 + } + control { + chan="$(P)r5:B1" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=190 + y=392 + width=80 + height=17 + } + control { + chan="$(P)r5:C1" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=275 + y=392 + width=80 + height=17 + } + control { + chan="$(P)r5:D1" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=20 + y=413 + width=80 + height=17 + } + control { + chan="$(P)r6:A1" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=105 + y=413 + width=80 + height=17 + } + control { + chan="$(P)r6:B1" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=190 + y=413 + width=80 + height=17 + } + control { + chan="$(P)r6:C1" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=275 + y=413 + width=80 + height=17 + } + control { + chan="$(P)r6:D1" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=425 + y=308 + width=80 + height=17 + } + control { + chan="$(P)r1:A2" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=510 + y=308 + width=80 + height=17 + } + control { + chan="$(P)r1:B2" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=595 + y=308 + width=80 + height=17 + } + control { + chan="$(P)r1:C2" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=680 + y=308 + width=80 + height=17 + } + control { + chan="$(P)r1:D2" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=425 + y=329 + width=80 + height=17 + } + control { + chan="$(P)r2:A2" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=510 + y=329 + width=80 + height=17 + } + control { + chan="$(P)r2:B2" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=595 + y=329 + width=80 + height=17 + } + control { + chan="$(P)r2:C2" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=680 + y=329 + width=80 + height=17 + } + control { + chan="$(P)r2:D2" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=425 + y=350 + width=80 + height=17 + } + control { + chan="$(P)r3:A2" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=510 + y=350 + width=80 + height=17 + } + control { + chan="$(P)r3:B2" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=595 + y=350 + width=80 + height=17 + } + control { + chan="$(P)r3:C2" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=680 + y=350 + width=80 + height=17 + } + control { + chan="$(P)r3:D2" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=425 + y=371 + width=80 + height=17 + } + control { + chan="$(P)r4:A2" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=510 + y=371 + width=80 + height=17 + } + control { + chan="$(P)r4:B2" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=595 + y=371 + width=80 + height=17 + } + control { + chan="$(P)r4:C2" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=680 + y=371 + width=80 + height=17 + } + control { + chan="$(P)r4:D2" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=425 + y=392 + width=80 + height=17 + } + control { + chan="$(P)r5:A2" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=510 + y=392 + width=80 + height=17 + } + control { + chan="$(P)r5:B2" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=595 + y=392 + width=80 + height=17 + } + control { + chan="$(P)r5:C2" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=680 + y=392 + width=80 + height=17 + } + control { + chan="$(P)r5:D2" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=425 + y=413 + width=80 + height=17 + } + control { + chan="$(P)r6:A2" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=510 + y=413 + width=80 + height=17 + } + control { + chan="$(P)r6:B2" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=595 + y=413 + width=80 + height=17 + } + control { + chan="$(P)r6:C2" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=680 + y=413 + width=80 + height=17 + } + control { + chan="$(P)r6:D2" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +"text update" { + object { + x=360 + y=308 + width=60 + height=12 + } + monitor { + chan="$(P)gain.ZRST" + clr=14 + bclr=57 + } + align="horiz. centered" + format="compact" + limits { + } +} +"text update" { + object { + x=360 + y=329 + width=60 + height=12 + } + monitor { + chan="$(P)gain.ONST" + clr=14 + bclr=57 + } + align="horiz. centered" + format="compact" + limits { + } +} +"text update" { + object { + x=360 + y=350 + width=60 + height=12 + } + monitor { + chan="$(P)gain.TWST" + clr=14 + bclr=57 + } + align="horiz. centered" + format="compact" + limits { + } +} +"text update" { + object { + x=360 + y=371 + width=60 + height=12 + } + monitor { + chan="$(P)gain.THST" + clr=14 + bclr=57 + } + align="horiz. centered" + format="compact" + limits { + } +} +"text update" { + object { + x=360 + y=392 + width=60 + height=12 + } + monitor { + chan="$(P)gain.FRST" + clr=14 + bclr=57 + } + align="horiz. centered" + format="compact" + limits { + } +} +"text update" { + object { + x=360 + y=413 + width=60 + height=12 + } + monitor { + chan="$(P)gain.FVST" + clr=14 + bclr=57 + } + align="horiz. centered" + format="compact" + limits { + } +} +text { object { x=20 + y=298 + width=80 + height=12 + } + "basic attribute" { + clr=14 + } + textix="diode A" + align="horiz. centered" +} +text { + object { + x=105 + y=298 + width=80 + height=12 + } + "basic attribute" { + clr=14 + } + textix="diode B" + align="horiz. centered" +} +text { + object { + x=190 + y=298 + width=80 + height=12 + } + "basic attribute" { + clr=14 + } + textix="diode C" + align="horiz. centered" +} +text { + object { + x=275 + y=298 + width=80 + height=12 + } + "basic attribute" { + clr=14 + } + textix="diode D" + align="horiz. centered" +} +text { + object { + x=37 + y=280 + width=300 + height=14 + } + "basic attribute" { + clr=14 + } + textix="cG : photodiode gain multiplier adjustment (float)" + align="horiz. centered" +} +text { + object { + x=442 y=280 - width=740 - height=150 - } - "composite name"="" - children { - "text entry" { - object { - x=20 - y=308 - width=80 - height=17 - } - control { - chan="$(P)r1:A1" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=105 - y=308 - width=80 - height=17 - } - control { - chan="$(P)r1:B1" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=190 - y=308 - width=80 - height=17 - } - control { - chan="$(P)r1:C1" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=275 - y=308 - width=80 - height=17 - } - control { - chan="$(P)r1:D1" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=20 - y=329 - width=80 - height=17 - } - control { - chan="$(P)r2:A1" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=105 - y=329 - width=80 - height=17 - } - control { - chan="$(P)r2:B1" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=190 - y=329 - width=80 - height=17 - } - control { - chan="$(P)r2:C1" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=275 - y=329 - width=80 - height=17 - } - control { - chan="$(P)r2:D1" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=20 - y=350 - width=80 - height=17 - } - control { - chan="$(P)r3:A1" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=105 - y=350 - width=80 - height=17 - } - control { - chan="$(P)r3:B1" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=190 - y=350 - width=80 - height=17 - } - control { - chan="$(P)r3:C1" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=275 - y=350 - width=80 - height=17 - } - control { - chan="$(P)r3:D1" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=20 - y=371 - width=80 - height=17 - } - control { - chan="$(P)r4:A1" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=105 - y=371 - width=80 - height=17 - } - control { - chan="$(P)r4:B1" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=190 - y=371 - width=80 - height=17 - } - control { - chan="$(P)r4:C1" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=275 - y=371 - width=80 - height=17 - } - control { - chan="$(P)r4:D1" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=20 - y=392 - width=80 - height=17 - } - control { - chan="$(P)r5:A1" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=105 - y=392 - width=80 - height=17 - } - control { - chan="$(P)r5:B1" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=190 - y=392 - width=80 - height=17 - } - control { - chan="$(P)r5:C1" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=275 - y=392 - width=80 - height=17 - } - control { - chan="$(P)r5:D1" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=20 - y=413 - width=80 - height=17 - } - control { - chan="$(P)r6:A1" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=105 - y=413 - width=80 - height=17 - } - control { - chan="$(P)r6:B1" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=190 - y=413 - width=80 - height=17 - } - control { - chan="$(P)r6:C1" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=275 - y=413 - width=80 - height=17 - } - control { - chan="$(P)r6:D1" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=425 - y=308 - width=80 - height=17 - } - control { - chan="$(P)r1:A2" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=510 - y=308 - width=80 - height=17 - } - control { - chan="$(P)r1:B2" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=595 - y=308 - width=80 - height=17 - } - control { - chan="$(P)r1:C2" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=680 - y=308 - width=80 - height=17 - } - control { - chan="$(P)r1:D2" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=425 - y=329 - width=80 - height=17 - } - control { - chan="$(P)r2:A2" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=510 - y=329 - width=80 - height=17 - } - control { - chan="$(P)r2:B2" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=595 - y=329 - width=80 - height=17 - } - control { - chan="$(P)r2:C2" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=680 - y=329 - width=80 - height=17 - } - control { - chan="$(P)r2:D2" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=425 - y=350 - width=80 - height=17 - } - control { - chan="$(P)r3:A2" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=510 - y=350 - width=80 - height=17 - } - control { - chan="$(P)r3:B2" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=595 - y=350 - width=80 - height=17 - } - control { - chan="$(P)r3:C2" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=680 - y=350 - width=80 - height=17 - } - control { - chan="$(P)r3:D2" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=425 - y=371 - width=80 - height=17 - } - control { - chan="$(P)r4:A2" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=510 - y=371 - width=80 - height=17 - } - control { - chan="$(P)r4:B2" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=595 - y=371 - width=80 - height=17 - } - control { - chan="$(P)r4:C2" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=680 - y=371 - width=80 - height=17 - } - control { - chan="$(P)r4:D2" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=425 - y=392 - width=80 - height=17 - } - control { - chan="$(P)r5:A2" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=510 - y=392 - width=80 - height=17 - } - control { - chan="$(P)r5:B2" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=595 - y=392 - width=80 - height=17 - } - control { - chan="$(P)r5:C2" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=680 - y=392 - width=80 - height=17 - } - control { - chan="$(P)r5:D2" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=425 - y=413 - width=80 - height=17 - } - control { - chan="$(P)r6:A2" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=510 - y=413 - width=80 - height=17 - } - control { - chan="$(P)r6:B2" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=595 - y=413 - width=80 - height=17 - } - control { - chan="$(P)r6:C2" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text entry" { - object { - x=680 - y=413 - width=80 - height=17 - } - control { - chan="$(P)r6:D2" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - "text update" { - object { - x=360 - y=308 - width=60 - height=12 - } - monitor { - chan="$(P)gain.ZRST" - clr=14 - bclr=57 - } - align="horiz. centered" - format="compact" - limits { - } - } - "text update" { - object { - x=360 - y=329 - width=60 - height=12 - } - monitor { - chan="$(P)gain.ONST" - clr=14 - bclr=57 - } - align="horiz. centered" - format="compact" - limits { - } - } - "text update" { - object { - x=360 - y=350 - width=60 - height=12 - } - monitor { - chan="$(P)gain.TWST" - clr=14 - bclr=57 - } - align="horiz. centered" - format="compact" - limits { - } - } - "text update" { - object { - x=360 - y=371 - width=60 - height=12 - } - monitor { - chan="$(P)gain.THST" - clr=14 - bclr=57 - } - align="horiz. centered" - format="compact" - limits { - } - } - "text update" { - object { - x=360 - y=392 - width=60 - height=12 - } - monitor { - chan="$(P)gain.FRST" - clr=14 - bclr=57 - } - align="horiz. centered" - format="compact" - limits { - } - } - "text update" { - object { - x=360 - y=413 - width=60 - height=12 - } - monitor { - chan="$(P)gain.FVST" - clr=14 - bclr=57 - } - align="horiz. centered" - format="compact" - limits { - } - } - text { - object { - x=20 - y=298 - width=80 - height=12 - } - "basic attribute" { - clr=14 - } - textix="diode A" - align="horiz. centered" - } - text { - object { - x=105 - y=298 - width=80 - height=12 - } - "basic attribute" { - clr=14 - } - textix="diode B" - align="horiz. centered" - } - text { - object { - x=190 - y=298 - width=80 - height=12 - } - "basic attribute" { - clr=14 - } - textix="diode C" - align="horiz. centered" - } - text { - object { - x=275 - y=298 - width=80 - height=12 - } - "basic attribute" { - clr=14 - } - textix="diode D" - align="horiz. centered" - } - text { - object { - x=37 - y=280 - width=300 - height=14 - } - "basic attribute" { - clr=14 - } - textix="cG : photodiode gain multiplier adjustment (float)" - align="horiz. centered" - } - text { - object { - x=442 - y=280 - width=300 - height=14 - } - "basic attribute" { - clr=14 - } - textix="cB : photodiode gain raw offset (integer)" - align="horiz. centered" - } - text { - object { - x=425 - y=298 - width=80 - height=12 - } - "basic attribute" { - clr=14 - } - textix="diode A" - align="horiz. centered" - } - text { - object { - x=510 - y=298 - width=80 - height=12 - } - "basic attribute" { - clr=14 - } - textix="diode B" - align="horiz. centered" - } - text { - object { - x=595 - y=298 - width=80 - height=12 - } - "basic attribute" { - clr=14 - } - textix="diode C" - align="horiz. centered" - } - text { - object { - x=680 - y=298 - width=80 - height=12 - } - "basic attribute" { - clr=14 - } - textix="diode D" - align="horiz. centered" - } - text { - object { - x=360 - y=298 - width=60 - height=12 - } - "basic attribute" { - clr=14 - } - textix="range" - align="horiz. centered" - } + width=300 + height=14 + } + "basic attribute" { + clr=14 + } + textix="cB : photodiode gain raw offset (integer)" + align="horiz. centered" +} +text { + object { + x=425 + y=298 + width=80 + height=12 + } + "basic attribute" { + clr=14 + } + textix="diode A" + align="horiz. centered" +} +text { + object { + x=510 + y=298 + width=80 + height=12 + } + "basic attribute" { + clr=14 + } + textix="diode B" + align="horiz. centered" +} +text { + object { + x=595 + y=298 + width=80 + height=12 + } + "basic attribute" { + clr=14 + } + textix="diode C" + align="horiz. centered" +} +text { + object { + x=680 + y=298 + width=80 + height=12 + } + "basic attribute" { + clr=14 + } + textix="diode D" + align="horiz. centered" +} +text { + object { + x=360 + y=298 + width=60 + height=12 } + "basic attribute" { + clr=14 + } + textix="range" + align="horiz. centered" } "message button" { object { @@ -1481,43 +1382,32 @@ composite { label="initialize" release_msg="1" } -composite { +text { object { x=18 y=221 width=100 - height=29 - } - "composite name"="" - children { - text { - object { - x=18 - y=221 - width=100 - height=12 - } - "basic attribute" { - clr=14 - } - textix="VxWorks debug level" - } - "text entry" { - object { - x=18 - y=232 - width=100 - height=18 - } - control { - chan="$(P)debug" - clr=14 - bclr=58 - } - format="compact" - limits { - } - } + height=12 + } + "basic attribute" { + clr=14 + } + textix="VxWorks debug level" +} +"text entry" { + object { + x=18 + y=232 + width=100 + height=18 + } + control { + chan="$(P)debug" + clr=14 + bclr=58 + } + format="compact" + limits { } } "text entry" { @@ -1722,417 +1612,329 @@ text { bclr=48 label="- calibrate" } -composite { +"choice button" { object { x=14 y=49 width=300 - height=93 - } - "composite name"="" - children { - "choice button" { - object { - x=14 - y=49 - width=300 - height=16 - } - control { - chan="$(P)enable" - clr=14 - bclr=58 - } - stacking="column" - } - "choice button" { - object { - x=14 - y=70 - width=300 - height=16 - } - control { - chan="$(P)mode" - clr=14 - bclr=58 - } - stacking="column" - } - composite { - object { - x=14 - y=91 - width=300 - height=51 - } - "composite name"="" - children { - text { - object { - x=14 - y=91 - width=300 - height=10 - } - "basic attribute" { - clr=14 - } - textix="# measurements for AVERAGE or WINDOW" - } - valuator { - object { - x=14 - y=102 - width=300 - height=40 - } - control { - chan="$(P)buflen" - clr=14 - bclr=58 - } - label="limits" - dPrecision=1.000000 - limits { - } - } - } - } - } -} -composite { + height=16 + } + control { + chan="$(P)enable" + clr=14 + bclr=58 + } + stacking="column" +} +"choice button" { + object { + x=14 + y=70 + width=300 + height=16 + } + control { + chan="$(P)mode" + clr=14 + bclr=58 + } + stacking="column" +} +text { + object { + x=14 + y=91 + width=300 + height=10 + } + "basic attribute" { + clr=14 + } + textix="# measurements for AVERAGE or WINDOW" +} +valuator { + object { + x=14 + y=102 + width=300 + height=40 + } + control { + chan="$(P)buflen" + clr=14 + bclr=58 + } + label="limits" + dPrecision=1.000000 + limits { + } +} +text { object { x=334 y=49 width=130 - height=63 - } - "composite name"="" - children { - composite { - object { - x=334 - y=49 - width=130 - height=29 - } - "composite name"="" - children { - text { - object { - x=334 - y=49 - width=130 - height=12 - } - "basic attribute" { - clr=14 - } - textix="RS232 poll period, s" - } - "text entry" { - object { - x=334 - y=60 - width=130 - height=18 - } - control { - chan="$(P)period" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - } - } - composite { - object { - x=334 - y=83 - width=130 - height=29 - } - "composite name"="" - children { - text { - object { - x=334 - y=83 - width=130 - height=12 - } - "basic attribute" { - clr=14 - } - textix="device address" - } - "text update" { - object { - x=334 - y=94 - width=130 - height=18 - } - monitor { - chan="$(P)address" - clr=14 - bclr=58 - } - format="compact" - limits { - } - } - } - } - } -} -composite { + height=12 + } + "basic attribute" { + clr=14 + } + textix="RS232 poll period, s" +} +"text entry" { + object { + x=334 + y=60 + width=130 + height=18 + } + control { + chan="$(P)period" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +text { + object { + x=334 + y=83 + width=130 + height=12 + } + "basic attribute" { + clr=14 + } + textix="device address" +} +"text update" { + object { + x=334 + y=94 + width=130 + height=18 + } + monitor { + chan="$(P)address" + clr=14 + bclr=58 + } + format="compact" + limits { + } +} +text { + object { + x=476 + y=49 + width=90 + height=12 + } + "basic attribute" { + clr=14 + } + textix="RS232 port" + align="horiz. right" +} +text { + object { + x=476 + y=66 + width=90 + height=12 + } + "basic attribute" { + clr=14 + } + textix="RS232 out" + align="horiz. right" +} +text { + object { + x=476 + y=83 + width=90 + height=12 + } + "basic attribute" { + clr=14 + } + textix="RS232 in" + align="horiz. right" +} +text { object { x=476 + y=100 + width=90 + height=12 + } + "basic attribute" { + clr=14 + } + textix="RS232 status" + align="horiz. right" +} +"text update" { + object { + x=571 + y=100 + width=200 + height=12 + } + monitor { + chan="$(S).SEVR" + clr=50 + bclr=14 + } + format="compact" + limits { + } +} +"text update" { + object { + x=571 + y=83 + width=200 + height=12 + } + monitor { + chan="$(S).AINP" + clr=50 + bclr=14 + } + format="compact" + limits { + } +} +"text update" { + object { + x=571 + y=66 + width=200 + height=12 + } + monitor { + chan="$(S).AOUT" + clr=50 + bclr=14 + } + format="compact" + limits { + } +} +"text update" { + object { + x=571 y=49 - width=295 - height=63 - } - "composite name"="" - children { - text { - object { - x=476 - y=49 - width=90 - height=12 - } - "basic attribute" { - clr=14 - } - textix="RS232 port" - align="horiz. right" - } - text { - object { - x=476 - y=66 - width=90 - height=12 - } - "basic attribute" { - clr=14 - } - textix="RS232 out" - align="horiz. right" - } - text { - object { - x=476 - y=83 - width=90 - height=12 - } - "basic attribute" { - clr=14 - } - textix="RS232 in" - align="horiz. right" - } - text { - object { - x=476 - y=100 - width=90 - height=12 - } - "basic attribute" { - clr=14 - } - textix="RS232 status" - align="horiz. right" - } - "text update" { - object { - x=571 - y=100 - width=200 - height=12 - } - monitor { - chan="$(S).SEVR" - clr=50 - bclr=14 - } - format="compact" - limits { - } - } - "text update" { - object { - x=571 - y=83 - width=200 - height=12 - } - monitor { - chan="$(S).AINP" - clr=50 - bclr=14 - } - format="compact" - limits { - } - } - "text update" { - object { - x=571 - y=66 - width=200 - height=12 - } - monitor { - chan="$(S).AOUT" - clr=50 - bclr=14 - } - format="compact" - limits { - } - } - "text update" { - object { - x=571 - y=49 - width=200 - height=12 - } - monitor { - chan="$(P)port" - clr=50 - bclr=14 - } - format="compact" - limits { - } - } - } -} -composite { + width=200 + height=12 + } + monitor { + chan="$(P)port" + clr=50 + bclr=14 + } + format="compact" + limits { + } +} +text { object { x=156 y=219 width=440 - height=56 - } - "composite name"="" - children { - text { - object { - x=156 - y=219 - width=440 - height=14 - } - "basic attribute" { - clr=14 - } - textix="photodiode current, I_n = cG * (raw_signal - cB)" - align="horiz. centered" - } - composite { - object { - x=156 - y=238 - width=440 - height=37 - } - "composite name"="" - children { - text { - object { - x=156 - y=238 - width=100 - height=14 - } - "basic attribute" { - clr=14 - } - textix="position_X = " - align="horiz. right" - } - "text entry" { - object { - x=261 - y=238 - width=80 - height=17 - } - control { - chan="$(P)GX" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - text { - object { - x=346 - y=238 - width=250 - height=14 - } - "basic attribute" { - clr=14 - } - textix=" * ( I_B - I_D ) / ( I_B + I_D )" - } - text { - object { - x=156 - y=258 - width=100 - height=14 - } - "basic attribute" { - clr=14 - } - textix="position_Y = " - align="horiz. right" - } - "text entry" { - object { - x=261 - y=258 - width=80 - height=17 - } - control { - chan="$(P)GY" - clr=14 - bclr=55 - } - format="compact" - limits { - } - } - text { - object { - x=346 - y=258 - width=250 - height=14 - } - "basic attribute" { - clr=14 - } - textix=" * ( I_A - I_C ) / ( I_A + I_C )" - } - } - } + height=14 + } + "basic attribute" { + clr=14 + } + textix="photodiode current, I_n = cG * (raw_signal - cB)" + align="horiz. centered" +} +text { + object { + x=156 + y=238 + width=100 + height=14 + } + "basic attribute" { + clr=14 + } + textix="position_X = " + align="horiz. right" +} +"text entry" { + object { + x=261 + y=238 + width=80 + height=17 + } + control { + chan="$(P)GX" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +text { + object { + x=346 + y=238 + width=250 + height=14 + } + "basic attribute" { + clr=14 + } + textix=" * ( I_B - I_D ) / ( I_B + I_D )" +} +text { + object { + x=156 + y=258 + width=100 + height=14 + } + "basic attribute" { + clr=14 + } + textix="position_Y = " + align="horiz. right" +} +"text entry" { + object { + x=261 + y=258 + width=80 + height=17 + } + control { + chan="$(P)GY" + clr=14 + bclr=55 + } + format="compact" + limits { + } +} +text { + object { + x=346 + y=258 + width=250 + height=14 + } + "basic attribute" { + clr=14 } + textix=" * ( I_A - I_C ) / ( I_A + I_C )" } text { object { diff --git a/opticsApp/op/adl/table.adl b/opticsApp/op/adl/table.adl index 140af76..543efc8 100644 --- a/opticsApp/op/adl/table.adl +++ b/opticsApp/op/adl/table.adl @@ -1,12 +1,12 @@ file { - name="/home/oxygen/MOONEY/epics/synApps/support/optics/2-4/opticsApp/op/adl/table.adl" - version=030004 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/table.adl" + version=030111 } display { object { - x=10 - y=214 + x=1119 + y=494 width=230 height=390 } @@ -665,129 +665,118 @@ rectangle { chan="$(P)$(T).SET" } } -composite { +"related display" { + object { + x=8 + y=230 + width=35 + height=20 + } + display[0] { + label="Setup scan parameters" + name="scanParmsCustom.adl" + args="P=$(P),Q=$(Q)Y,NAME=$(Q)Y,DESC=$(Q)Y,EGU=$(T).LEGU" + } + clr=0 + bclr=17 + label="-Scan" +} +"message button" { + object { + x=45 + y=230 + width=21 + height=20 + } + control { + chan="$(P)$(Q)Y:scanParms.GO" + clr=14 + bclr=51 + } + label="Go" + press_msg="1" +} +"message button" { + object { + x=68 + y=230 + width=35 + height=20 + } + control { + chan="$(P)allstop.VAL" + clr=30 + bclr=20 + } + label="Kill" + press_msg="1" +} +rectangle { object { x=5 y=228 - width=215 + width=100 + height=24 + } + "basic attribute" { + clr=14 + } +} +"related display" { + object { + x=123 + y=230 + width=35 + height=20 + } + display[0] { + label="Setup scan parameters" + name="scanParmsCustom.adl" + args="P=$(P),Q=$(Q)AY,NAME=$(Q)AY,DESC=$(Q)AY,EGU=$(T).AEGU" + } + clr=0 + bclr=17 + label="-Scan" +} +"message button" { + object { + x=160 + y=230 + width=21 + height=20 + } + control { + chan="$(P)$(Q)AY:scanParms.GO" + clr=14 + bclr=51 + } + label="Go" + press_msg="1" +} +"message button" { + object { + x=183 + y=230 + width=35 + height=20 + } + control { + chan="$(P)allstop.VAL" + clr=30 + bclr=20 + } + label="Kill" + press_msg="1" +} +rectangle { + object { + x=120 + y=228 + width=100 height=24 } - "composite name"="" - children { - "related display" { - object { - x=8 - y=230 - width=35 - height=20 - } - display[0] { - label="Setup scan parameters" - name="scanParmsCustom.adl" - args="P=$(P),Q=$(Q)Y,NAME=$(Q)Y,DESC=$(Q)Y,EGU=$(T).LEGU" - } - clr=0 - bclr=17 - label="-Scan" - } - "message button" { - object { - x=45 - y=230 - width=21 - height=20 - } - control { - chan="$(P)$(Q)Y:scanParms.GO" - clr=14 - bclr=51 - } - label="Go" - press_msg="1" - } - "message button" { - object { - x=68 - y=230 - width=35 - height=20 - } - control { - chan="$(P)allstop.VAL" - clr=30 - bclr=20 - } - label="Kill" - press_msg="1" - } - rectangle { - object { - x=5 - y=228 - width=100 - height=24 - } - "basic attribute" { - clr=14 - } - } - "related display" { - object { - x=123 - y=230 - width=35 - height=20 - } - display[0] { - label="Setup scan parameters" - name="scanParmsCustom.adl" - args="P=$(P),Q=$(Q)AY,NAME=$(Q)AY,DESC=$(Q)AY,EGU=$(T).AEGU" - } - clr=0 - bclr=17 - label="-Scan" - } - "message button" { - object { - x=160 - y=230 - width=21 - height=20 - } - control { - chan="$(P)$(Q)AY:scanParms.GO" - clr=14 - bclr=51 - } - label="Go" - press_msg="1" - } - "message button" { - object { - x=183 - y=230 - width=35 - height=20 - } - control { - chan="$(P)allstop.VAL" - clr=30 - bclr=20 - } - label="Kill" - press_msg="1" - } - rectangle { - object { - x=120 - y=228 - width=100 - height=24 - } - "basic attribute" { - clr=14 - } - } + "basic attribute" { + clr=14 } } "choice button" { @@ -804,46 +793,35 @@ composite { } stacking="column" } -composite { +"message button" { object { x=0 y=370 - width=100 + width=50 height=20 } - "composite name"="" - children { - "message button" { - object { - x=0 - y=370 - width=50 - height=20 - } - control { - chan="$(P)$(T).SYNC" - clr=14 - bclr=51 - } - label="Sync" - press_msg="1" - } - "message button" { - object { - x=50 - y=370 - width=50 - height=20 - } - control { - chan="$(P)$(T).INIT" - clr=14 - bclr=51 - } - label="Init" - press_msg="1" - } + control { + chan="$(P)$(T).SYNC" + clr=14 + bclr=51 } + label="Sync" + press_msg="1" +} +"message button" { + object { + x=50 + y=370 + width=50 + height=20 + } + control { + chan="$(P)$(T).INIT" + clr=14 + bclr=51 + } + label="Init" + press_msg="1" } "message button" { object { @@ -875,50 +853,39 @@ composite { label="Stop" press_msg="1" } -composite { +text { object { x=120 y=345 width=60 height=20 } - "composite name"="" - children { - text { - object { - x=120 - y=345 - width=60 - height=20 - } - "basic attribute" { - clr=55 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)$(Q):done.VAL" - } - textix="Done" - align="horiz. centered" - } - text { - object { - x=120 - y=345 - width=60 - height=20 - } - "basic attribute" { - clr=55 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)$(Q):done.VAL" - } - textix="Moving" - align="horiz. centered" - } + "basic attribute" { + clr=55 } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(Q):done.VAL" + } + textix="Done" + align="horiz. centered" +} +text { + object { + x=120 + y=345 + width=60 + height=20 + } + "basic attribute" { + clr=55 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(Q):done.VAL" + } + textix="Moving" + align="horiz. centered" } "related display" { object { diff --git a/opticsApp/op/adl/table_fixedPoints.adl b/opticsApp/op/adl/table_fixedPoints.adl index ef8b660..c2b0b8d 100644 --- a/opticsApp/op/adl/table_fixedPoints.adl +++ b/opticsApp/op/adl/table_fixedPoints.adl @@ -1,7 +1,7 @@ file { - name="/home/oxygen/MOONEY/epics/synApps/support/optics/2-4/opticsApp/op/adl/table_fixedPoints.adl" - version=030004 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/table_fixedPoints.adl" + version=030111 } display { object { @@ -936,47 +936,36 @@ text { limits { } } -composite { +"text update" { object { - x=0 + x=1 y=0 - width=330 - height=23 - } - "composite name"="" - children { - "text update" { - object { - x=1 - y=0 - width=328 - height=20 - } - monitor { - chan="$(P)$(T).DESC" - clr=54 - bclr=0 - } - align="horiz. centered" - limits { - } - } - polyline { - object { - x=0 - y=20 - width=329 - height=3 - } - "basic attribute" { - clr=54 - width=3 - } - points { - (1,21) - (327,21) - } - } + width=328 + height=20 + } + monitor { + chan="$(P)$(T).DESC" + clr=54 + bclr=0 + } + align="horiz. centered" + limits { + } +} +polyline { + object { + x=0 + y=20 + width=329 + height=3 + } + "basic attribute" { + clr=54 + width=3 + } + points { + (1,21) + (327,21) } } text { diff --git a/opticsApp/op/adl/table_full.adl b/opticsApp/op/adl/table_full.adl index 3a4d530..b7bdf0f 100644 --- a/opticsApp/op/adl/table_full.adl +++ b/opticsApp/op/adl/table_full.adl @@ -1,12 +1,12 @@ file { - name="/home/oxygen/MOONEY/epics/synApps/support/optics/2-4/opticsApp/op/adl/table_full.adl" - version=030004 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/table_full.adl" + version=030111 } display { object { - x=100 - y=484 + x=964 + y=512 width=490 height=400 } @@ -1271,83 +1271,72 @@ rectangle { label=">" press_msg="1" } -composite { +polyline { object { x=4 y=86 width=224 - height=272 + height=2 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + points { + (5,87) + (227,87) + } +} +polyline { + object { + x=4 + y=176 + width=223 + height=2 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + points { + (5,177) + (226,177) + } +} +polyline { + object { + x=4 + y=266 + width=223 + height=2 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + points { + (5,267) + (226,267) + } +} +polyline { + object { + x=4 + y=356 + width=225 + height=2 } - "composite name"="" - children { - polyline { - object { - x=4 - y=86 - width=224 - height=2 - } - "basic attribute" { - clr=14 - fill="outline" - width=2 - } - points { - (5,87) - (227,87) - } - } - polyline { - object { - x=4 - y=176 - width=223 - height=2 - } - "basic attribute" { - clr=14 - fill="outline" - width=2 - } - points { - (5,177) - (226,177) - } - } - polyline { - object { - x=4 - y=266 - width=223 - height=2 - } - "basic attribute" { - clr=14 - fill="outline" - width=2 - } - points { - (5,267) - (226,267) - } - } - polyline { - object { - x=4 - y=356 - width=225 - height=2 - } - "basic attribute" { - clr=14 - fill="outline" - width=2 - } - points { - (5,357) - (228,357) - } - } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + points { + (5,357) + (228,357) } } text { @@ -2295,64 +2284,53 @@ polyline { limits { } } -composite { +"message button" { object { x=460 y=153 width=20 - height=200 - } - "composite name"="" - children { - "message button" { - object { - x=460 - y=153 - width=20 - height=20 - } - control { - chan="$(P)$(M2X).TWF" - clr=14 - bclr=51 - } - label=">" - press_msg="1" - release_msg="0" - } - "message button" { - object { - x=460 - y=243 - width=20 - height=20 - } - control { - chan="$(P)$(M2Y).TWF" - clr=14 - bclr=51 - } - label=">" - press_msg="1" - release_msg="0" - } - "message button" { - object { - x=460 - y=333 - width=20 - height=20 - } - control { - chan="$(P)$(M2Z).TWF" - clr=14 - bclr=51 - } - label=">" - press_msg="1" - release_msg="0" - } + height=20 + } + control { + chan="$(P)$(M2X).TWF" + clr=14 + bclr=51 + } + label=">" + press_msg="1" + release_msg="0" +} +"message button" { + object { + x=460 + y=243 + width=20 + height=20 + } + control { + chan="$(P)$(M2Y).TWF" + clr=14 + bclr=51 + } + label=">" + press_msg="1" + release_msg="0" +} +"message button" { + object { + x=460 + y=333 + width=20 + height=20 } + control { + chan="$(P)$(M2Z).TWF" + clr=14 + bclr=51 + } + label=">" + press_msg="1" + release_msg="0" } rectangle { object { @@ -2521,78 +2499,56 @@ polyline { (483,357) } } -composite { +polyline { object { x=482 y=85 width=2 height=273 } - "composite name"="" - children { - polyline { - object { - x=482 - y=85 - width=2 - height=273 - } - "basic attribute" { - clr=14 - fill="outline" - width=2 - } - points { - (483,86) - (483,357) - } - } - } -} -composite { + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + points { + (483,86) + (483,357) + } +} +text { + object { + x=220 + y=365 + width=75 + height=20 + } + "basic attribute" { + clr=30 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(Q):done.VAL" + } + textix="Moving" + align="horiz. centered" +} +text { object { x=220 y=365 width=75 height=20 } - "composite name"="" - children { - text { - object { - x=220 - y=365 - width=75 - height=20 - } - "basic attribute" { - clr=30 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)$(Q):done.VAL" - } - textix="Moving" - align="horiz. centered" - } - text { - object { - x=220 - y=365 - width=75 - height=20 - } - "basic attribute" { - clr=60 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)$(Q):done.VAL" - } - textix="Done" - align="horiz. centered" - } + "basic attribute" { + clr=60 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(Q):done.VAL" } + textix="Done" + align="horiz. centered" } "related display" { object { @@ -2947,98 +2903,76 @@ composite { bclr=17 label="-Less" } -composite { +"text entry" { + object { + x=43 + y=155 + width=44 + height=18 + } + control { + chan="$(P)$(Q):x_tweakVal.VAL" + clr=14 + bclr=51 + } + limits { + } +} +"message button" { + object { + x=87 + y=153 + width=20 + height=20 + } + control { + chan="$(P)$(Q):x_tweak.A" + clr=14 + bclr=51 + } + label=">" + press_msg="1" +} +"message button" { object { x=23 y=153 - width=84 + width=20 height=20 } - "composite name"="" - children { - "text entry" { - object { - x=43 - y=155 - width=44 - height=18 - } - control { - chan="$(P)$(Q):x_tweakVal.VAL" - clr=14 - bclr=51 - } - limits { - } - } - "message button" { - object { - x=87 - y=153 - width=20 - height=20 - } - control { - chan="$(P)$(Q):x_tweak.A" - clr=14 - bclr=51 - } - label=">" - press_msg="1" - } - "message button" { - object { - x=23 - y=153 - width=20 - height=20 - } - control { - chan="$(P)$(Q):x_tweak.B" - clr=14 - bclr=51 - } - label="<" - press_msg="1" - } - } -} -composite { + control { + chan="$(P)$(Q):x_tweak.B" + clr=14 + bclr=51 + } + label="<" + press_msg="1" +} +text { object { x=0 y=387 - width=120 + width=90 + height=10 + } + "basic attribute" { + clr=14 + } + textix="Record version:" +} +"text update" { + object { + x=90 + y=387 + width=30 height=12 } - "composite name"="" - children { - text { - object { - x=0 - y=387 - width=90 - height=10 - } - "basic attribute" { - clr=14 - } - textix="Record version:" - } - "text update" { - object { - x=90 - y=387 - width=30 - height=12 - } - monitor { - chan="$(P)$(T).VERS" - clr=54 - bclr=3 - } - limits { - } - } + monitor { + chan="$(P)$(T).VERS" + clr=54 + bclr=3 + } + limits { } } "related display" { diff --git a/opticsApp/op/adl/table_full_soft.adl b/opticsApp/op/adl/table_full_soft.adl new file mode 100644 index 0000000..387743e --- /dev/null +++ b/opticsApp/op/adl/table_full_soft.adl @@ -0,0 +1,3152 @@ + +file { + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/table_full_soft.adl" + version=030111 +} +display { + object { + x=950 + y=512 + width=490 + height=400 + } + clr=14 + bclr=3 + cmap="" + gridSpacing=5 + gridOn=0 + snapToGrid=0 +} +"color map" { + ncolors=65 + colors { + ffffff, + ececec, + dadada, + c8c8c8, + bbbbbb, + aeaeae, + 9e9e9e, + 919191, + 858585, + 787878, + 696969, + 5a5a5a, + 464646, + 2d2d2d, + 000000, + 00d800, + 1ebb00, + 339900, + 2d7f00, + 216c00, + fd0000, + de1309, + be190b, + a01207, + 820400, + 5893ff, + 597ee1, + 4b6ec7, + 3a5eab, + 27548d, + fbf34a, + f9da3c, + eeb62b, + e19015, + cd6100, + ffb0ff, + d67fe2, + ae4ebc, + 8b1a96, + 610a75, + a4aaff, + 8793e2, + 6a73c1, + 4d52a4, + 343386, + c7bb6d, + b79d5c, + a47e3c, + 7d5627, + 58340f, + 99ffff, + 73dfff, + 4ea5f9, + 2a63e4, + 0a00b8, + ebf1b5, + d4db9d, + bbc187, + a6a462, + 8b8239, + 73ff6b, + 52da3b, + 3cb420, + 289315, + 1a7309, + } +} +rectangle { + object { + x=0 + y=0 + width=490 + height=27 + } + "basic attribute" { + clr=0 + width=3 + } +} +text { + object { + x=245 + y=5 + width=245 + height=15 + } + "basic attribute" { + clr=14 + fill="outline" + width=3 + } + textix="($(P)$(T))" + align="horiz. centered" +} +"text update" { + object { + x=405 + y=519 + width=285 + height=20 + } + monitor { + chan="$(P)$(T).DESC" + clr=54 + bclr=0 + } + align="horiz. centered" + limits { + } +} +"text entry" { + object { + x=0 + y=0 + width=245 + height=27 + } + control { + chan="$(P)$(T).DESC" + clr=54 + bclr=1 + } + limits { + } +} +polyline { + object { + x=0 + y=27 + width=489 + height=3 + } + "basic attribute" { + clr=54 + width=3 + } + points { + (1,28) + (487,28) + } +} +"text update" { + object { + x=25 + y=270 + width=80 + height=12 + } + monitor { + chan="$(P)$(Q):z.HLM" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text update" { + object { + x=25 + y=180 + width=80 + height=12 + } + monitor { + chan="$(P)$(Q):y.HLM" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text update" { + object { + x=25 + y=90 + width=80 + height=12 + } + monitor { + chan="$(P)$(Q):x.HLM" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text update" { + object { + x=25 + y=282 + width=80 + height=15 + } + monitor { + chan="$(P)$(Q):z.RBV" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +rectangle { + object { + x=25 + y=280 + width=80 + height=18 + } + "basic attribute" { + clr=30 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +"text update" { + object { + x=25 + y=192 + width=80 + height=15 + } + monitor { + chan="$(P)$(Q):y.RBV" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +rectangle { + object { + x=25 + y=190 + width=80 + height=18 + } + "basic attribute" { + clr=30 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +"text update" { + object { + x=25 + y=102 + width=80 + height=15 + } + monitor { + chan="$(P)$(Q):x.RBV" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +rectangle { + object { + x=25 + y=100 + width=80 + height=18 + } + "basic attribute" { + clr=30 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +"choice button" { + object { + x=5 + y=365 + width=83 + height=20 + } + control { + chan="$(P)$(T).SET" + clr=14 + bclr=51 + } + stacking="column" +} +"message button" { + object { + x=180 + y=365 + width=40 + height=20 + } + control { + chan="$(P)$(Q):init" + clr=14 + bclr=51 + } + label="Init" + press_msg="1" + release_msg="0" +} +"message button" { + object { + x=140 + y=365 + width=40 + height=20 + } + control { + chan="$(P)$(Q):sync" + clr=14 + bclr=51 + } + label="Sync" + press_msg="1" + release_msg="0" +} +"message button" { + object { + x=90 + y=365 + width=40 + height=20 + } + control { + chan="$(P)$(Q):zero" + clr=14 + bclr=51 + } + label="Zero" + press_msg="1" +} +"message button" { + object { + x=305 + y=365 + width=115 + height=35 + } + control { + chan="$(P)$(Q):stop.VAL" + clr=30 + bclr=20 + } + label="Stop Table" + press_msg="1" +} +"text entry" { + object { + x=25 + y=120 + width=80 + height=22 + } + control { + chan="$(P)$(Q):x.VAL" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=10 + y=120 + width=20 + height=20 + } + "basic attribute" { + clr=14 + } + textix="X" +} +"text update" { + object { + x=25 + y=143 + width=80 + height=12 + } + monitor { + chan="$(P)$(Q):x.LLM" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text entry" { + object { + x=25 + y=210 + width=80 + height=22 + } + control { + chan="$(P)$(Q):y.VAL" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=10 + y=210 + width=20 + height=20 + } + "basic attribute" { + clr=14 + } + textix="Y" +} +"text entry" { + object { + x=43 + y=245 + width=44 + height=18 + } + control { + chan="$(P)$(Q):y.TWV" + clr=14 + bclr=51 + } + limits { + } +} +"message button" { + object { + x=87 + y=243 + width=20 + height=20 + } + control { + chan="$(P)$(Q):y.TWF" + clr=14 + bclr=51 + } + label=">" + press_msg="1" +} +"message button" { + object { + x=23 + y=243 + width=20 + height=20 + } + control { + chan="$(P)$(Q):y.TWR" + clr=14 + bclr=51 + } + label="<" + press_msg="1" +} +"text update" { + object { + x=25 + y=233 + width=80 + height=12 + } + monitor { + chan="$(P)$(Q):y.LLM" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text entry" { + object { + x=25 + y=300 + width=80 + height=22 + } + control { + chan="$(P)$(Q):z.VAL" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=10 + y=300 + width=20 + height=20 + } + "basic attribute" { + clr=14 + } + textix="Z" +} +"text entry" { + object { + x=43 + y=335 + width=44 + height=18 + } + control { + chan="$(P)$(Q):z.TWV" + clr=14 + bclr=51 + } + limits { + } +} +"message button" { + object { + x=87 + y=333 + width=20 + height=20 + } + control { + chan="$(P)$(Q):z.TWF" + clr=14 + bclr=51 + } + label=">" + press_msg="1" +} +"message button" { + object { + x=23 + y=333 + width=20 + height=20 + } + control { + chan="$(P)$(Q):z.TWR" + clr=14 + bclr=51 + } + label="<" + press_msg="1" +} +"text update" { + object { + x=25 + y=323 + width=80 + height=12 + } + monitor { + chan="$(P)$(Q):z.LLM" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +text { + object { + x=208 + y=55 + width=65 + height=20 + } + "basic attribute" { + clr=20 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).LVIO" + } + textix="Limit" + align="horiz. centered" +} +text { + object { + x=248 + y=55 + width=230 + height=20 + } + "basic attribute" { + clr=14 + } + textix="Motors" + align="horiz. centered" +} +"text update" { + object { + x=10 + y=71 + width=95 + height=15 + } + monitor { + chan="$(P)$(T).LEGU" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +text { + object { + x=10 + y=55 + width=115 + height=20 + } + "basic attribute" { + clr=14 + } + textix="Translate" + align="horiz. centered" +} +polyline { + object { + x=5 + y=85 + width=2 + height=273 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + points { + (6,86) + (6,357) + } +} +polyline { + object { + x=110 + y=85 + width=2 + height=273 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + points { + (111,86) + (111,357) + } +} +polyline { + object { + x=0 + y=52 + width=488 + height=2 + } + "basic attribute" { + clr=54 + width=2 + } + points { + (1,53) + (487,53) + } +} +rectangle { + object { + x=23 + y=98 + width=84 + height=22 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +rectangle { + object { + x=23 + y=188 + width=84 + height=22 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +rectangle { + object { + x=23 + y=278 + width=84 + height=22 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +text { + object { + x=115 + y=120 + width=20 + height=20 + } + "basic attribute" { + clr=14 + } + textix="AX" +} +"message button" { + object { + x=138 + y=153 + width=20 + height=20 + } + control { + chan="$(P)$(Q):ax.TWR" + clr=14 + bclr=51 + } + label="<" + press_msg="1" +} +text { + object { + x=115 + y=210 + width=20 + height=20 + } + "basic attribute" { + clr=14 + } + textix="AY" +} +"message button" { + object { + x=138 + y=243 + width=20 + height=20 + } + control { + chan="$(P)$(Q):ay.TWR" + clr=14 + bclr=51 + } + label="<" + press_msg="1" +} +text { + object { + x=115 + y=300 + width=20 + height=20 + } + "basic attribute" { + clr=14 + } + textix="AZ" +} +"message button" { + object { + x=138 + y=333 + width=20 + height=20 + } + control { + chan="$(P)$(Q):az.TWR" + clr=14 + bclr=51 + } + label="<" + press_msg="1" +} +"text update" { + object { + x=115 + y=71 + width=105 + height=15 + } + monitor { + chan="$(P)$(T).AEGU" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +text { + object { + x=115 + y=55 + width=125 + height=20 + } + "basic attribute" { + clr=14 + } + textix="Rotate" + align="horiz. centered" +} +polyline { + object { + x=225 + y=85 + width=2 + height=274 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + points { + (226,86) + (226,358) + } +} +"text update" { + object { + x=140 + y=90 + width=80 + height=12 + } + monitor { + chan="$(P)$(Q):ax.HLM" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text update" { + object { + x=140 + y=102 + width=80 + height=15 + } + monitor { + chan="$(P)$(Q):ax.RBV" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text entry" { + object { + x=140 + y=120 + width=80 + height=22 + } + control { + chan="$(P)$(Q):ax.VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text update" { + object { + x=140 + y=143 + width=80 + height=12 + } + monitor { + chan="$(P)$(Q):ax.LLM" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text update" { + object { + x=140 + y=180 + width=80 + height=12 + } + monitor { + chan="$(P)$(Q):ay.HLM" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text update" { + object { + x=140 + y=192 + width=80 + height=15 + } + monitor { + chan="$(P)$(Q):ay.RBV" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text entry" { + object { + x=140 + y=210 + width=80 + height=22 + } + control { + chan="$(P)$(Q):ay.VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text update" { + object { + x=140 + y=233 + width=80 + height=12 + } + monitor { + chan="$(P)$(Q):ay.LLM" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text update" { + object { + x=140 + y=270 + width=80 + height=12 + } + monitor { + chan="$(P)$(Q):az.HLM" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text update" { + object { + x=140 + y=282 + width=80 + height=15 + } + monitor { + chan="$(P)$(Q):az.RBV" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text entry" { + object { + x=140 + y=300 + width=80 + height=22 + } + control { + chan="$(P)$(Q):az.VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text update" { + object { + x=140 + y=323 + width=80 + height=12 + } + monitor { + chan="$(P)$(Q):az.LLM" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +rectangle { + object { + x=140 + y=100 + width=80 + height=18 + } + "basic attribute" { + clr=30 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +rectangle { + object { + x=140 + y=190 + width=80 + height=18 + } + "basic attribute" { + clr=30 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +rectangle { + object { + x=140 + y=280 + width=80 + height=18 + } + "basic attribute" { + clr=30 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +rectangle { + object { + x=138 + y=98 + width=84 + height=22 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +rectangle { + object { + x=138 + y=188 + width=84 + height=22 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +rectangle { + object { + x=138 + y=278 + width=84 + height=22 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +"text entry" { + object { + x=158 + y=335 + width=44 + height=18 + } + control { + chan="$(P)$(Q):az.TWV" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=158 + y=245 + width=44 + height=18 + } + control { + chan="$(P)$(Q):ay.TWV" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=158 + y=155 + width=44 + height=18 + } + control { + chan="$(P)$(Q):ax.TWV" + clr=14 + bclr=51 + } + limits { + } +} +"message button" { + object { + x=202 + y=153 + width=20 + height=20 + } + control { + chan="$(P)$(Q):ax.TWF" + clr=14 + bclr=51 + } + label=">" + press_msg="1" +} +"message button" { + object { + x=202 + y=243 + width=20 + height=20 + } + control { + chan="$(P)$(Q):ay.TWF" + clr=14 + bclr=51 + } + label=">" + press_msg="1" +} +"message button" { + object { + x=202 + y=333 + width=20 + height=20 + } + control { + chan="$(P)$(Q):az.TWF" + clr=14 + bclr=51 + } + label=">" + press_msg="1" +} +polyline { + object { + x=4 + y=86 + width=224 + height=2 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + points { + (5,87) + (227,87) + } +} +polyline { + object { + x=4 + y=176 + width=223 + height=2 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + points { + (5,177) + (226,177) + } +} +polyline { + object { + x=4 + y=266 + width=223 + height=2 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + points { + (5,267) + (226,267) + } +} +polyline { + object { + x=4 + y=356 + width=225 + height=2 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + points { + (5,357) + (228,357) + } +} +text { + object { + x=248 + y=300 + width=30 + height=20 + } + "basic attribute" { + clr=14 + } + textix="M1Y" +} +text { + object { + x=248 + y=210 + width=30 + height=20 + } + "basic attribute" { + clr=14 + } + textix="M0Y" +} +text { + object { + x=248 + y=120 + width=30 + height=20 + } + "basic attribute" { + clr=14 + } + textix="M0X" +} +"message button" { + object { + x=280 + y=333 + width=20 + height=20 + } + control { + chan="$(P)$(M1Y).TWR" + clr=14 + bclr=51 + } + label="<" + press_msg="1" + release_msg="0" +} +rectangle { + object { + x=280 + y=270 + width=10 + height=16 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(M1Y).LLS" + } +} +rectangle { + object { + x=280 + y=180 + width=10 + height=16 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(M0Y).LLS" + } +} +rectangle { + object { + x=280 + y=90 + width=10 + height=16 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(M0X).LLS" + } +} +"text update" { + object { + x=370 + y=71 + width=105 + height=15 + } + monitor { + chan="$(P)$(M2X).EGU" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text update" { + object { + x=248 + y=71 + width=115 + height=15 + } + monitor { + chan="$(P)$(M0X).EGU" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +polyline { + object { + x=246 + y=85 + width=2 + height=272 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + points { + (247,86) + (247,356) + } +} +"text update" { + object { + x=288 + y=90 + width=64 + height=12 + } + monitor { + chan="$(P)$(M0X).HLM" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text update" { + object { + x=280 + y=102 + width=80 + height=15 + } + monitor { + chan="$(P)$(M0X).RBV" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text entry" { + object { + x=280 + y=120 + width=80 + height=22 + } + control { + chan="$(P)$(M0X).VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text update" { + object { + x=288 + y=143 + width=64 + height=12 + } + monitor { + chan="$(P)$(M0X).LLM" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text update" { + object { + x=288 + y=180 + width=64 + height=12 + } + monitor { + chan="$(P)$(M0Y).HLM" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text update" { + object { + x=280 + y=192 + width=80 + height=15 + } + monitor { + chan="$(P)$(M0Y).RBV" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text entry" { + object { + x=280 + y=210 + width=80 + height=22 + } + control { + chan="$(P)$(M0Y).VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text update" { + object { + x=288 + y=233 + width=64 + height=12 + } + monitor { + chan="$(P)$(M0Y).LLM" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text update" { + object { + x=288 + y=270 + width=64 + height=12 + } + monitor { + chan="$(P)$(M1Y).HLM" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text update" { + object { + x=280 + y=282 + width=80 + height=15 + } + monitor { + chan="$(P)$(M1Y).RBV" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text entry" { + object { + x=280 + y=300 + width=80 + height=22 + } + control { + chan="$(P)$(M1Y).VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text update" { + object { + x=288 + y=323 + width=64 + height=12 + } + monitor { + chan="$(P)$(M1Y).LLM" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"message button" { + object { + x=280 + y=153 + width=20 + height=20 + } + control { + chan="$(P)$(M0X).TWR" + clr=14 + bclr=51 + } + label="<" + press_msg="1" + release_msg="0" +} +"message button" { + object { + x=280 + y=243 + width=20 + height=20 + } + control { + chan="$(P)$(M0Y).TWR" + clr=14 + bclr=51 + } + label="<" + press_msg="1" + release_msg="0" +} +"text entry" { + object { + x=300 + y=335 + width=40 + height=18 + } + control { + chan="$(P)$(M1Y).TWV" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=300 + y=245 + width=40 + height=18 + } + control { + chan="$(P)$(M0Y).TWV" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=300 + y=155 + width=40 + height=18 + } + control { + chan="$(P)$(M0X).TWV" + clr=14 + bclr=51 + } + limits { + } +} +"message button" { + object { + x=340 + y=153 + width=20 + height=20 + } + control { + chan="$(P)$(M0X).TWF" + clr=14 + bclr=51 + } + label=">" + press_msg="1" + release_msg="0" +} +"message button" { + object { + x=340 + y=243 + width=20 + height=20 + } + control { + chan="$(P)$(M0Y).TWF" + clr=14 + bclr=51 + } + label=">" + press_msg="1" + release_msg="0" +} +"message button" { + object { + x=340 + y=333 + width=20 + height=20 + } + control { + chan="$(P)$(M1Y).TWF" + clr=14 + bclr=51 + } + label=">" + press_msg="1" + release_msg="0" +} +rectangle { + object { + x=350 + y=90 + width=10 + height=16 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(M0X).HLS" + } +} +rectangle { + object { + x=350 + y=180 + width=10 + height=16 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(M0Y).HLS" + } +} +rectangle { + object { + x=350 + y=270 + width=10 + height=16 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(M1Y).HLS" + } +} +rectangle { + object { + x=278 + y=88 + width=84 + height=87 + } + "basic attribute" { + clr=60 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(M0X).DMOV" + } +} +rectangle { + object { + x=278 + y=178 + width=84 + height=87 + } + "basic attribute" { + clr=60 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(M0Y).DMOV" + } +} +rectangle { + object { + x=278 + y=268 + width=84 + height=87 + } + "basic attribute" { + clr=60 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(M1Y).DMOV" + } +} +text { + object { + x=368 + y=300 + width=30 + height=20 + } + "basic attribute" { + clr=14 + } + textix="M2Z" +} +text { + object { + x=368 + y=210 + width=30 + height=20 + } + "basic attribute" { + clr=14 + } + textix="M2Y" +} +text { + object { + x=368 + y=120 + width=30 + height=20 + } + "basic attribute" { + clr=14 + } + textix="M2X" +} +"message button" { + object { + x=400 + y=333 + width=20 + height=20 + } + control { + chan="$(P)$(M2Z).TWR" + clr=14 + bclr=51 + } + label="<" + press_msg="1" + release_msg="0" +} +rectangle { + object { + x=400 + y=270 + width=10 + height=16 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(M2Z).LLS" + } +} +rectangle { + object { + x=400 + y=180 + width=10 + height=16 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(M2Y).LLS" + } +} +rectangle { + object { + x=400 + y=90 + width=10 + height=16 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(M2X).LLS" + } +} +polyline { + object { + x=364 + y=86 + width=2 + height=272 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + points { + (365,87) + (365,357) + } +} +"text update" { + object { + x=408 + y=90 + width=64 + height=12 + } + monitor { + chan="$(P)$(M2X).HLM" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text update" { + object { + x=400 + y=102 + width=80 + height=15 + } + monitor { + chan="$(P)$(M2X).RBV" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text entry" { + object { + x=400 + y=120 + width=80 + height=22 + } + control { + chan="$(P)$(M2X).VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text update" { + object { + x=408 + y=143 + width=64 + height=12 + } + monitor { + chan="$(P)$(M2X).LLM" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text update" { + object { + x=408 + y=180 + width=64 + height=12 + } + monitor { + chan="$(P)$(M2Y).HLM" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text update" { + object { + x=400 + y=192 + width=80 + height=15 + } + monitor { + chan="$(P)$(M2Y).RBV" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text entry" { + object { + x=400 + y=210 + width=80 + height=22 + } + control { + chan="$(P)$(M2Y).VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text update" { + object { + x=408 + y=233 + width=64 + height=12 + } + monitor { + chan="$(P)$(M2Y).LLM" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text update" { + object { + x=408 + y=270 + width=64 + height=12 + } + monitor { + chan="$(P)$(M2Z).HLM" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text update" { + object { + x=400 + y=282 + width=80 + height=15 + } + monitor { + chan="$(P)$(M2Z).RBV" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text entry" { + object { + x=400 + y=300 + width=80 + height=22 + } + control { + chan="$(P)$(M2Z).VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text update" { + object { + x=408 + y=323 + width=64 + height=12 + } + monitor { + chan="$(P)$(M2Z).LLM" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"message button" { + object { + x=400 + y=153 + width=20 + height=20 + } + control { + chan="$(P)$(M2X).TWR" + clr=14 + bclr=51 + } + label="<" + press_msg="1" + release_msg="0" +} +"message button" { + object { + x=400 + y=243 + width=20 + height=20 + } + control { + chan="$(P)$(M2Y).TWR" + clr=14 + bclr=51 + } + label="<" + press_msg="1" + release_msg="0" +} +"text entry" { + object { + x=420 + y=155 + width=40 + height=18 + } + control { + chan="$(P)$(M2X).TWV" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=420 + y=245 + width=40 + height=18 + } + control { + chan="$(P)$(M2Y).TWV" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=420 + y=335 + width=40 + height=18 + } + control { + chan="$(P)$(M2Z).TWV" + clr=14 + bclr=51 + } + limits { + } +} +"message button" { + object { + x=460 + y=153 + width=20 + height=20 + } + control { + chan="$(P)$(M2X).TWF" + clr=14 + bclr=51 + } + label=">" + press_msg="1" + release_msg="0" +} +"message button" { + object { + x=460 + y=243 + width=20 + height=20 + } + control { + chan="$(P)$(M2Y).TWF" + clr=14 + bclr=51 + } + label=">" + press_msg="1" + release_msg="0" +} +"message button" { + object { + x=460 + y=333 + width=20 + height=20 + } + control { + chan="$(P)$(M2Z).TWF" + clr=14 + bclr=51 + } + label=">" + press_msg="1" + release_msg="0" +} +rectangle { + object { + x=470 + y=90 + width=10 + height=16 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(M2X).HLS" + } +} +rectangle { + object { + x=470 + y=180 + width=10 + height=16 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(M2Y).HLS" + } +} +rectangle { + object { + x=470 + y=270 + width=10 + height=16 + } + "basic attribute" { + clr=20 + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(M2Z).HLS" + } +} +rectangle { + object { + x=398 + y=88 + width=84 + height=87 + } + "basic attribute" { + clr=60 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(M2X).DMOV" + } +} +rectangle { + object { + x=398 + y=178 + width=84 + height=87 + } + "basic attribute" { + clr=60 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(M2Y).DMOV" + } +} +rectangle { + object { + x=398 + y=268 + width=84 + height=87 + } + "basic attribute" { + clr=60 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(M2Z).DMOV" + } +} +polyline { + object { + x=245 + y=86 + width=239 + height=2 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + points { + (246,87) + (483,87) + } +} +polyline { + object { + x=245 + y=176 + width=240 + height=2 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + points { + (246,177) + (484,177) + } +} +polyline { + object { + x=245 + y=266 + width=240 + height=2 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + points { + (246,267) + (484,267) + } +} +polyline { + object { + x=245 + y=356 + width=239 + height=2 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + points { + (246,357) + (483,357) + } +} +polyline { + object { + x=482 + y=85 + width=2 + height=273 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + points { + (483,86) + (483,357) + } +} +text { + object { + x=220 + y=365 + width=75 + height=20 + } + "basic attribute" { + clr=30 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(Q):done.VAL" + } + textix="Moving" + align="horiz. centered" +} +text { + object { + x=220 + y=365 + width=75 + height=20 + } + "basic attribute" { + clr=60 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(Q):done.VAL" + } + textix="Done" + align="horiz. centered" +} +"related display" { + object { + x=366 + y=88 + width=18 + height=18 + } + display[0] { + label="M2X (Tiny)" + name="motorx_tiny.adl" + args="P=$(P),M=$(M2X)" + } + display[1] { + label="M2X (Small)" + name="motorx.adl" + args="P=$(P),M=$(M2X)" + } + display[2] { + label="M2X (Medium)" + name="motorx_more.adl" + args="P=$(P),M=$(M2X)" + } + display[3] { + label="M2X (Setup)" + name="motorx_setup.adl" + args="P=$(P),M=$(M2X)" + } + display[4] { + label="Scan parameters" + name="scanParms.adl" + args="P=$(P),Q=$(M2X),PV=$(M2X)" + } + clr=0 + bclr=17 +} +"related display" { + object { + x=366 + y=178 + width=18 + height=18 + } + display[0] { + label="M2Y (Tiny)" + name="motorx_tiny.adl" + args="P=$(P),M=$(M2Y)" + } + display[1] { + label="M2Y (Small)" + name="motorx.adl" + args="P=$(P),M=$(M2Y)" + } + display[2] { + label="M2Y (Medium)" + name="motorx_more.adl" + args="P=$(P),M=$(M2Y)" + } + display[3] { + label="M2Y (Setup)" + name="motorx_setup.adl" + args="P=$(P),M=$(M2Y)" + } + display[4] { + label="Scan parameters" + name="scanParms.adl" + args="P=$(P),Q=$(M2Y),PV=$(M2Y)" + } + clr=0 + bclr=17 +} +"related display" { + object { + x=366 + y=268 + width=18 + height=18 + } + display[0] { + label="M2Z (Tiny)" + name="motorx_tiny.adl" + args="P=$(P),M=$(M2Z)" + } + display[1] { + label="M2Z (Small)" + name="motorx.adl" + args="P=$(P),M=$(M2Z)" + } + display[2] { + label="M2Z (Medium)" + name="motorx_more.adl" + args="P=$(P),M=$(M2Z)" + } + display[3] { + label="M2Z (Setup)" + name="motorx_setup.adl" + args="P=$(P),M=$(M2Z)" + } + display[4] { + label="Scan parameters" + name="scanParms.adl" + args="P=$(P),Q=$(M2Z),PV=$(M2Z)" + } + clr=0 + bclr=17 +} +"related display" { + object { + x=248 + y=268 + width=18 + height=18 + } + display[0] { + label="M1Y (Tiny)" + name="motorx_tiny.adl" + args="P=$(P),M=$(M1Y)" + } + display[1] { + label="M1Y (Small)" + name="motorx.adl" + args="P=$(P),M=$(M1Y)" + } + display[2] { + label="M1Y (Medium)" + name="motorx_more.adl" + args="P=$(P),M=$(M1Y)" + } + display[3] { + label="M1Y (Setup)" + name="motorx_setup.adl" + args="P=$(P),M=$(M1Y)" + } + display[4] { + label="Scan parameters" + name="scanParms.adl" + args="P=$(P),Q=$(M1Y),PV=$(M1Y)" + } + clr=0 + bclr=17 +} +"related display" { + object { + x=248 + y=178 + width=18 + height=18 + } + display[0] { + label="M0Y (Tiny)" + name="motorx_tiny.adl" + args="P=$(P),M=$(M0Y)" + } + display[1] { + label="M0Y (Small)" + name="motorx.adl" + args="P=$(P),M=$(M0Y)" + } + display[2] { + label="M0Y (Medium)" + name="motorx_more.adl" + args="P=$(P),M=$(M0Y)" + } + display[3] { + label="M0Y (Setup)" + name="motorx_setup.adl" + args="P=$(P),M=$(M0Y)" + } + display[4] { + label="Scan parameters" + name="scanParms.adl" + args="P=$(P),Q=$(M0Y),PV=$(M0Y)" + } + clr=0 + bclr=17 +} +"related display" { + object { + x=248 + y=88 + width=18 + height=18 + } + display[0] { + label="M0X (Tiny)" + name="motorx_tiny.adl" + args="P=$(P),M=$(M0X)" + } + display[1] { + label="M0X (Small)" + name="motorx.adl" + args="P=$(P),M=$(M0X)" + } + display[2] { + label="M0X (Medium)" + name="motorx_more.adl" + args="P=$(P),M=$(M0X)" + } + display[3] { + label="M0X (Setup)" + name="motorx_setup.adl" + args="P=$(P),M=$(M0X)" + } + display[4] { + label="Scan parameters" + name="scanParms.adl" + args="P=$(P),Q=$(M0X),PV=$(M0X)" + } + clr=0 + bclr=17 +} +"related display" { + object { + x=440 + y=380 + width=40 + height=20 + } + display[0] { + label="Setup (SRI geometry)" + name="table_setup_SRI.adl" + args="P=$(P),Q=$(Q),T=$(T)" + } + display[1] { + label="Setup (GEOCARS geometry)" + name="table_setup_GEOCARS.adl" + args="P=$(P),Q=$(Q),T=$(T)" + } + display[2] { + label="Setup (NEWPORT geometry)" + name="table_setup_NEWPORT.adl" + args="P=$(P),Q=$(Q),T=$(T)" + } + display[3] { + label="Setup (PNC geometry)" + name="table_setup_PNC.adl" + args="P=$(P),Q=$(Q),T=$(T)" + } + display[4] { + label="Fixed points" + name="table_fixedPoints.adl" + args="P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z)" + } + clr=0 + bclr=17 + label="-More" +} +"related display" { + object { + x=440 + y=360 + width=40 + height=20 + } + display[0] { + label="Small display" + name="table_soft.adl" + args="P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z)" + policy="replace display" + } + clr=0 + bclr=17 + label="-Less" +} +"text entry" { + object { + x=43 + y=155 + width=44 + height=18 + } + control { + chan="$(P)$(Q):x.TWV" + clr=14 + bclr=51 + } + limits { + } +} +"message button" { + object { + x=87 + y=153 + width=20 + height=20 + } + control { + chan="$(P)$(Q):x.TWF" + clr=14 + bclr=51 + } + label=">" + press_msg="1" +} +"message button" { + object { + x=23 + y=153 + width=20 + height=20 + } + control { + chan="$(P)$(Q):x.TWR" + clr=14 + bclr=51 + } + label="<" + press_msg="1" +} +text { + object { + x=0 + y=387 + width=90 + height=10 + } + "basic attribute" { + clr=14 + } + textix="Record version:" +} +"text update" { + object { + x=90 + y=387 + width=30 + height=12 + } + monitor { + chan="$(P)$(T).VERS" + clr=54 + bclr=3 + } + limits { + } +} +"related display" { + object { + x=395 + y=31 + width=95 + height=20 + } + display[0] { + label="Refresh fixed-point menu" + name="table_full_refresh.adl" + args="P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z)" + policy="replace display" + } + clr=0 + bclr=17 + label="-Refresh menu" +} +menu { + object { + x=195 + y=31 + width=200 + height=20 + } + control { + chan="$(P)$(Q)fpSelect" + clr=14 + bclr=51 + } +} +text { + object { + x=108 + y=34 + width=85 + height=14 + } + "basic attribute" { + clr=14 + } + textix="Fixed point:" + align="horiz. centered" +} +"related display" { + object { + x=112 + y=88 + width=18 + height=18 + } + display[1] { + label="M0X (Small)" + name="motorx.adl" + args="P=$(P),M=$(Q):ax" + } + display[2] { + label="M0X (Medium)" + name="motorx_more.adl" + args="P=$(P),M=$(Q):ax" + } + clr=0 + bclr=17 +} +"related display" { + object { + x=7 + y=88 + width=18 + height=18 + } + display[1] { + label="M0X (Small)" + name="motorx.adl" + args="P=$(P),M=$(Q):x" + } + display[2] { + label="M0X (Medium)" + name="motorx_more.adl" + args="P=$(P),M=$(Q):x" + } + clr=0 + bclr=17 +} +"related display" { + object { + x=112 + y=178 + width=18 + height=18 + } + display[1] { + label="M0X (Small)" + name="motorx.adl" + args="P=$(P),M=$(Q):ay" + } + display[2] { + label="M0X (Medium)" + name="motorx_more.adl" + args="P=$(P),M=$(Q):ay" + } + clr=0 + bclr=17 +} +"related display" { + object { + x=7 + y=178 + width=18 + height=18 + } + display[1] { + label="M0X (Small)" + name="motorx.adl" + args="P=$(P),M=$(Q):y" + } + display[2] { + label="M0X (Medium)" + name="motorx_more.adl" + args="P=$(P),M=$(Q):y" + } + clr=0 + bclr=17 +} +"related display" { + object { + x=112 + y=268 + width=18 + height=18 + } + display[1] { + label="M0X (Small)" + name="motorx.adl" + args="P=$(P),M=$(Q):az" + } + display[2] { + label="M0X (Medium)" + name="motorx_more.adl" + args="P=$(P),M=$(Q):az" + } + clr=0 + bclr=17 +} +"related display" { + object { + x=7 + y=268 + width=18 + height=18 + } + display[1] { + label="M0X (Small)" + name="motorx.adl" + args="P=$(P),M=$(Q):z" + } + display[2] { + label="M0X (Medium)" + name="motorx_more.adl" + args="P=$(P),M=$(Q):z" + } + clr=0 + bclr=17 +} +rectangle { + object { + x=23 + y=88 + width=86 + height=87 + } + "basic attribute" { + clr=60 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(Q):x.DMOV" + } +} +rectangle { + object { + x=138 + y=88 + width=86 + height=87 + } + "basic attribute" { + clr=60 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(Q):ax.DMOV" + } +} +rectangle { + object { + x=23 + y=178 + width=86 + height=87 + } + "basic attribute" { + clr=60 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(Q):y.DMOV" + } +} +rectangle { + object { + x=138 + y=179 + width=86 + height=87 + } + "basic attribute" { + clr=60 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(Q):ay.DMOV" + } +} +rectangle { + object { + x=23 + y=269 + width=86 + height=87 + } + "basic attribute" { + clr=60 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(Q):z.DMOV" + } +} +rectangle { + object { + x=138 + y=269 + width=86 + height=87 + } + "basic attribute" { + clr=60 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(Q):az.DMOV" + } +} diff --git a/opticsApp/op/adl/table_help.adl b/opticsApp/op/adl/table_help.adl index 82e7aa9..8bbbdb9 100644 --- a/opticsApp/op/adl/table_help.adl +++ b/opticsApp/op/adl/table_help.adl @@ -1,7 +1,7 @@ file { - name="/tmp_mnt/home/sricat/BCDA/epics/3.13.0/baseR3.13.0.beta7_shareR1.0/stdApp/op/adl/table_help_3.0.adl" - version=020205 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/table_help.adl" + version=030111 } display { object { @@ -13,6 +13,9 @@ display { clr=14 bclr=2 cmap="" + gridSpacing=5 + gridOn=0 + snapToGrid=0 } "color map" { ncolors=65 @@ -147,42 +150,29 @@ text { } stacking="column" } -composite { +text { object { x=101 y=170 width=300 - height=29 - } - "composite name"="" - vis="static" - chan="" - children { - text { - object { - x=101 - y=170 - width=300 - height=14 - } - "basic attribute" { - clr=14 - } - textix="Redefine current table coordinates as zero" - } - text { - object { - x=101 - y=185 - width=300 - height=14 - } - "basic attribute" { - clr=14 - } - textix="(without moving any motors)" - } + height=14 + } + "basic attribute" { + clr=14 + } + textix="Redefine current table coordinates as zero" +} +text { + object { + x=101 + y=185 + width=300 + height=14 + } + "basic attribute" { + clr=14 } + textix="(without moving any motors)" } "message button" { object { @@ -303,6 +293,8 @@ text { clr=14 bclr=51 } + limits { + } } text { object { @@ -327,6 +319,8 @@ text { clr=14 bclr=4 } + limits { + } } "text entry" { object { @@ -340,6 +334,8 @@ text { clr=14 bclr=51 } + limits { + } } "message button" { object { @@ -386,6 +382,8 @@ text { bclr=3 } align="horiz. centered" + limits { + } } text { object { @@ -451,6 +449,8 @@ polyline { bclr=3 } align="horiz. centered" + limits { + } } "text update" { object { @@ -465,6 +465,8 @@ polyline { bclr=3 } align="horiz. centered" + limits { + } } text { object { @@ -503,6 +505,8 @@ text { bclr=3 } align="horiz. centered" + limits { + } } text { object { diff --git a/opticsApp/op/adl/table_limits.adl b/opticsApp/op/adl/table_limits.adl new file mode 100644 index 0000000..a6394c3 --- /dev/null +++ b/opticsApp/op/adl/table_limits.adl @@ -0,0 +1,683 @@ + +file { + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/table_limits.adl" + version=030111 +} +display { + object { + x=800 + y=532 + width=700 + height=130 + } + clr=14 + bclr=3 + cmap="" + gridSpacing=5 + gridOn=0 + snapToGrid=1 +} +"color map" { + ncolors=65 + colors { + ffffff, + ececec, + dadada, + c8c8c8, + bbbbbb, + aeaeae, + 9e9e9e, + 919191, + 858585, + 787878, + 696969, + 5a5a5a, + 464646, + 2d2d2d, + 000000, + 00d800, + 1ebb00, + 339900, + 2d7f00, + 216c00, + fd0000, + de1309, + be190b, + a01207, + 820400, + 5893ff, + 597ee1, + 4b6ec7, + 3a5eab, + 27548d, + fbf34a, + f9da3c, + eeb62b, + e19015, + cd6100, + ffb0ff, + d67fe2, + ae4ebc, + 8b1a96, + 610a75, + a4aaff, + 8793e2, + 6a73c1, + 4d52a4, + 343386, + c7bb6d, + b79d5c, + a47e3c, + 7d5627, + 58340f, + 99ffff, + 73dfff, + 4ea5f9, + 2a63e4, + 0a00b8, + ebf1b5, + d4db9d, + bbc187, + a6a462, + 8b8239, + 73ff6b, + 52da3b, + 3cb420, + 289315, + 1a7309, + } +} +text { + object { + x=5 + y=5 + width=110 + height=20 + } + "basic attribute" { + clr=0 + } + textix="User limits" +} +polyline { + object { + x=0 + y=0 + width=700 + height=2 + } + "basic attribute" { + clr=14 + width=2 + } + points { + (1,1) + (699,1) + } +} +text { + object { + x=110 + y=9 + width=80 + height=20 + } + "basic attribute" { + clr=14 + } + textix="X" + align="horiz. centered" +} +text { + object { + x=195 + y=9 + width=80 + height=20 + } + "basic attribute" { + clr=14 + } + textix="Y" + align="horiz. centered" +} +text { + object { + x=280 + y=9 + width=80 + height=20 + } + "basic attribute" { + clr=14 + } + textix="Z" + align="horiz. centered" +} +text { + object { + x=405 + y=9 + width=80 + height=20 + } + "basic attribute" { + clr=14 + } + textix="AX" + align="horiz. centered" +} +text { + object { + x=490 + y=9 + width=80 + height=20 + } + "basic attribute" { + clr=14 + } + textix="AY" + align="horiz. centered" +} +text { + object { + x=575 + y=9 + width=80 + height=20 + } + "basic attribute" { + clr=14 + } + textix="AZ" + align="horiz. centered" +} +"text entry" { + object { + x=110 + y=29 + width=80 + height=18 + } + control { + chan="$(P)$(T).UHXR" + clr=14 + bclr=51 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=195 + y=29 + width=80 + height=18 + } + control { + chan="$(P)$(T).UHYR" + clr=14 + bclr=51 + } + format="compact" + limits { + } +} +text { + object { + x=60 + y=29 + width=40 + height=20 + } + "basic attribute" { + clr=14 + } + textix="High" +} +"text entry" { + object { + x=110 + y=49 + width=80 + height=18 + } + control { + chan="$(P)$(T).ULXR" + clr=14 + bclr=51 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=195 + y=49 + width=80 + height=18 + } + control { + chan="$(P)$(T).ULYR" + clr=14 + bclr=51 + } + format="compact" + limits { + } +} +text { + object { + x=60 + y=49 + width=20 + height=20 + } + "basic attribute" { + clr=14 + } + textix="Low" +} +"text entry" { + object { + x=280 + y=49 + width=80 + height=18 + } + control { + chan="$(P)$(T).ULZR" + clr=14 + bclr=51 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=280 + y=29 + width=80 + height=18 + } + control { + chan="$(P)$(T).UHZR" + clr=14 + bclr=51 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=405 + y=49 + width=80 + height=18 + } + control { + chan="$(P)$(T).ULAXR" + clr=14 + bclr=51 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=405 + y=29 + width=80 + height=18 + } + control { + chan="$(P)$(T).UHAXR" + clr=14 + bclr=51 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=490 + y=49 + width=80 + height=18 + } + control { + chan="$(P)$(T).ULAYR" + clr=14 + bclr=51 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=490 + y=29 + width=80 + height=18 + } + control { + chan="$(P)$(T).UHAYR" + clr=14 + bclr=51 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=575 + y=49 + width=80 + height=18 + } + control { + chan="$(P)$(T).ULAZR" + clr=14 + bclr=51 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=575 + y=29 + width=80 + height=18 + } + control { + chan="$(P)$(T).UHAZR" + clr=14 + bclr=51 + } + format="compact" + limits { + } +} +"text update" { + object { + x=475 + y=114 + width=115 + height=15 + } + monitor { + chan="$(P)$(T).AEGU" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text update" { + object { + x=175 + y=114 + width=115 + height=15 + } + monitor { + chan="$(P)$(T).LEGU" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text entry" { + object { + x=110 + y=74 + width=80 + height=18 + } + control { + chan="$(P)$(T).UHX" + clr=14 + bclr=51 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=195 + y=74 + width=80 + height=18 + } + control { + chan="$(P)$(T).UHY" + clr=14 + bclr=51 + } + format="compact" + limits { + } +} +text { + object { + x=60 + y=74 + width=40 + height=20 + } + "basic attribute" { + clr=14 + } + textix="High" +} +"text entry" { + object { + x=110 + y=94 + width=80 + height=18 + } + control { + chan="$(P)$(T).ULX" + clr=14 + bclr=51 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=195 + y=94 + width=80 + height=18 + } + control { + chan="$(P)$(T).ULY" + clr=14 + bclr=51 + } + format="compact" + limits { + } +} +text { + object { + x=60 + y=94 + width=20 + height=20 + } + "basic attribute" { + clr=14 + } + textix="Low" +} +"text entry" { + object { + x=280 + y=94 + width=80 + height=18 + } + control { + chan="$(P)$(T).ULZ" + clr=14 + bclr=51 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=280 + y=74 + width=80 + height=18 + } + control { + chan="$(P)$(T).UHZ" + clr=14 + bclr=51 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=405 + y=94 + width=80 + height=18 + } + control { + chan="$(P)$(T).ULAX" + clr=14 + bclr=51 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=405 + y=74 + width=80 + height=18 + } + control { + chan="$(P)$(T).UHAX" + clr=14 + bclr=51 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=490 + y=94 + width=80 + height=18 + } + control { + chan="$(P)$(T).ULAY" + clr=14 + bclr=51 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=490 + y=74 + width=80 + height=18 + } + control { + chan="$(P)$(T).UHAY" + clr=14 + bclr=51 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=575 + y=94 + width=80 + height=18 + } + control { + chan="$(P)$(T).ULAZ" + clr=14 + bclr=51 + } + format="compact" + limits { + } +} +"text entry" { + object { + x=575 + y=74 + width=80 + height=18 + } + control { + chan="$(P)$(T).UHAZ" + clr=14 + bclr=51 + } + format="compact" + limits { + } +} +text { + object { + x=10 + y=39 + width=40 + height=20 + } + "basic attribute" { + clr=0 + } + textix="REL" +} +text { + object { + x=10 + y=84 + width=40 + height=20 + } + "basic attribute" { + clr=0 + } + textix="ABS" +} diff --git a/opticsApp/op/adl/table_setup_GEOCARS.adl b/opticsApp/op/adl/table_setup_GEOCARS.adl index edeb10b..6bda321 100644 --- a/opticsApp/op/adl/table_setup_GEOCARS.adl +++ b/opticsApp/op/adl/table_setup_GEOCARS.adl @@ -1,14 +1,14 @@ file { - name="/home/oxygen4/MOONEY/epics/synApps_5_1/support/optics/cvs/opticsApp/op/adl/table_setup_GEOCARS.adl" - version=030004 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/table_setup_GEOCARS.adl" + version=030111 } display { object { - x=36 - y=25 + x=729 + y=513 width=700 - height=455 + height=500 } clr=14 bclr=3 @@ -518,18 +518,6 @@ composite { } } } -text { - object { - x=0 - y=446 - width=30 - height=10 - } - "basic attribute" { - clr=14 - } - textix="V5.1" -} text { object { x=415 @@ -587,592 +575,238 @@ text { } textix="This display is for the GEOCARS geometry" } -text { +rectangle { object { - x=5 - y=376 - width=110 + x=469 + y=241 + width=200 height=20 } "basic attribute" { - clr=0 + clr=52 } - textix="User limits" } -polyline { +oval { object { - x=0 - y=371 - width=709 - height=2 + x=489 + y=261 + width=10 + height=10 } "basic attribute" { - clr=14 - width=2 - } - points { - (1,372) - (708,372) + clr=50 } } -"text entry" { +oval { object { - x=110 - y=401 - width=80 - height=18 - } - control { - chan="$(P)$(T).UHX" - clr=14 - bclr=51 + x=639 + y=261 + width=10 + height=10 } - format="compact" - limits { + "basic attribute" { + clr=50 } } -"text entry" { +polyline { object { - x=195 - y=401 - width=80 - height=18 + x=600 + y=265 + width=88 + height=2 } - control { - chan="$(P)$(T).UHY" - clr=14 - bclr=51 + "basic attribute" { + clr=50 + width=2 } - format="compact" - limits { + points { + (601,266) + (687,266) } } text { object { - x=60 - y=401 - width=40 + x=484 + y=276 + width=20 height=20 } "basic attribute" { clr=14 } - textix="High" + textix="M1,M2" } -"text entry" { +text { object { - x=110 - y=421 - width=80 - height=18 + x=634 + y=276 + width=20 + height=20 } - control { - chan="$(P)$(T).ULX" + "basic attribute" { clr=14 - bclr=51 - } - format="compact" - limits { } + textix="M0" } -"text entry" { +composite { object { - x=195 - y=421 - width=80 - height=18 - } - control { - chan="$(P)$(T).ULY" - clr=14 - bclr=51 + x=640 + y=261 + width=10 + height=11 } - format="compact" - limits { + "composite name"="" + children { + rectangle { + object { + x=640 + y=261 + width=10 + height=10 + } + "basic attribute" { + clr=14 + fill="outline" + width=1 + } + "dynamic attribute" { + chan="$(P)$(T).SX" + } + } + polyline { + object { + x=641 + y=266 + width=9 + height=1 + } + "basic attribute" { + clr=14 + fill="outline" + width=1 + } + "dynamic attribute" { + chan="$(P)$(T).SX" + } + points { + (641,266) + (649,266) + } + } + polyline { + object { + x=645 + y=262 + width=1 + height=10 + } + "basic attribute" { + clr=14 + fill="outline" + width=1 + } + "dynamic attribute" { + chan="$(P)$(T).SX" + } + points { + (645,262) + (645,271) + } + } } } -text { +rectangle { object { - x=60 - y=421 - width=20 - height=20 + x=230 + y=41 + width=200 + height=250 } "basic attribute" { - clr=14 + clr=52 } - textix="Low" } -"text entry" { +oval { object { - x=280 - y=421 - width=80 - height=18 - } - control { - chan="$(P)$(T).ULZ" - clr=14 - bclr=51 + x=250 + y=261 + width=10 + height=10 } - format="compact" - limits { + "basic attribute" { + clr=50 } } -"text entry" { +oval { object { - x=280 - y=401 - width=80 - height=18 - } - control { - chan="$(P)$(T).UHZ" - clr=14 - bclr=51 + x=400 + y=161 + width=10 + height=10 } - format="compact" - limits { + "basic attribute" { + clr=50 } } -text { +oval { object { - x=110 - y=381 - width=80 - height=20 + x=250 + y=61 + width=10 + height=10 } "basic attribute" { - clr=14 + clr=50 } - textix="X" - align="horiz. centered" } text { object { - x=195 - y=381 - width=80 + x=263 + y=246 + width=20 height=20 } "basic attribute" { clr=14 } - textix="Y" - align="horiz. centered" + textix="M2" } text { object { - x=280 - y=381 - width=80 + x=411 + y=159 + width=20 height=20 } "basic attribute" { clr=14 } - textix="Z" - align="horiz. centered" + textix="M0" } -"text entry" { +text { object { - x=405 - y=421 - width=80 - height=18 + x=246 + y=71 + width=20 + height=20 } - control { - chan="$(P)$(T).ULAX" + "basic attribute" { clr=14 - bclr=51 - } - format="compact" - limits { } + textix="M1" } -"text entry" { +oval { object { - x=405 - y=401 - width=80 - height=18 - } - control { - chan="$(P)$(T).UHAX" - clr=14 - bclr=51 + x=345 + y=128 + width=10 + height=10 } - format="compact" - limits { + "basic attribute" { + clr=30 } } -"text entry" { - object { - x=490 - y=421 - width=80 - height=18 - } - control { - chan="$(P)$(T).ULAY" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -"text entry" { - object { - x=490 - y=401 - width=80 - height=18 - } - control { - chan="$(P)$(T).UHAY" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -"text entry" { - object { - x=575 - y=421 - width=80 - height=18 - } - control { - chan="$(P)$(T).ULAZ" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -"text entry" { - object { - x=575 - y=401 - width=80 - height=18 - } - control { - chan="$(P)$(T).UHAZ" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -text { - object { - x=405 - y=381 - width=80 - height=20 - } - "basic attribute" { - clr=14 - } - textix="AX" - align="horiz. centered" -} -text { - object { - x=490 - y=381 - width=80 - height=20 - } - "basic attribute" { - clr=14 - } - textix="AY" - align="horiz. centered" -} -text { - object { - x=575 - y=381 - width=80 - height=20 - } - "basic attribute" { - clr=14 - } - textix="AZ" - align="horiz. centered" -} -"text update" { - object { - x=475 - y=441 - width=115 - height=15 - } - monitor { - chan="$(P)$(T).AEGU" - clr=54 - bclr=3 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=175 - y=441 - width=115 - height=15 - } - monitor { - chan="$(P)$(T).LEGU" - clr=54 - bclr=3 - } - align="horiz. centered" - limits { - } -} -rectangle { - object { - x=469 - y=241 - width=200 - height=20 - } - "basic attribute" { - clr=52 - } -} -oval { - object { - x=489 - y=261 - width=10 - height=10 - } - "basic attribute" { - clr=50 - } -} -oval { - object { - x=639 - y=261 - width=10 - height=10 - } - "basic attribute" { - clr=50 - } -} -polyline { - object { - x=600 - y=265 - width=88 - height=2 - } - "basic attribute" { - clr=50 - width=2 - } - points { - (601,266) - (687,266) - } -} -text { - object { - x=484 - y=276 - width=20 - height=20 - } - "basic attribute" { - clr=14 - } - textix="M1,M2" -} -text { - object { - x=634 - y=276 - width=20 - height=20 - } - "basic attribute" { - clr=14 - } - textix="M0" -} -composite { - object { - x=640 - y=261 - width=10 - height=11 - } - "composite name"="" - children { - rectangle { - object { - x=640 - y=261 - width=10 - height=10 - } - "basic attribute" { - clr=14 - fill="outline" - width=1 - } - "dynamic attribute" { - chan="$(P)$(T).SX" - } - } - polyline { - object { - x=641 - y=266 - width=9 - height=1 - } - "basic attribute" { - clr=14 - fill="outline" - width=1 - } - "dynamic attribute" { - chan="$(P)$(T).SX" - } - points { - (641,266) - (649,266) - } - } - polyline { - object { - x=645 - y=262 - width=1 - height=10 - } - "basic attribute" { - clr=14 - fill="outline" - width=1 - } - "dynamic attribute" { - chan="$(P)$(T).SX" - } - points { - (645,262) - (645,271) - } - } - } -} -rectangle { - object { - x=230 - y=41 - width=200 - height=250 - } - "basic attribute" { - clr=52 - } -} -oval { - object { - x=250 - y=261 - width=10 - height=10 - } - "basic attribute" { - clr=50 - } -} -oval { - object { - x=400 - y=161 - width=10 - height=10 - } - "basic attribute" { - clr=50 - } -} -oval { - object { - x=250 - y=61 - width=10 - height=10 - } - "basic attribute" { - clr=50 - } -} -text { - object { - x=263 - y=246 - width=20 - height=20 - } - "basic attribute" { - clr=14 - } - textix="M2" -} -text { - object { - x=411 - y=159 - width=20 - height=20 - } - "basic attribute" { - clr=14 - } - textix="M0" -} -text { - object { - x=246 - y=71 - width=20 - height=20 - } - "basic attribute" { - clr=14 - } - textix="M1" -} -oval { - object { - x=345 - y=128 - width=10 - height=10 - } - "basic attribute" { - clr=30 - } -} -composite { +composite { object { x=252 y=248 @@ -1816,74 +1450,63 @@ composite { limits { } } -composite { +text { object { - x=255 - y=296 - width=2 - height=26 + x=319 + y=301 + width=20 + height=20 } - "composite name"="" - children { - text { - object { - x=319 - y=301 - width=20 - height=20 - } - "basic attribute" { - clr=14 - } - textix="Lx'" - } - polyline { - object { - x=345 - y=311 - width=62 - height=1 - } - "basic attribute" { - clr=14 - width=1 - } - points { - (345,311) - (406,311) - } - } - polyline { - object { - x=257 - y=311 - width=59 - height=1 - } - "basic attribute" { - clr=14 - width=1 - } - points { - (257,311) - (315,311) - } - } - "text entry" { - object { - x=300 - y=318 - width=60 - height=18 - } - control { - chan="$(P)$(T).LX" - clr=14 - bclr=51 - } - limits { - } - } + "basic attribute" { + clr=14 + } + textix="Lx'" +} +polyline { + object { + x=345 + y=311 + width=62 + height=1 + } + "basic attribute" { + clr=14 + width=1 + } + points { + (345,311) + (406,311) + } +} +polyline { + object { + x=257 + y=311 + width=59 + height=1 + } + "basic attribute" { + clr=14 + width=1 + } + points { + (257,311) + (315,311) + } +} +"text entry" { + object { + x=300 + y=318 + width=60 + height=18 + } + control { + chan="$(P)$(T).LX" + clr=14 + bclr=51 + } + limits { } } polyline { @@ -2062,73 +1685,62 @@ composite { } } } -composite { +rectangle { object { x=0 y=0 width=700 - height=30 + height=27 } - "composite name"="" - children { - rectangle { - object { - x=0 - y=0 - width=700 - height=27 - } - "basic attribute" { - clr=0 - width=3 - } - } - polyline { - object { - x=0 - y=27 - width=699 - height=3 - } - "basic attribute" { - clr=54 - width=3 - } - points { - (1,28) - (697,28) - } - } - text { - object { - x=350 - y=5 - width=350 - height=15 - } - "basic attribute" { - clr=14 - fill="outline" - width=3 - } - textix="($(P)$(T))" - align="horiz. centered" - } - "text entry" { - object { - x=0 - y=0 - width=350 - height=27 - } - control { - chan="$(P)$(T).DESC" - clr=54 - bclr=1 - } - limits { - } - } + "basic attribute" { + clr=0 + width=3 + } +} +polyline { + object { + x=0 + y=27 + width=699 + height=3 + } + "basic attribute" { + clr=54 + width=3 + } + points { + (1,28) + (697,28) + } +} +text { + object { + x=350 + y=5 + width=350 + height=15 + } + "basic attribute" { + clr=14 + fill="outline" + width=3 + } + textix="($(P)$(T))" + align="horiz. centered" +} +"text entry" { + object { + x=0 + y=0 + width=350 + height=27 + } + control { + chan="$(P)$(T).DESC" + clr=54 + bclr=1 + } + limits { } } "text entry" { @@ -2191,99 +1803,77 @@ menu { bclr=17 label="-Fixed points" } -composite { +text { object { x=460 y=115 width=30 - height=60 + height=20 } - "composite name"="" - children { - text { - object { - x=460 - y=115 - width=30 - height=20 - } - "basic attribute" { - clr=30 - } - textix="Rx'" - } - text { - object { - x=460 - y=155 - width=30 - height=20 - } - "basic attribute" { - clr=30 - } - textix="Rz'" - } - text { - object { - x=460 - y=135 - width=30 - height=20 - } - "basic attribute" { - clr=30 - } - textix="Ry'" - } + "basic attribute" { + clr=30 } + textix="Rx'" } -composite { +text { + object { + x=460 + y=155 + width=30 + height=20 + } + "basic attribute" { + clr=30 + } + textix="Rz'" +} +text { + object { + x=460 + y=135 + width=30 + height=20 + } + "basic attribute" { + clr=30 + } + textix="Ry'" +} +text { object { x=580 y=115 width=30 - height=60 + height=20 } - "composite name"="" - children { - text { - object { - x=580 - y=115 - width=30 - height=20 - } - "basic attribute" { - clr=30 - } - textix="Sx'" - } - text { - object { - x=580 - y=155 - width=30 - height=20 - } - "basic attribute" { - clr=30 - } - textix="Sz'" - } - text { - object { - x=580 - y=135 - width=30 - height=20 - } - "basic attribute" { - clr=30 - } - textix="Sy'" - } + "basic attribute" { + clr=30 } + textix="Sx'" +} +text { + object { + x=580 + y=155 + width=30 + height=20 + } + "basic attribute" { + clr=30 + } + textix="Sz'" +} +text { + object { + x=580 + y=135 + width=30 + height=20 + } + "basic attribute" { + clr=30 + } + textix="Sy'" } "related display" { object { @@ -2301,3 +1891,54 @@ composite { bclr=17 label="-REFRESH MENU" } +composite { + object { + x=0 + y=371 + width=700 + height=129 + } + "composite name"="" + "composite file"="table_limits.adl;P=$(P),T=$(T)" +} +menu { + object { + x=290 + y=345 + width=120 + height=20 + } + control { + chan="$(P)$(T).AUNIT" + clr=14 + bclr=51 + } +} +text { + object { + x=205 + y=348 + width=80 + height=14 + } + "basic attribute" { + clr=14 + } + textix="Angle units" +} +polyline { + object { + x=255 + y=297 + width=1 + height=25 + } + "basic attribute" { + clr=14 + width=1 + } + points { + (255,297) + (255,321) + } +} diff --git a/opticsApp/op/adl/table_setup_NEWPORT.adl b/opticsApp/op/adl/table_setup_NEWPORT.adl index c25d2bc..c8f6175 100644 --- a/opticsApp/op/adl/table_setup_NEWPORT.adl +++ b/opticsApp/op/adl/table_setup_NEWPORT.adl @@ -1,14 +1,14 @@ file { - name="/home/oxygen4/MOONEY/epics/synApps_5_1/support/optics/cvs/opticsApp/op/adl/table_setup_NEWPORT.adl" - version=030004 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/table_setup_NEWPORT.adl" + version=030111 } display { object { - x=33 - y=504 + x=699 + y=521 width=700 - height=455 + height=500 } clr=14 bclr=3 @@ -506,18 +506,6 @@ composite { } } } -text { - object { - x=0 - y=446 - width=30 - height=10 - } - "basic attribute" { - clr=14 - } - textix="V5.1" -} text { object { x=415 @@ -575,360 +563,6 @@ text { } textix="This display is for the NEWPORT geometry" } -text { - object { - x=5 - y=376 - width=110 - height=20 - } - "basic attribute" { - clr=0 - } - textix="User limits" -} -polyline { - object { - x=0 - y=371 - width=709 - height=2 - } - "basic attribute" { - clr=14 - width=2 - } - points { - (1,372) - (708,372) - } -} -"text entry" { - object { - x=110 - y=401 - width=80 - height=18 - } - control { - chan="$(P)$(T).UHX" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -"text entry" { - object { - x=195 - y=401 - width=80 - height=18 - } - control { - chan="$(P)$(T).UHY" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -text { - object { - x=60 - y=401 - width=40 - height=20 - } - "basic attribute" { - clr=14 - } - textix="High" -} -"text entry" { - object { - x=110 - y=421 - width=80 - height=18 - } - control { - chan="$(P)$(T).ULX" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -"text entry" { - object { - x=195 - y=421 - width=80 - height=18 - } - control { - chan="$(P)$(T).ULY" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -text { - object { - x=60 - y=421 - width=20 - height=20 - } - "basic attribute" { - clr=14 - } - textix="Low" -} -"text entry" { - object { - x=280 - y=421 - width=80 - height=18 - } - control { - chan="$(P)$(T).ULZ" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -"text entry" { - object { - x=280 - y=401 - width=80 - height=18 - } - control { - chan="$(P)$(T).UHZ" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -text { - object { - x=110 - y=381 - width=80 - height=20 - } - "basic attribute" { - clr=14 - } - textix="X" - align="horiz. centered" -} -text { - object { - x=195 - y=381 - width=80 - height=20 - } - "basic attribute" { - clr=14 - } - textix="Y" - align="horiz. centered" -} -text { - object { - x=280 - y=381 - width=80 - height=20 - } - "basic attribute" { - clr=14 - } - textix="Z" - align="horiz. centered" -} -"text entry" { - object { - x=405 - y=421 - width=80 - height=18 - } - control { - chan="$(P)$(T).ULAX" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -"text entry" { - object { - x=405 - y=401 - width=80 - height=18 - } - control { - chan="$(P)$(T).UHAX" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -"text entry" { - object { - x=490 - y=421 - width=80 - height=18 - } - control { - chan="$(P)$(T).ULAY" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -"text entry" { - object { - x=490 - y=401 - width=80 - height=18 - } - control { - chan="$(P)$(T).UHAY" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -"text entry" { - object { - x=575 - y=421 - width=80 - height=18 - } - control { - chan="$(P)$(T).ULAZ" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -"text entry" { - object { - x=575 - y=401 - width=80 - height=18 - } - control { - chan="$(P)$(T).UHAZ" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -text { - object { - x=405 - y=381 - width=80 - height=20 - } - "basic attribute" { - clr=14 - } - textix="AX" - align="horiz. centered" -} -text { - object { - x=490 - y=381 - width=80 - height=20 - } - "basic attribute" { - clr=14 - } - textix="AY" - align="horiz. centered" -} -text { - object { - x=575 - y=381 - width=80 - height=20 - } - "basic attribute" { - clr=14 - } - textix="AZ" - align="horiz. centered" -} -"text update" { - object { - x=475 - y=441 - width=115 - height=15 - } - monitor { - chan="$(P)$(T).AEGU" - clr=54 - bclr=3 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=175 - y=441 - width=115 - height=15 - } - monitor { - chan="$(P)$(T).LEGU" - clr=54 - bclr=3 - } - align="horiz. centered" - limits { - } -} composite { object { x=104 @@ -1635,142 +1269,131 @@ rectangle { clr=52 } } +oval { + object { + x=460 + y=56 + width=10 + height=10 + } + "basic attribute" { + clr=50 + } +} composite { object { x=460 y=41 - width=100 - height=40 + width=10 + height=11 } "composite name"="" children { - oval { + rectangle { object { x=460 - y=56 + y=41 width=10 height=10 } "basic attribute" { - clr=50 - } - } - composite { - object { - x=460 - y=41 - width=10 - height=11 + clr=0 + fill="outline" + width=1 } - "composite name"="" - children { - rectangle { - object { - x=460 - y=41 - width=10 - height=10 - } - "basic attribute" { - clr=0 - fill="outline" - width=1 - } - "dynamic attribute" { - chan="$(P)$(T).SX" - } - } - polyline { - object { - x=461 - y=46 - width=9 - height=1 - } - "basic attribute" { - clr=0 - fill="outline" - width=1 - } - "dynamic attribute" { - chan="$(P)$(T).SX" - } - points { - (461,46) - (469,46) - } - } - polyline { - object { - x=465 - y=42 - width=1 - height=10 - } - "basic attribute" { - clr=0 - fill="outline" - width=1 - } - "dynamic attribute" { - chan="$(P)$(T).SX" - } - points { - (465,42) - (465,51) - } - } + "dynamic attribute" { + chan="$(P)$(T).SX" } } - oval { + polyline { object { - x=460 - y=71 - width=10 - height=10 + x=461 + y=46 + width=9 + height=1 } "basic attribute" { - clr=30 + clr=0 + fill="outline" + width=1 } - } - text { - object { - x=480 - y=56 - width=80 - height=10 + "dynamic attribute" { + chan="$(P)$(T).SX" } - "basic attribute" { - clr=14 + points { + (461,46) + (469,46) } - textix="PIVOT POINTS" } - text { + polyline { object { - x=480 - y=41 - width=80 + x=465 + y=42 + width=1 height=10 } "basic attribute" { - clr=14 + clr=0 + fill="outline" + width=1 } - textix="LOCAL ORIGIN" - } - text { - object { - x=480 - y=71 - width=80 - height=10 + "dynamic attribute" { + chan="$(P)$(T).SX" } - "basic attribute" { - clr=14 + points { + (465,42) + (465,51) } - textix="'FIXED' POINT" } } } +oval { + object { + x=460 + y=71 + width=10 + height=10 + } + "basic attribute" { + clr=30 + } +} +text { + object { + x=480 + y=56 + width=80 + height=10 + } + "basic attribute" { + clr=14 + } + textix="PIVOT POINTS" +} +text { + object { + x=480 + y=41 + width=80 + height=10 + } + "basic attribute" { + clr=14 + } + textix="LOCAL ORIGIN" +} +text { + object { + x=480 + y=71 + width=80 + height=10 + } + "basic attribute" { + clr=14 + } + textix="'FIXED' POINT" +} composite { object { x=237 @@ -2155,187 +1778,211 @@ menu { bclr=17 label="-REFRESH MENU" } +"text entry" { + object { + x=495 + y=116 + width=60 + height=18 + } + control { + chan="$(P)$(T).RX" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=495 + y=135 + width=60 + height=18 + } + control { + chan="$(P)$(T).RY" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=615 + y=115 + width=60 + height=18 + } + control { + chan="$(P)$(T).SX" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=615 + y=155 + width=60 + height=18 + } + control { + chan="$(P)$(T).SZ" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=615 + y=135 + width=60 + height=18 + } + control { + chan="$(P)$(T).SY" + clr=14 + bclr=51 + } + limits { + } +} composite { object { x=460 y=115 - width=215 + width=140 height=60 } "composite name"="" children { - "text entry" { - object { - x=495 - y=116 - width=60 - height=18 - } - control { - chan="$(P)$(T).RX" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=495 - y=135 - width=60 - height=18 - } - control { - chan="$(P)$(T).RY" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { + text { object { - x=615 + x=460 y=115 - width=60 - height=18 - } - control { - chan="$(P)$(T).SX" - clr=14 - bclr=51 + width=20 + height=20 } - limits { + "basic attribute" { + clr=30 } + textix="Rx'" } - "text entry" { + text { object { - x=615 + x=460 y=155 - width=60 - height=18 - } - control { - chan="$(P)$(T).SZ" - clr=14 - bclr=51 + width=20 + height=20 } - limits { + "basic attribute" { + clr=30 } + textix="Rz'" } - "text entry" { + text { object { - x=615 + x=460 y=135 - width=60 - height=18 - } - control { - chan="$(P)$(T).SY" - clr=14 - bclr=51 + width=20 + height=20 } - limits { + "basic attribute" { + clr=30 } + textix="Ry'" } - composite { + text { object { - x=460 + x=580 y=115 - width=140 - height=60 - } - "composite name"="" - children { - text { - object { - x=460 - y=115 - width=20 - height=20 - } - "basic attribute" { - clr=30 - } - textix="Rx'" - } - text { - object { - x=460 - y=155 - width=20 - height=20 - } - "basic attribute" { - clr=30 - } - textix="Rz'" - } - text { - object { - x=460 - y=135 - width=20 - height=20 - } - "basic attribute" { - clr=30 - } - textix="Ry'" - } - text { - object { - x=580 - y=115 - width=20 - height=20 - } - "basic attribute" { - clr=30 - } - textix="Sx'" - } - text { - object { - x=580 - y=155 - width=20 - height=20 - } - "basic attribute" { - clr=30 - } - textix="Sz'" - } - text { - object { - x=580 - y=135 - width=20 - height=20 - } - "basic attribute" { - clr=30 - } - textix="Sy'" - } + width=20 + height=20 + } + "basic attribute" { + clr=30 } + textix="Sx'" } - "text entry" { + text { object { - x=495 + x=580 y=155 - width=60 - height=18 + width=20 + height=20 } - control { - chan="$(P)$(T).RZ" - clr=14 - bclr=51 + "basic attribute" { + clr=30 } - limits { + textix="Sz'" + } + text { + object { + x=580 + y=135 + width=20 + height=20 + } + "basic attribute" { + clr=30 } + textix="Sy'" } } } +"text entry" { + object { + x=495 + y=155 + width=60 + height=18 + } + control { + chan="$(P)$(T).RZ" + clr=14 + bclr=51 + } + limits { + } +} +composite { + object { + x=0 + y=371 + width=700 + height=129 + } + "composite name"="" + "composite file"="table_limits.adl;P=$(P),T=$(T)" +} +menu { + object { + x=290 + y=345 + width=120 + height=20 + } + control { + chan="$(P)$(T).AUNIT" + clr=14 + bclr=51 + } +} +text { + object { + x=205 + y=348 + width=80 + height=14 + } + "basic attribute" { + clr=14 + } + textix="Angle units" +} diff --git a/opticsApp/op/adl/table_setup_PNC.adl b/opticsApp/op/adl/table_setup_PNC.adl index 312935f..72a1629 100644 --- a/opticsApp/op/adl/table_setup_PNC.adl +++ b/opticsApp/op/adl/table_setup_PNC.adl @@ -1,14 +1,14 @@ file { name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/table_setup_PNC.adl" - version=030103 + version=030111 } display { object { x=743 y=507 width=700 - height=455 + height=500 } clr=14 bclr=3 @@ -471,18 +471,6 @@ composite { } } } -text { - object { - x=0 - y=446 - width=30 - height=10 - } - "basic attribute" { - clr=14 - } - textix="V5.1" -} menu { object { x=540 @@ -542,360 +530,6 @@ text { } textix="This display is for the PNC geometry" } -text { - object { - x=5 - y=376 - width=110 - height=20 - } - "basic attribute" { - clr=0 - } - textix="User limits" -} -polyline { - object { - x=0 - y=371 - width=709 - height=2 - } - "basic attribute" { - clr=14 - width=2 - } - points { - (1,372) - (708,372) - } -} -"text entry" { - object { - x=110 - y=401 - width=80 - height=18 - } - control { - chan="$(P)$(T).UHX" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -"text entry" { - object { - x=195 - y=401 - width=80 - height=18 - } - control { - chan="$(P)$(T).UHY" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -text { - object { - x=60 - y=401 - width=40 - height=20 - } - "basic attribute" { - clr=14 - } - textix="High" -} -"text entry" { - object { - x=110 - y=421 - width=80 - height=18 - } - control { - chan="$(P)$(T).ULX" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -"text entry" { - object { - x=195 - y=421 - width=80 - height=18 - } - control { - chan="$(P)$(T).ULY" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -text { - object { - x=60 - y=421 - width=20 - height=20 - } - "basic attribute" { - clr=14 - } - textix="Low" -} -"text entry" { - object { - x=280 - y=421 - width=80 - height=18 - } - control { - chan="$(P)$(T).ULZ" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -"text entry" { - object { - x=280 - y=401 - width=80 - height=18 - } - control { - chan="$(P)$(T).UHZ" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -text { - object { - x=110 - y=381 - width=80 - height=20 - } - "basic attribute" { - clr=14 - } - textix="X" - align="horiz. centered" -} -text { - object { - x=195 - y=381 - width=80 - height=20 - } - "basic attribute" { - clr=14 - } - textix="Y" - align="horiz. centered" -} -text { - object { - x=280 - y=381 - width=80 - height=20 - } - "basic attribute" { - clr=14 - } - textix="Z" - align="horiz. centered" -} -"text entry" { - object { - x=405 - y=421 - width=80 - height=18 - } - control { - chan="$(P)$(T).ULAX" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -"text entry" { - object { - x=405 - y=401 - width=80 - height=18 - } - control { - chan="$(P)$(T).UHAX" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -"text entry" { - object { - x=490 - y=421 - width=80 - height=18 - } - control { - chan="$(P)$(T).ULAY" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -"text entry" { - object { - x=490 - y=401 - width=80 - height=18 - } - control { - chan="$(P)$(T).UHAY" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -"text entry" { - object { - x=575 - y=421 - width=80 - height=18 - } - control { - chan="$(P)$(T).ULAZ" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -"text entry" { - object { - x=575 - y=401 - width=80 - height=18 - } - control { - chan="$(P)$(T).UHAZ" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -text { - object { - x=405 - y=381 - width=80 - height=20 - } - "basic attribute" { - clr=14 - } - textix="AX" - align="horiz. centered" -} -text { - object { - x=490 - y=381 - width=80 - height=20 - } - "basic attribute" { - clr=14 - } - textix="AY" - align="horiz. centered" -} -text { - object { - x=575 - y=381 - width=80 - height=20 - } - "basic attribute" { - clr=14 - } - textix="AZ" - align="horiz. centered" -} -"text update" { - object { - x=475 - y=441 - width=115 - height=15 - } - monitor { - chan="$(P)$(T).AEGU" - clr=54 - bclr=3 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=175 - y=441 - width=115 - height=15 - } - monitor { - chan="$(P)$(T).LEGU" - clr=54 - bclr=3 - } - align="horiz. centered" - limits { - } -} oval { object { x=460 @@ -1036,280 +670,269 @@ polyline { (111,292) (111,243) } -} -polyline { - object { - x=104 - y=241 - width=13 - height=13 - } - "basic attribute" { - clr=0 - fill="outline" - width=2 - } - points { - (105,253) - (111,242) - (116,253) - } -} -text { - object { - x=97 - y=226 - width=30 - height=14 - } - "basic attribute" { - clr=0 - } - textix="BEAM" - align="horiz. centered" -} -composite { - object { - x=0 - y=0 - width=700 - height=30 - } - "composite name"="" - children { - rectangle { - object { - x=0 - y=0 - width=700 - height=27 - } - "basic attribute" { - clr=0 - width=3 - } - } - polyline { - object { - x=0 - y=27 - width=699 - height=3 - } - "basic attribute" { - clr=54 - width=3 - } - points { - (1,28) - (697,28) - } - } - text { - object { - x=350 - y=5 - width=350 - height=15 - } - "basic attribute" { - clr=14 - fill="outline" - width=3 - } - textix="($(P)$(T))" - align="horiz. centered" - } - "text entry" { - object { - x=0 - y=0 - width=350 - height=27 - } - control { - chan="$(P)$(T).DESC" - clr=54 - bclr=1 - } - limits { - } - } - } -} -composite { - object { - x=460 - y=115 - width=215 - height=60 - } - "composite name"="" - children { - "text entry" { - object { - x=495 - y=116 - width=60 - height=18 - } - control { - chan="$(P)$(T).RX" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=495 - y=135 - width=60 - height=18 - } - control { - chan="$(P)$(T).RY" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=615 - y=115 - width=60 - height=18 - } - control { - chan="$(P)$(T).SX" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=615 - y=155 - width=60 - height=18 - } - control { - chan="$(P)$(T).SZ" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=615 - y=135 - width=60 - height=18 - } - control { - chan="$(P)$(T).SY" - clr=14 - bclr=51 - } - limits { - } - } - text { - object { - x=460 - y=115 - width=20 - height=20 - } - "basic attribute" { - clr=30 - } - textix="Rx'" - } - text { - object { - x=460 - y=155 - width=20 - height=20 - } - "basic attribute" { - clr=30 - } - textix="Rz'" - } - text { +} +polyline { + object { + x=104 + y=241 + width=13 + height=13 + } + "basic attribute" { + clr=0 + fill="outline" + width=2 + } + points { + (105,253) + (111,242) + (116,253) + } +} +text { + object { + x=97 + y=226 + width=30 + height=14 + } + "basic attribute" { + clr=0 + } + textix="BEAM" + align="horiz. centered" +} +composite { + object { + x=0 + y=0 + width=700 + height=30 + } + "composite name"="" + children { + rectangle { object { - x=460 - y=135 - width=20 - height=20 + x=0 + y=0 + width=700 + height=27 } "basic attribute" { - clr=30 + clr=0 + width=3 } - textix="Ry'" } - text { + polyline { object { - x=580 - y=115 - width=20 - height=20 + x=0 + y=27 + width=699 + height=3 } "basic attribute" { - clr=30 - } - textix="Sx'" - } - text { - object { - x=580 - y=155 - width=20 - height=20 + clr=54 + width=3 } - "basic attribute" { - clr=30 + points { + (1,28) + (697,28) } - textix="Sz'" } text { object { - x=580 - y=135 - width=20 - height=20 + x=350 + y=5 + width=350 + height=15 } "basic attribute" { - clr=30 + clr=14 + fill="outline" + width=3 } - textix="Sy'" + textix="($(P)$(T))" + align="horiz. centered" } "text entry" { object { - x=495 - y=155 - width=60 - height=18 + x=0 + y=0 + width=350 + height=27 } control { - chan="$(P)$(T).RZ" - clr=14 - bclr=51 + chan="$(P)$(T).DESC" + clr=54 + bclr=1 } limits { } } } } +"text entry" { + object { + x=495 + y=116 + width=60 + height=18 + } + control { + chan="$(P)$(T).RX" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=495 + y=135 + width=60 + height=18 + } + control { + chan="$(P)$(T).RY" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=615 + y=115 + width=60 + height=18 + } + control { + chan="$(P)$(T).SX" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=615 + y=155 + width=60 + height=18 + } + control { + chan="$(P)$(T).SZ" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=615 + y=135 + width=60 + height=18 + } + control { + chan="$(P)$(T).SY" + clr=14 + bclr=51 + } + limits { + } +} +text { + object { + x=460 + y=115 + width=20 + height=20 + } + "basic attribute" { + clr=30 + } + textix="Rx'" +} +text { + object { + x=460 + y=155 + width=20 + height=20 + } + "basic attribute" { + clr=30 + } + textix="Rz'" +} +text { + object { + x=460 + y=135 + width=20 + height=20 + } + "basic attribute" { + clr=30 + } + textix="Ry'" +} +text { + object { + x=580 + y=115 + width=20 + height=20 + } + "basic attribute" { + clr=30 + } + textix="Sx'" +} +text { + object { + x=580 + y=155 + width=20 + height=20 + } + "basic attribute" { + clr=30 + } + textix="Sz'" +} +text { + object { + x=580 + y=135 + width=20 + height=20 + } + "basic attribute" { + clr=30 + } + textix="Sy'" +} +"text entry" { + object { + x=495 + y=155 + width=60 + height=18 + } + control { + chan="$(P)$(T).RZ" + clr=14 + bclr=51 + } + limits { + } +} "text update" { object { x=580 @@ -2342,3 +1965,38 @@ text { } textix="S" } +composite { + object { + x=0 + y=371 + width=700 + height=129 + } + "composite name"="" + "composite file"="table_limits.adl;P=$(P),T=$(T)" +} +menu { + object { + x=290 + y=345 + width=120 + height=20 + } + control { + chan="$(P)$(T).AUNIT" + clr=14 + bclr=51 + } +} +text { + object { + x=205 + y=348 + width=80 + height=14 + } + "basic attribute" { + clr=14 + } + textix="Angle units" +} diff --git a/opticsApp/op/adl/table_setup_SRI.adl b/opticsApp/op/adl/table_setup_SRI.adl index e920bb4..afa3fef 100644 --- a/opticsApp/op/adl/table_setup_SRI.adl +++ b/opticsApp/op/adl/table_setup_SRI.adl @@ -1,21 +1,21 @@ file { - name="/home/oxygen4/MOONEY/epics/synApps_5_1/support/optics/cvs/opticsApp/op/adl/table_setup_SRI.adl" - version=030004 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/table_setup_SRI.adl" + version=030111 } display { object { - x=20 - y=505 + x=723 + y=30 width=700 - height=455 + height=500 } clr=14 bclr=3 cmap="" gridSpacing=5 gridOn=0 - snapToGrid=0 + snapToGrid=1 } "color map" { ncolors=65 @@ -578,43 +578,6 @@ composite { } } } -text { - object { - x=0 - y=446 - width=30 - height=10 - } - "basic attribute" { - clr=14 - } - textix="V5.1" -} -menu { - object { - x=540 - y=311 - width=100 - height=20 - } - control { - chan="$(P)$(T).GEOM" - clr=14 - bclr=51 - } -} -text { - object { - x=450 - y=311 - width=80 - height=20 - } - "basic attribute" { - clr=14 - } - textix="Geometry" -} text { object { x=425 @@ -639,367 +602,13 @@ text { height=14 } "basic attribute" { - clr=20 - } - "dynamic attribute" { - vis="if zero" - chan="$(P)$(Q):geomIsSRI" - } - textix="This display is for the SRI geometry" -} -text { - object { - x=5 - y=376 - width=110 - height=20 - } - "basic attribute" { - clr=0 - } - textix="User limits" -} -polyline { - object { - x=0 - y=371 - width=709 - height=2 - } - "basic attribute" { - clr=14 - width=2 - } - points { - (1,372) - (708,372) - } -} -"text entry" { - object { - x=110 - y=401 - width=80 - height=18 - } - control { - chan="$(P)$(T).UHX" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -"text entry" { - object { - x=195 - y=401 - width=80 - height=18 - } - control { - chan="$(P)$(T).UHY" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -text { - object { - x=60 - y=401 - width=40 - height=20 - } - "basic attribute" { - clr=14 - } - textix="High" -} -"text entry" { - object { - x=110 - y=421 - width=80 - height=18 - } - control { - chan="$(P)$(T).ULX" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -"text entry" { - object { - x=195 - y=421 - width=80 - height=18 - } - control { - chan="$(P)$(T).ULY" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -text { - object { - x=60 - y=421 - width=20 - height=20 - } - "basic attribute" { - clr=14 - } - textix="Low" -} -"text entry" { - object { - x=280 - y=421 - width=80 - height=18 - } - control { - chan="$(P)$(T).ULZ" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -"text entry" { - object { - x=280 - y=401 - width=80 - height=18 - } - control { - chan="$(P)$(T).UHZ" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -text { - object { - x=110 - y=381 - width=80 - height=20 - } - "basic attribute" { - clr=14 - } - textix="X" - align="horiz. centered" -} -text { - object { - x=195 - y=381 - width=80 - height=20 - } - "basic attribute" { - clr=14 - } - textix="Y" - align="horiz. centered" -} -text { - object { - x=280 - y=381 - width=80 - height=20 - } - "basic attribute" { - clr=14 - } - textix="Z" - align="horiz. centered" -} -"text entry" { - object { - x=405 - y=421 - width=80 - height=18 - } - control { - chan="$(P)$(T).ULAX" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -"text entry" { - object { - x=405 - y=401 - width=80 - height=18 - } - control { - chan="$(P)$(T).UHAX" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -"text entry" { - object { - x=490 - y=421 - width=80 - height=18 - } - control { - chan="$(P)$(T).ULAY" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -"text entry" { - object { - x=490 - y=401 - width=80 - height=18 - } - control { - chan="$(P)$(T).UHAY" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -"text entry" { - object { - x=575 - y=421 - width=80 - height=18 - } - control { - chan="$(P)$(T).ULAZ" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -"text entry" { - object { - x=575 - y=401 - width=80 - height=18 - } - control { - chan="$(P)$(T).UHAZ" - clr=14 - bclr=51 - } - format="compact" - limits { - } -} -text { - object { - x=405 - y=381 - width=80 - height=20 - } - "basic attribute" { - clr=14 - } - textix="AX" - align="horiz. centered" -} -text { - object { - x=490 - y=381 - width=80 - height=20 - } - "basic attribute" { - clr=14 - } - textix="AY" - align="horiz. centered" -} -text { - object { - x=575 - y=381 - width=80 - height=20 - } - "basic attribute" { - clr=14 - } - textix="AZ" - align="horiz. centered" -} -"text update" { - object { - x=475 - y=441 - width=115 - height=15 - } - monitor { - chan="$(P)$(T).AEGU" - clr=54 - bclr=3 - } - align="horiz. centered" - limits { - } -} -"text update" { - object { - x=175 - y=441 - width=115 - height=15 - } - monitor { - chan="$(P)$(T).LEGU" - clr=54 - bclr=3 + clr=20 } - align="horiz. centered" - limits { + "dynamic attribute" { + vis="if zero" + chan="$(P)$(Q):geomIsSRI" } + textix="This display is for the SRI geometry" } composite { object { @@ -2106,190 +1715,179 @@ composite { } } } +"text entry" { + object { + x=495 + y=116 + width=60 + height=18 + } + control { + chan="$(P)$(T).RX" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=495 + y=135 + width=60 + height=18 + } + control { + chan="$(P)$(T).RY" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=615 + y=115 + width=60 + height=18 + } + control { + chan="$(P)$(T).SX" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=615 + y=155 + width=60 + height=18 + } + control { + chan="$(P)$(T).SZ" + clr=14 + bclr=51 + } + limits { + } +} +"text entry" { + object { + x=615 + y=135 + width=60 + height=18 + } + control { + chan="$(P)$(T).SY" + clr=14 + bclr=51 + } + limits { + } +} composite { object { x=460 y=115 - width=215 + width=140 height=60 } "composite name"="" children { - "text entry" { - object { - x=495 - y=116 - width=60 - height=18 - } - control { - chan="$(P)$(T).RX" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { - object { - x=495 - y=135 - width=60 - height=18 - } - control { - chan="$(P)$(T).RY" - clr=14 - bclr=51 - } - limits { - } - } - "text entry" { + text { object { - x=615 + x=460 y=115 - width=60 - height=18 - } - control { - chan="$(P)$(T).SX" - clr=14 - bclr=51 + width=20 + height=20 } - limits { + "basic attribute" { + clr=30 } + textix="Rx'" } - "text entry" { + text { object { - x=615 + x=460 y=155 - width=60 - height=18 - } - control { - chan="$(P)$(T).SZ" - clr=14 - bclr=51 + width=20 + height=20 } - limits { + "basic attribute" { + clr=30 } + textix="Rz'" } - "text entry" { + text { object { - x=615 + x=460 y=135 - width=60 - height=18 - } - control { - chan="$(P)$(T).SY" - clr=14 - bclr=51 + width=20 + height=20 } - limits { + "basic attribute" { + clr=30 } + textix="Ry'" } - composite { + text { object { - x=460 + x=580 y=115 - width=140 - height=60 + width=20 + height=20 } - "composite name"="" - children { - text { - object { - x=460 - y=115 - width=20 - height=20 - } - "basic attribute" { - clr=30 - } - textix="Rx'" - } - text { - object { - x=460 - y=155 - width=20 - height=20 - } - "basic attribute" { - clr=30 - } - textix="Rz'" - } - text { - object { - x=460 - y=135 - width=20 - height=20 - } - "basic attribute" { - clr=30 - } - textix="Ry'" - } - text { - object { - x=580 - y=115 - width=20 - height=20 - } - "basic attribute" { - clr=30 - } - textix="Sx'" - } - text { - object { - x=580 - y=155 - width=20 - height=20 - } - "basic attribute" { - clr=30 - } - textix="Sz'" - } - text { - object { - x=580 - y=135 - width=20 - height=20 - } - "basic attribute" { - clr=30 - } - textix="Sy'" - } + "basic attribute" { + clr=30 } + textix="Sx'" } - "text entry" { + text { object { - x=495 + x=580 y=155 - width=60 - height=18 + width=20 + height=20 } - control { - chan="$(P)$(T).RZ" - clr=14 - bclr=51 + "basic attribute" { + clr=30 } - limits { + textix="Sz'" + } + text { + object { + x=580 + y=135 + width=20 + height=20 + } + "basic attribute" { + clr=30 } + textix="Sy'" } } } +"text entry" { + object { + x=495 + y=155 + width=60 + height=18 + } + control { + chan="$(P)$(T).RZ" + clr=14 + bclr=51 + } + limits { + } +} "text update" { object { x=580 @@ -2351,3 +1949,63 @@ menu { bclr=17 label="-REFRESH MENU" } +composite { + object { + x=0 + y=371 + width=700 + height=129 + } + "composite name"="" + "composite file"="table_limits.adl;P=$(P),T=$(T)" +} +menu { + object { + x=540 + y=311 + width=100 + height=20 + } + control { + chan="$(P)$(T).GEOM" + clr=14 + bclr=51 + } +} +text { + object { + x=450 + y=311 + width=80 + height=20 + } + "basic attribute" { + clr=14 + } + textix="Geometry" +} +menu { + object { + x=290 + y=345 + width=120 + height=20 + } + control { + chan="$(P)$(T).AUNIT" + clr=14 + bclr=51 + } +} +text { + object { + x=205 + y=348 + width=80 + height=14 + } + "basic attribute" { + clr=14 + } + textix="Angle units" +} diff --git a/opticsApp/op/adl/table_soft.adl b/opticsApp/op/adl/table_soft.adl new file mode 100644 index 0000000..e5868c5 --- /dev/null +++ b/opticsApp/op/adl/table_soft.adl @@ -0,0 +1,1240 @@ + +file { + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/table_soft.adl" + version=030107 +} +display { + object { + x=1255 + y=241 + width=230 + height=390 + } + clr=14 + bclr=3 + cmap="" + gridSpacing=5 + gridOn=0 + snapToGrid=0 +} +"color map" { + ncolors=65 + colors { + ffffff, + ececec, + dadada, + c8c8c8, + bbbbbb, + aeaeae, + 9e9e9e, + 919191, + 858585, + 787878, + 696969, + 5a5a5a, + 464646, + 2d2d2d, + 000000, + 00d800, + 1ebb00, + 339900, + 2d7f00, + 216c00, + fd0000, + de1309, + be190b, + a01207, + 820400, + 5893ff, + 597ee1, + 4b6ec7, + 3a5eab, + 27548d, + fbf34a, + f9da3c, + eeb62b, + e19015, + cd6100, + ffb0ff, + d67fe2, + ae4ebc, + 8b1a96, + 610a75, + a4aaff, + 8793e2, + 6a73c1, + 4d52a4, + 343386, + c7bb6d, + b79d5c, + a47e3c, + 7d5627, + 58340f, + 99ffff, + 73dfff, + 4ea5f9, + 2a63e4, + 0a00b8, + ebf1b5, + d4db9d, + bbc187, + a6a462, + 8b8239, + 73ff6b, + 52da3b, + 3cb420, + 289315, + 1a7309, + } +} +"text update" { + object { + x=0 + y=0 + width=230 + height=20 + } + monitor { + chan="$(P)$(T).DESC" + clr=54 + bclr=0 + } + align="horiz. centered" + limits { + } +} +polyline { + object { + x=-1 + y=20 + width=232 + height=3 + } + "basic attribute" { + clr=54 + width=3 + } + points { + (0,21) + (229,21) + } +} +"related display" { + object { + x=95 + y=43 + width=135 + height=15 + } + display[0] { + label="Refresh fixed-point menu" + name="table_refresh.adl" + args="P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z)" + policy="replace display" + } + clr=0 + bclr=17 + label="-REFRESH MENU" +} +menu { + object { + x=95 + y=23 + width=135 + height=20 + } + control { + chan="$(P)$(Q)fpSelect" + clr=14 + bclr=51 + } +} +text { + object { + x=5 + y=27 + width=85 + height=14 + } + "basic attribute" { + clr=14 + } + textix="Fixed point:" +} +"text update" { + object { + x=25 + y=262 + width=80 + height=15 + } + monitor { + chan="$(P)$(Q):z.RBV" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +rectangle { + object { + x=25 + y=260 + width=80 + height=18 + } + "basic attribute" { + clr=30 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +"text update" { + object { + x=25 + y=82 + width=80 + height=15 + } + monitor { + chan="$(P)$(Q):x.RBV" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +text { + object { + x=90 + y=63 + width=60 + height=18 + } + "basic attribute" { + clr=20 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).LVIO" + } + textix="Limit" + align="horiz. centered" +} +"text update" { + object { + x=25 + y=63 + width=70 + height=15 + } + monitor { + chan="$(P)$(T).LEGU" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +text { + object { + x=10 + y=102 + width=20 + height=20 + } + "basic attribute" { + clr=14 + } + textix="X" +} +"text entry" { + object { + x=25 + y=100 + width=80 + height=22 + } + control { + chan="$(P)$(Q):x.VAL" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { + object { + x=25 + y=80 + width=80 + height=18 + } + "basic attribute" { + clr=30 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +rectangle { + object { + x=23 + y=78 + width=84 + height=22 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +"text update" { + object { + x=150 + y=63 + width=70 + height=15 + } + monitor { + chan="$(P)$(T).AEGU" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +text { + object { + x=115 + y=102 + width=20 + height=20 + } + "basic attribute" { + clr=14 + } + textix="AX" +} +"text entry" { + object { + x=140 + y=100 + width=80 + height=22 + } + control { + chan="$(P)$(Q):ax.VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text update" { + object { + x=140 + y=82 + width=80 + height=15 + } + monitor { + chan="$(P)$(Q):ax.RBV" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +rectangle { + object { + x=140 + y=80 + width=80 + height=18 + } + "basic attribute" { + clr=30 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +rectangle { + object { + x=138 + y=78 + width=84 + height=22 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +text { + object { + x=10 + y=193 + width=20 + height=20 + } + "basic attribute" { + clr=14 + } + textix="Y" +} +"text entry" { + object { + x=25 + y=190 + width=80 + height=22 + } + control { + chan="$(P)$(Q):y.VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text update" { + object { + x=25 + y=172 + width=80 + height=15 + } + monitor { + chan="$(P)$(Q):y.RBV" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +rectangle { + object { + x=25 + y=170 + width=80 + height=18 + } + "basic attribute" { + clr=30 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +rectangle { + object { + x=23 + y=168 + width=84 + height=22 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +text { + object { + x=115 + y=191 + width=20 + height=20 + } + "basic attribute" { + clr=14 + } + textix="AY" +} +"text entry" { + object { + x=140 + y=190 + width=80 + height=22 + } + control { + chan="$(P)$(Q):ay.VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text update" { + object { + x=140 + y=172 + width=80 + height=15 + } + monitor { + chan="$(P)$(Q):ay.RBV" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +rectangle { + object { + x=140 + y=170 + width=80 + height=18 + } + "basic attribute" { + clr=30 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +rectangle { + object { + x=138 + y=168 + width=84 + height=22 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +"choice button" { + object { + x=0 + y=350 + width=80 + height=20 + } + control { + chan="$(P)$(T).SET" + clr=14 + bclr=51 + } + stacking="column" +} +"message button" { + object { + x=0 + y=370 + width=50 + height=20 + } + control { + chan="$(P)$(Q):sync" + clr=14 + bclr=51 + } + label="Sync" + press_msg="1" +} +"message button" { + object { + x=50 + y=370 + width=50 + height=20 + } + control { + chan="$(P)$(Q):init" + clr=14 + bclr=51 + } + label="Init" + press_msg="1" +} +"message button" { + object { + x=80 + y=350 + width=35 + height=20 + } + control { + chan="$(P)$(Q):zero" + clr=14 + bclr=51 + } + label="Zero" + press_msg="1" +} +"message button" { + object { + x=120 + y=366 + width=60 + height=25 + } + control { + chan="$(P)$(Q):stop.VAL" + clr=30 + bclr=20 + } + label="Stop" + press_msg="1" +} +composite { + object { + x=120 + y=345 + width=60 + height=20 + } + "composite name"="" + children { + text { + object { + x=120 + y=345 + width=60 + height=20 + } + "basic attribute" { + clr=55 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(Q):done.VAL" + } + textix="Done" + align="horiz. centered" + } + text { + object { + x=120 + y=345 + width=60 + height=20 + } + "basic attribute" { + clr=55 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(Q):done.VAL" + } + textix="Moving" + align="horiz. centered" + } + } +} +"related display" { + object { + x=185 + y=370 + width=40 + height=20 + } + display[0] { + label="More" + name="table_full_soft.adl" + args="P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z)" + policy="replace display" + } + display[1] { + label="Setup (SRI geometry)" + name="table_setup_SRI.adl" + args="P=$(P),Q=$(Q),T=$(T)" + } + display[2] { + label="Setup (GEOCARS geometry)" + name="table_setup_GEOCARS.adl" + args="P=$(P),Q=$(Q),T=$(T)" + } + display[3] { + label="Setup (NEWPORT geometry)" + name="table_setup_NEWPORT.adl" + args="P=$(P),Q=$(Q),T=$(T)" + } + display[4] { + label="Setup (PNC geometry)" + name="table_setup_PNC.adl" + args="P=$(P),Q=$(Q),T=$(T)" + } + display[5] { + label="Fixed points" + name="table_fixedPoints.adl" + args="P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z)" + } + clr=0 + bclr=17 + label="-More" +} +"related display" { + object { + x=185 + y=350 + width=40 + height=20 + } + display[0] { + label="Less" + name="table_tiny_soft.adl" + args="P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z)" + policy="replace display" + } + clr=0 + bclr=17 + label="-Less" +} +text { + object { + x=10 + y=282 + width=20 + height=20 + } + "basic attribute" { + clr=14 + } + textix="Z" +} +"text entry" { + object { + x=25 + y=280 + width=80 + height=22 + } + control { + chan="$(P)$(Q):z.VAL" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { + object { + x=23 + y=258 + width=84 + height=22 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +text { + object { + x=115 + y=281 + width=20 + height=20 + } + "basic attribute" { + clr=14 + } + textix="AZ" +} +"text entry" { + object { + x=140 + y=280 + width=80 + height=22 + } + control { + chan="$(P)$(Q):az.VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text update" { + object { + x=140 + y=262 + width=80 + height=15 + } + monitor { + chan="$(P)$(Q):az.RBV" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +rectangle { + object { + x=140 + y=260 + width=80 + height=18 + } + "basic attribute" { + clr=30 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +rectangle { + object { + x=138 + y=258 + width=84 + height=22 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +"text entry" { + object { + x=45 + y=120 + width=44 + height=18 + } + control { + chan="$(P)$(Q):x.TWV" + clr=14 + bclr=51 + } + limits { + } +} +"message button" { + object { + x=89 + y=120 + width=20 + height=18 + } + control { + chan="$(P)$(Q):x.TWF" + clr=14 + bclr=51 + } + label=">" + press_msg="1" +} +"message button" { + object { + x=25 + y=120 + width=20 + height=18 + } + control { + chan="$(P)$(Q):x.TWR" + clr=14 + bclr=51 + } + label="<" + press_msg="1" +} +"text entry" { + object { + x=160 + y=120 + width=44 + height=18 + } + control { + chan="$(P)$(Q):ax.TWV" + clr=14 + bclr=51 + } + limits { + } +} +"message button" { + object { + x=204 + y=120 + width=20 + height=18 + } + control { + chan="$(P)$(Q):ax.TWF" + clr=14 + bclr=51 + } + label=">" + press_msg="1" +} +"message button" { + object { + x=140 + y=120 + width=20 + height=18 + } + control { + chan="$(P)$(Q):ax.TWR" + clr=14 + bclr=51 + } + label="<" + press_msg="1" +} +"text entry" { + object { + x=45 + y=210 + width=44 + height=18 + } + control { + chan="$(P)$(Q):y.TWV" + clr=14 + bclr=51 + } + limits { + } +} +"message button" { + object { + x=89 + y=210 + width=20 + height=18 + } + control { + chan="$(P)$(Q):y.TWF" + clr=14 + bclr=51 + } + label=">" + press_msg="1" +} +"message button" { + object { + x=25 + y=210 + width=20 + height=18 + } + control { + chan="$(P)$(Q):y.TWR" + clr=14 + bclr=51 + } + label="<" + press_msg="1" +} +"text entry" { + object { + x=160 + y=210 + width=44 + height=18 + } + control { + chan="$(P)$(Q):ay.TWV" + clr=14 + bclr=51 + } + limits { + } +} +"message button" { + object { + x=204 + y=210 + width=20 + height=18 + } + control { + chan="$(P)$(Q):ay.TWF" + clr=14 + bclr=51 + } + label=">" + press_msg="1" +} +"message button" { + object { + x=140 + y=210 + width=20 + height=18 + } + control { + chan="$(P)$(Q):ay.TWR" + clr=14 + bclr=51 + } + label="<" + press_msg="1" +} +"text entry" { + object { + x=45 + y=300 + width=44 + height=18 + } + control { + chan="$(P)$(Q):z.TWV" + clr=14 + bclr=51 + } + limits { + } +} +"message button" { + object { + x=89 + y=300 + width=20 + height=18 + } + control { + chan="$(P)$(Q):z.TWF" + clr=14 + bclr=51 + } + label=">" + press_msg="1" +} +"message button" { + object { + x=25 + y=300 + width=20 + height=18 + } + control { + chan="$(P)$(Q):z.TWR" + clr=14 + bclr=51 + } + label="<" + press_msg="1" +} +"text entry" { + object { + x=160 + y=300 + width=44 + height=18 + } + control { + chan="$(P)$(Q):az.TWV" + clr=14 + bclr=51 + } + limits { + } +} +"message button" { + object { + x=204 + y=300 + width=20 + height=18 + } + control { + chan="$(P)$(Q):az.TWF" + clr=14 + bclr=51 + } + label=">" + press_msg="1" +} +"message button" { + object { + x=140 + y=300 + width=20 + height=18 + } + control { + chan="$(P)$(Q):az.TWR" + clr=14 + bclr=51 + } + label="<" + press_msg="1" +} +polyline { + object { + x=-1 + y=58 + width=233 + height=2 + } + "basic attribute" { + clr=54 + width=2 + } + points { + (0,59) + (231,59) + } +} +rectangle { + object { + x=21 + y=76 + width=90 + height=64 + } + "basic attribute" { + clr=60 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(Q):x.DMOV" + } +} +rectangle { + object { + x=136 + y=76 + width=90 + height=64 + } + "basic attribute" { + clr=60 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(Q):ax.DMOV" + } +} +rectangle { + object { + x=21 + y=166 + width=90 + height=64 + } + "basic attribute" { + clr=60 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(Q):y.DMOV" + } +} +rectangle { + object { + x=136 + y=166 + width=90 + height=64 + } + "basic attribute" { + clr=60 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(Q):ay.DMOV" + } +} +rectangle { + object { + x=20 + y=256 + width=90 + height=64 + } + "basic attribute" { + clr=60 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(Q):z.DMOV" + } +} +rectangle { + object { + x=135 + y=257 + width=90 + height=64 + } + "basic attribute" { + clr=60 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(Q):az.DMOV" + } +} diff --git a/opticsApp/op/adl/table_tiny.adl b/opticsApp/op/adl/table_tiny.adl index d8018fc..8eb0db2 100644 --- a/opticsApp/op/adl/table_tiny.adl +++ b/opticsApp/op/adl/table_tiny.adl @@ -1,7 +1,7 @@ file { - name="/home/oxygen4/MOONEY/epics/3.13.0/tmm/tmmApp/op/adl/table_tiny_5.0.adl" - version=020305 + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/table_tiny.adl" + version=030111 } display { object { @@ -270,48 +270,35 @@ polyline { label="Zero" press_msg="1" } -composite { +"message button" { object { x=5 y=225 - width=100 + width=50 height=20 } - "composite name"="" - vis="static" - chan="" - children { - "message button" { - object { - x=5 - y=225 - width=50 - height=20 - } - control { - chan="$(P)$(T).SYNC" - clr=14 - bclr=51 - } - label="Sync" - press_msg="1" - } - "message button" { - object { - x=55 - y=225 - width=50 - height=20 - } - control { - chan="$(P)$(T).INIT" - clr=14 - bclr=51 - } - label="Init" - press_msg="1" - } + control { + chan="$(P)$(T).SYNC" + clr=14 + bclr=51 + } + label="Sync" + press_msg="1" +} +"message button" { + object { + x=55 + y=225 + width=50 + height=20 } + control { + chan="$(P)$(T).INIT" + clr=14 + bclr=51 + } + label="Init" + press_msg="1" } "message button" { object { @@ -336,8 +323,6 @@ composite { height=20 } "composite name"="" - vis="static" - chan="" children { text { object { @@ -452,68 +437,55 @@ composite { limits { } } -composite { +rectangle { object { x=25 y=40 width=80 - height=128 + height=18 } - "composite name"="" - vis="static" - chan="" - children { - rectangle { - object { - x=25 - y=40 - width=80 - height=18 - } - "basic attribute" { - clr=30 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)$(T).SET" - } - } - rectangle { - object { - x=25 - y=95 - width=80 - height=18 - } - "basic attribute" { - clr=30 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)$(T).SET" - } - } - rectangle { - object { - x=25 - y=150 - width=80 - height=18 - } - "basic attribute" { - clr=30 - fill="outline" - width=2 - } - "dynamic attribute" { - vis="if not zero" - chan="$(P)$(T).SET" - } - } + "basic attribute" { + clr=30 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +rectangle { + object { + x=25 + y=95 + width=80 + height=18 + } + "basic attribute" { + clr=30 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +rectangle { + object { + x=25 + y=150 + width=80 + height=18 + } + "basic attribute" { + clr=30 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" } } rectangle { diff --git a/opticsApp/op/adl/table_tiny_soft.adl b/opticsApp/op/adl/table_tiny_soft.adl new file mode 100644 index 0000000..190794e --- /dev/null +++ b/opticsApp/op/adl/table_tiny_soft.adl @@ -0,0 +1,879 @@ + +file { + name="/home/oxygen/MOONEY/epics/synApps/support/optics/opticsApp/op/adl/table_tiny_soft.adl" + version=030111 +} +display { + object { + x=1227 + y=699 + width=230 + height=250 + } + clr=14 + bclr=3 + cmap="" + gridSpacing=5 + gridOn=0 + snapToGrid=0 +} +"color map" { + ncolors=65 + colors { + ffffff, + ececec, + dadada, + c8c8c8, + bbbbbb, + aeaeae, + 9e9e9e, + 919191, + 858585, + 787878, + 696969, + 5a5a5a, + 464646, + 2d2d2d, + 000000, + 00d800, + 1ebb00, + 339900, + 2d7f00, + 216c00, + fd0000, + de1309, + be190b, + a01207, + 820400, + 5893ff, + 597ee1, + 4b6ec7, + 3a5eab, + 27548d, + fbf34a, + f9da3c, + eeb62b, + e19015, + cd6100, + ffb0ff, + d67fe2, + ae4ebc, + 8b1a96, + 610a75, + a4aaff, + 8793e2, + 6a73c1, + 4d52a4, + 343386, + c7bb6d, + b79d5c, + a47e3c, + 7d5627, + 58340f, + 99ffff, + 73dfff, + 4ea5f9, + 2a63e4, + 0a00b8, + ebf1b5, + d4db9d, + bbc187, + a6a462, + 8b8239, + 73ff6b, + 52da3b, + 3cb420, + 289315, + 1a7309, + } +} +"text update" { + object { + x=25 + y=42 + width=80 + height=15 + } + monitor { + chan="$(P)$(Q):x.RBV" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +text { + object { + x=10 + y=172 + width=20 + height=20 + } + "basic attribute" { + clr=14 + } + textix="Z" +} +text { + object { + x=10 + y=118 + width=20 + height=20 + } + "basic attribute" { + clr=14 + } + textix="Y" +} +text { + object { + x=100 + y=23 + width=50 + height=18 + } + "basic attribute" { + clr=20 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).LVIO" + } + textix="Limit" + align="horiz. centered" +} +"text update" { + object { + x=25 + y=23 + width=60 + height=15 + } + monitor { + chan="$(P)$(T).LEGU" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +text { + object { + x=10 + y=62 + width=20 + height=20 + } + "basic attribute" { + clr=14 + } + textix="X" +} +"text update" { + object { + x=0 + y=0 + width=230 + height=20 + } + monitor { + chan="$(P)$(T).DESC" + clr=54 + bclr=0 + } + align="horiz. centered" + limits { + } +} +polyline { + object { + x=0 + y=20 + width=231 + height=3 + } + "basic attribute" { + clr=54 + width=3 + } + points { + (1,21) + (229,21) + } +} +"related display" { + object { + x=180 + y=225 + width=40 + height=20 + } + display[0] { + label="More" + name="table_soft.adl" + args="P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z)" + policy="replace display" + } + display[1] { + label="Setup (SRI geometry)" + name="table_setup_SRI.adl" + args="P=$(P),Q=$(Q),T=$(T)" + } + display[2] { + label="Setup (GEOCARS geometry)" + name="table_setup_GEOCARS.adl" + args="P=$(P),Q=$(Q),T=$(T)" + } + display[3] { + label="Setup (NEWPORT geometry)" + name="table_setup_NEWPORT.adl" + args="P=$(P),Q=$(Q),T=$(T)" + } + display[4] { + label="Setup (PNC geometry)" + name="table_setup_PNC.adl" + args="P=$(P),Q=$(Q),T=$(T)" + } + clr=0 + bclr=17 + label="-More" +} +"choice button" { + object { + x=5 + y=200 + width=80 + height=20 + } + control { + chan="$(P)$(T).SET" + clr=14 + bclr=51 + } + stacking="column" +} +"message button" { + object { + x=90 + y=200 + width=40 + height=20 + } + control { + chan="$(P)$(Q):zero" + clr=14 + bclr=51 + } + label="Zero" + press_msg="1" +} +"message button" { + object { + x=5 + y=225 + width=50 + height=20 + } + control { + chan="$(P)$(Q):sync" + clr=14 + bclr=51 + } + label="Sync" + press_msg="1" +} +"message button" { + object { + x=55 + y=225 + width=50 + height=20 + } + control { + chan="$(P)$(Q):init" + clr=14 + bclr=51 + } + label="Init" + press_msg="1" +} +"message button" { + object { + x=135 + y=200 + width=60 + height=25 + } + control { + chan="$(P)$(Q):stop.VAL" + clr=30 + bclr=20 + } + label="Stop" + press_msg="1" +} +text { + object { + x=110 + y=225 + width=60 + height=20 + } + "basic attribute" { + clr=55 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(Q):done.VAL" + } + textix="Done" + align="horiz. centered" +} +text { + object { + x=110 + y=225 + width=60 + height=20 + } + "basic attribute" { + clr=55 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(Q):done.VAL" + } + textix="Moving" + align="horiz. centered" +} +"text entry" { + object { + x=25 + y=60 + width=80 + height=22 + } + control { + chan="$(P)$(Q):x.VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text update" { + object { + x=25 + y=97 + width=80 + height=15 + } + monitor { + chan="$(P)$(Q):y.RBV" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text entry" { + object { + x=25 + y=115 + width=80 + height=22 + } + control { + chan="$(P)$(Q):y.VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text update" { + object { + x=25 + y=152 + width=80 + height=15 + } + monitor { + chan="$(P)$(Q):z.RBV" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text entry" { + object { + x=25 + y=170 + width=80 + height=22 + } + control { + chan="$(P)$(Q):z.VAL" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { + object { + x=25 + y=40 + width=80 + height=18 + } + "basic attribute" { + clr=30 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +rectangle { + object { + x=25 + y=95 + width=80 + height=18 + } + "basic attribute" { + clr=30 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +rectangle { + object { + x=25 + y=150 + width=80 + height=18 + } + "basic attribute" { + clr=30 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +rectangle { + object { + x=23 + y=38 + width=84 + height=22 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +rectangle { + object { + x=23 + y=93 + width=84 + height=22 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +rectangle { + object { + x=23 + y=148 + width=84 + height=22 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +text { + object { + x=115 + y=171 + width=20 + height=20 + } + "basic attribute" { + clr=14 + } + textix="AZ" +} +text { + object { + x=115 + y=116 + width=20 + height=20 + } + "basic attribute" { + clr=14 + } + textix="AY" +} +"text update" { + object { + x=155 + y=23 + width=60 + height=15 + } + monitor { + chan="$(P)$(T).AEGU" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +text { + object { + x=115 + y=62 + width=20 + height=20 + } + "basic attribute" { + clr=14 + } + textix="AX" +} +"text update" { + object { + x=140 + y=42 + width=80 + height=15 + } + monitor { + chan="$(P)$(Q):ax.RBV" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text entry" { + object { + x=140 + y=60 + width=80 + height=22 + } + control { + chan="$(P)$(Q):ax.VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text update" { + object { + x=140 + y=97 + width=80 + height=15 + } + monitor { + chan="$(P)$(Q):ay.RBV" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text entry" { + object { + x=140 + y=115 + width=80 + height=22 + } + control { + chan="$(P)$(Q):ay.VAL" + clr=14 + bclr=51 + } + limits { + } +} +"text update" { + object { + x=140 + y=152 + width=80 + height=15 + } + monitor { + chan="$(P)$(Q):az.RBV" + clr=54 + bclr=3 + } + align="horiz. centered" + limits { + } +} +"text entry" { + object { + x=140 + y=170 + width=80 + height=22 + } + control { + chan="$(P)$(Q):az.VAL" + clr=14 + bclr=51 + } + limits { + } +} +rectangle { + object { + x=140 + y=40 + width=80 + height=18 + } + "basic attribute" { + clr=30 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +rectangle { + object { + x=140 + y=95 + width=80 + height=18 + } + "basic attribute" { + clr=30 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +rectangle { + object { + x=140 + y=150 + width=80 + height=18 + } + "basic attribute" { + clr=30 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +rectangle { + object { + x=138 + y=38 + width=84 + height=22 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +rectangle { + object { + x=138 + y=93 + width=84 + height=22 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +rectangle { + object { + x=138 + y=148 + width=84 + height=22 + } + "basic attribute" { + clr=14 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if not zero" + chan="$(P)$(T).SET" + } +} +rectangle { + object { + x=22 + y=37 + width=88 + height=47 + } + "basic attribute" { + clr=60 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(Q):x.DMOV" + } +} +rectangle { + object { + x=22 + y=92 + width=88 + height=47 + } + "basic attribute" { + clr=60 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(Q):y.DMOV" + } +} +rectangle { + object { + x=22 + y=147 + width=88 + height=47 + } + "basic attribute" { + clr=60 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(Q):z.DMOV" + } +} +rectangle { + object { + x=136 + y=37 + width=88 + height=47 + } + "basic attribute" { + clr=60 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(Q):ax.DMOV" + } +} +rectangle { + object { + x=136 + y=92 + width=88 + height=47 + } + "basic attribute" { + clr=60 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(Q):ay.DMOV" + } +} +rectangle { + object { + x=136 + y=146 + width=88 + height=47 + } + "basic attribute" { + clr=60 + fill="outline" + width=2 + } + "dynamic attribute" { + vis="if zero" + chan="$(P)$(Q):az.DMOV" + } +} diff --git a/opticsApp/op/adl/virtualChannelCutMono.adl b/opticsApp/op/adl/virtualChannelCutMono.adl new file mode 100644 index 0000000..e0f2060 --- /dev/null +++ b/opticsApp/op/adl/virtualChannelCutMono.adl @@ -0,0 +1,258 @@ + +file { + name="/net/s27dserv/xorApps/epics/synApps_5_8/ioc/27idmot1/27idmot1App/op/adl/virtualChannelCutMono.adl" + version=030111 +} +display { + object { + x=992 + y=294 + width=400 + height=152 + } + clr=14 + bclr=2 + cmap="" + gridSpacing=5 + gridOn=0 + snapToGrid=0 +} +"color map" { + ncolors=65 + colors { + ffffff, + ececec, + dadada, + c8c8c8, + bbbbbb, + aeaeae, + 9e9e9e, + 919191, + 858585, + 787878, + 696969, + 5a5a5a, + 464646, + 2d2d2d, + 000000, + 00d800, + 1ebb00, + 339900, + 2d7f00, + 216c00, + fd0000, + de1309, + be190b, + a01207, + 820400, + 5893ff, + 597ee1, + 4b6ec7, + 3a5eab, + 27548d, + fbf34a, + f9da3c, + eeb62b, + e19015, + cd6100, + ffb0ff, + d67fe2, + ae4ebc, + 8b1a96, + 610a75, + a4aaff, + 8793e2, + 6a73c1, + 4d52a4, + 343386, + c7bb6d, + b79d5c, + a47e3c, + 7d5627, + 58340f, + 99ffff, + 73dfff, + 4ea5f9, + 2a63e4, + 0a00b8, + ebf1b5, + d4db9d, + bbc187, + a6a462, + 8b8239, + 73ff6b, + 52da3b, + 3cb420, + 289315, + 1a7309, + } +} +text { + object { + x=10 + y=40 + width=120 + height=20 + } + "basic attribute" { + clr=14 + } + textix="Energy (keV)" +} +"related display" { + object { + x=337 + y=125 + width=45 + height=20 + } + display[0] { + label="Energy" + name="motorx.adl" + args="P=$(P),M=VCCMono:Energy" + } + display[3] { + label="tFwd" + name="yyTransform.adl" + args="P=$(P),T=VCCMono:tFwd" + } + display[4] { + label="tRev" + name="yyTransform.adl" + args="P=$(P),T=VCCMono:tRev" + } + display[6] { + label="calcDone" + name="yyCalcoutRecord.adl" + args="P=$(P),C=VCCMono:calcDone" + } + display[7] { + label="closeGate" + name="yyCalcoutRecord.adl" + args="P=$(P),C=VCCMono:closeGate" + } + clr=0 + bclr=17 + label="-debug" +} +text { + object { + x=10 + y=65 + width=120 + height=20 + } + "basic attribute" { + clr=14 + } + textix="Offset (mm)" +} +text { + object { + x=10 + y=90 + width=120 + height=20 + } + "basic attribute" { + clr=14 + } + textix="deltaD" +} +text { + object { + x=10 + y=115 + width=120 + height=20 + } + "basic attribute" { + clr=14 + } + textix="d spacing (A)" +} +"choice button" { + object { + x=280 + y=40 + width=100 + height=20 + } + control { + chan="$(P)VCCMono:set" + clr=14 + bclr=51 + } + stacking="column" +} +composite { + object { + x=145 + y=40 + width=130 + height=95 + } + "composite name"="" + children { + "text entry" { + object { + x=145 + y=40 + width=130 + height=20 + } + control { + chan="$(P)VCCMono:Energy" + clr=14 + bclr=51 + } + limits { + } + } + "text entry" { + object { + x=145 + y=65 + width=130 + height=20 + } + control { + chan="$(P)VCCMono:offset" + clr=14 + bclr=51 + } + limits { + } + } + "text entry" { + object { + x=145 + y=90 + width=130 + height=20 + } + control { + chan="$(P)VCCMono:deltaD" + clr=14 + bclr=51 + } + limits { + } + } + "text entry" { + object { + x=145 + y=115 + width=130 + height=20 + } + control { + chan="$(P)VCCMono:d_spacing" + clr=14 + bclr=51 + } + limits { + } + } + } +} diff --git a/opticsApp/op/bob/autoconvert/2filter.bob b/opticsApp/op/bob/autoconvert/2filter.bob new file mode 100644 index 0000000..40be70e --- /dev/null +++ b/opticsApp/op/bob/autoconvert/2filter.bob @@ -0,0 +1,120 @@ + + + 2filter + 10 + 10 + 195 + 200 + + + + + false + 5 + + choice button #6 + $(P)$(Q1)select.VAL + 5 + 65 + 90 + 130 + + + + + false + false + + Item 1 + Item 2 + + + + choice button #9 + $(P)$(Q2)select.VAL + 100 + 65 + 90 + 130 + + + + + false + false + + Item 1 + Item 2 + + + + text #12 + upstream + 5 + 46 + 90 + 18 + + + + + 1 + + + text #15 + downstream + 100 + 45 + 90 + 18 + + + + + 1 + + + text #18 + User Filters + 195 + + + + + 1 + + + choice button #21 + $(P)$(LOCK1)lock.VAL + 5 + 20 + 90 + 15 + + + + + false + + Item 1 + Item 2 + + + + choice button #24 + $(P)$(LOCK2)lock.VAL + 100 + 20 + 90 + 15 + + + + + false + + Item 1 + Item 2 + + + diff --git a/opticsApp/op/bob/autoconvert/2filter_setup.bob b/opticsApp/op/bob/autoconvert/2filter_setup.bob new file mode 100644 index 0000000..ea22d26 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/2filter_setup.bob @@ -0,0 +1,986 @@ + + + 2filter_setup + 10 + 10 + 460 + 310 + + + + + false + 5 + + rectangle #6 + 275 + 460 + 35 + + + + + + + + + + + text #9 + close and re-open any screen that displays it. + 5 + 292 + 400 + 14 + true + + + text #12 + Motor-drive PV + 5 + 255 + 115 + 18 + + + + + true + + + text entry #15 + $(P)$(Q1)motorOut.OUTN + 120 + 255 + 105 + + + + + + + + + 6 + false + false + + + text #19 + INVALID + 180 + 247 + 40 + 10 + + + + + + + + + true + + + + false + + $(P)$(Q1)motorOut.OUTV + + + + + text entry #23 + $(P)$(Q1)pos5.VAL + 155 + 125 + 70 + + + + + + + + + 1 + false + false + + + text entry #27 + $(P)$(Q1)pos4.VAL + 155 + 145 + 70 + + + + + + + + + 1 + false + false + + + text entry #31 + $(P)$(Q1)pos3.VAL + 155 + 165 + 70 + + + + + + + + + 1 + false + false + + + text entry #35 + $(P)$(Q1)pos2.VAL + 155 + 185 + 70 + + + + + + + + + 1 + false + false + + + text entry #39 + $(P)$(Q1)posHome.VAL + 155 + 225 + 70 + + + + + + + + + 1 + false + false + + + text entry #43 + $(P)$(Q1)pos1.VAL + 155 + 205 + 70 + + + + + + + + + 1 + false + false + + + choice button #47 + $(P)$(Q1)select.VAL + 80 + 125 + 70 + 125 + + + + + false + false + + Item 1 + Item 2 + + + + text #50 + Motor-drive PV + 235 + 255 + 115 + 18 + + + + + true + + + text entry #53 + $(P)$(Q2)motorOut.OUTN + 350 + 255 + 105 + + + + + + + + + 6 + false + false + + + text entry #57 + $(P)$(Q2)pos5.VAL + 385 + 125 + 70 + + + + + + + + + 1 + false + false + + + text entry #61 + $(P)$(Q2)pos4.VAL + 385 + 145 + 70 + + + + + + + + + 1 + false + false + + + text entry #65 + $(P)$(Q2)pos3.VAL + 385 + 165 + 70 + + + + + + + + + 1 + false + false + + + text entry #69 + $(P)$(Q2)pos2.VAL + 385 + 185 + 70 + + + + + + + + + 1 + false + false + + + text entry #73 + $(P)$(Q2)posHome.VAL + 385 + 225 + 70 + + + + + + + + + 1 + false + false + + + text entry #77 + $(P)$(Q2)pos1.VAL + 385 + 205 + 70 + + + + + + + + + 1 + false + false + + + choice button #81 + $(P)$(Q2)select.VAL + 310 + 125 + 70 + 125 + + + + + false + false + + Item 1 + Item 2 + + + + text #84 + INVALID + 410 + 245 + 40 + 10 + + + + + + + + + true + + + + false + + $(P)$(Q2)motorOut.OUTV + + + + + text entry #88 + $(P)$(Q1)name5 + 5 + 125 + 70 + + + + + + + + + 1 + false + false + + + text entry #92 + $(P)$(Q1)name4 + 5 + 145 + 70 + + + + + + + + + 1 + false + false + + + text entry #96 + $(P)$(Q1)name3 + 5 + 165 + 70 + + + + + + + + + 1 + false + false + + + text entry #100 + $(P)$(Q1)name2 + 5 + 185 + 70 + + + + + + + + + 1 + false + false + + + text entry #104 + $(P)$(Q1)nameHome + 5 + 225 + 70 + + + + + + + + + 1 + false + false + + + text entry #108 + $(P)$(Q1)name1 + 5 + 205 + 70 + + + + + + + + + 1 + false + false + + + text entry #112 + $(P)$(Q2)name5 + 235 + 125 + 70 + + + + + + + + + 1 + false + false + + + text entry #116 + $(P)$(Q2)name4 + 235 + 145 + 70 + + + + + + + + + 1 + false + false + + + text entry #120 + $(P)$(Q2)name3 + 235 + 165 + 70 + + + + + + + + + 1 + false + false + + + text entry #124 + $(P)$(Q2)name2 + 235 + 185 + 70 + + + + + + + + + 1 + false + false + + + text entry #128 + $(P)$(Q2)nameHome + 235 + 225 + 70 + + + + + + + + + 1 + false + false + + + text entry #132 + $(P)$(Q2)name1 + 235 + 205 + 70 + + + + + + + + + 1 + false + false + + + text #136 + position + 155 + 100 + 70 + 14 + 1 + + + text #139 + control + 80 + 100 + 70 + 14 + 1 + + + text #142 + material + 5 + 100 + 70 + 14 + 1 + + + text #145 + motor + 155 + 85 + 70 + 14 + 1 + + + text #148 + + 80 + 85 + 70 + 14 + 1 + + + text #151 + filter + 5 + 85 + 70 + 14 + 1 + + + text #154 + User Filter $(P)$(Q1) + 460 + 18 + + + + + 1 + + + choice button #157 + $(P)$(LOCK1)lock.VAL + 15 + 20 + 200 + 20 + + + + + false + + Item 1 + Item 2 + + + + text #160 + INVALID + 175 + 45 + 40 + 10 + + + + + + + + + true + + + + false + + $(P)$(LOCK1)lockOut.OUTV + + + + + text entry #164 + $(P)$(LOCK1)lockOut.OUTN + 55 + 40 + 120 + + + + + + + + + 6 + false + false + + + text #168 + Lock_PV + 42 + 55 + 18 + + + + + true + + + polyline #171 + -1 + 17 + 459 + 2 + 2 + + + + + + + + + + + + + polyline #175 + -1 + 61 + 459 + 2 + 2 + + + + + + + + + + + + + text #179 + upstream + 5 + 65 + 220 + + + + + 1 + + + text #182 + downstream + 235 + 65 + 220 + + + + + 1 + + + text #185 + position + 385 + 100 + 70 + 14 + 1 + + + text #188 + control + 310 + 100 + 70 + 14 + 1 + + + text #191 + material + 235 + 100 + 70 + 14 + 1 + + + text #194 + motor + 385 + 85 + 70 + 14 + 1 + + + text #197 + + 310 + 85 + 70 + 14 + 1 + + + text #200 + filter + 235 + 85 + 70 + 14 + 1 + + + polyline #203 + 229 + 62 + 2 + 212 + 2 + + + + + + + + + + + + + text #207 + NOTE: After changing filter-material description, you must + 5 + 278 + 450 + 14 + true + + + polyline #210 + -1 + 275 + 459 + 2 + 2 + + + + + + + + + + + + + choice button #214 + $(P)$(LOCK2)lock.VAL + 245 + 20 + 200 + 20 + + + + + false + + Item 1 + Item 2 + + + + text #217 + INVALID + 405 + 45 + 40 + 10 + + + + + + + + + true + + + + false + + $(P)$(LOCK2)lockOut.OUTV + + + + + text entry #221 + $(P)$(LOCK2)lockOut.OUTN + 285 + 40 + 120 + + + + + + + + + 6 + false + false + + + text #225 + Lock_PV + 230 + 42 + 55 + 18 + + + + + true + + diff --git a/opticsApp/op/bob/autoconvert/2iddMicroscope.bob b/opticsApp/op/bob/autoconvert/2iddMicroscope.bob new file mode 100644 index 0000000..90a59db --- /dev/null +++ b/opticsApp/op/bob/autoconvert/2iddMicroscope.bob @@ -0,0 +1,3953 @@ + + + 2iddMicroscope + 149 + 580 + 605 + 255 + + + + + false + 5 + + rectangle #6 + 500 + 21 + 60 + 19 + + + + + + + + + + + rectangle #9 + 605 + + + + + + + + + + + text #12 + 2IDD X-Ray Microscope + 3 + 605 + 14 + 1 + + + polyline #15 + 19 + 606 + 3 + + + + + + + + + + + + + rectangle #19 + 155 + 140 + 145 + 110 + + + + + + + + + + + polyline #22 + 323 + 83 + 161 + 55 + 1 + + + + + 1 + + + + + + + + + composite #26 + 10 + 49 + 68 + 63 + + true + + composite #29 + 68 + 63 + + true + + polyline #32 + 3 + 55 + 50 + 0 + 1 + + + + + + + + + + + + + polyline #36 + 3 + 33 + 26 + 22 + 1 + + + + + + + + + + + + + polyline #40 + 3 + 17 + 0 + 37 + 1 + + + + + + + + + + + + + text #44 + Z + 58 + 49 + 10 + 14 + true + + + text #47 + X + 32 + 19 + 10 + 14 + true + + + text #50 + Y + 10 + 14 + true + + + + + text #53 + Zone Plate 2 + 160 + 140 + 130 + + + + + 1 + + + rectangle #56 + 305 + 140 + 145 + 80 + + + + + + + + + + + rectangle #59 + 305 + 140 + 145 + 80 + 1 + + + + + + + + + true + + + text #62 + OSA + 310 + 140 + 135 + + + + + 1 + + + rectangle #65 + 455 + 140 + 145 + 80 + + + + + + + + + + + text #68 + Sample + 460 + 140 + 135 + + + + + 1 + + + rectangle #71 + 455 + 140 + 145 + 80 + 1 + + + + + + + + + true + + + rectangle #74 + 190 + 165 + 10 + 5 + + + + + + + + + + + + false + + $(P)m20.HLS + + + + + rectangle #78 + 190 + 178 + 10 + 5 + + + + + + + + + + + + false + + $(P)m20.LLS + + + + + text update #82 + $(P)m20.RBV + 205 + 160 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #85 + $(P)m20.VAL + 205 + 169 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #88 + + + $(P)m20.TWF + 1 + Write + + + $(P)m20.TWF + + + 275 + 160 + 20 + 15 + + + + + + + message button #91 + + + $(P)m20.TWR + 1 + Write + + + $(P)m20.TWR + - + 255 + 160 + 20 + 15 + + + + + + + rectangle #94 + 200 + 165 + 5 + 18 + + + + + + + + + + + + false + + $(P)m20_able.VAL + + + + + rectangle #98 + 195 + 170 + 5 + 8 + + + + + + + + + + + + false + + $(P)m20.LVIO + + + + + rectangle #102 + 190 + 170 + 5 + 8 + + + + + + + + + + + + false + + $(P)m20.DMOV + + + + + text entry #106 + $(P)m20.TWV + 255 + 173 + 40 + 14 + + + + + 1 + false + false + + + text update #109 + $(P)m19.RBV + 205 + 190 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #112 + $(P)m19.VAL + 205 + 199 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #115 + + + $(P)m19.TWF + 1 + Write + + + $(P)m19.TWF + + + 275 + 190 + 20 + 15 + + + + + + + message button #118 + + + $(P)m19.TWR + 1 + Write + + + $(P)m19.TWR + - + 255 + 190 + 20 + 15 + + + + + + + rectangle #121 + 200 + 195 + 5 + 18 + + + + + + + + + + + + false + + $(P)m19_able.VAL + + + + + rectangle #125 + 190 + 208 + 10 + 5 + + + + + + + + + + + + false + + $(P)m19.LLS + + + + + rectangle #129 + 195 + 200 + 5 + 8 + + + + + + + + + + + + false + + $(P)m19.LVIO + + + + + rectangle #133 + 190 + 200 + 5 + 8 + + + + + + + + + + + + false + + $(P)m19.DMOV + + + + + rectangle #137 + 190 + 195 + 10 + 5 + + + + + + + + + + + + false + + $(P)m19.HLS + + + + + text entry #141 + $(P)m19.TWV + 255 + 203 + 40 + 14 + + + + + 1 + false + false + + + text #144 + Y + 330 + 167 + 10 + 14 + true + + + related display #147 + + + motorx.opi + + m12 + + tab + Motor (small) + + + motorx_more.opi + + m12 + + tab + Motor (medium) + + + + 310 + 164 + 20 + 20 + + + + + + + text update #151 + $(P)m12.RBV + 355 + 160 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #154 + $(P)m12.VAL + 355 + 168 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #157 + + + $(P)m12.TWF + 1 + Write + + + $(P)m12.TWF + + + 425 + 160 + 20 + 15 + + + + + + + message button #160 + + + $(P)m12.TWR + 1 + Write + + + $(P)m12.TWR + - + 405 + 160 + 20 + 15 + + + + + + + rectangle #163 + 350 + 165 + 5 + 18 + + + + + + + + + + + + false + + $(P)m12_able.VAL + + + + + rectangle #167 + 340 + 178 + 10 + 5 + + + + + + + + + + + + false + + $(P)m12.LLS + + + + + rectangle #171 + 345 + 170 + 5 + 8 + + + + + + + + + + + + false + + $(P)m12.LVIO + + + + + rectangle #175 + 340 + 170 + 5 + 8 + + + + + + + + + + + + false + + $(P)m12.DMOV + + + + + rectangle #179 + 340 + 165 + 10 + 5 + + + + + + + + + + + + false + + $(P)m12.HLS + + + + + text entry #183 + $(P)m12.TWV + 405 + 173 + 40 + 14 + + + + + 1 + false + false + + + text #186 + X + 330 + 197 + 10 + 14 + true + + + related display #189 + + + motorx.opi + + m11 + + tab + Motor (small) + + + motorx_more.opi + + m11 + + tab + Motor (medium) + + + + 310 + 194 + 20 + 20 + + + + + + + text update #193 + $(P)m11.RBV + 355 + 190 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #196 + $(P)m11.VAL + 355 + 198 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #199 + + + $(P)m11.TWF + 1 + Write + + + $(P)m11.TWF + + + 425 + 190 + 20 + 15 + + + + + + + message button #202 + + + $(P)m11.TWR + 1 + Write + + + $(P)m11.TWR + - + 405 + 190 + 20 + 15 + + + + + + + rectangle #205 + 350 + 195 + 5 + 18 + + + + + + + + + + + + false + + $(P)m11_able.VAL + + + + + rectangle #209 + 340 + 208 + 10 + 5 + + + + + + + + + + + + false + + $(P)m11.LLS + + + + + rectangle #213 + 345 + 200 + 5 + 8 + + + + + + + + + + + + false + + $(P)m11.LVIO + + + + + rectangle #217 + 340 + 200 + 5 + 8 + + + + + + + + + + + + false + + $(P)m11.DMOV + + + + + rectangle #221 + 340 + 195 + 10 + 5 + + + + + + + + + + + + false + + $(P)m11.HLS + + + + + text entry #225 + $(P)m11.TWV + 405 + 203 + 40 + 14 + + + + + 1 + false + false + + + rectangle #228 + 190 + 225 + 10 + 5 + + + + + + + + + + + + false + + $(P)m18.HLS + + + + + rectangle #232 + 190 + 238 + 10 + 5 + + + + + + + + + + + + false + + $(P)m18.LLS + + + + + text update #236 + $(P)m18.RBV + 205 + 220 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #239 + $(P)m18.VAL + 205 + 229 + 50 + 16 + + + + + + + + + 1 + false + false + + + rectangle #242 + 200 + 225 + 5 + 18 + + + + + + + + + + + + false + + $(P)m18_able.VAL + + + + + rectangle #246 + 195 + 230 + 5 + 8 + + + + + + + + + + + + false + + $(P)m18.LVIO + + + + + rectangle #250 + 190 + 230 + 5 + 8 + + + + + + + + + + + + false + + $(P)m18.DMOV + + + + + message button #254 + + + $(P)m18.TWF + 1 + Write + + + $(P)m18.TWF + + + 275 + 220 + 20 + 15 + + + + + + + message button #257 + + + $(P)m18.TWR + 1 + Write + + + $(P)m18.TWR + - + 255 + 220 + 20 + 15 + + + + + + + text entry #260 + $(P)m18.TWV + 255 + 233 + 40 + 14 + + + + + 1 + false + false + + + rectangle #263 + 155 + 140 + 145 + 110 + 1 + + + + + + + + + true + + + text #266 + Y + 480 + 167 + 10 + 14 + true + + + related display #269 + + + motorx.opi + + m14 + + tab + Motor (small) + + + motorx_more.opi + + m14 + + tab + Motor (medium) + + + + 460 + 164 + 20 + 20 + + + + + + + text update #273 + $(P)m14.RBV + 505 + 160 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #276 + $(P)m14.VAL + 505 + 168 + 50 + 16 + + + + + + + + + 1 + false + false + + + rectangle #279 + 500 + 165 + 5 + 18 + + + + + + + + + + + + false + + $(P)m14_able.VAL + + + + + rectangle #283 + 490 + 178 + 10 + 5 + + + + + + + + + + + + false + + $(P)m14.LLS + + + + + rectangle #287 + 495 + 170 + 5 + 8 + + + + + + + + + + + + false + + $(P)m14.LVIO + + + + + rectangle #291 + 490 + 170 + 5 + 8 + + + + + + + + + + + + false + + $(P)m14.DMOV + + + + + rectangle #295 + 490 + 165 + 10 + 5 + + + + + + + + + + + + false + + $(P)m14.HLS + + + + + message button #299 + + + $(P)m14.TWF + 1 + Write + + + $(P)m14.TWF + + + 575 + 160 + 20 + 15 + + + + + + + message button #302 + + + $(P)m14.TWR + 1 + Write + + + $(P)m14.TWR + - + 555 + 160 + 20 + 15 + + + + + + + text #305 + X + 480 + 197 + 10 + 14 + true + + + related display #308 + + + motorx.opi + + m13 + + tab + Motor (small) + + + motorx_more.opi + + m13 + + tab + Motor (medium) + + + + 460 + 194 + 20 + 20 + + + + + + + text update #312 + $(P)m13.RBV + 505 + 190 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #315 + $(P)m13.VAL + 505 + 198 + 50 + 16 + + + + + + + + + 1 + false + false + + + rectangle #318 + 500 + 195 + 5 + 18 + + + + + + + + + + + + false + + $(P)m13_able.VAL + + + + + rectangle #322 + 490 + 208 + 10 + 5 + + + + + + + + + + + + false + + $(P)m13.LLS + + + + + rectangle #326 + 495 + 200 + 5 + 8 + + + + + + + + + + + + false + + $(P)m13.LVIO + + + + + rectangle #330 + 490 + 200 + 5 + 8 + + + + + + + + + + + + false + + $(P)m13.DMOV + + + + + rectangle #334 + 490 + 195 + 10 + 5 + + + + + + + + + + + + false + + $(P)m13.HLS + + + + + message button #338 + + + $(P)m13.TWF + 1 + Write + + + $(P)m13.TWF + + + 575 + 190 + 20 + 15 + + + + + + + message button #341 + + + $(P)m13.TWR + 1 + Write + + + $(P)m13.TWR + - + 555 + 190 + 20 + 15 + + + + + + + text entry #344 + $(P)m14.TWV + 555 + 173 + 40 + 14 + + + + + 1 + false + false + + + text entry #347 + $(P)m13.TWV + 555 + 203 + 40 + 14 + + + + + 1 + false + false + + + related display #350 + + + 2iddMicroscope_full.opi + + m27 + m28 + m29 + m30 + m31 + m32 + + replace + Microscope (full) + + + More + 552 + 229 + 50 + 20 + + + + + + + related display #353 + + + motorx.opi + + m20 + + tab + Motor (small) + + + motorx_more.opi + + m20 + + tab + Motor (medium) + + + + 160 + 164 + 20 + 20 + + + + + + + related display #357 + + + motorx.opi + + m19 + + tab + Motor (small) + + + motorx_more.opi + + m19 + + tab + Motor (medium) + + + + 160 + 194 + 20 + 20 + + + + + + + related display #361 + + + motorx.opi + + m18 + + tab + Motor (small) + + + motorx_more.opi + + m18 + + tab + Motor (medium) + + + + 160 + 224 + 20 + 20 + + + + + + + text #365 + Y + 180 + 167 + 10 + 14 + true + + + text #368 + X + 180 + 197 + 10 + 14 + true + + + text #371 + Z + 180 + 227 + 10 + 14 + true + + + rectangle #374 + 5 + 140 + 145 + 110 + + + + + + + + + + + text #377 + Zone Plate 1 + 10 + 140 + 130 + + + + + 1 + + + rectangle #380 + 40 + 165 + 10 + 5 + + + + + + + + + + + + false + + $(P)m4.HLS + + + + + rectangle #384 + 40 + 178 + 10 + 5 + + + + + + + + + + + + false + + $(P)m4.LLS + + + + + text update #388 + $(P)m4.RBV + 55 + 160 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + message button #391 + + + $(P)m4.TWF + 1 + Write + + + $(P)m4.TWF + + + 125 + 160 + 20 + 15 + + + + + + + message button #394 + + + $(P)m4.TWR + 1 + Write + + + $(P)m4.TWR + - + 105 + 160 + 20 + 15 + + + + + + + rectangle #397 + 50 + 165 + 5 + 18 + + + + + + + + + + + + false + + $(P)m4_able.VAL + + + + + rectangle #401 + 45 + 170 + 5 + 8 + + + + + + + + + + + + false + + $(P)m4.LVIO + + + + + rectangle #405 + 40 + 170 + 5 + 8 + + + + + + + + + + + + false + + $(P)m4.DMOV + + + + + text entry #409 + $(P)m4.VAL + 55 + 169 + 50 + 16 + + + + + + + + + 1 + false + false + + + text entry #412 + $(P)m4.TWV + 105 + 173 + 40 + 14 + + + + + 1 + false + false + + + text update #415 + $(P)m3.RBV + 55 + 190 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #418 + $(P)m3.VAL + 55 + 199 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #421 + + + $(P)m3.TWF + 1 + Write + + + $(P)m3.TWF + + + 125 + 190 + 20 + 15 + + + + + + + message button #424 + + + $(P)m3.TWR + 1 + Write + + + $(P)m3.TWR + - + 105 + 190 + 20 + 15 + + + + + + + rectangle #427 + 50 + 195 + 5 + 18 + + + + + + + + + + + + false + + $(P)m3_able.VAL + + + + + rectangle #431 + 40 + 208 + 10 + 5 + + + + + + + + + + + + false + + $(P)m3.LLS + + + + + rectangle #435 + 45 + 200 + 5 + 8 + + + + + + + + + + + + false + + $(P)m3.LVIO + + + + + rectangle #439 + 40 + 200 + 5 + 8 + + + + + + + + + + + + false + + $(P)m3.DMOV + + + + + rectangle #443 + 40 + 195 + 10 + 5 + + + + + + + + + + + + false + + $(P)m3.HLS + + + + + text entry #447 + $(P)m3.TWV + 105 + 203 + 40 + 14 + + + + + 1 + false + false + + + rectangle #450 + 40 + 225 + 10 + 5 + + + + + + + + + + + + false + + $(P)m22.HLS + + + + + rectangle #454 + 40 + 238 + 10 + 5 + + + + + + + + + + + + false + + $(P)m22.LLS + + + + + text update #458 + $(P)m22.RBV + 55 + 220 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #461 + $(P)m22.VAL + 55 + 229 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #464 + + + $(P)m22.TWF + 1 + Write + + + $(P)m22.TWF + + + 125 + 220 + 20 + 15 + + + + + + + message button #467 + + + $(P)m22.TWR + 1 + Write + + + $(P)m22.TWR + - + 105 + 220 + 20 + 15 + + + + + + + rectangle #470 + 50 + 225 + 5 + 18 + + + + + + + + + + + + false + + $(P)m22_able.VAL + + + + + rectangle #474 + 45 + 230 + 5 + 8 + + + + + + + + + + + + false + + $(P)m22.LVIO + + + + + rectangle #478 + 40 + 230 + 5 + 8 + + + + + + + + + + + + false + + $(P)m22.DMOV + + + + + text entry #482 + $(P)m4.TWV + 105 + 233 + 40 + 14 + + + + + 1 + false + false + + + rectangle #485 + 5 + 140 + 145 + 110 + 1 + + + + + + + + + true + + + related display #488 + + + motorx.opi + + m4 + + tab + Motor (small) + + + motorx_more.opi + + m4 + + tab + Motor (medium) + + + + 10 + 164 + 20 + 20 + + + + + + + related display #492 + + + motorx.opi + + m3 + + tab + Motor (small) + + + motorx_more.opi + + m3 + + tab + Motor (medium) + + + + 10 + 194 + 20 + 20 + + + + + + + related display #496 + + + motorx.opi + + m22 + + tab + Motor (small) + + + motorx_more.opi + + m22 + + tab + Motor (medium) + + + + 10 + 224 + 20 + 20 + + + + + + + text #500 + Y + 30 + 167 + 10 + 14 + true + + + text #503 + X + 30 + 197 + 10 + 14 + true + + + text #506 + Z + 30 + 227 + 10 + 14 + true + + + message button #509 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + All Stop + 400 + 225 + + + + + + + + + + + rectangle #512 + 235 + 30 + 60 + 100 + + + + + + + + + + + oval #515 + 262 + 68 + 10 + 25 + + + + + + + + + + + polyline #518 + 145 + 30 + 300 + 100 + 1 + + + + + + + + + + + + + polyline #522 + 145 + 30 + 300 + 100 + 1 + + + + + + + + + + + + + composite #526 + 120 + 30 + 50 + 100 + + true + + oval #529 + 50 + 100 + + + + + + + + + + + oval #532 + 5 + 10 + 40 + 80 + 5 + + + + + + + + + true + + + oval #535 + 15 + 25 + 20 + 5 + + + + + + + + + true + + + + composite #538 + 273 + 51 + 48 + 44 + + true + + oval #541 + 31 + 12 + 7 + 7 + 5 + + + + + + + + + true + + + oval #544 + 34 + 17 + 10 + 10 + 5 + + + + + + + + + true + + + oval #547 + 37 + 25 + 10 + 10 + 5 + + + + + + + + + true + + + polyline #550 + 30 + 24 + 6 + 3 + 1 + + + + + + + + + + + + + arc #554 + 12 + 25 + 20 + 342.0 + 65.0 + 1 + + + + + true + + + oval #557 + 38 + 34 + 10 + 10 + 5 + + + + + + + + + true + + + polyline #560 + 35 + 40 + 5 + 0 + 1 + + + + + + + + + + + + + arc #564 + 3 + 33 + 20 + 58.0 + 1 + + + + + true + + + polyline #567 + 33 + 32 + 6 + 1 + 1 + + + + + + + + + + + + + + polyline #571 + 20 + 30 + 125 + 0 + 1 + + + + + + + + + + + + + polyline #575 + 20 + 130 + 125 + 0 + 1 + + + + + + + + + + + + + composite #579 + 239 + 95 + 50 + 30 + + true + + text #582 + ORDER + 50 + 10 + + + + + + + + + 1 + + + text #585 + SORTING + 10 + 50 + 10 + + + + + + + + + 1 + + + text #588 + APERTURE + 20 + 50 + 10 + + + + + + + + + 1 + + + + polyline #591 + 145 + 30 + 88 + 88 + 1 + + + + + 1 + + + + + + + + + polyline #595 + 146 + 41 + 88 + 88 + 1 + + + + + 1 + + + + + + + + + rectangle #599 + 500 + 21 + 60 + 19 + 1 + + + + + + + + + true + + + rectangle #602 + 455 + 40 + 145 + 80 + + + + + + + + + + + text #605 + X + 480 + 97 + 10 + 14 + true + + + related display #608 + + + motorx.opi + + m23 + + tab + Motor (small) + + + motorx_more.opi + + m23 + + tab + Motor (medium) + + + + 460 + 94 + 20 + 20 + + + + + + + text update #612 + $(P)m23.RBV + 505 + 90 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #615 + $(P)m23.VAL + 505 + 98 + 50 + 16 + + + + + + + + + 1 + false + false + + + rectangle #618 + 500 + 95 + 5 + 18 + + + + + + + + + + + + false + + $(P)m23_able.VAL + + + + + rectangle #622 + 490 + 108 + 10 + 5 + + + + + + + + + + + + false + + $(P)m23.LLS + + + + + rectangle #626 + 495 + 100 + 5 + 8 + + + + + + + + + + + + false + + $(P)m23.LVIO + + + + + rectangle #630 + 490 + 100 + 5 + 8 + + + + + + + + + + + + false + + $(P)m23.DMOV + + + + + rectangle #634 + 490 + 95 + 10 + 5 + + + + + + + + + + + + false + + $(P)m23.HLS + + + + + text #638 + Camera + 460 + 40 + 135 + + + + + 1 + + + rectangle #641 + 455 + 40 + 145 + 80 + 1 + + + + + + + + + true + + + message button #644 + + + $(P)m23.TWF + 1 + Write + + + $(P)m23.TWF + + + 575 + 90 + 20 + 15 + + + + + + + message button #647 + + + $(P)m23.TWR + 1 + Write + + + $(P)m23.TWR + - + 555 + 90 + 20 + 15 + + + + + + + text #650 + Y + 480 + 67 + 10 + 14 + true + + + related display #653 + + + motorx.opi + + m24 + + tab + Motor (small) + + + motorx_more.opi + + m24 + + tab + Motor (medium) + + + + 460 + 64 + 20 + 20 + + + + + + + text update #657 + $(P)m24.RBV + 505 + 60 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #660 + $(P)m24.VAL + 505 + 68 + 50 + 16 + + + + + + + + + 1 + false + false + + + rectangle #663 + 500 + 65 + 5 + 18 + + + + + + + + + + + + false + + $(P)m24_able.VAL + + + + + rectangle #667 + 490 + 78 + 10 + 5 + + + + + + + + + + + + false + + $(P)m24.LLS + + + + + rectangle #671 + 495 + 70 + 5 + 8 + + + + + + + + + + + + false + + $(P)m24.LVIO + + + + + rectangle #675 + 490 + 70 + 5 + 8 + + + + + + + + + + + + false + + $(P)m24.DMOV + + + + + rectangle #679 + 490 + 65 + 10 + 5 + + + + + + + + + + + + false + + $(P)m24.HLS + + + + + message button #683 + + + $(P)m24.TWF + 1 + Write + + + $(P)m24.TWF + + + 575 + 60 + 20 + 15 + + + + + + + message button #686 + + + $(P)m24.TWR + 1 + Write + + + $(P)m24.TWR + - + 555 + 60 + 20 + 15 + + + + + + + text entry #689 + $(P)m24.TWV + 555 + 73 + 40 + 14 + + + + + 1 + false + false + + + text entry #692 + $(P)m23.TWV + 555 + 103 + 40 + 14 + + + + + 1 + false + false + + + composite #695 + 425 + 40 + 32 + 80 + + true + + arc #698 + 24 + 80 + 290.0 + 140.0 + 1 + + + + + true + + + arc #701 + 8 + 24 + 80 + 110.0 + 140.0 + 1 + + + + + true + + + + polyline #704 + 295 + 102 + 25 + 37 + 1 + + + + + 1 + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/2iddMicroscope_full.bob b/opticsApp/op/bob/autoconvert/2iddMicroscope_full.bob new file mode 100644 index 0000000..1fd7af1 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/2iddMicroscope_full.bob @@ -0,0 +1,7859 @@ + + + 2iddMicroscope_full + 18 + 203 + 730 + 400 + + + + + false + 5 + + polyline #6 + 443 + 94 + 40 + 55 + 1 + + + + + 1 + + + + + + + + + rectangle #10 + 760 + + + + + + + + + + + text #13 + 2IDD X-Ray Microscope + 1 + 3 + 760 + 14 + 1 + + + polyline #16 + 19 + 754 + 3 + + + + + + + + + + + + + rectangle #20 + 360 + 30 + 60 + 100 + + + + + + + + + + + oval #23 + 387 + 68 + 10 + 25 + + + + + + + + + + + polyline #26 + 270 + 30 + 300 + 100 + 1 + + + + + + + + + + + + + polyline #30 + 270 + 30 + 300 + 100 + 1 + + + + + + + + + + + + + composite #34 + 245 + 30 + 50 + 100 + + true + + oval #37 + 50 + 100 + + + + + + + + + + + oval #40 + 5 + 10 + 40 + 80 + 5 + + + + + + + + + true + + + oval #43 + 15 + 25 + 20 + 5 + + + + + + + + + true + + + + composite #46 + 398 + 51 + 48 + 44 + + true + + oval #49 + 31 + 12 + 7 + 7 + 5 + + + + + + + + + true + + + oval #52 + 34 + 17 + 10 + 10 + 5 + + + + + + + + + true + + + oval #55 + 37 + 25 + 10 + 10 + 5 + + + + + + + + + true + + + polyline #58 + 30 + 24 + 6 + 3 + 1 + + + + + + + + + + + + + arc #62 + 12 + 25 + 20 + 342.0 + 65.0 + 1 + + + + + true + + + oval #65 + 38 + 34 + 10 + 10 + 5 + + + + + + + + + true + + + polyline #68 + 35 + 40 + 5 + 0 + 1 + + + + + + + + + + + + + arc #72 + 3 + 33 + 20 + 58.0 + 1 + + + + + true + + + polyline #75 + 33 + 32 + 6 + 1 + 1 + + + + + + + + + + + + + + polyline #79 + 145 + 30 + 125 + 0 + 1 + + + + + + + + + + + + + polyline #83 + 145 + 130 + 125 + 0 + 1 + + + + + + + + + + + + + composite #87 + 364 + 95 + 50 + 30 + + true + + text #90 + ORDER + 50 + 10 + + + + + + + + + 1 + + + text #93 + SORTING + 10 + 50 + 10 + + + + + + + + + 1 + + + text #96 + APERTURE + 20 + 50 + 10 + + + + + + + + + 1 + + + + polyline #99 + 270 + 30 + 88 + 88 + 1 + + + + + 1 + + + + + + + + + polyline #103 + 271 + 41 + 88 + 88 + 1 + + + + + 1 + + + + + + + + + composite #107 + 10 + 49 + 68 + 63 + + true + + composite #110 + 68 + 63 + + true + + polyline #113 + 3 + 55 + 50 + 0 + 1 + + + + + + + + + + + + + polyline #117 + 3 + 33 + 26 + 22 + 1 + + + + + + + + + + + + + polyline #121 + 3 + 17 + 0 + 37 + 1 + + + + + + + + + + + + + text #125 + Z + 58 + 49 + 10 + 14 + true + + + text #128 + X + 32 + 19 + 10 + 14 + true + + + text #131 + Y + 10 + 14 + true + + + + + rectangle #134 + 5 + 360 + 715 + 35 + + + + + + + + + + + rectangle #137 + 5 + 360 + 715 + 35 + 2 + + + + + + + + + true + + + text update #140 + $(P)$(T).EY + 270 + 364 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #143 + $(P)$(T).Y + 270 + 372 + 50 + 16 + + + + + + + + + 1 + false + false + + + text #146 + Y + 255 + 371 + 10 + 14 + true + + + text update #149 + $(P)$(T).EX + 150 + 364 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #152 + $(P)$(T).X + 150 + 372 + 50 + 16 + + + + + + + + + 1 + false + false + + + text #155 + X + 135 + 371 + 10 + 14 + true + + + text #158 + MOTOR LIMIT + 368 + 372 + 70 + 10 + + + + + + + + + 1 + + + + false + + $(P)$(T).LVIO + + + + + composite #162 + 30 + 364 + 70 + 20 + + true + + text #165 + Table + 20 + 50 + + + + + 1 + + + related display #168 + + + table.opi + + m27 + m28 + m29 + m30 + m31 + m32 + + tab + Table 1 (S) + + + table_full.opi + + m27 + m28 + m29 + m30 + m31 + m32 + + tab + Table 1 (L) + + + + 20 + 20 + + + + + + + + text entry #172 + $(P)$(Q):x_tweak.D + 200 + 377 + 40 + 14 + + + + + 1 + false + false + + + text entry #175 + $(P)$(Q):y_tweak.D + 320 + 377 + 40 + 14 + + + + + 1 + false + false + + + message button #178 + + + $(P)$(Q):x_dec.VAL + 1 + Write + + + $(P)$(Q):x_dec.VAL + - + 200 + 364 + 20 + 15 + + + + + + + message button #181 + + + $(P)$(Q):x_inc.VAL + 1 + Write + + + $(P)$(Q):x_inc.VAL + + + 220 + 364 + 20 + 15 + + + + + + + message button #184 + + + $(P)$(Q):y_dec.VAL + 1 + Write + + + $(P)$(Q):y_dec.VAL + - + 320 + 364 + 20 + 15 + + + + + + + message button #187 + + + $(P)$(Q):y_inc.VAL + 1 + Write + + + $(P)$(Q):y_inc.VAL + + + 340 + 364 + 20 + 15 + + + + + + + composite #190 + 45 + 340 + 60 + 20 + + true + + rectangle #193 + 1 + 59 + + + + + + + + + + + rectangle #197 + 59 + 1 + + + + + + + + + true + + + + rectangle #201 + 5 + 140 + 150 + 200 + + + + + + + + + + + rectangle #204 + 5 + 140 + 150 + 200 + 1 + + + + + + + + + true + + + text #207 + Zone Plate 1 + 5 + 140 + 150 + + + + + 1 + + + rectangle #210 + 45 + 315 + 10 + 5 + + + + + + + + + + + + false + + $(P)m22.HLS + + + + + rectangle #214 + 45 + 328 + 10 + 5 + + + + + + + + + + + + false + + $(P)m22.LLS + + + + + text update #218 + $(P)m22.RBV + 60 + 310 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #221 + $(P)m22.VAL + 60 + 319 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #224 + + + $(P)m22.TWF + 1 + Write + + + $(P)m22.TWF + + + 130 + 310 + 20 + 15 + + + + + + + message button #227 + + + $(P)m22.TWR + 1 + Write + + + $(P)m22.TWR + - + 110 + 310 + 20 + 15 + + + + + + + rectangle #230 + 55 + 315 + 5 + 18 + + + + + + + + + + + + false + + $(P)m22_able.VAL + + + + + rectangle #234 + 50 + 320 + 5 + 8 + + + + + + + + + + + + false + + $(P)m22.LVIO + + + + + rectangle #238 + 45 + 320 + 5 + 8 + + + + + + + + + + + + false + + $(P)m22.DMOV + + + + + text entry #242 + $(P)m4.TWV + 110 + 323 + 40 + 14 + + + + + 1 + false + false + + + rectangle #245 + 45 + 165 + 10 + 5 + + + + + + + + + + + + false + + $(P)m4.HLS + + + + + rectangle #249 + 45 + 178 + 10 + 5 + + + + + + + + + + + + false + + $(P)m4.LLS + + + + + text update #253 + $(P)m4.RBV + 60 + 160 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + message button #256 + + + $(P)m4.TWF + 1 + Write + + + $(P)m4.TWF + + + 130 + 160 + 20 + 15 + + + + + + + message button #259 + + + $(P)m4.TWR + 1 + Write + + + $(P)m4.TWR + - + 110 + 160 + 20 + 15 + + + + + + + rectangle #262 + 55 + 165 + 5 + 18 + + + + + + + + + + + + false + + $(P)m4_able.VAL + + + + + rectangle #266 + 50 + 170 + 5 + 8 + + + + + + + + + + + + false + + $(P)m4.LVIO + + + + + rectangle #270 + 45 + 170 + 5 + 8 + + + + + + + + + + + + false + + $(P)m4.DMOV + + + + + text entry #274 + $(P)m4.VAL + 60 + 169 + 50 + 16 + + + + + + + + + 1 + false + false + + + text entry #277 + $(P)m4.TWV + 110 + 173 + 40 + 14 + + + + + 1 + false + false + + + text update #280 + $(P)m3.RBV + 60 + 190 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #283 + $(P)m3.VAL + 60 + 199 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #286 + + + $(P)m3.TWF + 1 + Write + + + $(P)m3.TWF + + + 130 + 190 + 20 + 15 + + + + + + + message button #289 + + + $(P)m3.TWR + 1 + Write + + + $(P)m3.TWR + - + 110 + 190 + 20 + 15 + + + + + + + rectangle #292 + 55 + 195 + 5 + 18 + + + + + + + + + + + + false + + $(P)m3_able.VAL + + + + + rectangle #296 + 45 + 208 + 10 + 5 + + + + + + + + + + + + false + + $(P)m3.LLS + + + + + rectangle #300 + 50 + 200 + 5 + 8 + + + + + + + + + + + + false + + $(P)m3.LVIO + + + + + rectangle #304 + 45 + 200 + 5 + 8 + + + + + + + + + + + + false + + $(P)m3.DMOV + + + + + rectangle #308 + 45 + 195 + 10 + 5 + + + + + + + + + + + + false + + $(P)m3.HLS + + + + + text entry #312 + $(P)m3.TWV + 110 + 203 + 40 + 14 + + + + + 1 + false + false + + + text update #315 + $(P)m0.RBV + 60 + 220 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #318 + $(P)m0.VAL + 60 + 229 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #321 + + + $(P)m0.TWF + 1 + Write + + + $(P)m0.TWF + + + 130 + 220 + 20 + 15 + + + + + + + message button #324 + + + $(P)m0.TWR + 1 + Write + + + $(P)m0.TWR + - + 110 + 220 + 20 + 15 + + + + + + + rectangle #327 + 55 + 225 + 5 + 18 + + + + + + + + + + + + false + + $(P)m0_able.VAL + + + + + rectangle #331 + 45 + 238 + 10 + 5 + + + + + + + + + + + + false + + $(P)m0.LLS + + + + + rectangle #335 + 50 + 230 + 5 + 8 + + + + + + + + + + + + false + + $(P)m0.LVIO + + + + + rectangle #339 + 45 + 230 + 5 + 8 + + + + + + + + + + + + false + + $(P)m0.DMOV + + + + + rectangle #343 + 45 + 225 + 10 + 5 + + + + + + + + + + + + false + + $(P)m0.HLS + + + + + text entry #347 + $(P)m0.TWV + 110 + 233 + 40 + 14 + + + + + 1 + false + false + + + text update #350 + $(P)m0.RBV + 60 + 250 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #353 + $(P)m0.VAL + 60 + 259 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #356 + + + $(P)m0.TWF + 1 + Write + + + $(P)m0.TWF + + + 130 + 250 + 20 + 15 + + + + + + + message button #359 + + + $(P)m0.TWR + 1 + Write + + + $(P)m0.TWR + - + 110 + 250 + 20 + 15 + + + + + + + rectangle #362 + 55 + 255 + 5 + 18 + + + + + + + + + + + + false + + $(P)m0_able.VAL + + + + + rectangle #366 + 45 + 268 + 10 + 5 + + + + + + + + + + + + false + + $(P)m0.LLS + + + + + rectangle #370 + 50 + 260 + 5 + 8 + + + + + + + + + + + + false + + $(P)m0.LVIO + + + + + rectangle #374 + 45 + 260 + 5 + 8 + + + + + + + + + + + + false + + $(P)m0.DMOV + + + + + rectangle #378 + 45 + 255 + 10 + 5 + + + + + + + + + + + + false + + $(P)m0.HLS + + + + + text entry #382 + $(P)m0.TWV + 110 + 263 + 40 + 14 + + + + + 1 + false + false + + + text update #385 + $(P)m0.RBV + 60 + 280 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #388 + $(P)m0.VAL + 60 + 289 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #391 + + + $(P)m0.TWF + 1 + Write + + + $(P)m0.TWF + + + 130 + 280 + 20 + 15 + + + + + + + message button #394 + + + $(P)m0.TWR + 1 + Write + + + $(P)m0.TWR + - + 110 + 280 + 20 + 15 + + + + + + + rectangle #397 + 55 + 285 + 5 + 18 + + + + + + + + + + + + false + + $(P)m0_able.VAL + + + + + rectangle #401 + 45 + 298 + 10 + 5 + + + + + + + + + + + + false + + $(P)m0.LLS + + + + + rectangle #405 + 50 + 290 + 5 + 8 + + + + + + + + + + + + false + + $(P)m0.LVIO + + + + + rectangle #409 + 45 + 290 + 5 + 8 + + + + + + + + + + + + false + + $(P)m0.DMOV + + + + + rectangle #413 + 45 + 285 + 10 + 5 + + + + + + + + + + + + false + + $(P)m0.HLS + + + + + text entry #417 + $(P)m0.TWV + 110 + 293 + 40 + 14 + + + + + 1 + false + false + + + text #420 + Z + 30 + 317 + 15 + 14 + true + + + related display #423 + + + motorx.opi + + m22 + + tab + Motor (small) + + + motorx_more.opi + + m22 + + tab + Motor (medium) + + + + 10 + 314 + 20 + 20 + + + + + + + text #427 + Y + 30 + 167 + 15 + 14 + true + + + related display #430 + + + motorx.opi + + m4 + + tab + Motor (small) + + + motorx_more.opi + + m4 + + tab + Motor (medium) + + + + 10 + 164 + 20 + 20 + + + + + + + text #434 + X + 30 + 197 + 15 + 14 + true + + + related display #437 + + + motorx.opi + + m3 + + tab + Motor (small) + + + motorx_more.opi + + m3 + + tab + Motor (medium) + + + + 10 + 194 + 20 + 20 + + + + + + + text #441 + - + 30 + 227 + 15 + 14 + true + + + related display #444 + 10 + 224 + 20 + 20 + + + + + + + text #446 + 0Y + 30 + 227 + 15 + 14 + true + + + text #449 + - + 30 + 257 + 15 + 14 + true + + + text #452 + 0X + 30 + 257 + 15 + 14 + true + + + related display #455 + 10 + 254 + 20 + 20 + + + + + + + text #457 + - + 30 + 287 + 15 + 14 + true + + + text #460 + 0Z + 30 + 287 + 15 + 14 + true + + + related display #463 + 10 + 284 + 20 + 20 + + + + + + + composite #465 + 330 + 220 + 60 + 140 + + true + + rectangle #468 + 60 + 140 + + + + + + + + + + + rectangle #471 + 60 + 140 + 1 + + + + + + + + + true + + + + composite #474 + 199 + 340 + 60 + 20 + + true + + rectangle #477 + 1 + 59 + + + + + + + + + + + rectangle #481 + 59 + 1 + + + + + + + + + true + + + + rectangle #485 + 160 + 140 + 150 + 200 + + + + + + + + + + + rectangle #488 + 160 + 140 + 150 + 200 + 1 + + + + + + + + + true + + + text #491 + Zone Plate 2 + 160 + 140 + 150 + + + + + 1 + + + rectangle #494 + 315 + 140 + 145 + 80 + + + + + + + + + + + rectangle #497 + 315 + 140 + 145 + 80 + 1 + + + + + + + + + true + + + text #500 + OSA + 320 + 140 + 135 + + + + + 1 + + + rectangle #503 + 465 + 140 + 145 + 110 + + + + + + + + + + + text #506 + Sample + 470 + 140 + 135 + + + + + 1 + + + rectangle #509 + 465 + 140 + 145 + 110 + 1 + + + + + + + + + true + + + text #512 + Y + 490 + 197 + 10 + 14 + true + + + related display #515 + + + motorx.opi + + m14 + + tab + Motor (small) + + + motorx_more.opi + + m14 + + tab + Motor (medium) + + + + 470 + 194 + 20 + 20 + + + + + + + text update #519 + $(P)m14.RBV + 515 + 190 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #522 + $(P)m14.VAL + 515 + 198 + 50 + 16 + + + + + + + + + 1 + false + false + + + rectangle #525 + 510 + 195 + 5 + 18 + + + + + + + + + + + + false + + $(P)m14_able.VAL + + + + + rectangle #529 + 500 + 208 + 10 + 5 + + + + + + + + + + + + false + + $(P)m14.LLS + + + + + rectangle #533 + 505 + 200 + 5 + 8 + + + + + + + + + + + + false + + $(P)m14.LVIO + + + + + rectangle #537 + 500 + 200 + 5 + 8 + + + + + + + + + + + + false + + $(P)m14.DMOV + + + + + rectangle #541 + 500 + 195 + 10 + 5 + + + + + + + + + + + + false + + $(P)m14.HLS + + + + + rectangle #545 + 200 + 165 + 10 + 5 + + + + + + + + + + + + false + + $(P)m20.HLS + + + + + rectangle #549 + 200 + 178 + 10 + 5 + + + + + + + + + + + + false + + $(P)m20.LLS + + + + + text update #553 + $(P)m20.RBV + 215 + 160 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #556 + $(P)m20.VAL + 215 + 169 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #559 + + + $(P)m20.TWF + 1 + Write + + + $(P)m20.TWF + + + 285 + 160 + 20 + 15 + + + + + + + message button #562 + + + $(P)m20.TWR + 1 + Write + + + $(P)m20.TWR + - + 265 + 160 + 20 + 15 + + + + + + + rectangle #565 + 210 + 165 + 5 + 18 + + + + + + + + + + + + false + + $(P)m20_able.VAL + + + + + rectangle #569 + 205 + 170 + 5 + 8 + + + + + + + + + + + + false + + $(P)m20.LVIO + + + + + rectangle #573 + 200 + 170 + 5 + 8 + + + + + + + + + + + + false + + $(P)m20.DMOV + + + + + text entry #577 + $(P)m20.TWV + 265 + 173 + 40 + 14 + + + + + 1 + false + false + + + text update #580 + $(P)m19.RBV + 215 + 190 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #583 + $(P)m19.VAL + 215 + 199 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #586 + + + $(P)m19.TWF + 1 + Write + + + $(P)m19.TWF + + + 285 + 190 + 20 + 15 + + + + + + + message button #589 + + + $(P)m19.TWR + 1 + Write + + + $(P)m19.TWR + - + 265 + 190 + 20 + 15 + + + + + + + rectangle #592 + 210 + 195 + 5 + 18 + + + + + + + + + + + + false + + $(P)m19_able.VAL + + + + + rectangle #596 + 200 + 208 + 10 + 5 + + + + + + + + + + + + false + + $(P)m19.LLS + + + + + rectangle #600 + 205 + 200 + 5 + 8 + + + + + + + + + + + + false + + $(P)m19.LVIO + + + + + rectangle #604 + 200 + 200 + 5 + 8 + + + + + + + + + + + + false + + $(P)m19.DMOV + + + + + rectangle #608 + 200 + 195 + 10 + 5 + + + + + + + + + + + + false + + $(P)m19.HLS + + + + + text entry #612 + $(P)m19.TWV + 265 + 203 + 40 + 14 + + + + + 1 + false + false + + + text update #615 + $(P)m0.RBV + 215 + 220 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #618 + $(P)m0.VAL + 215 + 229 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #621 + + + $(P)m0.TWF + 1 + Write + + + $(P)m0.TWF + + + 285 + 220 + 20 + 15 + + + + + + + message button #624 + + + $(P)m0.TWR + 1 + Write + + + $(P)m0.TWR + - + 265 + 220 + 20 + 15 + + + + + + + rectangle #627 + 210 + 225 + 5 + 18 + + + + + + + + + + + + false + + $(P)m0_able.VAL + + + + + rectangle #631 + 200 + 238 + 10 + 5 + + + + + + + + + + + + false + + $(P)m0.LLS + + + + + rectangle #635 + 205 + 230 + 5 + 8 + + + + + + + + + + + + false + + $(P)m0.LVIO + + + + + rectangle #639 + 200 + 230 + 5 + 8 + + + + + + + + + + + + false + + $(P)m0.DMOV + + + + + rectangle #643 + 200 + 225 + 10 + 5 + + + + + + + + + + + + false + + $(P)m0.HLS + + + + + text entry #647 + $(P)m0.TWV + 265 + 233 + 40 + 14 + + + + + 1 + false + false + + + rectangle #650 + 200 + 315 + 10 + 5 + + + + + + + + + + + + false + + $(P)m18.HLS + + + + + rectangle #654 + 200 + 328 + 10 + 5 + + + + + + + + + + + + false + + $(P)m18.LLS + + + + + text update #658 + $(P)m18.RBV + 215 + 310 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #661 + $(P)m18.VAL + 215 + 319 + 50 + 16 + + + + + + + + + 1 + false + false + + + rectangle #664 + 210 + 315 + 5 + 18 + + + + + + + + + + + + false + + $(P)m18_able.VAL + + + + + rectangle #668 + 205 + 320 + 5 + 8 + + + + + + + + + + + + false + + $(P)m18.LVIO + + + + + rectangle #672 + 200 + 320 + 5 + 8 + + + + + + + + + + + + false + + $(P)m18.DMOV + + + + + message button #676 + + + $(P)m18.TWF + 1 + Write + + + $(P)m18.TWF + + + 285 + 310 + 20 + 15 + + + + + + + message button #679 + + + $(P)m18.TWR + 1 + Write + + + $(P)m18.TWR + - + 265 + 310 + 20 + 15 + + + + + + + text entry #682 + $(P)m18.TWV + 265 + 323 + 40 + 14 + + + + + 1 + false + false + + + text update #685 + $(P)m0.RBV + 215 + 280 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #688 + $(P)m0.VAL + 215 + 289 + 50 + 16 + + + + + + + + + 1 + false + false + + + rectangle #691 + 210 + 285 + 5 + 18 + + + + + + + + + + + + false + + $(P)m0_able.VAL + + + + + rectangle #695 + 200 + 298 + 10 + 5 + + + + + + + + + + + + false + + $(P)m0.LLS + + + + + rectangle #699 + 205 + 290 + 5 + 8 + + + + + + + + + + + + false + + $(P)m0.LVIO + + + + + rectangle #703 + 200 + 290 + 5 + 8 + + + + + + + + + + + + false + + $(P)m0.DMOV + + + + + rectangle #707 + 200 + 285 + 10 + 5 + + + + + + + + + + + + false + + $(P)m0.HLS + + + + + message button #711 + + + $(P)m0.TWF + 1 + Write + + + $(P)m0.TWF + + + 285 + 280 + 20 + 15 + + + + + + + message button #714 + + + $(P)m0.TWR + 1 + Write + + + $(P)m0.TWR + - + 265 + 280 + 20 + 15 + + + + + + + text entry #717 + $(P)m0.TWV + 265 + 293 + 40 + 14 + + + + + 1 + false + false + + + text update #720 + $(P)m0.RBV + 215 + 250 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #723 + $(P)m0.VAL + 215 + 259 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #726 + + + $(P)m0.TWF + 1 + Write + + + $(P)m0.TWF + + + 285 + 250 + 20 + 15 + + + + + + + message button #729 + + + $(P)m0.TWR + 1 + Write + + + $(P)m0.TWR + - + 265 + 250 + 20 + 15 + + + + + + + rectangle #732 + 210 + 255 + 5 + 18 + + + + + + + + + + + + false + + $(P)m0_able.VAL + + + + + rectangle #736 + 200 + 268 + 10 + 5 + + + + + + + + + + + + false + + $(P)m0.LLS + + + + + rectangle #740 + 205 + 260 + 5 + 8 + + + + + + + + + + + + false + + $(P)m0.LVIO + + + + + rectangle #744 + 200 + 260 + 5 + 8 + + + + + + + + + + + + false + + $(P)m0.DMOV + + + + + rectangle #748 + 200 + 255 + 10 + 5 + + + + + + + + + + + + false + + $(P)m0.HLS + + + + + text entry #752 + $(P)m0.TWV + 265 + 263 + 40 + 14 + + + + + 1 + false + false + + + text #755 + Y + 340 + 167 + 10 + 14 + true + + + related display #758 + + + motorx.opi + + m12 + + tab + Motor (small) + + + motorx_more.opi + + m12 + + tab + Motor (medium) + + + + 320 + 164 + 20 + 20 + + + + + + + text update #762 + $(P)m12.RBV + 365 + 160 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #765 + $(P)m12.VAL + 365 + 168 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #768 + + + $(P)m12.TWF + 1 + Write + + + $(P)m12.TWF + + + 435 + 160 + 20 + 15 + + + + + + + message button #771 + + + $(P)m12.TWR + 1 + Write + + + $(P)m12.TWR + - + 415 + 160 + 20 + 15 + + + + + + + rectangle #774 + 360 + 165 + 5 + 18 + + + + + + + + + + + + false + + $(P)m12_able.VAL + + + + + rectangle #778 + 350 + 178 + 10 + 5 + + + + + + + + + + + + false + + $(P)m12.LLS + + + + + rectangle #782 + 355 + 170 + 5 + 8 + + + + + + + + + + + + false + + $(P)m12.LVIO + + + + + rectangle #786 + 350 + 170 + 5 + 8 + + + + + + + + + + + + false + + $(P)m12.DMOV + + + + + rectangle #790 + 350 + 165 + 10 + 5 + + + + + + + + + + + + false + + $(P)m12.HLS + + + + + text entry #794 + $(P)m12.TWV + 415 + 173 + 40 + 14 + + + + + 1 + false + false + + + text #797 + X + 340 + 197 + 10 + 14 + true + + + related display #800 + + + motorx.opi + + m11 + + tab + Motor (small) + + + motorx_more.opi + + m11 + + tab + Motor (medium) + + + + 320 + 194 + 20 + 20 + + + + + + + text update #804 + $(P)m11.RBV + 365 + 190 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #807 + $(P)m11.VAL + 365 + 198 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #810 + + + $(P)m11.TWF + 1 + Write + + + $(P)m11.TWF + + + 435 + 190 + 20 + 15 + + + + + + + message button #813 + + + $(P)m11.TWR + 1 + Write + + + $(P)m11.TWR + - + 415 + 190 + 20 + 15 + + + + + + + rectangle #816 + 360 + 195 + 5 + 18 + + + + + + + + + + + + false + + $(P)m11_able.VAL + + + + + rectangle #820 + 350 + 208 + 10 + 5 + + + + + + + + + + + + false + + $(P)m11.LLS + + + + + rectangle #824 + 355 + 200 + 5 + 8 + + + + + + + + + + + + false + + $(P)m11.LVIO + + + + + rectangle #828 + 350 + 200 + 5 + 8 + + + + + + + + + + + + false + + $(P)m11.DMOV + + + + + rectangle #832 + 350 + 195 + 10 + 5 + + + + + + + + + + + + false + + $(P)m11.HLS + + + + + text entry #836 + $(P)m11.TWV + 415 + 203 + 40 + 14 + + + + + 1 + false + false + + + message button #839 + + + $(P)m14.TWF + 1 + Write + + + $(P)m14.TWF + + + 585 + 190 + 20 + 15 + + + + + + + message button #842 + + + $(P)m14.TWR + 1 + Write + + + $(P)m14.TWR + - + 565 + 190 + 20 + 15 + + + + + + + text #845 + Z + 490 + 167 + 10 + 14 + true + + + related display #848 + + + motorx.opi + + m0 + + tab + Motor (small) + + + motorx_more.opi + + m0 + + tab + Motor (medium) + + + + 470 + 164 + 20 + 20 + + + + + + + text update #852 + $(P)m0.RBV + 515 + 160 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #855 + $(P)m0.VAL + 515 + 168 + 50 + 16 + + + + + + + + + 1 + false + false + + + rectangle #858 + 510 + 165 + 5 + 18 + + + + + + + + + + + + false + + $(P)m0_able.VAL + + + + + rectangle #862 + 500 + 178 + 10 + 5 + + + + + + + + + + + + false + + $(P)m0.LLS + + + + + rectangle #866 + 505 + 170 + 5 + 8 + + + + + + + + + + + + false + + $(P)m0.LVIO + + + + + rectangle #870 + 500 + 170 + 5 + 8 + + + + + + + + + + + + false + + $(P)m0.DMOV + + + + + rectangle #874 + 500 + 165 + 10 + 5 + + + + + + + + + + + + false + + $(P)m0.HLS + + + + + message button #878 + + + $(P)m0.TWF + 1 + Write + + + $(P)m0.TWF + + + 585 + 160 + 20 + 15 + + + + + + + message button #881 + + + $(P)m0.TWR + 1 + Write + + + $(P)m0.TWR + - + 565 + 160 + 20 + 15 + + + + + + + text #884 + X + 490 + 227 + 10 + 14 + true + + + related display #887 + + + motorx.opi + + m13 + + tab + Motor (small) + + + motorx_more.opi + + m13 + + tab + Motor (medium) + + + + 470 + 224 + 20 + 20 + + + + + + + text update #891 + $(P)m13.RBV + 515 + 220 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #894 + $(P)m13.VAL + 515 + 228 + 50 + 16 + + + + + + + + + 1 + false + false + + + rectangle #897 + 510 + 225 + 5 + 18 + + + + + + + + + + + + false + + $(P)m13_able.VAL + + + + + rectangle #901 + 500 + 238 + 10 + 5 + + + + + + + + + + + + false + + $(P)m13.LLS + + + + + rectangle #905 + 505 + 230 + 5 + 8 + + + + + + + + + + + + false + + $(P)m13.LVIO + + + + + rectangle #909 + 500 + 230 + 5 + 8 + + + + + + + + + + + + false + + $(P)m13.DMOV + + + + + rectangle #913 + 500 + 225 + 10 + 5 + + + + + + + + + + + + false + + $(P)m13.HLS + + + + + message button #917 + + + $(P)m13.TWF + 1 + Write + + + $(P)m13.TWF + + + 585 + 220 + 20 + 15 + + + + + + + message button #920 + + + $(P)m13.TWR + 1 + Write + + + $(P)m13.TWR + - + 565 + 220 + 20 + 15 + + + + + + + text entry #923 + $(P)m0.TWV + 565 + 173 + 40 + 14 + + + + + 1 + false + false + + + text entry #926 + $(P)m14.TWV + 565 + 203 + 40 + 14 + + + + + 1 + false + false + + + text entry #929 + $(P)m13.TWV + 565 + 233 + 40 + 14 + + + + + 1 + false + false + + + text #932 + Y + 185 + 167 + 15 + 14 + true + + + related display #935 + + + motorx.opi + + m20 + + tab + Motor (small) + + + motorx_more.opi + + m20 + + tab + Motor (medium) + + + + 165 + 164 + 20 + 20 + + + + + + + text #939 + X + 185 + 197 + 15 + 14 + true + + + related display #942 + + + motorx.opi + + m19 + + tab + Motor (small) + + + motorx_more.opi + + m19 + + tab + Motor (medium) + + + + 165 + 194 + 20 + 20 + + + + + + + text #946 + - + 185 + 227 + 15 + 14 + true + + + related display #949 + 165 + 224 + 20 + 20 + + + + + + + text #951 + 0Y + 185 + 227 + 15 + 14 + true + + + text #954 + Z + 185 + 317 + 15 + 14 + true + + + related display #957 + + + motorx.opi + + m18 + + tab + Motor (small) + + + motorx_more.opi + + m18 + + tab + Motor (medium) + + + + 165 + 314 + 20 + 20 + + + + + + + text #961 + - + 185 + 287 + 15 + 14 + true + + + text #964 + 0Z + 185 + 287 + 15 + 14 + true + + + related display #967 + 165 + 284 + 20 + 20 + + + + + + + text #969 + - + 185 + 257 + 15 + 14 + true + + + text #972 + 0X + 185 + 257 + 15 + 14 + true + + + related display #975 + 165 + 254 + 20 + 20 + + + + + + + rectangle #977 + 620 + 21 + 60 + 19 + + + + + + + + + + + rectangle #980 + 620 + 21 + 60 + 19 + 1 + + + + + + + + + true + + + composite #983 + 622 + 140 + 95 + 65 + + true + + text #986 + DISABLED + 20 + 55 + 75 + 10 + + + + + true + + + text #989 + MOTOR + 20 + 45 + 75 + 10 + + + + + true + + + text #992 + SOFT LIMIT + 20 + 35 + 75 + 10 + + + + + + + + + true + + + text #995 + MOVING + 20 + 25 + 75 + 10 + + + + + + + + + true + + + text #998 + LIMIT SWITCH + 20 + 15 + 75 + 10 + + + + + + + + + true + + + rectangle #1001 + 5 + 36 + 5 + 8 + + + + + + + + + + + text #1004 + Legend: + 5 + 90 + 14 + true + + + rectangle #1007 + 5 + 17 + 10 + 5 + + + + + + + + + + + rectangle #1010 + 5 + 26 + 5 + 8 + + + + + + + + + + + rectangle #1013 + 5 + 46 + 5 + 18 + + + + + + + + + + + rectangle #1016 + 95 + 65 + 1 + + + + + + + + + true + + + + message button #1019 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + All Stop + 620 + 206 + 40 + + + + + + + + + + + rectangle #1022 + 405 + 250 + 315 + 110 + + + + + + + + + + + text #1025 + Huber 430 + 410 + 250 + 310 + + + + + 1 + + + rectangle #1028 + 405 + 250 + 315 + 110 + 1 + + + + + + + + + true + + + text update #1031 + $(P)m16.RBV + 625 + 300 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #1034 + $(P)m16.VAL + 625 + 308 + 50 + 16 + + + + + + + + + 1 + false + false + + + rectangle #1037 + 620 + 305 + 5 + 18 + + + + + + + + + + + + false + + $(P)m16_able.VAL + + + + + rectangle #1041 + 610 + 318 + 10 + 5 + + + + + + + + + + + + false + + $(P)m16.LLS + + + + + rectangle #1045 + 615 + 310 + 5 + 8 + + + + + + + + + + + + false + + $(P)m16.LVIO + + + + + rectangle #1049 + 610 + 310 + 5 + 8 + + + + + + + + + + + + false + + $(P)m16.DMOV + + + + + rectangle #1053 + 610 + 305 + 10 + 5 + + + + + + + + + + + + false + + $(P)m16.HLS + + + + + message button #1057 + + + $(P)m16.TWR + 1 + Write + + + $(P)m16.TWR + - + 675 + 300 + 20 + 15 + + + + + + + message button #1060 + + + $(P)m16.TWF + 1 + Write + + + $(P)m16.TWF + + + 695 + 300 + 20 + 15 + + + + + + + text update #1063 + $(P)m15.RBV + 625 + 270 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #1066 + $(P)m15.VAL + 625 + 278 + 50 + 16 + + + + + + + + + 1 + false + false + + + rectangle #1069 + 620 + 275 + 5 + 18 + + + + + + + + + + + + false + + $(P)m15_able.VAL + + + + + rectangle #1073 + 610 + 288 + 10 + 5 + + + + + + + + + + + + false + + $(P)m15.LLS + + + + + rectangle #1077 + 615 + 280 + 5 + 8 + + + + + + + + + + + + false + + $(P)m15.LVIO + + + + + rectangle #1081 + 610 + 280 + 5 + 8 + + + + + + + + + + + + false + + $(P)m15.DMOV + + + + + rectangle #1085 + 610 + 275 + 10 + 5 + + + + + + + + + + + + false + + $(P)m15.HLS + + + + + message button #1089 + + + $(P)m15.TWR + 1 + Write + + + $(P)m15.TWR + - + 675 + 270 + 20 + 15 + + + + + + + message button #1092 + + + $(P)m15.TWF + 1 + Write + + + $(P)m15.TWF + + + 695 + 270 + 20 + 15 + + + + + + + text update #1095 + $(P)m10.RBV + 625 + 330 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #1098 + $(P)m10.VAL + 625 + 338 + 50 + 16 + + + + + + + + + 1 + false + false + + + rectangle #1101 + 620 + 335 + 5 + 18 + + + + + + + + + + + + false + + $(P)m10_able.VAL + + + + + rectangle #1105 + 610 + 348 + 10 + 5 + + + + + + + + + + + + false + + $(P)m10.LLS + + + + + rectangle #1109 + 615 + 340 + 5 + 8 + + + + + + + + + + + + false + + $(P)m10.LVIO + + + + + rectangle #1113 + 610 + 340 + 5 + 8 + + + + + + + + + + + + false + + $(P)m10.DMOV + + + + + rectangle #1117 + 610 + 335 + 10 + 5 + + + + + + + + + + + + false + + $(P)m10.HLS + + + + + message button #1121 + + + $(P)m10.TWR + 1 + Write + + + $(P)m10.TWR + - + 675 + 330 + 20 + 15 + + + + + + + message button #1124 + + + $(P)m10.TWF + 1 + Write + + + $(P)m10.TWF + + + 695 + 330 + 20 + 15 + + + + + + + text entry #1127 + $(P)m15.TWV + 675 + 283 + 40 + 14 + + + + + 1 + false + false + + + text entry #1130 + $(P)m16.TWV + 675 + 313 + 40 + 14 + + + + + 1 + false + false + + + text entry #1133 + $(P)m10.TWV + 675 + 343 + 40 + 14 + + + + + 1 + false + false + + + text #1136 + 0X + 595 + 307 + 15 + 14 + true + + + text #1139 + - + 595 + 307 + 15 + 14 + true + + + related display #1142 + + + motorx.opi + + m16 + + tab + Motor (small) + + + motorx_more.opi + + m16 + + tab + Motor (medium) + + + + 575 + 304 + 20 + 20 + + + + + + + text #1146 + PHI + 555 + 310 + 15 + 10 + + + + + true + + + text #1149 + - + 595 + 277 + 15 + 14 + true + + + text #1152 + 0Z + 595 + 277 + 15 + 14 + true + + + related display #1155 + + + motorx.opi + + m15 + + tab + Motor (small) + + + motorx_more.opi + + m15 + + tab + Motor (medium) + + + + 575 + 274 + 20 + 20 + + + + + + + text #1159 + CHI + 555 + 280 + 15 + 10 + + + + + true + + + text #1162 + Z + 595 + 337 + 15 + 14 + true + + + related display #1165 + + + motorx.opi + + m10 + + tab + Motor (small) + + + motorx_more.opi + + m10 + + tab + Motor (medium) + + + + 575 + 334 + 20 + 20 + + + + + + + text update #1169 + $(P)m7.RBV + 460 + 300 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #1172 + $(P)m7.VAL + 460 + 308 + 50 + 16 + + + + + + + + + 1 + false + false + + + rectangle #1175 + 455 + 305 + 5 + 18 + + + + + + + + + + + + false + + $(P)m7_able.VAL + + + + + rectangle #1179 + 445 + 318 + 10 + 5 + + + + + + + + + + + + false + + $(P)m7.LLS + + + + + rectangle #1183 + 450 + 310 + 5 + 8 + + + + + + + + + + + + false + + $(P)m7.LVIO + + + + + rectangle #1187 + 445 + 310 + 5 + 8 + + + + + + + + + + + + false + + $(P)m7.DMOV + + + + + rectangle #1191 + 445 + 305 + 10 + 5 + + + + + + + + + + + + false + + $(P)m7.HLS + + + + + message button #1195 + + + $(P)m7.TWR + 1 + Write + + + $(P)m7.TWR + - + 510 + 300 + 20 + 15 + + + + + + + message button #1198 + + + $(P)m7.TWF + 1 + Write + + + $(P)m7.TWF + + + 530 + 300 + 20 + 15 + + + + + + + text update #1201 + $(P)m9.RBV + 460 + 270 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #1204 + $(P)m9.VAL + 460 + 278 + 50 + 16 + + + + + + + + + 1 + false + false + + + rectangle #1207 + 455 + 275 + 5 + 18 + + + + + + + + + + + + false + + $(P)m9_able.VAL + + + + + rectangle #1211 + 445 + 288 + 10 + 5 + + + + + + + + + + + + false + + $(P)m9.LLS + + + + + rectangle #1215 + 450 + 280 + 5 + 8 + + + + + + + + + + + + false + + $(P)m9.LVIO + + + + + rectangle #1219 + 445 + 280 + 5 + 8 + + + + + + + + + + + + false + + $(P)m9.DMOV + + + + + rectangle #1223 + 445 + 275 + 10 + 5 + + + + + + + + + + + + false + + $(P)m9.HLS + + + + + message button #1227 + + + $(P)m9.TWR + 1 + Write + + + $(P)m9.TWR + - + 510 + 270 + 20 + 15 + + + + + + + message button #1230 + + + $(P)m9.TWF + 1 + Write + + + $(P)m9.TWF + + + 530 + 270 + 20 + 15 + + + + + + + text update #1233 + $(P)m8.RBV + 460 + 330 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #1236 + $(P)m8.VAL + 460 + 338 + 50 + 16 + + + + + + + + + 1 + false + false + + + rectangle #1239 + 455 + 335 + 5 + 18 + + + + + + + + + + + + false + + $(P)m8_able.VAL + + + + + rectangle #1243 + 445 + 348 + 10 + 5 + + + + + + + + + + + + false + + $(P)m8.LLS + + + + + rectangle #1247 + 450 + 340 + 5 + 8 + + + + + + + + + + + + false + + $(P)m8.LVIO + + + + + rectangle #1251 + 445 + 340 + 5 + 8 + + + + + + + + + + + + false + + $(P)m8.DMOV + + + + + rectangle #1255 + 445 + 335 + 10 + 5 + + + + + + + + + + + + false + + $(P)m8.HLS + + + + + message button #1259 + + + $(P)m8.TWR + 1 + Write + + + $(P)m8.TWR + - + 510 + 330 + 20 + 15 + + + + + + + message button #1262 + + + $(P)m8.TWF + 1 + Write + + + $(P)m8.TWF + + + 530 + 330 + 20 + 15 + + + + + + + text entry #1265 + $(P)m9.TWV + 510 + 283 + 40 + 14 + + + + + 1 + false + false + + + text entry #1268 + $(P)m7.TWV + 510 + 313 + 40 + 14 + + + + + 1 + false + false + + + text entry #1271 + $(P)m8.TWV + 510 + 343 + 40 + 14 + + + + + 1 + false + false + + + text #1274 + - + 430 + 307 + 15 + 14 + true + + + text #1277 + 0 + 430 + 307 + 15 + 14 + true + + + related display #1280 + + + motorx.opi + + m7 + + tab + Motor (small) + + + motorx_more.opi + + m7 + + tab + Motor (medium) + + + + 410 + 304 + 20 + 20 + + + + + + + text #1284 + X + 430 + 277 + 15 + 14 + true + + + related display #1287 + + + motorx.opi + + m9 + + tab + Motor (small) + + + motorx_more.opi + + m9 + + tab + Motor (medium) + + + + 410 + 274 + 20 + 20 + + + + + + + text #1291 + - + 430 + 337 + 15 + 14 + true + + + text #1294 + 20 + 430 + 337 + 15 + 14 + true + + + related display #1297 + + + motorx.opi + + m8 + + tab + Motor (small) + + + motorx_more.opi + + m8 + + tab + Motor (medium) + + + + 410 + 334 + 20 + 20 + + + + + + + arc #1301 + 545 + 40 + 24 + 80 + 290.0 + 140.0 + 1 + + + + + true + + + arc #1304 + 553 + 40 + 24 + 80 + 110.0 + 140.0 + 1 + + + + + true + + + rectangle #1307 + 575 + 40 + 145 + 80 + + + + + + + + + + + text #1310 + X + 600 + 97 + 10 + 14 + true + + + related display #1313 + + + motorx.opi + + m23 + + tab + Motor (small) + + + motorx_more.opi + + m23 + + tab + Motor (medium) + + + + 580 + 94 + 20 + 20 + + + + + + + text update #1317 + $(P)m23.RBV + 625 + 90 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #1320 + $(P)m23.VAL + 625 + 98 + 50 + 16 + + + + + + + + + 1 + false + false + + + rectangle #1323 + 620 + 95 + 5 + 18 + + + + + + + + + + + + false + + $(P)m23_able.VAL + + + + + rectangle #1327 + 610 + 108 + 10 + 5 + + + + + + + + + + + + false + + $(P)m23.LLS + + + + + rectangle #1331 + 615 + 100 + 5 + 8 + + + + + + + + + + + + false + + $(P)m23.LVIO + + + + + rectangle #1335 + 610 + 100 + 5 + 8 + + + + + + + + + + + + false + + $(P)m23.DMOV + + + + + rectangle #1339 + 610 + 95 + 10 + 5 + + + + + + + + + + + + false + + $(P)m23.HLS + + + + + text #1343 + Camera + 580 + 40 + 135 + + + + + 1 + + + rectangle #1346 + 575 + 40 + 145 + 80 + 1 + + + + + + + + + true + + + message button #1349 + + + $(P)m23.TWF + 1 + Write + + + $(P)m23.TWF + + + 695 + 90 + 20 + 15 + + + + + + + message button #1352 + + + $(P)m23.TWR + 1 + Write + + + $(P)m23.TWR + - + 675 + 90 + 20 + 15 + + + + + + + text #1355 + Y + 600 + 67 + 10 + 14 + true + + + related display #1358 + + + motorx.opi + + m24 + + tab + Motor (small) + + + motorx_more.opi + + m24 + + tab + Motor (medium) + + + + 580 + 64 + 20 + 20 + + + + + + + text update #1362 + $(P)m24.RBV + 625 + 60 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #1365 + $(P)m24.VAL + 625 + 68 + 50 + 16 + + + + + + + + + 1 + false + false + + + rectangle #1368 + 620 + 65 + 5 + 18 + + + + + + + + + + + + false + + $(P)m24_able.VAL + + + + + rectangle #1372 + 610 + 78 + 10 + 5 + + + + + + + + + + + + false + + $(P)m24.LLS + + + + + rectangle #1376 + 615 + 70 + 5 + 8 + + + + + + + + + + + + false + + $(P)m24.LVIO + + + + + rectangle #1380 + 610 + 70 + 5 + 8 + + + + + + + + + + + + false + + $(P)m24.DMOV + + + + + rectangle #1384 + 610 + 65 + 10 + 5 + + + + + + + + + + + + false + + $(P)m24.HLS + + + + + message button #1388 + + + $(P)m24.TWF + 1 + Write + + + $(P)m24.TWF + + + 695 + 60 + 20 + 15 + + + + + + + message button #1391 + + + $(P)m24.TWR + 1 + Write + + + $(P)m24.TWR + - + 675 + 60 + 20 + 15 + + + + + + + text entry #1394 + $(P)m24.TWV + 675 + 73 + 40 + 14 + + + + + 1 + false + false + + + text entry #1397 + $(P)m23.TWV + 675 + 103 + 40 + 14 + + + + + 1 + false + false + + + related display #1400 + + + 2iddMicroscope.opi + + m27 + m28 + m29 + m30 + m31 + m32 + + replace + Microscope (small) + + + Less + 532 + 367 + 50 + 20 + + + + + + diff --git a/opticsApp/op/bob/autoconvert/2postMirror.bob b/opticsApp/op/bob/autoconvert/2postMirror.bob new file mode 100644 index 0000000..722dc99 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/2postMirror.bob @@ -0,0 +1,2184 @@ + + + 2postMirror + 263 + 27 + 460 + 290 + + + + + false + 5 + + rectangle #6 + 350 + 225 + 105 + 38 + + + + + + + + + + + rectangle #9 + 235 + 225 + 105 + 38 + + + + + + + + + + + rectangle #12 + 125 + 225 + 105 + 38 + + + + + + + + + + + rectangle #15 + 10 + 110 + 106 + 155 + 2 + + + + + + + + + true + + + composite #18 + 140 + 112 + 70 + 20 + + true + + text #21 + Y + 10 + + + + + 1 + + + text #24 + AVERAGE + 10 + 8 + 60 + 12 + + + + + true + + + + text update #27 + $(P)$(Q)t2.D + 128 + 145 + + + + + + + + + + + + + 1 + false + false + + + text entry #30 + $(P)$(Q)avg.VAL + 128 + 165 + 25 + + + + + + + + + 1 + false + false + + + message button #33 + + + $(P)$(Q)avg_tweak.A + 1 + Write + + + $(P)$(Q)avg_tweak.A + < + 128 + 205 + 20 + 20 + + + + + + + text entry #36 + $(P)$(Q)avg_tweakVal + 148 + 205 + 60 + + + + + + + + + 1 + false + false + + + message button #39 + + + $(P)$(Q)avg_tweak.B + 1 + Write + + + $(P)$(Q)avg_tweak.B + > + 208 + 205 + 20 + 20 + + + + + + + text update #42 + $(P)$(Q)t3.G + 128 + 190 + 14 + + + + + + + + + 1 + false + false + + + text update #45 + $(P)$(Q)t3.H + 128 + 130 + 14 + + + + + + + + + 1 + false + false + + + text update #48 + $(P)$(Q)avg.EGU + 200 + 115 + 20 + 14 + + + + + + + + + 1 + false + false + + + text #51 + Angle + 237 + 112 + 60 + + + + + 1 + + + text update #54 + $(P)$(Q)t2.C + 237 + 145 + + + + + + + + + + + + + 1 + false + false + + + text entry #57 + $(P)$(Q)angl.VAL + 237 + 165 + 25 + + + + + + + + + 1 + false + false + + + message button #60 + + + $(P)$(Q)angl_tweak.A + 1 + Write + + + $(P)$(Q)angl_tweak.A + < + 237 + 205 + 20 + 20 + + + + + + + text entry #63 + $(P)$(Q)angl_tweakVal + 257 + 205 + 60 + + + + + + + + + 1 + false + false + + + message button #66 + + + $(P)$(Q)angl_tweak.B + 1 + Write + + + $(P)$(Q)angl_tweak.B + > + 317 + 205 + 20 + 20 + + + + + + + message button #69 + + + $(P)$(Q)up_tweak.A + 1 + Write + + + $(P)$(Q)up_tweak.A + < + 352 + 205 + 20 + 20 + + + + + + + text entry #72 + $(P)$(Q)up_tweakVal + 372 + 205 + 60 + + + + + + + + + 1 + false + false + + + message button #75 + + + $(P)$(Q)up_tweak.B + 1 + Write + + + $(P)$(Q)up_tweak.B + > + 432 + 205 + 20 + 20 + + + + + + + text update #78 + $(P)$(Q)t3.E + 238 + 190 + 14 + + + + + + + + + 1 + false + false + + + text update #81 + $(P)$(Q)t3.F + 238 + 130 + 14 + + + + + + + + + 1 + false + false + + + text update #84 + $(P)$(Q)angl.EGU + 297 + 115 + 40 + 14 + + + + + + + + + 1 + false + false + + + composite #87 + 15 + 112 + 70 + 20 + + true + + text #90 + Y + 10 + + + + + 1 + + + text #93 + DOWNSTREAM + 10 + 8 + 60 + 12 + + + + + true + + + + text update #96 + $(P)$(Q)t2.A + 13 + 145 + + + + + + + + + + + + + 1 + false + false + + + text entry #99 + $(P)$(Q)dn.VAL + 13 + 165 + 25 + + + + + + + + + 1 + false + false + + + message button #102 + + + $(P)$(Q)dn_tweak.A + 1 + Write + + + $(P)$(Q)dn_tweak.A + < + 13 + 205 + 20 + 20 + + + + + + + text entry #105 + $(P)$(Q)dn_tweakVal + 33 + 205 + 60 + + + + + + + + + 1 + false + false + + + message button #108 + + + $(P)$(Q)dn_tweak.B + 1 + Write + + + $(P)$(Q)dn_tweak.B + > + 93 + 205 + 20 + 20 + + + + + + + text update #111 + $(P)$(mDn).LLM + 13 + 190 + 14 + + + + + + + + + 1 + false + false + + + text update #114 + $(P)$(mDn).HLM + 13 + 130 + 14 + + + + + + + + + 1 + false + false + + + rectangle #117 + 10 + 225 + 105 + 38 + + + + + + + + + + + text update #120 + $(P)$(mDn).EGU + 90 + 115 + 20 + 14 + + + + + + + + + 1 + false + false + + + composite #123 + 360 + 112 + 70 + 20 + + true + + text #126 + Y + 10 + + + + + true + + + text #129 + UPSTREAM + 10 + 8 + 60 + 12 + + + + + true + + + + text update #132 + $(P)$(Q)t2.B + 352 + 145 + + + + + + + + + + + + + 1 + false + false + + + text entry #135 + $(P)$(Q)up.VAL + 352 + 165 + 25 + + + + + + + + + 1 + false + false + + + text update #138 + $(P)$(mUp).LLM + 353 + 190 + 14 + + + + + + + + + 1 + false + false + + + text update #141 + $(P)$(mUp).HLM + 353 + 130 + 14 + + + + + + + + + 1 + false + false + + + text update #144 + $(P)$(mUp).EGU + 424 + 115 + 20 + 14 + + + + + + + + + 1 + false + false + + + composite #147 + 118 + 35 + 276 + 71 + + true + + polyline #150 + 17 + 234 + 33 + 7 + + + + + + + + + + + + + polyline #154 + 120 + 28 + 156 + 2 + 2 + + + + + + + + + + + + + composite #158 + 17 + 25 + 10 + 24 + + true + + polyline #161 + 0 + 24 + 1 + + + + + + + + + + + + + polyline #165 + 10 + 0 + 1 + + + + + + + + + + + + + polyline #169 + 21 + 5 + 0 + 1 + + + + + + + + + + + + + polyline #173 + 15 + 5 + 0 + 1 + + + + + + + + + + + + + polyline #177 + 18 + 5 + 0 + 1 + + + + + + + + + + + + + polyline #181 + 3 + 5 + 0 + 1 + + + + + + + + + + + + + polyline #185 + 6 + 5 + 0 + 1 + + + + + + + + + + + + + polyline #189 + 9 + 5 + 0 + 1 + + + + + + + + + + + + + polyline #193 + 12 + 10 + 0 + 1 + + + + + + + + + + + + + polyline #197 + 24 + 10 + 0 + 1 + + + + + + + + + + + + + + composite #201 + 120 + 37 + 10 + 24 + + true + + polyline #204 + 0 + 24 + 1 + + + + + + + + + + + + + polyline #208 + 10 + 0 + 1 + + + + + + + + + + + + + polyline #212 + 21 + 5 + 0 + 1 + + + + + + + + + + + + + polyline #216 + 15 + 5 + 0 + 1 + + + + + + + + + + + + + polyline #220 + 18 + 5 + 0 + 1 + + + + + + + + + + + + + polyline #224 + 3 + 5 + 0 + 1 + + + + + + + + + + + + + polyline #228 + 6 + 5 + 0 + 1 + + + + + + + + + + + + + polyline #232 + 9 + 5 + 0 + 1 + + + + + + + + + + + + + polyline #236 + 12 + 10 + 0 + 1 + + + + + + + + + + + + + polyline #240 + 24 + 10 + 0 + 1 + + + + + + + + + + + + + + composite #244 + 210 + 47 + 10 + 24 + + true + + polyline #247 + 0 + 24 + 1 + + + + + + + + + + + + + polyline #251 + 10 + 0 + 1 + + + + + + + + + + + + + polyline #255 + 21 + 5 + 0 + 1 + + + + + + + + + + + + + polyline #259 + 15 + 5 + 0 + 1 + + + + + + + + + + + + + polyline #263 + 18 + 5 + 0 + 1 + + + + + + + + + + + + + polyline #267 + 3 + 5 + 0 + 1 + + + + + + + + + + + + + polyline #271 + 6 + 5 + 0 + 1 + + + + + + + + + + + + + polyline #275 + 9 + 5 + 0 + 1 + + + + + + + + + + + + + polyline #279 + 12 + 10 + 0 + 1 + + + + + + + + + + + + + polyline #283 + 24 + 10 + 0 + 1 + + + + + + + + + + + + + + polyline #287 + 13 + 107 + 29 + 2 + + + + + + + + + + + + + composite #291 + 173 + 14 + 101 + 10 + + true + + polyline #294 + 5 + 5 + 1 + + + + + + + + + + + + + + + text #298 + INCIDENT BEAM + 21 + 80 + 10 + + + + + + + + + true + + + + polyline #301 + 13 + 21 + 3 + 2 + + + + + + + + + + + + + arc #305 + 172 + 23 + 20 + 20 + 328.0 + 65.0 + 1 + + + + + true + + + + polyline #308 + 59 + 72 + 76 + 38 + 1 + + + + + + + + + + + + + + + polyline #312 + 173 + 84 + 65 + 26 + 1 + + + + + + + + + + + + + + + polyline #316 + 337 + 93 + 66 + 18 + 1 + + + + + + + + + + + + + + + polyline #320 + 283 + 67 + 27 + 43 + 1 + + + + + + + + + + + + + + + choice button #324 + $(P)$(Q)set.VAL + 270 + 78 + 21 + + + + + false + + Item 1 + Item 2 + + + + text #327 + length + 240 + 270 + 60 + + + + + true + + + text update #330 + $(P)$(Q)length.EGU + 350 + 273 + 15 + 14 + + + + + + + + + 1 + false + false + + + related display #333 + + + motorx.opi + + $(mUp) + + tab + Up motor + + + motorx.opi + + $(mDn) + + tab + Dn motor + + + More + 150 + 270 + 40 + 20 + + + + + + + + + + + message button #337 + + + $(P)$(Q)sync.PROC + 1 + Write + + + $(P)$(Q)sync.PROC + Sync + 90 + 270 + 50 + 21 + + + + + + + text update #340 + $(P)$(Q)length.VAL + 300 + 273 + 45 + 14 + + + + + + + + + 1 + false + false + + + message button #343 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + All Stop + 380 + 270 + 79 + 21 + + + + + + + + + + + rectangle #346 + 125 + 110 + 106 + 155 + 2 + + + + + + + + + true + + + rectangle #349 + 235 + 110 + 106 + 155 + 2 + + + + + + + + + true + + + rectangle #352 + 350 + 110 + 106 + 155 + 2 + + + + + + + + + true + + + related display #355 + + + scanParmsCustom.opi + + $(Q)avg + $(Q)avg.EGU + $(Q)avg + $(Q)avg + + tab + Setup scan parameters + + + SCAN CONTROL + 131 + 228 + 94 + 16 + + + + + + + + + + + related display #358 + + + scanParmsCustom.opi + + $(Q)dn + $(Q)dn.EGU + $(Q)dn + $(Q)dn + + tab + Setup scan parameters + + + SCAN CONTROL + 16 + 228 + 94 + 16 + + + + + + + + + + + related display #361 + + + scanParmsCustom.opi + + $(Q)angl + $(Q)angl.EGU + $(Q)angl + $(Q)angl + + tab + Setup scan parameters + + + SCAN CONTROL + 239 + 228 + 94 + 16 + + + + + + + + + + + related display #364 + + + scanParmsCustom.opi + + $(Q)up + $(Q)up.EGU + $(Q)up + $(Q)up + + tab + Setup scan parameters + + + SCAN CONTROL + 356 + 228 + 94 + 16 + + + + + + + + + + + message button #367 + + + $(P)$(Q)avg:scanParms.LOAD + 1 + Write + + + $(P)$(Q)avg:scanParms.LOAD + LD + 131 + 245 + 22 + 16 + + + + + + + message button #370 + + + $(P)$(Q)avg:scanParms.GO + 1 + Write + + + $(P)$(Q)avg:scanParms.GO + GO + 158 + 245 + 22 + 16 + + + + + + + message button #373 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + ABORT + 185 + 245 + 40 + 16 + + + + + + + + + + + message button #376 + + + $(P)$(Q)angl:scanParms.LOAD + 1 + Write + + + $(P)$(Q)angl:scanParms.LOAD + LD + 241 + 245 + 22 + 16 + + + + + + + message button #379 + + + $(P)$(Q)angl:scanParms.GO + 1 + Write + + + $(P)$(Q)angl:scanParms.GO + GO + 268 + 245 + 22 + 16 + + + + + + + message button #382 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + ABORT + 295 + 245 + 40 + 16 + + + + + + + + + + + message button #385 + + + $(P)$(Q)up:scanParms.LOAD + 1 + Write + + + $(P)$(Q)up:scanParms.LOAD + LD + 356 + 245 + 22 + 16 + + + + + + + message button #388 + + + $(P)$(Q)up:scanParms.GO + 1 + Write + + + $(P)$(Q)up:scanParms.GO + GO + 383 + 245 + 22 + 16 + + + + + + + message button #391 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + ABORT + 410 + 245 + 40 + 16 + + + + + + + + + + + message button #394 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + ABORT + 70 + 245 + 40 + 16 + + + + + + + + + + + message button #397 + + + $(P)$(Q)dn:scanParms.GO + 1 + Write + + + $(P)$(Q)dn:scanParms.GO + GO + 43 + 245 + 22 + 16 + + + + + + + message button #400 + + + $(P)$(Q)dn:scanParms.LOAD + 1 + Write + + + $(P)$(Q)dn:scanParms.LOAD + LD + 16 + 245 + 22 + 16 + + + + + + + rectangle #403 + 460 + 31 + + + + + + + + + + + text entry #406 + $(P)mirror-$(Q).DESC + 2 + 350 + 30 + + + + + + + + + + + + + 1 + false + false + + + text #409 + Mirror $(Q) + 355 + 4 + 10 + + + + + 1 + + + polyline #412 + 31 + 461 + 3 + + + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/2slit.bob b/opticsApp/op/bob/autoconvert/2slit.bob new file mode 100644 index 0000000..26b51e2 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/2slit.bob @@ -0,0 +1,1066 @@ + + + 2slit + 44 + 34 + 435 + 205 + + + + + false + 5 + + rectangle #6 + 7 + 42 + 102 + + + + + + + + + + + rectangle #9 + 111 + 42 + 102 + + + + + + + + + + + rectangle #12 + 222 + 42 + 102 + + + + + + + + + + + rectangle #15 + 326 + 42 + 102 + + + + + + + + + + + text #18 + $(SLIT) - + 5 + 42 + 106 + + + + + 1 + + + choice button #21 + $(P)$(SLIT)set.VAL + 185 + 78 + 21 + + + + + false + + Item 1 + Item 2 + + + + rectangle #24 + 324 + 40 + 106 + 145 + 2 + + + + + + + + + true + + + text #27 + Center + 326 + 42 + 106 + + + + + 1 + + + text update #30 + $(P)$(SLIT)t2.D + 332 + 75 + 90 + + + + + + + + + + + + + 1 + false + false + + + message button #34 + + + $(P)$(SLIT)center_tweak.A + 1 + Write + + + $(P)$(SLIT)center_tweak.A + - + 327 + 135 + 20 + 20 + + + + + + + text entry #37 + $(P)$(SLIT)center_tweakVal.VAL + 347 + 135 + 60 + + + + + + + + + 1 + false + false + + + message button #41 + + + $(P)$(SLIT)center_tweak.B + 1 + Write + + + $(P)$(SLIT)center_tweak.B + + + 407 + 135 + 20 + 20 + + + + + + + text update #44 + $(P)$(SLIT)center.DRVL + 327 + 120 + 14 + + + + + + + + + 1 + false + 1 + false + + + text update #48 + $(P)$(SLIT)center.DRVH + 327 + 60 + 14 + + + + + + + + + 1 + false + 1 + false + + + rectangle #52 + 220 + 40 + 106 + 145 + 2 + + + + + + + + + true + + + text #55 + Size + 220 + 42 + 106 + + + + + 1 + + + text update #58 + $(P)$(SLIT)t2.C + 227 + 75 + 90 + + + + + + + + + + + + + 1 + false + false + + + text entry #62 + $(P)$(SLIT)size.VAL + 222 + 95 + 25 + + + + + + + + + 1 + false + false + + + message button #66 + + + $(P)$(SLIT)size_tweak.A + 1 + Write + + + $(P)$(SLIT)size_tweak.A + - + 222 + 136 + 20 + 20 + + + + + + + text entry #69 + $(P)$(SLIT)size_tweakVal.VAL + 242 + 136 + 60 + + + + + + + + + 1 + false + false + + + message button #73 + + + $(P)$(SLIT)size_tweak.B + 1 + Write + + + $(P)$(SLIT)size_tweak.B + + + 302 + 136 + 20 + 20 + + + + + + + text update #76 + $(P)$(SLIT)size.DRVL + 223 + 120 + 14 + + + + + + + + + 1 + false + 1 + false + + + text update #80 + $(P)$(SLIT)size.DRVH + 223 + 60 + 14 + + + + + + + + + 1 + false + 1 + false + + + rectangle #84 + 109 + 40 + 106 + 145 + 2 + + + + + + + + + true + + + text #87 + $(SLIT) + + 109 + 42 + 106 + + + + + 1 + + + text update #90 + $(P)$(SLIT)t2.A + 117 + 75 + 90 + + + + + + + + + + + + + 1 + false + false + + + text entry #94 + $(P)$(SLIT)xp.VAL + 112 + 95 + 25 + + + + + + + + + 1 + false + false + + + message button #98 + + + $(P)$(SLIT)xp_tweak.A + 1 + Write + + + $(P)$(SLIT)xp_tweak.A + - + 112 + 135 + 20 + 20 + + + + + + + text entry #101 + $(P)$(SLIT)xp_tweakVal.VAL + 132 + 135 + 60 + + + + + + + + + 1 + false + false + + + message button #105 + + + $(P)$(SLIT)xp_tweak.B + 1 + Write + + + $(P)$(SLIT)xp_tweak.B + + + 192 + 135 + 20 + 20 + + + + + + + text update #108 + $(P)$(SLIT)xp.DRVL + 112 + 120 + 14 + + + + + + + + + 1 + false + 1 + false + + + text update #112 + $(P)$(SLIT)xp.DRVH + 112 + 60 + 14 + + + + + + + + + 1 + false + 1 + false + + + rectangle #116 + 5 + 40 + 106 + 145 + 2 + + + + + + + + + true + + + text update #119 + $(P)$(SLIT)t2.B + 12 + 75 + 90 + + + + + + + + + + + + + 1 + false + false + + + text entry #123 + $(P)$(SLIT)xn.VAL + 7 + 95 + 25 + + + + + + + + + 1 + false + false + + + message button #127 + + + $(P)$(SLIT)xn_tweak.A + 1 + Write + + + $(P)$(SLIT)xn_tweak.A + - + 7 + 136 + 20 + 20 + + + + + + + text entry #130 + $(P)$(SLIT)xn_tweakVal.VAL + 27 + 136 + 60 + + + + + + + + + 1 + false + false + + + message button #134 + + + $(P)$(SLIT)xn_tweak.B + 1 + Write + + + $(P)$(SLIT)xn_tweak.B + + + 87 + 136 + 20 + 20 + + + + + + + text update #137 + $(P)$(SLIT)xn.DRVL + 8 + 120 + 14 + + + + + + + + + 1 + false + 1 + false + + + text update #141 + $(P)$(SLIT)xn.DRVH + 8 + 60 + 14 + + + + + + + + + 1 + false + 1 + false + + + related display #145 + + + scanParmsCustom.opi + + $(SLIT)n + $(SLIT)xn.EGU + $(SLIT)xn + $(SLIT)n + + tab + Setup scan parameters + + + ScanParms + 27 + 160 + 60 + 16 + + + + + + + + + + + message button #148 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + All Stop + 350 + 185 + 79 + 21 + + + + + + + + + + + message button #151 + + + $(P)$(SLIT)sync.PROC + 1 + Write + + + $(P)$(SLIT)sync.PROC + Sync to motors + 85 + 185 + 110 + 21 + + + + + + + text #154 + - + 7 + 5 + 21 + + + + + true + + + related display #157 + + + motorx_more.opi + + $(mXn) + + tab + X- motor + + + motorx_more.opi + + $(mXp) + + tab + X+ motor + + + More + 305 + 185 + 40 + 21 + + + + + + + + + + + related display #161 + + + scanParmsCustom.opi + + $(SLIT)center + $(SLIT)center.EGU + $(SLIT)center + $(SLIT)center + + tab + Setup scan parameters + + + ScanParms + 347 + 160 + 60 + 16 + + + + + + + + + + + related display #164 + + + scanParmsCustom.opi + + $(SLIT)size + $(SLIT)size.EGU + $(SLIT)size + $(SLIT)size + + tab + Setup scan parameters + + + ScanParms + 242 + 160 + 60 + 16 + + + + + + + + + + + related display #167 + + + scanParmsCustom.opi + + $(SLIT)p + $(SLIT)xp.EGU + $(SLIT)xp + $(SLIT)p + + tab + Setup scan parameters + + + ScanParms + 132 + 160 + 60 + 16 + + + + + + + + + + + text entry #170 + $(P)$(SLIT)center.VAL + 327 + 95 + 25 + + + + + + + + + 1 + false + false + + + text #174 + LOOKING UPSTREAM + 10 + 25 + 10 + + + + + 1 + + + text #177 + + + -1 + -3 + 5 + 21 + + + + + true + + + bar #180 + $(P)$(SLIT)xp.VAL + 10 + 3 + 420 + 10 + + + composite #184 + 10 + 13 + 420 + 10 + + true + + + + false + + $(P)$(SLIT)CoordSys + + + + bar #187 + $(P)$(SLIT)xn.VAL + 420 + 10 + + + + composite #192 + 10 + 13 + 420 + 10 + + true + + + + false + + $(P)$(SLIT)CoordSys + + + + bar #195 + $(P)$(SLIT)xn.VAL + 420 + 10 + + + + text update #200 + $(P)$(SLIT)CoordSys + 245 + 25 + 12 + + + + + + + + + + + + + 1 + false + false + + + text #204 + COORDINATE SYSTEM: + 130 + 25 + 110 + 10 + + + + + 1 + + diff --git a/opticsApp/op/bob/autoconvert/2slit_soft.bob b/opticsApp/op/bob/autoconvert/2slit_soft.bob new file mode 100644 index 0000000..fe2e651 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/2slit_soft.bob @@ -0,0 +1,2823 @@ + + + 2slit_soft + 103 + 302 + 500 + 260 + + + + + false + 5 + + text #6 + Calib: + 1 + 164 + 45 + 16 + + + + + true + + + text #9 + Calib: + 163 + 45 + 16 + + + + + + + + + true + + + + false + + $(P)$(SLIT)xn.SET + + + + + text update #13 + $(P)$(SLIT)xn.DESC + 25 + 116 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #17 + 6 + 91 + 104 + 31 + + + + + + + + + + + + false + + $(P)$(SLIT)xn.DMOV + + + + + rectangle #21 + 6 + 91 + 104 + 31 + + + + + + + + + + + + false + + $(P)$(SLIT)xn.LVIO + + + + + rectangle #25 + 122 + 116 + 40 + + + + + + + + + + + text #28 + Moving + 28 + 146 + 60 + 15 + + + + + + + + + 1 + + + + false + + $(P)$(SLIT)xn.DMOV + + + + + text #32 + Calibrate + 28 + 152 + 60 + 10 + + + + + + + + + 1 + + + + false + + $(P)$(SLIT)xn.SET + + + + + message button #36 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + Abort + 74 + 203 + 40 + 20 + + + + + + + + + + + message button #39 + + + $(P)$(SLIT)xn:scanParms.GO + 1 + Write + + + $(P)$(SLIT)xn:scanParms.GO + Go + 52 + 203 + 21 + 20 + + + + + + + rectangle #42 + 201 + 116 + 24 + + + + + + + + + + + text #45 + Scan + 207 + 30 + 13 + + + + + 1 + + + message button #48 + + + $(P)$(SLIT)xn:scanParms.LOAD + 1 + Write + + + $(P)$(SLIT)xn:scanParms.LOAD + Ld + 30 + 203 + 21 + 20 + + + + + + + message button #51 + + + $(P)$(SLIT)xn.STOP + 1 + Write + + + $(P)$(SLIT)xn.STOP + STOP + 60 + 181 + 53 + 20 + + + + + + + + + + + related display #54 + + + motorx_tiny.opi + + $(SLIT)xn + + tab + $(SLIT)xn (Tiny) + + + motorx_help.opi + + $(SLIT)xn + + tab + $(SLIT)xn (Help) + + + motorx_more.opi + + $(SLIT)xn + + tab + $(SLIT)xn (Medium) + + + motorx_setup.opi + + $(SLIT)xn + + tab + $(SLIT)xn (Setup) + + + scanParms.opi + + $(SLIT)xn + $(SLIT)xn + + tab + Scan Parameters + + + motorx_all.opi + + $(SLIT)xn + + tab + $(SLIT)xn (Debug) + + + More + 5 + 181 + 40 + 20 + + + + + + + + + + + message button #62 + + + $(P)$(SLIT)xn.TWR + 1 + Write + + + $(P)$(SLIT)xn.TWR + < + 2 + 124 + 25 + 36 + + + + + + + text entry #65 + $(P)$(SLIT)xn.TWV + 28 + 124 + 60 + + + + + + + + + 1 + false + false + + + message button #69 + + + $(P)$(SLIT)xn.TWF + 1 + Write + + + $(P)$(SLIT)xn.TWF + > + 89 + 124 + 25 + 36 + + + + + + + text entry #72 + $(P)$(SLIT)xn.VAL + 9 + 94 + 98 + 25 + + + + + + + + + 1 + false + false + + + rectangle #76 + 70 + 6 + 50 + + + + + + + + + + + + false + + $(P)$(SLIT)xn.LLS + + + + + rectangle #80 + 110 + 70 + 6 + 50 + + + + + + + + + + + + false + + $(P)$(SLIT)xn.HLS + + + + + text update #84 + $(P)$(SLIT)xn.EGU + 57 + 116 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #88 + 45 + 116 + 12 + + + + + + + + + + + text #91 + ($(P)$(SLIT)xn) + 46 + 116 + 10 + + + + + + + + + 1 + + + rectangle #94 + 7 + 66 + 102 + 26 + 2 + + + + + + + + + true + + + + false + + $(P)$(SLIT)xn.SET + + + + + rectangle #98 + 9 + 68 + 98 + 21 + 2 + + + + + + + + + true + + + + false + + $(P)$(SLIT)xn.SET + + + + + text update #102 + $(P)$(SLIT)xn.RBV + 11 + 70 + 94 + 17 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #106 + Soft limit + 28 + 144 + 60 + 10 + + + + + + + + + 1 + + + + false + + $(P)$(SLIT)xn.LVIO + + + + + choice button #110 + $(P)$(SLIT)xn.SET + 45 + 162 + 71 + 20 + + + + + false + + Item 1 + Item 2 + + + + text #113 + Calib: + 126 + 164 + 45 + 16 + + + + + true + + + text #116 + Calib: + 125 + 163 + 45 + 16 + + + + + + + + + true + + + + false + + $(P)$(SLIT)xp.SET + + + + + text update #120 + $(P)$(SLIT)xp.DESC + 125 + 25 + 116 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #124 + 131 + 91 + 104 + 31 + + + + + + + + + + + + false + + $(P)$(SLIT)xp.DMOV + + + + + rectangle #128 + 131 + 91 + 104 + 31 + + + + + + + + + + + + false + + $(P)$(SLIT)xp.LVIO + + + + + rectangle #132 + 125 + 122 + 116 + 40 + + + + + + + + + + + text #135 + Moving + 153 + 146 + 60 + 15 + + + + + + + + + 1 + + + + false + + $(P)$(SLIT)xp.DMOV + + + + + text #139 + Calibrate + 153 + 152 + 60 + 10 + + + + + + + + + 1 + + + + false + + $(P)$(SLIT)xp.SET + + + + + message button #143 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + Abort + 199 + 203 + 40 + 20 + + + + + + + + + + + message button #146 + + + $(P)$(SLIT)xp:scanParms.GO + 1 + Write + + + $(P)$(SLIT)xp:scanParms.GO + Go + 177 + 203 + 21 + 20 + + + + + + + rectangle #149 + 125 + 201 + 116 + 24 + + + + + + + + + + + text #152 + Scan + 125 + 207 + 30 + 13 + + + + + 1 + + + message button #155 + + + $(P)$(SLIT)xp:scanParms.LOAD + 1 + Write + + + $(P)$(SLIT)xp:scanParms.LOAD + Ld + 155 + 203 + 21 + 20 + + + + + + + message button #158 + + + $(P)$(SLIT)xp.STOP + 1 + Write + + + $(P)$(SLIT)xp.STOP + STOP + 185 + 181 + 53 + 20 + + + + + + + + + + + related display #161 + + + motorx_tiny.opi + + $(SLIT)xp + + tab + $(SLIT)xp (Tiny) + + + motorx_help.opi + + $(SLIT)xp + + tab + $(SLIT)xp (Help) + + + motorx_more.opi + + $(SLIT)xp + + tab + $(SLIT)xp (Medium) + + + motorx_setup.opi + + $(SLIT)xp + + tab + $(SLIT)xp (Setup) + + + scanParms.opi + + $(SLIT)xp + $(SLIT)xp + + tab + Scan Parameters + + + motorx_all.opi + + $(SLIT)xp + + tab + $(SLIT)xp (Debug) + + + More + 130 + 181 + 40 + 20 + + + + + + + + + + + message button #169 + + + $(P)$(SLIT)xp.TWR + 1 + Write + + + $(P)$(SLIT)xp.TWR + < + 127 + 124 + 25 + 36 + + + + + + + text entry #172 + $(P)$(SLIT)xp.TWV + 153 + 124 + 60 + + + + + + + + + 1 + false + false + + + message button #176 + + + $(P)$(SLIT)xp.TWF + 1 + Write + + + $(P)$(SLIT)xp.TWF + > + 214 + 124 + 25 + 36 + + + + + + + text entry #179 + $(P)$(SLIT)xp.VAL + 134 + 94 + 98 + 25 + + + + + + + + + 1 + false + false + + + rectangle #183 + 125 + 70 + 6 + 50 + + + + + + + + + + + + false + + $(P)$(SLIT)xp.LLS + + + + + rectangle #187 + 235 + 70 + 6 + 50 + + + + + + + + + + + + false + + $(P)$(SLIT)xp.HLS + + + + + text update #191 + $(P)$(SLIT)xp.EGU + 125 + 57 + 116 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #195 + 125 + 45 + 116 + 12 + + + + + + + + + + + text #198 + ($(P)$(SLIT)xp) + 125 + 46 + 116 + 10 + + + + + + + + + 1 + + + rectangle #201 + 132 + 66 + 102 + 26 + 2 + + + + + + + + + true + + + + false + + $(P)$(SLIT)xp.SET + + + + + rectangle #205 + 134 + 68 + 98 + 21 + 2 + + + + + + + + + true + + + + false + + $(P)$(SLIT)xp.SET + + + + + text update #209 + $(P)$(SLIT)xp.RBV + 136 + 70 + 94 + 17 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #213 + Soft limit + 153 + 144 + 60 + 10 + + + + + + + + + 1 + + + + false + + $(P)$(SLIT)xp.LVIO + + + + + choice button #217 + $(P)$(SLIT)xp.SET + 170 + 162 + 71 + 20 + + + + + false + + Item 1 + Item 2 + + + + text #220 + Calib: + 256 + 164 + 45 + 16 + + + + + true + + + text #223 + Calib: + 255 + 163 + 45 + 16 + + + + + + + + + true + + + + false + + $(P)$(SLIT)size.SET + + + + + text update #227 + $(P)$(SLIT)size.DESC + 255 + 25 + 116 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #231 + 261 + 91 + 104 + 31 + + + + + + + + + + + + false + + $(P)$(SLIT)size.DMOV + + + + + rectangle #235 + 261 + 91 + 104 + 31 + + + + + + + + + + + + false + + $(P)$(SLIT)size.LVIO + + + + + rectangle #239 + 255 + 122 + 116 + 40 + + + + + + + + + + + text #242 + Moving + 283 + 146 + 60 + 15 + + + + + + + + + 1 + + + + false + + $(P)$(SLIT)size.DMOV + + + + + text #246 + Calibrate + 283 + 152 + 60 + 10 + + + + + + + + + 1 + + + + false + + $(P)$(SLIT)size.SET + + + + + message button #250 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + Abort + 329 + 203 + 40 + 20 + + + + + + + + + + + message button #253 + + + $(P)$(SLIT)size:scanParms.GO + 1 + Write + + + $(P)$(SLIT)size:scanParms.GO + Go + 307 + 203 + 21 + 20 + + + + + + + rectangle #256 + 255 + 201 + 116 + 24 + + + + + + + + + + + text #259 + Scan + 255 + 207 + 30 + 13 + + + + + 1 + + + message button #262 + + + $(P)$(SLIT)size:scanParms.LOAD + 1 + Write + + + $(P)$(SLIT)size:scanParms.LOAD + Ld + 285 + 203 + 21 + 20 + + + + + + + message button #265 + + + $(P)$(SLIT)size.STOP + 1 + Write + + + $(P)$(SLIT)size.STOP + STOP + 315 + 181 + 53 + 20 + + + + + + + + + + + related display #268 + + + motorx_tiny.opi + + $(SLIT)size + + tab + $(SLIT)size (Tiny) + + + motorx_help.opi + + $(SLIT)size + + tab + $(SLIT)size (Help) + + + motorx_more.opi + + $(SLIT)size + + tab + $(SLIT)size (Medium) + + + motorx_setup.opi + + $(SLIT)size + + tab + $(SLIT)size (Setup) + + + scanParms.opi + + $(SLIT)size + $(SLIT)size + + tab + Scan Parameters + + + motorx_all.opi + + $(SLIT)size + + tab + $(SLIT)size (Debug) + + + More + 260 + 181 + 40 + 20 + + + + + + + + + + + message button #276 + + + $(P)$(SLIT)size.TWR + 1 + Write + + + $(P)$(SLIT)size.TWR + < + 257 + 124 + 25 + 36 + + + + + + + text entry #279 + $(P)$(SLIT)size.TWV + 283 + 124 + 60 + + + + + + + + + 1 + false + false + + + message button #283 + + + $(P)$(SLIT)size.TWF + 1 + Write + + + $(P)$(SLIT)size.TWF + > + 344 + 124 + 25 + 36 + + + + + + + text entry #286 + $(P)$(SLIT)size.VAL + 264 + 94 + 98 + 25 + + + + + + + + + 1 + false + false + + + rectangle #290 + 255 + 70 + 6 + 50 + + + + + + + + + + + + false + + $(P)$(SLIT)size.LLS + + + + + rectangle #294 + 365 + 70 + 6 + 50 + + + + + + + + + + + + false + + $(P)$(SLIT)size.HLS + + + + + text update #298 + $(P)$(SLIT)size.EGU + 255 + 57 + 116 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #302 + 255 + 45 + 116 + 12 + + + + + + + + + + + text #305 + ($(P)$(SLIT)size) + 255 + 46 + 116 + 10 + + + + + + + + + 1 + + + rectangle #308 + 262 + 66 + 102 + 26 + 2 + + + + + + + + + true + + + + false + + $(P)$(SLIT)size.SET + + + + + rectangle #312 + 264 + 68 + 98 + 21 + 2 + + + + + + + + + true + + + + false + + $(P)$(SLIT)size.SET + + + + + text update #316 + $(P)$(SLIT)size.RBV + 266 + 70 + 94 + 17 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #320 + Soft limit + 283 + 144 + 60 + 10 + + + + + + + + + 1 + + + + false + + $(P)$(SLIT)size.LVIO + + + + + choice button #324 + $(P)$(SLIT)size.SET + 300 + 162 + 71 + 20 + + + + + false + + Item 1 + Item 2 + + + + text #327 + Calib: + 381 + 164 + 45 + 16 + + + + + true + + + text #330 + Calib: + 380 + 163 + 45 + 16 + + + + + + + + + true + + + + false + + $(P)$(SLIT)center.SET + + + + + text update #334 + $(P)$(SLIT)center.DESC + 380 + 25 + 116 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #338 + 386 + 91 + 104 + 31 + + + + + + + + + + + + false + + $(P)$(SLIT)center.DMOV + + + + + rectangle #342 + 386 + 91 + 104 + 31 + + + + + + + + + + + + false + + $(P)$(SLIT)center.LVIO + + + + + rectangle #346 + 380 + 122 + 116 + 40 + + + + + + + + + + + text #349 + Moving + 408 + 146 + 60 + 15 + + + + + + + + + 1 + + + + false + + $(P)$(SLIT)center.DMOV + + + + + text #353 + Calibrate + 408 + 152 + 60 + 10 + + + + + + + + + 1 + + + + false + + $(P)$(SLIT)center.SET + + + + + message button #357 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + Abort + 454 + 203 + 40 + 20 + + + + + + + + + + + message button #360 + + + $(P)$(SLIT)center:scanParms.GO + 1 + Write + + + $(P)$(SLIT)center:scanParms.GO + Go + 432 + 203 + 21 + 20 + + + + + + + rectangle #363 + 380 + 201 + 116 + 24 + + + + + + + + + + + text #366 + Scan + 380 + 207 + 30 + 13 + + + + + 1 + + + message button #369 + + + $(P)$(SLIT)center:scanParms.LOAD + 1 + Write + + + $(P)$(SLIT)center:scanParms.LOAD + Ld + 410 + 203 + 21 + 20 + + + + + + + message button #372 + + + $(P)$(SLIT)center.STOP + 1 + Write + + + $(P)$(SLIT)center.STOP + STOP + 440 + 181 + 53 + 20 + + + + + + + + + + + related display #375 + + + motorx_tiny.opi + + $(SLIT)center + + tab + $(SLIT)center (Tiny) + + + motorx_help.opi + + $(SLIT)center + + tab + $(SLIT)center (Help) + + + motorx_more.opi + + $(SLIT)center + + tab + $(SLIT)center (Medium) + + + motorx_setup.opi + + $(SLIT)center + + tab + $(SLIT)center (Setup) + + + scanParms.opi + + $(SLIT)center + $(SLIT)center + + tab + Scan Parameters + + + motorx_all.opi + + $(SLIT)center + + tab + $(SLIT)center (Debug) + + + More + 385 + 181 + 40 + 20 + + + + + + + + + + + message button #383 + + + $(P)$(SLIT)center.TWR + 1 + Write + + + $(P)$(SLIT)center.TWR + < + 382 + 124 + 25 + 36 + + + + + + + text entry #386 + $(P)$(SLIT)center.TWV + 408 + 124 + 60 + + + + + + + + + 1 + false + false + + + message button #390 + + + $(P)$(SLIT)center.TWF + 1 + Write + + + $(P)$(SLIT)center.TWF + > + 469 + 124 + 25 + 36 + + + + + + + text entry #393 + $(P)$(SLIT)center.VAL + 389 + 94 + 98 + 25 + + + + + + + + + 1 + false + false + + + rectangle #397 + 380 + 70 + 6 + 50 + + + + + + + + + + + + false + + $(P)$(SLIT)center.LLS + + + + + rectangle #401 + 490 + 70 + 6 + 50 + + + + + + + + + + + + false + + $(P)$(SLIT)center.HLS + + + + + text update #405 + $(P)$(SLIT)center.EGU + 380 + 57 + 116 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #409 + 380 + 45 + 116 + 12 + + + + + + + + + + + text #412 + ($(P)$(SLIT)center) + 380 + 46 + 116 + 10 + + + + + + + + + 1 + + + rectangle #415 + 387 + 66 + 102 + 26 + 2 + + + + + + + + + true + + + + false + + $(P)$(SLIT)center.SET + + + + + rectangle #419 + 389 + 68 + 98 + 21 + 2 + + + + + + + + + true + + + + false + + $(P)$(SLIT)center.SET + + + + + text update #423 + $(P)$(SLIT)center.RBV + 391 + 70 + 94 + 17 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #427 + Soft limit + 408 + 144 + 60 + 10 + + + + + + + + + 1 + + + + false + + $(P)$(SLIT)center.LVIO + + + + + choice button #431 + $(P)$(SLIT)center.SET + 425 + 162 + 71 + 20 + + + + + false + + Item 1 + Item 2 + + + + choice button #434 + $(P)$(SLIT)set.VAL + 240 + 78 + 20 + + + + + false + + Item 1 + Item 2 + + + + related display #437 + + + yyTransform_full.opi + + $(SLIT)tFwd + + tab + drive transform + + + yyTransform_full.opi + + $(SLIT)tRev + + tab + readback transform + + + yyTransform_full.opi + + $(SLIT)tLimits + + tab + limits transform + + + yyCalcoutRecord.opi + + $(SLIT)calcDone + + tab + calcDone + + + yyTransform_full.opi + + $(SLIT)monitorStop + + tab + monitorStop + + + yySeq_full.opi + + $(SLIT)doStop + + tab + doStop + + + yyTransform.opi + + $(SLIT)spectator + + tab + spectator + + + yyTransform.opi + + $(SLIT)tSyncCalc + + tab + syncCalc + + + yyTransform.opi + + $(SLIT)tSync + + tab + sync + + + Debug + 200 + 240 + 50 + 20 + + + + + + + + + + + rectangle #448 + 500 + 25 + + + + + + + + + + + polyline #451 + 22 + 501 + 3 + + + + + + + + + + + + + text #456 + Slit $(SLIT) + 500 + 22 + + + + + 1 + + + text #459 + X+ MOTOR: + 355 + 250 + 50 + 10 + + + + + 2 + + + text #462 + X- MOTOR: + 355 + 235 + 50 + 10 + + + + + 2 + + + text update #465 + $(P)$(SLIT)mXp_nameCalc.SVAL + 410 + 250 + 80 + 12 + + + + + + + + + + + + + 6 + false + false + + + text update #469 + $(P)$(SLIT)mXn_nameCalc.SVAL + 410 + 235 + 80 + 12 + + + + + + + + + + + + + 6 + false + false + + diff --git a/opticsApp/op/bob/autoconvert/4filter.bob b/opticsApp/op/bob/autoconvert/4filter.bob new file mode 100644 index 0000000..cf345e0 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/4filter.bob @@ -0,0 +1,190 @@ + + + 4filter + 10 + 10 + 385 + 200 + + + + + false + 5 + + choice button #6 + $(P)$(Q1)select.VAL + 5 + 65 + 90 + 130 + + + + + false + false + + Item 1 + Item 2 + + + + choice button #9 + $(P)$(Q2)select.VAL + 100 + 65 + 90 + 130 + + + + + false + false + + Item 1 + Item 2 + + + + choice button #12 + $(P)$(LOCK2)lock.VAL + 100 + 20 + 90 + 15 + + + + + false + + Item 1 + Item 2 + + + + text #15 + upstream + 5 + 46 + 90 + 18 + + + + + 1 + + + text #18 + User Filters + 390 + + + + + 1 + + + choice button #21 + $(P)$(LOCK1)lock.VAL + 5 + 20 + 90 + 15 + + + + + false + + Item 1 + Item 2 + + + + choice button #24 + $(P)$(Q3)select.VAL + 195 + 65 + 90 + 130 + + + + + false + false + + Item 1 + Item 2 + + + + choice button #27 + $(P)$(LOCK3)lock.VAL + 195 + 20 + 90 + 15 + + + + + false + + Item 1 + Item 2 + + + + choice button #30 + $(P)$(Q4)select.VAL + 290 + 65 + 90 + 130 + + + + + false + false + + Item 1 + Item 2 + + + + text #33 + downstream + 290 + 45 + 90 + 18 + + + + + 1 + + + choice button #36 + $(P)$(LOCK4)lock.VAL + 290 + 20 + 90 + 15 + + + + + false + + Item 1 + Item 2 + + + diff --git a/opticsApp/op/bob/autoconvert/4filter_setup.bob b/opticsApp/op/bob/autoconvert/4filter_setup.bob new file mode 100644 index 0000000..7cafbb3 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/4filter_setup.bob @@ -0,0 +1,1844 @@ + + + 4filter_setup + 10 + 10 + 920 + 295 + + + + + false + 5 + + rectangle #6 + 275 + 920 + 17 + + + + + + + + + + + text #9 + NOTE: After changing filter-material description, you must close and reopen any screen that displays it. + 5 + 278 + 920 + 14 + 1 + + + text #12 + Motor-drive PV + 5 + 255 + 115 + 18 + + + + + true + + + text entry #15 + $(P)$(Q1)motorOut.OUTN + 120 + 255 + 105 + + + + + + + + + 6 + false + false + + + text #19 + INVALID + 180 + 247 + 40 + 10 + + + + + + + + + true + + + + false + + $(P)$(Q1)motorOut.OUTV + + + + + text entry #23 + $(P)$(Q1)pos5.VAL + 155 + 125 + 70 + + + + + + + + + 1 + false + false + + + text entry #27 + $(P)$(Q1)pos4.VAL + 155 + 145 + 70 + + + + + + + + + 1 + false + false + + + text entry #31 + $(P)$(Q1)pos3.VAL + 155 + 165 + 70 + + + + + + + + + 1 + false + false + + + text entry #35 + $(P)$(Q1)pos2.VAL + 155 + 185 + 70 + + + + + + + + + 1 + false + false + + + text entry #39 + $(P)$(Q1)posHome.VAL + 155 + 225 + 70 + + + + + + + + + 1 + false + false + + + text entry #43 + $(P)$(Q1)pos1.VAL + 155 + 205 + 70 + + + + + + + + + 1 + false + false + + + choice button #47 + $(P)$(Q4)select.VAL + 770 + 125 + 70 + 125 + + + + + false + false + + Item 1 + Item 2 + + + + choice button #50 + $(P)$(Q3)select.VAL + 540 + 125 + 70 + 125 + + + + + false + false + + Item 1 + Item 2 + + + + choice button #53 + $(P)$(Q2)select.VAL + 310 + 125 + 70 + 125 + + + + + false + false + + Item 1 + Item 2 + + + + choice button #56 + $(P)$(Q1)select.VAL + 80 + 125 + 70 + 125 + + + + + false + false + + Item 1 + Item 2 + + + + text #59 + Motor-drive PV + 235 + 255 + 115 + 18 + + + + + true + + + text entry #62 + $(P)$(Q2)motorOut.OUTN + 350 + 255 + 105 + + + + + + + + + 6 + false + false + + + text entry #66 + $(P)$(Q2)pos5.VAL + 385 + 125 + 70 + + + + + + + + + 1 + false + false + + + text entry #70 + $(P)$(Q2)pos4.VAL + 385 + 145 + 70 + + + + + + + + + 1 + false + false + + + text entry #74 + $(P)$(Q2)pos3.VAL + 385 + 165 + 70 + + + + + + + + + 1 + false + false + + + text entry #78 + $(P)$(Q2)pos2.VAL + 385 + 185 + 70 + + + + + + + + + 1 + false + false + + + text entry #82 + $(P)$(Q2)posHome.VAL + 385 + 225 + 70 + + + + + + + + + 1 + false + false + + + text entry #86 + $(P)$(Q2)pos1.VAL + 385 + 205 + 70 + + + + + + + + + 1 + false + false + + + text #90 + INVALID + 410 + 245 + 40 + 10 + + + + + + + + + true + + + + false + + $(P)$(Q2)motorOut.OUTV + + + + + text entry #94 + $(P)$(Q2)name5 + 235 + 125 + 70 + + + + + + + + + 1 + false + false + + + text entry #98 + $(P)$(Q2)name4 + 235 + 145 + 70 + + + + + + + + + 1 + false + false + + + text entry #102 + $(P)$(Q2)name3 + 235 + 165 + 70 + + + + + + + + + 1 + false + false + + + text entry #106 + $(P)$(Q2)name2 + 235 + 185 + 70 + + + + + + + + + 1 + false + false + + + text entry #110 + $(P)$(Q2)nameHome + 235 + 225 + 70 + + + + + + + + + 1 + false + false + + + text entry #114 + $(P)$(Q2)name1 + 235 + 205 + 70 + + + + + + + + + 1 + false + false + + + text #118 + position + 385 + 100 + 70 + 14 + 1 + + + text #121 + control + 310 + 100 + 70 + 14 + 1 + + + text #124 + material + 235 + 100 + 70 + 14 + 1 + + + text #127 + motor + 385 + 85 + 70 + 14 + 1 + + + text #130 + + 310 + 85 + 70 + 14 + 1 + + + text #133 + filter + 235 + 85 + 70 + 14 + 1 + + + polyline #136 + 229 + 62 + 2 + 212 + 2 + + + + + + + + + + + + + choice button #140 + $(P)$(LOCK2)lock.VAL + 245 + 20 + 200 + 20 + + + + + false + + Item 1 + Item 2 + + + + text #143 + INVALID + 405 + 45 + 40 + 10 + + + + + + + + + true + + + + false + + $(P)$(LOCK2)lockOut.OUTV + + + + + text entry #147 + $(P)$(LOCK2)lockOut.OUTN + 285 + 40 + 120 + + + + + + + + + 6 + false + false + + + text #151 + Lock_PV + 230 + 42 + 55 + 18 + + + + + true + + + text entry #154 + $(P)$(Q1)name5 + 5 + 125 + 70 + + + + + + + + + 1 + false + false + + + text entry #158 + $(P)$(Q1)name4 + 5 + 145 + 70 + + + + + + + + + 1 + false + false + + + text entry #162 + $(P)$(Q1)name3 + 5 + 165 + 70 + + + + + + + + + 1 + false + false + + + text entry #166 + $(P)$(Q1)name2 + 5 + 185 + 70 + + + + + + + + + 1 + false + false + + + text entry #170 + $(P)$(Q1)nameHome + 5 + 225 + 70 + + + + + + + + + 1 + false + false + + + text entry #174 + $(P)$(Q1)name1 + 5 + 205 + 70 + + + + + + + + + 1 + false + false + + + text #178 + position + 155 + 100 + 70 + 14 + 1 + + + text #181 + control + 80 + 100 + 70 + 14 + 1 + + + text #184 + material + 5 + 100 + 70 + 14 + 1 + + + text #187 + motor + 155 + 85 + 70 + 14 + 1 + + + text #190 + + 80 + 85 + 70 + 14 + 1 + + + text #193 + filter + 5 + 85 + 70 + 14 + 1 + + + text #196 + User Filter $(P)$(Q1) + 920 + 18 + + + + + 1 + + + choice button #199 + $(P)$(LOCK1)lock.VAL + 15 + 20 + 200 + 20 + + + + + false + + Item 1 + Item 2 + + + + text #202 + INVALID + 175 + 45 + 40 + 10 + + + + + + + + + true + + + + false + + $(P)$(LOCK1)lockOut.OUTV + + + + + text entry #206 + $(P)$(LOCK1)lockOut.OUTN + 55 + 40 + 120 + + + + + + + + + 6 + false + false + + + text #210 + Lock_PV + 42 + 55 + 18 + + + + + true + + + polyline #213 + 17 + 917 + 2 + 2 + + + + + + + + + + + + + polyline #217 + 61 + 917 + 2 + 2 + + + + + + + + + + + + + text #221 + upstream + 5 + 65 + 220 + + + + + 1 + + + polyline #224 + 275 + 917 + 2 + 2 + + + + + + + + + + + + + text #228 + Motor-drive PV + 465 + 255 + 115 + 18 + + + + + true + + + text entry #231 + $(P)$(Q3)motorOut.OUTN + 580 + 255 + 105 + + + + + + + + + 6 + false + false + + + text entry #235 + $(P)$(Q3)pos5.VAL + 615 + 125 + 70 + + + + + + + + + 1 + false + false + + + text entry #239 + $(P)$(Q3)pos4.VAL + 615 + 145 + 70 + + + + + + + + + 1 + false + false + + + text entry #243 + $(P)$(Q3)pos3.VAL + 615 + 165 + 70 + + + + + + + + + 1 + false + false + + + text entry #247 + $(P)$(Q3)pos2.VAL + 615 + 185 + 70 + + + + + + + + + 1 + false + false + + + text entry #251 + $(P)$(Q3)posHome.VAL + 615 + 225 + 70 + + + + + + + + + 1 + false + false + + + text entry #255 + $(P)$(Q3)pos1.VAL + 615 + 205 + 70 + + + + + + + + + 1 + false + false + + + text #259 + INVALID + 640 + 245 + 40 + 10 + + + + + + + + + true + + + + false + + $(P)$(Q3)motorOut.OUTV + + + + + text entry #263 + $(P)$(Q3)name5 + 465 + 125 + 70 + + + + + + + + + 1 + false + false + + + text entry #267 + $(P)$(Q3)name4 + 465 + 145 + 70 + + + + + + + + + 1 + false + false + + + text entry #271 + $(P)$(Q3)name3 + 465 + 165 + 70 + + + + + + + + + 1 + false + false + + + text entry #275 + $(P)$(Q3)name2 + 465 + 185 + 70 + + + + + + + + + 1 + false + false + + + text entry #279 + $(P)$(Q3)nameHome + 465 + 225 + 70 + + + + + + + + + 1 + false + false + + + text entry #283 + $(P)$(Q3)name1 + 465 + 205 + 70 + + + + + + + + + 1 + false + false + + + text #287 + position + 615 + 100 + 70 + 14 + 1 + + + text #290 + control + 540 + 100 + 70 + 14 + 1 + + + text #293 + material + 465 + 100 + 70 + 14 + 1 + + + text #296 + motor + 615 + 85 + 70 + 14 + 1 + + + text #299 + + 540 + 85 + 70 + 14 + 1 + + + text #302 + filter + 465 + 85 + 70 + 14 + 1 + + + polyline #305 + 459 + 62 + 2 + 212 + 2 + + + + + + + + + + + + + choice button #309 + $(P)$(LOCK3)lock.VAL + 475 + 20 + 200 + 20 + + + + + false + + Item 1 + Item 2 + + + + text #312 + INVALID + 635 + 45 + 40 + 10 + + + + + + + + + true + + + + false + + $(P)$(LOCK3)lockOut.OUTV + + + + + text entry #316 + $(P)$(LOCK3)lockOut.OUTN + 515 + 40 + 120 + + + + + + + + + 6 + false + false + + + text #320 + Lock_PV + 460 + 42 + 55 + 18 + + + + + true + + + text #323 + Motor-drive PV + 695 + 255 + 115 + 18 + + + + + true + + + text entry #326 + $(P)$(Q4)motorOut.OUTN + 810 + 255 + 105 + + + + + + + + + 6 + false + false + + + text entry #330 + $(P)$(Q4)pos5.VAL + 845 + 125 + 70 + + + + + + + + + 1 + false + false + + + text entry #334 + $(P)$(Q4)pos4.VAL + 845 + 145 + 70 + + + + + + + + + 1 + false + false + + + text entry #338 + $(P)$(Q4)pos3.VAL + 845 + 165 + 70 + + + + + + + + + 1 + false + false + + + text entry #342 + $(P)$(Q4)pos2.VAL + 845 + 185 + 70 + + + + + + + + + 1 + false + false + + + text entry #346 + $(P)$(Q4)posHome.VAL + 845 + 225 + 70 + + + + + + + + + 1 + false + false + + + text entry #350 + $(P)$(Q4)pos1.VAL + 845 + 205 + 70 + + + + + + + + + 1 + false + false + + + text #354 + INVALID + 870 + 245 + 40 + 10 + + + + + + + + + true + + + + false + + $(P)$(Q4)motorOut.OUTV + + + + + text entry #358 + $(P)$(Q4)name5 + 695 + 125 + 70 + + + + + + + + + 1 + false + false + + + text entry #362 + $(P)$(Q4)name4 + 695 + 145 + 70 + + + + + + + + + 1 + false + false + + + text entry #366 + $(P)$(Q4)name3 + 695 + 165 + 70 + + + + + + + + + 1 + false + false + + + text entry #370 + $(P)$(Q4)name2 + 695 + 185 + 70 + + + + + + + + + 1 + false + false + + + text entry #374 + $(P)$(Q4)nameHome + 695 + 225 + 70 + + + + + + + + + 1 + false + false + + + text entry #378 + $(P)$(Q4)name1 + 695 + 205 + 70 + + + + + + + + + 1 + false + false + + + text #382 + downstream + 695 + 65 + 220 + + + + + 1 + + + text #385 + position + 845 + 100 + 70 + 14 + 1 + + + text #388 + control + 770 + 100 + 70 + 14 + 1 + + + text #391 + material + 695 + 100 + 70 + 14 + 1 + + + text #394 + motor + 845 + 85 + 70 + 14 + 1 + + + text #397 + + 770 + 85 + 70 + 14 + 1 + + + text #400 + filter + 695 + 85 + 70 + 14 + 1 + + + polyline #403 + 689 + 62 + 2 + 212 + 2 + + + + + + + + + + + + + choice button #407 + $(P)$(LOCK4)lock.VAL + 705 + 20 + 200 + 20 + + + + + false + + Item 1 + Item 2 + + + + text #410 + INVALID + 865 + 45 + 40 + 10 + + + + + + + + + true + + + + false + + $(P)$(LOCK4)lockOut.OUTV + + + + + text entry #414 + $(P)$(LOCK4)lockOut.OUTN + 745 + 40 + 120 + + + + + + + + + 6 + false + false + + + text #418 + Lock_PV + 690 + 42 + 55 + 18 + + + + + true + + diff --git a/opticsApp/op/bob/autoconvert/4slitGraphic.bob b/opticsApp/op/bob/autoconvert/4slitGraphic.bob new file mode 100644 index 0000000..448295a --- /dev/null +++ b/opticsApp/op/bob/autoconvert/4slitGraphic.bob @@ -0,0 +1,2040 @@ + + + 4slitGraphic + 1120 + 543 + 280 + 325 + + + + + false + 5 + + rectangle #6 + 90 + 125 + 100 + + + + + + + + + + + rectangle #9 + 280 + + + + + + + + + + + polyline #12 + 20 + 281 + 3 + + + + + + + + + + + + + text #16 + $(SLIT) + 170 + + + + + 1 + + + text update #19 + $(P)$(V)center.DRVH + 195 + 242 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #23 + $(P)$(V)size.DRVH + 5 + 242 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #27 + $(P)$(H)center.DRVH + 195 + 37 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #31 + $(P)$(H)size.DRVH + 5 + 37 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + composite #35 + 90 + 200 + 100 + 100 + + true + + rectangle #38 + 100 + + + + + + + + + + + rectangle #41 + 100 + 2 + + + + + + + + + true + + + + composite #44 + 90 + 50 + 100 + 100 + + true + + rectangle #47 + 100 + + + + + + + + + + + rectangle #50 + 100 + 2 + + + + + + + + + true + + + + rectangle #53 + 10 + 125 + 100 + + + + + + + + + + + rectangle #56 + 10 + 125 + 100 + 2 + + + + + + + + + true + + + message button #59 + + + $(P)$(H)xn_tweak.A + 1 + Write + + + $(P)$(H)xn_tweak.A + - + 20 + 184 + 16 + 16 + + + + + + + text entry #62 + $(P)$(H)xn_tweakVal.VAL + 35 + 184 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #66 + + + $(P)$(H)xn_tweak.B + 1 + Write + + + $(P)$(H)xn_tweak.B + + + 84 + 184 + 16 + 16 + + + + + + + text update #69 + $(P)$(H)xn.DRVH + 20 + 135 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #73 + $(P)$(H)t2.B + 20 + 143 + 80 + 14 + + + + + + + + + 1 + false + false + + + text entry #77 + $(P)$(H)xn.VAL + 20 + 156 + 80 + + + + + + + + + 1 + false + false + + + text update #81 + $(P)$(H)xn.DRVL + 20 + 176 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + related display #85 + + + scanParmsCustom.opi + + $(H)n + $(H)xn.EGU + $(H)xn + $(H)n + + tab + Setup scan parameters + + + + 35 + 205 + 16 + 16 + + + + + + + text #88 + Scan + 55 + 206 + 30 + 14 + true + + + rectangle #91 + 170 + 125 + 100 + + + + + + + + + + + rectangle #94 + 170 + 125 + 100 + 2 + + + + + + + + + true + + + text entry #97 + $(P)$(H)xp.VAL + 180 + 156 + 80 + + + + + + + + + 1 + false + false + + + text update #101 + $(P)$(H)xp.DRVL + 180 + 176 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + message button #105 + + + $(P)$(H)xp_tweak.A + 1 + Write + + + $(P)$(H)xp_tweak.A + - + 180 + 184 + 16 + 16 + + + + + + + text entry #108 + $(P)$(H)xp_tweakVal.VAL + 195 + 184 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #112 + + + $(P)$(H)xp_tweak.B + 1 + Write + + + $(P)$(H)xp_tweak.B + + + 244 + 184 + 16 + 16 + + + + + + + text update #115 + $(P)$(H)xp.DRVH + 180 + 135 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #119 + $(P)$(H)t2.A + 180 + 143 + 80 + 14 + + + + + + + + + 1 + false + false + + + text #123 + Scan + 215 + 206 + 30 + 14 + true + + + related display #126 + + + scanParmsCustom.opi + + $(H)p + $(H)xp.EGU + $(H)xp + $(H)p + + tab + Setup scan parameters + + + + 195 + 205 + 16 + 16 + + + + + + + text entry #129 + $(P)$(V)xp.VAL + 100 + 76 + 80 + + + + + + + + + 1 + false + false + + + text update #133 + $(P)$(V)xp.DRVL + 100 + 96 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + message button #137 + + + $(P)$(V)xp_tweak.B + 1 + Write + + + $(P)$(V)xp_tweak.B + + + 166 + 104 + 20 + 16 + + + + + + + text entry #140 + $(P)$(V)xp_tweakVal.VAL + 115 + 104 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #144 + + + $(P)$(V)xp_tweak.A + 1 + Write + + + $(P)$(V)xp_tweak.A + - + 95 + 104 + 20 + 16 + + + + + + + text update #147 + $(P)$(V)xp.DRVH + 100 + 55 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #151 + $(P)$(V)t2.A + 100 + 63 + 80 + 14 + + + + + + + + + 1 + false + false + + + text entry #155 + $(P)$(V)xn.VAL + 100 + 251 + 80 + + + + + + + + + 1 + false + false + + + text update #159 + $(P)$(V)xn.DRVL + 100 + 271 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + message button #163 + + + $(P)$(V)xn_tweak.A + 1 + Write + + + $(P)$(V)xn_tweak.A + - + 95 + 279 + 20 + 16 + + + + + + + text entry #166 + $(P)$(V)xn_tweakVal.VAL + 115 + 279 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #170 + + + $(P)$(V)xn_tweak.B + 1 + Write + + + $(P)$(V)xn_tweak.B + + + 166 + 279 + 20 + 16 + + + + + + + text update #173 + $(P)$(V)xn.DRVH + 100 + 230 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #177 + $(P)$(V)t2.B + 100 + 238 + 80 + 14 + + + + + + + + + 1 + false + false + + + message button #181 + + + $(P)$(H)size_tweak.A + 1 + Write + + + $(P)$(H)size_tweak.A + - + 5 + 86 + 16 + 16 + + + + + + + text entry #184 + $(P)$(H)size_tweakVal.VAL + 20 + 86 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #188 + + + $(P)$(H)size_tweak.B + 1 + Write + + + $(P)$(H)size_tweak.B + + + 69 + 86 + 16 + 16 + + + + + + + text entry #191 + $(P)$(H)size.VAL + 5 + 58 + 80 + + + + + + + + + 1 + false + false + + + text update #195 + $(P)$(H)size.DRVL + 5 + 78 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #199 + $(P)$(H)t2.C + 5 + 45 + 80 + 14 + + + + + + + + + 1 + false + false + + + text #203 + H SIZE + 5 + 25 + 80 + 14 + + + + + 1 + + + text #206 + Scan + 230 + 106 + 30 + 14 + true + + + related display #209 + + + scanParmsCustom.opi + + $(H)center + $(H)center.EGU + $(H)center + $(H)center + + tab + Setup scan parameters + + + + 210 + 105 + 16 + 16 + + + + + + + text #212 + Scan + 40 + 106 + 30 + 14 + true + + + related display #215 + + + scanParmsCustom.opi + + $(H)size + $(H)size.EGU + $(H)size + $(H)size + + tab + Setup scan parameters + + + + 20 + 105 + 16 + 16 + + + + + + + message button #218 + + + $(P)$(H)center_tweak.A + 1 + Write + + + $(P)$(H)center_tweak.A + - + 195 + 86 + 16 + 16 + + + + + + + text entry #221 + $(P)$(H)center_tweakVal.VAL + 210 + 86 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #225 + + + $(P)$(H)center_tweak.B + 1 + Write + + + $(P)$(H)center_tweak.B + + + 259 + 86 + 16 + 16 + + + + + + + text entry #228 + $(P)$(H)center.VAL + 195 + 58 + 80 + + + + + + + + + 1 + false + false + + + text update #232 + $(P)$(H)center.DRVL + 195 + 78 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #236 + $(P)$(H)t2.D + 195 + 45 + 80 + 14 + + + + + + + + + 1 + false + false + + + text #240 + H CENTER + 195 + 25 + 80 + 14 + + + + + 1 + + + message button #243 + + + $(P)$(V)center_tweak.A + 1 + Write + + + $(P)$(V)center_tweak.A + - + 191 + 291 + 20 + 16 + + + + + + + text entry #246 + $(P)$(V)center_tweakVal.VAL + 210 + 291 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #250 + + + $(P)$(V)center_tweak.B + 1 + Write + + + $(P)$(V)center_tweak.B + + + 259 + 291 + 20 + 16 + + + + + + + text entry #253 + $(P)$(V)center.VAL + 195 + 263 + 80 + + + + + + + + + 1 + false + false + + + text update #257 + $(P)$(V)center.DRVL + 195 + 283 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #261 + $(P)$(V)t2.D + 195 + 250 + 80 + 14 + + + + + + + + + 1 + false + false + + + text #265 + V CENTER + 195 + 230 + 80 + 14 + + + + + 1 + + + message button #268 + + + $(P)$(V)size_tweak.A + 1 + Write + + + $(P)$(V)size_tweak.A + - + 4 + 291 + 16 + 16 + + + + + + + text entry #271 + $(P)$(V)size_tweakVal.VAL + 20 + 291 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #275 + + + $(P)$(V)size_tweak.B + 1 + Write + + + $(P)$(V)size_tweak.B + + + 69 + 291 + 16 + 16 + + + + + + + text entry #278 + $(P)$(V)size.VAL + 5 + 263 + 80 + + + + + + + + + 1 + false + false + + + text update #282 + $(P)$(V)size.DRVL + 5 + 283 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #286 + $(P)$(V)t2.C + 5 + 250 + 80 + 14 + + + + + + + + + 1 + false + false + + + text #290 + V SIZE + 5 + 230 + 80 + 14 + + + + + 1 + + + text #293 + Scan + 135 + 131 + 30 + 14 + true + + + related display #296 + + + scanParmsCustom.opi + + $(V)p + $(V)xp.EGU + $(V)xp + $(V)p + + tab + Setup scan parameters + + + + 115 + 130 + 16 + 16 + + + + + + + text #299 + Scan + 135 + 206 + 30 + 14 + true + + + related display #302 + + + scanParmsCustom.opi + + $(V)n + $(V)xn.EGU + $(V)xn + $(V)n + + tab + Setup scan parameters + + + + 115 + 205 + 16 + 16 + + + + + + + text #305 + Scan + 230 + 311 + 30 + 14 + true + + + related display #308 + + + scanParmsCustom.opi + + $(V)center + $(V)center.EGU + $(V)center + $(V)center + + tab + Setup scan parameters + + + + 210 + 310 + 16 + 16 + + + + + + + text #311 + Scan + 40 + 311 + 30 + 14 + true + + + related display #314 + + + scanParmsCustom.opi + + $(V)size + $(V)size.EGU + $(V)size + $(V)size + + tab + Setup scan parameters + + + + 20 + 310 + 16 + 16 + + + + + + + message button #317 + + + $(P)$(H)sync.PROC + 1 + Write + + + $(P)$(H)sync.PROC + Sync H + 110 + 25 + 60 + 22 + + + + + + + message button #320 + + + $(P)$(V)sync.PROC + 1 + Write + + + $(P)$(V)sync.PROC + Sync V + 110 + 303 + 60 + 22 + + + + + + + text #323 + (Looking upstream) + 170 + 6 + 110 + 12 + + + + + 1 + + + text #326 + + + 135 + 170 + 7 + 14 + + + + + true + + + composite #329 + 146 + 171 + 16 + 11 + + true + + polyline #332 + 6 + 13 + 0 + 1 + + + + + + + + + + + + + polyline #336 + 5 + 11 + 11 + 2 + + + + + + + + + + + + + + + + composite #340 + 114 + 171 + 16 + 11 + + true + + + + false + + $(P)$(H)CoordSys + + + + polyline #343 + 6 + 13 + 0 + 1 + + + + + + + + + + + + + polyline #347 + 5 + 11 + 11 + 2 + + + + + + + + + + + + + + + + composite #352 + 132 + 153 + 11 + 16 + + true + + polyline #355 + 6 + 3 + 0 + 13 + 1 + + + + + + + + + + + + + polyline #359 + 11 + 11 + 2 + + + + + + + + + + + + + + + + composite #363 + 133 + 184 + 11 + 16 + + true + + + + false + + $(P)$(V)CoordSys + + + + polyline #366 + 6 + 3 + 0 + 13 + 1 + + + + + + + + + + + + + polyline #370 + 11 + 11 + 2 + + + + + + + + + + + + + + + + composite #375 + 133 + 184 + 11 + 16 + + true + + + + false + + $(P)$(V)CoordSys + + + + polyline #378 + 5 + 0 + 13 + 1 + + + + + + + + + + + + + polyline #382 + 5 + 11 + 11 + 2 + + + + + + + + + + + + + + + + composite #387 + 114 + 171 + 16 + 11 + + true + + + + false + + $(P)$(H)CoordSys + + + + polyline #390 + 3 + 6 + 13 + 0 + 1 + + + + + + + + + + + + + polyline #394 + 11 + 11 + 2 + + + + + + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/4slitGraphic_soft.bob b/opticsApp/op/bob/autoconvert/4slitGraphic_soft.bob new file mode 100644 index 0000000..dee9007 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/4slitGraphic_soft.bob @@ -0,0 +1,1640 @@ + + + 4slitGraphic_soft + 212 + 66 + 280 + 325 + + + + + false + 5 + + rectangle #6 + 280 + + + + + + + + + + + polyline #9 + 20 + 281 + 3 + + + + + + + + + + + + + text #13 + $(SLIT) (Looking upstream) + 280 + + + + + 1 + + + text update #16 + $(P)$(V)center.HLM + 195 + 242 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #20 + $(P)$(V)size.HLM + 5 + 242 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #24 + $(P)$(H)center.HLM + 195 + 37 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #28 + $(P)$(H)size.HLM + 5 + 37 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #32 + 90 + 125 + 100 + + + + + + + + + + + composite #35 + 90 + 200 + 100 + 100 + + true + + rectangle #38 + 100 + + + + + + + + + + + rectangle #41 + 100 + 2 + + + + + + + + + true + + + + composite #44 + 90 + 50 + 100 + 100 + + true + + rectangle #47 + 100 + + + + + + + + + + + rectangle #50 + 100 + 2 + + + + + + + + + true + + + + rectangle #53 + 10 + 125 + 100 + + + + + + + + + + + rectangle #56 + 10 + 125 + 100 + 2 + + + + + + + + + true + + + message button #59 + + + $(P)$(H)xn.TWR + 1 + Write + + + $(P)$(H)xn.TWR + < + 20 + 184 + 16 + 16 + + + + + + + text entry #62 + $(P)$(H)xn.TWV + 35 + 184 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #66 + + + $(P)$(H)xn.TWF + 1 + Write + + + $(P)$(H)xn.TWF + > + 84 + 184 + 16 + 16 + + + + + + + text update #69 + $(P)$(H)xn.HLM + 20 + 135 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #73 + $(P)$(H)xn.RBV + 20 + 143 + 80 + 14 + + + + + + + + + 1 + false + false + + + text entry #77 + $(P)$(H)xn.VAL + 20 + 156 + 80 + + + + + + + + + 1 + false + false + + + text update #81 + $(P)$(H)xn.LLM + 20 + 176 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + related display #85 + + + scanParms.opi + + $(H)xn + $(H)xn + + tab + Setup scan parameters + + + SCAN + 40 + 205 + 40 + 16 + + + + + + + + + + + rectangle #88 + 170 + 125 + 100 + + + + + + + + + + + rectangle #91 + 170 + 125 + 100 + 2 + + + + + + + + + true + + + text entry #94 + $(P)$(H)xp.VAL + 180 + 156 + 80 + + + + + + + + + 1 + false + false + + + text update #98 + $(P)$(H)xp.LLM + 180 + 176 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + message button #102 + + + $(P)$(H)xp.TWR + 1 + Write + + + $(P)$(H)xp.TWR + < + 180 + 184 + 16 + 16 + + + + + + + text entry #105 + $(P)$(H)xp.TWV + 195 + 184 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #109 + + + $(P)$(H)xp.TWF + 1 + Write + + + $(P)$(H)xp.TWF + > + 244 + 184 + 16 + 16 + + + + + + + text update #112 + $(P)$(H)xp.HLM + 180 + 135 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #116 + $(P)$(H)xp.RBV + 180 + 143 + 80 + 14 + + + + + + + + + 1 + false + false + + + related display #120 + + + scanParms.opi + + $(H)xp + $(H)xp + + tab + Setup scan parameters + + + SCAN + 200 + 205 + 40 + 16 + + + + + + + + + + + text entry #123 + $(P)$(V)xp.VAL + 100 + 76 + 80 + + + + + + + + + 1 + false + false + + + text update #127 + $(P)$(V)xp.LLM + 100 + 96 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + message button #131 + + + $(P)$(V)xp.TWF + 1 + Write + + + $(P)$(V)xp.TWF + UP + 166 + 104 + 20 + 16 + + + + + + + text entry #134 + $(P)$(V)xp.TWV + 115 + 104 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #138 + + + $(P)$(V)xp.TWR + 1 + Write + + + $(P)$(V)xp.TWR + DN + 95 + 104 + 20 + 16 + + + + + + + text update #141 + $(P)$(V)xp.HLM + 100 + 55 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #145 + $(P)$(V)xp.RBV + 100 + 63 + 80 + 14 + + + + + + + + + 1 + false + false + + + text entry #149 + $(P)$(V)xn.VAL + 100 + 251 + 80 + + + + + + + + + 1 + false + false + + + text update #153 + $(P)$(V)xn.LLM + 100 + 271 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + message button #157 + + + $(P)$(V)xn.TWR + 1 + Write + + + $(P)$(V)xn.TWR + DN + 95 + 279 + 20 + 16 + + + + + + + text entry #160 + $(P)$(V)xn.TWV + 115 + 279 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #164 + + + $(P)$(V)xn.TWF + 1 + Write + + + $(P)$(V)xn.TWF + UP + 166 + 279 + 20 + 16 + + + + + + + text update #167 + $(P)$(V)xn.HLM + 100 + 230 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #171 + $(P)$(V)xn.RBV + 100 + 238 + 80 + 14 + + + + + + + + + 1 + false + false + + + message button #175 + + + $(P)$(H)size.TWR + 1 + Write + + + $(P)$(H)size.TWR + - + 5 + 86 + 16 + 16 + + + + + + + text entry #178 + $(P)$(H)size.TWV + 20 + 86 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #182 + + + $(P)$(H)size.TWF + 1 + Write + + + $(P)$(H)size.TWF + + + 69 + 86 + 16 + 16 + + + + + + + text entry #185 + $(P)$(H)size.VAL + 5 + 58 + 80 + + + + + + + + + 1 + false + false + + + text update #189 + $(P)$(H)size.LLM + 5 + 78 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #193 + $(P)$(H)size.RBV + 5 + 45 + 80 + 14 + + + + + + + + + 1 + false + false + + + text #197 + H SIZE + 5 + 25 + 80 + 14 + + + + + 1 + + + related display #200 + + + scanParms.opi + + $(H)center + $(H)center + + tab + Setup scan parameters + + + SCAN + 215 + 105 + 40 + 16 + + + + + + + + + + + related display #203 + + + scanParms.opi + + $(H)size + $(H)size + + tab + Setup scan parameters + + + SCAN + 25 + 105 + 40 + 16 + + + + + + + + + + + message button #206 + + + $(P)$(H)center.TWR + 1 + Write + + + $(P)$(H)center.TWR + < + 195 + 86 + 16 + 16 + + + + + + + text entry #209 + $(P)$(H)center.TWV + 210 + 86 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #213 + + + $(P)$(H)center.TWF + 1 + Write + + + $(P)$(H)center.TWF + > + 259 + 86 + 16 + 16 + + + + + + + text entry #216 + $(P)$(H)center.VAL + 195 + 58 + 80 + + + + + + + + + 1 + false + false + + + text update #220 + $(P)$(H)center.LLM + 195 + 78 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #224 + $(P)$(H)center.RBV + 195 + 45 + 80 + 14 + + + + + + + + + 1 + false + false + + + text #228 + H CENTER + 195 + 25 + 80 + 14 + + + + + 1 + + + message button #231 + + + $(P)$(V)center.TWR + 1 + Write + + + $(P)$(V)center.TWR + DN + 191 + 291 + 20 + 16 + + + + + + + text entry #234 + $(P)$(V)center.TWV + 210 + 291 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #238 + + + $(P)$(V)center.TWF + 1 + Write + + + $(P)$(V)center.TWF + UP + 259 + 291 + 20 + 16 + + + + + + + text entry #241 + $(P)$(V)center.VAL + 195 + 263 + 80 + + + + + + + + + 1 + false + false + + + text update #245 + $(P)$(V)center.LLM + 195 + 283 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #249 + $(P)$(V)center.RBV + 195 + 250 + 80 + 14 + + + + + + + + + 1 + false + false + + + text #253 + V CENTER + 195 + 230 + 80 + 14 + + + + + 1 + + + message button #256 + + + $(P)$(V)size.TWR + 1 + Write + + + $(P)$(V)size.TWR + - + 4 + 291 + 16 + 16 + + + + + + + text entry #259 + $(P)$(V)size.TWV + 20 + 291 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #263 + + + $(P)$(V)size.TWF + 1 + Write + + + $(P)$(V)size.TWF + + + 69 + 291 + 16 + 16 + + + + + + + text entry #266 + $(P)$(V)size.VAL + 5 + 263 + 80 + + + + + + + + + 1 + false + false + + + text update #270 + $(P)$(V)size.LLM + 5 + 283 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #274 + $(P)$(V)size.RBV + 5 + 250 + 80 + 14 + + + + + + + + + 1 + false + false + + + text #278 + V SIZE + 5 + 230 + 80 + 14 + + + + + 1 + + + related display #281 + + + scanParms.opi + + $(V)xp + $(V)xp + + tab + Setup scan parameters + + + SCAN + 120 + 130 + 40 + 16 + + + + + + + + + + + related display #284 + + + scanParms.opi + + $(V)xn + $(V)xn + + tab + Setup scan parameters + + + SCAN + 120 + 205 + 40 + 16 + + + + + + + + + + + related display #287 + + + scanParms.opi + + $(V)center + $(V)center + + tab + Setup scan parameters + + + SCAN + 215 + 310 + 40 + 16 + + + + + + + + + + + related display #290 + + + scanParms.opi + + $(V)size + $(V)size + + tab + Setup scan parameters + + + SCAN + 25 + 310 + 40 + 16 + + + + + + + + + + + message button #293 + + + $(P)$(H)xn.STOP + 1 + Write + + + $(P)$(H)xn.STOP + STOP + 110 + 305 + 53 + 20 + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/ASRPmirrorTable.bob b/opticsApp/op/bob/autoconvert/ASRPmirrorTable.bob new file mode 100644 index 0000000..f9f9145 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/ASRPmirrorTable.bob @@ -0,0 +1,866 @@ + + + ASRPmirrorTable + 471 + 396 + 520 + 185 + + + + + false + 5 + + rectangle #6 + 332 + 98 + 161 + 63 + + + + + + + + + + + text entry #9 + $(P)$(TBL):tran.F + 357 + 131 + + + + + + + + + 1 + false + false + + + text #13 + COUPLED PITCH + 357 + 107 + 10 + + + + + 1 + + + related display #16 + + + yyTransform_full.opi + +

xxx:

+ $(TBL):tran +
+ tab + tran +
+ + yyTransform.opi + +

xxx:

+ $(TBL):autosync +
+ tab + autosync +
+
+ More + 480 + 165 + 40 + 20 + + + + + + + + +
+ + text #20 + (DRIVES PITCH & VERT) + 357 + 120 + 10 + + + + + 1 + + + rectangle #23 + 86 + 61 + 204 + 10 + 1 + + + + + + + + + true + + + polygon #26 + 101 + 73 + 15 + 40 + 0 + + + + + + + + + + + + + + + + + + + + + composite #30 + 256 + 73 + 10 + 40 + + true + + polygon #33 + 10 + 10 + 0 + + + + + + + + + + + + + + + + + + + + + polygon #37 + 30 + 10 + 10 + 0 + + + + + + + + + + + + + + + + + + + + + polyline #41 + 4 + 9 + 3 + 26 + + + + + + + + + + + + + + rectangle #45 + 86 + 113 + 204 + 10 + 1 + + + + + + + + + true + + + composite #48 + 173 + 123 + 10 + 40 + + true + + polygon #51 + 10 + 10 + 0 + + + + + + + + + + + + + + + + + + + + + polygon #55 + 30 + 10 + 10 + 0 + + + + + + + + + + + + + + + + + + + + + polyline #59 + 4 + 9 + 3 + 26 + + + + + + + + + + + + + + text entry #63 + $(VERT).VAL + 187 + 153 + 60 + + + + + + + + + 1 + false + false + + + text #67 + VERT MOTOR + 187 + 127 + 60 + 10 + + + + + 1 + + + text entry #70 + $(PITCH).VAL + 337 + 55 + 60 + + + + + + + + + 1 + false + false + + + text entry #74 + $(P)$(TBL):pitchArmLen + 152 + 88 + 60 + + + + + + + + + 1 + false + false + + + text #78 + PITCH ARM + 152 + 77 + 60 + 10 + + + + + 1 + + + polyline #81 + 210 + 80 + 39 + 1 + 1 + + + + + 1 + + + + + + + + + polyline #85 + 243 + 74 + 11 + 11 + 2 + + + + + + + + + + + + + + + polyline #89 + 113 + 80 + 39 + 1 + 1 + + + + + 1 + + + + + + + + + polyline #93 + 110 + 74 + 11 + 11 + 2 + + + + + + + + + + + + + + + text entry #97 + $(P)$(TBL):fixedPointZ + 75 + 16 + 60 + + + + + + + + + 1 + false + false + + + text #101 + FIXED POINT + 75 + 5 + 60 + 10 + + + + + 1 + + + polyline #104 + 107 + 42 + 0 + 19 + 1 + + + + + + + + + + + + + text #108 + - + 86 + 34 + 10 + + + + + 1 + + + text #111 + + + 112 + 34 + 10 + + + + + 1 + + + composite #114 + 64 + 45 + 87 + 11 + + true + + polyline #117 + 3 + 6 + 39 + 1 + 1 + + + + + 1 + + + + + + + + + polyline #121 + 11 + 11 + 2 + + + + + + + + + + + + + + + polyline #125 + 46 + 6 + 39 + 1 + 1 + + + + + 1 + + + + + + + + + polyline #129 + 76 + 11 + 11 + 2 + + + + + + + + + + + + + + + + polyline #133 + 294 + 66 + 35 + 1 + 1 + + + + + + + + + + + + + polyline #137 + 309 + 42 + 0 + 44 + 1 + + + + + 1 + + + + + + + + + polyline #141 + 304 + 79 + 11 + 11 + 2 + + + + + + + + + + + + + + + polyline #145 + 304 + 36 + 11 + 11 + 2 + + + + + + + + + + + + + + + text #149 + + + 315 + 46 + 10 + + + + + 1 + + + text #152 + - + 315 + 65 + 10 + + + + + 1 + + + text #155 + (mR) + 460 + 133 + 20 + 14 + 1 + + + polyline #158 + 332 + 98 + 162 + 64 + + + + + + + + + + + + + + + polyline #162 + 332 + 98 + 161 + 61 + + + + + + + + + + + + + + + related display #166 + + + ASRPmirrorTable_small.opi + +

xxx:

+
+ replace + small +
+
+ Less + 440 + 165 + 40 + 20 + + + + + + + + +
+ + text update #169 + $(PITCH).RBV + 337 + 39 + 60 + 16 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #173 + PITCH MOTOR + 337 + 30 + 60 + 10 + + + + + 1 + + + text update #176 + $(VERT).RBV + 187 + 137 + 60 + 16 + + + + + + + + + + + + + 1 + false + 1 + false + +
diff --git a/opticsApp/op/bob/autoconvert/ASRPmirrorTable_small.bob b/opticsApp/op/bob/autoconvert/ASRPmirrorTable_small.bob new file mode 100644 index 0000000..e133992 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/ASRPmirrorTable_small.bob @@ -0,0 +1,115 @@ + + + ASRPmirrorTable_small + 640 + 511 + 180 + 95 + + + + + false + 5 + + rectangle #6 + 180 + + + + + + + + + + + related display #9 + + + ASRPmirrorTable.opi + +

xxx:

+
+ replace + small +
+
+ More + 140 + 75 + 40 + 20 + + + + + + + + +
+ + text #12 + ASRP Mirror Table + 180 + + + + + 1 + + + polyline #15 + 20 + 181 + 3 + + + + + + + + + + + + + text entry #19 + $(P)$(TBL):tran.F + 27 + 52 + + + + + + + + + 1 + false + false + + + text #23 + PITCH + 27 + 28 + + + + + 1 + + + text #26 + (mR) + 130 + 54 + 20 + 14 + 1 + +
diff --git a/opticsApp/op/bob/autoconvert/CoarseFineMotor.bob b/opticsApp/op/bob/autoconvert/CoarseFineMotor.bob new file mode 100644 index 0000000..b3dade8 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/CoarseFineMotor.bob @@ -0,0 +1,145 @@ + + + CoarseFineMotor + 371 + 130 + 130 + 100 + + + + + false + 5 + + menu #6 + $(P)mode + 5 + 45 + 95 + 20 + + + + + false + + + text #9 + Mode + 5 + 25 + + + + + 1 + + + rectangle #12 + 130 + 23 + + + + + + + + + + + text #15 + Coarse/Fine + 130 + + + + + 1 + + + related display #18 + + + CoarseFineMotorHelp.opi + tab + mode descriptions + + + ? + 102 + 35 + 25 + + + + + + + + + + + related display #21 + + + CoarseFineMotorShow.opi + + MOT + + replace + Graphic of stage + + + More + 90 + 75 + 40 + 20 + + + + + + + + + + + related display #24 + + + motorx.opi + + MOT + + tab + Combined (soft) motor + + + motor2x.opi + + $(CM) + $(FM) +

$(PM)

+
+ tab + Actual motors +
+
+ Motors + 5 + 75 + 55 + 20 + + + + + + + + +
+
diff --git a/opticsApp/op/bob/autoconvert/CoarseFineMotorHelp.bob b/opticsApp/op/bob/autoconvert/CoarseFineMotorHelp.bob new file mode 100644 index 0000000..f55aa11 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/CoarseFineMotorHelp.bob @@ -0,0 +1,294 @@ + + + CoarseFineMotorHelp + 327 + 507 + 400 + 225 + + + + + false + 5 + + rectangle #6 + 400 + 23 + + + + + + + + + + + text #9 + Coarse/Fine Mode choices + 400 + + + + + 1 + + + text #12 + Mode + 5 + 25 + 80 + + + + + 1 + + + text #15 + AUTO + 5 + 45 + 80 + 14 + 1 + + + text #18 + FINE SCAN+ or FINE SCAN-, depending on + 100 + 45 + 300 + 14 + true + + + text #21 + the preferred direction (BDST field) of + 100 + 60 + 300 + 14 + true + + + polyline #24 + 5 + 43 + 390 + 0 + 1 + + + + + + + + + + + + + rectangle #28 + 5 + 23 + 390 + 158 + 1 + + + + + + + + + true + + + polyline #31 + 89 + 43 + 0 + 138 + 1 + + + + + + + + + + + + + text #35 + FINE SCAN+ + 5 + 95 + 80 + 14 + 1 + + + text #38 + Move fine motor only, if possible. + 100 + 95 + 300 + 14 + true + + + text #41 + If coarse motor must move, position it so + 100 + 110 + 300 + 14 + true + + + text #44 + that fine motor is at it's low limit. + 100 + 125 + 300 + 14 + true + + + composite #47 + 5 + 145 + 395 + 14 + + true + + text #50 + FINE SCAN- + 80 + 14 + 1 + + + text #53 + ...high limit + 95 + 300 + 14 + true + + + + composite #56 + 5 + 165 + 395 + 14 + + true + + text #59 + FINE WANDER + 80 + 14 + 1 + + + text #62 + ...midpoint + 95 + 300 + 14 + true + + + + text #65 + For coarse-only, or fine-only motions, use the coarse + 5 + 185 + 390 + 14 + true + + + polyline #68 + 5 + 92 + 390 + 0 + 1 + + + + + + + + + + + + + polyline #72 + 5 + 142 + 390 + 0 + 1 + + + + + + + + + + + + + polyline #76 + 5 + 162 + 390 + 0 + 1 + + + + + + + + + + + + + text #80 + the fine motor + 100 + 75 + 300 + 14 + true + + + text #83 + or fine motor directly. This software will cooperate. + 5 + 200 + 390 + 14 + true + + diff --git a/opticsApp/op/bob/autoconvert/CoarseFineMotorShow.bob b/opticsApp/op/bob/autoconvert/CoarseFineMotorShow.bob new file mode 100644 index 0000000..859ce75 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/CoarseFineMotorShow.bob @@ -0,0 +1,257 @@ + + + CoarseFineMotorShow + 375 + 268 + 470 + 100 + + + + + false + 5 + + menu #6 + $(P)mode + 5 + 45 + 95 + 20 + + + + + false + + + text #9 + Mode + 5 + 25 + + + + + 1 + + + rectangle #12 + 130 + 23 + + + + + + + + + + + text #15 + Coarse/Fine + 130 + + + + + 1 + + + related display #18 + + + CoarseFineMotorHelp.opi + tab + help + + + ? + 102 + 35 + 25 + + + + + + + + + + + indicator + {indicator} + 178 + 52 + 250 + 25 + false + 1 + 1 + + + indicator + {indicator} + 228 + 24 + 150 + 25 + false + 1 + 1 + + + text #29 + F + 213 + 27 + 10 + + + + + 1 + + + text #32 + C + 163 + 57 + 10 + + + + + 1 + + + related display #35 + + + yyTransform_full.opi + + limitProc + + tab + limitProc + + + yyTransform_full.opi + + moveCF + + tab + moveCF + + + yyCalcoutRecord.opi + + closeGate + + tab + closeGate calc + + + yyCalcoutRecord.opi + + fineModeCalc + + tab + fineModeCalc + + + yyCalcoutRecord.opi + + doneCalc + + tab + done calc + + + yyCalcoutRecord.opi + + RBV + + tab + RBV calc + + + DEBUG + 430 + 85 + 40 + 15 + + + + + + + + + + + related display #43 + + + motorx.opi + + MOT + + tab + Combined (soft) motor + + + motor2x.opi + + $(CM) + $(FM) +

$(PM)

+
+ tab + Actual motors +
+
+ Motors + 5 + 75 + 55 + 20 + + + + + + + + +
+ + related display #47 + + + CoarseFineMotor.opi + + MOT + + replace + Small display + + + Less + 90 + 75 + 40 + 20 + + + + + + + + + +
diff --git a/opticsApp/op/bob/autoconvert/Io.bob b/opticsApp/op/bob/autoconvert/Io.bob new file mode 100644 index 0000000..ba33503 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/Io.bob @@ -0,0 +1,1407 @@ + + + Io + 366 + 194 + 545 + 460 + + + + + false + 5 + + text #6 + Io + 255 + 2 + 60 + 25 + + + + + + + + + 1 + + + text #9 + Io.adl + 461 + 2 + 80 + 10 + + + + + 2 + + + text update #12 + $(P)HePath.DESC + 10 + 296 + 131 + 15 + + + + + + + + + 6 + false + 2 + false + + + text entry #16 + $(P)HePath + 142 + 291 + 60 + 25 + + + + + + + + + 1 + false + false + + + text update #20 + $(P)HePath.EGU + 206 + 296 + 50 + 15 + + + + + + + + + 6 + false + false + + + text update #24 + $(P)airPath.DESC + 10 + 326 + 131 + 15 + + + + + + + + + 6 + false + 2 + false + + + text entry #28 + $(P)airPath + 142 + 321 + 60 + 25 + + + + + + + + + 1 + false + false + + + text update #32 + $(P)airPath.EGU + 206 + 326 + 50 + 15 + + + + + + + + + 6 + false + false + + + text update #36 + $(P)Be.DESC + 272 + 296 + 131 + 15 + + + + + + + + + 6 + false + 2 + false + + + text entry #40 + $(P)Be + 403 + 291 + 60 + 25 + + + + + + + + + 1 + false + false + + + text update #44 + $(P)Be.EGU + 467 + 296 + 50 + 15 + + + + + + + + + 6 + false + false + + + text update #48 + $(P)v2f.DESC + 265 + 163 + 131 + 15 + + + + + + + + + 6 + false + 2 + false + + + text entry #52 + $(P)v2f + 397 + 158 + 60 + 25 + + + + + + + + + 2 + false + false + + + text update #56 + $(P)v2f.EGU + 461 + 163 + 50 + 15 + + + + + + + + + 6 + false + false + + + text update #60 + $(P)flux.DESC + 1 + 32 + 113 + 18 + + + + + + + + + 6 + false + 2 + false + + + text update #64 + $(P)flux + 115 + 30 + 23 + + + + + + + + + 2 + false + 2 + false + + + text update #68 + $(P)flux.EGU + 220 + 34 + 80 + 15 + + + + + + + + + 6 + false + false + + + related display #72 + + + Io_small.opi + replace + small + + + small + 2 + 2 + 60 + 23 + + + + + + + text update #75 + $(P)detector.DESC + 1 + 60 + 113 + 18 + + + + + + + + + 6 + false + 2 + false + + + text update #79 + $(P)detector + 115 + 58 + 23 + + + + + + + + + 2 + false + 2 + false + + + text update #83 + $(P)detector.EGU + 220 + 62 + 80 + 15 + + + + + + + + + 6 + false + false + + + text update #87 + $(P)ionAbs + 115 + 110 + 18 + + + + + + + + + 5 + false + 2 + false + + + text update #91 + $(P)ionAbs.DESC + 1 + 111 + 113 + 16 + + + + + + + + + 6 + false + 2 + false + + + text update #95 + $(P)ionAbs.EGU + 220 + 112 + 80 + 15 + + + + + + + + + 6 + false + false + + + text update #99 + $(P)ionPhotons.DESC + 1 + 87 + 113 + 16 + + + + + + + + + 6 + false + 2 + false + + + text update #103 + $(P)ionPhotons + 115 + 86 + 18 + + + + + + + + + 2 + false + 2 + false + + + text update #107 + $(P)ionPhotons.EGU + 220 + 88 + 80 + 15 + + + + + + + + + 6 + false + false + + + text update #111 + $(S).S1 + 397 + 62 + 80 + 18 + + + + + + + + + 2 + false + false + + + text update #115 + $(S).FREQ + 397 + 37 + 80 + 18 + + + + + + + + + 2 + false + false + + + text #119 + Hz + 482 + 39 + 70 + 14 + true + + + text #122 + scaler cnts + 482 + 64 + 70 + 14 + true + + + text #125 + scaler cnts + 482 + 89 + 70 + 14 + true + + + text #128 + counter clock + 292 + 39 + 95 + 14 + 2 + + + text #131 + clock ticks + 292 + 64 + 95 + 14 + 2 + + + text #134 + Io counts + 292 + 89 + 95 + 14 + 2 + + + text update #137 + $(S).S5 + 397 + 87 + 80 + 18 + + + + + + + + + 1 + false + false + + + text #141 + 2'' proportional cntr + 377 + 349 + 140 + 12 + + + + + 2 + + + text entry #144 + $(P)efficiency + 404 + 322 + 60 + 25 + + + + + + + + + 1 + false + false + + + menu #148 + $(P)ArPcntr + 468 + 321 + 75 + 23 + + + + + false + + + text update #151 + $(P)efficiency.DESC + 272 + 327 + 131 + 15 + + + + + + + + + 6 + false + 2 + false + + + polyline #155 + 10 + 367 + 525 + 4 + 4 + + + + + + + + + + + + + text update #159 + $(P)kapton2.DESC + 272 + 409 + 131 + 15 + + + + + + + + + 6 + false + 2 + false + + + text entry #163 + $(P)kapton2 + 404 + 404 + 60 + 25 + + + + + + + + + 1 + false + false + + + text update #167 + $(P)kapton2.EGU + 468 + 409 + 50 + 15 + + + + + + + + + 6 + false + false + + + text update #171 + $(P)kapton1.DESC + 272 + 380 + 131 + 15 + + + + + + + + + 6 + false + 2 + false + + + text entry #175 + $(P)kapton1 + 404 + 375 + 60 + 25 + + + + + + + + + 1 + false + false + + + text update #179 + $(P)kapton1.EGU + 468 + 380 + 50 + 15 + + + + + + + + + 6 + false + false + + + text update #183 + $(P)activeLen.DESC + 10 + 380 + 131 + 15 + + + + + + + + + 6 + false + 2 + false + + + text entry #187 + $(P)activeLen + 142 + 375 + 60 + 25 + + + + + + + + + 1 + false + false + + + text update #191 + $(P)activeLen.EGU + 206 + 380 + 50 + 15 + + + + + + + + + 6 + false + false + + + text update #195 + $(P)deadFront.DESC + 10 + 409 + 131 + 15 + + + + + + + + + 6 + false + 2 + false + + + text entry #199 + $(P)deadFront + 142 + 404 + 60 + 25 + + + + + + + + + 1 + false + false + + + text update #203 + $(P)deadFront.EGU + 206 + 409 + 50 + 15 + + + + + + + + + 6 + false + false + + + text update #207 + $(P)deadRear.DESC + 10 + 438 + 131 + 15 + + + + + + + + + 6 + false + 2 + false + + + text entry #211 + $(P)deadRear + 142 + 433 + 60 + 25 + + + + + + + + + 1 + false + false + + + text update #215 + $(P)deadRear.EGU + 206 + 438 + 50 + 15 + + + + + + + + + 6 + false + false + + + text #219 + ion chamber fill gas (atm) + 176 + 218 + 250 + 15 + + + + + + + + + 1 + + + rectangle #222 + 104 + 210 + 400 + 75 + 5 + + + + + + + + + true + + + text entry #225 + $(P)xAr + 342 + 252 + 60 + 25 + + + + + + + + + 1 + false + false + + + text #229 + Argon + 342 + 237 + 60 + 15 + + + + + 1 + + + text entry #232 + $(P)xAr + 412 + 252 + 60 + 25 + + + + + + + + + 1 + false + false + + + text #236 + CO2 + 412 + 237 + 60 + 15 + + + + + 1 + + + text entry #239 + $(P)xHe + 272 + 252 + 60 + 25 + + + + + + + + + 1 + false + false + + + text #243 + He + 272 + 237 + 60 + 15 + + + + + 1 + + + text #246 + Air + 132 + 237 + 60 + 15 + + + + + 1 + + + text entry #249 + $(P)xAir + 132 + 252 + 60 + 25 + + + + + + + + + 1 + false + false + + + text #253 + Nitrogen + 202 + 237 + 60 + 15 + + + + + 1 + + + text entry #256 + $(P)xN2 + 202 + 252 + 60 + 25 + + + + + + + + + 1 + false + false + + + text #260 + CHESS chamber (17.5, 60, 17.5 mm) + 306 + 444 + 236 + 14 + 2 + + + text update #263 + $(P)scaler.DESC + 171 + 135 + 110 + 15 + + + + + + + + + 6 + false + false + + + menu #267 + $(P)scaler + 128 + 132 + 35 + 18 + + + + + false + + + text #270 + scaler channel + 3 + 135 + 120 + 15 + + + + + 2 + + + text #273 + using + 28 + 188 + 95 + 14 + 2 + + + text entry #276 + $(P)E_using + 129 + 186 + 80 + 18 + + + + + + + + + 1 + false + false + + + text update #280 + $(P)E_using.EGU + 214 + 188 + 50 + 14 + + + + + 6 + false + false + + + text #284 + monochromator + 24 + 164 + 95 + 14 + 2 + + + text update #287 + $(MONO) + 129 + 160 + 80 + 18 + + + + + + + + + 1 + false + false + + + text update #291 + $(MONO).EGU + 214 + 164 + 50 + 14 + + + + + 6 + false + false + + + text update #295 + $(P)VperA + 396 + 133 + 80 + 18 + + + + + + + + + 2 + false + false + + + text #299 + Current Amp + 293 + 112 + 95 + 14 + 2 + + + text entry #302 + $(P)VperA + 396 + 110 + 80 + 18 + + + + + + + + + 2 + false + false + + + text update #306 + $(P)VperA.EGU + 483 + 112 + 50 + 14 + + + + + 6 + false + false + + diff --git a/opticsApp/op/bob/autoconvert/Io_small.bob b/opticsApp/op/bob/autoconvert/Io_small.bob new file mode 100644 index 0000000..0e5fc9b --- /dev/null +++ b/opticsApp/op/bob/autoconvert/Io_small.bob @@ -0,0 +1,224 @@ + + + Io_small + 698 + 154 + 300 + 118 + + + + + false + 5 + + text #6 + Io + 136 + 2 + 40 + 25 + + + + + + + + + 1 + + + text #9 + Io_small.adl + 215 + 2 + 80 + 10 + + + + + 2 + + + text update #12 + $(P)flux.DESC + 1 + 35 + 113 + 18 + + + + + + + + + 6 + false + 2 + false + + + text update #16 + $(P)flux + 115 + 33 + 23 + + + + + + + + + 2 + false + 2 + false + + + text update #20 + $(P)flux.EGU + 220 + 37 + 80 + 15 + + + + + + + + + 6 + false + false + + + related display #24 + + + Io.opi + replace + all + + + all + 2 + 2 + 60 + 23 + + + + + + + text update #27 + $(P)detector.DESC + 1 + 63 + 113 + 18 + + + + + + + + + 6 + false + 2 + false + + + text update #31 + $(P)detector + 115 + 61 + 23 + + + + + + + + + 2 + false + 2 + false + + + text update #35 + $(P)detector.EGU + 220 + 65 + 80 + 15 + + + + + + + + + 6 + false + false + + + text #39 + scaler channel + 18 + 94 + 113 + 18 + + + + + 2 + + + menu #42 + $(P)scaler + 140 + 90 + 35 + 21 + + + + + false + + + text update #45 + $(P)scaler.DESC + 186 + 94 + 110 + 18 + + + + + + + + + 6 + false + false + + diff --git a/opticsApp/op/bob/autoconvert/MLLH.bob b/opticsApp/op/bob/autoconvert/MLLH.bob new file mode 100644 index 0000000..2cb3f1a --- /dev/null +++ b/opticsApp/op/bob/autoconvert/MLLH.bob @@ -0,0 +1,167 @@ + + + MLLH + 503 + 49 + 390 + 250 + + + + + false + 5 + + composite #6 + MLLH_bare.bob + 390 + 206 + + + related display #8 + + + motorx.opi + + $(Q)th + + tab + th + + + motorx.opi + + $(Q)z + + tab + z + + + motorx.opi + + $(Q)x + + tab + x + + + yyTransform.opi + + $(Q)t1 + + tab + t1 + + + yyTransform.opi + + $(Q)t2 + + tab + t2 + + + yyTransform.opi + + $(Q)t3 + + tab + t3 + + + yyCalcoutRecord.opi + + $(Q)calcDone + + tab + calcDone + + + yySeq.opi + + $(Q)softPut + + tab + softPut + + + debug + 290 + 215 + 45 + 20 + + + + + + + + + + + related display #18 + + + MLLH_more.opi + replace + more + + + More + 340 + 215 + 40 + 20 + + + + + + + + + + + message button #21 + + + $(P)$(Q)sync + 1 + Write + + + $(P)$(Q)sync + Sync to Motors + 20 + 215 + 110 + 20 + + + + + + + message button #24 + + + $(P)$(Q)stop + 1 + Write + + + $(P)$(Q)stop + Stop MLLH + 160 + 215 + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/MLLH_bare.bob b/opticsApp/op/bob/autoconvert/MLLH_bare.bob new file mode 100644 index 0000000..ca66a8b --- /dev/null +++ b/opticsApp/op/bob/autoconvert/MLLH_bare.bob @@ -0,0 +1,88 @@ + + + MLLH_bare + 945 + 281 + 390 + 210 + + + + + false + 5 + + rectangle #6 + 390 + 25 + + + + + + + + + + + composite #9 + motorx_bare.bob + + $(Q)th + + 10 + 30 + 116 + 176 + + + composite #11 + motorx_bare.bob + + $(Q)z + + 135 + 30 + 116 + 176 + + + composite #13 + motorx_bare.bob + + $(Q)x + + 260 + 30 + 116 + 176 + + + text #15 + MLL H stage + 10 + 370 + 22 + + + + + 1 + + + polyline #18 + 22 + 389 + 3 + + + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/MLLH_more.bob b/opticsApp/op/bob/autoconvert/MLLH_more.bob new file mode 100644 index 0000000..03c366f --- /dev/null +++ b/opticsApp/op/bob/autoconvert/MLLH_more.bob @@ -0,0 +1,600 @@ + + + MLLH_more + 993 + 401 + 390 + 420 + + + + + false + 5 + + rectangle #6 + 104 + 347 + 237 + 33 + 1 + + + + + + + + + true + + + oval #9 + 115 + 357 + 12 + 12 + 1 + + + + + + + + + true + + + oval #12 + 318 + 357 + 12 + 12 + 1 + + + + + + + + + true + + + arc #15 + 120 + 290 + 23 + 21 + 120.0 + 125.0 + 1 + + + + + true + + + arc #18 + 91 + 291 + 23 + 21 + 295.0 + 125.0 + 1 + + + + + true + + + polyline #21 + 107 + 311 + 0 + 36 + 1 + + + + + + + + + + + + + polyline #25 + 128 + 311 + 0 + 36 + 1 + + + + + + + + + + + + + polyline #29 + 107 + 271 + 0 + 1 + + + + + + + + + + + + + polyline #33 + 128 + 271 + 0 + 1 + + + + + + + + + + + + + polyline #37 + 108 + 270 + 20 + 0 + 1 + + + + + + + + + + + + + text entry #41 + $(P)$(Q)xLen + 191 + 306 + 60 + + + + + + + + + 1 + false + false + + + text entry #45 + $(P)$(Q)zBendLen + 28 + 324 + 60 + + + + + + + + + 1 + false + false + + + polyline #49 + 92 + 303 + 0 + 60 + 1 + + + + + + + + + + + + + polyline #54 + 215 + 384 + 0 + 16 + 1 + + + + + + + + + + + + + text entry #59 + $(P)$(Q)zNoseLen + 233 + 391 + 60 + + + + + + + + + 1 + false + false + + + polyline #63 + 119 + 331 + 202 + 0 + 1 + + + + + + + + + + + + + polygon #68 + 210 + 381 + 10 + 10 + 0 + + + + + + + + + + + + + + + + + + + + + polygon #73 + 312 + 326 + 10 + 10 + 0 + + + + + + + + + + + + + + + + + + + + + polygon #78 + 120 + 326 + 10 + 10 + 0 + + + + + + + + + + + + + + + + + + + + + polygon #83 + 210 + 393 + 10 + 10 + 0 + + + + + + + + + + + + + + + + + + + + + polygon #88 + 86 + 354 + 10 + 10 + 0 + + + + + + + + + + + + + + + + + + + + + polygon #93 + 87 + 301 + 10 + 10 + 0 + + + + + + + + + + + + + + + + + + + + + composite #98 + MLLH_bare.bob + 390 + 206 + + + related display #100 + + + motorx.opi + + $(Q)th + + tab + th + + + motorx.opi + + $(Q)z + + tab + z + + + motorx.opi + + $(Q)x + + tab + x + + + yyTransform.opi + + $(Q)t1 + + tab + t1 + + + yyTransform.opi + + $(Q)t2 + + tab + t2 + + + yyTransform.opi + + $(Q)t3 + + tab + t3 + + + yyCalcoutRecord.opi + + $(Q)calcDone + + tab + calcDone + + + yySeq.opi + + $(Q)softPut + + tab + softPut + + + debug + 290 + 230 + 45 + 20 + + + + + + + + + + + related display #110 + + + MLLH.opi + replace + more + + + Less + 340 + 230 + 40 + 20 + + + + + + + + + + + message button #113 + + + $(P)$(Q)sync + 1 + Write + + + $(P)$(Q)sync + Sync + 10 + 230 + 40 + 20 + + + + + + + message button #116 + + + $(P)$(Q)stop + 1 + Write + + + $(P)$(Q)stop + Stop MLLH + 160 + 215 + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/MLLV.bob b/opticsApp/op/bob/autoconvert/MLLV.bob new file mode 100644 index 0000000..7064828 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/MLLV.bob @@ -0,0 +1,204 @@ + + + MLLV + 261 + 346 + 640 + 250 + + + + + false + 5 + + composite #6 + MLLV_bare.bob + 640 + 206 + + + related display #8 + + + motorx.opi + + $(Q)th + + tab + th + + + motorx.opi + + $(Q)z + + tab + z + + + motorx.opi + + $(Q)y + + tab + y + + + motorx.opi + + $(Q)chi + + tab + chi + + + motorx.opi + + $(Q)x + + tab + x + + + yyTransform.opi + + $(Q)tFwd + + tab + tFwd + + + yyTransform.opi + + $(Q)tRev + + tab + tRev + + + yyTransform.opi + + $(Q)tLimits + + tab + tLimits + + + yyTransform.opi + + $(Q)tLimits1 + + tab + tLimits1 + + + yyCalcoutRecord.opi + + $(Q)calcDone + + tab + calcDone + + + yyCalcoutRecord.opi + + $(Q)closeGate + + tab + closeGate + + + MLLV_misc.opi + tab + misc + + + yySeq.opi + + $(Q)softPut + + tab + softPut + + + debug + 480 + 215 + 70 + 20 + + + + + + + + + + + related display #23 + + + MLLV_more.opi + replace + more + + + More + 555 + 215 + 70 + 20 + + + + + + + + + + + message button #26 + + + $(P)$(Q)sync + 1 + Write + + + $(P)$(Q)sync + Sync to motors + 20 + 215 + 110 + 20 + + + + + + + message button #29 + + + $(P)$(Q)stop + 1 + Write + + + $(P)$(Q)stop + Stop MLLV + 270 + 215 + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/MLLV_bare.bob b/opticsApp/op/bob/autoconvert/MLLV_bare.bob new file mode 100644 index 0000000..6d99c5e --- /dev/null +++ b/opticsApp/op/bob/autoconvert/MLLV_bare.bob @@ -0,0 +1,110 @@ + + + MLLV_bare + 600 + 268 + 640 + 210 + + + + + false + 5 + + rectangle #6 + 640 + 25 + + + + + + + + + + + composite #9 + motorx_bare.bob + + $(Q)th + + 10 + 30 + 116 + 176 + + + text #11 + MLL V stage + 10 + 620 + 22 + + + + + 1 + + + polyline #14 + 22 + 638 + 3 + + + + + + + + + + + + + composite #18 + motorx_bare.bob + + $(Q)z + + 135 + 30 + 116 + 176 + + + composite #20 + motorx_bare.bob + + $(Q)y + + 260 + 30 + 116 + 176 + + + composite #22 + motorx_bare.bob + + $(Q)chi + + 385 + 30 + 116 + 176 + + + composite #24 + motorx_bare.bob + + $(Q)x + + 510 + 30 + 116 + 176 + + diff --git a/opticsApp/op/bob/autoconvert/MLLV_more.bob b/opticsApp/op/bob/autoconvert/MLLV_more.bob new file mode 100644 index 0000000..639d9ab --- /dev/null +++ b/opticsApp/op/bob/autoconvert/MLLV_more.bob @@ -0,0 +1,204 @@ + + + MLLV_more + 905 + 346 + 640 + 250 + + + + + false + 5 + + composite #6 + MLLV_bare.bob + 640 + 206 + + + related display #8 + + + MLLV.opi + replace + more + + + Less + 555 + 215 + 70 + 20 + + + + + + + + + + + message button #11 + + + $(P)$(Q)sync + 1 + Write + + + $(P)$(Q)sync + Sync to motors + 20 + 215 + 110 + 20 + + + + + + + message button #14 + + + $(P)$(Q)stop + 1 + Write + + + $(P)$(Q)stop + Stop MLLV + 270 + 215 + + + + + + + + + + + related display #17 + + + motorx.opi + + $(Q)th + + tab + th + + + motorx.opi + + $(Q)z + + tab + z + + + motorx.opi + + $(Q)y + + tab + y + + + motorx.opi + + $(Q)chi + + tab + chi + + + motorx.opi + + $(Q)x + + tab + x + + + yyTransform.opi + + $(Q)tFwd + + tab + tFwd + + + yyTransform.opi + + $(Q)tRev + + tab + tRev + + + yyTransform.opi + + $(Q)tLimits + + tab + tLimits + + + yyTransform.opi + + $(Q)tLimits1 + + tab + tLimits1 + + + yyCalcoutRecord.opi + + $(Q)calcDone + + tab + calcDone + + + yyCalcoutRecord.opi + + $(Q)closeGate + + tab + closeGate + + + MLLV_misc.opi + tab + misc + + + yySeq.opi + + $(Q)softPut + + tab + softPut + + + debug + 480 + 215 + 70 + 20 + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/SGM.bob b/opticsApp/op/bob/autoconvert/SGM.bob new file mode 100644 index 0000000..013658a --- /dev/null +++ b/opticsApp/op/bob/autoconvert/SGM.bob @@ -0,0 +1,2784 @@ + + + SGM + 812 + 582 + 592 + 290 + + + + + false + 5 + + rectangle #6 + 390 + 25 + 205 + + + + + + + + + + + rectangle #9 + 392 + 165 + 200 + 125 + + + + + + + + + + + arc #12 + 410 + 36 + 200 + 200 + 238.0 + 47.0 + + + + + true + + + arc #15 + 410 + 34 + 200 + 200 + 238.0 + 47.0 + + + + + true + + + polyline #18 + 325 + 110 + 60 + 0 + 1 + + + + + 1 + + + + + + + + + polyline #22 + 397 + 174 + 11 + 19 + + + + + + + + + + + + + polyline #26 + 575 + 175 + 12 + 19 + + + + + + + + + + + + + text #30 + r' + 549 + 205 + 20 + + + + + + + + + 2 + + + text #33 + r + 428 + 205 + 10 + + + + + + + + + 2 + + + polyline #36 + 494 + 182 + 1 + 90 + 1 + + + + + 1 + + + + + + + + + text #40 + x + 484 + 266 + 10 + + + + + + + + + 2 + + + polyline #43 + 484 + 231 + 10 + 39 + 1 + + + + + + + + + + + + + + + arc #47 + 483 + 238 + 20 + 20 + 223.0 + 58.0 + 1 + + + + + true + + + text #50 + phi + 429 + 256 + 30 + + + + + + + + + 2 + + + rectangle #53 + 595 + 25 + + + + + + + + + + + text #56 + Spherical Grating Monochromator + 595 + + + + + 1 + + + polygon #59 + 380 + 77 + 10 + 15 + 1 + + + + + + + + + + + + + + + + + + + + + + false + + $(P)SGM$(N):auto + + + + + rectangle #64 + 320 + 82 + 15 + 5 + + + + + + + + + + + + false + + $(P)SGM$(N):auto + + + + + polyline #68 + 390 + 23 + 2 + 287 + 2 + + + + + + + + + + + + + text #72 + Calib: + 325 + 125 + 60 + 10 + + + + + + + + + true + + + choice button #75 + $(P)SGM$(N):auto + 325 + 28 + 60 + 45 + + + + + false + false + + Item 1 + Item 2 + + + + message button #78 + + + $(P)SGM$(N):move.PROC + 1 + Write + + + $(P)SGM$(N):move.PROC + Move + 335 + 75 + 40 + 20 + + + + + + + menu #81 + $(P)SGM$(N):set + 325 + 135 + 60 + 20 + + + + + false + + + rectangle #84 + 5 + 130 + 32 + + + + + + + + + + + text #87 + SCAN CONTROL + 5 + 130 + 10 + + + + + + + + + 1 + + + message button #90 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + Stop + 69 + 140 + 35 + 20 + + + + + + + + + + + message button #93 + + + $(P)SGM$(N):Energy:scanParms.GO + 1 + Write + + + $(P)SGM$(N):Energy:scanParms.GO + Go + 48 + 140 + 20 + 20 + + + + + + + message button #96 + + + $(P)SGM$(N):Energy:scanParms.LOAD + 1 + Write + + + $(P)SGM$(N):Energy:scanParms.LOAD + Ld + 27 + 140 + 20 + 20 + + + + + + + related display #99 + + + scanParms.opi + + SGM$(N):Energy + SGM$(N):Energy + + tab + Energy-scan parameters + + + + 6 + 140 + 20 + 20 + + + + + + + text update #102 + $(P)SGM$(N):EnergyRBV + 5 + 57 + + + + + + + + + + + + + 1 + false + false + + + text entry #106 + $(P)SGM$(N):Energy + 5 + 73 + 25 + + + + + + + + + 1 + false + false + + + message button #110 + + + $(P)SGM$(N):EnergyTweak.A + 1 + Write + + + $(P)SGM$(N):EnergyTweak.A + > + 85 + 109 + 20 + 20 + + + + + + + text entry #113 + $(P)SGM$(N):EnergyTweak.C + 25 + 109 + 60 + + + + + + + + + 1 + false + false + + + message button #117 + + + $(P)SGM$(N):EnergyTweak.B + 1 + Write + + + $(P)SGM$(N):EnergyTweak.B + < + 5 + 109 + 20 + 20 + + + + + + + text update #120 + $(P)SGM$(N):Energy.DRVL + 5 + 96 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #124 + $(P)SGM$(N):Energy.DRVH + 5 + 44 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #128 + Energy(eV) + 5 + 25 + + + + + 1 + + + text #131 + SGM Motors + 390 + 25 + 200 + 10 + + + + + + + + + 1 + + + message button #134 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + Stop + 393 + 135 + 60 + 27 + + + + + + + + + + + polyline #137 + 320 + 23 + 2 + 141 + 2 + + + + + + + + + + + + + polyline #141 + 163 + 594 + 2 + 2 + + + + + + + + + + + + + text #145 + Wavelen(A) + 110 + 25 + + + + + 1 + + + text update #148 + $(P)SGM$(N):LambdaRBV + 110 + 57 + + + + + + + + + + + + + 1 + false + false + + + text entry #152 + $(P)SGM$(N):Lambda + 110 + 73 + 25 + + + + + + + + + 1 + false + false + + + text update #156 + $(P)SGM$(N):Lambda.DRVH + 110 + 44 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #160 + $(P)SGM$(N):Lambda.DRVL + 110 + 96 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #164 + 110 + 130 + 32 + + + + + + + + + + + text #167 + SCAN CONTROL + 110 + 130 + 10 + + + + + + + + + 1 + + + message button #170 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + Stop + 174 + 140 + 35 + 20 + + + + + + + + + + + message button #173 + + + $(P)SGM$(N):Lambda:scanParms.GO + 1 + Write + + + $(P)SGM$(N):Lambda:scanParms.GO + Go + 153 + 140 + 20 + 20 + + + + + + + message button #176 + + + $(P)SGM$(N):Lambda:scanParms.LOAD + 1 + Write + + + $(P)SGM$(N):Lambda:scanParms.LOAD + Ld + 132 + 140 + 20 + 20 + + + + + + + related display #179 + + + scanParms.opi + + SGM$(N):Lambda + SGM$(N):Lambda + + tab + Wavelength-scan parameters + + + + 111 + 140 + 20 + 20 + + + + + + + message button #182 + + + $(P)SGM$(N):LambdaTweak.A + 1 + Write + + + $(P)SGM$(N):LambdaTweak.A + > + 190 + 109 + 20 + 20 + + + + + + + text entry #185 + $(P)SGM$(N):LambdaTweak.C + 130 + 109 + 60 + + + + + + + + + 1 + false + false + + + message button #189 + + + $(P)SGM$(N):LambdaTweak.B + 1 + Write + + + $(P)SGM$(N):LambdaTweak.B + < + 110 + 109 + 20 + 20 + + + + + + + rectangle #192 + 215 + 130 + 32 + + + + + + + + + + + text #195 + SCAN CONTROL + 215 + 130 + 10 + + + + + + + + + 1 + + + message button #198 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + Stop + 279 + 140 + 35 + 20 + + + + + + + + + + + message button #201 + + + $(P)SGM$(N):phi:scanParms.GO + 1 + Write + + + $(P)SGM$(N):phi:scanParms.GO + Go + 258 + 140 + 20 + 20 + + + + + + + message button #204 + + + $(P)SGM$(N):phi:scanParms.LOAD + 1 + Write + + + $(P)SGM$(N):phi:scanParms.LOAD + Ld + 237 + 140 + 20 + 20 + + + + + + + related display #207 + + + scanParms.opi + + SGM$(N):phi + SGM$(N):phi + + tab + Grating angle scan parameters + + + + 216 + 140 + 20 + 20 + + + + + + + text update #210 + $(P)SGM$(N):phiRBV + 215 + 57 + + + + + + + + + + + + + 1 + false + false + + + text entry #214 + $(P)SGM$(N):phi + 215 + 73 + 25 + + + + + + + + + 1 + false + false + + + message button #218 + + + $(P)SGM$(N):phiTweak.A + 1 + Write + + + $(P)SGM$(N):phiTweak.A + > + 295 + 109 + 20 + 20 + + + + + + + text entry #221 + $(P)SGM$(N):phiTweak.C + 235 + 109 + 60 + + + + + + + + + 1 + false + false + + + message button #225 + + + $(P)SGM$(N):phiTweak.B + 1 + Write + + + $(P)SGM$(N):phiTweak.B + < + 215 + 109 + 20 + 20 + + + + + + + text update #228 + $(P)SGM$(N):phi.DRVL + 215 + 96 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #232 + $(P)SGM$(N):phi.DRVH + 215 + 44 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #236 + Phi(deg) + 215 + 25 + + + + + 1 + + + polyline #239 + 22 + 597 + 3 + + + + + + + + + + + + + message button #243 + + + $(P)SGM$(N):sync.PROC + 1 + Write + + + $(P)SGM$(N):sync.PROC + Sync + 335 + 100 + 40 + 20 + + + + + + + polygon #246 + 392 + 177 + 112 + 51 + 1 + + + + + + + + + + + + + + + + + + + + + polygon #250 + 488 + 178 + 102 + 52 + 0 + + + + + + + + + + + + + + + + + + + + + polyline #254 + 457 + 258 + 24 + 7 + 1 + + + + + 1 + + + + + + + + + polyline #258 + 324 + 107 + 5 + 6 + 1 + + + + + + + + + + + + + + + related display #262 + + + yyTransform_full.opi + + SGM$(N):T1 + + tab + T1 calcs (debug) + + + yyTransform_full.opi + + SGM$(N):T2 + + tab + T2 calcs (debug) + + + yyTransform_full.opi + + SGM$(N):T3 + + tab + T3 calcs (debug) + + + yyTransform_full.opi + + SGM$(N):delta + + tab + delta calcs (debug) + + + yyTransform_full.opi + + SGM$(N):EnergyTweak + + tab + Energy tweak calcs (debug) + + + yyTransform_full.opi + + SGM$(N):LambdaTweak + + tab + Lambda tweak calcs (debug) + + + yyTransform_full.opi + + SGM$(N):phiTweak + + tab + phi tweak calcs (debug) + + + yyTransform_full.opi + + SGM$(N):limits + + tab + limit calcs (debug) + + + yySeq_full.opi + + SGM$(N):init + + tab + init + + + yySeq_full.opi + + SGM$(N):init1 + + tab + init1 + + + Debug + 3 + 245 + 45 + 20 + + + + + + + + + + + rectangle #274 + 375 + 82 + 5 + 5 + + + + + + + + + + + + false + + $(P)SGM$(N):auto + + + + + polyline #278 + 519 + 183 + 47 + 24 + 1 + + + + + + + + + + + + + + + menu #282 + $(P)SGM$(N):grating + 5 + 190 + 90 + 20 + + + + + false + + + related display #285 + + + SGM_gratings.opi + tab + display/modify grating table + + + Gratings + 5 + 170 + 70 + 20 + + + + + + + + + + + text #288 + THAT GRATING IS + 5 + 212 + 10 + + + + + + + + + true + + + + false + + $(P)SGM$(N):exists + + + + + text #292 + NOT INSTALLED. + 5 + 222 + 10 + + + + + + + + + true + + + + false + + $(P)SGM$(N):exists + + + + + text #296 + (NOTHING DONE) + 5 + 232 + 10 + + + + + + + + + 1 + + + + false + + $(P)SGM$(N):exists + + + + + related display #300 + + + SGM_tiny.opi + replace + SGM (less) + + + SGM_gratings.opi + tab + Gratings + + + motorx_more.opi + + $(M_rIn) + + tab + r motor (entrance slit) + + + motorx_more.opi + + $(M_x) + + tab + x motor (grating drive) + + + motorx_more.opi + + $(M_rOut) + + tab + r' motor (exit slit) + + + motorx_more.opi + + $(M_g) + + tab + index motor (grating index) + + + More + 4 + 265 + 45 + 20 + + + + + + + + + + + text #308 + Soft limit + 400 + 35 + 60 + 10 + + + + + + + + + 1 + + + + false + + $(P)$(M_rIn).LVIO + + + + + text #312 + Soft limit + 530 + 35 + 60 + 10 + + + + + + + + + 1 + + + + false + + $(P)$(M_rOut).LVIO + + + + + text #316 + Soft limit + 465 + 35 + 60 + 10 + + + + + + + + + 1 + + + + false + + $(P)$(M_x).LVIO + + + + + text #320 + Low limit + 400 + 35 + 60 + 10 + + + + + + + + + 1 + + + + false + + $(P)$(M_rIn).LLS + + + + + text #324 + High limit + 400 + 35 + 60 + 10 + + + + + + + + + 1 + + + + false + + $(P)$(M_rIn).HLS + + + + + text #328 + High limit + 465 + 35 + 60 + 10 + + + + + + + + + 1 + + + + false + + $(P)$(M_x).HLS + + + + + text #332 + Low limit + 465 + 35 + 60 + 10 + + + + + + + + + 1 + + + + false + + $(P)$(M_x).LLS + + + + + text #336 + Low limit + 530 + 35 + 60 + 10 + + + + + + + + + 1 + + + + false + + $(P)$(M_rOut).LLS + + + + + text #340 + High limit + 530 + 35 + 60 + 10 + + + + + + + + + 1 + + + + false + + $(P)$(M_rOut).HLS + + + + + text #344 + AT LIMIT + 531 + 35 + 56 + 10 + + + + + + + + + 1 + + + + false + + $(P)SGM$(N):T2.M + + + + + rectangle #348 + 462 + 120 + 65 + 38 + + + + + + + + + + + text update #351 + $(P)$(M_x).RRBV + 467 + 122 + 56 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #355 + $(P)$(M_x).RVAL + 467 + 130 + 56 + 16 + + + + + + + + + 1 + false + false + + + text #359 + steps + 462 + 148 + 65 + 10 + + + + + 1 + + + text entry #362 + $(P)$(M_x).VAL + 467 + 87 + 56 + + + + + + + + + 1 + false + false + + + text update #366 + $(P)$(M_x).RBV + 467 + 74 + 56 + 14 + + + + + + + + + 1 + false + 1 + false + + + rectangle #370 + 465 + 72 + 60 + 37 + 2 + + + + + + + + + true + + + + false + + $(P)$(M_x).DMOV + + + + + text #374 + $(P)$(M_x) + 465 + 62 + 60 + 10 + + + + + + + + + 1 + + + text update #377 + $(P)$(M_rOut).RBV + 531 + 74 + 56 + 14 + + + + + + + + + 1 + false + 1 + false + + + text #381 + $(P)$(M_rOut) + 530 + 62 + 60 + 10 + + + + + + + + + 1 + + + text entry #384 + $(P)$(M_rOut).VAL + 531 + 87 + 56 + + + + + + + + + 1 + false + false + + + rectangle #388 + 400 + 72 + 60 + 37 + 2 + + + + + + + + + true + + + + false + + $(P)$(M_rIn).DMOV + + + + + text update #392 + $(P)$(M_rIn).RBV + 402 + 74 + 56 + 14 + + + + + + + + + 1 + false + 1 + false + + + text #396 + $(P)$(M_rIn) + 400 + 62 + 60 + 10 + + + + + + + + + 1 + + + text entry #399 + $(P)$(M_rIn).VAL + 402 + 87 + 56 + + + + + + + + + 1 + false + false + + + polyline #403 + 527 + 50 + 0 + 107 + 1 + + + + + + + + + + + + + polyline #407 + 462 + 50 + 0 + 107 + 1 + + + + + + + + + + + + + rectangle #411 + 530 + 72 + 60 + 37 + 2 + + + + + + + + + true + + + + false + + $(P)$(M_rOut).DMOV + + + + + text update #415 + $(P)SGM$(N):T2.H + 465 + 110 + 60 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #419 + $(P)SGM$(N):T2.G + 530 + 110 + 60 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + menu #423 + $(P)SGM$(N):rTrack + 530 + 120 + 60 + 16 + + + + + false + + + text #426 + (m) + 430 + 52 + 30 + 10 + + + + + + + + + 1 + + + text #429 + (mm) + 495 + 52 + 30 + 10 + + + + + + + + + 1 + + + text #432 + (m) + 560 + 52 + 30 + 10 + + + + + + + + + 1 + + + text #435 + r + 400 + 45 + 30 + + + + + 2 + + + text #438 + x + 465 + 45 + 30 + + + + + 2 + + + text #441 + r' + 530 + 45 + 30 + + + + + 2 + + + text #444 + V1.8 + 20 + 8 + + + + + true + + + text #447 + Description: + 100 + 169 + 95 + 18 + + + + + + + + + true + + + text #450 + tangent-arm length: + 100 + 249 + 150 + 14 + + + + + 2 + + + text #453 + included angle: + 100 + 269 + 150 + 14 + + + + + 2 + + + text #456 + radius of curvature: + 100 + 229 + 150 + 14 + + + + + 2 + + + text #459 + diffraction order: + 100 + 189 + 150 + 14 + + + + + 2 + + + text #462 + grating line density: + 100 + 209 + 150 + 14 + + + + + 2 + + + text entry #465 + $(P)SGM$(N):len + 255 + 249 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #469 + $(P)SGM$(N):2Theta + 255 + 269 + 60 + 16 + + + + + + + + + 1 + false + false + + + text update #473 + $(P)SGM$(N):R + 255 + 229 + 60 + 14 + + + + + + + + + 1 + false + false + + + text update #477 + $(P)SGM$(N):gDensity + 255 + 209 + 60 + 14 + + + + + + + + + 1 + false + false + + + text update #481 + $(P)SGM$(N):2Theta.EGU + 320 + 269 + 65 + 14 + + + + + + + + + 1 + false + false + + + text update #485 + $(P)SGM$(N):len.EGU + 320 + 249 + 65 + 14 + + + + + + + + + 1 + false + false + + + text update #489 + $(P)SGM$(N):gDensity.EGU + 320 + 209 + 65 + 14 + + + + + + + + + 1 + false + false + + + text update #493 + $(P)SGM$(N):R.EGU + 320 + 229 + 65 + 14 + + + + + + + + + 1 + false + false + + + text update #497 + $(P)SGM$(N):m.EGU + 325 + 189 + 60 + 14 + + + + + + + + + 1 + false + false + + + text update #501 + $(P)SGM$(N):m + 255 + 189 + 65 + 14 + + + + + + + + + 1 + false + false + + + text update #505 + $(P)SGM$(N):stripeDesc + 195 + 169 + 190 + 18 + + + + + + + + + + + + + 1 + false + false + + diff --git a/opticsApp/op/bob/autoconvert/SGM_gratings.bob b/opticsApp/op/bob/autoconvert/SGM_gratings.bob new file mode 100644 index 0000000..0b7ad44 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/SGM_gratings.bob @@ -0,0 +1,3761 @@ + + + SGM_gratings + 173 + 166 + 600 + 395 + + + + + false + 5 + + text #6 + USE + 20 + 25 + 14 + + + + + 1 + + + message button #9 + + + $(P)SGM$(N):grating + 7 + 2 + 160 + 22 + 16 + + + + + + + message button #12 + + + $(P)SGM$(N):grating + 8 + 2 + 180 + 22 + 16 + + + + + + + message button #15 + + + $(P)SGM$(N):grating + 9 + 2 + 200 + 22 + 16 + + + + + + + message button #18 + + + $(P)SGM$(N):grating + 10 + 2 + 220 + 22 + 16 + + + + + + + rectangle #21 + 178 + 25 + 2 + + + + + + + + + true + + + + false + + $(P)SGM$(N):sel_exists_1.DO8 + + + + + rectangle #25 + 158 + 25 + 2 + + + + + + + + + true + + + + false + + $(P)SGM$(N):sel_exists_1.DO7 + + + + + rectangle #29 + 198 + 25 + 2 + + + + + + + + + true + + + + false + + $(P)SGM$(N):sel_exists_1.DO9 + + + + + rectangle #33 + 218 + 25 + 2 + + + + + + + + + true + + + + false + + $(P)SGM$(N):sel_exists_1.DOA + + + + + message button #37 + + + $(P)SGM$(N):grating + 1 + 2 + 40 + 22 + 16 + + + + + + + message button #40 + + + $(P)SGM$(N):grating + 2 + 2 + 60 + 22 + 16 + + + + + + + message button #43 + + + $(P)SGM$(N):grating + 3 + 2 + 80 + 22 + 16 + + + + + + + message button #46 + + + $(P)SGM$(N):grating + 4 + 2 + 100 + 22 + 16 + + + + + + + message button #49 + + + $(P)SGM$(N):grating + 5 + 2 + 120 + 22 + 16 + + + + + + + rectangle #52 + 78 + 25 + 2 + + + + + + + + + true + + + + false + + $(P)SGM$(N):sel_exists_1.DO3 + + + + + rectangle #56 + 58 + 25 + 2 + + + + + + + + + true + + + + false + + $(P)SGM$(N):sel_exists_1.DO2 + + + + + rectangle #60 + 38 + 25 + 2 + + + + + + + + + true + + + + false + + $(P)SGM$(N):sel_exists_1.DO1 + + + + + rectangle #64 + 98 + 25 + 2 + + + + + + + + + true + + + + false + + $(P)SGM$(N):sel_exists_1.DO4 + + + + + rectangle #68 + 118 + 25 + 2 + + + + + + + + + true + + + + false + + $(P)SGM$(N):sel_exists_1.DO5 + + + + + message button #72 + + + $(P)SGM$(N):grating + 6 + 2 + 140 + 22 + 16 + + + + + + + rectangle #75 + 138 + 25 + 2 + + + + + + + + + true + + + + false + + $(P)SGM$(N):sel_exists_1.DO6 + + + + + message button #79 + + + $(P)SGM$(N):grating + 11 + 2 + 240 + 22 + 16 + + + + + + + message button #82 + + + $(P)SGM$(N):grating + 12 + 2 + 260 + 22 + 16 + + + + + + + message button #85 + + + $(P)SGM$(N):grating + 13 + 2 + 280 + 22 + 16 + + + + + + + message button #88 + + + $(P)SGM$(N):grating + 14 + 2 + 300 + 22 + 16 + + + + + + + message button #91 + + + $(P)SGM$(N):grating + 15 + 2 + 320 + 22 + 16 + + + + + + + rectangle #94 + 278 + 25 + 2 + + + + + + + + + true + + + + false + + $(P)SGM$(N):sel_exists_2.DO3 + + + + + rectangle #98 + 258 + 25 + 2 + + + + + + + + + true + + + + false + + $(P)SGM$(N):sel_exists_2.DO2 + + + + + rectangle #102 + 238 + 25 + 2 + + + + + + + + + true + + + + false + + $(P)SGM$(N):sel_exists_2.DO1 + + + + + rectangle #106 + 298 + 25 + 2 + + + + + + + + + true + + + + false + + $(P)SGM$(N):sel_exists_2.DO4 + + + + + rectangle #110 + 318 + 25 + 2 + + + + + + + + + true + + + + false + + $(P)SGM$(N):sel_exists_2.DO5 + + + + + message button #114 + + + $(P)SGM$(N):grating + 16 + 2 + 340 + 22 + 16 + + + + + + + rectangle #117 + 338 + 25 + 2 + + + + + + + + + true + + + + false + + $(P)SGM$(N):sel_exists_2.DO6 + + + + + text entry #121 + $(P)SGM$(N):sel_exists_1.DO1 + 555 + 40 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #125 + $(P)SGM$(N):sel_exists_1.DO2 + 555 + 60 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #129 + $(P)SGM$(N):sel_exists_1.DO3 + 555 + 80 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #133 + $(P)SGM$(N):sel_exists_1.DO4 + 555 + 100 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #137 + $(P)SGM$(N):sel_exists_1.DO5 + 555 + 120 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #141 + $(P)SGM$(N):sel_exists_1.DO6 + 555 + 140 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #145 + $(P)SGM$(N):sel_exists_1.DO7 + 555 + 160 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #149 + $(P)SGM$(N):sel_exists_1.DO8 + 555 + 180 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #153 + $(P)SGM$(N):sel_exists_1.DO9 + 555 + 200 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #157 + $(P)SGM$(N):sel_exists_1.DOA + 555 + 220 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #161 + $(P)SGM$(N):sel_exists_2.DO1 + 555 + 240 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #165 + $(P)SGM$(N):sel_exists_2.DO2 + 555 + 260 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #169 + $(P)SGM$(N):sel_exists_2.DO3 + 555 + 280 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #173 + $(P)SGM$(N):sel_exists_2.DO4 + 555 + 300 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #177 + $(P)SGM$(N):sel_exists_2.DO5 + 555 + 320 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #181 + $(P)SGM$(N):sel_exists_2.DO6 + 555 + 340 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #185 + $(P)SGM$(N):sel_desc_1.STR1 + 30 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #189 + $(P)SGM$(N):sel_desc_1.STR2 + 30 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #193 + $(P)SGM$(N):sel_desc_1.STR3 + 30 + 80 + 16 + + + + + + + + + 1 + false + false + + + text entry #197 + $(P)SGM$(N):sel_desc_1.STR4 + 30 + 100 + 16 + + + + + + + + + 1 + false + false + + + text entry #201 + $(P)SGM$(N):sel_desc_1.STR5 + 30 + 120 + 16 + + + + + + + + + 1 + false + false + + + text entry #205 + $(P)SGM$(N):sel_desc_1.STR6 + 30 + 140 + 16 + + + + + + + + + 1 + false + false + + + text entry #209 + $(P)SGM$(N):sel_desc_1.STR7 + 30 + 160 + 16 + + + + + + + + + 1 + false + false + + + text entry #213 + $(P)SGM$(N):sel_desc_1.STR8 + 30 + 180 + 16 + + + + + + + + + 1 + false + false + + + text entry #217 + $(P)SGM$(N):sel_desc_1.STR9 + 30 + 200 + 16 + + + + + + + + + 1 + false + false + + + text entry #221 + $(P)SGM$(N):sel_desc_1.STRA + 30 + 220 + 16 + + + + + + + + + 1 + false + false + + + text entry #225 + $(P)SGM$(N):sel_desc_2.STR1 + 30 + 240 + 16 + + + + + + + + + 1 + false + false + + + text entry #229 + $(P)SGM$(N):sel_desc_2.STR2 + 30 + 260 + 16 + + + + + + + + + 1 + false + false + + + text entry #233 + $(P)SGM$(N):sel_desc_2.STR3 + 30 + 280 + 16 + + + + + + + + + 1 + false + false + + + text entry #237 + $(P)SGM$(N):sel_desc_2.STR4 + 30 + 300 + 16 + + + + + + + + + 1 + false + false + + + text entry #241 + $(P)SGM$(N):sel_desc_2.STR5 + 30 + 320 + 16 + + + + + + + + + 1 + false + false + + + text entry #245 + $(P)SGM$(N):sel_desc_2.STR6 + 30 + 340 + 16 + + + + + + + + + 1 + false + false + + + text entry #249 + $(P)SGM$(N):sel_m_1.DO7 + 135 + 160 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #253 + $(P)SGM$(N):sel_den_1.DO7 + 180 + 160 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #257 + $(P)SGM$(N):sel_R_1.DO7 + 245 + 160 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #261 + $(P)SGM$(N):sel_Wlow_1.DO7 + 310 + 160 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #265 + $(P)SGM$(N):sel_Whigh_1.DO7 + 375 + 160 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #269 + $(P)SGM$(N):sel_loc_1.DO7 + 440 + 160 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #273 + $(P)SGM$(N):sel_m_1.DO8 + 135 + 180 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #277 + $(P)SGM$(N):sel_den_1.DO8 + 180 + 180 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #281 + $(P)SGM$(N):sel_R_1.DO8 + 245 + 180 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #285 + $(P)SGM$(N):sel_Wlow_1.DO8 + 310 + 180 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #289 + $(P)SGM$(N):sel_Whigh_1.DO8 + 375 + 180 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #293 + $(P)SGM$(N):sel_loc_1.DO8 + 440 + 180 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #297 + $(P)SGM$(N):sel_m_1.DO9 + 135 + 200 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #301 + $(P)SGM$(N):sel_den_1.DO9 + 180 + 200 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #305 + $(P)SGM$(N):sel_R_1.DO9 + 245 + 200 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #309 + $(P)SGM$(N):sel_Wlow_1.DO9 + 310 + 200 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #313 + $(P)SGM$(N):sel_Whigh_1.DO9 + 375 + 200 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #317 + $(P)SGM$(N):sel_loc_1.DO9 + 440 + 200 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #321 + $(P)SGM$(N):sel_m_1.DOA + 135 + 220 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #325 + $(P)SGM$(N):sel_den_1.DOA + 180 + 220 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #329 + $(P)SGM$(N):sel_R_1.DOA + 245 + 220 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #333 + $(P)SGM$(N):sel_Wlow_1.DOA + 310 + 220 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #337 + $(P)SGM$(N):sel_Whigh_1.DOA + 375 + 220 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #341 + $(P)SGM$(N):sel_loc_1.DOA + 440 + 220 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #345 + $(P)SGM$(N):sel_m_1.DO1 + 135 + 40 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #349 + $(P)SGM$(N):sel_den_1.DO1 + 180 + 40 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #353 + $(P)SGM$(N):sel_R_1.DO1 + 245 + 40 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #357 + $(P)SGM$(N):sel_Wlow_1.DO1 + 310 + 40 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #361 + $(P)SGM$(N):sel_Whigh_1.DO1 + 375 + 40 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #365 + $(P)SGM$(N):sel_loc_1.DO1 + 440 + 40 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #369 + $(P)SGM$(N):sel_m_1.DO2 + 135 + 60 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #373 + $(P)SGM$(N):sel_den_1.DO2 + 180 + 60 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #377 + $(P)SGM$(N):sel_R_1.DO2 + 245 + 60 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #381 + $(P)SGM$(N):sel_Wlow_1.DO2 + 310 + 60 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #385 + $(P)SGM$(N):sel_Whigh_1.DO2 + 375 + 60 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #389 + $(P)SGM$(N):sel_loc_1.DO2 + 440 + 60 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #393 + $(P)SGM$(N):sel_m_1.DO3 + 135 + 80 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #397 + $(P)SGM$(N):sel_den_1.DO3 + 180 + 80 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #401 + $(P)SGM$(N):sel_R_1.DO3 + 245 + 80 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #405 + $(P)SGM$(N):sel_Wlow_1.DO3 + 310 + 80 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #409 + $(P)SGM$(N):sel_Whigh_1.DO3 + 375 + 80 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #413 + $(P)SGM$(N):sel_loc_1.DO3 + 440 + 80 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #417 + $(P)SGM$(N):sel_m_1.DO4 + 135 + 100 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #421 + $(P)SGM$(N):sel_den_1.DO4 + 180 + 100 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #425 + $(P)SGM$(N):sel_R_1.DO4 + 245 + 100 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #429 + $(P)SGM$(N):sel_Wlow_1.DO4 + 310 + 100 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #433 + $(P)SGM$(N):sel_Whigh_1.DO4 + 375 + 100 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #437 + $(P)SGM$(N):sel_loc_1.DO4 + 440 + 100 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #441 + $(P)SGM$(N):sel_m_1.DO5 + 135 + 120 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #445 + $(P)SGM$(N):sel_den_1.DO5 + 180 + 120 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #449 + $(P)SGM$(N):sel_R_1.DO5 + 245 + 120 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #453 + $(P)SGM$(N):sel_Wlow_1.DO5 + 310 + 120 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #457 + $(P)SGM$(N):sel_Whigh_1.DO5 + 375 + 120 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #461 + $(P)SGM$(N):sel_loc_1.DO6 + 440 + 120 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #465 + $(P)SGM$(N):sel_m_1.DO6 + 135 + 140 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #469 + $(P)SGM$(N):sel_den_1.DO6 + 180 + 140 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #473 + $(P)SGM$(N):sel_R_1.DO6 + 245 + 140 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #477 + $(P)SGM$(N):sel_Wlow_1.DO6 + 310 + 140 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #481 + $(P)SGM$(N):sel_Whigh_1.DO6 + 375 + 140 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #485 + $(P)SGM$(N):sel_loc_1.DO6 + 440 + 140 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #489 + $(P)SGM$(N):sel_m_2.DO1 + 135 + 240 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #493 + $(P)SGM$(N):sel_den_2.DO1 + 180 + 240 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #497 + $(P)SGM$(N):sel_R_2.DO1 + 245 + 240 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #501 + $(P)SGM$(N):sel_Wlow_2.DO1 + 310 + 240 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #505 + $(P)SGM$(N):sel_Whigh_2.DO1 + 375 + 240 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #509 + $(P)SGM$(N):sel_loc_2.DO1 + 440 + 240 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #513 + $(P)SGM$(N):sel_m_2.DO2 + 135 + 260 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #517 + $(P)SGM$(N):sel_den_2.DO2 + 180 + 260 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #521 + $(P)SGM$(N):sel_R_2.DO2 + 245 + 260 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #525 + $(P)SGM$(N):sel_Wlow_2.DO2 + 310 + 260 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #529 + $(P)SGM$(N):sel_Whigh_2.DO2 + 375 + 260 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #533 + $(P)SGM$(N):sel_loc_2.DO2 + 440 + 260 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #537 + $(P)SGM$(N):sel_m_2.DO3 + 135 + 280 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #541 + $(P)SGM$(N):sel_den_2.DO3 + 180 + 280 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #545 + $(P)SGM$(N):sel_R_2.DO3 + 245 + 280 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #549 + $(P)SGM$(N):sel_Wlow_2.DO3 + 310 + 280 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #553 + $(P)SGM$(N):sel_Whigh_2.DO3 + 375 + 280 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #557 + $(P)SGM$(N):sel_loc_2.DO3 + 440 + 280 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #561 + $(P)SGM$(N):sel_m_2.DO4 + 135 + 300 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #565 + $(P)SGM$(N):sel_den_2.DO4 + 180 + 300 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #569 + $(P)SGM$(N):sel_R_2.DO4 + 245 + 300 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #573 + $(P)SGM$(N):sel_Wlow_2.DO4 + 310 + 300 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #577 + $(P)SGM$(N):sel_Whigh_2.DO4 + 375 + 300 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #581 + $(P)SGM$(N):sel_loc_2.DO4 + 440 + 300 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #585 + $(P)SGM$(N):sel_m_2.DO5 + 135 + 320 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #589 + $(P)SGM$(N):sel_den_2.DO5 + 180 + 320 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #593 + $(P)SGM$(N):sel_R_2.DO5 + 245 + 320 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #597 + $(P)SGM$(N):sel_Wlow_2.DO5 + 310 + 320 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #601 + $(P)SGM$(N):sel_Whigh_2.DO5 + 375 + 320 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #605 + $(P)SGM$(N):sel_loc_2.DO6 + 440 + 320 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #609 + $(P)SGM$(N):sel_m_2.DO6 + 135 + 340 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #613 + $(P)SGM$(N):sel_den_2.DO6 + 180 + 340 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #617 + $(P)SGM$(N):sel_R_2.DO6 + 245 + 340 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #621 + $(P)SGM$(N):sel_Wlow_2.DO6 + 310 + 340 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #625 + $(P)SGM$(N):sel_Whigh_2.DO6 + 375 + 340 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #629 + $(P)SGM$(N):sel_loc_2.DO6 + 440 + 340 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #633 + $(P)SGM$(N):sel_xOff_1.DO1 + 505 + 40 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #637 + $(P)SGM$(N):sel_xOff_1.DO2 + 505 + 60 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #641 + $(P)SGM$(N):sel_xOff_1.DO3 + 505 + 80 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #645 + $(P)SGM$(N):sel_xOff_1.DO4 + 505 + 100 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #649 + $(P)SGM$(N):sel_xOff_1.DO5 + 505 + 120 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #653 + $(P)SGM$(N):sel_xOff_1.DO6 + 505 + 140 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #657 + $(P)SGM$(N):sel_xOff_1.DO7 + 505 + 160 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #661 + $(P)SGM$(N):sel_xOff_1.DO8 + 505 + 180 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #665 + $(P)SGM$(N):sel_xOff_1.DO9 + 505 + 200 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #669 + $(P)SGM$(N):sel_xOff_1.DOA + 505 + 220 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #673 + $(P)SGM$(N):sel_xOff_2.DO1 + 505 + 240 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #677 + $(P)SGM$(N):sel_xOff_2.DO2 + 505 + 260 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #681 + $(P)SGM$(N):sel_xOff_2.DO3 + 505 + 280 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #685 + $(P)SGM$(N):sel_xOff_2.DO4 + 505 + 300 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #689 + $(P)SGM$(N):sel_xOff_2.DO5 + 505 + 320 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #693 + $(P)SGM$(N):sel_xOff_2.DO6 + 505 + 340 + 40 + 16 + + + + + + + + + 1 + false + false + + + text entry #697 + $(P)SGM$(N):StripeWidth + 440 + 370 + 60 + 16 + + + + + + + + + 1 + false + false + + + text #701 + Stripe width: + 345 + 370 + 90 + 14 + + + + + 2 + + + text #704 + grating + 30 + 14 + + + + + 1 + + + text #707 + diffract + 135 + 40 + 14 + + + + + 1 + + + text #710 + line + 180 + 60 + 14 + + + + + 1 + + + text #713 + grating + 245 + 60 + 14 + + + + + 1 + + + text #716 + Wavelen + 310 + 60 + 14 + + + + + 1 + + + text #719 + Wavelen + 375 + 60 + 14 + + + + + 1 + + + text #722 + grating + 440 + 60 + 14 + + + + + 1 + + + text #725 + X-motor + 505 + 40 + 14 + + + + + 1 + + + text #728 + OK to + 555 + 40 + 14 + + + + + 1 + + + text #731 + description + 30 + 15 + 14 + + + + + 1 + + + text #734 + order + 135 + 15 + 40 + 14 + + + + + 1 + + + text #737 + density + 180 + 15 + 60 + 14 + + + + + 1 + + + text #740 + radius + 245 + 15 + 60 + 14 + + + + + 1 + + + text #743 + Lo Lim + 310 + 15 + 60 + 14 + + + + + 1 + + + text #746 + Hi Lim + 375 + 15 + 60 + 14 + + + + + 1 + + + text #749 + index + 440 + 15 + 60 + 14 + + + + + 1 + + + text #752 + offset + 505 + 15 + 40 + 14 + + + + + 1 + + + text #755 + use? + 555 + 15 + 40 + 14 + + + + + 1 + + + text #758 + + 30 + 30 + 10 + + + + + + + + + 1 + + + text #761 + + 135 + 30 + 40 + 10 + + + + + + + + + 1 + + + text #764 + [lines/mm] + 180 + 30 + 60 + 10 + + + + + + + + + 1 + + + text #767 + [m] + 245 + 30 + 60 + 10 + + + + + + + + + 1 + + + text #770 + [Angstroms] + 310 + 30 + 60 + 10 + + + + + + + + + 1 + + + text #773 + [Angstroms] + 375 + 30 + 60 + 10 + + + + + + + + + 1 + + + text #776 + (stripe #) + 440 + 30 + 60 + 10 + + + + + + + + + 1 + + + text #779 + [mm] + 505 + 30 + 40 + 10 + + + + + + + + + 1 + + + text #782 + 1==YES + 555 + 30 + 40 + 10 + + + + + + + + + 1 + + diff --git a/opticsApp/op/bob/autoconvert/SGM_tiny.bob b/opticsApp/op/bob/autoconvert/SGM_tiny.bob new file mode 100644 index 0000000..07cce6c --- /dev/null +++ b/opticsApp/op/bob/autoconvert/SGM_tiny.bob @@ -0,0 +1,1162 @@ + + + SGM_tiny + 118 + 76 + 320 + 173 + + + + + false + 5 + + text #6 + Motor limit + 80 + 164 + 75 + 10 + + + + + + + + + 1 + + + + false + + $(P)$(M_rOut).LLS + + + + + text #10 + Motor limit + 80 + 164 + 75 + 10 + + + + + + + + + 1 + + + + false + + $(P)$(M_rOut).HLS + + + + + text #14 + Motor limit + 80 + 164 + 75 + 10 + + + + + + + + + 1 + + + + false + + $(P)$(M_rOut).LVIO + + + + + text #18 + Motor limit + 80 + 164 + 75 + 10 + + + + + + + + + 1 + + + + false + + $(P)$(M_rIn).LVIO + + + + + text #22 + Motor limit + 80 + 164 + 75 + 10 + + + + + + + + + 1 + + + + false + + $(P)$(M_x).LVIO + + + + + text #26 + Motor limit + 80 + 164 + 75 + 10 + + + + + + + + + 1 + + + + false + + $(P)$(M_x).HLS + + + + + text #30 + Motor limit + 80 + 164 + 75 + 10 + + + + + + + + + 1 + + + + false + + $(P)$(M_rIn).HLS + + + + + text #34 + Motor limit + 80 + 164 + 75 + 10 + + + + + + + + + 1 + + + + false + + $(P)$(M_rIn).LLS + + + + + text #38 + Motor limit + 80 + 164 + 75 + 10 + + + + + + + + + 1 + + + + false + + $(P)$(M_x).LLS + + + + + menu #42 + $(P)SGM$(N):rTrack + 200 + 144 + 55 + 16 + + + + + false + + + message button #45 + + + $(P)SGM$(N):move.PROC + 1 + Write + + + $(P)SGM$(N):move.PROC + Move + 80 + 144 + 35 + 20 + + + + + + + message button #48 + + + $(P)SGM$(N):sync.PROC + 1 + Write + + + $(P)SGM$(N):sync.PROC + Sync + 120 + 144 + 35 + 20 + + + + + + + rectangle #51 + 5 + 107 + 32 + + + + + + + + + + + text #54 + SCAN CONTROL + 5 + 107 + 10 + + + + + + + + + 1 + + + message button #57 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + Stop + 69 + 117 + 35 + 20 + + + + + + + + + + + message button #60 + + + $(P)SGM$(N):Energy:scanParms.GO + 1 + Write + + + $(P)SGM$(N):Energy:scanParms.GO + Go + 48 + 117 + 20 + 20 + + + + + + + message button #63 + + + $(P)SGM$(N):Energy:scanParms.LOAD + 1 + Write + + + $(P)SGM$(N):Energy:scanParms.LOAD + Ld + 27 + 117 + 20 + 20 + + + + + + + related display #66 + + + scanParms.opi + + SGM$(N):Energy + SGM$(N):Energy + + tab + Energy-scan parameters + + + + 6 + 117 + 20 + 20 + + + + + + + message button #69 + + + $(P)SGM$(N):EnergyTweak.A + 1 + Write + + + $(P)SGM$(N):EnergyTweak.A + > + 85 + 86 + 20 + 20 + + + + + + + text entry #72 + $(P)SGM$(N):EnergyTweak.C + 25 + 86 + 60 + + + + + + + + + 1 + false + false + + + message button #76 + + + $(P)SGM$(N):EnergyTweak.B + 1 + Write + + + $(P)SGM$(N):EnergyTweak.B + < + 5 + 86 + 20 + 20 + + + + + + + polyline #79 + -1 + 140 + 321 + 2 + 2 + + + + + + + + + + + + + related display #83 + + + SGM.opi + replace + SGM (more) + + + SGM_gratings.opi + tab + Gratings + + + motorx_more.opi + + $(M_rIn) + + tab + r motor (entrance slit) + + + motorx_more.opi + + $(M_x) + + tab + x motor (grating drive) + + + motorx_more.opi + + $(M_rOut) + + tab + r' motor (exit slit) + + + motorx_more.opi + + $(M_g) + + tab + index motor (grating index) + + + More + 279 + 152 + 40 + 20 + + + + + + + + + + + rectangle #91 + 110 + 107 + 32 + + + + + + + + + + + text #94 + SCAN CONTROL + 110 + 107 + 10 + + + + + + + + + 1 + + + message button #97 + + + $(P)AbortScans.VAL + 1 + Write + + + $(P)AbortScans.VAL + Stop + 174 + 117 + 35 + 20 + + + + + + + + + + + message button #100 + + + $(P)SGM$(N):Lambda:scanParms.GO + 1 + Write + + + $(P)SGM$(N):Lambda:scanParms.GO + Go + 153 + 117 + 20 + 20 + + + + + + + message button #103 + + + $(P)SGM$(N):Lambda:scanParms.LOAD + 1 + Write + + + $(P)SGM$(N):Lambda:scanParms.LOAD + Ld + 132 + 117 + 20 + 20 + + + + + + + related display #106 + + + scanParms.opi + + SGM$(N):Lambda + SGM$(N):Lambda + + tab + Wavelength-scan parameters + + + + 111 + 117 + 20 + 20 + + + + + + + message button #109 + + + $(P)SGM$(N):LambdaTweak.A + 1 + Write + + + $(P)SGM$(N):LambdaTweak.A + > + 190 + 86 + 20 + 20 + + + + + + + text entry #112 + $(P)SGM$(N):LambdaTweak.C + 130 + 86 + 60 + + + + + + + + + 1 + false + false + + + message button #116 + + + $(P)SGM$(N):LambdaTweak.B + 1 + Write + + + $(P)SGM$(N):LambdaTweak.B + < + 110 + 86 + 20 + 20 + + + + + + + rectangle #119 + 215 + 107 + 32 + + + + + + + + + + + text #122 + SCAN CONTROL + 215 + 107 + 10 + + + + + + + + + 1 + + + message button #125 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + Stop + 279 + 117 + 35 + 20 + + + + + + + + + + + message button #128 + + + $(P)SGM$(N):phi:scanParms.GO + 1 + Write + + + $(P)SGM$(N):phi:scanParms.GO + Go + 258 + 117 + 20 + 20 + + + + + + + message button #131 + + + $(P)SGM$(N):phi:scanParms.LOAD + 1 + Write + + + $(P)SGM$(N):phi:scanParms.LOAD + Ld + 237 + 117 + 20 + 20 + + + + + + + related display #134 + + + scanParms.opi + + SGM$(N):phi + SGM$(N):phi + + tab + Grating angle scan parameters + + + + 216 + 117 + 20 + 20 + + + + + + + message button #137 + + + $(P)SGM$(N):phiTweak.A + 1 + Write + + + $(P)SGM$(N):phiTweak.A + > + 295 + 86 + 20 + 20 + + + + + + + text entry #140 + $(P)SGM$(N):phiTweak.C + 235 + 86 + 60 + + + + + + + + + 1 + false + false + + + message button #144 + + + $(P)SGM$(N):phiTweak.B + 1 + Write + + + $(P)SGM$(N):phiTweak.B + < + 215 + 86 + 20 + 20 + + + + + + + text #147 + EXIT + 175 + 144 + 25 + 10 + + + + + 1 + + + text #150 + SLIT + 175 + 154 + 25 + 10 + + + + + 1 + + + menu #153 + $(P)SGM$(N):auto + 2 + 144 + 75 + 16 + + + + + false + + + text update #156 + $(P)SGM$(N):EnergyRBV + 5 + 45 + + + + + + + + + + + + + 1 + false + false + + + text entry #160 + $(P)SGM$(N):Energy + 5 + 61 + 25 + + + + + + + + + 1 + false + false + + + text update #164 + $(P)SGM$(N):LambdaRBV + 110 + 45 + + + + + + + + + + + + + 1 + false + false + + + text entry #168 + $(P)SGM$(N):Lambda + 110 + 61 + 25 + + + + + + + + + 1 + false + false + + + text update #172 + $(P)SGM$(N):phiRBV + 215 + 45 + + + + + + + + + + + + + 1 + false + false + + + text entry #176 + $(P)SGM$(N):phi + 215 + 61 + 25 + + + + + + + + + 1 + false + false + + + rectangle #180 + 320 + 25 + + + + + + + + + + + text #183 + Spherical Grating Monochromator + 3 + 320 + + + + + 1 + + + text #186 + Energy(eV) + 5 + 25 + + + + + 1 + + + text #189 + Wavelen(A) + 110 + 25 + + + + + 1 + + + text #192 + Phi(deg) + 215 + 25 + + + + + 1 + + + polyline #195 + 22 + 321 + 3 + + + + + + + + + + + + + text #199 + r' AT LIMIT + 175 + 164 + 75 + 10 + + + + + + + + + 1 + + + + false + + $(P)SGM$(N):T2.M + + + + + text #203 + V1.4 + 1 + 165 + 20 + 8 + + + + + true + + diff --git a/opticsApp/op/bob/autoconvert/TheBox_Bragg.bob b/opticsApp/op/bob/autoconvert/TheBox_Bragg.bob new file mode 100644 index 0000000..50a0893 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/TheBox_Bragg.bob @@ -0,0 +1,28 @@ + + + TheBox_Bragg + 10 + 10 + 535 + 285 + + + + + false + 5 + + rectangle #6 + 194 + 125 + 6 + 15 + + + + + + + + + + + TheBox_calc + 10 + 10 + 560 + 220 + + + + + false + 5 + + text entry #6 + $(P)$(mZ2).VELO + 495 + 180 + 60 + + + + + + + + + 1 + false + false + + + text #9 + v + 480 + 180 + 20 + + + + + true + + + text #12 + v + 480 + 110 + 20 + + + + + true + + + text #15 + p + 480 + 90 + 20 + + + + + true + + + text #18 + p + 480 + 160 + 20 + + + + + true + + + text #21 + v + 480 + 40 + 20 + + + + + true + + + text #24 + p + 480 + 20 + 20 + + + + + true + + + text entry #27 + $(P)$(mTH2).VAL + 495 + 90 + 60 + + + + + + + + + 1 + false + false + + + text entry #30 + $(P)$(mTH2).VELO + 495 + 110 + 60 + + + + + + + + + 1 + false + false + + + text #33 + ($(mTH2)) + 495 + 70 + 60 + 14 + true + + + text #36 + ($(mTH1)) + 495 + 4 + 60 + 14 + true + + + text entry #39 + $(P)$(mTH1).VAL + 495 + 20 + 60 + + + + + + + + + 1 + false + false + + + text entry #42 + $(P)$(mZ2).VAL + 495 + 160 + 60 + + + + + + + + + 1 + false + false + + + text #45 + ($(mZ2)) + 495 + 140 + 60 + 14 + true + + + text entry #48 + $(P)$(mTH1).VELO + 495 + 40 + 60 + + + + + + + + + 1 + false + false + + + text #51 + b + 2 + 40 + 20 + + + + + true + + + text #54 + a + 2 + 20 + 20 + + + + + true + + + text #57 + c + 2 + 60 + 20 + + + + + true + + + text #60 + d + 2 + 80 + 20 + + + + + true + + + text #63 + e + 2 + 100 + 20 + + + + + true + + + text #66 + f + 2 + 120 + 20 + + + + + true + + + text #69 + g + 2 + 140 + 20 + + + + + true + + + text #72 + h + 2 + 160 + 20 + + + + + true + + + text #75 + i + 2 + 180 + 20 + + + + + true + + + text #78 + j + 2 + 200 + 20 + + + + + true + + + text entry #81 + $(P)TheBox_TH2Z2.CLCB + 80 + 40 + 150 + + + + + + + + + 1 + false + false + + + text entry #84 + $(P)TheBox_TH2Z2.CLCA + 80 + 20 + 150 + + + + + + + + + 1 + false + false + + + text entry #87 + $(P)TheBox_TH2Z2.CLCC + 80 + 60 + 150 + + + + + + + + + 1 + false + false + + + text entry #90 + $(P)TheBox_TH2Z2.CLCD + 80 + 80 + 150 + + + + + + + + + 1 + false + false + + + text entry #93 + $(P)TheBox_TH2Z2.CLCE + 80 + 100 + 150 + + + + + + + + + 1 + false + false + + + text entry #96 + $(P)TheBox_TH2Z2.CLCF + 80 + 120 + 150 + + + + + + + + + 1 + false + false + + + text entry #99 + $(P)TheBox_TH2Z2.CLCG + 80 + 140 + 150 + + + + + + + + + 1 + false + false + + + text entry #102 + $(P)TheBox_TH2Z2.CLCH + 80 + 160 + 150 + + + + + + + + + 1 + false + false + + + text entry #105 + $(P)TheBox_TH2Z2.CLCI + 80 + 180 + 150 + + + + + + + + + 1 + false + false + + + text entry #108 + $(P)TheBox_TH2Z2.CLCJ + 80 + 200 + 150 + + + + + + + + + 1 + false + false + + + text entry #111 + $(P)TheBox_TH2Z2.B + 20 + 40 + 60 + + + + + + + + + 1 + false + false + + + text entry #114 + $(P)TheBox_TH2Z2.A + 20 + 20 + 60 + + + + + + + + + 1 + false + false + + + text entry #117 + $(P)TheBox_TH2Z2.C + 20 + 60 + 60 + + + + + + + + + 1 + false + false + + + text entry #120 + $(P)TheBox_TH2Z2.D + 20 + 80 + 60 + + + + + + + + + 1 + false + false + + + text entry #123 + $(P)TheBox_TH2Z2.E + 20 + 100 + 60 + + + + + + + + + 1 + false + false + + + text entry #126 + $(P)TheBox_TH2Z2.F + 20 + 120 + 60 + + + + + + + + + 1 + false + false + + + text entry #129 + $(P)TheBox_TH2Z2.G + 20 + 140 + 60 + + + + + + + + + 1 + false + false + + + text entry #132 + $(P)TheBox_TH2Z2.H + 20 + 160 + 60 + + + + + + + + + 1 + false + false + + + text entry #135 + $(P)TheBox_TH2Z2.I + 20 + 180 + 60 + + + + + + + + + 1 + false + false + + + text entry #138 + $(P)TheBox_TH2Z2.J + 20 + 200 + 60 + + + + + + + + + 1 + false + false + + + composite #141 + 240 + 20 + 20 + + true + + text #144 + a + 20 + + + + + true + + + text #147 + b + 20 + 20 + + + + + true + + + text #150 + c + 40 + 20 + + + + + true + + + text #153 + d + 60 + 20 + + + + + true + + + text #156 + e + 80 + 20 + + + + + true + + + text #159 + f + 100 + 20 + + + + + true + + + text #162 + g + 120 + 20 + + + + + true + + + text #165 + h + 140 + 20 + + + + + true + + + text #168 + i + 160 + 20 + + + + + true + + + text #171 + j + 180 + 20 + + + + + true + + + + text entry #174 + $(P)TheBox_put.CLCA + 315 + 20 + 150 + 19 + + + + + + + + + 1 + false + false + + + text entry #177 + $(P)TheBox_put.CLCB + 315 + 40 + 150 + + + + + + + + + 1 + false + false + + + text entry #180 + $(P)TheBox_put.CLCC + 315 + 60 + 150 + + + + + + + + + 1 + false + false + + + text entry #183 + $(P)TheBox_put.CLCD + 315 + 80 + 150 + + + + + + + + + 1 + false + false + + + text entry #186 + $(P)TheBox_put.CLCE + 315 + 100 + 150 + + + + + + + + + 1 + false + false + + + text entry #189 + $(P)TheBox_put.CLCF + 315 + 120 + 150 + + + + + + + + + 1 + false + false + + + text entry #192 + $(P)TheBox_put.CLCG + 315 + 140 + 150 + + + + + + + + + 1 + false + false + + + text entry #195 + $(P)TheBox_put.CLCH + 315 + 160 + 150 + + + + + + + + + 1 + false + false + + + text entry #198 + $(P)TheBox_put.CLCI + 315 + 180 + 150 + + + + + + + + + 1 + false + false + + + text entry #201 + $(P)TheBox_put.CLCJ + 315 + 200 + 150 + + + + + + + + + 1 + false + false + + + text entry #204 + $(P)TheBox_put.A + 255 + 20 + 60 + + + + + + + + + 1 + false + false + + + text entry #207 + $(P)TheBox_put.B + 255 + 40 + 60 + + + + + + + + + 1 + false + false + + + text entry #210 + $(P)TheBox_put.C + 255 + 60 + 60 + + + + + + + + + 1 + false + false + + + text entry #213 + $(P)TheBox_put.D + 255 + 80 + 60 + + + + + + + + + 1 + false + false + + + text entry #216 + $(P)TheBox_put.E + 255 + 100 + 60 + + + + + + + + + 1 + false + false + + + text entry #219 + $(P)TheBox_put.F + 255 + 120 + 60 + + + + + + + + + 1 + false + false + + + text entry #222 + $(P)TheBox_put.G + 255 + 140 + 60 + + + + + + + + + 1 + false + false + + + text entry #225 + $(P)TheBox_put.H + 255 + 160 + 60 + + + + + + + + + 1 + false + false + + + text entry #228 + $(P)TheBox_put.I + 255 + 180 + 60 + + + + + + + + + 1 + false + false + + + text entry #231 + $(P)TheBox_put.J + 255 + 200 + 60 + + + + + + + + + 1 + false + false + + + text update #234 + $(P)TheBox_TH2Z2.DESC + 2 + 2 + 225 + 14 + + + + + 1 + false + false + + + text update #237 + $(P)TheBox_put.DESC + 240 + 2 + 225 + 14 + + + + + 1 + false + false + + diff --git a/opticsApp/op/bob/autoconvert/TheBox_graphic.bob b/opticsApp/op/bob/autoconvert/TheBox_graphic.bob new file mode 100644 index 0000000..70ea66b --- /dev/null +++ b/opticsApp/op/bob/autoconvert/TheBox_graphic.bob @@ -0,0 +1,2526 @@ + + + TheBox_graphic + 10 + 10 + 525 + 350 + + + + + false + 5 + + rectangle #6 + 10 + 25 + 500 + 320 + + + + + + + + + + + rectangle #9 + 368 + 92 + 169 + + + + + + + + + + + rectangle #12 + 368 + 92 + 169 + 2 + + + + + + + + + true + + + composite #15 + 411 + 94 + 9 + 102 + + true + + composite #18 + 1 + 8 + 100 + + true + + polyline #21 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #25 + 6 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #29 + 12 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #33 + 18 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #37 + 25 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #41 + 31 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #45 + 37 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #49 + 43 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #53 + 50 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #57 + 56 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #61 + 63 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #65 + 69 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #69 + 75 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #73 + 81 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #77 + 87 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #81 + 94 + 8 + 6 + 1 + + + + + + + + + + + + + + rectangle #85 + 9 + 102 + 1 + + + + + + + + + true + + + + rectangle #88 + 73 + 90 + 203 + + + + + + + + + + + rectangle #91 + 73 + 90 + 203 + 2 + + + + + + + + + true + + + composite #94 + 121 + 92 + 9 + 102 + + true + + composite #97 + 1 + 8 + 100 + + true + + polyline #100 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #104 + 6 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #108 + 12 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #112 + 18 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #116 + 25 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #120 + 31 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #124 + 37 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #128 + 43 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #132 + 50 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #136 + 56 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #140 + 63 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #144 + 69 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #148 + 75 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #152 + 81 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #156 + 87 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #160 + 94 + 8 + 6 + 1 + + + + + + + + + + + + + + rectangle #164 + 9 + 102 + 1 + + + + + + + + + true + + + + rectangle #167 + 76 + 178 + 175 + 75 + + + + + + + + + + + rectangle #170 + 290 + 97 + 175 + 75 + + + + + + + + + + + rectangle #173 + 76 + 178 + 175 + 75 + 2 + + + + + + + + + true + + + composite #176 + 226 + 145 + 25 + 30 + + true + + rectangle #179 + 25 + 30 + + + + + + + + + + + text #182 + TH1 + 3 + 8 + 20 + 14 + + + + + 1 + + + + oval #185 + 180 + 185 + 60 + 60 + + + + + + + + + + + polyline #188 + 197 + 209 + 29 + 12 + + + + + + + + + + + + + composite #192 + 236 + 176 + 6 + 50 + + true + + composite #195 + 5 + 49 + + true + + polyline #198 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #202 + 5 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #206 + 10 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #210 + 14 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #214 + 20 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #218 + 25 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #222 + 29 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #226 + 34 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #230 + 39 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #234 + 44 + 5 + 5 + 1 + + + + + + + + + + + + + + rectangle #238 + 6 + 50 + 1 + + + + + + + + + true + + + + related display #241 + + + motorx.opi + + $(mTH1) + + tab + mTheta1 (S) + + + motorx_more.opi + + $(mTH1) + + tab + mTheta1 (M) + + + motorx_all.opi + + $(mTH1) + + tab + mTheta1 (L) + + + + 203 + 150 + 20 + 20 + + + + + + + message button #246 + + + $(P)$(mY1).TWF + 1 + Write + + + $(P)$(mY1).TWF + + + 125 + 40 + 20 + 20 + + + + + + + message button #249 + + + $(P)$(mY1).TWR + 1 + Write + + + $(P)$(mY1).TWR + - + 105 + 40 + 20 + 20 + + + + + + + text #252 + $(mY1) + 100 + 30 + 50 + 12 + + + + + 1 + + + rectangle #255 + 10 + 25 + 500 + 320 + + + + + + + + + true + + + rectangle #258 + 73 + 295 + 30 + 2 + + + + + + + + + true + + + composite #261 + 115 + 300 + 42 + 20 + + true + + oval #264 + 20 + 20 + + + + + + + + + + + text #267 + X1 + 3 + 3 + 15 + 14 + + + + + 1 + + + related display #270 + + + motorx.opi + + $(mX1) + + tab + mX1 (S) + + + motorx_more.opi + + $(mX1) + + tab + mX1 (M) + + + motorx_all.opi + + $(mX1) + + tab + mX1 (L) + + + + 22 + 20 + 20 + + + + + + + + rectangle #275 + 236 + 295 + 250 + 30 + 2 + + + + + + + + + true + + + rectangle #278 + 205 + 300 + 30 + + + + + + + + + + + text #281 + Z2 + 212 + 303 + 15 + 14 + + + + + 1 + + + related display #284 + + + motorx.opi + + $(mZ2) + + tab + mZ2 (S) + + + motorx_more.opi + + $(mZ2) + + tab + mZ2 (M) + + + motorx_all.opi + + $(mZ2) + + tab + mZ2 (L) + + + + 184 + 300 + 20 + 20 + + + + + + + rectangle #289 + 368 + 263 + 30 + 2 + + + + + + + + + true + + + text #292 + $(mX2) + 368 + 298 + 50 + 12 + + + + + 1 + + + oval #295 + 409 + 268 + 20 + 20 + + + + + + + + + + + text #298 + X2 + 412 + 271 + 15 + 14 + + + + + 1 + + + related display #301 + + + motorx.opi + + $(mX2) + + tab + mX2 (S) + + + motorx_more.opi + + $(mX2) + + tab + mX2 (M) + + + motorx_all.opi + + $(mX2) + + tab + mX2 (L) + + + + 431 + 268 + 20 + 20 + + + + + + + rectangle #306 + 404 + 61 + 25 + 30 + + + + + + + + + + + text #309 + Y2 + 409 + 69 + 15 + 14 + + + + + 1 + + + related display #312 + + + motorx.opi + + $(mY2) + + tab + mY2 (S) + + + motorx_more.opi + + $(mY2) + + tab + mY2 (M) + + + motorx_all.opi + + $(mY2) + + tab + mY2 (L) + + + + 432 + 67 + 20 + 20 + + + + + + + rectangle #317 + 114 + 59 + 25 + 30 + + + + + + + + + + + text #320 + Y1 + 119 + 67 + 15 + 14 + + + + + 1 + + + related display #323 + + + motorx.opi + + $(mY1) + + tab + mY1 (S) + + + motorx_more.opi + + $(mY1) + + tab + mY1 (M) + + + motorx_all.opi + + $(mY1) + + tab + mY1 (L) + + + + 141 + 61 + 20 + 20 + + + + + + + rectangle #328 + 290 + 97 + 175 + 75 + 2 + + + + + + + + + true + + + oval #331 + 300 + 105 + 60 + 60 + + + + + + + + + + + polyline #334 + 317 + 129 + 29 + 12 + + + + + + + + + + + + + rectangle #338 + 288 + 66 + 25 + 30 + + + + + + + + + + + text #341 + TH2 + 291 + 74 + 20 + 14 + + + + + 1 + + + related display #344 + + + motorx.opi + + $(mTH2) + + tab + mTheta2 (S) + + + motorx_more.opi + + $(mTH2) + + tab + mTheta2 (M) + + + motorx_all.opi + + $(mTH2) + + tab + mTheta2 (L) + + + + 315 + 71 + 20 + 20 + + + + + + + polyline #349 + -1 + 212 + 213 + 3 + + + + + 1 + + + + + + + + + polyline #353 + 209 + 135 + 123 + 80 + 1 + + + + + 1 + + + + + + + + + polyline #357 + 331 + 135 + 190 + 1 + 1 + + + + + 1 + + + + + + + + + text #361 + $(mTH1) + 212 + 112 + 50 + 12 + + + + + 1 + + + text #364 + $(mX1) + 73 + 325 + 40 + 12 + + + + + 1 + + + text #367 + $(mZ2) + 189 + 266 + 50 + 12 + + + + + 1 + + + text #370 + $(mTH2) + 275 + 30 + 50 + 12 + + + + + 1 + + + text #373 + $(mY2) + 391 + 30 + 50 + 12 + + + + + 1 + + + polyline #376 + 17 + 203 + 49 + 6 + 1 + + + + + + + + + + + + + + + text #380 + > + 509 + 127 + 13 + + + + + + + + + 2 + + + composite #383 + 298 + 98 + 6 + 50 + + true + + composite #386 + 5 + 49 + + true + + polyline #389 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #393 + 5 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #397 + 10 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #401 + 14 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #405 + 20 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #409 + 25 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #413 + 29 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #417 + 34 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #421 + 39 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #425 + 44 + 5 + 5 + 1 + + + + + + + + + + + + + + rectangle #429 + 6 + 50 + 1 + + + + + + + + + true + + + + composite #432 + 280 + 40 + 40 + 20 + + true + + message button #435 + + + $(P)$(mTH2).TWR + 1 + Write + + + $(P)$(mTH2).TWR + - + 20 + 20 + + + + + + + message button #438 + + + $(P)$(mTH2).TWF + 1 + Write + + + $(P)$(mTH2).TWF + + + 20 + 20 + 20 + + + + + + + + message button #441 + + + $(P)$(mY2).TWR + 1 + Write + + + $(P)$(mY2).TWR + - + 395 + 41 + 20 + 20 + + + + + + + message button #444 + + + $(P)$(mY2).TWF + 1 + Write + + + $(P)$(mY2).TWF + + + 415 + 41 + 20 + 20 + + + + + + + message button #447 + + + $(P)$(mTH1).TWR + 1 + Write + + + $(P)$(mTH1).TWR + - + 218 + 125 + 20 + 20 + + + + + + + message button #450 + + + $(P)$(mTH1).TWF + 1 + Write + + + $(P)$(mTH1).TWF + + + 238 + 125 + 20 + 20 + + + + + + + message button #453 + + + $(P)$(mZ2).TWR + 1 + Write + + + $(P)$(mZ2).TWR + - + 195 + 279 + 20 + 20 + + + + + + + message button #456 + + + $(P)$(mZ2).TWF + 1 + Write + + + $(P)$(mZ2).TWF + + + 215 + 279 + 20 + 20 + + + + + + + message button #459 + + + $(P)$(mX1).TWR + 1 + Write + + + $(P)$(mX1).TWR + - + 75 + 301 + 20 + 20 + + + + + + + message button #462 + + + $(P)$(mX1).TWF + 1 + Write + + + $(P)$(mX1).TWF + + + 95 + 301 + 20 + 20 + + + + + + + message button #465 + + + $(P)$(mX2).TWR + 1 + Write + + + $(P)$(mX2).TWR + - + 370 + 269 + 20 + 20 + + + + + + + message button #468 + + + $(P)$(mX2).TWF + 1 + Write + + + $(P)$(mX2).TWF + + + 390 + 269 + 20 + 20 + + + + + + + oval #471 + 180 + 185 + 60 + 60 + 2 + + + + + + + + + true + + + oval #474 + 300 + 105 + 60 + 60 + 2 + + + + + + + + + true + + + message button #477 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + All Stop + 262 + 195 + 40 + + + + + + + + + + + text update #480 + $(P)$(mY1).RBV + 150 + 42 + 50 + 12 + + + + + + + + + + + + + 1 + false + false + + + text update #483 + $(P)$(mX1).RBV + 121 + 325 + 50 + 12 + + + + + + + + + + + + + 1 + false + false + + + text update #486 + $(P)$(mZ2).RBV + 236 + 281 + 50 + 12 + + + + + + + + + + + + + 1 + false + false + + + text update #489 + $(P)$(mTH1).RBV + 172 + 131 + 50 + 12 + + + + + + + + + + + + + 1 + false + false + + + text update #492 + $(P)$(mTH2).RBV + 322 + 49 + 50 + 12 + + + + + + + + + + + + + 1 + false + false + + + text update #495 + $(P)$(mY2).RBV + 437 + 45 + 50 + 12 + + + + + + + + + + + + + 1 + false + false + + + text update #498 + $(P)$(mX2).RBV + 415 + 298 + 50 + 12 + + + + + + + + + + + + + 1 + false + false + + + text update #501 + $(P)$(mY1).DESC + 150 + 30 + 50 + 12 + + + + + + + + + + + + + 1 + false + false + + + text #504 + Prototype Monochromator + 10 + 500 + 25 + + + + + 1 + + + polyline #507 + 174 + 223 + 10 + 18 + 2 + + + + + + + + + + + + + + + polyline #511 + 173 + 189 + 13 + 18 + 2 + + + + + + + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/TheBox_graphic_try.bob b/opticsApp/op/bob/autoconvert/TheBox_graphic_try.bob new file mode 100644 index 0000000..d1c7731 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/TheBox_graphic_try.bob @@ -0,0 +1,2830 @@ + + + TheBox_graphic_try + 10 + 10 + 525 + 350 + + + + + false + 5 + + rectangle #6 + 10 + 25 + 500 + 320 + + + + + + + + + + + rectangle #9 + 10 + 25 + 500 + 320 + + + + + + + + + true + + + rectangle #12 + 73 + 90 + 203 + + + + + + + + + + + rectangle #15 + 73 + 90 + 203 + 2 + + + + + + + + + true + + + rectangle #18 + 76 + 178 + 175 + 75 + + + + + + + + + + + rectangle #21 + 76 + 178 + 175 + 75 + 2 + + + + + + + + + true + + + oval #24 + 180 + 185 + 60 + 60 + + + + + + + + + + + oval #27 + 180 + 185 + 60 + 60 + 2 + + + + + + + + + true + + + rectangle #30 + 368 + 92 + 169 + + + + + + + + + + + rectangle #33 + 368 + 92 + 169 + 2 + + + + + + + + + true + + + composite #36 + 411 + 94 + 9 + 102 + + true + + composite #39 + 1 + 8 + 100 + + true + + polyline #42 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #46 + 6 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #50 + 12 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #54 + 18 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #58 + 25 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #62 + 31 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #66 + 37 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #70 + 43 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #74 + 50 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #78 + 56 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #82 + 63 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #86 + 69 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #90 + 75 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #94 + 81 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #98 + 87 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #102 + 94 + 8 + 6 + 1 + + + + + + + + + + + + + + rectangle #106 + 9 + 102 + 1 + + + + + + + + + true + + + + composite #109 + 121 + 92 + 9 + 102 + + true + + composite #112 + 1 + 8 + 100 + + true + + polyline #115 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #119 + 6 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #123 + 12 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #127 + 18 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #131 + 25 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #135 + 31 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #139 + 37 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #143 + 43 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #147 + 50 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #151 + 56 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #155 + 63 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #159 + 69 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #163 + 75 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #167 + 81 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #171 + 87 + 8 + 6 + 1 + + + + + + + + + + + + + polyline #175 + 94 + 8 + 6 + 1 + + + + + + + + + + + + + + rectangle #179 + 9 + 102 + 1 + + + + + + + + + true + + + + rectangle #182 + 290 + 97 + 175 + 75 + + + + + + + + + + + composite #185 + 226 + 145 + 25 + 30 + + true + + rectangle #188 + 25 + 30 + + + + + + + + + + + text #191 + TH1 + 3 + 8 + 20 + 14 + + + + + 1 + + + + polyline #194 + 197 + 209 + 29 + 12 + + + + + + + + + + + + + composite #198 + 236 + 176 + 6 + 50 + + true + + composite #201 + 5 + 49 + + true + + polyline #204 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #208 + 5 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #212 + 10 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #216 + 14 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #220 + 20 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #224 + 25 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #228 + 29 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #232 + 34 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #236 + 39 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #240 + 44 + 5 + 5 + 1 + + + + + + + + + + + + + + rectangle #244 + 6 + 50 + 1 + + + + + + + + + true + + + + related display #247 + + + motorx.opi + + $(mTH1) + + tab + mTheta1 (S) + + + motorx_more.opi + + $(mTH1) + + tab + mTheta1 (M) + + + motorx_all.opi + + $(mTH1) + + tab + mTheta1 (L) + + + + 250 + 145 + 20 + 20 + + + + + + + rectangle #252 + 73 + 295 + 30 + 2 + + + + + + + + + true + + + composite #255 + 115 + 300 + 42 + 20 + + true + + oval #258 + 20 + 20 + + + + + + + + + + + text #261 + X1 + 3 + 3 + 15 + 14 + + + + + 1 + + + related display #264 + + + motorx.opi + + $(mX1) + + tab + mX1 (S) + + + motorx_more.opi + + $(mX1) + + tab + mX1 (M) + + + motorx_all.opi + + $(mX1) + + tab + mX1 (L) + + + + 22 + 20 + 20 + + + + + + + + rectangle #269 + 236 + 295 + 250 + 30 + 2 + + + + + + + + + true + + + rectangle #272 + 205 + 300 + 30 + + + + + + + + + + + text #275 + Z2 + 212 + 303 + 15 + 14 + + + + + 1 + + + related display #278 + + + motorx.opi + + $(mZ2) + + tab + mZ2 (S) + + + motorx_more.opi + + $(mZ2) + + tab + mZ2 (M) + + + motorx_all.opi + + $(mZ2) + + tab + mZ2 (L) + + + + 205 + 279 + 20 + 20 + + + + + + + rectangle #283 + 368 + 263 + 30 + 2 + + + + + + + + + true + + + oval #286 + 409 + 268 + 20 + 20 + + + + + + + + + + + text #289 + X2 + 412 + 271 + 15 + 14 + + + + + 1 + + + related display #292 + + + motorx.opi + + $(mX2) + + tab + mX2 (S) + + + motorx_more.opi + + $(mX2) + + tab + mX2 (M) + + + motorx_all.opi + + $(mX2) + + tab + mX2 (L) + + + + 431 + 268 + 20 + 20 + + + + + + + rectangle #297 + 404 + 61 + 25 + 30 + + + + + + + + + + + text #300 + Y2 + 409 + 69 + 15 + 14 + + + + + 1 + + + related display #303 + + + motorx.opi + + $(mY2) + + tab + mY2 (S) + + + motorx_more.opi + + $(mY2) + + tab + mY2 (M) + + + motorx_all.opi + + $(mY2) + + tab + mY2 (L) + + + + 430 + 61 + 20 + 20 + + + + + + + rectangle #308 + 114 + 59 + 25 + 30 + + + + + + + + + + + text #311 + Y1 + 119 + 67 + 15 + 14 + + + + + 1 + + + related display #314 + + + motorx.opi + + $(mY1) + + tab + mY1 (S) + + + motorx_more.opi + + $(mY1) + + tab + mY1 (M) + + + motorx_all.opi + + $(mY1) + + tab + mY1 (L) + + + + 138 + 59 + 20 + 20 + + + + + + + rectangle #319 + 290 + 97 + 175 + 75 + 2 + + + + + + + + + true + + + oval #322 + 300 + 105 + 60 + 60 + + + + + + + + + + + polyline #325 + 317 + 129 + 29 + 12 + + + + + + + + + + + + + rectangle #329 + 288 + 66 + 25 + 30 + + + + + + + + + + + text #332 + TH2 + 291 + 74 + 20 + 14 + + + + + 1 + + + related display #335 + + + motorx.opi + + $(mTH2) + + tab + mTheta2 (S) + + + motorx_more.opi + + $(mTH2) + + tab + mTheta2 (M) + + + motorx_all.opi + + $(mTH2) + + tab + mTheta2 (L) + + + + 313 + 66 + 20 + 20 + + + + + + + polyline #340 + -1 + 212 + 213 + 3 + + + + + 1 + + + + + + + + + polyline #344 + 209 + 135 + 123 + 80 + 1 + + + + + 1 + + + + + + + + + polyline #348 + 331 + 135 + 190 + 1 + 1 + + + + + 1 + + + + + + + + + polyline #352 + 17 + 203 + 40 + 6 + 1 + + + + + + + + + + + + + + + text #356 + > + 509 + 127 + 13 + + + + + + + + + 2 + + + composite #359 + 298 + 98 + 6 + 50 + + true + + composite #362 + 5 + 49 + + true + + polyline #365 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #369 + 5 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #373 + 10 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #377 + 14 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #381 + 20 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #385 + 25 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #389 + 29 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #393 + 34 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #397 + 39 + 5 + 5 + 1 + + + + + + + + + + + + + polyline #401 + 44 + 5 + 5 + 1 + + + + + + + + + + + + + + rectangle #405 + 6 + 50 + 1 + + + + + + + + + true + + + + message button #408 + + + $(P)$(mTH2).TWR + 1 + Write + + + $(P)$(mTH2).TWR + - + 366 + 148 + 20 + 20 + + + + + + + message button #411 + + + $(P)$(mTH2).TWF + 1 + Write + + + $(P)$(mTH2).TWF + + + 366 + 100 + 20 + 20 + + + + + + + composite #414 + 425 + 100 + 20 + 68 + + true + + message button #417 + + + $(P)$(mY2).TWR + 1 + Write + + + $(P)$(mY2).TWR + - + 48 + 20 + 20 + + + + + + + message button #420 + + + $(P)$(mY2).TWF + 1 + Write + + + $(P)$(mY2).TWF + + + 20 + 20 + + + + + + + + message button #423 + + + $(P)$(mTH1).TWR + 1 + Write + + + $(P)$(mTH1).TWR + - + 155 + 181 + 20 + 20 + + + + + + + message button #426 + + + $(P)$(mTH1).TWF + 1 + Write + + + $(P)$(mTH1).TWF + + + 155 + 229 + 20 + 20 + + + + + + + message button #429 + + + $(P)$(mZ2).TWR + 1 + Write + + + $(P)$(mZ2).TWR + - + 372 + 236 + 20 + 20 + + + + + + + message button #432 + + + $(P)$(mZ2).TWF + 1 + Write + + + $(P)$(mZ2).TWF + + + 443 + 236 + 20 + 20 + + + + + + + message button #435 + + + $(P)$(mX1).TWR + 1 + Write + + + $(P)$(mX1).TWR + - + 75 + 301 + 20 + 20 + + + + + + + message button #438 + + + $(P)$(mX1).TWF + 1 + Write + + + $(P)$(mX1).TWF + + + 95 + 301 + 20 + 20 + + + + + + + message button #441 + + + $(P)$(mX2).TWR + 1 + Write + + + $(P)$(mX2).TWR + - + 370 + 269 + 20 + 20 + + + + + + + message button #444 + + + $(P)$(mX2).TWF + 1 + Write + + + $(P)$(mX2).TWF + + + 390 + 269 + 20 + 20 + + + + + + + oval #447 + 300 + 105 + 60 + 60 + 2 + + + + + + + + + true + + + message button #450 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + All Stop + 262 + 195 + 40 + + + + + + + + + + + composite #453 + 21 + 297 + 50 + 25 + + true + + text entry #456 + $(P)$(mX1).VAL + 10 + 50 + 15 + + + + + + + + + 1 + false + false + + + text update #460 + $(P)$(mX1).RBV + 50 + 12 + + + + + + + + + + + + + 1 + false + false + + + + text update #464 + $(P)$(mX2).RBV + 315 + 265 + 50 + 12 + + + + + + + + + + + + + 1 + false + false + + + text #468 + Prototype Monochromator + 10 + 500 + 25 + + + + + 1 + + + polyline #471 + 178 + 228 + 10 + 18 + 2 + + + + + + + + + + + + + + + polyline #475 + 179 + 183 + 13 + 18 + 2 + + + + + + + + + + + + + + + + + polyline #479 + 348 + 104 + 19 + 25 + 2 + + + + + + + + + + + + + + + polyline #483 + 349 + 142 + 18 + 22 + 2 + + + + + + + + + + + + + + + composite #487 + 447 + 101 + 6 + 67 + + true + + polyline #490 + 5 + 25 + 2 + + + + + + + + + + + + + + + + + + + polyline #494 + 40 + 6 + 27 + 2 + + + + + + + + + + + + + + + + polyline #498 + 428 + 225 + 35 + 6 + 2 + + + + + + + + + + + + + + + polyline #502 + 371 + 225 + 37 + 6 + 2 + + + + + + + + + + + + + + + composite #506 + 393 + 222 + 50 + 25 + + true + + text entry #509 + $(P)$(mZ2).VAL + 10 + 50 + 15 + + + + + + + + + 1 + false + false + + + text update #513 + $(P)$(mZ2).RBV + 50 + 12 + + + + + + + + + + + + + 1 + false + false + + + + text update #517 + $(P)$(mTH1).RBV + 140 + 203 + 50 + 12 + + + + + + + + + + + + + 1 + false + false + + + text entry #521 + $(P)$(mTH1).VAL + 140 + 213 + 50 + 15 + + + + + + + + + 1 + false + false + + + text entry #525 + $(P)$(mX2).VAL + 315 + 275 + 50 + 15 + + + + + + + + + 1 + false + false + + + text entry #529 + $(P)$(mTH2).VAL + 350 + 131 + 50 + 15 + + + + + + + + + 1 + false + false + + + text update #533 + $(P)$(mTH2).RBV + 351 + 121 + 50 + 12 + + + + + + + + + + + + + 1 + false + false + + + composite #537 + 410 + 121 + 50 + 25 + + true + + text entry #540 + $(P)$(mY2).VAL + 10 + 50 + 15 + + + + + + + + + 1 + false + false + + + text update #544 + $(P)$(mY2).RBV + 50 + 12 + + + + + + + + + + + + + 1 + false + false + + + + composite #548 + 80 + 181 + 50 + 68 + + true + + message button #551 + + + $(P)$(mY1).TWR + 1 + Write + + + $(P)$(mY1).TWR + - + 15 + 48 + 20 + 20 + + + + + + + text entry #554 + $(P)$(mY1).VAL + 32 + 50 + 15 + + + + + + + + + 1 + false + false + + + text update #558 + $(P)$(mY1).RBV + 22 + 50 + 12 + + + + + + + + + + + + + 1 + false + false + + + message button #562 + + + $(P)$(mY1).TWF + 1 + Write + + + $(P)$(mY1).TWF + + + 15 + 20 + 20 + + + + + + + + polyline #565 + 86 + 181 + 7 + 22 + 2 + + + + + + + + + + + + + + + polyline #569 + 86 + 226 + 7 + 24 + 2 + + + + + + + + + + + + + + + text #573 + $(mY1) + 99 + 46 + 50 + 12 + + + + + 1 + + + text #576 + $(mX1) + 21 + 284 + 50 + 12 + + + + + 1 + + + text #579 + $(mZ2) + 191 + 267 + 50 + 12 + + + + + 1 + + + text #582 + $(mTH1) + 213 + 132 + 50 + 12 + + + + + 1 + + + text #585 + $(mTH2) + 276 + 53 + 50 + 12 + + + + + 1 + + + text #588 + $(mY2) + 390 + 48 + 50 + 12 + + + + + 1 + + + text #591 + $(mX2) + 315 + 252 + 50 + 12 + + + + + 1 + + diff --git a/opticsApp/op/bob/autoconvert/XIA_filter.bob b/opticsApp/op/bob/autoconvert/XIA_filter.bob new file mode 100644 index 0000000..bffcd92 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/XIA_filter.bob @@ -0,0 +1,30 @@ + + + XIA_filter + 135 + 338 + 325 + 622 + + + + + false + 5 + + text #6 + In + 250 + 35 + 35 + 15 + + + + + + + + + true + + + XIA_shutter + 114 + 39 + 325 + 346 + + + + + false + 5 + + text #6 + In + 275 + 185 + 35 + + + + + + + + + true + + + XIA_shutterTry + 74 + 98 + 325 + 340 + + + + + false + 5 + + rectangle #6 + 325 + 25 + + + + + + + + + + + polyline #9 + 25 + 324 + 3 + + + + + + + + + + + + + text update #13 + $(P)$(S):UserCmd_IO.AINP + 10 + 300 + 255 + 14 + + + + + 1 + false + false + + + message button #17 + + + $(P)$(S):sendCommand.VAL + H + Write + + + $(P)$(S):sendCommand.VAL + Shutter status + 10 + 215 + 120 + 20 + + + + + + + message button #20 + + + $(P)$(S):sendCommand.VAL + L + Write + + + $(P)$(S):sendCommand.VAL + Forbid Local Ctrl + 140 + 215 + 130 + 20 + + + + + + + text update #23 + $(P)$(S):expose_IO.AINP + 10 + 65 + 255 + 14 + + + + + 1 + false + false + + + text update #27 + $(P)$(S):exposeDone_IO.AINP + 10 + 80 + 255 + 14 + + + + + 1 + false + false + + + polyline #31 + -4 + 99 + 280 + 1 + 1 + + + + + + + + + + + + + message button #36 + + + $(P)$(S):sendCommand.VAL + 2 + Write + + + $(P)$(S):sendCommand.VAL + Enable shutter + 10 + 235 + 120 + 20 + + + + + + + message button #39 + + + $(P)$(S):sendCommand.VAL + 4 + Write + + + $(P)$(S):sendCommand.VAL + Disable shutter + 10 + 255 + 120 + 20 + + + + + + + message button #42 + + + $(P)$(S):sendCommand.VAL + F + Write + + + $(P)$(S):sendCommand.VAL + Filter Status + 10 + 275 + 120 + 20 + + + + + + + message button #45 + + + $(P)$(S):sendCommand.VAL + P + Write + + + $(P)$(S):sendCommand.VAL + Position Query + 140 + 275 + 130 + 20 + + + + + + + message button #48 + + + $(P)$(S):sendCommand.VAL + U + Write + + + $(P)$(S):sendCommand.VAL + Allow Local Ctrl + 140 + 235 + 130 + 20 + + + + + + + message button #51 + + + $(P)$(S):sendCommand.VAL + Z + Write + + + $(P)$(S):sendCommand.VAL + Clear Short Error + 140 + 255 + 130 + 20 + + + + + + + related display #54 + + + XIA_shutterTry_more.opi + replace + XIA shutter (small) + + + Less + 285 + 300 + 40 + 20 + + + + + + + + + + + menu #57 + $(P)$(S):poll.SCAN + 238 + 42 + 80 + 20 + + + + + false + + + text #60 + Status poll + 244 + 30 + 66 + 12 + + + + + true + + + text #63 + XIA Shutter + 5 + 325 + + + + + 1 + + + text entry #66 + $(P)$(S):address + 70 + 320 + 50 + + + + + + + + + 1 + false + false + + + text #70 + MODULE + 15 + 320 + 50 + 10 + + + + + 1 + + + text #73 + ADDRESS + 15 + 330 + 50 + 10 + + + + + 1 + + + related display #76 + + + asynOctet.opi + + $(S):writeRead + + tab + filterStatus asyn + + + asynOctet.opi + + $(S):expose_IO + + tab + exposeCmd asyn + + + asynOctet.opi + + $(S):UserCmd_IO + + tab + UserCmd_IO + + + asynOctet.opi + + $(S):exposeDone_IO + + tab + exposeDone asyn + + + More + 285 + 320 + 40 + 20 + + + + + + + + + + + message button #82 + + + $(P)$(S):expose.PROC + 1 + Write + + + $(P)$(S):expose.PROC + Expose + 15 + 40 + 50 + 20 + + + + + + + text entry #85 + $(P)$(S):exposeTime + 65 + 40 + 50 + + + + + + + + + 1 + false + false + + + text #89 + (s) + 115 + 42 + 10 + 16 + + + + + true + + + composite #92 + 140 + 40 + 80 + 20 + + true + + text #95 + EXPOSING + 80 + + + + + + + + + 1 + + + + false + + $(P)$(S):busy + + + + + text #99 + DONE + 80 + + + + + + + + + 1 + + + + false + + $(P)$(S):busy + + + + + + text #103 + In + 275 + 185 + 35 + + + + + + + + + true + + + + false + + $(P)$(S):Status4 + + + + + text #107 + In + 275 + 165 + 35 + + + + + + + + + true + + + + false + + $(P)$(S):Status3 + + + + + text #111 + In + 275 + 145 + 35 + + + + + + + + + true + + + + false + + $(P)$(S):Status2 + + + + + message button #115 + + + $(P)$(S):openShutter.PROC + 1 + Write + + + $(P)$(S):openShutter.PROC + Open shutter + 140 + 105 + 130 + 20 + + + + + + + message button #118 + + + $(P)$(S):closeShutter.PROC + 1 + Write + + + $(P)$(S):closeShutter.PROC + Close shutter + 10 + 105 + 120 + 20 + + + + + + + message button #121 + + + $(P)$(S):sendCommand.VAL + I1 + Write + + + $(P)$(S):sendCommand.VAL + Insert Filter 1 + 10 + 125 + 120 + 20 + + + + + + + message button #124 + + + $(P)$(S):sendCommand.VAL + I2 + Write + + + $(P)$(S):sendCommand.VAL + Insert Filter 2 + 10 + 145 + 120 + 20 + + + + + + + message button #127 + + + $(P)$(S):sendCommand.VAL + R1 + Write + + + $(P)$(S):sendCommand.VAL + Remove Filter 1 + 140 + 125 + 130 + 20 + + + + + + + message button #130 + + + $(P)$(S):sendCommand.VAL + R2 + Write + + + $(P)$(S):sendCommand.VAL + Remove Filter 2 + 140 + 145 + 130 + 20 + + + + + + + message button #133 + + + $(P)$(S):sendCommand.VAL + I3 + Write + + + $(P)$(S):sendCommand.VAL + Insert Filter 3 + 10 + 165 + 120 + 20 + + + + + + + message button #136 + + + $(P)$(S):sendCommand.VAL + I4 + Write + + + $(P)$(S):sendCommand.VAL + Insert Filter 4 + 10 + 185 + 120 + 20 + + + + + + + message button #139 + + + $(P)$(S):sendCommand.VAL + R3 + Write + + + $(P)$(S):sendCommand.VAL + Remove Filter 3 + 140 + 165 + 130 + 20 + + + + + + + message button #142 + + + $(P)$(S):sendCommand.VAL + R4 + Write + + + $(P)$(S):sendCommand.VAL + Remove Filter 4 + 140 + 185 + 130 + 20 + + + + + + + text #145 + Out + 275 + 125 + 35 + + + + + + + + + true + + + + false + + $(P)$(S):Status1 + + + + + text #149 + In + 275 + 125 + 35 + + + + + + + + + true + + + + false + + $(P)$(S):Status1 + + + + + text #153 + Out + 275 + 145 + 35 + + + + + + + + + true + + + + false + + $(P)$(S):Status2 + + + + + text #157 + Out + 275 + 165 + 35 + + + + + + + + + true + + + + false + + $(P)$(S):Status3 + + + + + text #161 + Out + 275 + 185 + 35 + + + + + + + + + true + + + + false + + $(P)$(S):Status4 + + + + diff --git a/opticsApp/op/bob/autoconvert/XIA_shutterTry_more.bob b/opticsApp/op/bob/autoconvert/XIA_shutterTry_more.bob new file mode 100644 index 0000000..5394150 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/XIA_shutterTry_more.bob @@ -0,0 +1,640 @@ + + + XIA_shutterTry_more + 75 + 477 + 310 + 190 + + + + + false + 5 + + rectangle #6 + 310 + 25 + + + + + + + + + + + polyline #9 + 25 + 310 + 3 + + + + + + + + + + + + + text #13 + XIA Shutter + 4 + 310 + + + + + 1 + + + related display #16 + + + XIA_shutterTry_small.opi + replace + XIA shutter (small) + + + Less + 230 + 170 + 40 + 20 + + + + + + + + + + + related display #19 + + + XIA_shutterTry.opi + replace + XIA shutter (small) + + + More + 270 + 170 + 40 + 20 + + + + + + + + + + + text entry #22 + $(P)$(S):address + 65 + 170 + 50 + + + + + + + + + 1 + false + false + + + text #26 + MODULE + 10 + 170 + 50 + 10 + + + + + 1 + + + text #29 + ADDRESS + 10 + 180 + 50 + 10 + + + + + 1 + + + message button #32 + + + $(P)$(S):expose.PROC + 1 + Write + + + $(P)$(S):expose.PROC + Expose + 15 + 40 + 50 + 20 + + + + + + + text entry #35 + $(P)$(S):exposeTime + 65 + 40 + 50 + + + + + + + + + 1 + false + false + + + text #39 + (s) + 115 + 42 + 10 + 16 + + + + + true + + + composite #42 + 140 + 40 + 80 + 20 + + true + + text #45 + EXPOSING + 80 + + + + + + + + + 1 + + + + false + + $(P)$(S):busy + + + + + text #49 + DONE + 80 + + + + + + + + + 1 + + + + false + + $(P)$(S):busy + + + + + + text #53 + In + 275 + 145 + 35 + + + + + + + + + true + + + + false + + $(P)$(S):Status4 + + + + + text #57 + In + 275 + 125 + 35 + + + + + + + + + true + + + + false + + $(P)$(S):Status3 + + + + + text #61 + In + 275 + 105 + 35 + + + + + + + + + true + + + + false + + $(P)$(S):Status2 + + + + + message button #65 + + + $(P)$(S):openShutter.PROC + 1 + Write + + + $(P)$(S):openShutter.PROC + Open shutter + 140 + 65 + 130 + 20 + + + + + + + message button #68 + + + $(P)$(S):closeShutter.PROC + 1 + Write + + + $(P)$(S):closeShutter.PROC + Close shutter + 10 + 65 + 120 + 20 + + + + + + + message button #71 + + + $(P)$(S):sendCommand.VAL + I1 + Write + + + $(P)$(S):sendCommand.VAL + Insert Filter 1 + 10 + 85 + 120 + 20 + + + + + + + message button #74 + + + $(P)$(S):sendCommand.VAL + I2 + Write + + + $(P)$(S):sendCommand.VAL + Insert Filter 2 + 10 + 105 + 120 + 20 + + + + + + + message button #77 + + + $(P)$(S):sendCommand.VAL + R1 + Write + + + $(P)$(S):sendCommand.VAL + Remove Filter 1 + 140 + 85 + 130 + 20 + + + + + + + message button #80 + + + $(P)$(S):sendCommand.VAL + R2 + Write + + + $(P)$(S):sendCommand.VAL + Remove Filter 2 + 140 + 105 + 130 + 20 + + + + + + + message button #83 + + + $(P)$(S):sendCommand.VAL + I3 + Write + + + $(P)$(S):sendCommand.VAL + Insert Filter 3 + 10 + 125 + 120 + 20 + + + + + + + message button #86 + + + $(P)$(S):sendCommand.VAL + I4 + Write + + + $(P)$(S):sendCommand.VAL + Insert Filter 4 + 10 + 145 + 120 + 20 + + + + + + + message button #89 + + + $(P)$(S):sendCommand.VAL + R3 + Write + + + $(P)$(S):sendCommand.VAL + Remove Filter 3 + 140 + 125 + 130 + 20 + + + + + + + message button #92 + + + $(P)$(S):sendCommand.VAL + R4 + Write + + + $(P)$(S):sendCommand.VAL + Remove Filter 4 + 140 + 145 + 130 + 20 + + + + + + + text #95 + Out + 275 + 85 + 35 + + + + + + + + + true + + + + false + + $(P)$(S):Status1 + + + + + text #99 + In + 275 + 85 + 35 + + + + + + + + + true + + + + false + + $(P)$(S):Status1 + + + + + text #103 + Out + 275 + 105 + 35 + + + + + + + + + true + + + + false + + $(P)$(S):Status2 + + + + + text #107 + Out + 275 + 125 + 35 + + + + + + + + + true + + + + false + + $(P)$(S):Status3 + + + + + text #111 + Out + 275 + 145 + 35 + + + + + + + + + true + + + + false + + $(P)$(S):Status4 + + + + diff --git a/opticsApp/op/bob/autoconvert/XIA_shutterTry_small.bob b/opticsApp/op/bob/autoconvert/XIA_shutterTry_small.bob new file mode 100644 index 0000000..7a821ab --- /dev/null +++ b/opticsApp/op/bob/autoconvert/XIA_shutterTry_small.bob @@ -0,0 +1,221 @@ + + + XIA_shutterTry_small + 420 + 707 + 280 + 90 + + + + + false + 5 + + rectangle #6 + 280 + 25 + + + + + + + + + + + message button #9 + + + $(P)$(S):openShutter.PROC + 1 + Write + + + $(P)$(S):openShutter.PROC + Open shutter + 140 + 65 + 130 + 20 + + + + + + + message button #12 + + + $(P)$(S):closeShutter.PROC + 1 + Write + + + $(P)$(S):closeShutter.PROC + Close shutter + 10 + 65 + 120 + 20 + + + + + + + polyline #15 + 25 + 281 + 3 + + + + + + + + + + + + + text #19 + XIA Shutter + 5 + 280 + + + + + 1 + + + related display #22 + + + XIA_shutterTry_more.opi + replace + XIA shutter (all) + + + More + 230 + 30 + 40 + 20 + + + + + + + + + + + message button #25 + + + $(P)$(S):expose.PROC + 1 + Write + + + $(P)$(S):expose.PROC + Expose + 15 + 40 + 50 + 20 + + + + + + + text entry #28 + $(P)$(S):exposeTime + 65 + 40 + 50 + + + + + + + + + 1 + false + false + + + text #32 + (s) + 115 + 42 + 10 + 16 + + + + + true + + + composite #35 + 140 + 40 + 80 + 20 + + true + + text #38 + EXPOSING + 80 + + + + + + + + + 1 + + + + false + + $(P)$(S):busy + + + + + text #42 + DONE + 80 + + + + + + + + + 1 + + + + false + + $(P)$(S):busy + + + + + diff --git a/opticsApp/op/bob/autoconvert/XIA_shutter_more.bob b/opticsApp/op/bob/autoconvert/XIA_shutter_more.bob new file mode 100644 index 0000000..76ac1b9 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/XIA_shutter_more.bob @@ -0,0 +1,402 @@ + + + XIA_shutter_more + 192 + 160 + 280 + 170 + + + + + false + 5 + + rectangle #6 + 280 + 25 + + + + + + + + + + + message button #9 + + + $(P)$(S)openShutter.PROC + 1 + Write + + + $(P)$(S)openShutter.PROC + Open shutter + 140 + 65 + 130 + 20 + + + + + + + message button #12 + + + $(P)$(S)closeShutter.PROC + 1 + Write + + + $(P)$(S)closeShutter.PROC + Close shutter + 10 + 65 + 120 + 20 + + + + + + + polyline #15 + 25 + 281 + 3 + + + + + + + + + + + + + composite #19 + 15 + 30 + 50 + 10 + + true + + text #22 + BUSY + 50 + 10 + + + + + + + + + 1 + + + + false + + $(P)$(S)busy + + + + + text #26 + DONE + 50 + 10 + + + + + 1 + + + + false + + $(P)$(S)busy + + + + + + message button #30 + + + $(P)$(S)expose.PROC + 1 + Write + + + $(P)$(S)expose.PROC + Expose + 15 + 40 + 50 + 20 + + + + + + + text entry #33 + $(P)$(S)exposeTime + 65 + 40 + 50 + + + + + + + + + 1 + false + false + + + text #37 + (s) + 115 + 42 + 10 + 16 + + + + + true + + + message button #40 + + + $(P)$(S)sendCommand.VAL + I1 + Write + + + $(P)$(S)sendCommand.VAL + Insert Filter 1 + 10 + 85 + 120 + 20 + + + + + + + message button #43 + + + $(P)$(S)sendCommand.VAL + I2 + Write + + + $(P)$(S)sendCommand.VAL + Insert Filter 2 + 10 + 105 + 120 + 20 + + + + + + + message button #46 + + + $(P)$(S)sendCommand.VAL + R1 + Write + + + $(P)$(S)sendCommand.VAL + Remove Filter 1 + 140 + 85 + 130 + 20 + + + + + + + message button #49 + + + $(P)$(S)sendCommand.VAL + R2 + Write + + + $(P)$(S)sendCommand.VAL + Remove Filter 2 + 140 + 105 + 130 + 20 + + + + + + + text #52 + XIA Shutter + 5 + 280 + + + + + 1 + + + message button #55 + + + $(P)$(S)sendCommand.VAL + I3 + Write + + + $(P)$(S)sendCommand.VAL + Insert Filter 3 + 10 + 125 + 120 + 20 + + + + + + + message button #58 + + + $(P)$(S)sendCommand.VAL + I4 + Write + + + $(P)$(S)sendCommand.VAL + Insert Filter 4 + 10 + 145 + 120 + 20 + + + + + + + message button #61 + + + $(P)$(S)sendCommand.VAL + R3 + Write + + + $(P)$(S)sendCommand.VAL + Remove Filter 3 + 140 + 125 + 130 + 20 + + + + + + + message button #64 + + + $(P)$(S)sendCommand.VAL + R4 + Write + + + $(P)$(S)sendCommand.VAL + Remove Filter 4 + 140 + 145 + 130 + 20 + + + + + + + related display #67 + + + XIA_shutter_small.opi + replace + XIA shutter (small) + + + Less + 190 + 30 + 40 + 20 + + + + + + + + + + + related display #70 + + + XIA_shutter.opi + replace + XIA shutter (small) + + + More + 230 + 30 + 40 + 20 + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/XIA_shutter_small.bob b/opticsApp/op/bob/autoconvert/XIA_shutter_small.bob new file mode 100644 index 0000000..078908f --- /dev/null +++ b/opticsApp/op/bob/autoconvert/XIA_shutter_small.bob @@ -0,0 +1,219 @@ + + + XIA_shutter_small + 192 + 31 + 280 + 90 + + + + + false + 5 + + rectangle #6 + 280 + 25 + + + + + + + + + + + message button #9 + + + $(P)$(S)openShutter.PROC + 1 + Write + + + $(P)$(S)openShutter.PROC + Open shutter + 140 + 65 + 130 + 20 + + + + + + + message button #12 + + + $(P)$(S)closeShutter.PROC + 1 + Write + + + $(P)$(S)closeShutter.PROC + Close shutter + 10 + 65 + 120 + 20 + + + + + + + polyline #15 + 25 + 281 + 3 + + + + + + + + + + + + + composite #19 + 15 + 30 + 50 + 10 + + true + + text #22 + BUSY + 50 + 10 + + + + + + + + + 1 + + + + false + + $(P)$(S)busy + + + + + text #26 + DONE + 50 + 10 + + + + + 1 + + + + false + + $(P)$(S)busy + + + + + + message button #30 + + + $(P)$(S)expose.PROC + 1 + Write + + + $(P)$(S)expose.PROC + Expose + 15 + 40 + 50 + 20 + + + + + + + text entry #33 + $(P)$(S)exposeTime + 65 + 40 + 50 + + + + + + + + + 1 + false + false + + + text #37 + (s) + 115 + 42 + 10 + 16 + + + + + true + + + text #40 + XIA Shutter + 5 + 280 + + + + + 1 + + + related display #43 + + + XIA_shutter_more.opi + replace + XIA shutter (all) + + + More + 230 + 30 + 40 + 20 + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/bProtect.bob b/opticsApp/op/bob/autoconvert/bProtect.bob new file mode 100644 index 0000000..3dfbf45 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/bProtect.bob @@ -0,0 +1,39 @@ + + + bProtect + 10 + 10 + 100 + 70 + + + + + false + 5 + + choice button #6 + $(P)bProtect.VAL + 20 + 50 + + + + + false + false + + Item 1 + Item 2 + + + + text #9 + bProtect + + + + + 1 + + diff --git a/opticsApp/op/bob/autoconvert/fb_epid.bob b/opticsApp/op/bob/autoconvert/fb_epid.bob new file mode 100644 index 0000000..5269f50 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/fb_epid.bob @@ -0,0 +1,995 @@ + + + fb_epid + 26 + 59 + 518 + 330 + + + + + false + 5 + + text #6 + fb_epid.adl + 16 + 4 + 200 + 10 + + + + + true + + + text #9 + last update: 2012-03-01 (prj) + 16 + 14 + 200 + 10 + + + + + true + + + text #12 + feedback $(P) + 164 + 3 + 340 + 24 + + + + + 1 + + + related display #15 + + + userCalc.opi + + enable +

$(P):

+
+ tab + calculation +
+
+ 'enable' calc + 7 + 299 + 120 + 18 + + + + + + + + +
+ + menu #18 + $(P).SCAN + 132 + 299 + 83 + 14 + + + + + false + + + related display #21 + + + fb_epid_chart.opi + tab + charting + + + chart + 220 + 299 + 50 + 18 + + + + + + + + + + + related display #24 + + + fb_epid_basic.opi + replace + basic + + + less + 400 + 299 + 50 + 18 + + + + + + + + + + + related display #27 + + + fb_epid_config.opi + tab + config + + + config + 458 + 299 + 50 + 18 + + + + + + + + + + + rectangle #30 + 8 + 62 + 500 + 92 + 4 + + + + + + + + + true + + + rectangle #33 + 37 + 57 + 140 + 14 + + + + + + + + + + + text #36 + EPID input + 47 + 57 + 120 + 14 + 1 + + + text update #39 + $(P).CVAL + 49 + 99 + 102 + 14 + + + + + 5 + false + 1 + false + + + text entry #43 + $(P).VAL + 49 + 77 + 103 + 16 + + + + + + + + + 5 + false + false + + + text #47 + - + 17 + 99 + 14 + 14 + 1 + + + polyline #50 + 36 + 119 + 121 + 2 + 2 + + + + + + + + + + + + + text #54 + following error (FE) + 156 + 126 + 160 + 14 + true + + + text update #57 + $(P).ERR + 49 + 126 + 102 + 14 + + + + + 5 + false + 1 + false + + + related display #61 + + + userCalc.opi + + in +

$(P):

+
+ tab + calculation +
+
+ input calc + 156 + 98 + 160 + 18 + + + + + + + + +
+ + rectangle #64 + 8 + 164 + 500 + 130 + 4 + + + + + + + + + true + + + rectangle #67 + 37 + 159 + 140 + 14 + + + + + + + + + + + text #70 + EPID output + 47 + 159 + 120 + 14 + 1 + + + choice button #73 + $(P).FMOD + 339 + 176 + 156 + 14 + + + + + false + + Item 1 + Item 2 + + + + polyline #76 + 141 + 257 + 124 + 2 + 2 + + + + + + + + + + + + + text update #80 + $(P).OVAL + 153 + 265 + 14 + + + + + 5 + false + 1 + false + + + text #84 + <= + 124 + 265 + 24 + 14 + 1 + + + text #87 + <= + 258 + 265 + 24 + 14 + 1 + + + text entry #90 + $(P).DRVL + 39 + 264 + 80 + 16 + + + + + + + + + 5 + false + false + + + text entry #94 + $(P).DRVH + 287 + 264 + 80 + 16 + + + + + + + + + 5 + false + false + + + text #98 + P + 249 + 198 + 12 + 14 + 1 + + + text #101 + + 145 + 198 + 14 + 14 + 1 + + + text #104 + D + 249 + 238 + 12 + 14 + 1 + + + text #107 + + + 145 + 238 + 14 + 14 + 1 + + + text #110 + I + 249 + 217 + 12 + 14 + 1 + + + text #113 + + + 145 + 217 + 14 + 14 + 1 + + + text #116 + KP + 14 + 197 + 20 + 14 + 2 + + + text entry #119 + $(P).KI + 38 + 217 + 80 + 16 + + + + + + + + + 5 + false + false + + + text #123 + KI + 15 + 218 + 20 + 14 + 2 + + + text entry #126 + $(P).KD + 39 + 238 + 80 + 16 + + + + + + + + + 5 + false + false + + + text #130 + KD + 14 + 238 + 20 + 14 + 2 + + + text entry #133 + $(P).KP + 38 + 196 + 80 + 16 + + + + + + + + + 5 + false + false + + + text #137 + KP + 14 + 197 + 20 + 14 + 2 + + + text #140 + I + 249 + 217 + 12 + 14 + 1 + + + text #143 + + + 145 + 217 + 14 + 14 + 1 + + + text #146 + P + 249 + 198 + 12 + 14 + 1 + + + text #149 + + 145 + 198 + 14 + 14 + 1 + + + text #152 + D + 249 + 238 + 12 + 14 + 1 + + + text #155 + + + 145 + 238 + 14 + 14 + 1 + + + text #158 + feedback + 125 + 177 + 60 + 12 + + + + + true + + + choice button #161 + $(P):on + 40 + 176 + 80 + 14 + + + + + + + + + false + + Item 1 + Item 2 + + + + related display #164 + + + userCalc.opi + + out +

$(P):

+
+ tab + calculation +
+
+ output calc + 370 + 263 + 120 + 18 + + + + + + + + +
+ + text update #167 + $(P).FBON + 236 + 175 + 80 + 14 + + + + + 5 + false + 1 + false + + + text update #171 + $(P).P + 164 + 198 + 80 + 14 + + + + + 5 + false + 1 + false + + + text update #175 + $(P).D + 164 + 238 + 80 + 14 + + + + + 5 + false + 1 + false + + + text entry #179 + $(P).I + 164 + 217 + 80 + 16 + + + + + + + + + 5 + false + false + + + text #183 + I = KP * KI * sum(FE*DT) + 282 + 220 + 220 + 10 + + + + + true + + + text #186 + P = KP * FE + 282 + 200 + 220 + 10 + + + + + true + + + text #189 + D = KP * KD * (FE[i] - FE[i-1])/DT + 282 + 241 + 220 + 10 + + + + + true + + + text #192 + 0 + 199 + 217 + 12 + 14 + 1 + + + text #195 + 0 + 199 + 238 + 12 + 14 + 1 + + + text #198 + D = 0 + 282 + 241 + 220 + 10 + + + + + true + + + text #201 + I = 0 + 282 + 220 + 220 + 10 + + + + + true + + + text #204 + P = KP * (INP[i] - INP[i-1])/DT + 282 + 200 + 220 + 10 + + + + + true + + + text #207 + DESC + 17 + 34 + 31 + 16 + + + + + 2 + + + text #210 + EGU + 277 + 34 + 27 + 16 + + + + + 2 + + + text #213 + PREC + 408 + 34 + 38 + 16 + + + + + 2 + + + text update #216 + $(P).DESC + 55 + 34 + 217 + 18 + + + + + + + + + 1 + false + false + + + text update #220 + $(P).EGU + 310 + 34 + 92 + 18 + + + + + + + + + 1 + false + false + + + text update #224 + $(P).PREC + 451 + 34 + 46 + 16 + + + + + + + + + 1 + false + 2 + false + + + text #228 + set point + 156 + 77 + 160 + 14 + true + +
diff --git a/opticsApp/op/bob/autoconvert/fb_epid_basic.bob b/opticsApp/op/bob/autoconvert/fb_epid_basic.bob new file mode 100644 index 0000000..c0eedb3 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/fb_epid_basic.bob @@ -0,0 +1,240 @@ + + + fb_epid_basic + 28 + 59 + 260 + 200 + + + + + false + 5 + + text #6 + fb_epid_basic.adl + 16 + 4 + 200 + 10 + + + + + true + + + text #9 + last update: 2012-02-28 (prj) + 16 + 14 + 200 + 10 + + + + + true + + + rectangle #12 + 37 + 195 + 140 + 14 + + + + + + + + + + + related display #15 + + + fb_epid.opi + replace + standard screen + + + more + 200 + 4 + 50 + 18 + + + + + + + + + + + text #18 + feedback $(P) + 10 + 34 + 240 + 24 + + + + + 1 + + + text update #21 + $(P).DESC + 10 + 64 + 240 + + + + + + + + + + + + + 5 + false + 1 + false + + + text update #25 + $(P).CVAL + 10 + 90 + 240 + 28 + + + + + + + + + 5 + false + 1 + false + + + text entry #29 + $(P).VAL + 10 + 130 + 240 + 28 + + + + + + + + + 5 + false + false + + + choice button #33 + $(P):on + 10 + 170 + 132 + 18 + + + + + + + + + false + + Item 1 + Item 2 + + + + text #36 + On + 175 + 170 + 50 + 18 + + + + + + + + + 1 + + + + false + + $(P).FBON + + + + + rectangle #40 + 150 + 164 + 30 + 4 + + + + + + + + + true + + + text #43 + Off + 175 + 170 + 50 + 18 + + + + + + + + + 1 + + + + false + + $(P).FBON + + + + diff --git a/opticsApp/op/bob/autoconvert/fb_epid_chart.bob b/opticsApp/op/bob/autoconvert/fb_epid_chart.bob new file mode 100644 index 0000000..5c44723 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/fb_epid_chart.bob @@ -0,0 +1,122 @@ + + + fb_epid_chart + 8 + 56 + 400 + 400 + + + + + false + 5 + + text #6 + $(P) fb_epid simulator chart + 20 + 6 + 360 + + + + + 1 + + + strip chart #9 + 20 + 31 + 360 + 176 + + + + + signal (R) & set point (Y) + false + 60 second + + + + true + false + 0.0 + 100.0 + false + true + + + + + $(traces[0].y_pv) + $(P).CVAL + 0 + 2 + + + + + 2 + 0 + 10 + true + + + $(traces[1].y_pv) + $(P).VAL + 0 + 2 + + + + + 2 + 0 + 10 + true + + + + + strip chart #16 + 20 + 226 + 360 + 150 + + + + + following error + false + 60 second + + + + true + false + 0.0 + 100.0 + false + true + + + + + $(traces[0].y_pv) + $(P).ERR + 0 + 2 + + + + + 2 + 0 + 10 + true + + + + diff --git a/opticsApp/op/bob/autoconvert/fb_epid_config.bob b/opticsApp/op/bob/autoconvert/fb_epid_config.bob new file mode 100644 index 0000000..905a928 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/fb_epid_config.bob @@ -0,0 +1,568 @@ + + + fb_epid_config + 106 + 140 + 650 + 340 + + + + + false + 5 + + text #6 + The <output buffer calc> is for internal use. Do not use it! + 42 + 290 + 500 + 14 + true + + + text #9 + fb_epid_control.adl + 16 + 4 + 200 + 10 + + + + + true + + + text #12 + last update: 2012-03-01 (prj) + 16 + 14 + 200 + 10 + + + + + true + + + text #15 + feedback $(P) + 164 + 3 + 340 + 24 + + + + + 1 + + + text #18 + DESC + 17 + 35 + 31 + 16 + + + + + 2 + + + text entry #21 + $(P).DESC + 55 + 34 + 217 + 18 + + + + + + + + + 1 + false + false + + + text #25 + EGU + 277 + 35 + 27 + 16 + + + + + 2 + + + text entry #28 + $(P).EGU + 310 + 34 + 92 + 18 + + + + + + + + + 1 + false + false + + + text #32 + PREC + 408 + 36 + 38 + 14 + 2 + + + text entry #35 + $(P).PREC + 451 + 35 + 46 + 16 + + + + + + + + + 1 + false + false + + + text #39 + DT + 149 + 59 + 32 + 14 + 2 + + + text entry #42 + $(P).DT + 186 + 58 + 90 + 16 + + + + + + + + + 1 + false + false + + + menu #46 + $(P).SCAN + 282 + 59 + 83 + 14 + + + + + false + + + text entry #49 + $(P).MDT + 407 + 58 + 90 + 16 + + + + + + + + + 1 + false + false + + + text #53 + MDT + 370 + 59 + 32 + 14 + 2 + + + related display #56 + + + userCalc.opi + + obuf +

$(P):

+
+ tab + calculation +
+
+ output buffer calc + 520 + 290 + 120 + 18 + + + + + + + + +
+ + related display #59 + + + userCalc.opi + + resume +

$(P):

+
+ tab + calculation +
+
+ resume calc + 520 + 310 + 120 + 18 + + + + + + + + +
+ + related display #62 + + + fb_epid.opi + replace + main + + + main + 586 + 35 + 50 + 18 + + + + + + + + + + + text #65 + Note: + 13 + 199 + + + + + true + + + text #68 + This screen provides direct access to just a few of the possible + 42 + 220 + 500 + 14 + true + + + text #71 + configuration variables for the fb_epid support. For access to more + 42 + 240 + 500 + 14 + true + + + text #74 + capabilities, visit each calculation subscreen. + 42 + 260 + 500 + 14 + true + + + text #77 + The <resume calc> is for internal use. Do not use it! + 42 + 310 + 500 + 14 + true + + + text entry #80 + $(P):enable.CALC + 400 + 153 + 190 + 16 + + + + + + + + + 5 + false + false + + + related display #84 + + + userCalc.opi + + enable +

$(P):

+
+ tab + calculation +
+
+ calc + 595 + 153 + 40 + 18 + + + + + + + + +
+ + text entry #87 + $(P):enable.INAN + 205 + 153 + 190 + 16 + + + + + + + + + 5 + false + false + + + text #91 + enable calculation + 10 + 153 + 190 + 14 + 2 + + + text #94 + output signal + 10 + 174 + 190 + 14 + 2 + + + text entry #97 + $(P):out.OUTN + 205 + 174 + 190 + 16 + + + + + + + + + 5 + false + false + + + related display #101 + + + userCalc.opi + + out +

$(P):

+
+ tab + calculation +
+
+ calc + 595 + 174 + 40 + 18 + + + + + + + + +
+ + related display #104 + + + userCalc.opi + + in +

$(P):

+
+ tab + calculation +
+
+ calc + 595 + 132 + 40 + 18 + + + + + + + + +
+ + text entry #107 + $(P):in.CALC + 400 + 132 + 190 + 16 + + + + + + + + + 5 + false + false + + + text entry #111 + $(P):in.INAN + 205 + 132 + 190 + 16 + + + + + + + + + 5 + false + false + + + text #115 + input signal + 10 + 132 + 190 + 14 + 2 + + + text #118 + PV name + 205 + 110 + 190 + 14 + 2 + + + text #121 + calculation + 400 + 110 + 190 + 14 + true + +
diff --git a/opticsApp/op/bob/autoconvert/fb_epid_sim.bob b/opticsApp/op/bob/autoconvert/fb_epid_sim.bob new file mode 100644 index 0000000..b545d38 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/fb_epid_sim.bob @@ -0,0 +1,461 @@ + + + fb_epid_sim + 28 + 69 + 443 + 300 + + + + + false + 5 + + text #6 + fb_epid_sim.adl + 16 + 4 + 200 + 10 + + + + + true + + + text #9 + last update: 2012-02-28 (prj) + 16 + 14 + 200 + 10 + + + + + true + + + text #12 + feedback simulator $(P):sim + 10 + 34 + 400 + 24 + + + + + 1 + + + text update #15 + $(P):sim.DESC + 10 + 64 + 400 + + + + + + + + + + + + + 5 + false + 1 + false + + + text #19 + base temperature + 10 + 100 + 190 + + + + + 1 + + + text entry #22 + $(P):sim.A + 205 + 100 + 190 + + + + + + + + + 5 + false + false + + + text #26 + heater power + 10 + 150 + 190 + + + + + 1 + + + text entry #29 + $(P):sim.C + 205 + 150 + 190 + + + + + + + + + 5 + false + false + + + text #33 + cooling power + 10 + 125 + 190 + + + + + 1 + + + text entry #36 + $(P):sim.B + 205 + 125 + 190 + + + + + + + + + 5 + false + false + + + text #40 + relay threshold + 10 + 200 + 190 + + + + + 1 + + + text entry #43 + $(P):sim.E + 205 + 200 + 190 + + + + + + + + + 5 + false + false + + + text #47 + PID output + 10 + 175 + 190 + + + + + 1 + + + text update #50 + $(P):sim.D + 205 + 175 + 190 + + + + + + + + + 5 + false + 1 + false + + + text #54 + current temperature + 10 + 225 + 190 + + + + + 1 + + + text update #57 + $(P):sim.F + 205 + 225 + 190 + + + + + + + + + 5 + false + 1 + false + + + related display #61 + + + fb_epid.opi + tab + basic + + + controls + 324 + 3 + 70 + 18 + + + + + + + + + + + related display #64 + + + userCalc_full.opi + + :sim + + tab + basic + + + calc + 222 + 3 + 70 + 18 + + + + + + + + + + + text #67 + feedback ON or OFF + 10 + 250 + 190 + + + + + 1 + + + text update #70 + $(P).FBON + 205 + 250 + 190 + + + + + + + + + 5 + false + 1 + false + + + text #74 + desired temperature + 10 + 275 + 190 + + + + + 1 + + + text entry #77 + $(P).VAL + 205 + 275 + 120 + + + + + + + + + 5 + false + false + + + text #81 + A + 400 + 100 + 20 + + + + + 1 + + + text #84 + B + 400 + 125 + 20 + + + + + 1 + + + text #87 + C + 400 + 150 + 20 + + + + + 1 + + + text #90 + D + 400 + 175 + 20 + + + + + 1 + + + text #93 + E + 400 + 200 + 20 + + + + + 1 + + + text #96 + F + 400 + 225 + 20 + + + + + 1 + + + text #99 + G + 400 + 250 + 20 + + + + + 1 + + + text #102 + $(P).VAL + 330 + 275 + 90 + 14 + 1 + + diff --git a/opticsApp/op/bob/autoconvert/filter_16_0_less.bob b/opticsApp/op/bob/autoconvert/filter_16_0_less.bob new file mode 100644 index 0000000..ab118f6 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/filter_16_0_less.bob @@ -0,0 +1,1229 @@ + + + filter_16_0_less + 600 + 666 + 680 + 285 + + + + + false + 5 + + rectangle #6 + 5 + 40 + 150 + 21 + + + + + + + + + + + rectangle #9 + 245 + 60 + 10 + 15 + + + + + + + + + + + + false + + $(P)$(R)EnergySelect + + + + + rectangle #13 + 245 + 40 + 10 + 15 + + + + + + + + + + + + false + + $(P)$(R)EnergySelect + + + + + choice button #17 + $(P)$(R)EnergySelect + 175 + 40 + 65 + 37 + + + + + false + false + + Item 1 + Item 2 + + + + text update #20 + $(P)$(R)EnergyBeamline + 260 + 40 + 85 + 15 + + + + + + + + + + + + + 1 + false + 2 + false + + + text entry #24 + $(P)$(R)EnergyLocal + 260 + 57 + 85 + + + + + + + + + 1 + false + false + + + text #28 + Message: + 176 + 153 + 60 + 15 + + + + + true + + + text update #31 + $(P)$(R)Message + 250 + 153 + 415 + 15 + + + + + + + + + 6 + false + false + + + message button #35 + + + $(P)$(R)TransmissionSetpoint + 0 + Write + + + $(P)$(R)TransmissionSetpoint + ALL IN + 570 + 40 + 95 + 28 + + + + + + + + + + + message button #38 + + + $(P)$(R)TransmissionSetpoint + 1 + Write + + + $(P)$(R)TransmissionSetpoint + ALL OUT + 570 + 70 + 95 + 28 + + + + + + + + + + + text #41 + Setpoint: + 570 + 105 + 86 + 15 + + + + + true + + + text entry #44 + $(P)$(R)TransmissionSetpoint + 570 + 123 + 95 + 25 + + + + + + + + + 5 + false + false + + + text #48 + Mask: + 175 + 133 + 60 + 15 + + + + + true + + + text #51 + Transm: + 175 + 111 + 60 + 15 + + + + + true + + + text update #54 + $(P)$(R)FilterMask + 245 + 134 + 60 + 13 + + + + + + + + + 1 + false + false + + + text update #58 + $(P)$(R)Transmission + 245 + 108 + 140 + + + + + + + + + + + + + 2 + false + false + + + text #62 + Status: + 175 + 89 + 60 + 15 + + + + + true + + + text update #65 + $(P)$(R)Status + 245 + 86 + 140 + + + + + + + + + + + + + 6 + false + + + text update #69 + $(P)$(R)FilterMask + 325 + 134 + 60 + 13 + + + + + + + + + 4 + false + false + + + text #73 + = + 310 + 134 + 10 + 13 + true + + + text #76 + keV + 350 + 40 + 34 + 15 + + + + + true + + + text #79 + keV + 350 + 60 + 34 + 15 + + + + + true + + + composite #82 + 400 + 40 + 155 + 108 + + true + + message button #85 + + + $(P)$(R)TransmissionFactor + 0.001 + Write + + + $(P)$(R)TransmissionFactor + /1000 + 45 + 20 + + + + + + + message button #88 + + + $(P)$(R)TransmissionSetpoint + 1.0e-2 + Write + + + $(P)$(R)TransmissionSetpoint + 1e-2 + 110 + 45 + 20 + + + + + + + message button #91 + + + $(P)$(R)TransmissionSetpoint + 1.0e-4 + Write + + + $(P)$(R)TransmissionSetpoint + 1e-4 + 110 + 22 + 45 + 20 + + + + + + + message button #94 + + + $(P)$(R)TransmissionSetpoint + 1.0e-6 + Write + + + $(P)$(R)TransmissionSetpoint + 1e-6 + 110 + 44 + 45 + 20 + + + + + + + message button #97 + + + $(P)$(R)TransmissionSetpoint + 1.0e-8 + Write + + + $(P)$(R)TransmissionSetpoint + 1e-8 + 110 + 66 + 45 + 20 + + + + + + + message button #100 + + + $(P)$(R)TransmissionSetpoint + 1.0e-10 + Write + + + $(P)$(R)TransmissionSetpoint + 1e-10 + 110 + 88 + 45 + 20 + + + + + + + message button #103 + + + $(P)$(R)TransmissionFactor + 0.1 + Write + + + $(P)$(R)TransmissionFactor + /10 + 22 + 45 + 20 + + + + + + + message button #106 + + + $(P)$(R)TransmissionFactor + .5 + Write + + + $(P)$(R)TransmissionFactor + /2 + 44 + 45 + 20 + + + + + + + message button #109 + + + $(P)$(R)TransmissionFactor + 0.9 + Write + + + $(P)$(R)TransmissionFactor + -10% + 66 + 45 + 20 + + + + + + + message button #112 + + + $(P)$(R)TransmissionStepDown + 1 + Write + + + $(P)$(R)TransmissionStepDown + - + 88 + 45 + 20 + + + + + + + message button #115 + + + $(P)$(R)TransmissionStepUp + 1 + Write + + + $(P)$(R)TransmissionStepUp + + + 50 + 88 + 45 + 20 + + + + + + + message button #118 + + + $(P)$(R)TransmissionFactor + 1000 + Write + + + $(P)$(R)TransmissionFactor + *1000 + 50 + 45 + 20 + + + + + + + message button #121 + + + $(P)$(R)TransmissionFactor + 10 + Write + + + $(P)$(R)TransmissionFactor + *10 + 50 + 22 + 45 + 20 + + + + + + + message button #124 + + + $(P)$(R)TransmissionFactor + 2 + Write + + + $(P)$(R)TransmissionFactor + *2 + 50 + 44 + 45 + 20 + + + + + + + message button #127 + + + $(P)$(R)TransmissionFactor + 1.1 + Write + + + $(P)$(R)TransmissionFactor + +10% + 50 + 66 + 45 + 20 + + + + + + + + polyline #130 + 175 + 680 + 1 + 1 + + + + + + + + + + + + + composite #134 + filterbox_less.bob + + 13 + 14 + 15 + 16 + + 40 + 180 + 130 + 100 + + + composite #136 + filterbox_less.bob + + 9 + 10 + 11 + 12 + + 180 + 180 + 130 + 100 + + + composite #138 + filterbox_less.bob + + 5 + 6 + 7 + 8 + + 375 + 180 + 130 + 100 + + + composite #140 + filterbox_less.bob + + 1 + 2 + 3 + 4 + + 515 + 180 + 130 + 100 + + + text update #142 + $(P)$(R)Description + 5 + 5 + 670 + 25 + + + + + + + + + + + + + 1 + false + 1 + false + + + polyline #146 + 165 + 30 + 0 + 145 + 1 + + + + + + + + + + + + + text #150 + $(P)$(R) + 5 + 44 + 150 + 13 + + + + + 1 + + + text #153 + filter_16_0_less.adl + 5 + 95 + 118 + 10 + + + + + true + + + text #156 + 2013-01-24 (CMS) + 5 + 110 + 118 + 10 + + + + + true + + + related display #159 + + + filter_drive_config.opi + tab + configure + + + configure + 85 + 70 + 70 + 18 + + + + + + + + + + + related display #162 + + + filter_16_0_more.opi + replace + more + + + more + 5 + 70 + 70 + 18 + + + + + + + + + + + composite #165 + 303 + 188 + 79 + 19 + + true + + composite #168 + 22 + 35 + 19 + + true + + text #171 + free + 1 + 9 + 21 + 10 + + + + + + + + + true + + + composite #174 + 35 + 10 + + true + + text #177 + lock + 21 + 10 + + + + + + + + + true + + + text #180 + / + 25 + 10 + 10 + + + + + true + + + + + polyline #183 + 5 + 19 + 1 + 1 + + + + + + + + + + + + + polyline #187 + 60 + 5 + 19 + 1 + 1 + + + + + + + + + + + + + + composite #191 + 5 + 226 + 671 + 15 + + true + + composite #194 + 20 + 15 + + true + + polyline #197 + 21 + 9 + 2 + + + + + + + + + + + + + polyline #202 + 6 + 21 + 9 + 2 + + + + + + + + + + + + + + composite #207 + 330 + 20 + 15 + + true + + polyline #210 + 21 + 9 + 2 + + + + + + + + + + + + + polyline #215 + 6 + 21 + 9 + 2 + + + + + + + + + + + + + + composite #220 + 646 + 20 + 15 + + true + + polyline #223 + 21 + 9 + 2 + + + + + + + + + + + + + polyline #228 + 6 + 21 + 9 + 2 + + + + + + + + + + + + + + polyline #233 + 7 + 671 + 2 + 2 + + + + + + + + + + + + + + composite #237 + 303 + 253 + 79 + 20 + + true + + polyline #240 + 7 + 19 + 1 + 1 + + + + + + + + + + + + + composite #244 + 17 + 45 + 20 + + true + + text #247 + remove + 45 + 10 + + + + + 1 + + + text #250 + insert + 10 + 45 + 10 + + + + + 1 + + + + polyline #253 + 60 + 7 + 19 + 1 + 1 + + + + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/filter_16_0_more.bob b/opticsApp/op/bob/autoconvert/filter_16_0_more.bob new file mode 100644 index 0000000..e09aa89 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/filter_16_0_more.bob @@ -0,0 +1,563 @@ + + + filter_16_0_more + 300 + 300 + 680 + 400 + + + + + false + 5 + + rectangle #6 + 5 + 40 + 150 + 21 + + + + + + + + + + + polyline #9 + 220 + 680 + 1 + 1 + + + + + + + + + + + + + text update #13 + $(P)$(R)Description + 5 + 5 + 670 + 25 + + + + + + + + + + + + + 1 + false + 1 + false + + + polyline #17 + 165 + 30 + 0 + 190 + 1 + + + + + + + + + + + + + text #21 + $(P)$(R) + 5 + 44 + 150 + 13 + + + + + 1 + + + text #24 + filter_16_0_more.adl + 5 + 95 + 118 + 10 + + + + + true + + + text #27 + 2013-01-31 (CMS) + 5 + 110 + 118 + 10 + + + + + true + + + related display #30 + + + filter_drive_config.opi + tab + configure + + + configure + 85 + 70 + 70 + 18 + + + + + + + + + + + related display #33 + + + filter_16_0_less.opi + replace + less + + + less + 5 + 70 + 70 + 18 + + + + + + + + + + + composite #36 + filterbox_more.bob + + 13 + 14 + 15 + 16 + + 40 + 225 + 130 + 170 + + + composite #38 + filterbox_more.bob + + 9 + 10 + 11 + 12 + + 180 + 225 + 130 + 170 + + + composite #40 + filterbox_more.bob + + 5 + 6 + 7 + 8 + + 375 + 225 + 130 + 170 + + + composite #42 + filterbox_more.bob + + 1 + 2 + 3 + 4 + + 515 + 225 + 130 + 170 + + + composite #44 + 303 + 280 + 79 + 19 + + true + + composite #47 + 22 + 35 + 19 + + true + + text #50 + free + 1 + 9 + 21 + 10 + + + + + + + + + true + + + composite #53 + 35 + 10 + + true + + text #56 + lock + 21 + 10 + + + + + + + + + true + + + text #59 + / + 25 + 10 + 10 + + + + + true + + + + + polyline #62 + 5 + 19 + 1 + 1 + + + + + + + + + + + + + polyline #66 + 60 + 5 + 19 + 1 + 1 + + + + + + + + + + + + + + composite #70 + 5 + 318 + 671 + 15 + + true + + composite #73 + 20 + 15 + + true + + polyline #76 + 21 + 9 + 2 + + + + + + + + + + + + + polyline #81 + 6 + 21 + 9 + 2 + + + + + + + + + + + + + + composite #86 + 330 + 20 + 15 + + true + + polyline #89 + 21 + 9 + 2 + + + + + + + + + + + + + polyline #94 + 6 + 21 + 9 + 2 + + + + + + + + + + + + + + composite #99 + 646 + 20 + 15 + + true + + polyline #102 + 21 + 9 + 2 + + + + + + + + + + + + + polyline #107 + 6 + 21 + 9 + 2 + + + + + + + + + + + + + + polyline #112 + 7 + 671 + 2 + 2 + + + + + + + + + + + + + + composite #116 + 303 + 345 + 79 + 20 + + true + + polyline #119 + 7 + 19 + 1 + 1 + + + + + + + + + + + + + composite #123 + 17 + 45 + 20 + + true + + text #126 + remove + 45 + 10 + + + + + 1 + + + text #129 + insert + 10 + 45 + 10 + + + + + 1 + + + + polyline #132 + 60 + 7 + 19 + 1 + 1 + + + + + + + + + + + + + + composite #136 + filter_drive_more.bob + 175 + 40 + 490 + 168 + + diff --git a/opticsApp/op/bob/autoconvert/filter_4_4_less.bob b/opticsApp/op/bob/autoconvert/filter_4_4_less.bob new file mode 100644 index 0000000..39d43c0 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/filter_4_4_less.bob @@ -0,0 +1,1183 @@ + + + filter_4_4_less + 300 + 300 + 510 + 280 + + + + + false + 5 + + rectangle #6 + 10 + 205 + 115 + 21 + + + + + + + + + + + rectangle #9 + 80 + 60 + 10 + 15 + + + + + + + + + + + + false + + $(P)$(R)EnergySelect + + + + + rectangle #13 + 80 + 40 + 10 + 15 + + + + + + + + + + + + false + + $(P)$(R)EnergySelect + + + + + choice button #17 + $(P)$(R)EnergySelect + 10 + 40 + 65 + 37 + + + + + false + false + + Item 1 + Item 2 + + + + text update #20 + $(P)$(R)EnergyBeamline + 95 + 40 + 85 + 15 + + + + + + + + + + + + + 1 + false + 2 + false + + + text entry #24 + $(P)$(R)EnergyLocal + 95 + 57 + 85 + + + + + + + + + 1 + false + false + + + text #28 + Message: + 11 + 153 + 60 + 15 + + + + + true + + + text update #31 + $(P)$(R)Message + 85 + 153 + 415 + 15 + + + + + + + + + 6 + false + false + + + message button #35 + + + $(P)$(R)TransmissionSetpoint + 0 + Write + + + $(P)$(R)TransmissionSetpoint + ALL IN + 405 + 40 + 95 + 28 + + + + + + + + + + + message button #38 + + + $(P)$(R)TransmissionSetpoint + 1 + Write + + + $(P)$(R)TransmissionSetpoint + ALL OUT + 405 + 70 + 95 + 28 + + + + + + + + + + + text #41 + Setpoint: + 405 + 105 + 86 + 15 + + + + + true + + + text entry #44 + $(P)$(R)TransmissionSetpoint + 405 + 123 + 95 + 25 + + + + + + + + + 5 + false + false + + + text #48 + Mask: + 10 + 133 + 60 + 15 + + + + + true + + + text #51 + Transm: + 10 + 111 + 60 + 15 + + + + + true + + + text update #54 + $(P)$(R)FilterMask + 80 + 134 + 60 + 13 + + + + + + + + + 1 + false + false + + + text update #58 + $(P)$(R)Transmission + 80 + 108 + 140 + + + + + + + + + + + + + 2 + false + false + + + text #62 + Status: + 10 + 89 + 60 + 15 + + + + + true + + + text update #65 + $(P)$(R)Status + 80 + 86 + 140 + + + + + + + + + + + + + 6 + false + + + text update #69 + $(P)$(R)FilterMask + 160 + 134 + 60 + 13 + + + + + + + + + 4 + false + false + + + text #73 + = + 145 + 134 + 10 + 13 + true + + + text #76 + keV + 185 + 40 + 34 + 15 + + + + + true + + + text #79 + keV + 185 + 60 + 34 + 15 + + + + + true + + + composite #82 + 235 + 40 + 155 + 108 + + true + + message button #85 + + + $(P)$(R)TransmissionFactor + 0.001 + Write + + + $(P)$(R)TransmissionFactor + /1000 + 45 + 20 + + + + + + + message button #88 + + + $(P)$(R)TransmissionSetpoint + 1.0e-2 + Write + + + $(P)$(R)TransmissionSetpoint + 1e-2 + 110 + 45 + 20 + + + + + + + message button #91 + + + $(P)$(R)TransmissionSetpoint + 1.0e-4 + Write + + + $(P)$(R)TransmissionSetpoint + 1e-4 + 110 + 22 + 45 + 20 + + + + + + + message button #94 + + + $(P)$(R)TransmissionSetpoint + 1.0e-6 + Write + + + $(P)$(R)TransmissionSetpoint + 1e-6 + 110 + 44 + 45 + 20 + + + + + + + message button #97 + + + $(P)$(R)TransmissionSetpoint + 1.0e-8 + Write + + + $(P)$(R)TransmissionSetpoint + 1e-8 + 110 + 66 + 45 + 20 + + + + + + + message button #100 + + + $(P)$(R)TransmissionSetpoint + 1.0e-10 + Write + + + $(P)$(R)TransmissionSetpoint + 1e-10 + 110 + 88 + 45 + 20 + + + + + + + message button #103 + + + $(P)$(R)TransmissionFactor + 0.1 + Write + + + $(P)$(R)TransmissionFactor + /10 + 22 + 45 + 20 + + + + + + + message button #106 + + + $(P)$(R)TransmissionFactor + .5 + Write + + + $(P)$(R)TransmissionFactor + /2 + 44 + 45 + 20 + + + + + + + message button #109 + + + $(P)$(R)TransmissionFactor + 0.9 + Write + + + $(P)$(R)TransmissionFactor + -10% + 66 + 45 + 20 + + + + + + + message button #112 + + + $(P)$(R)TransmissionStepDown + 1 + Write + + + $(P)$(R)TransmissionStepDown + - + 88 + 45 + 20 + + + + + + + message button #115 + + + $(P)$(R)TransmissionStepUp + 1 + Write + + + $(P)$(R)TransmissionStepUp + + + 50 + 88 + 45 + 20 + + + + + + + message button #118 + + + $(P)$(R)TransmissionFactor + 1000 + Write + + + $(P)$(R)TransmissionFactor + *1000 + 50 + 45 + 20 + + + + + + + message button #121 + + + $(P)$(R)TransmissionFactor + 10 + Write + + + $(P)$(R)TransmissionFactor + *10 + 50 + 22 + 45 + 20 + + + + + + + message button #124 + + + $(P)$(R)TransmissionFactor + 2 + Write + + + $(P)$(R)TransmissionFactor + *2 + 50 + 44 + 45 + 20 + + + + + + + message button #127 + + + $(P)$(R)TransmissionFactor + 1.1 + Write + + + $(P)$(R)TransmissionFactor + +10% + 50 + 66 + 45 + 20 + + + + + + + + polyline #130 + 175 + 515 + 1 + 1 + + + + + + + + + + + + + composite #134 + filterbox_less.bob + + 5 + 6 + 7 + 8 + + 180 + 180 + 130 + 100 + + + composite #136 + filterbox_less.bob + + 1 + 2 + 3 + 4 + + 355 + 180 + 130 + 100 + + + text update #138 + $(P)$(R)Description + 5 + 5 + 500 + 25 + + + + + + + + + + + + + 1 + false + 1 + false + + + polyline #142 + 130 + 175 + 0 + 110 + 1 + + + + + + + + + + + + + rectangle #146 + 10 + 182 + 115 + 21 + + + + + + + + + + + text #149 + $(R) + 10 + 209 + 115 + 13 + + + + + 1 + + + related display #152 + + + filter_4_4_more.opi + replace + more + + + more + 10 + 230 + 50 + 18 + + + + + + + + + + + related display #155 + + + filter_drive_config.opi + tab + configure + + + configure + 65 + 230 + 60 + 18 + + + + + + + + + + + text #158 + filter_4_4_less.adl + 10 + 252 + 118 + 10 + + + + + true + + + text #161 + 2013-01-24 (CMS) + 10 + 267 + 118 + 10 + + + + + true + + + text #164 + $(P) + 10 + 186 + 115 + 13 + + + + + 1 + + + composite #167 + 127 + 183 + 62 + 88 + + true + + composite #170 + 12 + 50 + 20 + + true + + polyline #173 + 31 + 10 + 19 + 1 + 1 + + + + + + + + + + + + + composite #177 + 34 + 20 + + true + + text #180 + free + 10 + 20 + 10 + + + + + + + + + true + + + composite #183 + 34 + 10 + + true + + text #186 + / + 24 + 10 + 10 + + + + + true + + + text #189 + lock + 20 + 10 + + + + + + + + + true + + + + + + composite #192 + 68 + 60 + 20 + + true + + polyline #195 + 42 + 9 + 18 + 1 + 1 + + + + + + + + + + + + + composite #199 + 55 + 20 + + true + + text #202 + remove + 55 + 10 + + + + + 1 + + + text #205 + insert + 10 + 55 + 10 + + + + + 1 + + + + + + oval #208 + 328 + 222 + 22 + 22 + + + + + + + + + + + composite #211 + 310 + 226 + 16 + 15 + + true + + polyline #214 + 18 + 9 + 2 + + + + + + + + + + + + + polyline #219 + 6 + 18 + 9 + 2 + + + + + + + + + + + + + + composite #224 + 486 + 226 + 16 + 15 + + true + + polyline #227 + 18 + 9 + 2 + + + + + + + + + + + + + polyline #232 + 6 + 18 + 9 + 2 + + + + + + + + + + + + + + polyline #237 + 160 + 233 + 346 + 2 + 2 + + + + + + + + + + + + + rectangle #241 + 148 + 220 + 15 + 26 + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/filter_4_4_more.bob b/opticsApp/op/bob/autoconvert/filter_4_4_more.bob new file mode 100644 index 0000000..98f51a2 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/filter_4_4_more.bob @@ -0,0 +1,517 @@ + + + filter_4_4_more + 300 + 300 + 510 + 400 + + + + + false + 5 + + polyline #6 + 220 + 515 + 1 + 1 + + + + + + + + + + + + + text update #10 + $(P)$(R)Description + 5 + 5 + 500 + 25 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #14 + 10 + 250 + 115 + 21 + + + + + + + + + + + composite #17 + filterbox_more.bob + + 5 + 6 + 7 + 8 + + 180 + 225 + 130 + 170 + + + composite #19 + filterbox_more.bob + + 1 + 2 + 3 + 4 + + 355 + 225 + 130 + 170 + + + polyline #21 + 130 + 220 + 0 + 180 + 1 + + + + + + + + + + + + + rectangle #25 + 10 + 227 + 115 + 21 + + + + + + + + + + + text #28 + $(R) + 10 + 254 + 115 + 13 + + + + + 1 + + + related display #31 + + + filter_4_4_less.opi + replace + less + + + less + 10 + 276 + 50 + 18 + + + + + + + + + + + related display #34 + + + filter_drive_config.opi + tab + configure + + + configure + 65 + 275 + 60 + 18 + + + + + + + + + + + text #37 + filter_4_4_more.adl + 10 + 297 + 118 + 10 + + + + + true + + + text #40 + 2013-01-24 (CMS) + 10 + 312 + 118 + 10 + + + + + true + + + text #43 + $(P) + 10 + 231 + 115 + 13 + + + + + 1 + + + composite #46 + 127 + 275 + 62 + 88 + + true + + composite #49 + 12 + 50 + 20 + + true + + polyline #52 + 31 + 10 + 19 + 1 + 1 + + + + + + + + + + + + + composite #56 + 34 + 20 + + true + + text #59 + free + 10 + 20 + 10 + + + + + + + + + true + + + composite #62 + 34 + 10 + + true + + text #65 + / + 24 + 10 + 10 + + + + + true + + + text #68 + lock + 20 + 10 + + + + + + + + + true + + + + + + composite #71 + 68 + 60 + 20 + + true + + polyline #74 + 42 + 9 + 18 + 1 + 1 + + + + + + + + + + + + + composite #78 + 55 + 20 + + true + + text #81 + remove + 55 + 10 + + + + + 1 + + + text #84 + insert + 10 + 55 + 10 + + + + + 1 + + + + + + oval #87 + 328 + 314 + 22 + 22 + + + + + + + + + + + composite #90 + 310 + 318 + 16 + 15 + + true + + polyline #93 + 18 + 9 + 2 + + + + + + + + + + + + + polyline #98 + 6 + 18 + 9 + 2 + + + + + + + + + + + + + + composite #103 + 486 + 318 + 16 + 15 + + true + + polyline #106 + 18 + 9 + 2 + + + + + + + + + + + + + polyline #111 + 6 + 18 + 9 + 2 + + + + + + + + + + + + + + polyline #116 + 160 + 325 + 346 + 2 + 2 + + + + + + + + + + + + + rectangle #120 + 148 + 312 + 15 + 26 + + + + + + + + + + + composite #123 + filter_drive_more.bob + 10 + 40 + 490 + 168 + + diff --git a/opticsApp/op/bob/autoconvert/filter_8_0_less.bob b/opticsApp/op/bob/autoconvert/filter_8_0_less.bob new file mode 100644 index 0000000..9173298 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/filter_8_0_less.bob @@ -0,0 +1,1124 @@ + + + filter_8_0_less + 300 + 300 + 510 + 280 + + + + + false + 5 + + rectangle #6 + 80 + 60 + 10 + 15 + + + + + + + + + + + + false + + $(P)$(R)EnergySelect + + + + + rectangle #10 + 80 + 40 + 10 + 15 + + + + + + + + + + + + false + + $(P)$(R)EnergySelect + + + + + choice button #14 + $(P)$(R)EnergySelect + 10 + 40 + 65 + 37 + + + + + false + false + + Item 1 + Item 2 + + + + text update #17 + $(P)$(R)EnergyBeamline + 95 + 40 + 85 + 15 + + + + + + + + + + + + + 1 + false + 2 + false + + + text entry #21 + $(P)$(R)EnergyLocal + 95 + 57 + 85 + + + + + + + + + 1 + false + false + + + text #25 + Message: + 11 + 153 + 60 + 15 + + + + + true + + + text update #28 + $(P)$(R)Message + 85 + 153 + 415 + 15 + + + + + + + + + 6 + false + false + + + message button #32 + + + $(P)$(R)TransmissionSetpoint + 0 + Write + + + $(P)$(R)TransmissionSetpoint + ALL IN + 405 + 40 + 95 + 28 + + + + + + + + + + + message button #35 + + + $(P)$(R)TransmissionSetpoint + 1 + Write + + + $(P)$(R)TransmissionSetpoint + ALL OUT + 405 + 70 + 95 + 28 + + + + + + + + + + + text #38 + Setpoint: + 405 + 105 + 86 + 15 + + + + + true + + + text entry #41 + $(P)$(R)TransmissionSetpoint + 405 + 123 + 95 + 25 + + + + + + + + + 5 + false + false + + + text #45 + Mask: + 10 + 133 + 60 + 15 + + + + + true + + + text #48 + Transm: + 10 + 111 + 60 + 15 + + + + + true + + + text update #51 + $(P)$(R)FilterMask + 80 + 134 + 60 + 13 + + + + + + + + + 1 + false + false + + + text update #55 + $(P)$(R)Transmission + 80 + 108 + 140 + + + + + + + + + + + + + 2 + false + false + + + text #59 + Status: + 10 + 89 + 60 + 15 + + + + + true + + + text update #62 + $(P)$(R)Status + 80 + 86 + 140 + + + + + + + + + + + + + 6 + false + + + text update #66 + $(P)$(R)FilterMask + 160 + 134 + 60 + 13 + + + + + + + + + 4 + false + false + + + text #70 + = + 145 + 134 + 10 + 13 + true + + + text #73 + keV + 185 + 40 + 34 + 15 + + + + + true + + + text #76 + keV + 185 + 60 + 34 + 15 + + + + + true + + + composite #79 + 235 + 40 + 155 + 108 + + true + + message button #82 + + + $(P)$(R)TransmissionFactor + 0.001 + Write + + + $(P)$(R)TransmissionFactor + /1000 + 45 + 20 + + + + + + + message button #85 + + + $(P)$(R)TransmissionSetpoint + 1.0e-2 + Write + + + $(P)$(R)TransmissionSetpoint + 1e-2 + 110 + 45 + 20 + + + + + + + message button #88 + + + $(P)$(R)TransmissionSetpoint + 1.0e-4 + Write + + + $(P)$(R)TransmissionSetpoint + 1e-4 + 110 + 22 + 45 + 20 + + + + + + + message button #91 + + + $(P)$(R)TransmissionSetpoint + 1.0e-6 + Write + + + $(P)$(R)TransmissionSetpoint + 1e-6 + 110 + 44 + 45 + 20 + + + + + + + message button #94 + + + $(P)$(R)TransmissionSetpoint + 1.0e-8 + Write + + + $(P)$(R)TransmissionSetpoint + 1e-8 + 110 + 66 + 45 + 20 + + + + + + + message button #97 + + + $(P)$(R)TransmissionSetpoint + 1.0e-10 + Write + + + $(P)$(R)TransmissionSetpoint + 1e-10 + 110 + 88 + 45 + 20 + + + + + + + message button #100 + + + $(P)$(R)TransmissionFactor + 0.1 + Write + + + $(P)$(R)TransmissionFactor + /10 + 22 + 45 + 20 + + + + + + + message button #103 + + + $(P)$(R)TransmissionFactor + .5 + Write + + + $(P)$(R)TransmissionFactor + /2 + 44 + 45 + 20 + + + + + + + message button #106 + + + $(P)$(R)TransmissionFactor + 0.9 + Write + + + $(P)$(R)TransmissionFactor + -10% + 66 + 45 + 20 + + + + + + + message button #109 + + + $(P)$(R)TransmissionStepDown + 1 + Write + + + $(P)$(R)TransmissionStepDown + - + 88 + 45 + 20 + + + + + + + message button #112 + + + $(P)$(R)TransmissionStepUp + 1 + Write + + + $(P)$(R)TransmissionStepUp + + + 50 + 88 + 45 + 20 + + + + + + + message button #115 + + + $(P)$(R)TransmissionFactor + 1000 + Write + + + $(P)$(R)TransmissionFactor + *1000 + 50 + 45 + 20 + + + + + + + message button #118 + + + $(P)$(R)TransmissionFactor + 10 + Write + + + $(P)$(R)TransmissionFactor + *10 + 50 + 22 + 45 + 20 + + + + + + + message button #121 + + + $(P)$(R)TransmissionFactor + 2 + Write + + + $(P)$(R)TransmissionFactor + *2 + 50 + 44 + 45 + 20 + + + + + + + message button #124 + + + $(P)$(R)TransmissionFactor + 1.1 + Write + + + $(P)$(R)TransmissionFactor + +10% + 50 + 66 + 45 + 20 + + + + + + + + polyline #127 + 175 + 515 + 1 + 1 + + + + + + + + + + + + + composite #131 + filterbox_less.bob + + 5 + 6 + 7 + 8 + + 215 + 180 + 130 + 100 + + + composite #133 + filterbox_less.bob + + 1 + 2 + 3 + 4 + + 355 + 180 + 130 + 100 + + + text update #135 + $(P)$(R)Description + 5 + 5 + 500 + 25 + + + + + + + + + + + + + 1 + false + 1 + false + + + polyline #139 + 165 + 175 + 0 + 110 + 1 + + + + + + + + + + + + + rectangle #143 + 10 + 182 + 150 + 21 + + + + + + + + + + + text #146 + $(P)$(R) + 10 + 186 + 150 + 13 + + + + + 1 + + + text #149 + filter_8_0_less.adl + 10 + 237 + 118 + 10 + + + + + true + + + text #152 + 2013-01-24 (CMS) + 10 + 252 + 118 + 10 + + + + + true + + + related display #155 + + + filter_drive_config.opi + tab + configure + + + configure + 90 + 212 + 70 + 18 + + + + + + + + + + + related display #158 + + + filter_8_0_more.opi + replace + more + + + more + 10 + 212 + 70 + 18 + + + + + + + + + + + composite #161 + 175 + 183 + 50 + 20 + + true + + polyline #164 + 31 + 10 + 19 + 1 + 1 + + + + + + + + + + + + + composite #168 + 34 + 20 + + true + + text #171 + free + 10 + 20 + 10 + + + + + + + + + true + + + composite #174 + 34 + 10 + + true + + text #177 + / + 24 + 10 + 10 + + + + + true + + + text #180 + lock + 20 + 10 + + + + + + + + + true + + + + + + composite #183 + 185 + 226 + 326 + 15 + + true + + composite #186 + 5 + 20 + 15 + + true + + polyline #189 + 21 + 9 + 2 + + + + + + + + + + + + + polyline #194 + 6 + 21 + 9 + 2 + + + + + + + + + + + + + + composite #199 + 301 + 20 + 15 + + true + + polyline #202 + 21 + 9 + 2 + + + + + + + + + + + + + polyline #207 + 6 + 21 + 9 + 2 + + + + + + + + + + + + + + polyline #212 + 7 + 326 + 2 + 2 + + + + + + + + + + + + + + composite #216 + 163 + 251 + 60 + 20 + + true + + polyline #219 + 42 + 9 + 18 + 1 + 1 + + + + + + + + + + + + + composite #223 + 55 + 20 + + true + + text #226 + remove + 55 + 10 + + + + + 1 + + + text #229 + insert + 10 + 55 + 10 + + + + + 1 + + + + diff --git a/opticsApp/op/bob/autoconvert/filter_8_0_more.bob b/opticsApp/op/bob/autoconvert/filter_8_0_more.bob new file mode 100644 index 0000000..1c8155c --- /dev/null +++ b/opticsApp/op/bob/autoconvert/filter_8_0_more.bob @@ -0,0 +1,408 @@ + + + filter_8_0_more + 300 + 300 + 510 + 400 + + + + + false + 5 + + polyline #6 + 220 + 515 + 1 + 1 + + + + + + + + + + + + + text update #10 + $(P)$(R)Description + 5 + 5 + 500 + 25 + + + + + + + + + + + + + 1 + false + 1 + false + + + composite #14 + filterbox_more.bob + + 5 + 6 + 7 + 8 + + 215 + 225 + 130 + 170 + + + composite #16 + filterbox_more.bob + + 1 + 2 + 3 + 4 + + 355 + 225 + 130 + 170 + + + polyline #18 + 165 + 220 + 0 + 185 + 1 + + + + + + + + + + + + + rectangle #22 + 10 + 227 + 150 + 21 + + + + + + + + + + + text #25 + $(P)$(R) + 10 + 231 + 150 + 13 + + + + + 1 + + + text #28 + filter_8_0_more.adl + 10 + 282 + 118 + 10 + + + + + true + + + text #31 + 2013-01-24 (CMS) + 10 + 297 + 118 + 10 + + + + + true + + + related display #34 + + + filter_drive_config.opi + tab + configure + + + configure + 90 + 257 + 70 + 18 + + + + + + + + + + + related display #37 + + + filter_8_0_less.opi + replace + less + + + less + 10 + 257 + 70 + 18 + + + + + + + + + + + polyline #40 + 190 + 318 + 21 + 9 + 2 + + + + + + + + + + + + + polyline #45 + 190 + 324 + 21 + 9 + 2 + + + + + + + + + + + + + polyline #50 + 486 + 318 + 21 + 9 + 2 + + + + + + + + + + + + + polyline #55 + 486 + 324 + 21 + 9 + 2 + + + + + + + + + + + + + polyline #60 + 185 + 325 + 326 + 2 + 2 + + + + + + + + + + + + + polyline #64 + 206 + 285 + 19 + 1 + 1 + + + + + + + + + + + + + text #68 + free + 175 + 285 + 20 + 10 + + + + + + + + + true + + + text #71 + / + 199 + 275 + 10 + 10 + + + + + true + + + text #74 + lock + 175 + 275 + 20 + 10 + + + + + + + + + true + + + polyline #77 + 205 + 352 + 18 + 1 + 1 + + + + + + + + + + + + + text #81 + remove + 163 + 343 + 55 + 10 + + + + + 1 + + + text #84 + insert + 163 + 353 + 55 + 10 + + + + + 1 + + + composite #87 + filter_drive_more.bob + 10 + 40 + 490 + 168 + + diff --git a/opticsApp/op/bob/autoconvert/filter_8_8_less.bob b/opticsApp/op/bob/autoconvert/filter_8_8_less.bob new file mode 100644 index 0000000..3751433 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/filter_8_8_less.bob @@ -0,0 +1,43 @@ + + + filter_8_8_less + 300 + 300 + 680 + 285 + + + + + false + 5 + + rectangle #6 + 5 + 40 + 150 + 21 + + + + + + + + + + + rectangle #9 + 245 + 60 + 10 + 15 + + + + + + + + + + + filter_8_8_more + 300 + 300 + 680 + 400 + + + + + false + 5 + + rectangle #6 + 5 + 40 + 150 + 21 + + + + + + + + + + + text update #9 + $(P)$(R)Description + 5 + 5 + 670 + 25 + + + + + + + + + + + + + 1 + false + 1 + false + + + polyline #13 + 165 + 30 + 0 + 190 + 1 + + + + + + + + + + + + + text #17 + $(P)$(R) + 5 + 44 + 150 + 13 + + + + + 1 + + + text #20 + filter_8_8_more.adl + 5 + 95 + 118 + 10 + + + + + true + + + text #23 + 2013-01-31 (CMS) + 5 + 110 + 118 + 10 + + + + + true + + + related display #26 + + + filter_drive_config.opi + tab + configure + + + configure + 85 + 70 + 70 + 18 + + + + + + + + + + + related display #29 + + + filter_8_8_less.opi + replace + less + + + less + 5 + 70 + 70 + 18 + + + + + + + + + + + composite #32 + filterbox_more.bob + + 13 + 14 + 15 + 16 + + 30 + 225 + 130 + 170 + + + composite #34 + filterbox_more.bob + + 9 + 10 + 11 + 12 + + 170 + 225 + 130 + 170 + + + composite #36 + filterbox_more.bob + + 5 + 6 + 7 + 8 + + 375 + 225 + 130 + 170 + + + composite #38 + filterbox_more.bob + + 1 + 2 + 3 + 4 + + 515 + 225 + 130 + 170 + + + composite #40 + 293 + 345 + 89 + 20 + + true + + polyline #43 + 65 + 7 + 24 + 1 + 1 + + + + + + + + + + + + + polyline #47 + 7 + 24 + 1 + 1 + + + + + + + + + + + + + text #51 + insert + 18 + 10 + 55 + 10 + + + + + 1 + + + text #54 + remove + 18 + 55 + 10 + + + + + 1 + + + + composite #57 + 290 + 280 + 96 + 10 + + true + + polyline #60 + 5 + 20 + 1 + 1 + + + + + + + + + + + + + composite #64 + 22 + 49 + 10 + + true + + text #67 + lock + 20 + 10 + + + + + + + + + true + + + text #70 + / + 24 + 10 + 10 + + + + + true + + + text #73 + free + 29 + 20 + 10 + + + + + + + + + true + + + + polyline #76 + 77 + 5 + 19 + 1 + 1 + + + + + + + + + + + + + + oval #80 + 330 + 310 + 30 + 30 + + + + + + + + + + + polyline #83 + 5 + 325 + 671 + 2 + 2 + + + + + + + + + + + + + composite #87 + 651 + 318 + 20 + 15 + + true + + polyline #90 + 21 + 9 + 2 + + + + + + + + + + + + + polyline #95 + 6 + 21 + 9 + 2 + + + + + + + + + + + + + + composite #100 + 305 + 318 + 20 + 15 + + true + + polyline #103 + 21 + 9 + 2 + + + + + + + + + + + + + polyline #108 + 6 + 21 + 9 + 2 + + + + + + + + + + + + + + rectangle #113 + 5 + 313 + 20 + 25 + + + + + + + + + + + polyline #116 + 220 + 680 + 1 + 1 + + + + + + + + + + + + + composite #120 + filter_drive_more.bob + 175 + 40 + 490 + 168 + + diff --git a/opticsApp/op/bob/autoconvert/filter_blade.bob b/opticsApp/op/bob/autoconvert/filter_blade.bob new file mode 100644 index 0000000..abf5901 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/filter_blade.bob @@ -0,0 +1,158 @@ + + + filter_blade + 990 + 150 + 72 + 88 + + + + + false + 5 + + composite #6 + 6 + 14 + 14 + + true + + + + false + + $(P)$(R)Fi$(N):Lock + + + + message button #9 + + + $(P)$(R)Fi$(N):Lock + 0 + Write + + + $(P)$(R)Fi$(N):Lock + L + 14 + 14 + + + + + + + + text #13 + $(N) + 3 + 16 + 20 + 10 + + + + + 1 + + + rectangle #16 + 9 + 39 + 8 + 16 + + + + + + + + + + + + false + + $(P)$(R)Fi$(N):Set + + + + + choice button #20 + $(P)$(R)Fi$(N):Set + 60 + 26 + 28 + + + + + false + false + + Item 1 + Item 2 + + + + composite #23 + 6 + 14 + 14 + + true + + + + false + + $(P)$(R)Fi$(N):Lock + + + + message button #26 + + + $(P)$(R)Fi$(N):Lock + 1 + Write + + + $(P)$(R)Fi$(N):Lock + F + 14 + 14 + + + + + + + + rectangle #30 + 9 + 27 + 8 + 16 + + + + + + + + + + + + false + + $(P)$(R)Fi$(N):Set + + + + diff --git a/opticsApp/op/bob/autoconvert/filter_drive.bob b/opticsApp/op/bob/autoconvert/filter_drive.bob new file mode 100644 index 0000000..c92b706 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/filter_drive.bob @@ -0,0 +1,679 @@ + + + filter_drive + 89 + 92 + 500 + 130 + + + + + false + 5 + + rectangle #6 + 75 + 20 + 10 + 15 + + + + + + + + + + + + false + + $(P)$(R)EnergySelect + + + + + rectangle #10 + 75 + 10 + 15 + + + + + + + + + + + + false + + $(P)$(R)EnergySelect + + + + + choice button #14 + $(P)$(R)EnergySelect + 5 + 65 + 37 + + + + + false + false + + Item 1 + Item 2 + + + + text update #17 + $(P)$(R)EnergyBeamline + 90 + 85 + 15 + + + + + + + + + + + + + 1 + false + 2 + false + + + text entry #21 + $(P)$(R)EnergyLocal + 90 + 17 + 85 + + + + + + + + + 1 + false + false + + + text #25 + Message + 6 + 113 + 60 + 15 + + + + + true + + + text update #28 + $(P)$(R)Message + 80 + 113 + 415 + 15 + + + + + + + + + 6 + false + false + + + message button #32 + + + $(P)$(R)TransmissionSetpoint + 0 + Write + + + $(P)$(R)TransmissionSetpoint + ALL IN + 400 + 95 + 28 + + + + + + + + + + + message button #35 + + + $(P)$(R)TransmissionSetpoint + 1 + Write + + + $(P)$(R)TransmissionSetpoint + ALL OUT + 400 + 30 + 95 + 28 + + + + + + + + + + + text #38 + Setpoint + 400 + 65 + 86 + 15 + + + + + true + + + text entry #41 + $(P)$(R)TransmissionSetpoint + 400 + 83 + 95 + 25 + + + + + + + + + 5 + false + false + + + text #45 + Mask + 5 + 93 + 60 + 15 + + + + + true + + + text #48 + Transm + 5 + 71 + 60 + 15 + + + + + true + + + text update #51 + $(P)$(R)FilterMask + 75 + 94 + 60 + 13 + + + + + + + + + 1 + false + false + + + text update #55 + $(P)$(R)Transmission + 75 + 68 + 140 + + + + + + + + + + + + + 2 + false + false + + + text #59 + Status + 5 + 49 + 60 + 15 + + + + + true + + + text update #62 + $(P)$(R)Status + 75 + 46 + 140 + + + + + + + + + + + + + 6 + false + + + text update #66 + $(P)$(R)FilterMask + 155 + 94 + 60 + 13 + + + + + + + + + 4 + false + false + + + text #70 + = + 140 + 94 + 10 + 13 + true + + + text #73 + keV + 180 + 34 + 15 + + + + + true + + + text #76 + keV + 180 + 20 + 34 + 15 + + + + + true + + + message button #79 + + + $(P)$(R)TransmissionFactor + 0.001 + Write + + + $(P)$(R)TransmissionFactor + /1000 + 230 + 45 + 20 + + + + + + + message button #82 + + + $(P)$(R)TransmissionSetpoint + 1.0e-2 + Write + + + $(P)$(R)TransmissionSetpoint + 1e-2 + 340 + 45 + 20 + + + + + + + message button #85 + + + $(P)$(R)TransmissionSetpoint + 1.0e-4 + Write + + + $(P)$(R)TransmissionSetpoint + 1e-4 + 340 + 22 + 45 + 20 + + + + + + + message button #88 + + + $(P)$(R)TransmissionSetpoint + 1.0e-6 + Write + + + $(P)$(R)TransmissionSetpoint + 1e-6 + 340 + 44 + 45 + 20 + + + + + + + message button #91 + + + $(P)$(R)TransmissionSetpoint + 1.0e-8 + Write + + + $(P)$(R)TransmissionSetpoint + 1e-8 + 340 + 66 + 45 + 20 + + + + + + + message button #94 + + + $(P)$(R)TransmissionSetpoint + 1.0e-10 + Write + + + $(P)$(R)TransmissionSetpoint + 1e-10 + 340 + 88 + 45 + 20 + + + + + + + message button #97 + + + $(P)$(R)TransmissionFactor + 0.1 + Write + + + $(P)$(R)TransmissionFactor + /10 + 230 + 22 + 45 + 20 + + + + + + + message button #100 + + + $(P)$(R)TransmissionFactor + .5 + Write + + + $(P)$(R)TransmissionFactor + /2 + 230 + 44 + 45 + 20 + + + + + + + message button #103 + + + $(P)$(R)TransmissionFactor + 0.9 + Write + + + $(P)$(R)TransmissionFactor + -10% + 230 + 66 + 45 + 20 + + + + + + + message button #106 + + + $(P)$(R)TransmissionStepDown + 1 + Write + + + $(P)$(R)TransmissionStepDown + - + 230 + 88 + 45 + 20 + + + + + + + message button #109 + + + $(P)$(R)TransmissionStepUp + 1 + Write + + + $(P)$(R)TransmissionStepUp + + + 280 + 88 + 45 + 20 + + + + + + + message button #112 + + + $(P)$(R)TransmissionFactor + 1000 + Write + + + $(P)$(R)TransmissionFactor + *1000 + 280 + 45 + 20 + + + + + + + message button #115 + + + $(P)$(R)TransmissionFactor + 10 + Write + + + $(P)$(R)TransmissionFactor + *10 + 280 + 22 + 45 + 20 + + + + + + + message button #118 + + + $(P)$(R)TransmissionFactor + 2 + Write + + + $(P)$(R)TransmissionFactor + *2 + 280 + 44 + 45 + 20 + + + + + + + message button #121 + + + $(P)$(R)TransmissionFactor + 1.1 + Write + + + $(P)$(R)TransmissionFactor + +10% + 280 + 66 + 45 + 20 + + + + + + diff --git a/opticsApp/op/bob/autoconvert/filter_drive_config.bob b/opticsApp/op/bob/autoconvert/filter_drive_config.bob new file mode 100644 index 0000000..f055a56 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/filter_drive_config.bob @@ -0,0 +1,101 @@ + + + filter_drive_config + 300 + 200 + 270 + 80 + + + + + false + 5 + + text #6 + Actuator wait time [s]: + 5 + 33 + 220 + 15 + + + + + true + + + text #9 + Debug level: + 5 + 58 + 220 + 15 + + + + + true + + + text entry #12 + $(P)$(R)WaitTime + 216 + 30 + 50 + 21 + + + + + + + + + 1 + false + false + + + text entry #16 + $(P)$(R)Debug + 216 + 55 + 50 + 21 + + + + + + + + + 1 + false + false + + + text update #20 + $(P)$(R)Description + 5 + 5 + 260 + + + + + + + + + + + + + 1 + false + 1 + false + + diff --git a/opticsApp/op/bob/autoconvert/filter_drive_more.bob b/opticsApp/op/bob/autoconvert/filter_drive_more.bob new file mode 100644 index 0000000..a91221d --- /dev/null +++ b/opticsApp/op/bob/autoconvert/filter_drive_more.bob @@ -0,0 +1,819 @@ + + + filter_drive_more + 829 + 123 + 500 + 175 + + + + + false + 5 + + rectangle #6 + 75 + 20 + 10 + 15 + + + + + + + + + + + + false + + $(P)$(R)EnergySelect + + + + + rectangle #10 + 75 + 10 + 15 + + + + + + + + + + + + false + + $(P)$(R)EnergySelect + + + + + choice button #14 + $(P)$(R)EnergySelect + 5 + 65 + 37 + + + + + false + false + + Item 1 + Item 2 + + + + text update #17 + $(P)$(R)EnergyBeamline + 90 + 85 + 15 + + + + + + + + + + + + + 1 + false + 2 + false + + + text entry #21 + $(P)$(R)EnergyLocal + 90 + 17 + 85 + + + + + + + + + 1 + false + false + + + message button #25 + + + $(P)$(R)TransmissionSetpoint + 0 + Write + + + $(P)$(R)TransmissionSetpoint + ALL IN + 400 + 95 + 28 + + + + + + + + + + + message button #28 + + + $(P)$(R)TransmissionSetpoint + 1 + Write + + + $(P)$(R)TransmissionSetpoint + ALL OUT + 400 + 30 + 95 + 28 + + + + + + + + + + + text #31 + Status + 5 + 49 + 60 + 15 + + + + + true + + + text update #34 + $(P)$(R)Status + 75 + 46 + 140 + + + + + + + + + + + + + 6 + false + + + text #38 + keV + 180 + 34 + 15 + + + + + true + + + text #41 + keV + 180 + 20 + 34 + 15 + + + + + true + + + message button #44 + + + $(P)$(R)TransmissionFactor + 0.001 + Write + + + $(P)$(R)TransmissionFactor + /1000 + 230 + 45 + 20 + + + + + + + message button #47 + + + $(P)$(R)TransmissionSetpoint + 1.0e-2 + Write + + + $(P)$(R)TransmissionSetpoint + 1e-2 + 340 + 45 + 20 + + + + + + + message button #50 + + + $(P)$(R)TransmissionSetpoint + 1.0e-4 + Write + + + $(P)$(R)TransmissionSetpoint + 1e-4 + 340 + 22 + 45 + 20 + + + + + + + message button #53 + + + $(P)$(R)TransmissionSetpoint + 1.0e-6 + Write + + + $(P)$(R)TransmissionSetpoint + 1e-6 + 340 + 44 + 45 + 20 + + + + + + + message button #56 + + + $(P)$(R)TransmissionSetpoint + 1.0e-8 + Write + + + $(P)$(R)TransmissionSetpoint + 1e-8 + 340 + 66 + 45 + 20 + + + + + + + message button #59 + + + $(P)$(R)TransmissionSetpoint + 1.0e-10 + Write + + + $(P)$(R)TransmissionSetpoint + 1e-10 + 340 + 88 + 45 + 20 + + + + + + + message button #62 + + + $(P)$(R)TransmissionFactor + 0.1 + Write + + + $(P)$(R)TransmissionFactor + /10 + 230 + 22 + 45 + 20 + + + + + + + message button #65 + + + $(P)$(R)TransmissionFactor + .5 + Write + + + $(P)$(R)TransmissionFactor + /2 + 230 + 44 + 45 + 20 + + + + + + + message button #68 + + + $(P)$(R)TransmissionFactor + 0.9 + Write + + + $(P)$(R)TransmissionFactor + -10% + 230 + 66 + 45 + 20 + + + + + + + message button #71 + + + $(P)$(R)TransmissionStepDown + 1 + Write + + + $(P)$(R)TransmissionStepDown + - + 230 + 88 + 45 + 20 + + + + + + + message button #74 + + + $(P)$(R)TransmissionStepUp + 1 + Write + + + $(P)$(R)TransmissionStepUp + + + 280 + 88 + 45 + 20 + + + + + + + message button #77 + + + $(P)$(R)TransmissionFactor + 1000 + Write + + + $(P)$(R)TransmissionFactor + *1000 + 280 + 45 + 20 + + + + + + + message button #80 + + + $(P)$(R)TransmissionFactor + 10 + Write + + + $(P)$(R)TransmissionFactor + *10 + 280 + 22 + 45 + 20 + + + + + + + message button #83 + + + $(P)$(R)TransmissionFactor + 2 + Write + + + $(P)$(R)TransmissionFactor + *2 + 280 + 44 + 45 + 20 + + + + + + + message button #86 + + + $(P)$(R)TransmissionFactor + 1.1 + Write + + + $(P)$(R)TransmissionFactor + +10% + 280 + 66 + 45 + 20 + + + + + + + text update #89 + $(P)$(R)Message + 75 + 153 + 310 + 15 + + + + + + + + + 6 + false + false + + + text #93 + Message + 6 + 153 + 60 + 15 + + + + + true + + + text #96 + Setpoint + 400 + 65 + 86 + 15 + + + + + true + + + text entry #99 + $(P)$(R)TransmissionSetpoint + 400 + 83 + 95 + 25 + + + + + + + + + 5 + false + false + + + text #103 + Filter Mask + 399 + 125 + 95 + 15 + + + + + true + + + text entry #106 + $(P)$(R)FilterMaskSetpoint + 399 + 143 + 95 + 25 + + + + + + + + + 5 + false + false + + + text #110 + Mask + 5 + 133 + 60 + 15 + + + + + true + + + text update #113 + $(P)$(R)FilterMask + 75 + 134 + 60 + 13 + + + + + + + + + 1 + false + false + + + text #117 + = + 140 + 134 + 10 + 13 + true + + + text update #120 + $(P)$(R)FilterMask + 155 + 134 + 60 + 13 + + + + + + + + + 4 + false + false + + + text #124 + Transm + 5 + 71 + 60 + 15 + + + + + true + + + text update #127 + $(P)$(R)Transmission + 75 + 68 + 140 + + + + + + + + + + + + + 2 + false + false + + + text #131 + Up(+) + 5 + 93 + 60 + 15 + + + + + true + + + text update #134 + $(P)$(R)TransmissionUp + 75 + 93 + 140 + 15 + + + + + + + + + + + + + 2 + false + false + + + text #138 + Down(-) + 5 + 113 + 60 + 15 + + + + + true + + + text update #141 + $(P)$(R)TransmissionDown + 75 + 113 + 140 + 15 + + + + + + + + + + + + + 2 + false + false + + + text #145 + NumFilters + 230 + 133 + 90 + 15 + + + + + true + + + text update #148 + $(P)$(R)NumFilters + 330 + 133 + 50 + 15 + + + + + + + + + + + + + 1 + false + false + + diff --git a/opticsApp/op/bob/autoconvert/filterbox_config.bob b/opticsApp/op/bob/autoconvert/filterbox_config.bob new file mode 100644 index 0000000..8abf4fd --- /dev/null +++ b/opticsApp/op/bob/autoconvert/filterbox_config.bob @@ -0,0 +1,354 @@ + + + filterbox_config + 664 + 480 + 425 + 125 + + + + + false + 5 + + text #6 + Filter + 5 + 5 + 45 + 15 + + + + + true + + + text #9 + Material + 70 + 5 + 70 + 15 + + + + + true + + + text #12 + Thickness + 150 + 5 + 70 + 15 + + + + + true + + + text #15 + Enable + 280 + 5 + 50 + 15 + + + + + true + + + text #18 + $(N1): + 5 + 27 + 45 + 15 + + + + + true + + + menu #21 + $(P)$(R)Fi$(N1):Material + 70 + 25 + 70 + 20 + + + + + false + + + text entry #24 + $(P)$(R)Fi$(N1):Thickness + 150 + 25 + + + + + + + + + 1 + false + false + + + choice button #28 + $(P)$(R)Fi$(N1):Enable + 280 + 25 + 140 + 20 + + + + + + Item 1 + Item 2 + + + + text #31 + um + 255 + 26 + 16 + 17 + + + + + true + + + menu #34 + $(P)$(R)Fi$(N2):Material + 70 + 50 + 70 + 20 + + + + + false + + + text entry #37 + $(P)$(R)Fi$(N2):Thickness + 150 + 50 + + + + + + + + + 1 + false + false + + + choice button #41 + $(P)$(R)Fi$(N2):Enable + 280 + 50 + 140 + 20 + + + + + + Item 1 + Item 2 + + + + text #44 + um + 255 + 51 + 16 + 17 + + + + + true + + + text #47 + $(N2): + 5 + 52 + 45 + 15 + + + + + true + + + text #50 + $(N3): + 5 + 77 + 45 + 15 + + + + + true + + + menu #53 + $(P)$(R)Fi$(N3):Material + 70 + 75 + 70 + 20 + + + + + false + + + text entry #56 + $(P)$(R)Fi$(N3):Thickness + 150 + 75 + + + + + + + + + 1 + false + false + + + text #60 + um + 255 + 76 + 16 + 17 + + + + + true + + + choice button #63 + $(P)$(R)Fi$(N3):Enable + 280 + 75 + 140 + 20 + + + + + + Item 1 + Item 2 + + + + choice button #66 + $(P)$(R)Fi$(N4):Enable + 280 + 100 + 140 + 20 + + + + + + Item 1 + Item 2 + + + + text #69 + um + 255 + 101 + 16 + 17 + + + + + true + + + text entry #72 + $(P)$(R)Fi$(N4):Thickness + 150 + 100 + + + + + + + + + 1 + false + false + + + menu #76 + $(P)$(R)Fi$(N4):Material + 70 + 100 + 70 + 20 + + + + + false + + + text #79 + $(N4): + 5 + 102 + 45 + 15 + + + + + true + + diff --git a/opticsApp/op/bob/autoconvert/filterbox_less.bob b/opticsApp/op/bob/autoconvert/filterbox_less.bob new file mode 100644 index 0000000..cf2c493 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/filterbox_less.bob @@ -0,0 +1,107 @@ + + + filterbox_less + 1591 + 254 + 140 + 110 + + + + + false + 5 + + rectangle #6 + 5 + 5 + 130 + 100 + 2 + + + + + + + + + true + + + composite #9 + filter_blade.bob + + $(N4) + + 12 + 11 + 26 + 88 + + + + false + + $(P)$(R)Fi$(N4):Enable + + + + + composite #12 + filter_blade.bob + + $(N3) + + 43 + 11 + 26 + 88 + + + + false + + $(P)$(R)Fi$(N3):Enable + + + + + composite #15 + filter_blade.bob + + $(N2) + + 74 + 11 + 26 + 88 + + + + false + + $(P)$(R)Fi$(N2):Enable + + + + + composite #18 + filter_blade.bob + + $(N1) + + 105 + 11 + 26 + 88 + + + + false + + $(P)$(R)Fi$(N1):Enable + + + + diff --git a/opticsApp/op/bob/autoconvert/filterbox_more.bob b/opticsApp/op/bob/autoconvert/filterbox_more.bob new file mode 100644 index 0000000..293ee09 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/filterbox_more.bob @@ -0,0 +1,521 @@ + + + filterbox_more + 2375 + 753 + 140 + 170 + + + + + false + 5 + + rectangle #6 + 5 + 48 + 130 + 100 + 2 + + + + + + + + + true + + + related display #9 + + + filterbox_config.opi + tab + Configure + + + Configure + 15 + 152 + 110 + 18 + + + + + + + + + + + text #12 + $(N1): Disabled + 5 + 71 + 10 + + + + + + + + + true + + + + false + + $(P)$(R)Fi$(N1):Enable + + + + + text #16 + $(N2): Disabled + 5 + 12 + 71 + 10 + + + + + + + + + true + + + + false + + $(P)$(R)Fi$(N2):Enable + + + + + text #20 + $(N3): Disabled + 5 + 24 + 71 + 10 + + + + + + + + + true + + + + false + + $(P)$(R)Fi$(N3):Enable + + + + + text #24 + $(N4): Disabled + 5 + 36 + 71 + 10 + + + + + + + + + true + + + + false + + $(P)$(R)Fi$(N4):Enable + + + + + text #28 + $(N2): + 5 + 12 + 15 + 10 + + + + + true + + + text update #31 + $(P)$(R)Fi$(N2):Material + 24 + 12 + 12 + 10 + + + + + + + + + 6 + false + false + + + text update #35 + $(P)$(R)Fi$(N2):Thickness + 40 + 12 + 38 + 10 + + + + + + + + + 5 + false + false + + + text update #39 + $(P)$(R)Fi$(N2):Transmission + 82 + 12 + 50 + 10 + + + + + + + + + + + + + 2 + false + false + + + text #43 + $(N1): + 5 + 15 + 10 + + + + + true + + + text update #46 + $(P)$(R)Fi$(N1):Material + 24 + 12 + 10 + + + + + + + + + 6 + false + false + + + text update #50 + $(P)$(R)Fi$(N1):Thickness + 40 + 38 + 10 + + + + + + + + + 5 + false + false + + + text update #54 + $(P)$(R)Fi$(N1):Transmission + 82 + 50 + 10 + + + + + + + + + + + + + 2 + false + false + + + text #58 + $(N3): + 5 + 24 + 15 + 10 + + + + + true + + + text update #61 + $(P)$(R)Fi$(N3):Material + 24 + 24 + 12 + 10 + + + + + + + + + 6 + false + false + + + text update #65 + $(P)$(R)Fi$(N3):Thickness + 40 + 24 + 38 + 10 + + + + + + + + + 5 + false + false + + + text update #69 + $(P)$(R)Fi$(N3):Transmission + 82 + 24 + 50 + 10 + + + + + + + + + + + + + 2 + false + false + + + text #73 + $(N4): + 5 + 36 + 15 + 10 + + + + + true + + + text update #76 + $(P)$(R)Fi$(N4):Material + 24 + 36 + 12 + 10 + + + + + + + + + 6 + false + false + + + text update #80 + $(P)$(R)Fi$(N4):Thickness + 40 + 36 + 38 + 10 + + + + + + + + + 5 + false + false + + + text update #84 + $(P)$(R)Fi$(N4):Transmission + 82 + 36 + 50 + 10 + + + + + + + + + + + + + 2 + false + false + + + composite #88 + filter_blade.bob + + $(N4) + + 12 + 54 + 26 + 88 + + + + false + + $(P)$(R)Fi$(N4):Enable + + + + + composite #91 + filter_blade.bob + + $(N3) + + 43 + 54 + 26 + 88 + + + + false + + $(P)$(R)Fi$(N3):Enable + + + + + composite #94 + filter_blade.bob + + $(N2) + + 74 + 54 + 26 + 88 + + + + false + + $(P)$(R)Fi$(N2):Enable + + + + + composite #97 + filter_blade.bob + + $(N1) + + 105 + 54 + 26 + 88 + + + + false + + $(P)$(R)Fi$(N1):Enable + + + + diff --git a/opticsApp/op/bob/autoconvert/hrSeqCtl_All.bob b/opticsApp/op/bob/autoconvert/hrSeqCtl_All.bob new file mode 100644 index 0000000..42ad867 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/hrSeqCtl_All.bob @@ -0,0 +1,2096 @@ + + + hrSeqCtl_All + 159 + 54 + 650 + 310 + + + + + false + 5 + + polyline #6 + 133 + 649 + 2 + 2 + + + + + + + + + + + + + text entry #10 + $(P)HR$(N)_Theta2AO.VAL + 490 + 50 + 25 + + + + + + + + + 1 + false + false + + + message button #14 + + + $(P)HR$(N)_Theta2IncBO.VAL + 1 + Write + + + $(P)HR$(N)_Theta2IncBO.VAL + > + 570 + 90 + 20 + 20 + + + + + + + text entry #17 + $(P)HR$(N)_Theta2TweakAI + 510 + 90 + 60 + + + + + + + + + 1 + false + false + + + message button #21 + + + $(P)HR$(N)_Theta2DecBO.VAL + 1 + Write + + + $(P)HR$(N)_Theta2DecBO.VAL + < + 490 + 90 + 20 + 20 + + + + + + + text update #24 + $(P)HR$(N)_Theta2AO.DRVL + 490 + 75 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #28 + TH2 (deg.) + 490 + + + + + 1 + + + text update #31 + $(P)HR$(N)_Theta2RdbkAO + 490 + 34 + + + + + + + + + + + + + 1 + false + false + + + text update #35 + $(P)HR$(N)_Theta2AO.DRVH + 490 + 19 + 14 + + + + + + + + + 1 + false + 1 + false + + + text #39 + LowLim + 593 + 75 + 50 + 14 + + + + + true + + + text #42 + Desired + 593 + 55 + 50 + 14 + + + + + true + + + text #45 + Actual + 593 + 37 + 50 + 14 + + + + + true + + + text #48 + HighLim + 593 + 19 + 50 + 14 + + + + + true + + + text entry #51 + $(P)HR$(N)_Theta1AO.VAL + 300 + 50 + 25 + + + + + + + + + 1 + false + false + + + message button #55 + + + $(P)HR$(N)_Theta1IncBO.VAL + 1 + Write + + + $(P)HR$(N)_Theta1IncBO.VAL + > + 380 + 90 + 20 + 20 + + + + + + + text entry #58 + $(P)HR$(N)_Theta1TweakAI + 320 + 90 + 60 + + + + + + + + + 1 + false + false + + + message button #62 + + + $(P)HR$(N)_Theta1DecBO.VAL + 1 + Write + + + $(P)HR$(N)_Theta1DecBO.VAL + < + 300 + 90 + 20 + 20 + + + + + + + text update #65 + $(P)HR$(N)_Theta1AO.DRVL + 300 + 75 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #69 + TH1 (deg.) + 300 + + + + + 1 + + + text update #72 + $(P)HR$(N)_Theta1RdbkAO + 300 + 34 + + + + + + + + + + + + + 1 + false + false + + + text update #76 + $(P)HR$(N)_Theta1AO.DRVH + 300 + 19 + 14 + + + + + + + + + 1 + false + 1 + false + + + text update #80 + $(P)HR$(N)_LambdaAO.DRVL + 110 + 75 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #84 + $(P)HR$(N)_LambdaAO.VAL + 110 + 50 + 25 + + + + + + + + + 5 + false + false + + + message button #88 + + + $(P)HR$(N)_LambdaIncBO.VAL + 1 + Write + + + $(P)HR$(N)_LambdaIncBO.VAL + > + 190 + 90 + 20 + 20 + + + + + + + text entry #91 + $(P)HR$(N)_LambdaTweakAI + 130 + 90 + 45 + + + + + + + + + 1 + false + false + + + message button #95 + + + $(P)HR$(N)_LambdaDecBO.VAL + 1 + Write + + + $(P)HR$(N)_LambdaDecBO.VAL + < + 110 + 90 + 20 + 20 + + + + + + + text update #98 + $(P)HR$(N)_LambdaTweakAI.EGU + 175 + 92 + 15 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #102 + $(P)HR$(N)_EAO.DRVL + 75 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #106 + $(P)HR$(N)_EAO.VAL + 50 + 25 + + + + + + + + + 1 + false + false + + + text entry #110 + $(P)HR$(N)_ETweakAI + 20 + 90 + 40 + + + + + + + + + 1 + false + false + + + message button #114 + + + $(P)HR$(N)_EDecBO.VAL + 1 + Write + + + $(P)HR$(N)_EDecBO.VAL + < + 90 + 20 + 20 + + + + + + + message button #117 + + + $(P)HR$(N)_EIncBO.VAL + 1 + Write + + + $(P)HR$(N)_EIncBO.VAL + > + 80 + 90 + 20 + 20 + + + + + + + text update #120 + $(P)HR$(N)_ETweakAI.EGU + 60 + 92 + 20 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #124 + $(P)HR$(N)_EAO.DRVH + 19 + 14 + + + + + + + + + 1 + false + 1 + false + + + text update #128 + $(P)HR$(N)_ERdbkAO + 34 + + + + + + + + + + + + + 1 + false + false + + + text #132 + E (keV) + + + + + 1 + + + text update #135 + $(P)HR$(N)_LambdaRdbkAO + 110 + 34 + + + + + + + + + + + + + 1 + false + false + + + text update #139 + $(P)HR$(N)_LambdaAO.DRVH + 110 + 19 + 14 + + + + + + + + + 1 + false + false + + + text #143 + Lambda (A) + 110 + + + + + 1 + + + rectangle #146 + 220 + 80 + 110 + + + + + + + + + + + text #149 + L1 + 275 + 2 + 20 + + + + + 1 + + + text entry #152 + $(P)HR$(N)_L1AO.VAL + 275 + 20 + 20 + + + + + + + + + 1 + false + false + + + text #156 + K1 + 250 + 2 + 20 + + + + + 1 + + + text entry #159 + $(P)HR$(N)_K1AO.VAL + 250 + 20 + 20 + + + + + + + + + 1 + false + false + + + text #163 + H1 + 225 + 2 + 20 + + + + + 1 + + + text entry #166 + $(P)HR$(N)_H1AO.VAL + 225 + 20 + 20 + + + + + + + + + 1 + false + false + + + text #170 + a + 225 + 43 + 20 + 14 + true + + + text entry #173 + $(P)HR$(N)_A1AO.VAL + 240 + 40 + 55 + + + + + + + + + 1 + false + false + + + text entry #177 + $(P)HR$(N)_2d1AO + 240 + 63 + 55 + + + + + + + + + 1 + false + false + + + text #181 + 2d + 225 + 66 + 20 + 14 + true + + + menu #184 + $(P)HR$(N)_1TypeMO + 225 + 85 + 70 + 16 + + + + + false + + + rectangle #187 + 220 + 80 + 110 + 2 + + + + + + + + + true + + + rectangle #190 + 410 + 80 + 110 + + + + + + + + + + + text #193 + L2 + 465 + 2 + 20 + + + + + 1 + + + text entry #196 + $(P)HR$(N)_L2AO.VAL + 465 + 20 + 20 + + + + + + + + + 1 + false + false + + + text #200 + K2 + 440 + 2 + 20 + + + + + 1 + + + text entry #203 + $(P)HR$(N)_K2AO.VAL + 440 + 20 + 20 + + + + + + + + + 1 + false + false + + + text #207 + H2 + 415 + 2 + 20 + + + + + 1 + + + text entry #210 + $(P)HR$(N)_H2AO.VAL + 415 + 20 + 20 + + + + + + + + + 1 + false + false + + + text #214 + a + 415 + 43 + 15 + 14 + true + + + text entry #217 + $(P)HR$(N)_A2AO.VAL + 430 + 40 + 55 + + + + + + + + + 1 + false + false + + + text entry #221 + $(P)HR$(N)_2d2AO + 430 + 63 + 55 + + + + + + + + + 1 + false + false + + + text #225 + 2d + 415 + 66 + 15 + 14 + true + + + menu #228 + $(P)HR$(N)_2TypeMO + 415 + 85 + 70 + 16 + + + + + false + + + rectangle #231 + 410 + 80 + 110 + 2 + + + + + + + + + true + + + text #234 + Moving + 553 + 246 + 70 + 22 + + + + + + + + + 1 + + + + false + + $(P)HR$(N)_Moving + + + + + text update #238 + $(P)HR$(N)_phi1CmdAO + 111 + 187 + 89 + 14 + + + + + 1 + false + false + + + text update #242 + $(P)HR$(N)_phi1RdbkAI + 116 + 173 + 80 + 14 + + + + + + + + + 1 + false + false + + + rectangle #246 + 109 + 172 + 94 + 30 + 2 + + + + + + + + + true + + + + false + + $(P)HR$(N)_phi1DmovBI + + + + + text #250 + Phi 1 + 106 + 140 + 90 + + + + + 1 + + + text update #253 + $(P)HR$(N)_phi2SetAO + 205 + 202 + 94 + 14 + + + + + + + + + 1 + false + false + + + text update #257 + $(P)HR$(N)_phi1SetAO + 110 + 202 + 94 + 14 + + + + + + + + + 1 + false + false + + + text entry #261 + $(P)HR$(N)_phi1OffAO + 110 + 215 + 94 + + + + + + + + + 1 + false + false + + + text entry #265 + $(P)HR$(N)_phi2OffAO + 205 + 215 + 94 + + + + + + + + + 1 + false + false + + + text update #269 + $(P)HR$(N)_phi2RdbkAI + 211 + 172 + 80 + 14 + + + + + + + + + 1 + false + false + + + arc #273 + 96 + 193 + 25 + 18 + 90.0 + 180.0 + 2 + + + + + true + + + polyline #276 + 103 + 190 + 8 + 10 + 2 + + + + + + + + + + + + + + + polyline #280 + 74 + 204 + 20 + 2 + 2 + + + + + 1 + + + + + + + + + text #284 + Phi 2 + 211 + 140 + 90 + + + + + 1 + + + text update #287 + $(P)HR$(N)_phi1PvSI + 110 + 157 + 89 + 14 + + + + + 1 + false + false + + + text update #291 + $(P)HR$(N)_phi2PvSI + 206 + 157 + 89 + 14 + + + + + 1 + false + false + + + text update #295 + $(P)HR$(N)_phi2CmdAO + 207 + 187 + 89 + 14 + + + + + 1 + false + false + + + rectangle #299 + 204 + 172 + 94 + 30 + 2 + + + + + + + + + true + + + + false + + $(P)HR$(N)_phi2DmovBI + + + + + choice button #303 + $(P)HR$(N)_ModeBO.VAL + 2 + 162 + 75 + 45 + + + + + false + false + + Item 1 + Item 2 + + + + message button #306 + + + $(P)HR$(N)_PutBO + 1 + Write + + + $(P)HR$(N)_PutBO + Move + 2 + 210 + 75 + 25 + + + + + + + text #309 + Motor Write + 305 + 202 + 70 + 14 + + + + + true + + + text #312 + Motor Read + 305 + 172 + 70 + 14 + + + + + true + + + text #315 + Motor Write + 305 + 187 + 70 + 14 + + + + + true + + + text #318 + Motor PV name + 305 + 157 + 14 + + + + + true + + + text #321 + Offset + 305 + 218 + 70 + 14 + + + + + true + + + text #324 + Angle + 305 + 234 + 70 + 14 + + + + + true + + + text update #327 + $(P)HR$(N)_phi1RdbkAI.EGU + 385 + 172 + 25 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #331 + $(P)HR$(N)_phi1CmdAO.EGU + 385 + 187 + 25 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #335 + $(P)HR$(N)_phi1SetAO.EGU + 385 + 202 + 25 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #339 + $(P)HR$(N)_phi1OffAO.EGU + 360 + 218 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #343 + $(P)HR$(N)_phi1AO.EGU + 360 + 234 + 50 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #347 + 157 + 84 + 83 + + + + + + + + + + + text update #350 + $(P)HR$(N)_phi2AO + 205 + 234 + 94 + 14 + + + + + + + + + 1 + false + false + + + text update #354 + $(P)HR$(N)_phi1AO + 110 + 234 + 94 + 14 + + + + + + + + + 1 + false + false + + + text #358 + Done + 553 + 246 + 70 + 22 + + + + + + + + + 1 + + + + false + + $(P)HR$(N)_Moving + + + + + message button #362 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + All Stop + 546 + 209 + 88 + 38 + + + + + + + + + + + choice button #365 + $(P)HR$(N)_Mode2MO.VAL + 430 + 195 + 55 + + + + + false + false + + Item 1 + Item 2 + + + + choice button #368 + $(P)HR$(N)_UseSetBO.VAL + 430 + 160 + 22 + + + + + false + + Item 1 + Item 2 + + + + text #371 + Calibration + 430 + 145 + 14 + + + + + 1 + + + rectangle #374 + 68 + 260 + 366 + 47 + + + + + + + + + + + + false + + $(P)HR$(N)_AlertBO + + + + + text update #378 + $(P)HR$(N)_SeqMsg1SI + 82 + 265 + 339 + 18 + + + + + + + + + 1 + false + 1 + false + + + text update #382 + $(P)HR$(N)_SeqMsg2SI + 82 + 285 + 339 + 18 + + + + + + + + + 1 + false + 1 + false + + + message button #386 + + + $(P)HR$(N)_OperAckBO + 1 + Write + + + $(P)HR$(N)_OperAckBO + OK + 5 + 266 + 54 + 34 + + + + + + + polyline #389 + 255 + 536 + 2 + 2 + + + + + + + + + + + + + text entry #393 + $(P)HR$(N)_worldOffAO.VAL + 545 + 157 + 85 + 25 + + + + + + + + + 5 + false + false + + + message button #397 + + + $(P)HR$(N)_worldIncBO.VAL + 1 + Write + + + $(P)HR$(N)_worldIncBO.VAL + > + 610 + 182 + 20 + 20 + + + + + + + text entry #400 + $(P)HR$(N)_worldTweakAI + 565 + 182 + 45 + + + + + + + + + 1 + false + false + + + message button #404 + + + $(P)HR$(N)_worldDecBO.VAL + 1 + Write + + + $(P)HR$(N)_worldDecBO.VAL + < + 545 + 182 + 20 + 20 + + + + + + + text #407 + world + 545 + 140 + 60 + + + + + 1 + + + text update #410 + $(P)HR$(N)_worldOffAO.EGU + 605 + 144 + 25 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + related display #414 + + + scanParms.opi + + HR$(N)_EAO + HR$(N)_E + + tab + Setup scan parameters + + + ScanParm + 111 + 60 + 20 + + + + + + + + + + + message button #417 + + + $(P)HR$(N)_E:scanParms.GO + 1 + Write + + + $(P)HR$(N)_E:scanParms.GO + Go + 82 + 111 + 21 + 20 + + + + + + + message button #420 + + + $(P)HR$(N)_E:scanParms.LOAD + 1 + Write + + + $(P)HR$(N)_E:scanParms.LOAD + Ld + 62 + 111 + 21 + 20 + + + + + + + choice button #423 + $(P)HR$(N)_GeomMO.VAL + 409 + 112 + 200 + 20 + + + + + false + + Item 1 + Item 2 + + + diff --git a/opticsApp/op/bob/autoconvert/hr_nested.bob b/opticsApp/op/bob/autoconvert/hr_nested.bob new file mode 100644 index 0000000..16edb48 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/hr_nested.bob @@ -0,0 +1,385 @@ + + + hr_nested + 243 + 448 + 456 + 289 + + + + + false + 5 + + image #6 + hr_nested.gif + 456 + 289 + true + + + message button #8 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + All Stop + 351 + 255 + 88 + 28 + + + + + + + + + + + rectangle #11 + 26 + 242 + 64 + 42 + + + + + + + + + + + rectangle #14 + 26 + 242 + 64 + 42 + 1 + + + + + + + + + true + + + text update #17 + $(P)HR$(N)_Theta1RdbkAO + 28 + 258 + 61 + 10 + + + + + + + + + + + + + 1 + false + false + + + text entry #21 + $(P)HR$(N)_Theta1AO.VAL + 28 + 268 + 61 + 16 + + + + + + + + + 1 + false + false + + + text #25 + Theta1 + 28 + 242 + 60 + 14 + 1 + + + rectangle #28 + 326 + 158 + 64 + 42 + + + + + + + + + + + rectangle #31 + 326 + 158 + 64 + 42 + 1 + + + + + + + + + true + + + text update #34 + $(P)HR$(N)_Theta2RdbkAO + 328 + 174 + 61 + 10 + + + + + + + + + + + + + 1 + false + false + + + text entry #38 + $(P)HR$(N)_Theta2AO.VAL + 328 + 184 + 61 + 16 + + + + + + + + + 1 + false + false + + + text #42 + Theta2 + 328 + 158 + 60 + 14 + 1 + + + rectangle #45 + 253 + 222 + 64 + 38 + + + + + + + + + + + rectangle #48 + 253 + 222 + 64 + 38 + 1 + + + + + + + + + true + + + text update #51 + $(P)HR$(N)_phi1RdbkAI + 255 + 238 + 61 + 10 + + + + + + + + + + + + + 1 + false + false + + + text #55 + Phi1 + 255 + 222 + 60 + 14 + 1 + + + text update #58 + $(P)HR$(N)_phi1AO + 255 + 248 + 61 + 10 + + + + + + + + + + + + + 1 + false + false + + + rectangle #62 + 354 + 70 + 64 + 38 + + + + + + + + + + + rectangle #65 + 354 + 70 + 64 + 38 + 1 + + + + + + + + + true + + + text update #68 + $(P)HR$(N)_phi2RdbkAI + 356 + 86 + 61 + 10 + + + + + + + + + + + + + 1 + false + false + + + text #72 + Phi2 + 356 + 70 + 60 + 14 + 1 + + + text update #75 + $(P)HR$(N)_phi2AO + 356 + 96 + 61 + 10 + + + + + + + + + + + + + 1 + false + false + + diff --git a/opticsApp/op/bob/autoconvert/hr_symmetric.bob b/opticsApp/op/bob/autoconvert/hr_symmetric.bob new file mode 100644 index 0000000..ab59cba --- /dev/null +++ b/opticsApp/op/bob/autoconvert/hr_symmetric.bob @@ -0,0 +1,385 @@ + + + hr_symmetric + 30 + 85 + 456 + 290 + + + + + false + 5 + + image #6 + hr_symmetric.gif + 460 + 290 + true + + + message button #8 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + All Stop + 351 + 255 + 88 + 28 + + + + + + + + + + + rectangle #11 + 65 + 200 + 64 + 42 + + + + + + + + + + + rectangle #14 + 65 + 200 + 64 + 42 + 1 + + + + + + + + + true + + + text update #17 + $(P)HR$(N)_Theta1RdbkAO + 67 + 216 + 61 + 10 + + + + + + + + + + + + + 1 + false + false + + + text entry #21 + $(P)HR$(N)_Theta1AO.VAL + 67 + 226 + 61 + 16 + + + + + + + + + 1 + false + false + + + text #25 + Theta1 + 67 + 200 + 60 + 14 + 1 + + + rectangle #28 + 300 + 200 + 64 + 42 + + + + + + + + + + + rectangle #31 + 300 + 200 + 64 + 42 + 1 + + + + + + + + + true + + + text update #34 + $(P)HR$(N)_Theta2RdbkAO + 302 + 216 + 61 + 10 + + + + + + + + + + + + + 1 + false + false + + + text entry #38 + $(P)HR$(N)_Theta2AO.VAL + 302 + 226 + 61 + 16 + + + + + + + + + 1 + false + false + + + text #42 + Theta2 + 302 + 200 + 60 + 14 + 1 + + + rectangle #45 + 145 + 235 + 64 + 38 + + + + + + + + + + + rectangle #48 + 145 + 235 + 64 + 38 + 1 + + + + + + + + + true + + + text update #51 + $(P)HR$(N)_phi1RdbkAI + 147 + 251 + 61 + 10 + + + + + + + + + + + + + 1 + false + false + + + text #55 + Phi1 + 147 + 235 + 60 + 14 + 1 + + + text update #58 + $(P)HR$(N)_phi1AO + 147 + 261 + 61 + 10 + + + + + + + + + + + + + 1 + false + false + + + rectangle #62 + 215 + 235 + 64 + 38 + + + + + + + + + + + rectangle #65 + 215 + 235 + 64 + 38 + 1 + + + + + + + + + true + + + text update #68 + $(P)HR$(N)_phi2RdbkAI + 217 + 251 + 61 + 10 + + + + + + + + + + + + + 1 + false + false + + + text #72 + Phi2 + 217 + 235 + 60 + 14 + 1 + + + text update #75 + $(P)HR$(N)_phi2AO + 217 + 261 + 61 + 10 + + + + + + + + + + + + + 1 + false + false + + diff --git a/opticsApp/op/bob/autoconvert/kohzu2Graphic.bob b/opticsApp/op/bob/autoconvert/kohzu2Graphic.bob new file mode 100644 index 0000000..d2392c6 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/kohzu2Graphic.bob @@ -0,0 +1,929 @@ + + + kohzu2Graphic + 10 + 10 + 440 + 340 + + + + + false + 5 + + image #6 + kohzu2.gif + 440 + 340 + true + + + message button #8 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + All Stop + 175 + 276 + 88 + 28 + + + + + + + + + + + text update #11 + $(P)$(mX).RBV + 298 + 232 + 61 + 10 + + + + + + + + + + + + + 1 + false + false + + + rectangle #15 + 296 + 220 + 64 + 38 + 1 + + + + + + + + + true + + + text #18 + $(P)$(mX) + 298 + 222 + 61 + 10 + + + + + true + + + text entry #21 + $(P)$(mX).VAL + 298 + 242 + 61 + 15 + + + + + + + + + 1 + false + false + + + rectangle #25 + 74 + 105 + 64 + 38 + + + + + + + + + + + rectangle #28 + 51 + 281 + 64 + 40 + + + + + + + + + + + text update #31 + $(P)BraggThetaRdbkAO + 53 + 295 + 60 + 10 + + + + + + + + + + + + + 1 + false + false + + + text entry #35 + $(P)BraggThetaAO + 53 + 305 + 60 + 15 + + + + + + + + + 1 + false + false + + + rectangle #39 + 357 + 87 + 64 + 38 + + + + + + + + + + + text #42 + $(P)$(mX2) + 359 + 89 + 61 + 10 + + + + + true + + + text update #45 + $(P)$(mX2).RBV + 359 + 99 + 61 + 10 + + + + + + + + + + + + + 1 + false + false + + + text entry #49 + $(P)$(mX2).VAL + 359 + 109 + 61 + 15 + + + + + + + + + 1 + false + false + + + rectangle #53 + 357 + 87 + 64 + 38 + 1 + + + + + + + + + true + + + rectangle #56 + 100 + 27 + 64 + 38 + + + + + + + + + + + text #59 + $(P)$(mTH2) + 102 + 29 + 61 + 10 + + + + + true + + + text update #62 + $(P)$(mTH2).RBV + 102 + 39 + 61 + 10 + + + + + + + + + + + + + 1 + false + false + + + text entry #66 + $(P)$(mTH2).VAL + 102 + 49 + 61 + 15 + + + + + + + + + 1 + false + false + + + text update #70 + $(P)$(mCHI2).RBV + 76 + 117 + 61 + 10 + + + + + + + + + + + + + 1 + false + false + + + text entry #74 + $(P)$(mCHI2).VAL + 76 + 127 + 61 + 15 + + + + + + + + + 1 + false + false + + + text #78 + $(P)$(mCHI2) + 76 + 107 + 61 + 10 + + + + + true + + + rectangle #81 + 74 + 105 + 64 + 38 + 1 + + + + + + + + + true + + + rectangle #84 + 100 + 27 + 64 + 38 + 1 + + + + + + + + + true + + + text #87 + Theta(Y,Z) + 53 + 283 + 60 + 12 + + + + + + + + + 1 + + + text #90 + Chi + 76 + 91 + 60 + 14 + 1 + + + text #93 + Theta2 + 102 + 13 + 60 + 14 + 1 + + + text update #96 + $(P)$(mZ2).RBV + 215 + 37 + 60 + 10 + + + + + + + + + + + + + 1 + false + false + + + rectangle #100 + 213 + 25 + 64 + 38 + 1 + + + + + + + + + true + + + text #103 + $(P)$(mZ2) + 215 + 27 + 60 + 10 + + + + + true + + + text entry #106 + $(P)$(mZ2).VAL + 215 + 47 + 60 + 15 + + + + + + + + + 1 + false + false + + + text #110 + Z2 + 215 + 11 + 60 + 14 + 1 + + + rectangle #113 + 196 + 166 + 64 + 38 + + + + + + + + + + + text #116 + $(P)$(mY2) + 198 + 168 + 60 + 10 + + + + + true + + + text update #119 + $(P)$(mY2).RBV + 198 + 178 + 60 + 10 + + + + + + + + + + + + + 1 + false + false + + + text entry #123 + $(P)$(mY2).VAL + 198 + 188 + 60 + 15 + + + + + + + + + 1 + false + false + + + rectangle #127 + 196 + 166 + 64 + 38 + 1 + + + + + + + + + true + + + text #130 + Y2 + 198 + 152 + 60 + 14 + 1 + + + text #133 + X + 298 + 206 + 60 + 14 + 1 + + + text #136 + X2 + 359 + 73 + 60 + 14 + 1 + + + rectangle #139 + 342 + 18 + 64 + 38 + + + + + + + + + + + text #142 + $(P)$(mY) + 344 + 20 + 61 + 10 + + + + + true + + + text update #145 + $(P)$(mY).RBV + 344 + 30 + 61 + 10 + + + + + + + + + + + + + 1 + false + false + + + text entry #149 + $(P)$(mY).VAL + 344 + 40 + 61 + 15 + + + + + + + + + 1 + false + false + + + rectangle #153 + 342 + 18 + 64 + 38 + 1 + + + + + + + + + true + + + text #156 + Y + 344 + 4 + 60 + 14 + 1 + + + polyline #159 + 140 + 122 + 26 + 0 + 1 + + + + + + + + + + + + + polyline #163 + 165 + 57 + 43 + 44 + 1 + + + + + + + + + + + + + polyline #167 + 249 + 63 + 3 + 27 + 1 + + + + + + + + + + + + + polyline #171 + 204 + 123 + 14 + 43 + 1 + + + + + + + + + + + + + rectangle #175 + 81 + 212 + 64 + 38 + + + + + + + + + + + rectangle #178 + 81 + 212 + 64 + 38 + 1 + + + + + + + + + true + + + text update #181 + $(P)$(mTH).RBV + 83 + 224 + 61 + 10 + + + + + + + + + + + + + 1 + false + false + + + text #185 + $(P)$(mTH) + 83 + 214 + 61 + 10 + + + + + true + + + text entry #188 + $(P)$(mTH).VAL + 83 + 234 + 61 + 15 + + + + + + + + + 1 + false + false + + + text #192 + Theta + 83 + 198 + 60 + 14 + 1 + + diff --git a/opticsApp/op/bob/autoconvert/kohzuGraphic.bob b/opticsApp/op/bob/autoconvert/kohzuGraphic.bob new file mode 100644 index 0000000..1512b9c --- /dev/null +++ b/opticsApp/op/bob/autoconvert/kohzuGraphic.bob @@ -0,0 +1,857 @@ + + + kohzuGraphic + 10 + 10 + 440 + 340 + + + + + false + 5 + + image #6 + kohzu.gif + 440 + 340 + true + + + message button #8 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + All Stop + 181 + 281 + 88 + 28 + + + + + + + + + + + rectangle #11 + 38 + 288 + 64 + 40 + + + + + + + + + + + text update #14 + $(P)BraggThetaRdbkAO + 40 + 302 + 60 + 10 + + + + + + + + + + + + + 1 + false + false + + + text entry #18 + $(P)BraggThetaAO + 40 + 312 + 60 + 15 + + + + + + + + + 1 + false + false + + + text #22 + Theta(Y,Z) + 40 + 290 + 60 + 12 + + + + + + + + + 1 + + + rectangle #25 + 73 + 232 + 64 + 38 + + + + + + + + + + + rectangle #28 + 73 + 232 + 64 + 38 + 1 + + + + + + + + + true + + + text update #31 + $(P)$(mTH).RBV + 75 + 244 + 61 + 10 + + + + + + + + + + + + + 1 + false + false + + + text #35 + $(P)$(mTH) + 75 + 234 + 61 + 10 + + + + + true + + + text entry #38 + $(P)$(mTH).VAL + 75 + 254 + 61 + 15 + + + + + + + + + 1 + false + false + + + text #42 + Theta + 75 + 218 + 60 + 14 + 1 + + + rectangle #45 + 77 + 131 + 64 + 38 + + + + + + + + + + + text update #48 + $(P)$(mCHI2).RBV + 79 + 143 + 61 + 10 + + + + + + + + + + + + + 1 + false + false + + + text entry #52 + $(P)$(mCHI2).VAL + 79 + 153 + 61 + 15 + + + + + + + + + 1 + false + false + + + text #56 + $(P)$(mCHI2) + 79 + 133 + 61 + 10 + + + + + true + + + rectangle #59 + 77 + 131 + 64 + 38 + 1 + + + + + + + + + true + + + text #62 + Chi + 79 + 117 + 60 + 14 + 1 + + + rectangle #65 + 160 + 42 + 64 + 38 + + + + + + + + + + + text #68 + $(P)$(mTH2) + 162 + 44 + 61 + 10 + + + + + true + + + text update #71 + $(P)$(mTH2).RBV + 162 + 54 + 61 + 10 + + + + + + + + + + + + + 1 + false + false + + + text entry #75 + $(P)$(mTH2).VAL + 162 + 64 + 61 + 15 + + + + + + + + + 1 + false + false + + + rectangle #79 + 160 + 42 + 64 + 38 + 1 + + + + + + + + + true + + + text #82 + Theta2 + 162 + 28 + 60 + 14 + 1 + + + text update #85 + $(P)$(mZ2).RBV + 233 + 85 + 60 + 10 + + + + + + + + + + + + + 1 + false + false + + + rectangle #89 + 231 + 73 + 64 + 38 + 1 + + + + + + + + + true + + + text #92 + $(P)$(mZ2) + 233 + 75 + 60 + 10 + + + + + true + + + text entry #95 + $(P)$(mZ2).VAL + 233 + 95 + 60 + 15 + + + + + + + + + 1 + false + false + + + text #99 + Z2 + 233 + 59 + 60 + 14 + 1 + + + rectangle #102 + 374 + 24 + 64 + 38 + + + + + + + + + + + text #105 + $(P)$(mY) + 376 + 26 + 61 + 10 + + + + + true + + + text update #108 + $(P)$(mY).RBV + 376 + 36 + 61 + 10 + + + + + + + + + + + + + 1 + false + false + + + text entry #112 + $(P)$(mY).VAL + 376 + 46 + 61 + 15 + + + + + + + + + 1 + false + false + + + rectangle #116 + 374 + 24 + 64 + 38 + 1 + + + + + + + + + true + + + text #119 + Y + 376 + 10 + 60 + 14 + 1 + + + rectangle #122 + 317 + 80 + 64 + 38 + + + + + + + + + + + text #125 + $(P)$(mX2) + 319 + 82 + 61 + 10 + + + + + true + + + text update #128 + $(P)$(mX2).RBV + 319 + 92 + 61 + 10 + + + + + + + + + + + + + 1 + false + false + + + text entry #132 + $(P)$(mX2).VAL + 319 + 102 + 61 + 15 + + + + + + + + + 1 + false + false + + + rectangle #136 + 317 + 80 + 64 + 38 + 1 + + + + + + + + + true + + + text #139 + X2 + 319 + 66 + 60 + 14 + 1 + + + text update #142 + $(P)$(mX).RBV + 317 + 254 + 61 + 10 + + + + + + + + + + + + + 1 + false + false + + + rectangle #146 + 315 + 242 + 64 + 38 + 1 + + + + + + + + + true + + + text #149 + $(P)$(mX) + 317 + 244 + 61 + 10 + + + + + true + + + text entry #152 + $(P)$(mX).VAL + 317 + 264 + 61 + 15 + + + + + + + + + 1 + false + false + + + text #156 + X + 317 + 228 + 60 + 14 + 1 + + + rectangle #159 + 214 + 196 + 64 + 38 + + + + + + + + + + + text #162 + $(P)$(mY1) + 216 + 198 + 60 + 10 + + + + + true + + + text update #165 + $(P)$(mY1).RBV + 216 + 208 + 60 + 10 + + + + + + + + + + + + + 1 + false + false + + + text entry #169 + $(P)$(mY1).VAL + 216 + 218 + 60 + 15 + + + + + + + + + 1 + false + false + + + rectangle #173 + 214 + 196 + 64 + 38 + 1 + + + + + + + + + true + + + text #176 + Y1 + 216 + 182 + 60 + 14 + 1 + + diff --git a/opticsApp/op/bob/autoconvert/kohzuGraphicLarge.bob b/opticsApp/op/bob/autoconvert/kohzuGraphicLarge.bob new file mode 100644 index 0000000..494542f --- /dev/null +++ b/opticsApp/op/bob/autoconvert/kohzuGraphicLarge.bob @@ -0,0 +1,765 @@ + + + kohzuGraphicLarge + 10 + 10 + 880 + 680 + + + + + false + 5 + + image #6 + kohzu.gif + 880 + 680 + true + + + text update #8 + $(P)$(mZ2).RBV + 454 + 197 + 40 + 10 + + + + + + + + + + + + + 1 + false + false + + + message button #12 + + + $(P)$(mZ2).JOGF + 1 + Write + + + $(P)$(mZ2).JOGF + + + 474 + 207 + 20 + 20 + + + + + + + message button #15 + + + $(P)$(mZ2).JOGR + 1 + Write + + + $(P)$(mZ2).JOGR + - + 454 + 207 + 20 + 20 + + + + + + + rectangle #18 + 453 + 196 + 42 + 32 + 1 + + + + + + + + + true + + + text #21 + $(P)$(mZ2) + 453 + 186 + 40 + 10 + + + + + true + + + text update #24 + $(P)$(mY1).RBV + 390 + 354 + 40 + 10 + + + + + + + + + + + + + 1 + false + false + + + message button #28 + + + $(P)$(mY1).JOGF + 1 + Write + + + $(P)$(mY1).JOGF + + + 410 + 364 + 20 + 20 + + + + + + + message button #31 + + + $(P)$(mY1).JOGR + 1 + Write + + + $(P)$(mY1).JOGR + - + 390 + 364 + 20 + 20 + + + + + + + rectangle #34 + 389 + 353 + 42 + 32 + 1 + + + + + + + + + true + + + text #37 + $(P)$(mY1) + 390 + 343 + 40 + 10 + + + + + true + + + text update #40 + $(P)$(mTH).RBV + 209 + 444 + 40 + 10 + + + + + + + + + + + + + 1 + false + false + + + message button #44 + + + $(P)$(mTH).JOGF + 1 + Write + + + $(P)$(mTH).JOGF + + + 229 + 454 + 20 + 20 + + + + + + + message button #47 + + + $(P)$(mTH).JOGR + 1 + Write + + + $(P)$(mTH).JOGR + - + 209 + 454 + 20 + 20 + + + + + + + rectangle #50 + 208 + 443 + 42 + 32 + 1 + + + + + + + + + true + + + text #53 + $(P)$(mTH) + 209 + 433 + 40 + 10 + + + + + true + + + text update #56 + $(P)$(mCHI2).RBV + 288 + 244 + 40 + 10 + + + + + + + + + + + + + 1 + false + false + + + message button #60 + + + $(P)$(mCHI2).JOGF + 1 + Write + + + $(P)$(mCHI2).JOGF + + + 308 + 254 + 20 + 20 + + + + + + + message button #63 + + + $(P)$(mCHI2).JOGR + 1 + Write + + + $(P)$(mCHI2).JOGR + - + 288 + 254 + 20 + 20 + + + + + + + rectangle #66 + 287 + 243 + 42 + 32 + 1 + + + + + + + + + true + + + text #69 + $(P)$(mCHI2) + 288 + 233 + 40 + 10 + + + + + true + + + text update #72 + $(P)$(mTH2).RBV + 321 + 134 + 40 + 10 + + + + + + + + + + + + + 1 + false + false + + + message button #76 + + + $(P)$(mTH2).JOGF + 1 + Write + + + $(P)$(mTH2).JOGF + + + 341 + 144 + 20 + 20 + + + + + + + message button #79 + + + $(P)$(mTH2).JOGR + 1 + Write + + + $(P)$(mTH2).JOGR + - + 321 + 144 + 20 + 20 + + + + + + + rectangle #82 + 320 + 133 + 42 + 32 + 1 + + + + + + + + + true + + + text #85 + $(P)$(mTH2) + 321 + 123 + 40 + 10 + + + + + true + + + text update #88 + $(P)$(mX2).RBV + 736 + 211 + 40 + 10 + + + + + + + + + + + + + 1 + false + false + + + message button #92 + + + $(P)$(mX2).JOGF + 1 + Write + + + $(P)$(mX2).JOGF + + + 756 + 221 + 20 + 20 + + + + + + + message button #95 + + + $(P)$(mX2).JOGR + 1 + Write + + + $(P)$(mX2).JOGR + - + 736 + 221 + 20 + 20 + + + + + + + rectangle #98 + 735 + 210 + 42 + 32 + 1 + + + + + + + + + true + + + text #101 + $(P)$(mX2) + 736 + 200 + 40 + 10 + + + + + true + + + text update #104 + $(P)$(mY).RBV + 751 + 35 + 40 + 10 + + + + + + + + + + + + + 1 + false + false + + + message button #108 + + + $(P)$(mY).JOGF + 1 + Write + + + $(P)$(mY).JOGF + + + 771 + 45 + 20 + 20 + + + + + + + message button #111 + + + $(P)$(mY).JOGR + 1 + Write + + + $(P)$(mY).JOGR + - + 751 + 45 + 20 + 20 + + + + + + + rectangle #114 + 750 + 34 + 42 + 32 + 1 + + + + + + + + + true + + + text #117 + $(P)$(mY) + 751 + 24 + 40 + 10 + + + + + true + + + text update #120 + $(P)$(mX).RBV + 544 + 460 + 40 + 10 + + + + + + + + + + + + + 1 + false + false + + + message button #124 + + + $(P)$(mX).JOGF + 1 + Write + + + $(P)$(mX).JOGF + + + 564 + 470 + 20 + 20 + + + + + + + message button #127 + + + $(P)$(mX).JOGR + 1 + Write + + + $(P)$(mX).JOGR + - + 544 + 470 + 20 + 20 + + + + + + + rectangle #130 + 543 + 459 + 42 + 32 + 1 + + + + + + + + + true + + + text #133 + $(P)$(mX) + 544 + 449 + 40 + 10 + + + + + true + + diff --git a/opticsApp/op/bob/autoconvert/kohzuSeqCtl.bob b/opticsApp/op/bob/autoconvert/kohzuSeqCtl.bob new file mode 100644 index 0000000..34e6163 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/kohzuSeqCtl.bob @@ -0,0 +1,1429 @@ + + + kohzuSeqCtl + 10 + 10 + 525 + 200 + + + + + false + 5 + + rectangle #6 + 105 + 105 + 32 + + + + + + + + + + + text #9 + SCAN CONTROL + 105 + 105 + 10 + + + + + + + + + 1 + + + message button #12 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + Abort + 64 + 115 + 40 + 20 + + + + + + + + + + + message button #15 + + + $(P)BraggE:scanParms.GO + 1 + Write + + + $(P)BraggE:scanParms.GO + Go + 43 + 115 + 20 + 20 + + + + + + + message button #18 + + + $(P)BraggE:scanParms.LOAD + 1 + Write + + + $(P)BraggE:scanParms.LOAD + Ld + 22 + 115 + 20 + 20 + + + + + + + related display #21 + + + scanParms.opi + + BraggEAO + BraggE + + tab + Energy-scan parameters + + + + 1 + 115 + 20 + 20 + + + + + + + polyline #24 + 285 + 2 + 139 + 2 + + + + + + + + + + + + + polygon #28 + 275 + 55 + 15 + 15 + 1 + + + + + + + + + + + + + + + + + + + + + + false + + $(P)KohzuModeBO.VAL + + + + + text update #33 + $(P)KohzuZRdbkAI + 451 + 43 + 67 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #37 + $(P)KohzuZCmdAO + 451 + 57 + 67 + 15 + + + + + + + + + 1 + false + 1 + false + + + text update #41 + $(P)KohzuZPvSI + 450 + 32 + 70 + 10 + + + + + + + + + 1 + false + 1 + false + + + rectangle #45 + 450 + 42 + 70 + 32 + 2 + + + + + + + + + true + + + + false + + $(P)KohzuZDmovBI + + + + + text update #49 + $(P)KohzuThetaRdbkAI + 292 + 43 + 76 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #53 + $(P)KohzuThetaCmdAO + 292 + 57 + 76 + 15 + + + + + + + + + 1 + false + 1 + false + + + text update #57 + $(P)KohzuThetaPvSI + 290 + 32 + 80 + 10 + + + + + + + + + 1 + false + 1 + false + + + rectangle #61 + 290 + 42 + 80 + 32 + 2 + + + + + + + + + true + + + + false + + $(P)KohzuThetaDmovBI + + + + + text #65 + Theta + 290 + 17 + 80 + 15 + + + + + 1 + + + text #68 + Z + 450 + 17 + 70 + 15 + + + + + 1 + + + polygon #71 + 275 + 55 + 15 + 15 + 1 + + + + + + + + + + + + + + + + + + + + + + false + + $(P)KohzuPutBO.VAL + + + + + text #76 + Moving + 431 + 89 + 26 + + + + + + + + + 1 + + + + false + + $(P)KohzuMoving + + + + + text #80 + Moving + 432 + 90 + 26 + + + + + + + + + 1 + + + + false + + $(P)KohzuMoving + + + + + text #84 + Moving + 430 + 88 + 26 + + + + + + + + + 1 + + + + false + + $(P)KohzuMoving + + + + + choice button #88 + $(P)KohzuUseSetBO.VAL + 295 + 112 + 22 + + + + + false + + Item 1 + Item 2 + + + + text #91 + Calibration: + 295 + 97 + 14 + + + + + true + + + message button #94 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + All Stop + 405 + 112 + 22 + + + + + + + + + + + polyline #97 + 215 + 2 + 139 + 2 + + + + + + + + + + + + + rectangle #101 + 210 + 60 + 70 + 5 + + + + + + + + + + + + false + + $(P)KohzuPutBO.VAL + + + + + polyline #105 + -1 + 138 + 524 + 2 + 2 + + + + + + + + + + + + + choice button #109 + $(P)KohzuMode2MO.VAL + 45 + 143 + 475 + 18 + + + + + false + + Item 1 + Item 2 + + + + message button #112 + + + $(P)KohzuOperAckBO + 1 + Write + + + $(P)KohzuOperAckBO + OK + 350 + 166 + 50 + 34 + + + + + + + rectangle #115 + 166 + 345 + 34 + + + + + + + + + + + + false + + $(P)KohzuAlertBO + + + + + text update #119 + $(P)KohzuSeqMsg1SI + 3 + 168 + 339 + 14 + + + + + 1 + false + 1 + false + + + text update #123 + $(P)KohzuSeqMsg2SI + 3 + 184 + 339 + 14 + + + + + 1 + false + 1 + false + + + related display #127 + + + kohzuGraphic.opi + + BraggEAO + BraggLambdaAO + BraggThetaAO + BraggE + BraggLambda + BraggTheta + + tab + Kohzu Graphic + + + kohzuGraphicLarge.opi + + BraggEAO + BraggLambdaAO + BraggThetaAO + BraggE + BraggLambda + BraggTheta + + tab + Kohzu Graphic (L) + + + kohzuSeqCtl_tiny.opi + tab + KohzuSeq (tiny) + + + kohzuSeqCtl_All.opi + tab + KohzuSeq (all) + + + scanParms.opi + + BraggEAO + BraggE + + tab + Energy-scan parameters + + + scanParms.opi + + BraggThetaAO + BraggTheta + + tab + Theta-scan parameters + + + scanParms.opi + + BraggLambdaAO + BraggLambda + + tab + Wavelength-scan parameters + + + + 450 + 176 + 20 + 20 + + + + + + + text #136 + More + 475 + 178 + 40 + + + + + true + + + text #139 + Mode: + 5 + 143 + 40 + 18 + + + + + + + + + true + + + choice button #142 + $(P)KohzuModeBO.VAL + 220 + 5 + 60 + 45 + + + + + false + false + + Item 1 + Item 2 + + + + message button #145 + + + $(P)KohzuPutBO + 1 + Write + + + $(P)KohzuPutBO + Move + 220 + 75 + 60 + 25 + + + + + + + text #148 + TH (deg.) + 110 + + + + + 1 + + + text update #151 + $(P)BraggThetaRdbkAO + 110 + 32 + + + + + + + + + + + + + 1 + false + false + + + text entry #155 + $(P)BraggThetaAO.VAL + 110 + 48 + 25 + + + + + + + + + 1 + false + false + + + message button #159 + + + $(P)BraggThetaIncBO.VAL + 1 + Write + + + $(P)BraggThetaIncBO.VAL + > + 190 + 84 + 20 + 20 + + + + + + + text entry #162 + $(P)BraggThetaTweakAI + 130 + 84 + 60 + + + + + + + + + 1 + false + false + + + message button #166 + + + $(P)BraggThetaDecBO.VAL + 1 + Write + + + $(P)BraggThetaDecBO.VAL + < + 110 + 84 + 20 + 20 + + + + + + + text update #169 + $(P)BraggThetaAO.DRVH + 110 + 19 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #173 + $(P)BraggThetaAO.DRVL + 110 + 71 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #177 + $(P)BraggERdbkAO + 5 + 32 + + + + + + + + + + + + + 1 + false + false + + + text entry #181 + $(P)BraggEAO.VAL + 5 + 48 + 25 + + + + + + + + + 1 + false + false + + + message button #185 + + + $(P)BraggEIncBO.VAL + 1 + Write + + + $(P)BraggEIncBO.VAL + > + 85 + 84 + 20 + 20 + + + + + + + text entry #188 + $(P)BraggETweakAI + 25 + 84 + 60 + + + + + + + + + 1 + false + false + + + message button #192 + + + $(P)BraggEDecBO.VAL + 1 + Write + + + $(P)BraggEDecBO.VAL + < + 5 + 84 + 20 + 20 + + + + + + + text update #195 + $(P)BraggEAO.DRVL + 5 + 71 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #199 + $(P)BraggEAO.DRVH + 5 + 19 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #203 + E (keV) + 5 + + + + + 1 + + + rectangle #206 + 210 + 60 + 70 + 5 + + + + + + + + + + + + false + + $(P)KohzuModeBO.VAL + + + + + rectangle #210 + 110 + 105 + 105 + 32 + + + + + + + + + + + text #213 + SCAN CONTROL + 110 + 105 + 105 + 10 + + + + + + + + + 1 + + + message button #216 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + Abort + 174 + 115 + 40 + 20 + + + + + + + + + + + message button #219 + + + $(P)BraggTheta:scanParms.GO + 1 + Write + + + $(P)BraggTheta:scanParms.GO + Go + 153 + 115 + 20 + 20 + + + + + + + message button #222 + + + $(P)BraggTheta:scanParms.LOAD + 1 + Write + + + $(P)BraggTheta:scanParms.LOAD + Ld + 132 + 115 + 20 + 20 + + + + + + + related display #225 + + + scanParms.opi + + BraggThetaAO + BraggTheta + + tab + Theta-scan parameters + + + + 111 + 115 + 20 + 20 + + + + + + + text #228 + Monochromator Motors + 290 + 230 + + + + + 1 + + + text update #231 + $(P)KohzuYRdbkAI + 376 + 43 + 67 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #235 + $(P)KohzuYCmdAO + 376 + 57 + 67 + 15 + + + + + + + + + 1 + false + 1 + false + + + text update #239 + $(P)KohzuYPvSI + 375 + 32 + 70 + 10 + + + + + + + + + 1 + false + 1 + false + + + rectangle #243 + 375 + 42 + 70 + 32 + 2 + + + + + + + + + true + + + + false + + $(P)KohzuYDmovBI + + + + + text #247 + Y + 375 + 17 + 70 + 14 + 1 + + + polyline #250 + 372 + 20 + 0 + 54 + 1 + + + + + + + + + + + + + polyline #254 + 447 + 20 + 0 + 54 + 1 + + + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/kohzuSeqCtl_All.bob b/opticsApp/op/bob/autoconvert/kohzuSeqCtl_All.bob new file mode 100644 index 0000000..315e15e --- /dev/null +++ b/opticsApp/op/bob/autoconvert/kohzuSeqCtl_All.bob @@ -0,0 +1,1612 @@ + + + kohzuSeqCtl_All + 901 + 617 + 535 + 365 + + + + + false + 5 + + rectangle #6 + 84 + 294 + 366 + 47 + + + + + + + + + + + + false + + $(P)KohzuAlertBO + + + + + rectangle #10 + 115 + 94 + + + + + + + + + + + text #13 + H + 5 + 5 + 10 + + + + + true + + + text entry #16 + $(P)BraggHAO.VAL + 15 + 5 + 20 + + + + + + + + + 1 + false + false + + + text #20 + K + 43 + 5 + 10 + + + + + true + + + text entry #23 + $(P)BraggKAO.VAL + 53 + 5 + 20 + + + + + + + + + 1 + false + false + + + text #27 + L + 81 + 5 + 10 + + + + + true + + + text entry #30 + $(P)BraggLAO.VAL + 91 + 5 + 20 + + + + + + + + + 1 + false + false + + + text #34 + a + 9 + 25 + 20 + + + + + true + + + text entry #37 + $(P)BraggAAO.VAL + 29 + 25 + 60 + + + + + + + + + 1 + false + false + + + text #41 + 2d + 9 + 48 + 20 + + + + + true + + + text entry #44 + $(P)Bragg2dSpacingAO + 29 + 48 + 60 + + + + + + + + + 1 + false + false + + + text #48 + Theta + 110 + 123 + 90 + + + + + 1 + + + text #51 + Z + 300 + 123 + 90 + + + + + 1 + + + choice button #54 + $(P)KohzuModeBO.VAL + 6 + 142 + 75 + 45 + + + + + false + false + + Item 1 + Item 2 + + + + message button #57 + + + $(P)KohzuPutBO + 1 + Write + + + $(P)KohzuPutBO + Move + 6 + 190 + 75 + 25 + + + + + + + text #60 + TH (deg.) + 347 + 1 + + + + + 1 + + + text update #63 + $(P)BraggThetaRdbkAO + 347 + 35 + + + + + + + + + + + + + 1 + false + false + + + text entry #67 + $(P)BraggThetaAO.VAL + 347 + 55 + 25 + + + + + + + + + 1 + false + false + + + message button #71 + + + $(P)BraggThetaIncBO.VAL + 1 + Write + + + $(P)BraggThetaIncBO.VAL + > + 427 + 95 + 20 + 20 + + + + + + + text entry #74 + $(P)BraggThetaTweakAI + 367 + 95 + 60 + + + + + + + + + 1 + false + false + + + message button #78 + + + $(P)BraggThetaDecBO.VAL + 1 + Write + + + $(P)BraggThetaDecBO.VAL + < + 347 + 95 + 20 + 20 + + + + + + + text update #81 + $(P)BraggThetaAO.DRVH + 347 + 20 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #85 + $(P)BraggThetaAO.DRVL + 347 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #89 + $(P)BraggLambdaAO.DRVL + 237 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #93 + $(P)BraggEAO.DRVL + 127 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #97 + $(P)BraggLambdaRdbkAO + 237 + 35 + + + + + + + + + + + + + 1 + false + false + + + text entry #101 + $(P)BraggLambdaAO.VAL + 237 + 55 + 25 + + + + + + + + + 1 + false + false + + + message button #105 + + + $(P)BraggLambdaIncBO.VAL + 1 + Write + + + $(P)BraggLambdaIncBO.VAL + > + 317 + 95 + 20 + 20 + + + + + + + text entry #108 + $(P)BraggLambdaTweakAI + 257 + 95 + 60 + + + + + + + + + 1 + false + false + + + message button #112 + + + $(P)BraggLambdaDecBO.VAL + 1 + Write + + + $(P)BraggLambdaDecBO.VAL + < + 237 + 95 + 20 + 20 + + + + + + + text update #115 + $(P)BraggLambdaAO.DRVH + 237 + 20 + 15 + + + + + + + + + + + + + 1 + false + false + + + text entry #119 + $(P)BraggEAO.VAL + 127 + 55 + 25 + + + + + + + + + 1 + false + false + + + text entry #123 + $(P)BraggETweakAI + 147 + 95 + 60 + + + + + + + + + 1 + false + false + + + message button #127 + + + $(P)BraggEDecBO.VAL + 1 + Write + + + $(P)BraggEDecBO.VAL + < + 127 + 95 + 20 + 20 + + + + + + + message button #130 + + + $(P)BraggEIncBO.VAL + 1 + Write + + + $(P)BraggEIncBO.VAL + > + 207 + 95 + 20 + 20 + + + + + + + text update #133 + $(P)BraggEAO.DRVH + 127 + 20 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #137 + $(P)BraggERdbkAO + 127 + 35 + + + + + + + + + + + + + 1 + false + false + + + text #141 + lambda (A) + 237 + 1 + + + + + 1 + + + text #144 + E (keV) + 127 + 1 + + + + + 1 + + + text #147 + Speed + 400 + 205 + 50 + 14 + + + + + true + + + text #150 + Ideal + 400 + 190 + 50 + 14 + + + + + true + + + text #153 + Actual Pos. + 400 + 155 + 50 + 14 + + + + + true + + + text #156 + Motor Command + 400 + 173 + 50 + 14 + + + + + true + + + text #159 + Low Limit + 460 + 80 + 75 + 14 + + + + + true + + + text #162 + Desired + 460 + 60 + 75 + 14 + + + + + true + + + text #165 + Actual + 460 + 38 + 75 + 14 + + + + + true + + + text #168 + High Limit + 460 + 20 + 75 + 14 + + + + + true + + + polyline #171 + -1 + 118 + 536 + 2 + 2 + + + + + + + + + + + + + text update #175 + $(P)KohzuThetaRdbkAI + 120 + 155 + 80 + 15 + + + + + + + + + + + + + 1 + false + false + + + text update #179 + $(P)KohzuYRdbkAI + 215 + 154 + 80 + 15 + + + + + + + + + + + + + 1 + false + false + + + text update #183 + $(P)KohzuZRdbkAI + 310 + 155 + 80 + 15 + + + + + + + + + + + + + 1 + false + false + + + message button #187 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + All Stop + 445 + 189 + 88 + 38 + + + + + + + + + + + rectangle #190 + 118 + 97 + 2 + + + + + + + + + true + + + text update #193 + $(P)KohzuZSetAO + 310 + 190 + 80 + 15 + + + + + + + + + + + + + 1 + false + false + + + text update #197 + $(P)KohzuYSetAO + 215 + 190 + 80 + 15 + + + + + + + + + + + + + 1 + false + false + + + text update #201 + $(P)KohzuThetaSetAO + 120 + 190 + 80 + 15 + + + + + + + + + + + + + 1 + false + false + + + arc #205 + 100 + 180 + 25 + 18 + 90.0 + 180.0 + 2 + + + + + true + + + polyline #208 + 107 + 177 + 8 + 10 + 2 + + + + + + + + + + + + + + + polyline #212 + 78 + 188 + 20 + 2 + 2 + + + + + 1 + + + + + + + + + rectangle #216 + 4 + 137 + 84 + 83 + + + + + + + + + + + text update #219 + $(P)KohzuSeqMsg1SI + 98 + 299 + 339 + 18 + + + + + + + + + 1 + false + 1 + false + + + polyline #223 + -2 + 288 + 536 + 2 + 2 + + + + + + + + + + + + + text update #227 + $(P)KohzuSeqMsg2SI + 98 + 319 + 339 + 18 + + + + + + + + + 1 + false + 1 + false + + + message button #231 + + + $(P)KohzuOperAckBO + 1 + Write + + + $(P)KohzuOperAckBO + OK + 21 + 300 + 54 + 34 + + + + + + + menu #234 + $(P)BraggTypeMO + 16 + 73 + 90 + 16 + + + + + false + + + text #237 + Y + 215 + 122 + 90 + + + + + 1 + + + text update #240 + $(P)KohzuThetaPvSI + 114 + 140 + 89 + 13 + + + + + 1 + false + 1 + false + + + text update #244 + $(P)KohzuYPvSI + 210 + 140 + 89 + 13 + + + + + 1 + false + 1 + false + + + text update #248 + $(P)KohzuZPvSI + 306 + 140 + 89 + 13 + + + + + 1 + false + 1 + false + + + text #252 + Motor PV + 401 + 138 + 50 + 14 + + + + + true + + + text update #255 + $(P)KohzuZVelAI + 307 + 206 + 89 + 13 + + + + + 1 + false + 1 + false + + + text update #259 + $(P)KohzuYVelAI + 211 + 206 + 89 + 13 + + + + + 1 + false + 1 + false + + + text update #263 + $(P)KohzuThetaVelAI + 115 + 206 + 89 + 13 + + + + + 1 + false + 1 + false + + + choice button #267 + $(P)KohzuMode2MO.VAL + 248 + 222 + 106 + 65 + + + + + false + false + + Item 1 + Item 2 + + + + text update #270 + $(P)KohzuZCmdAO + 307 + 173 + 89 + 13 + + + + + 1 + false + 1 + false + + + text update #274 + $(P)KohzuYCmdAO + 211 + 173 + 89 + 13 + + + + + 1 + false + 1 + false + + + text update #278 + $(P)KohzuThetaCmdAO + 115 + 173 + 89 + 13 + + + + + 1 + false + 1 + false + + + rectangle #282 + 306 + 154 + 94 + 35 + 2 + + + + + + + + + true + + + + false + + $(P)KohzuZDmovBI + + + + + rectangle #286 + 113 + 154 + 94 + 35 + 2 + + + + + + + + + true + + + + false + + $(P)KohzuThetaDmovBI + + + + + rectangle #290 + 209 + 154 + 94 + 35 + 2 + + + + + + + + + true + + + + false + + $(P)KohzuYDmovBI + + + + + choice button #294 + $(P)KohzuUseSetBO.VAL + 5 + 260 + 22 + + + + + false + + Item 1 + Item 2 + + + + text #297 + Calibration: + 5 + 244 + 14 + + + + + true + + + text #300 + Moving + 445 + 230 + 88 + 22 + + + + + + + + + 1 + + + + false + + $(P)KohzuMoving + + + + + text #304 + Done + 445 + 230 + 88 + 22 + + + + + 1 + + + + false + + $(P)KohzuMoving + + + + + text entry #308 + $(P)Kohzu_yOffsetAO.VAL + 181 + 263 + 60 + + + + + + + + + 1 + false + false + + + text #312 + y offset: + 119 + 266 + 65 + 14 + + + + + true + + + text #315 + Channel Cut inhibits + 107 + 230 + 150 + 9 + + + + + + + + + 1 + + + text #318 + Y1 and Z2 motors + 108 + 237 + 150 + 9 + + + + + + + + + 1 + + + text #321 + Speed Control: + 20 + 345 + 14 + + + + + true + + + choice button #324 + $(P)KohzuSpeedCtrl + 125 + 344 + 150 + 22 + + + + + false + + Item 1 + Item 2 + + + diff --git a/opticsApp/op/bob/autoconvert/kohzuSeqCtl_soft.bob b/opticsApp/op/bob/autoconvert/kohzuSeqCtl_soft.bob new file mode 100644 index 0000000..c36474c --- /dev/null +++ b/opticsApp/op/bob/autoconvert/kohzuSeqCtl_soft.bob @@ -0,0 +1,1432 @@ + + + kohzuSeqCtl_soft + 10 + 25 + 525 + 200 + + + + + false + 5 + + rectangle #6 + 105 + 105 + 32 + + + + + + + + + + + text #9 + SCAN CONTROL + 105 + 105 + 10 + + + + + + + + + 1 + + + message button #12 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + Abort + 64 + 115 + 40 + 20 + + + + + + + + + + + message button #15 + + + $(P)$(MONO)E:scanParms.GO + 1 + Write + + + $(P)$(MONO)E:scanParms.GO + Go + 43 + 115 + 20 + 20 + + + + + + + message button #18 + + + $(P)$(MONO)E:scanParms.LOAD + 1 + Write + + + $(P)$(MONO)E:scanParms.LOAD + Ld + 22 + 115 + 20 + 20 + + + + + + + related display #21 + + + scanParms.opi + + $(MONO)E + $(MONO)E + + tab + Energy-scan parameters + + + + 1 + 115 + 20 + 20 + + + + + + + polyline #24 + 285 + 2 + 139 + 2 + + + + + + + + + + + + + polygon #28 + 275 + 55 + 15 + 15 + 1 + + + + + + + + + + + + + + + + + + + + + + false + + $(P)$(MONO)Mode.VAL + + + + + text update #33 + $(P)$(MONO)ZRdbk + 451 + 43 + 67 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #37 + $(P)$(MONO)ZCmd + 451 + 57 + 67 + 15 + + + + + + + + + 1 + false + 1 + false + + + text update #41 + $(P)$(MONO)ZPv + 450 + 32 + 70 + 10 + + + + + + + + + 1 + false + 1 + false + + + rectangle #45 + 450 + 42 + 70 + 32 + 2 + + + + + + + + + true + + + + false + + $(P)$(MONO)ZDmov + + + + + text update #49 + $(P)$(MONO)ThetaMotRdbk + 292 + 43 + 76 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #53 + $(P)$(MONO)ThetaCmd + 292 + 57 + 76 + 15 + + + + + + + + + 1 + false + 1 + false + + + text update #57 + $(P)$(MONO)ThetaPv + 290 + 32 + 80 + 10 + + + + + + + + + 1 + false + 1 + false + + + rectangle #61 + 290 + 42 + 80 + 32 + 2 + + + + + + + + + true + + + + false + + $(P)$(MONO)ThetaDmov + + + + + text #65 + Theta + 290 + 17 + 80 + 15 + + + + + 1 + + + text #68 + Z + 450 + 17 + 70 + 15 + + + + + 1 + + + polygon #71 + 275 + 55 + 15 + 15 + 1 + + + + + + + + + + + + + + + + + + + + + + false + + $(P)$(MONO)Put.VAL + + + + + text #76 + Moving + 431 + 89 + 26 + + + + + + + + + 1 + + + + false + + $(P)$(MONO)Moving + + + + + text #80 + Moving + 432 + 90 + 26 + + + + + + + + + 1 + + + + false + + $(P)$(MONO)Moving + + + + + text #84 + Moving + 430 + 88 + 26 + + + + + + + + + 1 + + + + false + + $(P)$(MONO)Moving + + + + + choice button #88 + $(P)$(MONO)UseSet.VAL + 295 + 112 + 22 + + + + + false + + Item 1 + Item 2 + + + + text #91 + Calibration: + 295 + 97 + 14 + + + + + true + + + message button #94 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + All Stop + 405 + 112 + 22 + + + + + + + + + + + polyline #97 + 215 + 2 + 139 + 2 + + + + + + + + + + + + + rectangle #101 + 210 + 60 + 70 + 5 + + + + + + + + + + + + false + + $(P)$(MONO)Put.VAL + + + + + polyline #105 + -1 + 138 + 524 + 2 + 2 + + + + + + + + + + + + + choice button #109 + $(P)$(MONO)Mode2.VAL + 45 + 143 + 475 + 18 + + + + + false + + Item 1 + Item 2 + + + + message button #112 + + + $(P)$(MONO)OperAck + 1 + Write + + + $(P)$(MONO)OperAck + OK + 350 + 166 + 50 + 34 + + + + + + + rectangle #115 + 166 + 345 + 34 + + + + + + + + + + + + false + + $(P)$(MONO)Alert + + + + + text update #119 + $(P)$(MONO)SeqMsg1 + 3 + 168 + 339 + 14 + + + + + 1 + false + 1 + false + + + text update #123 + $(P)$(MONO)SeqMsg2 + 3 + 184 + 339 + 14 + + + + + 1 + false + 1 + false + + + related display #127 + + + kohzuGraphic.opi + + BraggEAO + BraggLambdaAO + BraggTheta + BraggE + BraggLambda + BraggTheta + + tab + Kohzu Graphic + + + kohzuGraphicLarge.opi + + BraggEAO + BraggLambdaAO + BraggTheta + BraggE + BraggLambda + BraggTheta + + tab + Kohzu Graphic (L) + + + kohzuSeqCtl_soft_tiny.opi + + $(MONO + + tab + KohzuSeq (tiny) + + + kohzuSeqCtl_soft_All.opi + tab + KohzuSeq (all) + + + scanParms.opi + + BraggE + BraggE + + tab + Energy-scan parameters + + + scanParms.opi + + BraggTheta + BraggTheta + + tab + Theta-scan parameters + + + scanParms.opi + + BraggLambda + BraggLambda + + tab + Wavelength-scan parameters + + + + 450 + 176 + 20 + 20 + + + + + + + text #136 + More + 475 + 178 + 40 + + + + + true + + + text #139 + Mode: + 5 + 143 + 40 + 18 + + + + + + + + + true + + + choice button #142 + $(P)$(MONO)Mode.VAL + 220 + 5 + 60 + 45 + + + + + false + false + + Item 1 + Item 2 + + + + message button #145 + + + $(P)$(MONO)Put + 1 + Write + + + $(P)$(MONO)Put + Move + 220 + 75 + 60 + 25 + + + + + + + text #148 + TH (deg.) + 110 + + + + + 1 + + + text update #151 + $(P)$(MONO)Theta.RBV + 110 + 32 + + + + + + + + + + + + + 1 + false + false + + + text entry #155 + $(P)$(MONO)Theta.VAL + 110 + 48 + 25 + + + + + + + + + 1 + false + false + + + message button #159 + + + $(P)$(MONO)Theta.TWF + 1 + Write + + + $(P)$(MONO)Theta.TWF + > + 190 + 84 + 20 + 20 + + + + + + + text entry #162 + $(P)$(MONO)Theta.TWV + 130 + 84 + 60 + + + + + + + + + 1 + false + false + + + message button #166 + + + $(P)$(MONO)Theta.TWR + 1 + Write + + + $(P)$(MONO)Theta.TWR + < + 110 + 84 + 20 + 20 + + + + + + + text update #169 + $(P)$(MONO)Theta.HLM + 110 + 19 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #173 + $(P)$(MONO)Theta.LLM + 110 + 71 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #177 + $(P)$(MONO)E.RBV + 5 + 32 + + + + + + + + + + + + + 1 + false + false + + + text entry #181 + $(P)$(MONO)E.VAL + 5 + 48 + 25 + + + + + + + + + 1 + false + false + + + message button #185 + + + $(P)$(MONO)E.TWF + 1 + Write + + + $(P)$(MONO)E.TWF + > + 85 + 84 + 20 + 20 + + + + + + + text entry #188 + $(P)$(MONO)E.TWV + 25 + 84 + 60 + + + + + + + + + 1 + false + false + + + message button #192 + + + $(P)$(MONO)E.TWR + 1 + Write + + + $(P)$(MONO)E.TWR + < + 5 + 84 + 20 + 20 + + + + + + + text update #195 + $(P)$(MONO)E.LLM + 5 + 71 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #199 + $(P)$(MONO)E.HLM + 5 + 19 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #203 + E (keV) + 5 + + + + + 1 + + + rectangle #206 + 210 + 60 + 70 + 5 + + + + + + + + + + + + false + + $(P)$(MONO)Mode.VAL + + + + + rectangle #210 + 110 + 105 + 105 + 32 + + + + + + + + + + + text #213 + SCAN CONTROL + 110 + 105 + 105 + 10 + + + + + + + + + 1 + + + message button #216 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + Abort + 174 + 115 + 40 + 20 + + + + + + + + + + + message button #219 + + + $(P)$(MONO)Theta:scanParms.GO + 1 + Write + + + $(P)$(MONO)Theta:scanParms.GO + Go + 153 + 115 + 20 + 20 + + + + + + + message button #222 + + + $(P)$(MONO)Theta:scanParms.LOAD + 1 + Write + + + $(P)$(MONO)Theta:scanParms.LOAD + Ld + 132 + 115 + 20 + 20 + + + + + + + related display #225 + + + scanParms.opi + + $(MONO)Theta + $(MONO)Theta + + tab + Theta-scan parameters + + + + 111 + 115 + 20 + 20 + + + + + + + text #228 + Monochromator Motors + 290 + 230 + + + + + 1 + + + text update #231 + $(P)$(MONO)YRdbk + 376 + 43 + 67 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #235 + $(P)$(MONO)YCmd + 376 + 57 + 67 + 15 + + + + + + + + + 1 + false + 1 + false + + + text update #239 + $(P)$(MONO)YPv + 375 + 32 + 70 + 10 + + + + + + + + + 1 + false + 1 + false + + + rectangle #243 + 375 + 42 + 70 + 32 + 2 + + + + + + + + + true + + + + false + + $(P)$(MONO)YDmov + + + + + text #247 + Y + 375 + 17 + 70 + 14 + 1 + + + polyline #250 + 372 + 20 + 0 + 54 + 1 + + + + + + + + + + + + + polyline #254 + 447 + 20 + 0 + 54 + 1 + + + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/kohzuSeqCtl_soft_All.bob b/opticsApp/op/bob/autoconvert/kohzuSeqCtl_soft_All.bob new file mode 100644 index 0000000..323fcc3 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/kohzuSeqCtl_soft_All.bob @@ -0,0 +1,1612 @@ + + + kohzuSeqCtl_soft_All + 951 + 454 + 535 + 365 + + + + + false + 5 + + rectangle #6 + 84 + 294 + 366 + 47 + + + + + + + + + + + + false + + $(P)$(MONO)Alert + + + + + rectangle #10 + 115 + 94 + + + + + + + + + + + text #13 + H + 5 + 5 + 10 + + + + + true + + + text entry #16 + $(P)$(MONO)H + 15 + 5 + 20 + + + + + + + + + 1 + false + false + + + text #20 + K + 43 + 5 + 10 + + + + + true + + + text entry #23 + $(P)$(MONO)K + 53 + 5 + 20 + + + + + + + + + 1 + false + false + + + text #27 + L + 81 + 5 + 10 + + + + + true + + + text entry #30 + $(P)$(MONO)L + 91 + 5 + 20 + + + + + + + + + 1 + false + false + + + text #34 + a + 9 + 25 + 20 + + + + + true + + + text entry #37 + $(P)$(MONO)A + 29 + 25 + 60 + + + + + + + + + 1 + false + false + + + text #41 + 2d + 9 + 48 + 20 + + + + + true + + + text entry #44 + $(P)$(MONO)2dSpacing + 29 + 48 + 60 + + + + + + + + + 1 + false + false + + + text #48 + Theta + 110 + 123 + 90 + + + + + 1 + + + text #51 + Z + 300 + 123 + 90 + + + + + 1 + + + choice button #54 + $(P)$(MONO)Mode.VAL + 6 + 142 + 75 + 45 + + + + + false + false + + Item 1 + Item 2 + + + + message button #57 + + + $(P)$(MONO)Put + 1 + Write + + + $(P)$(MONO)Put + Move + 6 + 190 + 75 + 25 + + + + + + + text #60 + TH (deg.) + 347 + 1 + + + + + 1 + + + text update #63 + $(P)$(MONO)Theta.RBV + 347 + 35 + + + + + + + + + + + + + 1 + false + false + + + text entry #67 + $(P)$(MONO)Theta + 347 + 55 + 25 + + + + + + + + + 1 + false + false + + + message button #71 + + + $(P)$(MONO)Theta.TWF + 1 + Write + + + $(P)$(MONO)Theta.TWF + > + 427 + 95 + 20 + 20 + + + + + + + text entry #74 + $(P)$(MONO)Theta.TWV + 367 + 95 + 60 + + + + + + + + + 1 + false + false + + + message button #78 + + + $(P)$(MONO)Theta.TWR + 1 + Write + + + $(P)$(MONO)Theta.TWR + < + 347 + 95 + 20 + 20 + + + + + + + text update #81 + $(P)$(MONO)Theta.HLM + 347 + 20 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #85 + $(P)$(MONO)Theta.LLM + 347 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #89 + $(P)$(MONO)Lambda.LLM + 237 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #93 + $(P)$(MONO)E.LLM + 127 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #97 + $(P)$(MONO)Lambda.RBV + 237 + 35 + + + + + + + + + + + + + 1 + false + false + + + text entry #101 + $(P)$(MONO)Lambda + 237 + 55 + 25 + + + + + + + + + 1 + false + false + + + message button #105 + + + $(P)$(MONO)Lambda.TWF + 1 + Write + + + $(P)$(MONO)Lambda.TWF + > + 317 + 95 + 20 + 20 + + + + + + + text entry #108 + $(P)$(MONO)Lambda.TWV + 257 + 95 + 60 + + + + + + + + + 1 + false + false + + + message button #112 + + + $(P)$(MONO)Lambda.TWR + 1 + Write + + + $(P)$(MONO)Lambda.TWR + < + 237 + 95 + 20 + 20 + + + + + + + text update #115 + $(P)$(MONO)Lambda.HLM + 237 + 20 + 15 + + + + + + + + + + + + + 1 + false + false + + + text entry #119 + $(P)$(MONO)E + 127 + 55 + 25 + + + + + + + + + 1 + false + false + + + text entry #123 + $(P)$(MONO)E.TWV + 147 + 95 + 60 + + + + + + + + + 1 + false + false + + + message button #127 + + + $(P)$(MONO)E.TWR + 1 + Write + + + $(P)$(MONO)E.TWR + < + 127 + 95 + 20 + 20 + + + + + + + message button #130 + + + $(P)$(MONO)E.TWF + 1 + Write + + + $(P)$(MONO)E.TWF + > + 207 + 95 + 20 + 20 + + + + + + + text update #133 + $(P)$(MONO)E.HLM + 127 + 20 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #137 + $(P)$(MONO)E.RBV + 127 + 35 + + + + + + + + + + + + + 1 + false + false + + + text #141 + lambda (A) + 237 + 1 + + + + + 1 + + + text #144 + E (keV) + 127 + 1 + + + + + 1 + + + text #147 + Speed + 400 + 205 + 50 + 14 + + + + + true + + + text #150 + Ideal + 400 + 190 + 50 + 14 + + + + + true + + + text #153 + Actual Pos. + 400 + 155 + 50 + 14 + + + + + true + + + text #156 + Motor Command + 400 + 173 + 50 + 14 + + + + + true + + + text #159 + Low Limit + 460 + 80 + 75 + 14 + + + + + true + + + text #162 + Desired + 460 + 60 + 75 + 14 + + + + + true + + + text #165 + Actual + 460 + 38 + 75 + 14 + + + + + true + + + text #168 + High Limit + 460 + 20 + 75 + 14 + + + + + true + + + polyline #171 + -1 + 118 + 536 + 2 + 2 + + + + + + + + + + + + + text update #175 + $(P)$(MONO)ThetaMotRdbk + 120 + 155 + 80 + 15 + + + + + + + + + + + + + 1 + false + false + + + text update #179 + $(P)$(MONO)YRdbk + 215 + 154 + 80 + 15 + + + + + + + + + + + + + 1 + false + false + + + text update #183 + $(P)$(MONO)ZRdbk + 310 + 155 + 80 + 15 + + + + + + + + + + + + + 1 + false + false + + + message button #187 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + All Stop + 445 + 189 + 88 + 38 + + + + + + + + + + + rectangle #190 + 118 + 97 + 2 + + + + + + + + + true + + + text update #193 + $(P)$(MONO)ZSet + 310 + 190 + 80 + 15 + + + + + + + + + + + + + 1 + false + false + + + text update #197 + $(P)$(MONO)YSet + 215 + 190 + 80 + 15 + + + + + + + + + + + + + 1 + false + false + + + text update #201 + $(P)$(MONO)ThetaSet + 120 + 190 + 80 + 15 + + + + + + + + + + + + + 1 + false + false + + + arc #205 + 100 + 180 + 25 + 18 + 90.0 + 180.0 + 2 + + + + + true + + + polyline #208 + 107 + 177 + 8 + 10 + 2 + + + + + + + + + + + + + + + polyline #212 + 78 + 188 + 20 + 2 + 2 + + + + + 1 + + + + + + + + + rectangle #216 + 4 + 137 + 84 + 83 + + + + + + + + + + + text update #219 + $(P)$(MONO)SeqMsg1 + 98 + 299 + 339 + 18 + + + + + + + + + 1 + false + 1 + false + + + polyline #223 + -2 + 288 + 536 + 2 + 2 + + + + + + + + + + + + + text update #227 + $(P)$(MONO)SeqMsg2 + 98 + 319 + 339 + 18 + + + + + + + + + 1 + false + 1 + false + + + message button #231 + + + $(P)$(MONO)OperAck + 1 + Write + + + $(P)$(MONO)OperAck + OK + 21 + 300 + 54 + 34 + + + + + + + menu #234 + $(P)$(MONO)Type + 16 + 73 + 90 + 16 + + + + + false + + + text #237 + Y + 215 + 122 + 90 + + + + + 1 + + + text update #240 + $(P)$(MONO)ThetaPv + 114 + 140 + 89 + 13 + + + + + 1 + false + 1 + false + + + text update #244 + $(P)$(MONO)YPv + 210 + 140 + 89 + 13 + + + + + 1 + false + 1 + false + + + text update #248 + $(P)$(MONO)ZPv + 306 + 140 + 89 + 13 + + + + + 1 + false + 1 + false + + + text #252 + Motor PV + 401 + 138 + 50 + 14 + + + + + true + + + text update #255 + $(P)$(MONO)ZVel + 307 + 206 + 89 + 13 + + + + + 1 + false + 1 + false + + + text update #259 + $(P)$(MONO)YVel + 211 + 206 + 89 + 13 + + + + + 1 + false + 1 + false + + + text update #263 + $(P)$(MONO)ThetaVel + 115 + 206 + 89 + 13 + + + + + 1 + false + 1 + false + + + choice button #267 + $(P)$(MONO)Mode2.VAL + 248 + 222 + 106 + 65 + + + + + false + false + + Item 1 + Item 2 + + + + text update #270 + $(P)$(MONO)ZCmd + 307 + 173 + 89 + 13 + + + + + 1 + false + 1 + false + + + text update #274 + $(P)$(MONO)YCmd + 211 + 173 + 89 + 13 + + + + + 1 + false + 1 + false + + + text update #278 + $(P)$(MONO)ThetaCmd + 115 + 173 + 89 + 13 + + + + + 1 + false + 1 + false + + + rectangle #282 + 306 + 154 + 94 + 35 + 2 + + + + + + + + + true + + + + false + + $(P)$(MONO)ZDmov + + + + + rectangle #286 + 113 + 154 + 94 + 35 + 2 + + + + + + + + + true + + + + false + + $(P)$(MONO)ThetaDmov + + + + + rectangle #290 + 209 + 154 + 94 + 35 + 2 + + + + + + + + + true + + + + false + + $(P)$(MONO)YDmov + + + + + choice button #294 + $(P)$(MONO)UseSet.VAL + 5 + 260 + 22 + + + + + false + + Item 1 + Item 2 + + + + text #297 + Calibration: + 5 + 244 + 14 + + + + + true + + + text #300 + Moving + 445 + 230 + 88 + 22 + + + + + + + + + 1 + + + + false + + $(P)$(MONO)Moving + + + + + text #304 + Done + 445 + 230 + 88 + 22 + + + + + 1 + + + + false + + $(P)$(MONO)Moving + + + + + text entry #308 + $(P)$(MONO)yOffset + 181 + 263 + 60 + + + + + + + + + 1 + false + false + + + text #312 + y offset: + 119 + 266 + 65 + 14 + + + + + true + + + text #315 + Channel Cut inhibits + 107 + 230 + 150 + 9 + + + + + + + + + 1 + + + text #318 + Y1 and Z2 motors + 108 + 237 + 150 + 9 + + + + + + + + + 1 + + + text #321 + Speed Control: + 21 + 344 + 14 + + + + + true + + + choice button #324 + $(P)$(MONO)SpeedCtrl + 126 + 343 + 150 + 22 + + + + + false + + Item 1 + Item 2 + + + diff --git a/opticsApp/op/bob/autoconvert/kohzuSeqCtl_soft_tiny.bob b/opticsApp/op/bob/autoconvert/kohzuSeqCtl_soft_tiny.bob new file mode 100644 index 0000000..e5ff809 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/kohzuSeqCtl_soft_tiny.bob @@ -0,0 +1,560 @@ + + + kohzuSeqCtl_soft_tiny + 300 + 258 + 215 + 140 + + + + + false + 5 + + text update #6 + $(P)$(MONO)E.RBV + 32 + 105 + + + + + + + + + + + + + 1 + false + false + + + text entry #10 + $(P)$(MONO)E.VAL + 48 + 105 + 25 + + + + + + + + + 1 + false + false + + + text update #14 + $(P)$(MONO)E.HLM + 19 + 105 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #18 + $(P)$(MONO)E.LLM + 71 + 105 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #22 + E (keV) + 105 + + + + + 1 + + + text entry #25 + $(P)$(MONO)E.TWV + 20 + 84 + 65 + + + + + + + + + 1 + false + false + + + message button #29 + + + $(P)$(MONO)E.TWR + 1 + Write + + + $(P)$(MONO)E.TWR + < + 84 + 20 + 20 + + + + + + + message button #32 + + + $(P)$(MONO)E.TWF + 1 + Write + + + $(P)$(MONO)E.TWF + > + 85 + 84 + 20 + 20 + + + + + + + rectangle #35 + 105 + 105 + 32 + + + + + + + + + + + text #38 + SCAN CONTROL + 105 + 105 + 10 + + + + + + + + + 1 + + + message button #41 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + Abort + 64 + 115 + 40 + 20 + + + + + + + + + + + message button #44 + + + $(P)$(MONO)E:scanParms.GO + 1 + Write + + + $(P)$(MONO)E:scanParms.GO + Go + 43 + 115 + 20 + 20 + + + + + + + message button #47 + + + $(P)$(MONO)E:scanParms.LOAD + 1 + Write + + + $(P)$(MONO)E:scanParms.LOAD + Ld + 22 + 115 + 20 + 20 + + + + + + + related display #50 + + + scanParms.opi + + BraggE + BraggE + + tab + Energy-scan parameters + + + + 1 + 115 + 20 + 20 + + + + + + + text #53 + TH (deg.) + 110 + 105 + + + + + 1 + + + text update #56 + $(P)$(MONO)Theta.RBV + 110 + 32 + 105 + + + + + + + + + + + + + 1 + false + false + + + text entry #60 + $(P)$(MONO)Theta.VAL + 110 + 48 + 105 + 25 + + + + + + + + + 1 + false + false + + + text update #64 + $(P)$(MONO)Theta.HLM + 110 + 19 + 105 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #68 + $(P)$(MONO)Theta.LLM + 110 + 71 + 105 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + message button #72 + + + $(P)$(MONO)Theta.TWF + 1 + Write + + + $(P)$(MONO)Theta.TWF + > + 195 + 84 + 20 + 20 + + + + + + + text entry #75 + $(P)$(MONO)Theta.TWV + 130 + 84 + 65 + + + + + + + + + 1 + false + false + + + message button #79 + + + $(P)$(MONO)Theta.TWR + 1 + Write + + + $(P)$(MONO)Theta.TWR + < + 110 + 84 + 20 + 20 + + + + + + + rectangle #82 + 110 + 105 + 105 + 32 + + + + + + + + + + + text #85 + SCAN CONTROL + 110 + 105 + 105 + 10 + + + + + + + + + 1 + + + message button #88 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + Abort + 174 + 115 + 40 + 20 + + + + + + + + + + + message button #91 + + + $(P)$(MONO)Theta:scanParms.GO + 1 + Write + + + $(P)$(MONO)Theta:scanParms.GO + Go + 153 + 115 + 20 + 20 + + + + + + + message button #94 + + + $(P)$(MONO)Theta:scanParms.LOAD + 1 + Write + + + $(P)$(MONO)Theta:scanParms.LOAD + Ld + 132 + 115 + 20 + 20 + + + + + + + related display #97 + + + scanParms.opi + + BraggTheta + BraggTheta + + tab + Theta-scan parameters + + + + 111 + 115 + 20 + 20 + + + + + + diff --git a/opticsApp/op/bob/autoconvert/kohzuSeqCtl_tiny.bob b/opticsApp/op/bob/autoconvert/kohzuSeqCtl_tiny.bob new file mode 100644 index 0000000..31f81dc --- /dev/null +++ b/opticsApp/op/bob/autoconvert/kohzuSeqCtl_tiny.bob @@ -0,0 +1,560 @@ + + + kohzuSeqCtl_tiny + 300 + 258 + 215 + 140 + + + + + false + 5 + + text update #6 + $(P)BraggERdbkAO + 32 + 105 + + + + + + + + + + + + + 1 + false + false + + + text entry #10 + $(P)BraggEAO.VAL + 48 + 105 + 25 + + + + + + + + + 1 + false + false + + + text update #14 + $(P)BraggEAO.DRVH + 19 + 105 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #18 + $(P)BraggEAO.DRVL + 71 + 105 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #22 + E (keV) + 105 + + + + + 1 + + + text entry #25 + $(P)BraggETweakAI + 20 + 84 + 65 + + + + + + + + + 1 + false + false + + + message button #29 + + + $(P)BraggEDecBO.VAL + 1 + Write + + + $(P)BraggEDecBO.VAL + < + 84 + 20 + 20 + + + + + + + message button #32 + + + $(P)BraggEIncBO.VAL + 1 + Write + + + $(P)BraggEIncBO.VAL + > + 85 + 84 + 20 + 20 + + + + + + + rectangle #35 + 105 + 105 + 32 + + + + + + + + + + + text #38 + SCAN CONTROL + 105 + 105 + 10 + + + + + + + + + 1 + + + message button #41 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + Abort + 64 + 115 + 40 + 20 + + + + + + + + + + + message button #44 + + + $(P)BraggE:scanParms.GO + 1 + Write + + + $(P)BraggE:scanParms.GO + Go + 43 + 115 + 20 + 20 + + + + + + + message button #47 + + + $(P)BraggE:scanParms.LOAD + 1 + Write + + + $(P)BraggE:scanParms.LOAD + Ld + 22 + 115 + 20 + 20 + + + + + + + related display #50 + + + scanParms.opi + + BraggEAO + BraggE + + tab + Energy-scan parameters + + + + 1 + 115 + 20 + 20 + + + + + + + text #53 + TH (deg.) + 110 + 105 + + + + + 1 + + + text update #56 + $(P)BraggThetaRdbkAO + 110 + 32 + 105 + + + + + + + + + + + + + 1 + false + false + + + text entry #60 + $(P)BraggThetaAO.VAL + 110 + 48 + 105 + 25 + + + + + + + + + 1 + false + false + + + text update #64 + $(P)BraggThetaAO.DRVH + 110 + 19 + 105 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #68 + $(P)BraggThetaAO.DRVL + 110 + 71 + 105 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + message button #72 + + + $(P)BraggThetaIncBO.VAL + 1 + Write + + + $(P)BraggThetaIncBO.VAL + > + 195 + 84 + 20 + 20 + + + + + + + text entry #75 + $(P)BraggThetaTweakAI + 130 + 84 + 65 + + + + + + + + + 1 + false + false + + + message button #79 + + + $(P)BraggThetaDecBO.VAL + 1 + Write + + + $(P)BraggThetaDecBO.VAL + < + 110 + 84 + 20 + 20 + + + + + + + rectangle #82 + 110 + 105 + 105 + 32 + + + + + + + + + + + text #85 + SCAN CONTROL + 110 + 105 + 105 + 10 + + + + + + + + + 1 + + + message button #88 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + Abort + 174 + 115 + 40 + 20 + + + + + + + + + + + message button #91 + + + $(P)BraggTheta:scanParms.GO + 1 + Write + + + $(P)BraggTheta:scanParms.GO + Go + 153 + 115 + 20 + 20 + + + + + + + message button #94 + + + $(P)BraggTheta:scanParms.LOAD + 1 + Write + + + $(P)BraggTheta:scanParms.LOAD + Ld + 132 + 115 + 20 + 20 + + + + + + + related display #97 + + + scanParms.opi + + BraggThetaAO + BraggTheta + + tab + Theta-scan parameters + + + + 111 + 115 + 20 + 20 + + + + + + diff --git a/opticsApp/op/bob/autoconvert/ml_monoGraphic.bob b/opticsApp/op/bob/autoconvert/ml_monoGraphic.bob new file mode 100644 index 0000000..c2533af --- /dev/null +++ b/opticsApp/op/bob/autoconvert/ml_monoGraphic.bob @@ -0,0 +1,1481 @@ + + + ml_monoGraphic + 626 + 333 + 400 + 400 + + + + + false + 5 + + rectangle #6 + 10 + 25 + 381 + 131 + + + + + + + + + + + rectangle #9 + 10 + 25 + 381 + 131 + + + + + + + + + true + + + polyline #12 + 73 + 51 + 26 + 5 + + + + + + + + + + + + + polyline #16 + 221 + 115 + 26 + 5 + + + + + + + + + + + + + polyline #20 + 272 + 123 + 111 + 2 + 2 + + + + + + + + + + + + + polyline #24 + 27 + 65 + 245 + 60 + 2 + + + + + + + + + + + + + + + polyline #28 + 24 + 60 + 17 + 12 + 2 + + + + + + + + + + + + + + + rectangle #32 + 235 + 255 + 64 + 38 + + + + + + + + + + + text #35 + $(P)$(mZ1) + 237 + 257 + 60 + 10 + + + + + true + + + text update #38 + $(P)$(mZ1).RBV + 237 + 267 + 60 + 10 + + + + + + + + + + + + + 1 + false + false + + + text entry #42 + $(P)$(mZ1).VAL + 237 + 277 + 60 + 15 + + + + + + + + + 1 + false + false + + + rectangle #46 + 235 + 255 + 64 + 38 + 1 + + + + + + + + + true + + + related display #49 + + + motorx.opi + + $(mZ1) + + tab + + + Z1 + 235 + 235 + 64 + 20 + + + + + + + + + + + rectangle #52 + 235 + 190 + 64 + 38 + + + + + + + + + + + text #55 + $(P)$(mY1) + 237 + 192 + 60 + 10 + + + + + true + + + text update #58 + $(P)$(mY1).RBV + 237 + 202 + 60 + 10 + + + + + + + + + + + + + 1 + false + false + + + text entry #62 + $(P)$(mY1).VAL + 237 + 212 + 60 + 15 + + + + + + + + + 1 + false + false + + + rectangle #66 + 235 + 190 + 64 + 38 + 1 + + + + + + + + + true + + + related display #69 + + + motorx.opi + + $(mY1) + + tab + + + Y1 + 235 + 170 + 64 + 20 + + + + + + + + + + + rectangle #72 + 310 + 190 + 64 + 38 + + + + + + + + + + + text #75 + $(P)$(mC1) + 312 + 192 + 60 + 10 + + + + + true + + + text update #78 + $(P)$(mC1).RBV + 312 + 202 + 60 + 10 + + + + + + + + + + + + + 1 + false + false + + + text entry #82 + $(P)$(mC1).VAL + 312 + 212 + 60 + 15 + + + + + + + + + 1 + false + false + + + rectangle #86 + 310 + 190 + 64 + 38 + 1 + + + + + + + + + true + + + related display #89 + + + motorx.opi + + $(mC1) + + tab + + + Chi1 + 310 + 170 + 64 + 20 + + + + + + + + + + + rectangle #92 + 15 + 255 + 64 + 38 + + + + + + + + + + + text #95 + $(P)$(mP2) + 17 + 257 + 60 + 10 + + + + + true + + + text update #98 + $(P)$(mP2).RBV + 17 + 267 + 60 + 10 + + + + + + + + + + + + + 1 + false + false + + + text entry #102 + $(P)$(mP2).VAL + 17 + 277 + 60 + 15 + + + + + + + + + 1 + false + false + + + rectangle #106 + 15 + 255 + 64 + 38 + 1 + + + + + + + + + true + + + related display #109 + + + motorx.opi + + $(mP2) + + tab + + + Phi2 + 15 + 235 + 64 + 20 + + + + + + + + + + + related display #112 + + + motorx.opi + + $(mB) + + tab + + + Bend + 15 + 170 + 64 + 20 + + + + + + + + + + + rectangle #115 + 15 + 190 + 64 + 38 + + + + + + + + + + + text #118 + $(P)$(mB) + 17 + 192 + 60 + 10 + + + + + true + + + text update #121 + $(P)$(mB).RBV + 17 + 202 + 60 + 10 + + + + + + + + + + + + + 1 + false + false + + + text entry #125 + $(P)$(mB).VAL + 17 + 212 + 60 + 15 + + + + + + + + + 1 + false + false + + + rectangle #129 + 15 + 190 + 64 + 38 + 1 + + + + + + + + + true + + + rectangle #132 + 90 + 190 + 64 + 38 + + + + + + + + + + + text #135 + $(P)$(mY2) + 92 + 192 + 60 + 10 + + + + + true + + + text update #138 + $(P)$(mY2).RBV + 92 + 202 + 60 + 10 + + + + + + + + + + + + + 1 + false + false + + + text entry #142 + $(P)$(mY2).VAL + 92 + 212 + 60 + 15 + + + + + + + + + 1 + false + false + + + rectangle #146 + 90 + 190 + 64 + 38 + 1 + + + + + + + + + true + + + related display #149 + + + motorx.opi + + $(mY2) + + tab + + + Y2 + 90 + 170 + 64 + 20 + + + + + + + + + + + rectangle #152 + 90 + 255 + 64 + 38 + + + + + + + + + + + text #155 + $(P)$(mZ2) + 92 + 257 + 60 + 10 + + + + + true + + + text update #158 + $(P)$(mZ2).RBV + 92 + 267 + 60 + 10 + + + + + + + + + + + + + 1 + false + false + + + text entry #162 + $(P)$(mZ2).VAL + 92 + 277 + 60 + 15 + + + + + + + + + 1 + false + false + + + rectangle #166 + 90 + 255 + 64 + 38 + 1 + + + + + + + + + true + + + related display #169 + + + motorx.opi + + $(mZ2) + + tab + + + Z2 + 90 + 235 + 64 + 20 + + + + + + + + + + + rectangle #172 + 15 + 320 + 64 + 38 + + + + + + + + + + + text #175 + $(P)$(mC2) + 17 + 322 + 60 + 10 + + + + + true + + + text update #178 + $(P)$(mC2).RBV + 17 + 332 + 60 + 10 + + + + + + + + + + + + + 1 + false + false + + + text entry #182 + $(P)$(mC2).VAL + 17 + 342 + 60 + 15 + + + + + + + + + 1 + false + false + + + rectangle #186 + 15 + 320 + 64 + 38 + 1 + + + + + + + + + true + + + related display #189 + + + motorx.opi + + $(mC2) + + tab + + + Chi2 + 15 + 300 + 64 + 20 + + + + + + + + + + + rectangle #192 + 90 + 320 + 64 + 38 + + + + + + + + + + + text #195 + $(P)$(mX2) + 92 + 322 + 60 + 10 + + + + + true + + + text update #198 + $(P)$(mX2).RBV + 92 + 332 + 60 + 10 + + + + + + + + + + + + + 1 + false + false + + + text entry #202 + $(P)$(mX2).VAL + 92 + 342 + 60 + 15 + + + + + + + + + 1 + false + false + + + rectangle #206 + 90 + 320 + 64 + 38 + 1 + + + + + + + + + true + + + related display #209 + + + motorx.opi + + $(mX2) + + tab + + + X2 + 90 + 300 + 64 + 20 + + + + + + + + + + + rectangle #212 + 63 + 104 + 64 + 38 + + + + + + + + + + + text #215 + $(P)$(mT2) + 65 + 106 + 60 + 10 + + + + + true + + + text update #218 + $(P)$(mT2).RBV + 65 + 116 + 60 + 10 + + + + + + + + + + + + + 1 + false + false + + + text entry #222 + $(P)$(mT2).VAL + 65 + 126 + 60 + 15 + + + + + + + + + 1 + false + false + + + rectangle #226 + 63 + 104 + 64 + 38 + 1 + + + + + + + + + true + + + related display #229 + + + motorx.opi + + $(mT2) + + tab + + + Theta2 + 63 + 84 + 64 + 20 + + + + + + + + + + + rectangle #232 + 235 + 320 + 64 + 38 + + + + + + + + + + + text #235 + $(P)$(mX1) + 237 + 322 + 60 + 10 + + + + + true + + + text update #238 + $(P)$(mX1).RBV + 237 + 332 + 60 + 10 + + + + + + + + + + + + + 1 + false + false + + + text entry #242 + $(P)$(mX1).VAL + 237 + 342 + 60 + 15 + + + + + + + + + 1 + false + false + + + rectangle #246 + 235 + 320 + 64 + 38 + 1 + + + + + + + + + true + + + related display #249 + + + motorx.opi + + $(mX1) + + tab + + + X1 + 235 + 300 + 64 + 20 + + + + + + + + + + + rectangle #252 + 261 + 67 + 64 + 38 + + + + + + + + + + + text #255 + $(P)$(mT1) + 263 + 69 + 60 + 10 + + + + + true + + + text update #258 + $(P)$(mT1).RBV + 263 + 79 + 60 + 10 + + + + + + + + + + + + + 1 + false + false + + + text entry #262 + $(P)$(mT1).VAL + 263 + 89 + 60 + 15 + + + + + + + + + 1 + false + false + + + rectangle #266 + 261 + 67 + 64 + 38 + 1 + + + + + + + + + true + + + related display #269 + + + motorx.opi + + $(mT1) + + tab + + + Theta1 + 261 + 47 + 64 + 20 + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/ml_monoSeqCtl.bob b/opticsApp/op/bob/autoconvert/ml_monoSeqCtl.bob new file mode 100644 index 0000000..5c9a8ef --- /dev/null +++ b/opticsApp/op/bob/autoconvert/ml_monoSeqCtl.bob @@ -0,0 +1,1367 @@ + + + ml_monoSeqCtl + 523 + 673 + 525 + 200 + + + + + false + 5 + + rectangle #6 + 105 + 105 + 32 + + + + + + + + + + + text #9 + SCAN CONTROL + 105 + 105 + 10 + + + + + + + + + 1 + + + message button #12 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + Abort + 64 + 115 + 40 + 20 + + + + + + + + + + + message button #15 + + + $(P)ml_monoE:scanParms.GO + 1 + Write + + + $(P)ml_monoE:scanParms.GO + Go + 43 + 115 + 20 + 20 + + + + + + + message button #18 + + + $(P)ml_monoE:scanParms.LOAD + 1 + Write + + + $(P)ml_monoE:scanParms.LOAD + Ld + 22 + 115 + 20 + 20 + + + + + + + related display #21 + + + scanParms.opi + + ml_monoE + ml_monoE + + tab + Energy-scan parameters + + + + 1 + 115 + 20 + 20 + + + + + + + polyline #24 + 285 + 2 + 139 + 2 + + + + + + + + + + + + + polygon #28 + 275 + 55 + 15 + 15 + 1 + + + + + + + + + + + + + + + + + + + + + + false + + $(P)ml_monoMode.VAL + + + + + text update #33 + $(P)ml_monoZRdbk + 451 + 43 + 67 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #37 + $(P)ml_monoZCmd + 451 + 57 + 67 + 15 + + + + + + + + + 1 + false + 1 + false + + + rectangle #41 + 450 + 42 + 70 + 32 + 2 + + + + + + + + + true + + + + false + + $(P)ml_monoZDmov + + + + + text update #45 + $(P)ml_monoThetaRdbk + 292 + 43 + 76 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #49 + $(P)ml_monoThetaCmd + 292 + 57 + 76 + 15 + + + + + + + + + 1 + false + 1 + false + + + text update #53 + $(P)ml_monoThetaPv + 290 + 32 + 80 + 10 + + + + + + + + + 1 + false + 1 + false + + + rectangle #57 + 290 + 42 + 80 + 32 + 2 + + + + + + + + + true + + + + false + + $(P)ml_monoThetaDmov + + + + + text #61 + Theta + 290 + 17 + 80 + 15 + + + + + 1 + + + polygon #64 + 275 + 55 + 15 + 15 + 1 + + + + + + + + + + + + + + + + + + + + + + false + + $(P)ml_monoPut.VAL + + + + + text #69 + Moving + 431 + 89 + 26 + + + + + + + + + 1 + + + + false + + $(P)ml_monoMoving + + + + + text #73 + Moving + 432 + 90 + 26 + + + + + + + + + 1 + + + + false + + $(P)ml_monoMoving + + + + + text #77 + Moving + 430 + 88 + 26 + + + + + + + + + 1 + + + + false + + $(P)ml_monoMoving + + + + + choice button #81 + $(P)ml_monoUseSet.VAL + 295 + 112 + 22 + + + + + false + + Item 1 + Item 2 + + + + text #84 + Calibration: + 295 + 97 + 14 + + + + + true + + + message button #87 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + All Stop + 405 + 112 + 22 + + + + + + + + + + + polyline #90 + 215 + 2 + 139 + 2 + + + + + + + + + + + + + rectangle #94 + 210 + 60 + 70 + 5 + + + + + + + + + + + + false + + $(P)ml_monoPut.VAL + + + + + polyline #98 + -1 + 138 + 524 + 2 + 2 + + + + + + + + + + + + + choice button #102 + $(P)ml_monoMode2.VAL + 45 + 143 + 475 + 18 + + + + + false + + Item 1 + Item 2 + + + + message button #105 + + + $(P)ml_monoOperAck + 1 + Write + + + $(P)ml_monoOperAck + OK + 350 + 166 + 50 + 34 + + + + + + + rectangle #108 + 166 + 345 + 34 + + + + + + + + + + + + false + + $(P)ml_monoAlert + + + + + text update #112 + $(P)ml_monoSeqMsg1 + 3 + 168 + 339 + 14 + + + + + 1 + false + 1 + false + + + text update #116 + $(P)ml_monoSeqMsg2 + 3 + 184 + 339 + 14 + + + + + 1 + false + 1 + false + + + related display #120 + + + ml_monoSeqCtl_tiny.opi + tab + ml_monoSeq (tiny) + + + ml_monoSeqCtl_All.opi + tab + ml_monoSeq (all) + + + scanParms.opi + + ml_monoE + ml_monoE + + tab + Energy-scan parameters + + + scanParms.opi + + ml_monoTheta + ml_monoTheta + + tab + Theta-scan parameters + + + scanParms.opi + + ml_monoLambda + ml_monoLambda + + tab + Wavelength-scan parameters + + + More + 450 + 176 + 40 + 20 + + + + + + + + + + + text #127 + Mode: + 5 + 143 + 40 + 18 + + + + + + + + + true + + + choice button #130 + $(P)ml_monoMode.VAL + 220 + 5 + 60 + 45 + + + + + false + false + + Item 1 + Item 2 + + + + message button #133 + + + $(P)ml_monoPut + 1 + Write + + + $(P)ml_monoPut + Move + 220 + 75 + 60 + 25 + + + + + + + text #136 + TH (deg.) + 110 + + + + + 1 + + + text update #139 + $(P)ml_monoThetaRdbk + 110 + 32 + + + + + + + + + + + + + 1 + false + false + + + text entry #143 + $(P)ml_monoTheta.VAL + 110 + 48 + 25 + + + + + + + + + 1 + false + false + + + message button #147 + + + $(P)ml_monoThetaInc.VAL + 1 + Write + + + $(P)ml_monoThetaInc.VAL + > + 190 + 84 + 20 + 20 + + + + + + + text entry #150 + $(P)ml_monoThetaTweak + 130 + 84 + 60 + + + + + + + + + 1 + false + false + + + message button #154 + + + $(P)ml_monoThetaDec.VAL + 1 + Write + + + $(P)ml_monoThetaDec.VAL + < + 110 + 84 + 20 + 20 + + + + + + + text update #157 + $(P)ml_monoTheta.DRVH + 110 + 19 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #161 + $(P)ml_monoTheta.DRVL + 110 + 71 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #165 + $(P)ml_monoERdbk + 5 + 32 + + + + + + + + + + + + + 1 + false + false + + + text entry #169 + $(P)ml_monoE.VAL + 5 + 48 + 25 + + + + + + + + + 1 + false + false + + + message button #173 + + + $(P)ml_monoEInc.VAL + 1 + Write + + + $(P)ml_monoEInc.VAL + > + 85 + 84 + 20 + 20 + + + + + + + text entry #176 + $(P)ml_monoETweak + 25 + 84 + 60 + + + + + + + + + 1 + false + false + + + message button #180 + + + $(P)ml_monoEDec.VAL + 1 + Write + + + $(P)ml_monoEDec.VAL + < + 5 + 84 + 20 + 20 + + + + + + + text update #183 + $(P)ml_monoE.DRVL + 5 + 71 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #187 + $(P)ml_monoE.DRVH + 5 + 19 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #191 + E (keV) + 5 + + + + + 1 + + + rectangle #194 + 210 + 60 + 70 + 5 + + + + + + + + + + + + false + + $(P)ml_monoMode.VAL + + + + + rectangle #198 + 110 + 105 + 105 + 32 + + + + + + + + + + + text #201 + SCAN CONTROL + 110 + 105 + 105 + 10 + + + + + + + + + 1 + + + message button #204 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + Abort + 174 + 115 + 40 + 20 + + + + + + + + + + + message button #207 + + + $(P)ml_monoTheta:scanParms.GO + 1 + Write + + + $(P)ml_monoTheta:scanParms.GO + Go + 153 + 115 + 20 + 20 + + + + + + + message button #210 + + + $(P)ml_monoTheta:scanParms.LOAD + 1 + Write + + + $(P)ml_monoTheta:scanParms.LOAD + Ld + 132 + 115 + 20 + 20 + + + + + + + related display #213 + + + scanParms.opi + + ml_monoTheta + ml_monoTheta + + tab + Theta-scan parameters + + + + 111 + 115 + 20 + 20 + + + + + + + text #216 + Monochromator Motors + 290 + 230 + + + + + 1 + + + polyline #219 + 372 + 20 + 0 + 54 + 1 + + + + + + + + + + + + + polyline #223 + 447 + 20 + 0 + 54 + 1 + + + + + + + + + + + + + text update #227 + $(P)ml_monoZPv + 450 + 32 + 70 + 10 + + + + + + + + + 1 + false + 1 + false + + + text #231 + Z2 + 450 + 17 + 70 + 15 + + + + + 1 + + + text #234 + Y2 + 375 + 17 + 70 + 15 + + + + + 1 + + + text #237 + (y offset) + 375 + 72 + 70 + 14 + + + + + 1 + + + text update #240 + $(P)ml_monoYPv + 375 + 32 + 70 + 10 + + + + + + + + + 1 + false + 1 + false + + + text update #244 + $(P)ml_mono_yOffset + 376 + 43 + 67 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + diff --git a/opticsApp/op/bob/autoconvert/ml_monoSeqCtl_All.bob b/opticsApp/op/bob/autoconvert/ml_monoSeqCtl_All.bob new file mode 100644 index 0000000..bf6bbc7 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/ml_monoSeqCtl_All.bob @@ -0,0 +1,1488 @@ + + + ml_monoSeqCtl_All + 516 + 290 + 635 + 342 + + + + + false + 5 + + rectangle #6 + 84 + 294 + 366 + 47 + + + + + + + + + + + + false + + $(P)ml_monoAlert + + + + + rectangle #10 + 115 + 94 + + + + + + + + + + + text #13 + Order + 9 + 5 + 50 + + + + + true + + + text entry #16 + $(P)ml_monoOrder.VAL + 65 + 5 + 20 + + + + + + + + + 1 + false + false + + + text #20 + d + 9 + 28 + 20 + + + + + true + + + text entry #23 + $(P)ml_monoD.VAL + 29 + 28 + 60 + + + + + + + + + 1 + false + false + + + choice button #27 + $(P)ml_monoMode.VAL + 6 + 142 + 75 + 45 + + + + + false + false + + Item 1 + Item 2 + + + + message button #30 + + + $(P)ml_monoPut + 1 + Write + + + $(P)ml_monoPut + Move + 6 + 190 + 75 + 25 + + + + + + + text #33 + TH (deg.) + 347 + 1 + + + + + 1 + + + text update #36 + $(P)ml_monoThetaRdbk + 347 + 35 + + + + + + + + + + + + + 1 + false + false + + + text entry #40 + $(P)ml_monoTheta.VAL + 347 + 55 + 25 + + + + + + + + + 1 + false + false + + + message button #44 + + + $(P)ml_monoThetaInc.VAL + 1 + Write + + + $(P)ml_monoThetaInc.VAL + > + 427 + 95 + 20 + 20 + + + + + + + text entry #47 + $(P)ml_monoThetaTweak + 367 + 95 + 60 + + + + + + + + + 1 + false + false + + + message button #51 + + + $(P)ml_monoThetaDec.VAL + 1 + Write + + + $(P)ml_monoThetaDec.VAL + < + 347 + 95 + 20 + 20 + + + + + + + text update #54 + $(P)ml_monoTheta.DRVH + 347 + 20 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #58 + $(P)ml_monoTheta.DRVL + 347 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #62 + $(P)ml_monoLambda.DRVL + 237 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #66 + $(P)ml_monoE.DRVL + 127 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #70 + $(P)ml_monoLambdaRdbk + 237 + 35 + + + + + + + + + + + + + 1 + false + false + + + text entry #74 + $(P)ml_monoLambda.VAL + 237 + 55 + 25 + + + + + + + + + 1 + false + false + + + message button #78 + + + $(P)ml_monoLambdaInc.VAL + 1 + Write + + + $(P)ml_monoLambdaInc.VAL + > + 317 + 95 + 20 + 20 + + + + + + + text entry #81 + $(P)ml_monoLambdaTweak + 257 + 95 + 60 + + + + + + + + + 1 + false + false + + + message button #85 + + + $(P)ml_monoLambdaDec.VAL + 1 + Write + + + $(P)ml_monoLambdaDec.VAL + < + 237 + 95 + 20 + 20 + + + + + + + text update #88 + $(P)ml_monoLambda.DRVH + 237 + 20 + 15 + + + + + + + + + + + + + 1 + false + false + + + text entry #92 + $(P)ml_monoE.VAL + 127 + 55 + 25 + + + + + + + + + 1 + false + false + + + text entry #96 + $(P)ml_monoETweak + 147 + 95 + 60 + + + + + + + + + 1 + false + false + + + message button #100 + + + $(P)ml_monoEDec.VAL + 1 + Write + + + $(P)ml_monoEDec.VAL + < + 127 + 95 + 20 + 20 + + + + + + + message button #103 + + + $(P)ml_monoEInc.VAL + 1 + Write + + + $(P)ml_monoEInc.VAL + > + 207 + 95 + 20 + 20 + + + + + + + text update #106 + $(P)ml_monoE.DRVH + 127 + 20 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #110 + $(P)ml_monoERdbk + 127 + 35 + + + + + + + + + + + + + 1 + false + false + + + text #114 + lambda (A) + 237 + 1 + + + + + 1 + + + text #117 + E (keV) + 127 + 1 + + + + + 1 + + + text #120 + Low Limit + 460 + 80 + 75 + 14 + + + + + true + + + text #123 + Desired + 460 + 60 + 75 + 14 + + + + + true + + + text #126 + Actual + 460 + 38 + 75 + 14 + + + + + true + + + text #129 + High Limit + 460 + 20 + 75 + 14 + + + + + true + + + polyline #132 + -1 + 118 + 536 + 2 + 2 + + + + + + + + + + + + + rectangle #136 + 118 + 97 + 2 + + + + + + + + + true + + + arc #139 + 100 + 180 + 25 + 18 + 90.0 + 180.0 + 2 + + + + + true + + + polyline #142 + 107 + 177 + 8 + 10 + 2 + + + + + + + + + + + + + + + polyline #146 + 78 + 188 + 20 + 2 + 2 + + + + + 1 + + + + + + + + + rectangle #150 + 4 + 137 + 84 + 83 + + + + + + + + + + + text update #153 + $(P)ml_monoSeqMsg1 + 98 + 299 + 339 + 18 + + + + + + + + + 1 + false + 1 + false + + + polyline #157 + -2 + 288 + 536 + 2 + 2 + + + + + + + + + + + + + text update #161 + $(P)ml_monoSeqMsg2 + 98 + 319 + 339 + 18 + + + + + + + + + 1 + false + 1 + false + + + message button #165 + + + $(P)ml_monoOperAck + 1 + Write + + + $(P)ml_monoOperAck + OK + 21 + 300 + 54 + 34 + + + + + + + choice button #168 + $(P)ml_monoUseSet.VAL + 5 + 260 + 22 + + + + + false + + Item 1 + Item 2 + + + + text #171 + Calibration: + 5 + 244 + 14 + + + + + true + + + text #174 + Y2 + 300 + 123 + 90 + + + + + 1 + + + text #177 + Actual Pos. + 495 + 155 + 50 + 14 + + + + + true + + + text #180 + Motor Command + 495 + 173 + 50 + 14 + + + + + true + + + message button #183 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + All Stop + 540 + 189 + 88 + 38 + + + + + + + + + + + text #186 + Motor PV + 496 + 138 + 50 + 14 + + + + + true + + + choice button #189 + $(P)ml_monoMode2.VAL + 385 + 245 + 106 + 35 + + + + + false + false + + Item 1 + Item 2 + + + + text #192 + Moving + 540 + 230 + 88 + 22 + + + + + + + + + 1 + + + + false + + $(P)ml_monoMoving + + + + + text #196 + Done + 540 + 230 + 88 + 22 + + + + + 1 + + + + false + + $(P)ml_monoMoving + + + + + text #200 + (y offset) + 310 + 176 + 80 + 14 + + + + + 1 + + + text #203 + Z2 + 395 + 123 + 90 + + + + + 1 + + + text update #206 + $(P)ml_monoZRdbk + 402 + 155 + 89 + 15 + + + + + + + + + + + + + 1 + false + false + + + text update #210 + $(P)ml_monoZPv + 401 + 140 + 89 + 13 + + + + + 1 + false + 1 + false + + + text update #214 + $(P)ml_mono_yOffset + 310 + 155 + 80 + 15 + + + + + + + + + + + + + 1 + false + false + + + text update #218 + $(P)ml_monoYPv + 306 + 140 + 89 + 13 + + + + + 1 + false + 1 + false + + + text #222 + Theta + 110 + 123 + 90 + + + + + 1 + + + text update #225 + $(P)ml_monoThetaRdbk + 115 + 155 + 89 + 15 + + + + + + + + + + + + + 1 + false + false + + + text update #229 + $(P)ml_monoThetaPv + 114 + 140 + 89 + 13 + + + + + 1 + false + 1 + false + + + text #233 + Theta2 + 205 + 123 + 90 + + + + + 1 + + + text update #236 + $(P)ml_monoTheta2RdbkEcho + 210 + 155 + 89 + 15 + + + + + + + + + + + + + 1 + false + false + + + text update #240 + $(P)ml_monoTheta2Pv + 209 + 140 + 89 + 13 + + + + + 1 + false + 1 + false + + + text update #244 + $(P)ml_monoThetaSet + 115 + 192 + 89 + 15 + + + + + + + + + + + + + 1 + false + false + + + text update #248 + $(P)ml_monoThetaVel + 115 + 208 + 89 + 13 + + + + + 1 + false + 1 + false + + + text update #252 + $(P)ml_monoTheta2Set + 210 + 192 + 89 + 15 + + + + + + + + + + + + + 1 + false + false + + + text update #256 + $(P)ml_monoTheta2Vel + 210 + 208 + 89 + 13 + + + + + 1 + false + 1 + false + + + text update #260 + $(P)ml_monoZSet + 402 + 192 + 89 + 15 + + + + + + + + + + + + + 1 + false + false + + + text update #264 + $(P)ml_monoZVel + 402 + 208 + 89 + 13 + + + + + 1 + false + 1 + false + + + text #268 + Ideal + 495 + 192 + 50 + 14 + + + + + true + + + text #271 + Speed + 495 + 207 + 50 + 14 + + + + + true + + + rectangle #274 + 113 + 154 + 94 + 37 + 2 + + + + + + + + + true + + + + false + + $(P)ml_monoThetaDmov + + + + + rectangle #278 + 208 + 154 + 94 + 37 + 2 + + + + + + + + + true + + + + false + + $(P)ml_monoTheta2Dmov + + + + + rectangle #282 + 401 + 154 + 94 + 37 + 2 + + + + + + + + + true + + + + false + + $(P)ml_monoZDmov + + + + + text update #286 + $(P)ml_monoThetaCmd + 115 + 173 + 89 + 15 + + + + + + + + + 1 + false + false + + + text update #290 + $(P)ml_monoTheta2Cmd + 210 + 173 + 89 + 15 + + + + + + + + + 1 + false + false + + + text update #294 + $(P)ml_monoZCmd + 402 + 173 + 89 + 15 + + + + + + + + + 1 + false + false + + diff --git a/opticsApp/op/bob/autoconvert/ml_monoSeqCtl_tiny.bob b/opticsApp/op/bob/autoconvert/ml_monoSeqCtl_tiny.bob new file mode 100644 index 0000000..386ffe9 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/ml_monoSeqCtl_tiny.bob @@ -0,0 +1,560 @@ + + + ml_monoSeqCtl_tiny + 300 + 258 + 215 + 140 + + + + + false + 5 + + text update #6 + $(P)ml_monoERdbk + 32 + 105 + + + + + + + + + + + + + 1 + false + false + + + text entry #10 + $(P)ml_monoE.VAL + 48 + 105 + 25 + + + + + + + + + 1 + false + false + + + text update #14 + $(P)ml_monoE.DRVH + 19 + 105 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #18 + $(P)ml_monoE.DRVL + 71 + 105 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #22 + E (keV) + 105 + + + + + 1 + + + text entry #25 + $(P)ml_monoETweak + 20 + 84 + 65 + + + + + + + + + 1 + false + false + + + message button #29 + + + $(P)ml_monoEDec.VAL + 1 + Write + + + $(P)ml_monoEDec.VAL + < + 84 + 20 + 20 + + + + + + + message button #32 + + + $(P)ml_monoEInc.VAL + 1 + Write + + + $(P)ml_monoEInc.VAL + > + 85 + 84 + 20 + 20 + + + + + + + rectangle #35 + 105 + 105 + 32 + + + + + + + + + + + text #38 + SCAN CONTROL + 105 + 105 + 10 + + + + + + + + + 1 + + + message button #41 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + Abort + 64 + 115 + 40 + 20 + + + + + + + + + + + message button #44 + + + $(P)ml_monoE:scanParms.GO + 1 + Write + + + $(P)ml_monoE:scanParms.GO + Go + 43 + 115 + 20 + 20 + + + + + + + message button #47 + + + $(P)ml_monoE:scanParms.LOAD + 1 + Write + + + $(P)ml_monoE:scanParms.LOAD + Ld + 22 + 115 + 20 + 20 + + + + + + + related display #50 + + + scanParms.opi + + ml_monoE + ml_monoE + + tab + Energy-scan parameters + + + + 1 + 115 + 20 + 20 + + + + + + + text #53 + TH (deg.) + 110 + 105 + + + + + 1 + + + text update #56 + $(P)ml_monoThetaRdbk + 110 + 32 + 105 + + + + + + + + + + + + + 1 + false + false + + + text entry #60 + $(P)ml_monoTheta.VAL + 110 + 48 + 105 + 25 + + + + + + + + + 1 + false + false + + + text update #64 + $(P)ml_monoTheta.DRVH + 110 + 19 + 105 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #68 + $(P)ml_monoTheta.DRVL + 110 + 71 + 105 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + message button #72 + + + $(P)ml_monoThetaInc.VAL + 1 + Write + + + $(P)ml_monoThetaInc.VAL + > + 195 + 84 + 20 + 20 + + + + + + + text entry #75 + $(P)ml_monoThetaTweak + 130 + 84 + 65 + + + + + + + + + 1 + false + false + + + message button #79 + + + $(P)ml_monoThetaDec.VAL + 1 + Write + + + $(P)ml_monoThetaDec.VAL + < + 110 + 84 + 20 + 20 + + + + + + + rectangle #82 + 110 + 105 + 105 + 32 + + + + + + + + + + + text #85 + SCAN CONTROL + 110 + 105 + 105 + 10 + + + + + + + + + 1 + + + message button #88 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + Abort + 174 + 115 + 40 + 20 + + + + + + + + + + + message button #91 + + + $(P)ml_monoTheta:scanParms.GO + 1 + Write + + + $(P)ml_monoTheta:scanParms.GO + Go + 153 + 115 + 20 + 20 + + + + + + + message button #94 + + + $(P)ml_monoTheta:scanParms.LOAD + 1 + Write + + + $(P)ml_monoTheta:scanParms.LOAD + Ld + 132 + 115 + 20 + 20 + + + + + + + related display #97 + + + scanParms.opi + + ml_monoTheta + ml_monoTheta + + tab + Theta-scan parameters + + + + 111 + 115 + 20 + 20 + + + + + + diff --git a/opticsApp/op/bob/autoconvert/orient.bob b/opticsApp/op/bob/autoconvert/orient.bob new file mode 100644 index 0000000..a655f29 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/orient.bob @@ -0,0 +1,1479 @@ + + + orient + 82 + 81 + 490 + 245 + + + + + false + 5 + + rectangle #6 + 490 + + + + + + + + + + + rectangle #9 + 20 + 490 + 3 + + + + + + + + + + + text #12 + Diffractometer $(P)orient$(O) + 490 + + + + + 1 + + + text #15 + CONSTRAINT: + 132 + 64 + 115 + 10 + + + + + 1 + + + menu #18 + $(P)orient$(O):Mode + 132 + 75 + 115 + 20 + + + + + false + + + text entry #21 + $(P)orient$(O):TTH + 164 + 99 + 80 + + + + + + + + + 1 + false + false + + + text entry #25 + $(P)orient$(O):TH + 164 + 122 + 80 + + + + + + + + + 1 + false + false + + + text entry #29 + $(P)orient$(O):CHI + 164 + 145 + 80 + + + + + + + + + 1 + false + false + + + text entry #33 + $(P)orient$(O):PHI + 164 + 168 + 80 + + + + + + + + + 1 + false + false + + + rectangle #37 + 161 + 97 + 85 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):TTH_busy + + + + + text #41 + TTH + 131 + 100 + 30 + + + + + 1 + + + text #44 + TH + 131 + 123 + 30 + + + + + 1 + + + text #47 + CHI + 131 + 146 + 30 + + + + + 1 + + + text #50 + PHI + 131 + 169 + 30 + + + + + 1 + + + rectangle #53 + 161 + 121 + 85 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):TH_busy + + + + + rectangle #57 + 161 + 143 + 85 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):CHI_busy + + + + + rectangle #61 + 161 + 166 + 85 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):PHI_busy + + + + + polyline #65 + 254 + 118 + 99 + 6 + 6 + + + + + + + + + + + + + + false + + $(P)orient$(O):motPut + $(P)orient$(O):motPut_Auto + + + + + polygon #70 + 344 + 108 + 23 + 26 + 1 + + + + + + + + + + + + + + + + + + + + + + false + + $(P)orient$(O):motPut + $(P)orient$(O):motPut_Auto + + + + + menu #75 + $(P)orient$(O):motPut_Auto + 280 + 97 + 55 + 14 + + + + + false + + + message button #78 + + + $(P)orient$(O):motPut + 1 + Write + + + $(P)orient$(O):motPut + Move + 280 + 111 + 55 + 20 + + + + + + + message button #81 + + + $(P)orient$(O):stopMotors + 1 + Write + + + $(P)orient$(O):stopMotors + Stop Motors + 249 + 202 + 120 + 28 + + + + + + + + + + + message button #84 + + + $(P)orient$(O):OperAck + 1 + Write + + + $(P)orient$(O):OperAck + Erase + 430 + 23 + 45 + 20 + + + + + + + rectangle #87 + 10 + 22 + 420 + 22 + + + + + + + + + true + + + + false + + $(P)orient$(O):Alert + + + + + text update #91 + 14 + 27 + 412 + 14 + + + + + + + + + 1 + false + false + + + text update #95 + $(P)orient$(O):Busy + 280 + 70 + 55 + + + + + + + + + + + + + 6 + false + 1 + false + + + text update #99 + $(P)orient$(O):H_RBV + 26 + 46 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + + text #103 + L + 10 + 180 + 10 + + + + + true + + + text entry #106 + $(P)orient$(O):L + 25 + 179 + 80 + + + + + + + + + 1 + false + false + + + rectangle #110 + 23 + 177 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):L_busy + + + + + text update #114 + $(P)orient$(O):L_RBV + 26 + 163 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + + text #118 + K + 10 + 120 + 10 + + + + + true + + + text entry #121 + $(P)orient$(O):K + 25 + 119 + 80 + + + + + + + + + 1 + false + false + + + rectangle #125 + 23 + 117 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):K_busy + + + + + text update #129 + $(P)orient$(O):K_RBV + 26 + 103 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + + text entry #133 + $(P)orient$(O):H + 25 + 61 + 80 + + + + + + + + + 1 + false + false + + + text #137 + H + 10 + 62 + 10 + + + + + true + + + rectangle #140 + 23 + 59 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):H_busy + + + + + menu #144 + $(P)orient$(O):motGet_Auto + 280 + 145 + 55 + 14 + + + + + false + + + message button #147 + + + $(P)orient$(O):motGet + 1 + Write + + + $(P)orient$(O):motGet + Read + 280 + 159 + 55 + 20 + + + + + + + polyline #150 + 264 + 165 + 99 + 7 + 6 + + + + + + + + + + + + + + false + + $(P)orient$(O):motGet + $(P)orient$(O):motGet_Auto + + + + + polygon #155 + 252 + 156 + 23 + 26 + 1 + + + + + + + + + + + + + + + + + + + + + + false + + $(P)orient$(O):motGet + $(P)orient$(O):motGet_Auto + + + + + related display #160 + + + orient_full.opi + replace + Everything + + + motor4x.opi + + $(mTTH) + $(mTH) + $(mCHI) + $(mPHI) +

$(PM)

+
+ tab + Motors +
+
+ More + 450 + 225 + 40 + 20 + + + + + + + + +
+ + related display #164 + + + orient_HKL.opi + replace + HKL only + + + Less + 412 + 225 + 40 + 21 + + + + + + + + + + + message button #167 + + + $(P)orient$(O):H_tweak.A + 1 + Write + + + $(P)orient$(O):H_tweak.A + + + 85 + 81 + 20 + 20 + + + + + + + message button #170 + + + $(P)orient$(O):H_tweak.B + 1 + Write + + + $(P)orient$(O):H_tweak.B + - + 25 + 81 + 20 + 20 + + + + + + + text entry #173 + $(P)orient$(O):H_tweak.C + 45 + 83 + 40 + 18 + + + + + + + + + 1 + false + false + + + message button #177 + + + $(P)orient$(O):L_tweak.A + 1 + Write + + + $(P)orient$(O):L_tweak.A + + + 85 + 199 + 20 + 20 + + + + + + + message button #180 + + + $(P)orient$(O):L_tweak.B + 1 + Write + + + $(P)orient$(O):L_tweak.B + - + 25 + 199 + 20 + 20 + + + + + + + text entry #183 + $(P)orient$(O):L_tweak.C + 45 + 201 + 40 + 18 + + + + + + + + + 1 + false + false + + + message button #187 + + + $(P)orient$(O):K_tweak.A + 1 + Write + + + $(P)orient$(O):K_tweak.A + + + 85 + 139 + 20 + 20 + + + + + + + message button #190 + + + $(P)orient$(O):K_tweak.B + 1 + Write + + + $(P)orient$(O):K_tweak.B + - + 25 + 139 + 20 + 20 + + + + + + + text entry #193 + $(P)orient$(O):K_tweak.C + 45 + 141 + 40 + 18 + + + + + + + + + 1 + false + false + + + text update #197 + $(PM)$(mCHI).RBV + 397 + 126 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + + rectangle #201 + 395 + 140 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):motCHI_Connected + + + + + text entry #205 + $(PM)$(mCHI) + 397 + 142 + 80 + + + + + + + + + 1 + false + false + + + rectangle #209 + 395 + 140 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):waiting4motCHI + + + + + rectangle #213 + 395 + 100 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):motTH_Connected + + + + + rectangle #217 + 395 + 100 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):waiting4motTH + + + + + text update #221 + $(PM)$(mTH).RBV + 397 + 86 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + + text entry #225 + $(PM)$(mTH) + 397 + 102 + 80 + + + + + + + + + 1 + false + false + + + text update #229 + $(PM)$(mTTH).RBV + 397 + 46 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + + rectangle #233 + 395 + 60 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):motTTH_Connected + + + + + text entry #237 + $(PM)$(mTTH) + 397 + 62 + 80 + + + + + + + + + 1 + false + false + + + rectangle #241 + 395 + 60 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):waiting4motTTH + + + + + text #245 + Moving + 395 + 203 + 84 + + + + + + + + + 1 + + + + false + + $(P)orient$(O):waiting4Mot + + + + + text update #249 + $(PM)$(mPHI).RBV + 397 + 166 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + + rectangle #253 + 395 + 180 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):motPHI_Connected + + + + + text entry #257 + $(PM)$(mPHI) + 397 + 182 + 80 + + + + + + + + + 1 + false + false + + + rectangle #261 + 395 + 180 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):waiting4motPHI + + + + + text #265 + TTH + 365 + 63 + 30 + + + + + 1 + + + text #268 + TH + 365 + 103 + 30 + + + + + 1 + + + text #271 + CHI + 365 + 143 + 30 + + + + + 1 + + + text #274 + PHI + 365 + 183 + 30 + + + + + 1 + +
diff --git a/opticsApp/op/bob/autoconvert/orient9.bob b/opticsApp/op/bob/autoconvert/orient9.bob new file mode 100644 index 0000000..93d7f3f --- /dev/null +++ b/opticsApp/op/bob/autoconvert/orient9.bob @@ -0,0 +1,2359 @@ + + + orient9 + 729 + 568 + 675 + 280 + + + + + false + 5 + + rectangle #6 + 700 + + + + + + + + + + + rectangle #9 + 20 + 700 + 3 + + + + + + + + + + + text #12 + Diffractometer + 700 + + + + + 1 + + + text #15 + H + 30 + 25 + 80 + + + + + 1 + + + text #18 + K + 125 + 25 + 80 + + + + + 1 + + + text #21 + L + 220 + 25 + 80 + + + + + 1 + + + text #24 + TTH + 315 + 25 + 80 + + + + + 1 + + + text #27 + TH + 405 + 25 + 80 + + + + + 1 + + + text #30 + CHI + 495 + 25 + 80 + + + + + 1 + + + text #33 + PHI + 585 + 25 + 80 + + + + + 1 + + + related display #36 + + + orient_slave.opi + + _p1 + + tab + More + + + +1 + 2 + 105 + 25 + 20 + + + + + + + + + + + related display #39 + + + orient_slave.opi + + _p2 + + tab + More + + + +2 + 2 + 85 + 25 + 20 + + + + + + + + + + + related display #42 + + + orient_slave.opi + + _p3 + + tab + More + + + +3 + 2 + 65 + 25 + 20 + + + + + + + + + + + related display #45 + + + orient_slave.opi + + _p4 + + tab + More + + + +4 + 2 + 45 + 25 + 20 + + + + + + + + + + + text update #48 + $(P)orient_p4:H + 30 + 45 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #52 + $(P)orient_p4:TTH + 315 + 45 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #56 + $(P)orient_p4:K + 125 + 45 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #60 + $(P)orient_p4:L + 220 + 45 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #64 + $(P)orient_p3:TTH + 315 + 65 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #68 + $(P)orient_p3:H + 30 + 65 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #72 + $(P)orient_p3:K + 125 + 65 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #76 + $(P)orient_p3:L + 220 + 65 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #80 + $(P)orient_p2:H + 30 + 85 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #84 + $(P)orient_p2:K + 125 + 85 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #88 + $(P)orient_p2:L + 220 + 85 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #92 + $(P)orient_p2:TTH + 315 + 85 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #96 + $(P)orient_p1:H + 30 + 105 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #100 + $(P)orient_p1:K + 125 + 105 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #104 + $(P)orient_p1:L + 220 + 105 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #108 + $(P)orient_p1:TTH + 315 + 105 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #112 + $(P)orient$(O):H_RBV + 30 + 130 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #116 + $(P)orient$(O):K_RBV + 125 + 130 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #120 + $(P)orient$(O):L_RBV + 220 + 130 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #124 + $(P)orient1:TTH + 315 + 130 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #128 + $(P)orient1:TH + 405 + 130 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #132 + $(P)orient1:CHI + 495 + 130 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #136 + $(P)orient1:PHI + 585 + 130 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + related display #140 + + + orient.opi + + 1 + + tab + Orientation matrix + + + motor4x.opi + + $(mTTH) + $(mTH) + $(mCHI) + $(mPHI) +

$(PM)

+
+ tab + Motors +
+
+ 0 + 2 + 144 + 25 + 27 + + + + + + + + +
+ + rectangle #144 + 313 + 145 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):motTTH_Connected + + + + + text entry #148 + $(PM)$(mTTH) + 315 + 147 + 80 + + + + + + + + + 1 + false + false + + + rectangle #152 + 313 + 145 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):waiting4motTTH + + + + + related display #156 + + + orient_slave.opi + + _m1 + + tab + More + + + -1 + 2 + 200 + 25 + 20 + + + + + + + + + + + related display #159 + + + orient_slave.opi + + _m2 + + tab + More + + + -2 + 2 + 220 + 25 + 20 + + + + + + + + + + + related display #162 + + + orient_slave.opi + + _m3 + + tab + More + + + -3 + 2 + 240 + 25 + 20 + + + + + + + + + + + related display #165 + + + orient_slave.opi + + _m4 + + tab + More + + + -4 + 2 + 260 + 25 + 20 + + + + + + + + + + + text update #168 + $(P)orient_m1:H + 30 + 200 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #172 + $(P)orient_m1:K + 125 + 200 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #176 + $(P)orient_m1:L + 220 + 200 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #180 + $(P)orient_m1:TTH + 315 + 200 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #184 + $(P)orient_m2:H + 30 + 220 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #188 + $(P)orient_m2:K + 125 + 220 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #192 + $(P)orient_m2:L + 220 + 220 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #196 + $(P)orient_m2:TTH + 315 + 220 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #200 + $(P)orient_m3:H + 30 + 240 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #204 + $(P)orient_m3:K + 125 + 240 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #208 + $(P)orient_m3:L + 220 + 240 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #212 + $(P)orient_m3:TTH + 315 + 240 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #216 + $(P)orient_m4:H + 31 + 260 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #220 + $(P)orient_m4:K + 126 + 260 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #224 + $(P)orient_m4:L + 221 + 260 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #228 + $(P)orient_m4:TTH + 316 + 260 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #232 + $(P)orient$(O):H + 31 + 147 + 80 + 22 + + + + + + + + + 1 + false + false + + + rectangle #236 + 29 + 145 + 84 + 26 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):H_busy + + + + + text entry #240 + $(P)orient$(O):K + 125 + 147 + 80 + 22 + + + + + + + + + 1 + false + false + + + rectangle #244 + 123 + 145 + 84 + 26 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):K_busy + + + + + text entry #248 + $(P)orient$(O):L + 220 + 147 + 80 + 22 + + + + + + + + + 1 + false + false + + + rectangle #252 + 218 + 145 + 84 + 26 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):L_busy + + + + + message button #256 + + + $(P)orient$(O):H_tweak.A + 1 + Write + + + $(P)orient$(O):H_tweak.A + + + 91 + 172 + 20 + 20 + + + + + + + message button #259 + + + $(P)orient$(O):H_tweak.B + 1 + Write + + + $(P)orient$(O):H_tweak.B + - + 31 + 172 + 20 + 20 + + + + + + + text entry #262 + $(P)orient$(O):H_tweak.C + 51 + 174 + 40 + 18 + + + + + + + + + 1 + false + false + + + message button #266 + + + $(P)orient$(O):K_tweak.A + 1 + Write + + + $(P)orient$(O):K_tweak.A + + + 185 + 172 + 20 + 20 + + + + + + + message button #269 + + + $(P)orient$(O):K_tweak.B + 1 + Write + + + $(P)orient$(O):K_tweak.B + - + 125 + 172 + 20 + 20 + + + + + + + text entry #272 + $(P)orient$(O):K_tweak.C + 145 + 174 + 40 + 18 + + + + + + + + + 1 + false + false + + + message button #276 + + + $(P)orient$(O):L_tweak.A + 1 + Write + + + $(P)orient$(O):L_tweak.A + + + 280 + 172 + 20 + 20 + + + + + + + message button #279 + + + $(P)orient$(O):L_tweak.B + 1 + Write + + + $(P)orient$(O):L_tweak.B + - + 220 + 172 + 20 + 20 + + + + + + + text entry #282 + $(P)orient$(O):L_tweak.C + 240 + 174 + 40 + 18 + + + + + + + + + 1 + false + false + + + message button #286 + + + $(PM)$(mTTH).TWF + 1 + Write + + + $(PM)$(mTTH).TWF + + + 375 + 172 + 20 + 20 + + + + + + + message button #289 + + + $(PM)$(mTTH).TWR + 1 + Write + + + $(PM)$(mTTH).TWR + - + 315 + 172 + 20 + 20 + + + + + + + text entry #292 + $(PM)$(mTTH).TWV + 335 + 174 + 40 + 18 + + + + + + + + + 1 + false + false + + + message button #296 + + + $(PM)$(mTH).TWF + 1 + Write + + + $(PM)$(mTH).TWF + + + 465 + 172 + 20 + 20 + + + + + + + message button #299 + + + $(PM)$(mTH).TWR + 1 + Write + + + $(PM)$(mTH).TWR + - + 405 + 172 + 20 + 20 + + + + + + + text entry #302 + $(PM)$(mTH).TWV + 425 + 174 + 40 + 18 + + + + + + + + + 1 + false + false + + + message button #306 + + + $(PM)$(mCHI).TWF + 1 + Write + + + $(PM)$(mCHI).TWF + + + 555 + 172 + 20 + 20 + + + + + + + message button #309 + + + $(PM)$(mCHI).TWR + 1 + Write + + + $(PM)$(mCHI).TWR + - + 495 + 172 + 20 + 20 + + + + + + + text entry #312 + $(PM)$(mCHI).TWV + 515 + 174 + 40 + 18 + + + + + + + + + 1 + false + false + + + rectangle #316 + 403 + 145 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):motTH_Connected + + + + + text entry #320 + $(PM)$(mTH) + 405 + 147 + 80 + + + + + + + + + 1 + false + false + + + rectangle #324 + 403 + 145 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):waiting4motTH + + + + + rectangle #328 + 493 + 145 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):motCHI_Connected + + + + + text entry #332 + $(PM)$(mCHI) + 495 + 147 + 80 + + + + + + + + + 1 + false + false + + + rectangle #336 + 493 + 145 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):waiting4motCHI + + + + + rectangle #340 + 583 + 145 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):motPHI_Connected + + + + + text entry #344 + $(PM)$(mPHI) + 585 + 147 + 80 + + + + + + + + + 1 + false + false + + + rectangle #348 + 583 + 145 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):waiting4motPHI + + + + + message button #352 + + + $(PM)$(mPHI).TWF + 1 + Write + + + $(PM)$(mPHI).TWF + + + 645 + 172 + 20 + 20 + + + + + + + message button #355 + + + $(PM)$(mPHI).TWR + 1 + Write + + + $(PM)$(mPHI).TWR + - + 585 + 172 + 20 + 20 + + + + + + + text entry #358 + $(PM)$(mPHI).TWV + 605 + 174 + 40 + 18 + + + + + + + + + 1 + false + false + + + rectangle #362 + 128 + 669 + 68 + 2 + + + + + + + + + true + + + message button #366 + + + $(P)orient$(O):stopMotors + 1 + Write + + + $(P)orient$(O):stopMotors + Stop Motors + 471 + 68 + 120 + 28 + + + + + + + + + + + polyline #369 + 405 + 48 + 260 + 1 + 1 + + + + + + + + + + + + + polyline #374 + 405 + 116 + 260 + 1 + 1 + + + + + + + + + + + + + polyline #379 + 405 + 48 + 1 + 69 + 1 + + + + + + + + + + + + + polyline #384 + 663 + 48 + 1 + 69 + 1 + + + + + + + + + + + + + polyline #389 + 405 + 205 + 260 + 1 + 1 + + + + + + + + + + + + + polyline #394 + 405 + 273 + 260 + 1 + 1 + + + + + + + + + + + + + polyline #399 + 405 + 205 + 1 + 69 + 1 + + + + + + + + + + + + + polyline #404 + 663 + 205 + 1 + 69 + 1 + + + + + + + + + + + + + text #409 + Energy: + 456 + 233 + 70 + + + + + 1 + + + text entry #412 + $(P)orient$(O):energy + 530 + 233 + 70 + + + + + + + + + 1 + false + false + + + text #416 + keV + 601 + 233 + 30 + + + + + true + +
diff --git a/opticsApp/op/bob/autoconvert/orient_HKL.bob b/opticsApp/op/bob/autoconvert/orient_HKL.bob new file mode 100644 index 0000000..ef92df1 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/orient_HKL.bob @@ -0,0 +1,491 @@ + + + orient_HKL + 885 + 192 + 340 + 85 + + + + + false + 5 + + rectangle #6 + 300 + + + + + + + + + + + rectangle #9 + 20 + 300 + 3 + + + + + + + + + + + text #12 + Diffractometer $(P)orient$(O) + 300 + + + + + 1 + + + related display #15 + + + orient.opi + replace + HKL, Angles, Motors + + + orient_full.opi + replace + Everything + + + motor4x.opi + + $(mTTH) + $(mTH) + $(mCHI) + $(mPHI) +

$(PM)

+
+ tab + Motors +
+
+ More + 300 + 40 + 20 + + + + + + + + +
+ + text update #20 + $(P)orient$(O):H_RBV + 26 + 24 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + + text update #24 + $(P)orient$(O):K_RBV + 136 + 24 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + + text update #28 + $(P)orient$(O):L_RBV + 246 + 24 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + + text entry #32 + $(P)orient$(O):H + 25 + 39 + 80 + + + + + + + + + 1 + false + false + + + text #36 + H + 10 + 40 + 10 + + + + + true + + + rectangle #39 + 23 + 37 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):H_busy + + + + + text #43 + K + 120 + 40 + 10 + + + + + true + + + text entry #46 + $(P)orient$(O):K + 135 + 39 + 80 + + + + + + + + + 1 + false + false + + + rectangle #50 + 133 + 37 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):K_busy + + + + + text #54 + L + 230 + 40 + 10 + + + + + true + + + text entry #57 + $(P)orient$(O):L + 245 + 39 + 80 + + + + + + + + + 1 + false + false + + + rectangle #61 + 243 + 37 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):L_busy + + + + + message button #65 + + + $(P)orient$(O):H_tweak.A + 1 + Write + + + $(P)orient$(O):H_tweak.A + + + 85 + 59 + 20 + 20 + + + + + + + message button #68 + + + $(P)orient$(O):H_tweak.B + 1 + Write + + + $(P)orient$(O):H_tweak.B + - + 25 + 59 + 20 + 20 + + + + + + + text entry #71 + $(P)orient$(O):H_tweak.C + 45 + 61 + 40 + 18 + + + + + + + + + 1 + false + false + + + message button #75 + + + $(P)orient$(O):K_tweak.A + 1 + Write + + + $(P)orient$(O):K_tweak.A + + + 195 + 59 + 20 + 20 + + + + + + + message button #78 + + + $(P)orient$(O):K_tweak.B + 1 + Write + + + $(P)orient$(O):K_tweak.B + - + 135 + 59 + 20 + 20 + + + + + + + text entry #81 + $(P)orient$(O):K_tweak.C + 155 + 61 + 40 + 18 + + + + + + + + + 1 + false + false + + + message button #85 + + + $(P)orient$(O):L_tweak.A + 1 + Write + + + $(P)orient$(O):L_tweak.A + + + 305 + 59 + 20 + 20 + + + + + + + message button #88 + + + $(P)orient$(O):L_tweak.B + 1 + Write + + + $(P)orient$(O):L_tweak.B + - + 245 + 59 + 20 + 20 + + + + + + + text entry #91 + $(P)orient$(O):L_tweak.C + 265 + 61 + 40 + 18 + + + + + + + + + 1 + false + false + +
diff --git a/opticsApp/op/bob/autoconvert/orient_HKL_angles.bob b/opticsApp/op/bob/autoconvert/orient_HKL_angles.bob new file mode 100644 index 0000000..8de6e30 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/orient_HKL_angles.bob @@ -0,0 +1,403 @@ + + + orient_HKL_angles + 690 + 570 + 700 + 65 + + + + + false + 5 + + rectangle #6 + 700 + + + + + + + + + + + rectangle #9 + 20 + 700 + 3 + + + + + + + + + + + text #12 + Diffractometer $(P)orient$(O) + 700 + + + + + 1 + + + text update #15 + $(P)orient$(O):H_RBV + 26 + 25 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + + text entry #19 + $(P)orient$(O):H + 25 + 40 + 80 + + + + + + + + + 1 + false + false + + + text #23 + H + 10 + 41 + 10 + + + + + true + + + rectangle #26 + 23 + 38 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):H_busy + + + + + text #30 + K + 120 + 42 + 10 + + + + + true + + + text entry #33 + $(P)orient$(O):K + 135 + 41 + 80 + + + + + + + + + 1 + false + false + + + rectangle #37 + 133 + 39 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):K_busy + + + + + text update #41 + $(P)orient$(O):K_RBV + 136 + 25 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + + text #45 + L + 230 + 42 + 10 + + + + + true + + + text entry #48 + $(P)orient$(O):L + 245 + 41 + 80 + + + + + + + + + 1 + false + false + + + rectangle #52 + 243 + 39 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):L_busy + + + + + text update #56 + $(P)orient$(O):L_RBV + 246 + 25 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + + text #60 + CHI + 520 + 25 + 80 + + + + + 1 + + + text update #63 + $(P)orient$(O):CHI + 520 + 45 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + + text #67 + PHI + 610 + 25 + 80 + + + + + 1 + + + text update #70 + $(P)orient$(O):PHI + 610 + 45 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + + text #74 + TTH + 340 + 25 + 80 + + + + + 1 + + + text update #77 + $(P)orient$(O):TTH + 340 + 45 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + + text #81 + TH + 430 + 25 + 80 + + + + + 1 + + + text update #84 + $(P)orient$(O):TH + 430 + 45 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + diff --git a/opticsApp/op/bob/autoconvert/orient_XTALs.bob b/opticsApp/op/bob/autoconvert/orient_XTALs.bob new file mode 100644 index 0000000..0d7f601 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/orient_XTALs.bob @@ -0,0 +1,1554 @@ + + + orient_XTALs + 53 + 289 + 560 + 215 + + + + + false + 5 + + text #6 + USE + 5 + 35 + 25 + 14 + + + + + 1 + + + message button #9 + + + $(P)orient$(O):xtal_1.PROC + 1 + Write + + + $(P)orient$(O):xtal_1.PROC + 1 + 5 + 55 + 25 + 16 + + + + + + + message button #12 + + + $(P)orient$(O):xtal_2.PROC + 2 + Write + + + $(P)orient$(O):xtal_2.PROC + 2 + 5 + 75 + 25 + 16 + + + + + + + message button #15 + + + $(P)orient$(O):xtal_3.PROC + 3 + Write + + + $(P)orient$(O):xtal_3.PROC + 3 + 5 + 95 + 25 + 16 + + + + + + + message button #18 + + + $(P)orient$(O):xtal_4.PROC + 4 + Write + + + $(P)orient$(O):xtal_4.PROC + 4 + 5 + 115 + 25 + 16 + + + + + + + message button #21 + + + $(P)orient$(O):xtal_5.PROC + 5 + Write + + + $(P)orient$(O):xtal_5.PROC + 5 + 5 + 135 + 25 + 16 + + + + + + + message button #24 + + + $(P)orient$(O):xtal_6.PROC + 6 + Write + + + $(P)orient$(O):xtal_6.PROC + 6 + 5 + 155 + 25 + 16 + + + + + + + message button #27 + + + $(P)orient$(O):xtal_7.PROC + 7 + Write + + + $(P)orient$(O):xtal_7.PROC + 7 + 5 + 175 + 25 + 16 + + + + + + + message button #30 + + + $(P)orient$(O):xtal_8.PROC + 8 + Write + + + $(P)orient$(O):xtal_8.PROC + 8 + 5 + 195 + 25 + 16 + + + + + + + message button #33 + + + $(P)orient$(O):xtal_7_get.PROC + 7 + Write + + + $(P)orient$(O):xtal_7_get.PROC + 7 + 530 + 175 + 25 + 16 + + + + + + + text #36 + Get + 530 + 35 + 25 + 14 + + + + + 1 + + + message button #39 + + + $(P)orient$(O):xtal_1_get.PROC + 1 + Write + + + $(P)orient$(O):xtal_1_get.PROC + 1 + 530 + 55 + 25 + 16 + + + + + + + message button #42 + + + $(P)orient$(O):xtal_2_get.PROC + 2 + Write + + + $(P)orient$(O):xtal_2_get.PROC + 2 + 530 + 75 + 25 + 16 + + + + + + + message button #45 + + + $(P)orient$(O):xtal_3_get.PROC + 3 + Write + + + $(P)orient$(O):xtal_3_get.PROC + 3 + 530 + 95 + 25 + 16 + + + + + + + message button #48 + + + $(P)orient$(O):xtal_4_get.PROC + 4 + Write + + + $(P)orient$(O):xtal_4_get.PROC + 4 + 530 + 115 + 25 + 16 + + + + + + + message button #51 + + + $(P)orient$(O):xtal_5_get.PROC + 5 + Write + + + $(P)orient$(O):xtal_5_get.PROC + 5 + 530 + 135 + 25 + 16 + + + + + + + message button #54 + + + $(P)orient$(O):xtal_6_get.PROC + 6 + Write + + + $(P)orient$(O):xtal_6_get.PROC + 6 + 530 + 155 + 25 + 16 + + + + + + + message button #57 + + + $(P)orient$(O):xtal_8_get.PROC + 8 + Write + + + $(P)orient$(O):xtal_8_get.PROC + 8 + 530 + 195 + 25 + 16 + + + + + + + text entry #60 + $(P)orient$(O):xtal_7.STR1 + 35 + 175 + 16 + + + + + + + + + 1 + false + false + + + text entry #64 + $(P)orient$(O):xtal_7.DO3 + 205 + 175 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #68 + $(P)orient$(O):xtal_7.DO4 + 270 + 175 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #72 + $(P)orient$(O):xtal_7.DO5 + 335 + 175 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #76 + $(P)orient$(O):xtal_7.DO6 + 400 + 175 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #80 + $(P)orient$(O):xtal_7.DO7 + 465 + 175 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #84 + $(P)orient$(O):xtal_7.DO2 + 140 + 175 + 60 + 16 + + + + + + + + + 1 + false + false + + + text #88 + crystal + 35 + 25 + 14 + + + + + 1 + + + text #91 + description + 35 + 40 + 14 + + + + + 1 + + + text #94 + b + 205 + 25 + 60 + 14 + + + + + 1 + + + text #97 + c + 270 + 25 + 60 + 14 + + + + + 1 + + + text #100 + alpha + 335 + 25 + 60 + 14 + + + + + 1 + + + text #103 + beta + 400 + 25 + 60 + 14 + + + + + 1 + + + text #106 + gamma + 465 + 25 + 60 + 14 + + + + + 1 + + + text #109 + a + 140 + 25 + 60 + 14 + + + + + 1 + + + text entry #112 + $(P)orient$(O):xtal_1.STR1 + 35 + 55 + 16 + + + + + + + + + 1 + false + false + + + text entry #116 + $(P)orient$(O):xtal_1.DO3 + 205 + 55 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #120 + $(P)orient$(O):xtal_1.DO4 + 270 + 55 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #124 + $(P)orient$(O):xtal_1.DO5 + 335 + 55 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #128 + $(P)orient$(O):xtal_1.DO6 + 400 + 55 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #132 + $(P)orient$(O):xtal_1.DO7 + 465 + 55 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #136 + $(P)orient$(O):xtal_1.DO2 + 140 + 55 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #140 + $(P)orient$(O):xtal_2.STR1 + 35 + 75 + 16 + + + + + + + + + 1 + false + false + + + text entry #144 + $(P)orient$(O):xtal_2.DO3 + 205 + 75 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #148 + $(P)orient$(O):xtal_2.DO4 + 270 + 75 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #152 + $(P)orient$(O):xtal_2.DO5 + 335 + 75 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #156 + $(P)orient$(O):xtal_2.DO6 + 400 + 75 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #160 + $(P)orient$(O):xtal_2.DO7 + 465 + 75 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #164 + $(P)orient$(O):xtal_2.DO2 + 140 + 75 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #168 + $(P)orient$(O):xtal_3.STR1 + 35 + 95 + 16 + + + + + + + + + 1 + false + false + + + text entry #172 + $(P)orient$(O):xtal_3.DO3 + 205 + 95 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #176 + $(P)orient$(O):xtal_3.DO4 + 270 + 95 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #180 + $(P)orient$(O):xtal_3.DO5 + 335 + 95 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #184 + $(P)orient$(O):xtal_3.DO6 + 400 + 95 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #188 + $(P)orient$(O):xtal_3.DO7 + 465 + 95 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #192 + $(P)orient$(O):xtal_3.DO2 + 140 + 95 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #196 + $(P)orient$(O):xtal_4.STR1 + 35 + 115 + 16 + + + + + + + + + 1 + false + false + + + text entry #200 + $(P)orient$(O):xtal_4.DO3 + 205 + 115 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #204 + $(P)orient$(O):xtal_4.DO4 + 270 + 115 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #208 + $(P)orient$(O):xtal_4.DO5 + 335 + 115 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #212 + $(P)orient$(O):xtal_4.DO6 + 400 + 115 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #216 + $(P)orient$(O):xtal_4.DO7 + 465 + 115 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #220 + $(P)orient$(O):xtal_4.DO2 + 140 + 115 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #224 + $(P)orient$(O):xtal_5.STR1 + 35 + 135 + 16 + + + + + + + + + 1 + false + false + + + text entry #228 + $(P)orient$(O):xtal_5.DO3 + 205 + 135 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #232 + $(P)orient$(O):xtal_5.DO4 + 270 + 135 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #236 + $(P)orient$(O):xtal_5.DO5 + 335 + 135 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #240 + $(P)orient$(O):xtal_5.DO6 + 400 + 135 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #244 + $(P)orient$(O):xtal_5.DO7 + 465 + 135 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #248 + $(P)orient$(O):xtal_5.DO2 + 140 + 135 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #252 + $(P)orient$(O):xtal_6.STR1 + 35 + 155 + 16 + + + + + + + + + 1 + false + false + + + text entry #256 + $(P)orient$(O):xtal_6.DO3 + 205 + 155 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #260 + $(P)orient$(O):xtal_6.DO4 + 270 + 155 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #264 + $(P)orient$(O):xtal_6.DO5 + 335 + 155 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #268 + $(P)orient$(O):xtal_6.DO6 + 400 + 155 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #272 + $(P)orient$(O):xtal_6.DO7 + 465 + 155 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #276 + $(P)orient$(O):xtal_6.DO2 + 140 + 155 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #280 + $(P)orient$(O):xtal_8.STR1 + 35 + 195 + 16 + + + + + + + + + 1 + false + false + + + text entry #284 + $(P)orient$(O):xtal_8.DO3 + 205 + 195 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #288 + $(P)orient$(O):xtal_8.DO4 + 270 + 195 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #292 + $(P)orient$(O):xtal_8.DO5 + 335 + 195 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #296 + $(P)orient$(O):xtal_8.DO6 + 400 + 195 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #300 + $(P)orient$(O):xtal_8.DO7 + 465 + 195 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #304 + $(P)orient$(O):xtal_8.DO2 + 140 + 195 + 60 + 16 + + + + + + + + + 1 + false + false + + + rectangle #308 + 560 + + + + + + + + + + + text #311 + Diffractometer $(P)orient$(O) crystals + 560 + + + + + 1 + + + rectangle #314 + 20 + 560 + 3 + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/orient_full.bob b/opticsApp/op/bob/autoconvert/orient_full.bob new file mode 100644 index 0000000..56b1220 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/orient_full.bob @@ -0,0 +1,3171 @@ + + + orient_full + 756 + 440 + 550 + 565 + + + + + false + 5 + + text #6 + a + 13 + 458 + 10 + + + + + true + + + text #9 + b + 13 + 478 + 10 + + + + + true + + + text entry #12 + $(P)orient$(O):a + 28 + 457 + 50 + + + + + + + + + 1 + false + false + + + text entry #16 + $(P)orient$(O):b + 28 + 477 + 50 + + + + + + + + + 1 + false + false + + + text #20 + Lattice parameters + 13 + 418 + 190 + 14 + 1 + + + text #23 + c + 13 + 498 + 10 + + + + + true + + + text entry #26 + $(P)orient$(O):c + 28 + 497 + 50 + + + + + + + + + 1 + false + false + + + text #30 + A0 + 283 + 436 + 240 + + + + + 1 + + + related display #33 + + + orient_XTALs.opi + tab + crystals + + + XTALS + 13 + 434 + 45 + 20 + + + + + + + + + + + text entry #36 + $(P)orient$(O):XTAL + 60 + 434 + 165 + 18 + + + + + + + + + 6 + false + false + + + menu #40 + $(P)orient$(O):Debug + 330 + 533 + 60 + 20 + + + + + false + + + text #43 + debug + 285 + 537 + 40 + 14 + true + + + rectangle #46 + 309 + 450 + 217 + 67 + + + + + + + + + true + + + + false + + $(P)orient$(O):A0_state + + + + + text #50 + alpha + 100 + 458 + 50 + + + + + true + + + text #53 + beta + 100 + 478 + 50 + + + + + true + + + text #56 + gamma + 100 + 498 + 50 + + + + + true + + + text #59 + A + 78 + 460 + 10 + + + + + true + + + text #62 + o + 80 + 455 + 10 + 10 + + + + + true + + + text #65 + A + 78 + 480 + 10 + + + + + true + + + text #68 + o + 80 + 475 + 10 + 10 + + + + + true + + + text #71 + A + 78 + 500 + 10 + + + + + true + + + text #74 + o + 80 + 495 + 10 + 10 + + + + + true + + + rectangle #77 + 550 + + + + + + + + + + + rectangle #80 + 20 + 550 + 3 + + + + + + + + + + + text #83 + Diffractometer $(P)orient$(O) + 550 + + + + + 1 + + + related display #86 + + + orient.opi + replace + HKL, Angles, Motors + + + Less + 450 + 540 + 50 + 20 + + + + + + + + + + + related display #89 + + + motor4x.opi + + $(mTTH) + $(mTH) + $(mCHI) + $(mPHI) +

$(PM)

+
+ tab + Motors +
+
+ Motors + 500 + 540 + 50 + 20 + + + + + + + + +
+ + rectangle #92 + 70 + 258 + 406 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):refGet1 + $(P)orient$(O):refPut1 + + + + + rectangle #96 + 70 + 284 + 406 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):refGet2 + $(P)orient$(O):refPut2 + + + + + text #100 + TTH + 174 + 243 + 75 + 14 + 1 + + + text #103 + TH + 249 + 243 + 75 + 14 + 1 + + + text #106 + CHI + 324 + 243 + 75 + 14 + 1 + + + text #109 + PHI + 399 + 243 + 75 + 14 + 1 + + + text entry #112 + $(P)orient$(O):TTH1 + 174 + 260 + 75 + + + + + + + + + 1 + false + false + + + text entry #116 + $(P)orient$(O):TH1 + 249 + 260 + 75 + + + + + + + + + 1 + false + false + + + text entry #120 + $(P)orient$(O):CHI1 + 324 + 260 + 75 + + + + + + + + + 1 + false + false + + + text entry #124 + $(P)orient$(O):PHI1 + 399 + 260 + 75 + + + + + + + + + 1 + false + false + + + text #128 + = + 163 + 262 + 10 + + + + + 1 + + + text #131 + ^ + 163 + 259 + 10 + + + + + 1 + + + message button #134 + + + $(P)orient$(O):refGet1 + 1 + Write + + + $(P)orient$(O):refGet1 + Get + 478 + 260 + 30 + 20 + + + + + + + message button #137 + + + $(P)orient$(O):refPut1 + 1 + Write + + + $(P)orient$(O):refPut1 + Put + 509 + 260 + 30 + 20 + + + + + + + text entry #140 + $(P)orient$(O):TTH2 + 174 + 286 + 75 + + + + + + + + + 1 + false + false + + + text entry #144 + $(P)orient$(O):TH2 + 249 + 286 + 75 + + + + + + + + + 1 + false + false + + + text entry #148 + $(P)orient$(O):CHI2 + 324 + 286 + 75 + + + + + + + + + 1 + false + false + + + text entry #152 + $(P)orient$(O):PHI2 + 399 + 286 + 75 + + + + + + + + + 1 + false + false + + + text #156 + = + 163 + 288 + 10 + + + + + 1 + + + text #159 + ^ + 163 + 285 + 10 + + + + + 1 + + + message button #162 + + + $(P)orient$(O):refGet2 + 1 + Write + + + $(P)orient$(O):refGet2 + Get + 478 + 285 + 30 + 20 + + + + + + + message button #165 + + + $(P)orient$(O):refPut2 + 1 + Write + + + $(P)orient$(O):refPut2 + Put + 509 + 285 + 30 + 20 + + + + + + + text entry #168 + $(P)orient$(O):L1 + 132 + 260 + 30 + + + + + + + + + 1 + false + false + + + text #172 + L + 132 + 243 + 30 + 14 + 1 + + + text entry #175 + $(P)orient$(O):L2 + 132 + 286 + 30 + + + + + + + + + 1 + false + false + + + text #179 + K + 102 + 243 + 30 + 14 + 1 + + + text entry #182 + $(P)orient$(O):K1 + 102 + 260 + 30 + + + + + + + + + 1 + false + false + + + text entry #186 + $(P)orient$(O):K2 + 102 + 286 + 30 + + + + + + + + + 1 + false + false + + + text #190 + H + 72 + 243 + 30 + 14 + 1 + + + text entry #193 + $(P)orient$(O):H1 + 72 + 260 + 30 + + + + + + + + + 1 + false + false + + + text entry #197 + $(P)orient$(O):H2 + 72 + 286 + 30 + + + + + + + + + 1 + false + false + + + polygon #201 + 167 + 229 + 20 + 4 + + + + + + + + + + + + + + + + + + + + + + false + + $(P)orient$(O):refGet1 + $(P)orient$(O):refGet2 + + + + + polygon #206 + 157 + 229 + 20 + 4 + + + + + + + + + + + + + + + + + + + + + + false + + $(P)orient$(O):refPut1 + $(P)orient$(O):refPut2 + + + + + message button #211 + + + $(P)orient$(O):OMTX_Calc + 1 + Write + + + $(P)orient$(O):OMTX_Calc + Calc OMTX + 182 + 340 + 90 + 20 + + + + + + + rectangle #214 + 305 + 332 + 217 + 67 + + + + + + + + + true + + + + false + + $(P)orient$(O):OMTX_state + + + + + text #218 + OM + 279 + 318 + 240 + + + + + 1 + + + text update #221 + $(P)orient$(O):H_RBV + 26 + 57 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + + text #225 + L + 10 + 191 + 10 + + + + + true + + + text entry #228 + $(P)orient$(O):L + 25 + 190 + 80 + + + + + + + + + 1 + false + false + + + rectangle #232 + 23 + 188 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):L_busy + + + + + message button #236 + + + $(P)orient$(O):L_tweak.A + 1 + Write + + + $(P)orient$(O):L_tweak.A + + + 85 + 210 + 20 + 20 + + + + + + + message button #239 + + + $(P)orient$(O):L_tweak.B + 1 + Write + + + $(P)orient$(O):L_tweak.B + - + 25 + 210 + 20 + 20 + + + + + + + text entry #242 + $(P)orient$(O):L_tweak.C + 45 + 212 + 40 + 18 + + + + + + + + + 1 + false + false + + + text update #246 + $(P)orient$(O):L_RBV + 26 + 174 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + + text #250 + K + 10 + 131 + 10 + + + + + true + + + text entry #253 + $(P)orient$(O):K + 25 + 130 + 80 + + + + + + + + + 1 + false + false + + + rectangle #257 + 23 + 128 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):K_busy + + + + + message button #261 + + + $(P)orient$(O):K_tweak.A + 1 + Write + + + $(P)orient$(O):K_tweak.A + + + 85 + 150 + 20 + 20 + + + + + + + message button #264 + + + $(P)orient$(O):K_tweak.B + 1 + Write + + + $(P)orient$(O):K_tweak.B + - + 25 + 150 + 20 + 20 + + + + + + + text entry #267 + $(P)orient$(O):K_tweak.C + 45 + 152 + 40 + 18 + + + + + + + + + 1 + false + false + + + text update #271 + $(P)orient$(O):K_RBV + 26 + 114 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + + message button #275 + + + $(P)orient$(O):H_tweak.A + 1 + Write + + + $(P)orient$(O):H_tweak.A + + + 85 + 92 + 20 + 20 + + + + + + + message button #278 + + + $(P)orient$(O):H_tweak.B + 1 + Write + + + $(P)orient$(O):H_tweak.B + - + 25 + 92 + 20 + 20 + + + + + + + text entry #281 + $(P)orient$(O):H_tweak.C + 45 + 94 + 40 + 18 + + + + + + + + + 1 + false + false + + + text entry #285 + $(P)orient$(O):H + 25 + 72 + 80 + + + + + + + + + 1 + false + false + + + text #289 + H + 10 + 73 + 10 + + + + + true + + + rectangle #292 + 23 + 70 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):H_busy + + + + + text #296 + PRIMARY + 10 + 258 + 55 + 10 + + + + + true + + + text #299 + REFLECTION + 10 + 268 + 55 + 10 + + + + + true + + + text #302 + SECONDARY + 10 + 286 + 55 + 10 + + + + + true + + + text #305 + REFLECTION + 10 + 296 + 55 + 10 + + + + + true + + + text #308 + errAngle: + 118 + 362 + 60 + 14 + 1 + + + text update #311 + $(P)orient$(O):errAngle + 182 + 362 + 90 + 14 + + + + + + + + + 1 + false + false + + + text #315 + maxErr: + 118 + 380 + 60 + 14 + 1 + + + text entry #318 + $(P)orient$(O):errAngleThresh + 182 + 378 + 90 + + + + + + + + + 1 + false + false + + + message button #322 + + + $(P)orient$(O):OperAck + 1 + Write + + + $(P)orient$(O):OperAck + Erase + 495 + 24 + 45 + 20 + + + + + + + rectangle #325 + 10 + 22 + 485 + 22 + + + + + + + + + true + + + + false + + $(P)orient$(O):Alert + + + + + text update #329 + $(P)orient$(O):Msg + 15 + 27 + 475 + 14 + + + + + + + + + 1 + false + false + + + text entry #333 + $(P)orient$(O):OMTX_12 + 379 + 336 + 70 + + + + + + + + + 1 + false + false + + + text entry #337 + $(P)orient$(O):OMTX_22 + 379 + 356 + 70 + + + + + + + + + 1 + false + false + + + text entry #341 + $(P)orient$(O):OMTX_32 + 379 + 376 + 70 + + + + + + + + + 1 + false + false + + + text entry #345 + $(P)orient$(O):OMTX_13 + 449 + 336 + 70 + + + + + + + + + 1 + false + false + + + text entry #349 + $(P)orient$(O):OMTX_23 + 449 + 356 + 70 + + + + + + + + + 1 + false + false + + + text entry #353 + $(P)orient$(O):OMTX_33 + 449 + 376 + 70 + + + + + + + + + 1 + false + false + + + text entry #357 + $(P)orient$(O):OMTX_11 + 309 + 336 + 70 + + + + + + + + + 1 + false + false + + + text entry #361 + $(P)orient$(O):OMTX_21 + 309 + 356 + 70 + + + + + + + + + 1 + false + false + + + text entry #365 + $(P)orient$(O):OMTX_31 + 309 + 376 + 70 + + + + + + + + + 1 + false + false + + + text entry #369 + $(P)orient$(O):A0_11 + 313 + 454 + 70 + + + + + + + + + 1 + false + false + + + text entry #373 + $(P)orient$(O):A0_21 + 313 + 474 + 70 + + + + + + + + + 1 + false + false + + + text entry #377 + $(P)orient$(O):A0_31 + 313 + 494 + 70 + + + + + + + + + 1 + false + false + + + text entry #381 + $(P)orient$(O):A0_12 + 383 + 454 + 70 + + + + + + + + + 1 + false + false + + + text entry #385 + $(P)orient$(O):A0_22 + 383 + 474 + 70 + + + + + + + + + 1 + false + false + + + text entry #389 + $(P)orient$(O):A0_32 + 383 + 494 + 70 + + + + + + + + + 1 + false + false + + + text entry #393 + $(P)orient$(O):A0_13 + 453 + 454 + 70 + + + + + + + + + 1 + false + false + + + text entry #397 + $(P)orient$(O):A0_23 + 453 + 474 + 70 + + + + + + + + + 1 + false + false + + + text entry #401 + $(P)orient$(O):A0_33 + 453 + 494 + 70 + + + + + + + + + 1 + false + false + + + text #405 + o + 228 + 457 + 10 + 10 + + + + + true + + + text #408 + o + 228 + 478 + 10 + 10 + + + + + true + + + text #411 + o + 228 + 498 + 10 + 10 + + + + + true + + + text entry #414 + $(P)orient$(O):alpha + 155 + 457 + 70 + + + + + + + + + 1 + false + false + + + text entry #418 + $(P)orient$(O):beta + 155 + 477 + 70 + + + + + + + + + 1 + false + false + + + text entry #422 + $(P)orient$(O):gamma + 155 + 497 + 70 + + + + + + + + + 1 + false + false + + + polyline #426 + 246 + 482 + 31 + 6 + 6 + + + + + + + + + + + + + polygon #430 + 273 + 475 + 20 + 1 + + + + + + + + + + + + + + + + + + + + + + + text #434 + AUTO + 254 + 461 + 30 + 14 + 1 + + + text #437 + Wavelength: + 13 + 522 + 75 + 14 + 1 + + + text entry #440 + $(P)orient$(O):lambda + 94 + 521 + 70 + + + + + + + + + 1 + false + false + + + text #444 + A + 165 + 523 + 10 + + + + + true + + + text #447 + o + 167 + 518 + 10 + 10 + + + + + true + + + text #450 + Energy: + 13 + 542 + 75 + 14 + 1 + + + text entry #453 + $(P)orient$(O):energy + 94 + 541 + 70 + + + + + + + + + 1 + false + false + + + text #457 + keV + 165 + 543 + 10 + + + + + true + + + message button #460 + + + $(P)orient$(O):stopMotors + 1 + Write + + + $(P)orient$(O):stopMotors + Stop Motors + 299 + 203 + 120 + 28 + + + + + + + + + + + menu #463 + $(P)orient$(O):Busy + 335 + 62 + 50 + 20 + + + + + false + + + polyline #466 + 307 + 118 + 99 + 6 + 6 + + + + + + + + + + + + + + false + + $(P)orient$(O):motPut + $(P)orient$(O):motPut_Auto + + + + + polygon #471 + 397 + 108 + 23 + 26 + 1 + + + + + + + + + + + + + + + + + + + + + + false + + $(P)orient$(O):motPut + $(P)orient$(O):motPut_Auto + + + + + menu #476 + $(P)orient$(O):motPut_Auto + 333 + 97 + 55 + 14 + + + + + false + + + message button #479 + + + $(P)orient$(O):motPut + 1 + Write + + + $(P)orient$(O):motPut + Move + 333 + 111 + 55 + 20 + + + + + + + menu #482 + $(P)orient$(O):motGet_Auto + 333 + 154 + 55 + 14 + + + + + false + + + message button #485 + + + $(P)orient$(O):motGet + 1 + Write + + + $(P)orient$(O):motGet + Read + 333 + 168 + 55 + 20 + + + + + + + polyline #488 + 317 + 174 + 99 + 7 + 6 + + + + + + + + + + + + + + false + + $(P)orient$(O):motGet + $(P)orient$(O):motGet_Auto + + + + + polygon #493 + 305 + 165 + 23 + 26 + 1 + + + + + + + + + + + + + + + + + + + + + + false + + $(P)orient$(O):motGet + $(P)orient$(O):motGet_Auto + + + + + text #498 + HKL/ANGLE CONSTRAINT: + 181 + 66 + 120 + 10 + + + + + 1 + + + menu #501 + $(P)orient$(O):Mode + 181 + 77 + 120 + 20 + + + + + false + + + text entry #504 + $(P)orient$(O):TH + 213 + 129 + 80 + + + + + + + + + 1 + false + false + + + text entry #508 + $(P)orient$(O):CHI + 213 + 152 + 80 + + + + + + + + + 1 + false + false + + + text entry #512 + $(P)orient$(O):PHI + 213 + 175 + 80 + + + + + + + + + 1 + false + false + + + text #516 + TH + 180 + 130 + 30 + + + + + true + + + text #519 + CHI + 180 + 153 + 30 + + + + + true + + + text #522 + PHI + 180 + 176 + 30 + + + + + true + + + rectangle #525 + 210 + 128 + 85 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):TH_busy + + + + + rectangle #529 + 210 + 150 + 85 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):CHI_busy + + + + + rectangle #533 + 210 + 173 + 85 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):PHI_busy + + + + + text entry #537 + $(P)orient$(O):TTH + 213 + 106 + 80 + + + + + + + + + 1 + false + false + + + rectangle #541 + 210 + 104 + 85 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):TTH_busy + + + + + text #545 + TTH + 180 + 107 + 30 + + + + + true + + + text #548 + OM + 136 + 138 + 10 + 10 + + + + + 1 + + + text #551 + A0 + 136 + 149 + 10 + 10 + + + + + 1 + + + rectangle #554 + 132 + 135 + 20 + 25 + 2 + + + + + + + + + true + + + polygon #557 + 152 + 140 + 17 + 17 + 1 + + + + + + + + + + + + + + + + + + + + + + + polygon #561 + 115 + 140 + 17 + 17 + 1 + + + + + + + + + + + + + + + + + + + + + + + text #565 + AUTO + 128 + 117 + 30 + 14 + 1 + + + text update #568 + $(PM)$(mCHI).RBV + 457 + 133 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + + rectangle #572 + 455 + 147 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):motCHI_Connected + + + + + text entry #576 + $(PM)$(mCHI) + 457 + 149 + 80 + + + + + + + + + 1 + false + false + + + rectangle #580 + 455 + 147 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):waiting4motCHI + + + + + rectangle #584 + 455 + 107 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):motTH_Connected + + + + + rectangle #588 + 455 + 107 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):waiting4motTH + + + + + text update #592 + $(PM)$(mTH).RBV + 457 + 93 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + + text entry #596 + $(PM)$(mTH) + 457 + 109 + 80 + + + + + + + + + 1 + false + false + + + text update #600 + $(PM)$(mTTH).RBV + 457 + 53 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + + rectangle #604 + 455 + 67 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):motTTH_Connected + + + + + text entry #608 + $(PM)$(mTTH) + 457 + 69 + 80 + + + + + + + + + 1 + false + false + + + rectangle #612 + 455 + 67 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):waiting4motTTH + + + + + text #616 + Moving + 455 + 210 + 84 + + + + + + + + + 1 + + + + false + + $(P)orient$(O):waiting4Mot + + + + + text update #620 + $(PM)$(mPHI).RBV + 457 + 173 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + + rectangle #624 + 455 + 187 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):motPHI_Connected + + + + + text entry #628 + $(PM)$(mPHI) + 457 + 189 + 80 + + + + + + + + + 1 + false + false + + + rectangle #632 + 455 + 187 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):waiting4motPHI + + + + + text #636 + TTH + 425 + 70 + 30 + + + + + 1 + + + text #639 + TH + 425 + 110 + 30 + + + + + 1 + + + text #642 + CHI + 425 + 150 + 30 + + + + + 1 + + + text #645 + PHI + 425 + 190 + 30 + + + + + 1 + +
diff --git a/opticsApp/op/bob/autoconvert/orient_slave.bob b/opticsApp/op/bob/autoconvert/orient_slave.bob new file mode 100644 index 0000000..2bf0eb7 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/orient_slave.bob @@ -0,0 +1,721 @@ + + + orient_slave + 82 + 81 + 260 + 245 + + + + + false + 5 + + rectangle #6 + 250 + + + + + + + + + + + rectangle #9 + 20 + 250 + 3 + + + + + + + + + + + text #12 + $(P)orient$(O) + 250 + + + + + 1 + + + text #15 + CONSTRAINT: + 132 + 64 + 115 + 10 + + + + + 1 + + + menu #18 + $(P)orient$(O):Mode + 132 + 75 + 115 + 20 + + + + + false + + + text entry #21 + $(P)orient$(O):TTH + 164 + 99 + 80 + + + + + + + + + 1 + false + false + + + text entry #25 + $(P)orient$(O):TH + 164 + 122 + 80 + + + + + + + + + 1 + false + false + + + text entry #29 + $(P)orient$(O):CHI + 164 + 145 + 80 + + + + + + + + + 1 + false + false + + + text entry #33 + $(P)orient$(O):PHI + 164 + 168 + 80 + + + + + + + + + 1 + false + false + + + rectangle #37 + 161 + 97 + 85 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):TTH_busy + + + + + text #41 + TTH + 131 + 100 + 30 + + + + + 1 + + + text #44 + TH + 131 + 123 + 30 + + + + + 1 + + + text #47 + CHI + 131 + 146 + 30 + + + + + 1 + + + text #50 + PHI + 131 + 169 + 30 + + + + + 1 + + + rectangle #53 + 161 + 121 + 85 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):TH_busy + + + + + rectangle #57 + 161 + 143 + 85 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):CHI_busy + + + + + rectangle #61 + 161 + 166 + 85 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):PHI_busy + + + + + text update #65 + $(P)orient$(O):H_RBV + 26 + 46 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + + text #69 + L + 10 + 180 + 10 + + + + + true + + + text entry #72 + $(P)orient$(O):L + 25 + 179 + 80 + + + + + + + + + 1 + false + false + + + rectangle #76 + 23 + 177 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):L_busy + + + + + text update #80 + $(P)orient$(O):L_RBV + 26 + 163 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + + text #84 + K + 10 + 120 + 10 + + + + + true + + + text entry #87 + $(P)orient$(O):K + 25 + 119 + 80 + + + + + + + + + 1 + false + false + + + rectangle #91 + 23 + 117 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):K_busy + + + + + text update #95 + $(P)orient$(O):K_RBV + 26 + 103 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + + text entry #99 + $(P)orient$(O):H + 25 + 61 + 80 + + + + + + + + + 1 + false + false + + + text #103 + H + 10 + 62 + 10 + + + + + true + + + rectangle #106 + 23 + 59 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):H_busy + + + + + related display #110 + + + orient_slave_full.opi + replace + Everything + + + More + 220 + 223 + 40 + 20 + + + + + + + + + + + message button #113 + + + $(P)orient$(O):H_tweak.A + 1 + Write + + + $(P)orient$(O):H_tweak.A + + + 85 + 81 + 20 + 20 + + + + + + + message button #116 + + + $(P)orient$(O):H_tweak.B + 1 + Write + + + $(P)orient$(O):H_tweak.B + - + 25 + 81 + 20 + 20 + + + + + + + text entry #119 + $(P)orient$(O):H_tweak.C + 45 + 83 + 40 + 18 + + + + + + + + + 1 + false + false + + + message button #123 + + + $(P)orient$(O):L_tweak.A + 1 + Write + + + $(P)orient$(O):L_tweak.A + + + 85 + 199 + 20 + 20 + + + + + + + message button #126 + + + $(P)orient$(O):L_tweak.B + 1 + Write + + + $(P)orient$(O):L_tweak.B + - + 25 + 199 + 20 + 20 + + + + + + + text entry #129 + $(P)orient$(O):L_tweak.C + 45 + 201 + 40 + 18 + + + + + + + + + 1 + false + false + + + message button #133 + + + $(P)orient$(O):K_tweak.A + 1 + Write + + + $(P)orient$(O):K_tweak.A + + + 85 + 139 + 20 + 20 + + + + + + + message button #136 + + + $(P)orient$(O):K_tweak.B + 1 + Write + + + $(P)orient$(O):K_tweak.B + - + 25 + 139 + 20 + 20 + + + + + + + text entry #139 + $(P)orient$(O):K_tweak.C + 45 + 141 + 40 + 18 + + + + + + + + + 1 + false + false + + diff --git a/opticsApp/op/bob/autoconvert/orient_slave_full.bob b/opticsApp/op/bob/autoconvert/orient_slave_full.bob new file mode 100644 index 0000000..34c56bb --- /dev/null +++ b/opticsApp/op/bob/autoconvert/orient_slave_full.bob @@ -0,0 +1,2490 @@ + + + orient_slave_full + 204 + 233 + 550 + 565 + + + + + false + 5 + + text #6 + a + 13 + 458 + 10 + + + + + true + + + text #9 + b + 13 + 478 + 10 + + + + + true + + + text entry #12 + $(P)orient$(O):a + 28 + 457 + 50 + + + + + + + + + 1 + false + false + + + text entry #16 + $(P)orient$(O):b + 28 + 477 + 50 + + + + + + + + + 1 + false + false + + + text #20 + Lattice parameters + 13 + 418 + 190 + 14 + 1 + + + text #23 + c + 13 + 498 + 10 + + + + + true + + + text entry #26 + $(P)orient$(O):c + 28 + 497 + 50 + + + + + + + + + 1 + false + false + + + text #30 + A0 + 283 + 436 + 240 + + + + + 1 + + + related display #33 + + + orient_XTALs.opi + tab + crystals + + + XTALS + 13 + 434 + 45 + 20 + + + + + + + + + + + text entry #36 + $(P)orient$(O):XTAL + 60 + 434 + 165 + 18 + + + + + + + + + 6 + false + false + + + menu #40 + $(P)orient$(O):Debug + 330 + 533 + 60 + 20 + + + + + false + + + text #43 + debug + 285 + 537 + 40 + 14 + true + + + rectangle #46 + 309 + 450 + 217 + 67 + + + + + + + + + true + + + + false + + $(P)orient$(O):A0_state + + + + + text #50 + alpha + 100 + 458 + 50 + + + + + true + + + text #53 + beta + 100 + 478 + 50 + + + + + true + + + text #56 + gamma + 100 + 498 + 50 + + + + + true + + + text #59 + A + 78 + 460 + 10 + + + + + true + + + text #62 + o + 80 + 455 + 10 + 10 + + + + + true + + + text #65 + A + 78 + 480 + 10 + + + + + true + + + text #68 + o + 80 + 475 + 10 + 10 + + + + + true + + + text #71 + A + 78 + 500 + 10 + + + + + true + + + text #74 + o + 80 + 495 + 10 + 10 + + + + + true + + + rectangle #77 + 550 + + + + + + + + + + + rectangle #80 + 20 + 550 + 3 + + + + + + + + + + + text #83 + Diffractometer $(P)orient$(O) + 550 + + + + + 1 + + + related display #86 + + + orient_slave.opi + replace + HKL, Angles, etc. + + + Less + 499 + 544 + 50 + 20 + + + + + + + + + + + rectangle #89 + 70 + 258 + 406 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):refGet1 + $(P)orient$(O):refPut1 + + + + + rectangle #93 + 70 + 284 + 406 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):refGet2 + $(P)orient$(O):refPut2 + + + + + text #97 + TTH + 174 + 243 + 75 + 14 + 1 + + + text #100 + TH + 249 + 243 + 75 + 14 + 1 + + + text #103 + CHI + 324 + 243 + 75 + 14 + 1 + + + text #106 + PHI + 399 + 243 + 75 + 14 + 1 + + + text entry #109 + $(P)orient$(O):TTH1 + 174 + 260 + 75 + + + + + + + + + 1 + false + false + + + text entry #113 + $(P)orient$(O):TH1 + 249 + 260 + 75 + + + + + + + + + 1 + false + false + + + text entry #117 + $(P)orient$(O):CHI1 + 324 + 260 + 75 + + + + + + + + + 1 + false + false + + + text entry #121 + $(P)orient$(O):PHI1 + 399 + 260 + 75 + + + + + + + + + 1 + false + false + + + text #125 + = + 163 + 262 + 10 + + + + + 1 + + + text #128 + ^ + 163 + 259 + 10 + + + + + 1 + + + message button #131 + + + $(P)orient$(O):refGet1 + 1 + Write + + + $(P)orient$(O):refGet1 + Get + 478 + 260 + 30 + 20 + + + + + + + message button #134 + + + $(P)orient$(O):refPut1 + 1 + Write + + + $(P)orient$(O):refPut1 + Put + 509 + 260 + 30 + 20 + + + + + + + text entry #137 + $(P)orient$(O):TTH2 + 174 + 286 + 75 + + + + + + + + + 1 + false + false + + + text entry #141 + $(P)orient$(O):TH2 + 249 + 286 + 75 + + + + + + + + + 1 + false + false + + + text entry #145 + $(P)orient$(O):CHI2 + 324 + 286 + 75 + + + + + + + + + 1 + false + false + + + text entry #149 + $(P)orient$(O):PHI2 + 399 + 286 + 75 + + + + + + + + + 1 + false + false + + + text #153 + = + 163 + 288 + 10 + + + + + 1 + + + text #156 + ^ + 163 + 285 + 10 + + + + + 1 + + + message button #159 + + + $(P)orient$(O):refGet2 + 1 + Write + + + $(P)orient$(O):refGet2 + Get + 478 + 285 + 30 + 20 + + + + + + + message button #162 + + + $(P)orient$(O):refPut2 + 1 + Write + + + $(P)orient$(O):refPut2 + Put + 509 + 285 + 30 + 20 + + + + + + + text entry #165 + $(P)orient$(O):L1 + 132 + 260 + 30 + + + + + + + + + 1 + false + false + + + text #169 + L + 132 + 243 + 30 + 14 + 1 + + + text entry #172 + $(P)orient$(O):L2 + 132 + 286 + 30 + + + + + + + + + 1 + false + false + + + text #176 + K + 102 + 243 + 30 + 14 + 1 + + + text entry #179 + $(P)orient$(O):K1 + 102 + 260 + 30 + + + + + + + + + 1 + false + false + + + text entry #183 + $(P)orient$(O):K2 + 102 + 286 + 30 + + + + + + + + + 1 + false + false + + + text #187 + H + 72 + 243 + 30 + 14 + 1 + + + text entry #190 + $(P)orient$(O):H1 + 72 + 260 + 30 + + + + + + + + + 1 + false + false + + + text entry #194 + $(P)orient$(O):H2 + 72 + 286 + 30 + + + + + + + + + 1 + false + false + + + polygon #198 + 167 + 229 + 20 + 4 + + + + + + + + + + + + + + + + + + + + + + false + + $(P)orient$(O):refGet1 + $(P)orient$(O):refGet2 + + + + + polygon #203 + 157 + 229 + 20 + 4 + + + + + + + + + + + + + + + + + + + + + + false + + $(P)orient$(O):refPut1 + $(P)orient$(O):refPut2 + + + + + message button #208 + + + $(P)orient$(O):OMTX_Calc + 1 + Write + + + $(P)orient$(O):OMTX_Calc + Calc OMTX + 182 + 340 + 90 + 20 + + + + + + + rectangle #211 + 305 + 332 + 217 + 67 + + + + + + + + + true + + + + false + + $(P)orient$(O):OMTX_state + + + + + text #215 + OM + 279 + 318 + 240 + + + + + 1 + + + text update #218 + $(P)orient$(O):H_RBV + 26 + 57 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + + text #222 + L + 10 + 191 + 10 + + + + + true + + + text entry #225 + $(P)orient$(O):L + 25 + 190 + 80 + + + + + + + + + 1 + false + false + + + rectangle #229 + 23 + 188 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):L_busy + + + + + message button #233 + + + $(P)orient$(O):L_tweak.A + 1 + Write + + + $(P)orient$(O):L_tweak.A + + + 85 + 210 + 20 + 20 + + + + + + + message button #236 + + + $(P)orient$(O):L_tweak.B + 1 + Write + + + $(P)orient$(O):L_tweak.B + - + 25 + 210 + 20 + 20 + + + + + + + text entry #239 + $(P)orient$(O):L_tweak.C + 45 + 212 + 40 + 18 + + + + + + + + + 1 + false + false + + + text update #243 + $(P)orient$(O):L_RBV + 26 + 174 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + + text #247 + K + 10 + 131 + 10 + + + + + true + + + text entry #250 + $(P)orient$(O):K + 25 + 130 + 80 + + + + + + + + + 1 + false + false + + + rectangle #254 + 23 + 128 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):K_busy + + + + + message button #258 + + + $(P)orient$(O):K_tweak.A + 1 + Write + + + $(P)orient$(O):K_tweak.A + + + 85 + 150 + 20 + 20 + + + + + + + message button #261 + + + $(P)orient$(O):K_tweak.B + 1 + Write + + + $(P)orient$(O):K_tweak.B + - + 25 + 150 + 20 + 20 + + + + + + + text entry #264 + $(P)orient$(O):K_tweak.C + 45 + 152 + 40 + 18 + + + + + + + + + 1 + false + false + + + text update #268 + $(P)orient$(O):K_RBV + 26 + 114 + 80 + 14 + + + + + + + + + 1 + false + 1 + false + + + message button #272 + + + $(P)orient$(O):H_tweak.A + 1 + Write + + + $(P)orient$(O):H_tweak.A + + + 85 + 92 + 20 + 20 + + + + + + + message button #275 + + + $(P)orient$(O):H_tweak.B + 1 + Write + + + $(P)orient$(O):H_tweak.B + - + 25 + 92 + 20 + 20 + + + + + + + text entry #278 + $(P)orient$(O):H_tweak.C + 45 + 94 + 40 + 18 + + + + + + + + + 1 + false + false + + + text entry #282 + $(P)orient$(O):H + 25 + 72 + 80 + + + + + + + + + 1 + false + false + + + text #286 + H + 10 + 73 + 10 + + + + + true + + + rectangle #289 + 23 + 70 + 84 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):H_busy + + + + + text #293 + PRIMARY + 10 + 258 + 55 + 10 + + + + + true + + + text #296 + REFLECTION + 10 + 268 + 55 + 10 + + + + + true + + + text #299 + SECONDARY + 10 + 286 + 55 + 10 + + + + + true + + + text #302 + REFLECTION + 10 + 296 + 55 + 10 + + + + + true + + + text #305 + errAngle: + 118 + 362 + 60 + 14 + 1 + + + text update #308 + $(P)orient$(O):errAngle + 182 + 362 + 90 + 14 + + + + + + + + + 1 + false + false + + + text #312 + maxErr: + 118 + 380 + 60 + 14 + 1 + + + text entry #315 + $(P)orient$(O):errAngleThresh + 182 + 378 + 90 + + + + + + + + + 1 + false + false + + + message button #319 + + + $(P)orient$(O):OperAck + 1 + Write + + + $(P)orient$(O):OperAck + Erase + 495 + 24 + 45 + 20 + + + + + + + rectangle #322 + 10 + 22 + 485 + 22 + + + + + + + + + true + + + + false + + $(P)orient$(O):Alert + + + + + text update #326 + $(P)orient$(O):Msg + 15 + 27 + 475 + 14 + + + + + + + + + 1 + false + false + + + text entry #330 + $(P)orient$(O):OMTX_12 + 379 + 336 + 70 + + + + + + + + + 1 + false + false + + + text entry #334 + $(P)orient$(O):OMTX_22 + 379 + 356 + 70 + + + + + + + + + 1 + false + false + + + text entry #338 + $(P)orient$(O):OMTX_32 + 379 + 376 + 70 + + + + + + + + + 1 + false + false + + + text entry #342 + $(P)orient$(O):OMTX_13 + 449 + 336 + 70 + + + + + + + + + 1 + false + false + + + text entry #346 + $(P)orient$(O):OMTX_23 + 449 + 356 + 70 + + + + + + + + + 1 + false + false + + + text entry #350 + $(P)orient$(O):OMTX_33 + 449 + 376 + 70 + + + + + + + + + 1 + false + false + + + text entry #354 + $(P)orient$(O):OMTX_11 + 309 + 336 + 70 + + + + + + + + + 1 + false + false + + + text entry #358 + $(P)orient$(O):OMTX_21 + 309 + 356 + 70 + + + + + + + + + 1 + false + false + + + text entry #362 + $(P)orient$(O):OMTX_31 + 309 + 376 + 70 + + + + + + + + + 1 + false + false + + + text entry #366 + $(P)orient$(O):A0_11 + 313 + 454 + 70 + + + + + + + + + 1 + false + false + + + text entry #370 + $(P)orient$(O):A0_21 + 313 + 474 + 70 + + + + + + + + + 1 + false + false + + + text entry #374 + $(P)orient$(O):A0_31 + 313 + 494 + 70 + + + + + + + + + 1 + false + false + + + text entry #378 + $(P)orient$(O):A0_12 + 383 + 454 + 70 + + + + + + + + + 1 + false + false + + + text entry #382 + $(P)orient$(O):A0_22 + 383 + 474 + 70 + + + + + + + + + 1 + false + false + + + text entry #386 + $(P)orient$(O):A0_32 + 383 + 494 + 70 + + + + + + + + + 1 + false + false + + + text entry #390 + $(P)orient$(O):A0_13 + 453 + 454 + 70 + + + + + + + + + 1 + false + false + + + text entry #394 + $(P)orient$(O):A0_23 + 453 + 474 + 70 + + + + + + + + + 1 + false + false + + + text entry #398 + $(P)orient$(O):A0_33 + 453 + 494 + 70 + + + + + + + + + 1 + false + false + + + text #402 + o + 228 + 457 + 10 + 10 + + + + + true + + + text #405 + o + 228 + 478 + 10 + 10 + + + + + true + + + text #408 + o + 228 + 498 + 10 + 10 + + + + + true + + + text entry #411 + $(P)orient$(O):alpha + 155 + 457 + 70 + + + + + + + + + 1 + false + false + + + text entry #415 + $(P)orient$(O):beta + 155 + 477 + 70 + + + + + + + + + 1 + false + false + + + text entry #419 + $(P)orient$(O):gamma + 155 + 497 + 70 + + + + + + + + + 1 + false + false + + + polyline #423 + 246 + 482 + 31 + 6 + 6 + + + + + + + + + + + + + polygon #427 + 273 + 475 + 20 + 1 + + + + + + + + + + + + + + + + + + + + + + + text #431 + AUTO + 254 + 461 + 30 + 14 + 1 + + + text #434 + Wavelength: + 13 + 522 + 75 + 14 + 1 + + + text entry #437 + $(P)orient$(O):lambda + 94 + 521 + 70 + + + + + + + + + 1 + false + false + + + text #441 + A + 165 + 523 + 10 + + + + + true + + + text #444 + o + 167 + 518 + 10 + 10 + + + + + true + + + text #447 + Energy: + 13 + 542 + 75 + 14 + 1 + + + text entry #450 + $(P)orient$(O):energy + 94 + 541 + 70 + + + + + + + + + 1 + false + false + + + text #454 + keV + 165 + 543 + 10 + + + + + true + + + text #457 + HKL/ANGLE CONSTRAINT: + 181 + 66 + 120 + 10 + + + + + 1 + + + menu #460 + $(P)orient$(O):Mode + 181 + 77 + 120 + 20 + + + + + false + + + text entry #463 + $(P)orient$(O):TH + 213 + 129 + 80 + + + + + + + + + 1 + false + false + + + text entry #467 + $(P)orient$(O):CHI + 213 + 152 + 80 + + + + + + + + + 1 + false + false + + + text entry #471 + $(P)orient$(O):PHI + 213 + 175 + 80 + + + + + + + + + 1 + false + false + + + text #475 + TH + 180 + 130 + 30 + + + + + true + + + text #478 + CHI + 180 + 153 + 30 + + + + + true + + + text #481 + PHI + 180 + 176 + 30 + + + + + true + + + rectangle #484 + 210 + 128 + 85 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):TH_busy + + + + + rectangle #488 + 210 + 150 + 85 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):CHI_busy + + + + + rectangle #492 + 210 + 173 + 85 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):PHI_busy + + + + + text entry #496 + $(P)orient$(O):TTH + 213 + 106 + 80 + + + + + + + + + 1 + false + false + + + rectangle #500 + 210 + 104 + 85 + 24 + 2 + + + + + + + + + true + + + + false + + $(P)orient$(O):TTH_busy + + + + + text #504 + TTH + 180 + 107 + 30 + + + + + true + + + text #507 + OM + 136 + 138 + 10 + 10 + + + + + 1 + + + text #510 + A0 + 136 + 149 + 10 + 10 + + + + + 1 + + + rectangle #513 + 132 + 135 + 20 + 25 + 2 + + + + + + + + + true + + + polygon #516 + 152 + 140 + 17 + 17 + 1 + + + + + + + + + + + + + + + + + + + + + + + polygon #520 + 115 + 140 + 17 + 17 + 1 + + + + + + + + + + + + + + + + + + + + + + + text #524 + AUTO + 128 + 117 + 30 + 14 + 1 + + diff --git a/opticsApp/op/bob/autoconvert/pf4.bob b/opticsApp/op/bob/autoconvert/pf4.bob new file mode 100644 index 0000000..900dc7e --- /dev/null +++ b/opticsApp/op/bob/autoconvert/pf4.bob @@ -0,0 +1,109 @@ + + + pf4 + 1194 + 346 + 325 + 215 + + + + + false + 5 + + rectangle #6 + 325 + 25 + + + + + + + + + + + text #9 + PF4 dual filter + 4 + 3 + 320 + + + + + 1 + + + related display #12 + + + pf4more.opi + replace + PF4 mono filter computed controls + + + more + 273 + 194 + 50 + 20 + + + + + + + + + + + related display #15 + + + pf4config.opi + replace + all + + + +config + 273 + 174 + 50 + 20 + + + + + + + + + + + polyline #18 + 22 + 326 + 3 + + + + + + + + + + + + + composite #22 + pf4_bare.bob + 5 + 25 + 305 + 189 + + diff --git a/opticsApp/op/bob/autoconvert/pf4Bank.bob b/opticsApp/op/bob/autoconvert/pf4Bank.bob new file mode 100644 index 0000000..ef6871d --- /dev/null +++ b/opticsApp/op/bob/autoconvert/pf4Bank.bob @@ -0,0 +1,130 @@ + + + pf4Bank + 1194 + 346 + 135 + 175 + + + + + false + 5 + + rectangle #6 + 135 + 25 + + + + + + + + + + + text #9 + PF4 filter + 130 + + + + + 1 + + + polyline #12 + 22 + 134 + 3 + + + + + + + + + + + + + text update #16 + $(P)$(H)trans$(A) + 5 + 135 + 125 + + + + + + + + + + + + + 2 + false + 1 + false + + + related display #20 + + + pf4Bankmore.opi + replace + PF4 mono filter computed controls + + + more + 85 + 155 + 50 + 20 + + + + + + + + + + + related display #23 + + + pf4Bankconfig.opi + replace + all + + + +config + 30 + 155 + 55 + 20 + + + + + + + + + + + composite #26 + pf4Bank_bare.bob + 5 + 25 + 125 + 130 + + diff --git a/opticsApp/op/bob/autoconvert/pf4Bank_bare.bob b/opticsApp/op/bob/autoconvert/pf4Bank_bare.bob new file mode 100644 index 0000000..73e9783 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/pf4Bank_bare.bob @@ -0,0 +1,497 @@ + + + pf4Bank_bare + 1039 + 692 + 125 + 135 + + + + + false + 5 + + text #6 + BEAM + 89 + 22 + 30 + 10 + + + + + + + + + true + + + text #9 + $(P)$(H)$(B) + 10 + + + + + 1 + + + rectangle #12 + 19 + 125 + 90 + 2 + + + + + + + + + true + + + text update #15 + $(P)$(H)trans$(B) + 110 + 125 + + + + + + + + + + + + + 2 + false + 1 + false + + + polyline #19 + 4 + 32 + 119 + 2 + 2 + + + + + + + + + + + + + polyline #23 + 3 + 26 + 13 + 13 + 2 + + + + + + + + + + + + + + + polygon #27 + 7 + 37 + 20 + 46 + 2 + + + + + + + + + + + + + + + + + + + + + + + + false + + $(P)$(H)displayBit4$(B) + + + + + polygon #32 + 37 + 37 + 20 + 46 + 2 + + + + + + + + + + + + + + + + + + + + + + + + false + + $(P)$(H)displayBit3$(B) + + + + + polygon #37 + 97 + 37 + 20 + 46 + 2 + + + + + + + + + + + + + + + + + + + + + + + + false + + $(P)$(H)displayBit1$(B) + + + + + polygon #42 + 67 + 37 + 20 + 46 + 2 + + + + + + + + + + + + + + + + + + + + + + + + false + + $(P)$(H)displayBit2$(B) + + + + + polygon #47 + 97 + 37 + 21 + 47 + 2 + + + + + + + + + + + + + + + + + + + + + + + + false + + $(P)$(H)displayBit1$(B) + + + + + polygon #52 + 67 + 37 + 21 + 47 + 2 + + + + + + + + + + + + + + + + + + + + + + + + false + + $(P)$(H)displayBit2$(B) + + + + + polygon #57 + 36 + 36 + 22 + 48 + 2 + + + + + + + + + + + + + + + + + + + + + + + + false + + $(P)$(H)displayBit3$(B) + + + + + polygon #62 + 7 + 37 + 21 + 47 + 2 + + + + + + + + + + + + + + + + + + + + + + + + false + + $(P)$(H)displayBit4$(B) + + + + + text #67 + 1 + 105 + 80 + 10 + 12 + + + + + true + + + text #70 + 2 + 75 + 80 + 10 + 12 + + + + + true + + + text #73 + 3 + 45 + 80 + 10 + 12 + + + + + true + + + text #76 + 4 + 15 + 80 + 10 + 12 + + + + + true + + + message button #79 + + + $(P)$(H)ftweak$(B).A + 1 + Write + + + $(P)$(H)ftweak$(B).A + + + 65 + 90 + 20 + 15 + + + + + + + message button #82 + + + $(P)$(H)ftweak$(B).B + 1 + Write + + + $(P)$(H)ftweak$(B).B + - + 45 + 90 + 20 + 15 + + + + + + diff --git a/opticsApp/op/bob/autoconvert/pf4Bankconfig.bob b/opticsApp/op/bob/autoconvert/pf4Bankconfig.bob new file mode 100644 index 0000000..dd70e0d --- /dev/null +++ b/opticsApp/op/bob/autoconvert/pf4Bankconfig.bob @@ -0,0 +1,132 @@ + + + pf4Bankconfig + 6 + 540 + 225 + 445 + + + + + false + 5 + + rectangle #6 + 225 + 25 + + + + + + + + + + + text #9 + PF4 filter + 4 + 3 + 220 + + + + + 1 + + + polyline #12 + 22 + 225 + 3 + + + + + + + + + + + + + composite #16 + pf4Bank_bare.bob + 50 + 25 + 125 + 130 + + + composite #18 + pf4Bankconfig_bare.bob + 188 + 225 + 249 + + + polyline #20 + 175 + 225 + 3 + + + + + + + + + + + + + related display #25 + + + pf4Bankmore.opi + replace + PF4 mono filter computed controls + + + more + 115 + 155 + 50 + 20 + + + + + + + + + + + related display #28 + + + pf4Bank.opi + replace + all + + + -config + 60 + 155 + 55 + 20 + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/pf4Bankconfig_bare.bob b/opticsApp/op/bob/autoconvert/pf4Bankconfig_bare.bob new file mode 100644 index 0000000..c8827db --- /dev/null +++ b/opticsApp/op/bob/autoconvert/pf4Bankconfig_bare.bob @@ -0,0 +1,567 @@ + + + pf4Bankconfig_bare + 950 + 581 + 225 + 250 + + + + + false + 5 + + text #6 + Be B C Al Si Ti Cr Mn Fe Co Ni + 5 + 220 + 195 + 14 + true + + + text #9 + Choices for filter material + 10 + 190 + 215 + 14 + true + + + text entry #12 + $(P)$(H)E:local + 108 + 26 + 90 + 25 + + + + + + + + + 1 + false + false + + + text #16 + keV + 200 + 30 + 25 + 14 + true + + + text #19 + using + 66 + 30 + 40 + 14 + 2 + + + choice button #22 + $(P)$(H)useMono + 5 + 7 + 55 + 36 + + + + + false + false + + Item 1 + Item 2 + + + + text #25 + Energy + 66 + 1 + 40 + 14 + 2 + + + text update #28 + $(P)$(H)displayEnergy + 108 + 90 + + + + + + + + + + + + + 1 + false + 2 + false + + + text #32 + keV + 200 + 1 + 25 + 14 + true + + + rectangle #35 + 77 + 65 + 66 + + + + + + + + + + + + false + + $(P)$(H)bank$(B) + + + + + rectangle #39 + 77 + 65 + 66 + + + + + + + + + + + + false + + $(P)$(H)bank$(B) + + + + + message button #43 + + + $(P)$(H)bank$(B) + off + 49 + 64 + 30 + 20 + + + + + + + + + + + message button #46 + + + $(P)$(H)bank$(B) + on + 22 + 64 + 30 + 20 + + + + + + + text update #49 + $(P)$(H)bank$(B) + 80 + 68 + 60 + 14 + + + + + 1 + false + 1 + false + + + text update #53 + $(P)$(H)f4$(B).EGU + 15 + 91 + 40 + 14 + + + + + 1 + false + 1 + false + + + menu #57 + $(P)$(H)Z4$(B) + 55 + 104 + 54 + 20 + + + + + false + + + menu #60 + $(P)$(H)Z3$(B) + 55 + 124 + 54 + 20 + + + + + false + + + menu #63 + $(P)$(H)Z2$(B) + 55 + 144 + 54 + 20 + + + + + false + + + menu #66 + $(P)$(H)Z1$(B) + 55 + 164 + 54 + 20 + + + + + false + + + text entry #69 + $(P)$(H)f3$(B) + 15 + 125 + 40 + + + + + + + + + 1 + false + false + + + text entry #73 + $(P)$(H)f4$(B) + 15 + 105 + 40 + + + + + + + + + 1 + false + false + + + text entry #77 + $(P)$(H)f2$(B) + 15 + 145 + 40 + + + + + + + + + 1 + false + false + + + text entry #81 + $(P)$(H)f1$(B) + 15 + 165 + 40 + + + + + + + + + 1 + false + false + + + composite #85 + pf4_other_bare.bob + + B + 1 + + 110 + 165 + 50 + 22 + + + composite #87 + pf4_other_bare.bob + + B + 2 + + 110 + 145 + 50 + 22 + + + composite #89 + pf4_other_bare.bob + + B + 3 + + 110 + 125 + 50 + 22 + + + text entry #91 + $(P)$(H)Other4B + 110 + 105 + 40 + + + + + + + + + 1 + false + false + + + text #95 + X + 150 + 107 + 10 + + + + + + + + + true + + + + false + + $(P)$(H)OtherLegal4B + + + + + text #99 + debug + 182 + 78 + 35 + 14 + 2 + + + menu #102 + $(P)$(H)debug$(B) + 179 + 93 + 40 + 20 + + + + + false + + + text #105 + 4 + 107 + 10 + 18 + + + + + 2 + + + text #108 + 3 + 127 + 10 + 18 + + + + + 2 + + + text #111 + 2 + 147 + 10 + 18 + + + + + 2 + + + text #114 + 1 + 167 + 10 + 18 + + + + + 2 + + + polyline #117 + 55 + 225 + 2 + 2 + + + + + + + + + + + + + related display #121 + + + pf4_otherHelp.opi + tab + all + + + mu + 110 + 89 + 40 + 16 + + + + + + + + + + + text #124 + 'Other': + 10 + 205 + 215 + 14 + true + + + text #127 + Cu Zn Ge Mo Ag Sn Ta W Pt Au Pb + 5 + 235 + 220 + 14 + true + + diff --git a/opticsApp/op/bob/autoconvert/pf4Bankmore.bob b/opticsApp/op/bob/autoconvert/pf4Bankmore.bob new file mode 100644 index 0000000..ac3c580 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/pf4Bankmore.bob @@ -0,0 +1,689 @@ + + + pf4Bankmore + 862 + 500 + 140 + 535 + + + + + false + 5 + + rectangle #6 + 140 + 25 + + + + + + + + + + + polyline #9 + 180 + 141 + 2 + 2 + + + + + + + + + + + + + text #14 + PF4 filter + 135 + + + + + 1 + + + polyline #17 + 22 + 142 + 3 + + + + + + + + + + + + + composite #21 + pf4Bank_bare.bob + 5 + 25 + 125 + 130 + + + related display #23 + + + pf4Bankconfig.opi + replace + all + + + config + 30 + 155 + 55 + 20 + + + + + + + + + + + related display #26 + + + pf4Bank.opi + replace + PF4 mono filter computed controls + + + less + 85 + 155 + 50 + 20 + + + + + + + + + + + rectangle #29 + 6 + 185 + 64 + 346 + + + + + + + + + + + + false + + $(P)$(H)fPos$(B) + + + + + rectangle #33 + 6 + 185 + 64 + 346 + + + + + + + + + + + + false + + $(P)$(H)fPos$(B) + + + + + rectangle #37 + 6 + 185 + 64 + 346 + + + + + + + + + + + + false + + $(P)$(H)bank$(B) + + + + + bar #41 + $(P)$(H)bitFlag$(B) + 10 + 189 + 10 + 336 + 16 + true + false + true + + + + + + + text update #44 + $(P)$(H)fPos$(B).THST + 74 + 254 + 70 + 14 + + + + + 6 + false + false + + + text update #48 + $(P)$(H)fPos$(B).TWST + 74 + 233 + 70 + 14 + + + + + 6 + false + false + + + text update #52 + $(P)$(H)fPos$(B).ONST + 74 + 212 + 70 + 14 + + + + + 6 + false + false + + + text update #56 + $(P)$(H)fPos$(B).ZRST + 74 + 191 + 70 + 14 + + + + + 6 + false + false + + + text update #60 + $(P)$(H)fPos$(B).FRST + 74 + 276 + 70 + 14 + + + + + 6 + false + false + + + text update #64 + $(P)$(H)fPos$(B).FVST + 74 + 297 + 70 + 14 + + + + + 6 + false + false + + + text update #68 + $(P)$(H)fPos$(B).SXST + 74 + 318 + 70 + 14 + + + + + 6 + false + false + + + text update #72 + $(P)$(H)fPos$(B).SVST + 74 + 339 + 70 + 14 + + + + + 6 + false + false + + + text update #76 + $(P)$(H)fPos$(B).EIST + 74 + 360 + 70 + 14 + + + + + 6 + false + false + + + text update #80 + $(P)$(H)fPos$(B).NIST + 74 + 381 + 70 + 14 + + + + + 6 + false + false + + + text update #84 + $(P)$(H)fPos$(B).TEST + 74 + 402 + 70 + 14 + + + + + 6 + false + false + + + text update #88 + $(P)$(H)fPos$(B).ELST + 74 + 423 + 70 + 14 + + + + + 6 + false + false + + + text update #92 + $(P)$(H)fPos$(B).TVST + 74 + 444 + 70 + 14 + + + + + 6 + false + false + + + text update #96 + $(P)$(H)fPos$(B).TTST + 74 + 465 + 70 + 14 + + + + + 6 + false + false + + + text update #100 + $(P)$(H)fPos$(B).FTST + 74 + 486 + 70 + 14 + + + + + 6 + false + false + + + text update #104 + $(P)$(H)fPos$(B).FFST + 74 + 507 + 70 + 14 + + + + + 6 + false + false + + + message button #108 + + + $(P)$(H)fPos$(B) + B 0 + 24 + 191 + 40 + 18 + + + + + + + message button #111 + + + $(P)$(H)fPos$(B) + B 1 + 24 + 212 + 40 + 18 + + + + + + + message button #114 + + + $(P)$(H)fPos$(B) + B 2 + 24 + 233 + 40 + 18 + + + + + + + message button #117 + + + $(P)$(H)fPos$(B) + B 3 + 24 + 254 + 40 + 18 + + + + + + + message button #120 + + + $(P)$(H)fPos$(B) + B 4 + 24 + 276 + 40 + 18 + + + + + + + message button #123 + + + $(P)$(H)fPos$(B) + B 5 + 24 + 297 + 40 + 18 + + + + + + + message button #126 + + + $(P)$(H)fPos$(B) + B 6 + 24 + 318 + 40 + 18 + + + + + + + message button #129 + + + $(P)$(H)fPos$(B) + B 7 + 24 + 339 + 40 + 18 + + + + + + + message button #132 + + + $(P)$(H)fPos$(B) + B 8 + 24 + 360 + 40 + 18 + + + + + + + message button #135 + + + $(P)$(H)fPos$(B) + B 9 + 24 + 381 + 40 + 18 + + + + + + + message button #138 + + + $(P)$(H)fPos$(B) + B 10 + 24 + 402 + 40 + 18 + + + + + + + message button #141 + + + $(P)$(H)fPos$(B) + B 11 + 24 + 423 + 40 + 18 + + + + + + + message button #144 + + + $(P)$(H)fPos$(B) + B 12 + 24 + 444 + 40 + 18 + + + + + + + message button #147 + + + $(P)$(H)fPos$(B) + B 13 + 24 + 465 + 40 + 18 + + + + + + + message button #150 + + + $(P)$(H)fPos$(B) + B 14 + 24 + 486 + 40 + 18 + + + + + + + message button #153 + + + $(P)$(H)fPos$(B) + B 15 + 24 + 507 + 40 + 18 + + + + + + diff --git a/opticsApp/op/bob/autoconvert/pf4_bare.bob b/opticsApp/op/bob/autoconvert/pf4_bare.bob new file mode 100644 index 0000000..349c12d --- /dev/null +++ b/opticsApp/op/bob/autoconvert/pf4_bare.bob @@ -0,0 +1,1063 @@ + + + pf4_bare + 1033 + 570 + 320 + 190 + + + + + false + 5 + + rectangle #6 + 19 + 19 + 125 + 90 + 2 + + + + + + + + + true + + + text #9 + BEAM + 259 + 22 + 30 + 10 + + + + + + + + + true + + + text #12 + Bank A + 180 + + + + + 1 + + + text #15 + Bank B + 25 + + + + + 1 + + + rectangle #18 + 170 + 19 + 125 + 90 + 2 + + + + + + + + + true + + + text update #21 + $(P)$(H)trans$(A) + 170 + 111 + 125 + + + + + + + + + + + + + 2 + false + 1 + false + + + text update #25 + $(P)$(H)trans$(B) + 19 + 111 + 125 + + + + + + + + + + + + + 2 + false + 1 + false + + + text update #29 + $(P)$(H)filterAl + 12 + 170 + 30 + 12 + + + + + + + + + + + + + 1 + false + 2 + false + + + text #33 + mm Al + 44 + 170 + 50 + 12 + + + + + true + + + text #36 + mm Ti + 123 + 170 + 50 + 12 + + + + + true + + + text update #39 + $(P)$(H)filterTi + 91 + 170 + 30 + 12 + + + + + + + + + + + + + 1 + false + 2 + false + + + text update #43 + $(P)$(H)trans + 99 + 137 + 125 + + + + + + + + + + + + + 2 + false + 1 + false + + + text #47 + mm Glass + 205 + 170 + 50 + 12 + + + + + true + + + text update #50 + $(P)$(H)filterGlass + 173 + 170 + 30 + 12 + + + + + + + + + + + + + 1 + false + 2 + false + + + polyline #54 + 27 + 32 + 273 + 2 + 2 + + + + + + + + + + + + + polyline #58 + 23 + 26 + 13 + 13 + 2 + + + + + + + + + + + + + + + polygon #62 + 26 + 37 + 20 + 46 + 2 + + + + + + + + + + + + + + + + + + + + + + + + false + + $(P)$(H)displayBit4$(B) + + + + + polygon #67 + 56 + 37 + 20 + 46 + 2 + + + + + + + + + + + + + + + + + + + + + + + + false + + $(P)$(H)displayBit3$(B) + + + + + polygon #72 + 86 + 37 + 20 + 46 + 2 + + + + + + + + + + + + + + + + + + + + + + + + false + + $(P)$(H)displayBit2$(B) + + + + + polygon #77 + 116 + 37 + 20 + 46 + 2 + + + + + + + + + + + + + + + + + + + + + + + + false + + $(P)$(H)displayBit1$(B) + + + + + polygon #82 + 116 + 37 + 21 + 47 + 2 + + + + + + + + + + + + + + + + + + + + + + + + false + + $(P)$(H)displayBit1$(B) + + + + + polygon #87 + 86 + 37 + 21 + 47 + 2 + + + + + + + + + + + + + + + + + + + + + + + + false + + $(P)$(H)displayBit2$(B) + + + + + polygon #92 + 56 + 37 + 21 + 47 + 2 + + + + + + + + + + + + + + + + + + + + + + + + false + + $(P)$(H)displayBit3$(B) + + + + + polygon #97 + 26 + 37 + 21 + 47 + 2 + + + + + + + + + + + + + + + + + + + + + + + + false + + $(P)$(H)displayBit4$(B) + + + + + text #102 + 1 + 124 + 80 + 10 + 12 + + + + + true + + + text #105 + 2 + 94 + 80 + 10 + 12 + + + + + true + + + text #108 + 3 + 64 + 80 + 10 + 12 + + + + + true + + + text #111 + 4 + 34 + 80 + 10 + 12 + + + + + true + + + polygon #114 + 177 + 37 + 20 + 46 + 2 + + + + + + + + + + + + + + + + + + + + + + + + false + + $(P)$(H)displayBit4$(A) + + + + + polygon #119 + 207 + 37 + 20 + 46 + 2 + + + + + + + + + + + + + + + + + + + + + + + + false + + $(P)$(H)displayBit3$(A) + + + + + polygon #124 + 267 + 37 + 20 + 46 + 2 + + + + + + + + + + + + + + + + + + + + + + + + false + + $(P)$(H)displayBit1$(A) + + + + + polygon #129 + 237 + 37 + 20 + 46 + 2 + + + + + + + + + + + + + + + + + + + + + + + + false + + $(P)$(H)displayBit2$(A) + + + + + polygon #134 + 267 + 37 + 21 + 47 + 2 + + + + + + + + + + + + + + + + + + + + + + + + false + + $(P)$(H)displayBit1$(A) + + + + + polygon #139 + 237 + 37 + 21 + 47 + 2 + + + + + + + + + + + + + + + + + + + + + + + + false + + $(P)$(H)displayBit2$(A) + + + + + polygon #144 + 206 + 36 + 22 + 48 + 2 + + + + + + + + + + + + + + + + + + + + + + + + false + + $(P)$(H)displayBit3$(A) + + + + + polygon #149 + 177 + 37 + 21 + 47 + 2 + + + + + + + + + + + + + + + + + + + + + + + + false + + $(P)$(H)displayBit4$(A) + + + + + text #154 + 1 + 275 + 80 + 10 + 12 + + + + + true + + + text #157 + 2 + 245 + 80 + 10 + 12 + + + + + true + + + text #160 + 3 + 215 + 80 + 10 + 12 + + + + + true + + + text #163 + 4 + 185 + 80 + 10 + 12 + + + + + true + + + message button #166 + + + $(P)$(H)ftweak$(A).A + 1 + Write + + + $(P)$(H)ftweak$(A).A + + + 235 + 90 + 20 + 15 + + + + + + + message button #169 + + + $(P)$(H)ftweak$(A).B + 1 + Write + + + $(P)$(H)ftweak$(A).B + - + 215 + 90 + 20 + 15 + + + + + + + message button #172 + + + $(P)$(H)ftweak$(B).A + 1 + Write + + + $(P)$(H)ftweak$(B).A + + + 82 + 90 + 20 + 15 + + + + + + + message button #175 + + + $(P)$(H)ftweak$(B).B + 1 + Write + + + $(P)$(H)ftweak$(B).B + - + 62 + 90 + 20 + 15 + + + + + + diff --git a/opticsApp/op/bob/autoconvert/pf4_otherHelp.bob b/opticsApp/op/bob/autoconvert/pf4_otherHelp.bob new file mode 100644 index 0000000..e5af5d2 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/pf4_otherHelp.bob @@ -0,0 +1,140 @@ + + + pf4_otherHelp + 1110 + 324 + 400 + 313 + + + + + false + 5 + + text entry #6 + $(P)$(H)OtherShow + 10 + 28 + 50 + + + + + + + + + 1 + false + false + + + cartesian plot #10 + 12 + 73 + 381 + 224 + Mass attenuation coefficient (cm^2/g) vs. energy (keV) + + Energy (keV) + true + false + 0.0 + 100.0 + false + + + + + + + + + true + + + + Mu total + true + false + 0.0 + 100.0 + false + + + + + + + + + true + + + + + $(traces[0].y_pv) + $(P)$(H)E + $(P)$(H)T + + 0 + 1 + + + + + 1 + 0 + 0 + 10 + true + + + + + text #16 + Be B C Al Si Ti Cr Mn Fe Co Ni Cu Zn + 113 + 22 + 220 + 14 + true + + + text #19 + Supported filter materials: + 93 + 7 + 220 + 14 + true + + + text #22 + Ge Mo Ag Sn Ta W Pt Au Pb + 113 + 34 + 220 + 14 + true + + + text #25 + Filter + 10 + 5 + 50 + 14 + 1 + + + text #28 + Material + 10 + 14 + 50 + 14 + 1 + + diff --git a/opticsApp/op/bob/autoconvert/pf4_other_bare.bob b/opticsApp/op/bob/autoconvert/pf4_other_bare.bob new file mode 100644 index 0000000..2c301b3 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/pf4_other_bare.bob @@ -0,0 +1,54 @@ + + + pf4_other_bare + 230 + 230 + 50 + 22 + + + + + false + 5 + + text entry #6 + $(P)$(H)Other$(N)$(B) + 40 + + + + + + + + + 1 + false + false + + + text #10 + X + 40 + 2 + 10 + + + + + + + + + true + + + + false + + $(P)$(H)OtherLegal$(N)$(B) + + + + diff --git a/opticsApp/op/bob/autoconvert/pf4config.bob b/opticsApp/op/bob/autoconvert/pf4config.bob new file mode 100644 index 0000000..118eb00 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/pf4config.bob @@ -0,0 +1,132 @@ + + + pf4config + 1139 + 543 + 325 + 490 + + + + + false + 5 + + rectangle #6 + 325 + 25 + + + + + + + + + + + text #9 + PF4 dual filter + 4 + 3 + 320 + + + + + 1 + + + related display #12 + + + pf4more.opi + replace + PF4 mono filter computed controls + + + more + 273 + 194 + 50 + 20 + + + + + + + + + + + related display #15 + + + pf4.opi + replace + all + + + -config + 273 + 174 + 50 + 20 + + + + + + + + + + + polyline #18 + 22 + 326 + 3 + + + + + + + + + + + + + composite #22 + pf4_bare.bob + 5 + 25 + 288 + 182 + + + composite #24 + pf4config_bare.bob + 223 + 326 + 264 + + + polyline #26 + 215 + 327 + 3 + + + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/pf4config_bare.bob b/opticsApp/op/bob/autoconvert/pf4config_bare.bob new file mode 100644 index 0000000..245bdf3 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/pf4config_bare.bob @@ -0,0 +1,907 @@ + + + pf4config_bare + 956 + 530 + 325 + 265 + + + + + false + 5 + + text #6 + Be B C Al Si Ti Cr Mn Fe Co Ni Cu Zn + 30 + 240 + 220 + 14 + true + + + text #9 + Choices for filter material 'Other': + 10 + 225 + 220 + 14 + true + + + text entry #12 + $(P)$(H)E:local + 139 + 26 + 108 + 25 + + + + + + + + + 1 + false + false + + + text #16 + keV + 250 + 30 + 49 + 14 + true + + + text #19 + using + 97 + 30 + 40 + 14 + 2 + + + choice button #22 + $(P)$(H)useMono + 37 + 7 + 55 + 36 + + + + + false + false + + Item 1 + Item 2 + + + + text #25 + Energy + 97 + 1 + 40 + 14 + 2 + + + text update #28 + $(P)$(H)displayEnergy + 139 + 108 + + + + + + + + + + + + + 1 + false + 2 + false + + + text #32 + keV + 250 + 1 + 49 + 14 + true + + + text #35 + Ge Mo Ag Sn Ta W Pt Au Pb + 30 + 252 + 220 + 14 + true + + + rectangle #38 + 77 + 65 + 66 + + + + + + + + + + + + false + + $(P)$(H)bank$(B) + + + + + rectangle #42 + 77 + 65 + 66 + + + + + + + + + + + + false + + $(P)$(H)bank$(B) + + + + + message button #46 + + + $(P)$(H)bank$(B) + off + 49 + 64 + 30 + 20 + + + + + + + + + + + message button #49 + + + $(P)$(H)bank$(B) + on + 22 + 64 + 30 + 20 + + + + + + + text update #52 + $(P)$(H)bank$(B) + 80 + 68 + 60 + 14 + + + + + 1 + false + 1 + false + + + text update #56 + $(P)$(H)f4$(B).EGU + 15 + 91 + 40 + 14 + + + + + 1 + false + 1 + false + + + menu #60 + $(P)$(H)Z4$(B) + 55 + 104 + 54 + 20 + + + + + false + + + menu #63 + $(P)$(H)Z3$(B) + 55 + 124 + 54 + 20 + + + + + false + + + menu #66 + $(P)$(H)Z2$(B) + 55 + 144 + 54 + 20 + + + + + false + + + menu #69 + $(P)$(H)Z1$(B) + 55 + 164 + 54 + 20 + + + + + false + + + text entry #72 + $(P)$(H)f3$(B) + 15 + 125 + 40 + + + + + + + + + 1 + false + false + + + text entry #76 + $(P)$(H)f4$(B) + 15 + 105 + 40 + + + + + + + + + 1 + false + false + + + text entry #80 + $(P)$(H)f2$(B) + 15 + 145 + 40 + + + + + + + + + 1 + false + false + + + text entry #84 + $(P)$(H)f1$(B) + 15 + 165 + 40 + + + + + + + + + 1 + false + false + + + composite #88 + pf4_other_bare.bob + + B + 1 + + 110 + 165 + 50 + 22 + + + composite #90 + pf4_other_bare.bob + + B + 2 + + 110 + 145 + 50 + 22 + + + composite #92 + pf4_other_bare.bob + + B + 3 + + 110 + 125 + 50 + 22 + + + composite #94 + pf4_other_bare.bob + + B + 4 + + 110 + 105 + 50 + 22 + + + menu #96 + $(P)$(H)debug$(A) + 236 + 195 + 40 + 20 + + + + + false + + + text #99 + debug + 194 + 198 + 40 + 14 + 2 + + + rectangle #102 + 238 + 65 + 66 + + + + + + + + + + + + false + + $(P)$(H)bank$(A) + + + + + rectangle #106 + 238 + 65 + 66 + + + + + + + + + + + + false + + $(P)$(H)bank$(A) + + + + + text update #110 + $(P)$(H)bank$(A) + 241 + 68 + 60 + 14 + + + + + 1 + false + 1 + false + + + message button #114 + + + $(P)$(H)bank$(A) + off + 210 + 64 + 30 + 20 + + + + + + + + + + + message button #117 + + + $(P)$(H)bank$(A) + on + 183 + 64 + 30 + 20 + + + + + + + text update #120 + $(P)$(H)f4$(A).EGU + 180 + 91 + 40 + 14 + + + + + 1 + false + 1 + false + + + text entry #124 + $(P)$(H)f4$(A) + 180 + 105 + 40 + + + + + + + + + 1 + false + false + + + text entry #128 + $(P)$(H)f3$(A) + 180 + 125 + 40 + + + + + + + + + 1 + false + false + + + text entry #132 + $(P)$(H)f2$(A) + 180 + 145 + 40 + + + + + + + + + 1 + false + false + + + text entry #136 + $(P)$(H)f1$(A) + 180 + 165 + 40 + + + + + + + + + 1 + false + false + + + composite #140 + pf4_other_bare.bob + + A + 1 + + 275 + 165 + 50 + 22 + + + composite #142 + pf4_other_bare.bob + + A + 2 + + 275 + 145 + 50 + 22 + + + composite #144 + pf4_other_bare.bob + + A + 3 + + 275 + 125 + 50 + 22 + + + composite #146 + pf4_other_bare.bob + + A + 4 + + 275 + 105 + 50 + 22 + + + menu #148 + $(P)$(H)Z3$(A) + 220 + 125 + 54 + 20 + + + + + false + + + menu #151 + $(P)$(H)Z4$(A) + 220 + 105 + 54 + 20 + + + + + false + + + menu #154 + $(P)$(H)Z2$(A) + 220 + 145 + 54 + 20 + + + + + false + + + menu #157 + $(P)$(H)Z1$(A) + 220 + 165 + 54 + 20 + + + + + false + + + text #160 + 4 + 165 + 107 + 10 + 18 + + + + + 2 + + + text #163 + 3 + 165 + 127 + 10 + 18 + + + + + 2 + + + text #166 + 2 + 165 + 147 + 10 + 18 + + + + + 2 + + + text #169 + 1 + 165 + 167 + 10 + 18 + + + + + 2 + + + text #172 + debug + 29 + 198 + 35 + 14 + 2 + + + menu #175 + $(P)$(H)debug$(B) + 69 + 195 + 40 + 20 + + + + + false + + + text #178 + 4 + 107 + 10 + 18 + + + + + 2 + + + text #181 + 3 + 127 + 10 + 18 + + + + + 2 + + + text #184 + 2 + 147 + 10 + 18 + + + + + 2 + + + text #187 + 1 + 167 + 10 + 18 + + + + + 2 + + + polyline #190 + 55 + 325 + 2 + 2 + + + + + + + + + + + + + related display #194 + + + pf4_otherHelp.opi + tab + all + + + mu + 110 + 89 + 40 + 16 + + + + + + + + + + + related display #197 + + + pf4_otherHelp.opi + tab + all + + + mu + 275 + 89 + 40 + 16 + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/pf4more.bob b/opticsApp/op/bob/autoconvert/pf4more.bob new file mode 100644 index 0000000..0a51e40 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/pf4more.bob @@ -0,0 +1,1254 @@ + + + pf4more + 352 + 494 + 325 + 570 + + + + + false + 5 + + rectangle #6 + 325 + 25 + + + + + + + + + + + polyline #9 + 215 + 326 + 2 + 2 + + + + + + + + + + + + + rectangle #14 + 6 + 220 + 64 + 346 + + + + + + + + + + + + false + + $(P)$(H)fPos$(B) + + + + + rectangle #18 + 6 + 220 + 64 + 346 + + + + + + + + + + + + false + + $(P)$(H)fPos$(B) + + + + + rectangle #22 + 6 + 220 + 64 + 346 + + + + + + + + + + + + false + + $(P)$(H)bank$(B) + + + + + bar #26 + $(P)$(H)bitFlag$(B) + 10 + 224 + 10 + 336 + 16 + true + false + true + + + + + + + text update #29 + $(P)$(H)fPos$(B).THST + 74 + 289 + 70 + 14 + + + + + 6 + false + false + + + text update #33 + $(P)$(H)fPos$(B).TWST + 74 + 268 + 70 + 14 + + + + + 6 + false + false + + + text update #37 + $(P)$(H)fPos$(B).ONST + 74 + 247 + 70 + 14 + + + + + 6 + false + false + + + text update #41 + $(P)$(H)fPos$(B).ZRST + 74 + 226 + 70 + 14 + + + + + 6 + false + false + + + text update #45 + $(P)$(H)fPos$(B).FRST + 74 + 311 + 70 + 14 + + + + + 6 + false + false + + + text update #49 + $(P)$(H)fPos$(B).FVST + 74 + 332 + 70 + 14 + + + + + 6 + false + false + + + text update #53 + $(P)$(H)fPos$(B).SXST + 74 + 353 + 70 + 14 + + + + + 6 + false + false + + + text update #57 + $(P)$(H)fPos$(B).SVST + 74 + 374 + 70 + 14 + + + + + 6 + false + false + + + text update #61 + $(P)$(H)fPos$(B).EIST + 74 + 395 + 70 + 14 + + + + + 6 + false + false + + + text update #65 + $(P)$(H)fPos$(B).NIST + 74 + 416 + 70 + 14 + + + + + 6 + false + false + + + text update #69 + $(P)$(H)fPos$(B).TEST + 74 + 437 + 70 + 14 + + + + + 6 + false + false + + + text update #73 + $(P)$(H)fPos$(B).ELST + 74 + 458 + 70 + 14 + + + + + 6 + false + false + + + text update #77 + $(P)$(H)fPos$(B).TVST + 74 + 479 + 70 + 14 + + + + + 6 + false + false + + + text update #81 + $(P)$(H)fPos$(B).TTST + 74 + 500 + 70 + 14 + + + + + 6 + false + false + + + text update #85 + $(P)$(H)fPos$(B).FTST + 74 + 521 + 70 + 14 + + + + + 6 + false + false + + + text update #89 + $(P)$(H)fPos$(B).FFST + 74 + 542 + 70 + 14 + + + + + 6 + false + false + + + message button #93 + + + $(P)$(H)fPos$(B) + B 0 + 24 + 226 + 40 + 18 + + + + + + + message button #96 + + + $(P)$(H)fPos$(B) + B 1 + 24 + 247 + 40 + 18 + + + + + + + message button #99 + + + $(P)$(H)fPos$(B) + B 2 + 24 + 268 + 40 + 18 + + + + + + + message button #102 + + + $(P)$(H)fPos$(B) + B 3 + 24 + 289 + 40 + 18 + + + + + + + message button #105 + + + $(P)$(H)fPos$(B) + B 4 + 24 + 311 + 40 + 18 + + + + + + + message button #108 + + + $(P)$(H)fPos$(B) + B 5 + 24 + 332 + 40 + 18 + + + + + + + message button #111 + + + $(P)$(H)fPos$(B) + B 6 + 24 + 353 + 40 + 18 + + + + + + + message button #114 + + + $(P)$(H)fPos$(B) + B 7 + 24 + 374 + 40 + 18 + + + + + + + message button #117 + + + $(P)$(H)fPos$(B) + B 8 + 24 + 395 + 40 + 18 + + + + + + + message button #120 + + + $(P)$(H)fPos$(B) + B 9 + 24 + 416 + 40 + 18 + + + + + + + message button #123 + + + $(P)$(H)fPos$(B) + B 10 + 24 + 437 + 40 + 18 + + + + + + + message button #126 + + + $(P)$(H)fPos$(B) + B 11 + 24 + 458 + 40 + 18 + + + + + + + message button #129 + + + $(P)$(H)fPos$(B) + B 12 + 24 + 479 + 40 + 18 + + + + + + + message button #132 + + + $(P)$(H)fPos$(B) + B 13 + 24 + 500 + 40 + 18 + + + + + + + message button #135 + + + $(P)$(H)fPos$(B) + B 14 + 24 + 521 + 40 + 18 + + + + + + + message button #138 + + + $(P)$(H)fPos$(B) + B 15 + 24 + 542 + 40 + 18 + + + + + + + rectangle #141 + 162 + 220 + 64 + 346 + + + + + + + + + + + + false + + $(P)$(H)fPos$(A) + + + + + rectangle #145 + 162 + 220 + 64 + 346 + + + + + + + + + + + + false + + $(P)$(H)fPos$(A) + + + + + rectangle #149 + 162 + 220 + 64 + 346 + + + + + + + + + + + + false + + $(P)$(H)bank$(A) + + + + + bar #153 + $(P)$(H)bitFlag$(A) + 166 + 224 + 10 + 336 + 16 + true + false + true + + + + + + + text update #156 + $(P)$(H)fPos$(A).THST + 230 + 289 + 70 + 14 + + + + + 6 + false + false + + + text update #160 + $(P)$(H)fPos$(A).TWST + 230 + 268 + 70 + 14 + + + + + 6 + false + false + + + text update #164 + $(P)$(H)fPos$(A).ONST + 230 + 247 + 70 + 14 + + + + + 6 + false + false + + + text update #168 + $(P)$(H)fPos$(A).ZRST + 230 + 226 + 70 + 14 + + + + + 6 + false + false + + + text update #172 + $(P)$(H)fPos$(A).FRST + 230 + 311 + 70 + 14 + + + + + 6 + false + false + + + text update #176 + $(P)$(H)fPos$(A).FVST + 230 + 332 + 70 + 14 + + + + + 6 + false + false + + + text update #180 + $(P)$(H)fPos$(A).SXST + 230 + 353 + 70 + 14 + + + + + 6 + false + false + + + text update #184 + $(P)$(H)fPos$(A).SVST + 230 + 374 + 70 + 14 + + + + + 6 + false + false + + + text update #188 + $(P)$(H)fPos$(A).EIST + 230 + 395 + 70 + 14 + + + + + 6 + false + false + + + text update #192 + $(P)$(H)fPos$(A).NIST + 230 + 416 + 70 + 14 + + + + + 6 + false + false + + + text update #196 + $(P)$(H)fPos$(A).TEST + 230 + 437 + 70 + 14 + + + + + 6 + false + false + + + text update #200 + $(P)$(H)fPos$(A).ELST + 230 + 458 + 70 + 14 + + + + + 6 + false + false + + + text update #204 + $(P)$(H)fPos$(A).TVST + 230 + 479 + 70 + 14 + + + + + 6 + false + false + + + text update #208 + $(P)$(H)fPos$(A).TTST + 230 + 500 + 70 + 14 + + + + + 6 + false + false + + + text update #212 + $(P)$(H)fPos$(A).FTST + 230 + 521 + 70 + 14 + + + + + 6 + false + false + + + text update #216 + $(P)$(H)fPos$(A).FFST + 230 + 542 + 70 + 14 + + + + + 6 + false + false + + + message button #220 + + + $(P)$(H)fPos$(A) + A 0 + 180 + 226 + 40 + 18 + + + + + + + message button #223 + + + $(P)$(H)fPos$(A) + A 1 + 180 + 247 + 40 + 18 + + + + + + + message button #226 + + + $(P)$(H)fPos$(A) + A 2 + 180 + 268 + 40 + 18 + + + + + + + message button #229 + + + $(P)$(H)fPos$(A) + A 3 + 180 + 289 + 40 + 18 + + + + + + + message button #232 + + + $(P)$(H)fPos$(A) + A 4 + 180 + 311 + 40 + 18 + + + + + + + message button #235 + + + $(P)$(H)fPos$(A) + A 5 + 180 + 332 + 40 + 18 + + + + + + + message button #238 + + + $(P)$(H)fPos$(A) + A 6 + 180 + 353 + 40 + 18 + + + + + + + message button #241 + + + $(P)$(H)fPos$(A) + A 7 + 180 + 374 + 40 + 18 + + + + + + + message button #244 + + + $(P)$(H)fPos$(A) + A 8 + 180 + 395 + 40 + 18 + + + + + + + message button #247 + + + $(P)$(H)fPos$(A) + A 9 + 180 + 416 + 40 + 18 + + + + + + + message button #250 + + + $(P)$(H)fPos$(A) + A 10 + 180 + 437 + 40 + 18 + + + + + + + message button #253 + + + $(P)$(H)fPos$(A) + A 11 + 180 + 458 + 40 + 18 + + + + + + + message button #256 + + + $(P)$(H)fPos$(A) + A 12 + 180 + 479 + 40 + 18 + + + + + + + message button #259 + + + $(P)$(H)fPos$(A) + A 13 + 180 + 500 + 40 + 18 + + + + + + + message button #262 + + + $(P)$(H)fPos$(A) + A 14 + 180 + 521 + 40 + 18 + + + + + + + message button #265 + + + $(P)$(H)fPos$(A) + A 15 + 180 + 542 + 40 + 18 + + + + + + + text #268 + PF4 dual filter + 320 + + + + + 1 + + + polyline #271 + 22 + 326 + 3 + + + + + + + + + + + + + composite #275 + pf4_bare.bob + 5 + 25 + 288 + 182 + + + related display #277 + + + pf4config.opi + replace + all + + + config + 273 + 174 + 50 + 20 + + + + + + + + + + + related display #280 + + + pf4.opi + replace + PF4 mono filter computed controls + + + less + 273 + 194 + 50 + 20 + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/qxbpm.bob b/opticsApp/op/bob/autoconvert/qxbpm.bob new file mode 100644 index 0000000..a361f28 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/qxbpm.bob @@ -0,0 +1,927 @@ + + + qxbpm + 848 + 482 + 555 + 370 + + + + + false + 5 + + text #6 + qxbpm.adl + 2 + 3 + 200 + 10 + + + + + true + + + text #9 + last edited: 2007-Jan-30 (prj) + 2 + 18 + 200 + 10 + + + + + true + + + text #12 + Oxford Quad Beam Position Monitor + 8 + 35 + 500 + 22 + + + + + 1 + + + related display #15 + + + qxbpm_config.opi + tab + configure + + + configure + 457 + 3 + 93 + 14 + + + + + + + + + + + choice button #18 + $(P)enable + 227 + 4 + 200 + 14 + + + + + false + + Item 1 + Item 2 + + + + cartesian plot #21 + 319 + 81 + 220 + 220 + + + true + false + 0.0 + 100.0 + false + + + + + + + + + true + + + + + true + false + 0.0 + 100.0 + false + + + + + + + + + true + + + + + $(traces[0].y_pv) + $(P)diff:x + $(P)diff:y + + 0 + 1 + + + + + 1 + 0 + 0 + 10 + true + + + + + text #27 + X + 96 + 60 + 50 + 16 + + + + + 1 + + + text #30 + Y + 209 + 60 + 50 + 16 + + + + + 1 + + + text #33 + pos - ref (mm) + 318 + 60 + 220 + + + + + 1 + + + rectangle #36 + 26 + 275 + 280 + 45 + + + + + + + + + + + rectangle #39 + 32 + 276 + 12 + 11 + + + + + + + + + + + + false + + $(P)current:ok + $(P)current:low + + + + + rectangle #43 + 32 + 292 + 12 + 11 + + + + + + + + + + + + false + + $(P)current:ok + $(P)current:low + + + + + rectangle #47 + 32 + 308 + 12 + 11 + + + + + + + + + + + + false + + $(P)current:ok + $(P)current:low + + + + + text #51 + diode currents OK + 50 + 278 + 250 + + + + + + + + + 1 + + + + false + + $(P)current:ok + $(P)current:low + + + + + text #55 + diode currents OK + 50 + 278 + 250 + + + + + + + + + 1 + + + + false + + $(P)current:ok + $(P)current:low + + + + + text #59 + diode currents too low + 50 + 278 + 250 + + + + + + + + + 1 + + + + false + + $(P)current:ok + $(P)current:low + + + + + text #63 + not all diodes above threshold + 50 + 298 + 250 + 12 + + + + + + + + + 1 + + + + false + + $(P)current:ok + + + + + text #67 + all diodes above threshold + 50 + 298 + 250 + 12 + + + + + + + + + 1 + + + + false + + $(P)current:ok + + + + + text #71 + not all diodes below threshold + 50 + 307 + 250 + 10 + + + + + + + + + 1 + + + + false + + $(P)current:low + + + + + text #75 + all diodes below threshold + 50 + 307 + 250 + 10 + + + + + + + + + 1 + + + + false + + $(P)current:low + + + + + text update #79 + $(P)current:a + 70 + 192 + + + + + + + + + + + + + 3 + false + 1 + false + + + text update #83 + $(P)current:c + 183 + 192 + + + + + + + + + + + + + 3 + false + 1 + false + + + text #87 + A + 43 + 194 + 20 + 16 + + + + + 1 + + + text #90 + C + 285 + 194 + 20 + 16 + + + + + 1 + + + text update #93 + $(P)current:b + 69 + 220 + + + + + + + + + + + + + 3 + false + 1 + false + + + text update #97 + $(P)current:d + 182 + 220 + + + + + + + + + + + + + 3 + false + 1 + false + + + text #101 + B + 42 + 222 + 20 + 16 + + + + + 1 + + + text #104 + D + 284 + 222 + 20 + 16 + + + + + 1 + + + text #107 + photodiode currents + 77 + 174 + 200 + 16 + + + + + 1 + + + text #110 + A+B+C+D + 99 + 252 + 20 + 16 + + + + + 2 + + + text update #113 + $(P)current:total + 126 + 250 + + + + + + + + + + + + + 3 + false + 1 + false + + + text #117 + pos + 11 + 82 + 50 + 16 + + + + + 1 + + + text #120 + threshold: + 318 + 309 + 76 + 10 + + + + + true + + + text update #123 + $(P)current:low:raw + 402 + 308 + 76 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #127 + amplifier range (all photodiodes use same range) + 13 + 330 + 400 + 12 + + + + + true + + + choice button #130 + $(P)gain + 14 + 342 + 530 + 18 + + + + + false + + Item 1 + Item 2 + + + + related display #133 + + + userCalcOut.opi + + diff:x + + tab + calculation + + + + 158 + 140 + 18 + 18 + + + + + + + + + + + related display #136 + + + userCalcOut.opi + + diff:y + + tab + calculation + + + + 268 + 140 + 18 + 18 + + + + + + + + + + + text #139 + diff + 11 + 141 + 50 + 16 + + + + + 1 + + + text update #142 + $(P)diff:x + 71 + 140 + 84 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #146 + $(P)diff:y + 184 + 140 + 84 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #150 + ref + 11 + 116 + 50 + 16 + + + + + 1 + + + text entry #153 + $(P)ref:x + 71 + 114 + + + + + + + + + 1 + false + false + + + text entry #157 + $(P)ref:y + 184 + 114 + + + + + + + + + 1 + false + false + + + text update #161 + $(P)pos:x + 71 + 81 + 24 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #165 + $(P)pos:y + 184 + 81 + 24 + + + + + + + + + + + + + 1 + false + 1 + false + + diff --git a/opticsApp/op/bob/autoconvert/qxbpm_calib.bob b/opticsApp/op/bob/autoconvert/qxbpm_calib.bob new file mode 100644 index 0000000..479175e --- /dev/null +++ b/opticsApp/op/bob/autoconvert/qxbpm_calib.bob @@ -0,0 +1,356 @@ + + + qxbpm_calib + 31 + 151 + 430 + 370 + + + + + false + 5 + + text #6 + qxbpm_calib.adl + 2 + 3 + 200 + 10 + + + + + true + + + text #9 + last edited: 2007-Feb-12 (prj) + 2 + 18 + 200 + 10 + + + + + true + + + text #12 + Oxford Quad Beam Position Monitor + 8 + 35 + 400 + + + + + 1 + + + related display #15 + + + qxbpm_config.opi + tab + configure + + + configure + 311 + 3 + 93 + 14 + + + + + + + + + + + text entry #18 + $(P)settling + 91 + 321 + + + + + + + + + 1 + false + false + + + text #22 + settling time after each gain change before offset is read. + 29 + 306 + 150 + 12 + + + + + true + + + text update #25 + $(P)settling.EGU + 196 + 321 + 18 + + + + + + + + + 1 + false + 1 + false + + + message button #29 + + + $(P)set_defaults + set defaults + 142 + 148 + 130 + 20 + + + + + + + rectangle #32 + 135 + 144 + 144 + 28 + 8 + + + + + + + + + true + + + + false + + $(P)set_defaults + + + + + rectangle #36 + 22 + 69 + 370 + 109 + 2 + + + + + + + + + true + + + text #39 + default calibration + 29 + 74 + 150 + 12 + + + + + 1 + + + text #42 + Set amplifier gains and other settings + 32 + 99 + 350 + 16 + + + + + true + + + text #45 + to factory defaults. + 32 + 120 + 350 + 16 + + + + + true + + + rectangle #48 + 22 + 186 + 370 + 170 + 2 + + + + + + + + + true + + + text #51 + amplifier offsets + 29 + 191 + 150 + 12 + + + + + 1 + + + text #54 + Discover amplifier offsets for each range. + 29 + 216 + 350 + 16 + + + + + true + + + text #57 + Make SURE that the X-ray beam is OFF. + 29 + 237 + 350 + 16 + + + + + true + + + message button #60 + + + $(P)set_offsets + set offsets + 204 + 265 + 130 + 20 + + + + + + + rectangle #63 + 197 + 261 + 144 + 28 + 8 + + + + + + + + + true + + + + false + + $(P)set_offsets + + + + + message button #67 + + + $(P)set_offsets + idle + 88 + 265 + 68 + 20 + + + + + + + rectangle #70 + 82 + 261 + 80 + 28 + 8 + + + + + + + + + true + + + + false + + $(P)set_offsets + + + + diff --git a/opticsApp/op/bob/autoconvert/qxbpm_config.bob b/opticsApp/op/bob/autoconvert/qxbpm_config.bob new file mode 100644 index 0000000..e083c0d --- /dev/null +++ b/opticsApp/op/bob/autoconvert/qxbpm_config.bob @@ -0,0 +1,2253 @@ + + + qxbpm_config + 661 + 527 + 776 + 438 + + + + + false + 5 + + text #6 + qxbpm_config.adl + 2 + 3 + 200 + 10 + + + + + true + + + text #9 + last edited: 2007-Mar-01 (prj) + 2 + 18 + 200 + 10 + + + + + true + + + text #12 + Oxford Quad XBPM Configuration + 231 + 6 + 400 + 22 + + + + + 1 + + + related display #15 + + + qxbpm.opi + tab + main screen + + + main screen + 674 + 8 + 93 + 14 + + + + + + + + + + + choice button #18 + $(P)gain + 332 + 120 + 440 + 14 + + + + + false + + Item 1 + Item 2 + + + + text #21 + the BPM controller needs ~3 sec to fill 100 sample buffer (~30 ms/sample) + 228 + 32 + 400 + 10 + + + + + 1 + + + rectangle #24 + 26 + 152 + 280 + 45 + + + + + + + + + + + rectangle #27 + 32 + 153 + 12 + 11 + + + + + + + + + + + + false + + $(P)current:ok + $(P)current:low + + + + + rectangle #31 + 32 + 169 + 12 + 11 + + + + + + + + + + + + false + + $(P)current:ok + $(P)current:low + + + + + rectangle #35 + 32 + 185 + 12 + 11 + + + + + + + + + + + + false + + $(P)current:ok + $(P)current:low + + + + + text #39 + diode currents OK + 50 + 155 + 250 + + + + + + + + + 1 + + + + false + + $(P)current:ok + $(P)current:low + + + + + text #43 + diode currents OK + 50 + 155 + 250 + + + + + + + + + 1 + + + + false + + $(P)current:ok + $(P)current:low + + + + + text #47 + diode currents too low + 50 + 155 + 250 + + + + + + + + + 1 + + + + false + + $(P)current:ok + $(P)current:low + + + + + text #51 + not all diodes above threshold + 50 + 175 + 250 + 12 + + + + + + + + + 1 + + + + false + + $(P)current:ok + + + + + text #55 + all diodes above threshold + 50 + 175 + 250 + 12 + + + + + + + + + 1 + + + + false + + $(P)current:ok + + + + + text #59 + not all diodes below threshold + 50 + 184 + 250 + 10 + + + + + + + + + 1 + + + + false + + $(P)current:low + + + + + text #63 + all diodes below threshold + 50 + 184 + 250 + 10 + + + + + + + + + 1 + + + + false + + $(P)current:low + + + + + text entry #67 + $(P)r1:A1 + 20 + 308 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #71 + $(P)r1:B1 + 105 + 308 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #75 + $(P)r1:C1 + 190 + 308 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #79 + $(P)r1:D1 + 275 + 308 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #83 + $(P)r2:A1 + 20 + 329 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #87 + $(P)r2:B1 + 105 + 329 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #91 + $(P)r2:C1 + 190 + 329 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #95 + $(P)r2:D1 + 275 + 329 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #99 + $(P)r3:A1 + 20 + 350 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #103 + $(P)r3:B1 + 105 + 350 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #107 + $(P)r3:C1 + 190 + 350 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #111 + $(P)r3:D1 + 275 + 350 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #115 + $(P)r4:A1 + 20 + 371 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #119 + $(P)r4:B1 + 105 + 371 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #123 + $(P)r4:C1 + 190 + 371 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #127 + $(P)r4:D1 + 275 + 371 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #131 + $(P)r5:A1 + 20 + 392 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #135 + $(P)r5:B1 + 105 + 392 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #139 + $(P)r5:C1 + 190 + 392 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #143 + $(P)r5:D1 + 275 + 392 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #147 + $(P)r6:A1 + 20 + 413 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #151 + $(P)r6:B1 + 105 + 413 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #155 + $(P)r6:C1 + 190 + 413 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #159 + $(P)r6:D1 + 275 + 413 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #163 + $(P)r1:A2 + 425 + 308 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #167 + $(P)r1:B2 + 510 + 308 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #171 + $(P)r1:C2 + 595 + 308 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #175 + $(P)r1:D2 + 680 + 308 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #179 + $(P)r2:A2 + 425 + 329 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #183 + $(P)r2:B2 + 510 + 329 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #187 + $(P)r2:C2 + 595 + 329 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #191 + $(P)r2:D2 + 680 + 329 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #195 + $(P)r3:A2 + 425 + 350 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #199 + $(P)r3:B2 + 510 + 350 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #203 + $(P)r3:C2 + 595 + 350 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #207 + $(P)r3:D2 + 680 + 350 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #211 + $(P)r4:A2 + 425 + 371 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #215 + $(P)r4:B2 + 510 + 371 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #219 + $(P)r4:C2 + 595 + 371 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #223 + $(P)r4:D2 + 680 + 371 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #227 + $(P)r5:A2 + 425 + 392 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #231 + $(P)r5:B2 + 510 + 392 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #235 + $(P)r5:C2 + 595 + 392 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #239 + $(P)r5:D2 + 680 + 392 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #243 + $(P)r6:A2 + 425 + 413 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #247 + $(P)r6:B2 + 510 + 413 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #251 + $(P)r6:C2 + 595 + 413 + 80 + 17 + + + + + + + + + 5 + false + false + + + text entry #255 + $(P)r6:D2 + 680 + 413 + 80 + 17 + + + + + + + + + 5 + false + false + + + text update #259 + $(P)gain.ZRST + 360 + 308 + 60 + 12 + + + + + + + + + 5 + false + 1 + false + + + text update #263 + $(P)gain.ONST + 360 + 329 + 60 + 12 + + + + + + + + + 5 + false + 1 + false + + + text update #267 + $(P)gain.TWST + 360 + 350 + 60 + 12 + + + + + + + + + 5 + false + 1 + false + + + text update #271 + $(P)gain.THST + 360 + 371 + 60 + 12 + + + + + + + + + 5 + false + 1 + false + + + text update #275 + $(P)gain.FRST + 360 + 392 + 60 + 12 + + + + + + + + + 5 + false + 1 + false + + + text update #279 + $(P)gain.FVST + 360 + 413 + 60 + 12 + + + + + + + + + 5 + false + 1 + false + + + text #283 + diode A + 20 + 298 + 80 + 12 + + + + + 1 + + + text #286 + diode B + 105 + 298 + 80 + 12 + + + + + 1 + + + text #289 + diode C + 190 + 298 + 80 + 12 + + + + + 1 + + + text #292 + diode D + 275 + 298 + 80 + 12 + + + + + 1 + + + text #295 + cG : photodiode gain multiplier adjustment (float) + 37 + 280 + 300 + 14 + 1 + + + text #298 + cB : photodiode gain raw offset (integer) + 442 + 280 + 300 + 14 + 1 + + + text #301 + diode A + 425 + 298 + 80 + 12 + + + + + 1 + + + text #304 + diode B + 510 + 298 + 80 + 12 + + + + + 1 + + + text #307 + diode C + 595 + 298 + 80 + 12 + + + + + 1 + + + text #310 + diode D + 680 + 298 + 80 + 12 + + + + + 1 + + + text #313 + range + 360 + 298 + 60 + 12 + + + + + 1 + + + message button #316 + + + $(P)init + initialize + 15 + 254 + 104 + 17 + + + + + + + + + + + text #319 + VxWorks debug level + 18 + 221 + 12 + + + + + true + + + text entry #322 + $(P)debug + 18 + 232 + 18 + + + + + + + + + 5 + false + false + + + text entry #326 + $(P)current:low:raw + 328 + 190 + 80 + 17 + + + + + + + + + 5 + false + false + + + text #330 + raw diode signal lower threshold + 413 + 191 + 300 + 14 + true + + + text #333 + raw diode values + 328 + 151 + 104 + 12 + + + + + 1 + + + text update #336 + $(P)current:a:raw + 433 + 149 + 80 + 17 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #340 + $(P)current:b:raw + 518 + 149 + 80 + 17 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #344 + $(P)current:c:raw + 603 + 149 + 80 + 17 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #348 + $(P)current:d:raw + 688 + 149 + 80 + 17 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #352 + diode current, A + 327 + 170 + 104 + 12 + + + + + 1 + + + text update #355 + $(P)current:a + 432 + 168 + 80 + 17 + + + + + + + + + + + + + 2 + false + 1 + false + + + text update #359 + $(P)current:b + 517 + 168 + 80 + 17 + + + + + + + + + + + + + 2 + false + 1 + false + + + text update #363 + $(P)current:c + 602 + 168 + 80 + 17 + + + + + + + + + + + + + 2 + false + 1 + false + + + text update #367 + $(P)current:d + 687 + 168 + 80 + 17 + + + + + + + + + + + + + 2 + false + 1 + false + + + related display #371 + + + qxbpm_calib.opi + tab + main screen + + + calibrate + 664 + 259 + 93 + 14 + + + + + + + + + + + choice button #374 + $(P)enable + 14 + 49 + 300 + 16 + + + + + false + + Item 1 + Item 2 + + + + choice button #377 + $(P)mode + 14 + 70 + 300 + 16 + + + + + false + + Item 1 + Item 2 + + + + text #380 + # measurements for AVERAGE or WINDOW + 14 + 91 + 300 + 10 + + + + + true + + + valuator #383 + $(P)buflen + 14 + 102 + 300 + 40 + + + + + + + text #387 + RS232 poll period, s + 334 + 49 + 130 + 12 + + + + + true + + + text entry #390 + $(P)period + 334 + 60 + 130 + 18 + + + + + + + + + 5 + false + false + + + text #394 + device address + 334 + 83 + 130 + 12 + + + + + true + + + text update #397 + $(P)address + 334 + 94 + 130 + 18 + + + + + + + + + 5 + false + false + + + text #401 + RS232 port + 476 + 49 + 90 + 12 + + + + + 2 + + + text #404 + RS232 out + 476 + 66 + 90 + 12 + + + + + 2 + + + text #407 + RS232 in + 476 + 83 + 90 + 12 + + + + + 2 + + + text #410 + RS232 status + 476 + 100 + 90 + 12 + + + + + 2 + + + text update #413 + $(S).SEVR + 571 + 100 + 200 + 12 + + + + + + + + + + + + + 5 + false + false + + + text update #417 + $(S).AINP + 571 + 83 + 200 + 12 + + + + + + + + + + + + + 5 + false + false + + + text update #421 + $(S).AOUT + 571 + 66 + 200 + 12 + + + + + + + + + + + + + 5 + false + false + + + text update #425 + $(P)port + 571 + 49 + 200 + 12 + + + + + + + + + + + + + 5 + false + false + + + text #429 + photodiode current, I_n = cG * (raw_signal - cB) + 156 + 219 + 440 + 14 + 1 + + + text #432 + position_X = + 156 + 238 + 14 + 2 + + + text entry #435 + $(P)GX + 261 + 238 + 80 + 17 + + + + + + + + + 5 + false + false + + + text #439 + * ( I_B - I_D ) / ( I_B + I_D ) + 346 + 238 + 250 + 14 + true + + + text #442 + position_Y = + 156 + 258 + 14 + 2 + + + text entry #445 + $(P)GY + 261 + 258 + 80 + 17 + + + + + + + + + 5 + false + false + + + text #449 + * ( I_A - I_C ) / ( I_A + I_C ) + 346 + 258 + 250 + 14 + true + + + text #452 + 1/A/top + 433 + 136 + 80 + 12 + + + + + 1 + + + text #455 + 2/B/left + 518 + 136 + 80 + 12 + + + + + 1 + + + text #458 + 3/C/bottom + 603 + 136 + 80 + 12 + + + + + 1 + + + text #461 + 4/D/right + 688 + 136 + 80 + 12 + + + + + 1 + + diff --git a/opticsApp/op/bob/autoconvert/table.bob b/opticsApp/op/bob/autoconvert/table.bob new file mode 100644 index 0000000..c480681 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/table.bob @@ -0,0 +1,1912 @@ + + + table + 1119 + 494 + 230 + 390 + + + + + false + 5 + + text update #6 + $(P)$(T).DESC + 230 + + + + + + + + + + + + + 1 + false + 1 + false + + + polyline #10 + -1 + 20 + 232 + 3 + + + + + + + + + + + + + related display #14 + + + table_refresh.opi + replace + Refresh fixed-point menu + + + REFRESH MENU + 95 + 43 + 135 + 15 + + + + + + + + + + + menu #17 + $(P)$(Q)fpSelect + 95 + 23 + 135 + 20 + + + + + false + + + text #20 + Fixed point: + 5 + 27 + 85 + 14 + true + + + text update #23 + $(P)$(T).EZ + 25 + 262 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #27 + 25 + 260 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + text update #31 + $(P)$(T).EX + 25 + 82 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #35 + Limit + 90 + 63 + 60 + 18 + + + + + + + + + 1 + + + + false + + $(P)$(T).LVIO + + + + + text update #39 + $(P)$(T).LEGU + 25 + 63 + 70 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #43 + X + 10 + 102 + 20 + + + + + true + + + text entry #46 + $(P)$(T).X + 25 + 100 + 80 + 22 + + + + + + + + + 1 + false + false + + + rectangle #50 + 25 + 80 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #54 + 23 + 78 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + related display #58 + + + scanParmsCustom.opi + + $(Q)X + $(T).LEGU + $(Q)X + $(Q)X + + tab + Setup scan parameters + + + Scan + 8 + 140 + 35 + 20 + + + + + + + + + + + message button #61 + + + $(P)$(Q)X:scanParms.GO + 1 + Write + + + $(P)$(Q)X:scanParms.GO + Go + 45 + 140 + 21 + 20 + + + + + + + message button #64 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + Kill + 68 + 140 + 35 + 20 + + + + + + + + + + + rectangle #67 + 5 + 138 + 24 + + + + + + + + + + + text update #70 + $(P)$(T).AEGU + 150 + 63 + 70 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #74 + AX + 115 + 102 + 20 + + + + + true + + + text entry #77 + $(P)$(T).AX + 140 + 100 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #81 + $(P)$(T).EAX + 140 + 82 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #85 + 140 + 80 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #89 + 138 + 78 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + related display #93 + + + scanParmsCustom.opi + + $(Q)AX + $(T).AEGU + $(Q)AX + $(Q)AX + + tab + Setup scan parameters + + + Scan + 123 + 140 + 35 + 20 + + + + + + + + + + + message button #96 + + + $(P)$(Q)AX:scanParms.GO + 1 + Write + + + $(P)$(Q)AX:scanParms.GO + Go + 160 + 140 + 21 + 20 + + + + + + + message button #99 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + Kill + 183 + 140 + 35 + 20 + + + + + + + + + + + rectangle #102 + 120 + 138 + 24 + + + + + + + + + + + text #105 + Y + 10 + 193 + 20 + + + + + true + + + text entry #108 + $(P)$(T).Y + 25 + 190 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #112 + $(P)$(T).EY + 25 + 172 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #116 + 25 + 170 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #120 + 23 + 168 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + text #124 + AY + 115 + 191 + 20 + + + + + true + + + text entry #127 + $(P)$(T).AY + 140 + 190 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #131 + $(P)$(T).EAY + 140 + 172 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #135 + 140 + 170 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #139 + 138 + 168 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + related display #143 + + + scanParmsCustom.opi + + $(Q)Y + $(T).LEGU + $(Q)Y + $(Q)Y + + tab + Setup scan parameters + + + Scan + 8 + 230 + 35 + 20 + + + + + + + + + + + message button #146 + + + $(P)$(Q)Y:scanParms.GO + 1 + Write + + + $(P)$(Q)Y:scanParms.GO + Go + 45 + 230 + 21 + 20 + + + + + + + message button #149 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + Kill + 68 + 230 + 35 + 20 + + + + + + + + + + + rectangle #152 + 5 + 228 + 24 + + + + + + + + + + + related display #155 + + + scanParmsCustom.opi + + $(Q)AY + $(T).AEGU + $(Q)AY + $(Q)AY + + tab + Setup scan parameters + + + Scan + 123 + 230 + 35 + 20 + + + + + + + + + + + message button #158 + + + $(P)$(Q)AY:scanParms.GO + 1 + Write + + + $(P)$(Q)AY:scanParms.GO + Go + 160 + 230 + 21 + 20 + + + + + + + message button #161 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + Kill + 183 + 230 + 35 + 20 + + + + + + + + + + + rectangle #164 + 120 + 228 + 24 + + + + + + + + + + + choice button #167 + $(P)$(T).SET + 350 + 80 + 20 + + + + + false + + Item 1 + Item 2 + + + + message button #170 + + + $(P)$(T).SYNC + 1 + Write + + + $(P)$(T).SYNC + Sync + 370 + 50 + 20 + + + + + + + message button #173 + + + $(P)$(T).INIT + 1 + Write + + + $(P)$(T).INIT + Init + 50 + 370 + 50 + 20 + + + + + + + message button #176 + + + $(P)$(T).ZERO + 1 + Write + + + $(P)$(T).ZERO + Zero + 80 + 350 + 35 + 20 + + + + + + + message button #179 + + + $(P)$(Q):stop.VAL + 1 + Write + + + $(P)$(Q):stop.VAL + Stop + 120 + 366 + 60 + 25 + + + + + + + + + + + text #182 + Done + 120 + 345 + 60 + + + + + + + + + 1 + + + + false + + $(P)$(Q):done.VAL + + + + + text #186 + Moving + 120 + 345 + 60 + + + + + + + + + 1 + + + + false + + $(P)$(Q):done.VAL + + + + + related display #190 + + + table_full.opi + replace + More + + + table_setup_SRI.opi + tab + Setup (SRI geometry) + + + table_setup_GEOCARS.opi + tab + Setup (GEOCARS geometry) + + + table_setup_NEWPORT.opi + tab + Setup (NEWPORT geometry) + + + table_setup_PNC.opi + tab + Setup (PNC geometry) + + + table_fixedPoints.opi + tab + Fixed points + + + More + 185 + 370 + 40 + 20 + + + + + + + + + + + related display #198 + + + table_tiny.opi + replace + Less + + + Less + 185 + 350 + 40 + 20 + + + + + + + + + + + text #201 + Z + 10 + 282 + 20 + + + + + true + + + text entry #204 + $(P)$(T).Z + 25 + 280 + 80 + 22 + + + + + + + + + 1 + false + false + + + rectangle #208 + 23 + 258 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + related display #212 + + + scanParmsCustom.opi + + $(Q)Z + $(T).LEGU + $(Q)Z + $(Q)Z + + tab + Setup scan parameters + + + Scan + 8 + 320 + 35 + 20 + + + + + + + + + + + message button #215 + + + $(P)$(Q)Z:scanParms.GO + 1 + Write + + + $(P)$(Q)Z:scanParms.GO + Go + 45 + 320 + 21 + 20 + + + + + + + message button #218 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + Kill + 68 + 320 + 35 + 20 + + + + + + + + + + + rectangle #221 + 5 + 318 + 24 + + + + + + + + + + + text #224 + AZ + 115 + 281 + 20 + + + + + true + + + text entry #227 + $(P)$(T).AZ + 140 + 280 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #231 + $(P)$(T).EAZ + 140 + 262 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #235 + 140 + 260 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #239 + 138 + 258 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + related display #243 + + + scanParmsCustom.opi + + $(Q)AZ + $(T).AEGU + $(Q)AZ + $(Q)AZ + + tab + Setup scan parameters + + + Scan + 123 + 320 + 35 + 20 + + + + + + + + + + + message button #246 + + + $(P)$(Q)AZ:scanParms.GO + 1 + Write + + + $(P)$(Q)AZ:scanParms.GO + Go + 160 + 320 + 21 + 20 + + + + + + + message button #249 + + + $(P)allstop.VAL + 1 + Write + + + $(P)allstop.VAL + Kill + 183 + 320 + 35 + 20 + + + + + + + + + + + rectangle #252 + 120 + 318 + 24 + + + + + + + + + + + text entry #255 + $(P)$(Q):x_tweakVal.VAL + 45 + 120 + 44 + 18 + + + + + + + + + 1 + false + false + + + message button #259 + + + $(P)$(Q):x_tweak.A + 1 + Write + + + $(P)$(Q):x_tweak.A + > + 89 + 120 + 20 + 18 + + + + + + + message button #262 + + + $(P)$(Q):x_tweak.B + 1 + Write + + + $(P)$(Q):x_tweak.B + < + 25 + 120 + 20 + 18 + + + + + + + text entry #265 + $(P)$(Q):ax_tweakVal.VAL + 160 + 120 + 44 + 18 + + + + + + + + + 1 + false + false + + + message button #269 + + + $(P)$(Q):ax_tweak.A + 1 + Write + + + $(P)$(Q):ax_tweak.A + > + 204 + 120 + 20 + 18 + + + + + + + message button #272 + + + $(P)$(Q):ax_tweak.B + 1 + Write + + + $(P)$(Q):ax_tweak.B + < + 140 + 120 + 20 + 18 + + + + + + + text entry #275 + $(P)$(Q):y_tweakVal.VAL + 45 + 210 + 44 + 18 + + + + + + + + + 1 + false + false + + + message button #279 + + + $(P)$(Q):y_tweak.A + 1 + Write + + + $(P)$(Q):y_tweak.A + > + 89 + 210 + 20 + 18 + + + + + + + message button #282 + + + $(P)$(Q):y_tweak.B + 1 + Write + + + $(P)$(Q):y_tweak.B + < + 25 + 210 + 20 + 18 + + + + + + + text entry #285 + $(P)$(Q):ay_tweakVal.VAL + 160 + 210 + 44 + 18 + + + + + + + + + 1 + false + false + + + message button #289 + + + $(P)$(Q):ay_tweak.A + 1 + Write + + + $(P)$(Q):ay_tweak.A + > + 204 + 210 + 20 + 18 + + + + + + + message button #292 + + + $(P)$(Q):ay_tweak.B + 1 + Write + + + $(P)$(Q):ay_tweak.B + < + 140 + 210 + 20 + 18 + + + + + + + text entry #295 + $(P)$(Q):z_tweakVal.VAL + 45 + 300 + 44 + 18 + + + + + + + + + 1 + false + false + + + message button #299 + + + $(P)$(Q):z_tweak.A + 1 + Write + + + $(P)$(Q):z_tweak.A + > + 89 + 300 + 20 + 18 + + + + + + + message button #302 + + + $(P)$(Q):z_tweak.B + 1 + Write + + + $(P)$(Q):z_tweak.B + < + 25 + 300 + 20 + 18 + + + + + + + text entry #305 + $(P)$(Q):az_tweakVal.VAL + 160 + 300 + 44 + 18 + + + + + + + + + 1 + false + false + + + message button #309 + + + $(P)$(Q):az_tweak.A + 1 + Write + + + $(P)$(Q):az_tweak.A + > + 204 + 300 + 20 + 18 + + + + + + + message button #312 + + + $(P)$(Q):az_tweak.B + 1 + Write + + + $(P)$(Q):az_tweak.B + < + 140 + 300 + 20 + 18 + + + + + + + polyline #315 + -1 + 58 + 233 + 2 + 2 + + + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/table_fixedPoints.bob b/opticsApp/op/bob/autoconvert/table_fixedPoints.bob new file mode 100644 index 0000000..199d382 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/table_fixedPoints.bob @@ -0,0 +1,1345 @@ + + + table_fixedPoints + 406 + 363 + 330 + 310 + + + + + false + 5 + + text #6 + + 30 + 14 + + + + + 1 + + + text #9 + USE + 30 + 25 + 14 + + + + + 1 + + + text #12 + Description + 30 + 25 + 14 + + + + + 1 + + + text #15 + Sy + 200 + 25 + 60 + 14 + + + + + 1 + + + text #18 + Sz + 265 + 25 + 60 + 14 + + + + + 1 + + + text #21 + Sx + 135 + 25 + 60 + 14 + + + + + 1 + + + message button #24 + + + $(P)$(Q)fpSelect + 0 + 2 + 50 + 22 + 16 + + + + + + + text entry #27 + $(P)$(Q)fp0Name + 30 + 50 + 16 + + + + + + + + + 1 + false + false + + + text entry #31 + $(P)$(Q)fp0.DO3 + 200 + 50 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #35 + $(P)$(Q)fp0.DO4 + 265 + 50 + 60 + 16 + + + + + + + + + 1 + false + false + + + text update #39 + $(P)$(T).LEGU + 200 + 40 + 60 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #43 + $(P)$(Q)fp0.DO2 + 135 + 50 + 60 + 16 + + + + + + + + + 1 + false + false + + + message button #47 + + + $(P)$(Q)fpSelect + 1 + 2 + 70 + 22 + 16 + + + + + + + text entry #50 + $(P)$(Q)fp1Name + 30 + 70 + 16 + + + + + + + + + 1 + false + false + + + text entry #54 + $(P)$(Q)fp1.DO3 + 200 + 70 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #58 + $(P)$(Q)fp1.DO4 + 265 + 70 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #62 + $(P)$(Q)fp1.DO2 + 135 + 70 + 60 + 16 + + + + + + + + + 1 + false + false + + + message button #66 + + + $(P)$(Q)fpSelect + 2 + 2 + 90 + 22 + 16 + + + + + + + text entry #69 + $(P)$(Q)fp2Name + 30 + 90 + 16 + + + + + + + + + 1 + false + false + + + text entry #73 + $(P)$(Q)fp2.DO3 + 200 + 90 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #77 + $(P)$(Q)fp2.DO4 + 265 + 90 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #81 + $(P)$(Q)fp2.DO2 + 135 + 90 + 60 + 16 + + + + + + + + + 1 + false + false + + + message button #85 + + + $(P)$(Q)fpSelect + 3 + 2 + 110 + 22 + 16 + + + + + + + text entry #88 + $(P)$(Q)fp3Name + 30 + 110 + 16 + + + + + + + + + 1 + false + false + + + text entry #92 + $(P)$(Q)fp3.DO3 + 200 + 110 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #96 + $(P)$(Q)fp3.DO4 + 265 + 110 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #100 + $(P)$(Q)fp3.DO2 + 135 + 110 + 60 + 16 + + + + + + + + + 1 + false + false + + + message button #104 + + + $(P)$(Q)fpSelect + 4 + 2 + 130 + 22 + 16 + + + + + + + text entry #107 + $(P)$(Q)fp4Name + 30 + 130 + 16 + + + + + + + + + 1 + false + false + + + text entry #111 + $(P)$(Q)fp4.DO3 + 200 + 130 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #115 + $(P)$(Q)fp4.DO4 + 265 + 130 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #119 + $(P)$(Q)fp4.DO2 + 135 + 130 + 60 + 16 + + + + + + + + + 1 + false + false + + + message button #123 + + + $(P)$(Q)fpSelect + 5 + 2 + 150 + 22 + 16 + + + + + + + text entry #126 + $(P)$(Q)fp5Name + 30 + 150 + 16 + + + + + + + + + 1 + false + false + + + text entry #130 + $(P)$(Q)fp5.DO3 + 200 + 150 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #134 + $(P)$(Q)fp5.DO4 + 265 + 150 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #138 + $(P)$(Q)fp5.DO2 + 135 + 150 + 60 + 16 + + + + + + + + + 1 + false + false + + + message button #142 + + + $(P)$(Q)fpSelect + 6 + 2 + 170 + 22 + 16 + + + + + + + text entry #145 + $(P)$(Q)fp6Name + 30 + 170 + 16 + + + + + + + + + 1 + false + false + + + text entry #149 + $(P)$(Q)fp6.DO3 + 200 + 170 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #153 + $(P)$(Q)fp6.DO4 + 265 + 170 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #157 + $(P)$(Q)fp6.DO2 + 135 + 170 + 60 + 16 + + + + + + + + + 1 + false + false + + + message button #161 + + + $(P)$(Q)fpSelect + 7 + 2 + 190 + 22 + 16 + + + + + + + text entry #164 + $(P)$(Q)fp7Name + 30 + 190 + 16 + + + + + + + + + 1 + false + false + + + text entry #168 + $(P)$(Q)fp7.DO3 + 200 + 190 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #172 + $(P)$(Q)fp7.DO4 + 265 + 190 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #176 + $(P)$(Q)fp7.DO2 + 135 + 190 + 60 + 16 + + + + + + + + + 1 + false + false + + + message button #180 + + + $(P)$(Q)fpSelect + 8 + 2 + 210 + 22 + 16 + + + + + + + text entry #183 + $(P)$(Q)fp8Name + 30 + 210 + 16 + + + + + + + + + 1 + false + false + + + text entry #187 + $(P)$(Q)fp8.DO3 + 200 + 210 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #191 + $(P)$(Q)fp8.DO4 + 265 + 210 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #195 + $(P)$(Q)fp8.DO2 + 135 + 210 + 60 + 16 + + + + + + + + + 1 + false + false + + + message button #199 + + + $(P)$(Q)fpSelect + 9 + 2 + 230 + 22 + 16 + + + + + + + text entry #202 + $(P)$(Q)fp9Name + 30 + 230 + 16 + + + + + + + + + 1 + false + false + + + text entry #206 + $(P)$(Q)fp9.DO3 + 200 + 230 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #210 + $(P)$(Q)fp9.DO4 + 265 + 230 + 60 + 16 + + + + + + + + + 1 + false + false + + + text entry #214 + $(P)$(Q)fp9.DO2 + 135 + 230 + 60 + 16 + + + + + + + + + 1 + false + false + + + text update #218 + $(P)$(T).DESC + 1 + 328 + + + + + + + + + + + + + 1 + false + 1 + false + + + polyline #222 + 20 + 329 + 3 + + + + + + + + + + + + + text #226 + NOTE: after changing a description, you must + 5 + 250 + 320 + 14 + + + + + true + + + text #229 + close and re-open any display containing the + 5 + 265 + 320 + 14 + + + + + true + + + text #232 + fixed-point menu: + 5 + 280 + 120 + 14 + + + + + true + + + menu #235 + $(P)$(Q)fpSelect + 135 + 285 + 95 + 20 + + + + + false + + + related display #238 + + + table_fixedPoints_refresh.opi + replace + Fixed points + + + Refresh + 240 + 285 + 90 + 20 + + + + + + + + + + + rectangle #241 + 47 + 329 + 22 + + + + + + + + + + + + false + + $(P)$(Q)fpSelect.VAL + + + + + rectangle #245 + 67 + 329 + 22 + + + + + + + + + + + + false + + $(P)$(Q)fpSelect.VAL + + + + + rectangle #249 + 87 + 329 + 22 + + + + + + + + + + + + false + + $(P)$(Q)fpSelect.VAL + + + + + rectangle #253 + 107 + 329 + 22 + + + + + + + + + + + + false + + $(P)$(Q)fpSelect.VAL + + + + + rectangle #257 + 127 + 329 + 22 + + + + + + + + + + + + false + + $(P)$(Q)fpSelect.VAL + + + + + rectangle #261 + 147 + 329 + 22 + + + + + + + + + + + + false + + $(P)$(Q)fpSelect.VAL + + + + + rectangle #265 + 167 + 329 + 22 + + + + + + + + + + + + false + + $(P)$(Q)fpSelect.VAL + + + + + rectangle #269 + 187 + 329 + 22 + + + + + + + + + + + + false + + $(P)$(Q)fpSelect.VAL + + + + + rectangle #273 + 207 + 329 + 22 + + + + + + + + + + + + false + + $(P)$(Q)fpSelect.VAL + + + + + rectangle #277 + 227 + 329 + 22 + + + + + + + + + + + + false + + $(P)$(Q)fpSelect.VAL + + + + diff --git a/opticsApp/op/bob/autoconvert/table_fixedPoints_refresh.bob b/opticsApp/op/bob/autoconvert/table_fixedPoints_refresh.bob new file mode 100644 index 0000000..6381973 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/table_fixedPoints_refresh.bob @@ -0,0 +1,37 @@ + + + table_fixedPoints_refresh + 551 + 483 + 330 + 310 + + + + + false + 5 + + related display #6 + + + table_fixedPoints.opi + replace + Fixed points + + + Press again + 240 + 285 + 90 + 20 + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/table_full.bob b/opticsApp/op/bob/autoconvert/table_full.bob new file mode 100644 index 0000000..30f7e5d --- /dev/null +++ b/opticsApp/op/bob/autoconvert/table_full.bob @@ -0,0 +1,4018 @@ + + + table_full + 964 + 512 + 490 + 400 + + + + + false + 5 + + rectangle #6 + 490 + 27 + + + + + + + + + + + text #9 + ($(P)$(T)) + 245 + 5 + 245 + 15 + + + + + 1 + + + text update #12 + $(P)$(T).DESC + 405 + 519 + 285 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #16 + $(P)$(T).DESC + 245 + 27 + + + + + + + + + + + + + 1 + false + false + + + polyline #20 + 27 + 489 + 3 + + + + + + + + + + + + + text update #24 + $(P)$(T).HLZ + 25 + 270 + 80 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #28 + $(P)$(T).HLY + 25 + 180 + 80 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #32 + $(P)$(T).HLX + 25 + 90 + 80 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #36 + $(P)$(T).EZ + 25 + 282 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #40 + 25 + 280 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + text update #44 + $(P)$(T).EY + 25 + 192 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #48 + 25 + 190 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + text update #52 + $(P)$(T).EX + 25 + 102 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #56 + 25 + 100 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + choice button #60 + $(P)$(T).SET + 5 + 365 + 83 + 20 + + + + + false + + Item 1 + Item 2 + + + + message button #63 + + + $(P)$(T).INIT + 1 + Write + + + $(P)$(T).INIT + Init + 180 + 365 + 40 + 20 + + + + + + + message button #66 + + + $(P)$(T).SYNC + 1 + Write + + + $(P)$(T).SYNC + Sync + 140 + 365 + 40 + 20 + + + + + + + message button #69 + + + $(P)$(T).ZERO + 1 + Write + + + $(P)$(T).ZERO + Zero + 90 + 365 + 40 + 20 + + + + + + + message button #72 + + + $(P)$(Q):stop.VAL + 1 + Write + + + $(P)$(Q):stop.VAL + Stop Table + 305 + 365 + 115 + 35 + + + + + + + + + + + text entry #75 + $(P)$(T).X + 25 + 120 + 80 + 22 + + + + + + + + + 1 + false + false + + + text #79 + X + 10 + 120 + 20 + + + + + true + + + text update #82 + $(P)$(T).LLX + 25 + 143 + 80 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #86 + $(P)$(T).Y + 25 + 210 + 80 + 22 + + + + + + + + + 1 + false + false + + + text #90 + Y + 10 + 210 + 20 + + + + + true + + + text entry #93 + $(P)$(Q):y_tweakVal.VAL + 43 + 245 + 44 + 18 + + + + + + + + + 1 + false + false + + + message button #97 + + + $(P)$(Q):y_tweak.A + 1 + Write + + + $(P)$(Q):y_tweak.A + > + 87 + 243 + 20 + 20 + + + + + + + message button #100 + + + $(P)$(Q):y_tweak.B + 1 + Write + + + $(P)$(Q):y_tweak.B + < + 23 + 243 + 20 + 20 + + + + + + + text update #103 + $(P)$(T).LLY + 25 + 233 + 80 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #107 + $(P)$(T).Z + 25 + 300 + 80 + 22 + + + + + + + + + 1 + false + false + + + text #111 + Z + 10 + 300 + 20 + + + + + true + + + text entry #114 + $(P)$(Q):z_tweakVal.VAL + 43 + 335 + 44 + 18 + + + + + + + + + 1 + false + false + + + message button #118 + + + $(P)$(Q):z_tweak.A + 1 + Write + + + $(P)$(Q):z_tweak.A + > + 87 + 333 + 20 + 20 + + + + + + + message button #121 + + + $(P)$(Q):z_tweak.B + 1 + Write + + + $(P)$(Q):z_tweak.B + < + 23 + 333 + 20 + 20 + + + + + + + text update #124 + $(P)$(T).LLZ + 25 + 323 + 80 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #128 + Limit + 208 + 55 + 65 + + + + + + + + + 1 + + + + false + + $(P)$(T).LVIO + + + + + text #132 + Motors + 248 + 55 + 230 + + + + + 1 + + + text update #135 + $(P)$(T).LEGU + 10 + 71 + 95 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #139 + Translate + 10 + 55 + 115 + + + + + 1 + + + polyline #142 + 5 + 85 + 2 + 273 + 2 + + + + + + + + + + + + + polyline #146 + 110 + 85 + 2 + 273 + 2 + + + + + + + + + + + + + polyline #150 + 52 + 488 + 2 + 2 + + + + + + + + + + + + + rectangle #154 + 23 + 98 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #158 + 23 + 188 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #162 + 23 + 278 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + text #166 + AX + 115 + 120 + 20 + + + + + true + + + message button #169 + + + $(P)$(Q):ax_tweak.B + 1 + Write + + + $(P)$(Q):ax_tweak.B + < + 138 + 153 + 20 + 20 + + + + + + + text #172 + AY + 115 + 210 + 20 + + + + + true + + + message button #175 + + + $(P)$(Q):ay_tweak.B + 1 + Write + + + $(P)$(Q):ay_tweak.B + < + 138 + 243 + 20 + 20 + + + + + + + text #178 + AZ + 115 + 300 + 20 + + + + + true + + + message button #181 + + + $(P)$(Q):az_tweak.B + 1 + Write + + + $(P)$(Q):az_tweak.B + < + 138 + 333 + 20 + 20 + + + + + + + text update #184 + $(P)$(T).AEGU + 115 + 71 + 105 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #188 + Rotate + 115 + 55 + 125 + + + + + 1 + + + polyline #191 + 225 + 85 + 2 + 274 + 2 + + + + + + + + + + + + + text update #195 + $(P)$(T).HLAX + 140 + 90 + 80 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #199 + $(P)$(T).EAX + 140 + 102 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #203 + $(P)$(T).AX + 140 + 120 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #207 + $(P)$(T).LLAX + 140 + 143 + 80 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #211 + $(P)$(T).HLAY + 140 + 180 + 80 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #215 + $(P)$(T).EAY + 140 + 192 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #219 + $(P)$(T).AY + 140 + 210 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #223 + $(P)$(T).LLAY + 140 + 233 + 80 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #227 + $(P)$(T).HLAZ + 140 + 270 + 80 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #231 + $(P)$(T).EAZ + 140 + 282 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #235 + $(P)$(T).AZ + 140 + 300 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #239 + $(P)$(T).LLAZ + 140 + 323 + 80 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #243 + 140 + 100 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #247 + 140 + 190 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #251 + 140 + 280 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #255 + 138 + 98 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #259 + 138 + 188 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #263 + 138 + 278 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + text entry #267 + $(P)$(Q):az_tweakVal.VAL + 158 + 335 + 44 + 18 + + + + + + + + + 1 + false + false + + + text entry #271 + $(P)$(Q):ay_tweakVal.VAL + 158 + 245 + 44 + 18 + + + + + + + + + 1 + false + false + + + text entry #275 + $(P)$(Q):ax_tweakVal.VAL + 158 + 155 + 44 + 18 + + + + + + + + + 1 + false + false + + + message button #279 + + + $(P)$(Q):ax_tweak.A + 1 + Write + + + $(P)$(Q):ax_tweak.A + > + 202 + 153 + 20 + 20 + + + + + + + message button #282 + + + $(P)$(Q):ay_tweak.A + 1 + Write + + + $(P)$(Q):ay_tweak.A + > + 202 + 243 + 20 + 20 + + + + + + + message button #285 + + + $(P)$(Q):az_tweak.A + 1 + Write + + + $(P)$(Q):az_tweak.A + > + 202 + 333 + 20 + 20 + + + + + + + polyline #288 + 4 + 86 + 224 + 2 + 2 + + + + + + + + + + + + + polyline #292 + 4 + 176 + 223 + 2 + 2 + + + + + + + + + + + + + polyline #296 + 4 + 266 + 223 + 2 + 2 + + + + + + + + + + + + + polyline #300 + 4 + 356 + 225 + 2 + 2 + + + + + + + + + + + + + text #304 + M1Y + 248 + 300 + 30 + + + + + true + + + text #307 + M0Y + 248 + 210 + 30 + + + + + true + + + text #310 + M0X + 248 + 120 + 30 + + + + + true + + + message button #313 + + + $(P)$(M1Y).TWR + 1 + Write + + + $(P)$(M1Y).TWR + < + 280 + 333 + 20 + 20 + + + + + + + rectangle #316 + 280 + 270 + 10 + 16 + + + + + + + + + + + + false + + $(P)$(M1Y).LLS + + + + + rectangle #320 + 280 + 180 + 10 + 16 + + + + + + + + + + + + false + + $(P)$(M0Y).LLS + + + + + rectangle #324 + 280 + 90 + 10 + 16 + + + + + + + + + + + + false + + $(P)$(M0X).LLS + + + + + text update #328 + $(P)$(M2X).EGU + 370 + 71 + 105 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #332 + $(P)$(M0X).EGU + 248 + 71 + 115 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + polyline #336 + 246 + 85 + 2 + 272 + 2 + + + + + + + + + + + + + text update #340 + $(P)$(M0X).HLM + 288 + 90 + 64 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #344 + $(P)$(M0X).RBV + 280 + 102 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #348 + $(P)$(M0X).VAL + 280 + 120 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #352 + $(P)$(M0X).LLM + 288 + 143 + 64 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #356 + $(P)$(M0Y).HLM + 288 + 180 + 64 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #360 + $(P)$(M0Y).RBV + 280 + 192 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #364 + $(P)$(M0Y).VAL + 280 + 210 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #368 + $(P)$(M0Y).LLM + 288 + 233 + 64 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #372 + $(P)$(M1Y).HLM + 288 + 270 + 64 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #376 + $(P)$(M1Y).RBV + 280 + 282 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #380 + $(P)$(M1Y).VAL + 280 + 300 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #384 + $(P)$(M1Y).LLM + 288 + 323 + 64 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + message button #388 + + + $(P)$(M0X).TWR + 1 + Write + + + $(P)$(M0X).TWR + < + 280 + 153 + 20 + 20 + + + + + + + message button #391 + + + $(P)$(M0Y).TWR + 1 + Write + + + $(P)$(M0Y).TWR + < + 280 + 243 + 20 + 20 + + + + + + + text entry #394 + $(P)$(M1Y).TWV + 300 + 335 + 40 + 18 + + + + + + + + + 1 + false + false + + + text entry #398 + $(P)$(M0Y).TWV + 300 + 245 + 40 + 18 + + + + + + + + + 1 + false + false + + + text entry #402 + $(P)$(M0X).TWV + 300 + 155 + 40 + 18 + + + + + + + + + 1 + false + false + + + message button #406 + + + $(P)$(M0X).TWF + 1 + Write + + + $(P)$(M0X).TWF + > + 340 + 153 + 20 + 20 + + + + + + + message button #409 + + + $(P)$(M0Y).TWF + 1 + Write + + + $(P)$(M0Y).TWF + > + 340 + 243 + 20 + 20 + + + + + + + message button #412 + + + $(P)$(M1Y).TWF + 1 + Write + + + $(P)$(M1Y).TWF + > + 340 + 333 + 20 + 20 + + + + + + + rectangle #415 + 350 + 90 + 10 + 16 + + + + + + + + + + + + false + + $(P)$(M0X).HLS + + + + + rectangle #419 + 350 + 180 + 10 + 16 + + + + + + + + + + + + false + + $(P)$(M0Y).HLS + + + + + rectangle #423 + 350 + 270 + 10 + 16 + + + + + + + + + + + + false + + $(P)$(M1Y).HLS + + + + + rectangle #427 + 278 + 88 + 84 + 87 + 2 + + + + + + + + + true + + + + false + + $(P)$(M0X).DMOV + + + + + rectangle #431 + 278 + 178 + 84 + 87 + 2 + + + + + + + + + true + + + + false + + $(P)$(M0Y).DMOV + + + + + rectangle #435 + 278 + 268 + 84 + 87 + 2 + + + + + + + + + true + + + + false + + $(P)$(M1Y).DMOV + + + + + text #439 + M2Z + 368 + 300 + 30 + + + + + true + + + text #442 + M2Y + 368 + 210 + 30 + + + + + true + + + text #445 + M2X + 368 + 120 + 30 + + + + + true + + + message button #448 + + + $(P)$(M2Z).TWR + 1 + Write + + + $(P)$(M2Z).TWR + < + 400 + 333 + 20 + 20 + + + + + + + rectangle #451 + 400 + 270 + 10 + 16 + + + + + + + + + + + + false + + $(P)$(M2Z).LLS + + + + + rectangle #455 + 400 + 180 + 10 + 16 + + + + + + + + + + + + false + + $(P)$(M2Y).LLS + + + + + rectangle #459 + 400 + 90 + 10 + 16 + + + + + + + + + + + + false + + $(P)$(M2X).LLS + + + + + polyline #463 + 364 + 86 + 2 + 272 + 2 + + + + + + + + + + + + + text update #467 + $(P)$(M2X).HLM + 408 + 90 + 64 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #471 + $(P)$(M2X).RBV + 400 + 102 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #475 + $(P)$(M2X).VAL + 400 + 120 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #479 + $(P)$(M2X).LLM + 408 + 143 + 64 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #483 + $(P)$(M2Y).HLM + 408 + 180 + 64 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #487 + $(P)$(M2Y).RBV + 400 + 192 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #491 + $(P)$(M2Y).VAL + 400 + 210 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #495 + $(P)$(M2Y).LLM + 408 + 233 + 64 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #499 + $(P)$(M2Z).HLM + 408 + 270 + 64 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #503 + $(P)$(M2Z).RBV + 400 + 282 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #507 + $(P)$(M2Z).VAL + 400 + 300 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #511 + $(P)$(M2Z).LLM + 408 + 323 + 64 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + message button #515 + + + $(P)$(M2X).TWR + 1 + Write + + + $(P)$(M2X).TWR + < + 400 + 153 + 20 + 20 + + + + + + + message button #518 + + + $(P)$(M2Y).TWR + 1 + Write + + + $(P)$(M2Y).TWR + < + 400 + 243 + 20 + 20 + + + + + + + text entry #521 + $(P)$(M2X).TWV + 420 + 155 + 40 + 18 + + + + + + + + + 1 + false + false + + + text entry #525 + $(P)$(M2Y).TWV + 420 + 245 + 40 + 18 + + + + + + + + + 1 + false + false + + + text entry #529 + $(P)$(M2Z).TWV + 420 + 335 + 40 + 18 + + + + + + + + + 1 + false + false + + + message button #533 + + + $(P)$(M2X).TWF + 1 + Write + + + $(P)$(M2X).TWF + > + 460 + 153 + 20 + 20 + + + + + + + message button #536 + + + $(P)$(M2Y).TWF + 1 + Write + + + $(P)$(M2Y).TWF + > + 460 + 243 + 20 + 20 + + + + + + + message button #539 + + + $(P)$(M2Z).TWF + 1 + Write + + + $(P)$(M2Z).TWF + > + 460 + 333 + 20 + 20 + + + + + + + rectangle #542 + 470 + 90 + 10 + 16 + + + + + + + + + + + + false + + $(P)$(M2X).HLS + + + + + rectangle #546 + 470 + 180 + 10 + 16 + + + + + + + + + + + + false + + $(P)$(M2Y).HLS + + + + + rectangle #550 + 470 + 270 + 10 + 16 + + + + + + + + + + + + false + + $(P)$(M2Z).HLS + + + + + rectangle #554 + 398 + 88 + 84 + 87 + 2 + + + + + + + + + true + + + + false + + $(P)$(M2X).DMOV + + + + + rectangle #558 + 398 + 178 + 84 + 87 + 2 + + + + + + + + + true + + + + false + + $(P)$(M2Y).DMOV + + + + + rectangle #562 + 398 + 268 + 84 + 87 + 2 + + + + + + + + + true + + + + false + + $(P)$(M2Z).DMOV + + + + + polyline #566 + 245 + 86 + 239 + 2 + 2 + + + + + + + + + + + + + polyline #570 + 245 + 176 + 240 + 2 + 2 + + + + + + + + + + + + + polyline #574 + 245 + 266 + 240 + 2 + 2 + + + + + + + + + + + + + polyline #578 + 245 + 356 + 239 + 2 + 2 + + + + + + + + + + + + + polyline #582 + 482 + 85 + 2 + 273 + 2 + + + + + + + + + + + + + text #586 + Moving + 220 + 365 + 75 + + + + + + + + + 1 + + + + false + + $(P)$(Q):done.VAL + + + + + text #590 + Done + 220 + 365 + 75 + + + + + + + + + 1 + + + + false + + $(P)$(Q):done.VAL + + + + + related display #594 + + + motorx_tiny.opi + + $(M2X) + + tab + M2X (Tiny) + + + motorx.opi + + $(M2X) + + tab + M2X (Small) + + + motorx_more.opi + + $(M2X) + + tab + M2X (Medium) + + + motorx_setup.opi + + $(M2X) + + tab + M2X (Setup) + + + scanParms.opi + + $(M2X) + $(M2X) + + tab + Scan parameters + + + + 366 + 88 + 18 + 18 + + + + + + + + + + + related display #601 + + + motorx_tiny.opi + + $(M2Y) + + tab + M2Y (Tiny) + + + motorx.opi + + $(M2Y) + + tab + M2Y (Small) + + + motorx_more.opi + + $(M2Y) + + tab + M2Y (Medium) + + + motorx_setup.opi + + $(M2Y) + + tab + M2Y (Setup) + + + scanParms.opi + + $(M2Y) + $(M2Y) + + tab + Scan parameters + + + + 366 + 178 + 18 + 18 + + + + + + + + + + + related display #608 + + + motorx_tiny.opi + + $(M2Z) + + tab + M2Z (Tiny) + + + motorx.opi + + $(M2Z) + + tab + M2Z (Small) + + + motorx_more.opi + + $(M2Z) + + tab + M2Z (Medium) + + + motorx_setup.opi + + $(M2Z) + + tab + M2Z (Setup) + + + scanParms.opi + + $(M2Z) + $(M2Z) + + tab + Scan parameters + + + + 366 + 268 + 18 + 18 + + + + + + + + + + + related display #615 + + + motorx_tiny.opi + + $(M1Y) + + tab + M1Y (Tiny) + + + motorx.opi + + $(M1Y) + + tab + M1Y (Small) + + + motorx_more.opi + + $(M1Y) + + tab + M1Y (Medium) + + + motorx_setup.opi + + $(M1Y) + + tab + M1Y (Setup) + + + scanParms.opi + + $(M1Y) + $(M1Y) + + tab + Scan parameters + + + + 248 + 268 + 18 + 18 + + + + + + + + + + + related display #622 + + + motorx_tiny.opi + + $(M0Y) + + tab + M0Y (Tiny) + + + motorx.opi + + $(M0Y) + + tab + M0Y (Small) + + + motorx_more.opi + + $(M0Y) + + tab + M0Y (Medium) + + + motorx_setup.opi + + $(M0Y) + + tab + M0Y (Setup) + + + scanParms.opi + + $(M0Y) + $(M0Y) + + tab + Scan parameters + + + + 248 + 178 + 18 + 18 + + + + + + + + + + + related display #629 + + + motorx_tiny.opi + + $(M0X) + + tab + M0X (Tiny) + + + motorx.opi + + $(M0X) + + tab + M0X (Small) + + + motorx_more.opi + + $(M0X) + + tab + M0X (Medium) + + + motorx_setup.opi + + $(M0X) + + tab + M0X (Setup) + + + scanParms.opi + + $(M0X) + $(M0X) + + tab + Scan parameters + + + + 248 + 88 + 18 + 18 + + + + + + + + + + + related display #636 + + + scanParmsCustom.opi + + $(Q)AX + $(T).AEGU + $(Q)AX + $(Q)AX + + tab + Setup scan parameters + + + + 112 + 88 + 18 + 18 + + + + + + + + + + + related display #639 + + + scanParmsCustom.opi + + $(Q)AY + $(T).AEGU + $(Q)AY + $(Q)AY + + tab + Setup scan parameters + + + + 112 + 178 + 18 + 18 + + + + + + + + + + + related display #642 + + + scanParmsCustom.opi + + $(Q)AZ + $(T).AEGU + $(Q)AZ + $(Q)AZ + + tab + Setup scan parameters + + + + 112 + 268 + 18 + 18 + + + + + + + + + + + related display #645 + + + scanParmsCustom.opi + + $(Q)Z + $(T).LEGU + $(Q)Z + $(Q)Z + + tab + Setup scan parameters + + + + 7 + 268 + 18 + 18 + + + + + + + + + + + related display #648 + + + scanParmsCustom.opi + + $(Q)Y + $(T).LEGU + $(Q)Y + $(Q)Y + + tab + Setup scan parameters + + + + 7 + 178 + 18 + 18 + + + + + + + + + + + related display #651 + + + scanParmsCustom.opi + + $(Q)X + $(T).LEGU + $(Q)X + $(Q)X + + tab + Setup scan parameters + + + + 7 + 88 + 18 + 18 + + + + + + + + + + + related display #654 + + + table_setup_SRI.opi + tab + Setup (SRI geometry) + + + table_setup_GEOCARS.opi + tab + Setup (GEOCARS geometry) + + + table_setup_NEWPORT.opi + tab + Setup (NEWPORT geometry) + + + table_setup_PNC.opi + tab + Setup (PNC geometry) + + + table_fixedPoints.opi + tab + Fixed points + + + More + 440 + 380 + 40 + 20 + + + + + + + + + + + related display #661 + + + table.opi + replace + Small display + + + Less + 440 + 360 + 40 + 20 + + + + + + + + + + + text entry #664 + $(P)$(Q):x_tweakVal.VAL + 43 + 155 + 44 + 18 + + + + + + + + + 1 + false + false + + + message button #668 + + + $(P)$(Q):x_tweak.A + 1 + Write + + + $(P)$(Q):x_tweak.A + > + 87 + 153 + 20 + 20 + + + + + + + message button #671 + + + $(P)$(Q):x_tweak.B + 1 + Write + + + $(P)$(Q):x_tweak.B + < + 23 + 153 + 20 + 20 + + + + + + + text #674 + Record version: + 387 + 90 + 10 + + + + + true + + + text update #677 + $(P)$(T).VERS + 90 + 387 + 30 + 12 + + + + + + + + + + + + + 1 + false + false + + + related display #681 + + + table_full_refresh.opi + replace + Refresh fixed-point menu + + + Refresh menu + 395 + 31 + 95 + 20 + + + + + + + + + + + menu #684 + $(P)$(Q)fpSelect + 195 + 31 + 200 + 20 + + + + + false + + + text #687 + Fixed point: + 108 + 34 + 85 + 14 + 1 + + diff --git a/opticsApp/op/bob/autoconvert/table_full_refresh.bob b/opticsApp/op/bob/autoconvert/table_full_refresh.bob new file mode 100644 index 0000000..8ae602e --- /dev/null +++ b/opticsApp/op/bob/autoconvert/table_full_refresh.bob @@ -0,0 +1,60 @@ + + + table_full_refresh + 313 + 445 + 490 + 400 + + + + + false + 5 + + text update #6 + $(P)$(T).DESC + 405 + 519 + 285 + + + + + + + + + + + + + 1 + false + 1 + false + + + related display #10 + + + table_full.opi + replace + Refresh fixed-point menu + + + Press again + 395 + 31 + 95 + 20 + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/table_full_soft.bob b/opticsApp/op/bob/autoconvert/table_full_soft.bob new file mode 100644 index 0000000..477b9cc --- /dev/null +++ b/opticsApp/op/bob/autoconvert/table_full_soft.bob @@ -0,0 +1,4198 @@ + + + table_full_soft + 950 + 512 + 490 + 400 + + + + + false + 5 + + rectangle #6 + 490 + 27 + + + + + + + + + + + text #9 + ($(P)$(T)) + 245 + 5 + 245 + 15 + + + + + 1 + + + text update #12 + $(P)$(T).DESC + 405 + 519 + 285 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #16 + $(P)$(T).DESC + 245 + 27 + + + + + + + + + + + + + 1 + false + false + + + polyline #20 + 27 + 489 + 3 + + + + + + + + + + + + + text update #24 + $(P)$(Q):z.HLM + 25 + 270 + 80 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #28 + $(P)$(Q):y.HLM + 25 + 180 + 80 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #32 + $(P)$(Q):x.HLM + 25 + 90 + 80 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #36 + $(P)$(Q):z.RBV + 25 + 282 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #40 + 25 + 280 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + text update #44 + $(P)$(Q):y.RBV + 25 + 192 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #48 + 25 + 190 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + text update #52 + $(P)$(Q):x.RBV + 25 + 102 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #56 + 25 + 100 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + choice button #60 + $(P)$(T).SET + 5 + 365 + 83 + 20 + + + + + false + + Item 1 + Item 2 + + + + message button #63 + + + $(P)$(Q):init + 1 + Write + + + $(P)$(Q):init + Init + 180 + 365 + 40 + 20 + + + + + + + message button #66 + + + $(P)$(Q):sync + 1 + Write + + + $(P)$(Q):sync + Sync + 140 + 365 + 40 + 20 + + + + + + + message button #69 + + + $(P)$(Q):zero + 1 + Write + + + $(P)$(Q):zero + Zero + 90 + 365 + 40 + 20 + + + + + + + message button #72 + + + $(P)$(Q):stop.VAL + 1 + Write + + + $(P)$(Q):stop.VAL + Stop Table + 305 + 365 + 115 + 35 + + + + + + + + + + + text entry #75 + $(P)$(Q):x.VAL + 25 + 120 + 80 + 22 + + + + + + + + + 1 + false + false + + + text #79 + X + 10 + 120 + 20 + + + + + true + + + text update #82 + $(P)$(Q):x.LLM + 25 + 143 + 80 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #86 + $(P)$(Q):y.VAL + 25 + 210 + 80 + 22 + + + + + + + + + 1 + false + false + + + text #90 + Y + 10 + 210 + 20 + + + + + true + + + text entry #93 + $(P)$(Q):y.TWV + 43 + 245 + 44 + 18 + + + + + + + + + 1 + false + false + + + message button #97 + + + $(P)$(Q):y.TWF + 1 + Write + + + $(P)$(Q):y.TWF + > + 87 + 243 + 20 + 20 + + + + + + + message button #100 + + + $(P)$(Q):y.TWR + 1 + Write + + + $(P)$(Q):y.TWR + < + 23 + 243 + 20 + 20 + + + + + + + text update #103 + $(P)$(Q):y.LLM + 25 + 233 + 80 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #107 + $(P)$(Q):z.VAL + 25 + 300 + 80 + 22 + + + + + + + + + 1 + false + false + + + text #111 + Z + 10 + 300 + 20 + + + + + true + + + text entry #114 + $(P)$(Q):z.TWV + 43 + 335 + 44 + 18 + + + + + + + + + 1 + false + false + + + message button #118 + + + $(P)$(Q):z.TWF + 1 + Write + + + $(P)$(Q):z.TWF + > + 87 + 333 + 20 + 20 + + + + + + + message button #121 + + + $(P)$(Q):z.TWR + 1 + Write + + + $(P)$(Q):z.TWR + < + 23 + 333 + 20 + 20 + + + + + + + text update #124 + $(P)$(Q):z.LLM + 25 + 323 + 80 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #128 + Limit + 208 + 55 + 65 + + + + + + + + + 1 + + + + false + + $(P)$(T).LVIO + + + + + text #132 + Motors + 248 + 55 + 230 + + + + + 1 + + + text update #135 + $(P)$(T).LEGU + 10 + 71 + 95 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #139 + Translate + 10 + 55 + 115 + + + + + 1 + + + polyline #142 + 5 + 85 + 2 + 273 + 2 + + + + + + + + + + + + + polyline #146 + 110 + 85 + 2 + 273 + 2 + + + + + + + + + + + + + polyline #150 + 52 + 488 + 2 + 2 + + + + + + + + + + + + + rectangle #154 + 23 + 98 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #158 + 23 + 188 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #162 + 23 + 278 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + text #166 + AX + 115 + 120 + 20 + + + + + true + + + message button #169 + + + $(P)$(Q):ax.TWR + 1 + Write + + + $(P)$(Q):ax.TWR + < + 138 + 153 + 20 + 20 + + + + + + + text #172 + AY + 115 + 210 + 20 + + + + + true + + + message button #175 + + + $(P)$(Q):ay.TWR + 1 + Write + + + $(P)$(Q):ay.TWR + < + 138 + 243 + 20 + 20 + + + + + + + text #178 + AZ + 115 + 300 + 20 + + + + + true + + + message button #181 + + + $(P)$(Q):az.TWR + 1 + Write + + + $(P)$(Q):az.TWR + < + 138 + 333 + 20 + 20 + + + + + + + text update #184 + $(P)$(T).AEGU + 115 + 71 + 105 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #188 + Rotate + 115 + 55 + 125 + + + + + 1 + + + polyline #191 + 225 + 85 + 2 + 274 + 2 + + + + + + + + + + + + + text update #195 + $(P)$(Q):ax.HLM + 140 + 90 + 80 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #199 + $(P)$(Q):ax.RBV + 140 + 102 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #203 + $(P)$(Q):ax.VAL + 140 + 120 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #207 + $(P)$(Q):ax.LLM + 140 + 143 + 80 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #211 + $(P)$(Q):ay.HLM + 140 + 180 + 80 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #215 + $(P)$(Q):ay.RBV + 140 + 192 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #219 + $(P)$(Q):ay.VAL + 140 + 210 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #223 + $(P)$(Q):ay.LLM + 140 + 233 + 80 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #227 + $(P)$(Q):az.HLM + 140 + 270 + 80 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #231 + $(P)$(Q):az.RBV + 140 + 282 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #235 + $(P)$(Q):az.VAL + 140 + 300 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #239 + $(P)$(Q):az.LLM + 140 + 323 + 80 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #243 + 140 + 100 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #247 + 140 + 190 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #251 + 140 + 280 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #255 + 138 + 98 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #259 + 138 + 188 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #263 + 138 + 278 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + text entry #267 + $(P)$(Q):az.TWV + 158 + 335 + 44 + 18 + + + + + + + + + 1 + false + false + + + text entry #271 + $(P)$(Q):ay.TWV + 158 + 245 + 44 + 18 + + + + + + + + + 1 + false + false + + + text entry #275 + $(P)$(Q):ax.TWV + 158 + 155 + 44 + 18 + + + + + + + + + 1 + false + false + + + message button #279 + + + $(P)$(Q):ax.TWF + 1 + Write + + + $(P)$(Q):ax.TWF + > + 202 + 153 + 20 + 20 + + + + + + + message button #282 + + + $(P)$(Q):ay.TWF + 1 + Write + + + $(P)$(Q):ay.TWF + > + 202 + 243 + 20 + 20 + + + + + + + message button #285 + + + $(P)$(Q):az.TWF + 1 + Write + + + $(P)$(Q):az.TWF + > + 202 + 333 + 20 + 20 + + + + + + + polyline #288 + 4 + 86 + 224 + 2 + 2 + + + + + + + + + + + + + polyline #292 + 4 + 176 + 223 + 2 + 2 + + + + + + + + + + + + + polyline #296 + 4 + 266 + 223 + 2 + 2 + + + + + + + + + + + + + polyline #300 + 4 + 356 + 225 + 2 + 2 + + + + + + + + + + + + + text #304 + M1Y + 248 + 300 + 30 + + + + + true + + + text #307 + M0Y + 248 + 210 + 30 + + + + + true + + + text #310 + M0X + 248 + 120 + 30 + + + + + true + + + message button #313 + + + $(P)$(M1Y).TWR + 1 + Write + + + $(P)$(M1Y).TWR + < + 280 + 333 + 20 + 20 + + + + + + + rectangle #316 + 280 + 270 + 10 + 16 + + + + + + + + + + + + false + + $(P)$(M1Y).LLS + + + + + rectangle #320 + 280 + 180 + 10 + 16 + + + + + + + + + + + + false + + $(P)$(M0Y).LLS + + + + + rectangle #324 + 280 + 90 + 10 + 16 + + + + + + + + + + + + false + + $(P)$(M0X).LLS + + + + + text update #328 + $(P)$(M2X).EGU + 370 + 71 + 105 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #332 + $(P)$(M0X).EGU + 248 + 71 + 115 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + polyline #336 + 246 + 85 + 2 + 272 + 2 + + + + + + + + + + + + + text update #340 + $(P)$(M0X).HLM + 288 + 90 + 64 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #344 + $(P)$(M0X).RBV + 280 + 102 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #348 + $(P)$(M0X).VAL + 280 + 120 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #352 + $(P)$(M0X).LLM + 288 + 143 + 64 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #356 + $(P)$(M0Y).HLM + 288 + 180 + 64 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #360 + $(P)$(M0Y).RBV + 280 + 192 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #364 + $(P)$(M0Y).VAL + 280 + 210 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #368 + $(P)$(M0Y).LLM + 288 + 233 + 64 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #372 + $(P)$(M1Y).HLM + 288 + 270 + 64 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #376 + $(P)$(M1Y).RBV + 280 + 282 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #380 + $(P)$(M1Y).VAL + 280 + 300 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #384 + $(P)$(M1Y).LLM + 288 + 323 + 64 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + message button #388 + + + $(P)$(M0X).TWR + 1 + Write + + + $(P)$(M0X).TWR + < + 280 + 153 + 20 + 20 + + + + + + + message button #391 + + + $(P)$(M0Y).TWR + 1 + Write + + + $(P)$(M0Y).TWR + < + 280 + 243 + 20 + 20 + + + + + + + text entry #394 + $(P)$(M1Y).TWV + 300 + 335 + 40 + 18 + + + + + + + + + 1 + false + false + + + text entry #398 + $(P)$(M0Y).TWV + 300 + 245 + 40 + 18 + + + + + + + + + 1 + false + false + + + text entry #402 + $(P)$(M0X).TWV + 300 + 155 + 40 + 18 + + + + + + + + + 1 + false + false + + + message button #406 + + + $(P)$(M0X).TWF + 1 + Write + + + $(P)$(M0X).TWF + > + 340 + 153 + 20 + 20 + + + + + + + message button #409 + + + $(P)$(M0Y).TWF + 1 + Write + + + $(P)$(M0Y).TWF + > + 340 + 243 + 20 + 20 + + + + + + + message button #412 + + + $(P)$(M1Y).TWF + 1 + Write + + + $(P)$(M1Y).TWF + > + 340 + 333 + 20 + 20 + + + + + + + rectangle #415 + 350 + 90 + 10 + 16 + + + + + + + + + + + + false + + $(P)$(M0X).HLS + + + + + rectangle #419 + 350 + 180 + 10 + 16 + + + + + + + + + + + + false + + $(P)$(M0Y).HLS + + + + + rectangle #423 + 350 + 270 + 10 + 16 + + + + + + + + + + + + false + + $(P)$(M1Y).HLS + + + + + rectangle #427 + 278 + 88 + 84 + 87 + 2 + + + + + + + + + true + + + + false + + $(P)$(M0X).DMOV + + + + + rectangle #431 + 278 + 178 + 84 + 87 + 2 + + + + + + + + + true + + + + false + + $(P)$(M0Y).DMOV + + + + + rectangle #435 + 278 + 268 + 84 + 87 + 2 + + + + + + + + + true + + + + false + + $(P)$(M1Y).DMOV + + + + + text #439 + M2Z + 368 + 300 + 30 + + + + + true + + + text #442 + M2Y + 368 + 210 + 30 + + + + + true + + + text #445 + M2X + 368 + 120 + 30 + + + + + true + + + message button #448 + + + $(P)$(M2Z).TWR + 1 + Write + + + $(P)$(M2Z).TWR + < + 400 + 333 + 20 + 20 + + + + + + + rectangle #451 + 400 + 270 + 10 + 16 + + + + + + + + + + + + false + + $(P)$(M2Z).LLS + + + + + rectangle #455 + 400 + 180 + 10 + 16 + + + + + + + + + + + + false + + $(P)$(M2Y).LLS + + + + + rectangle #459 + 400 + 90 + 10 + 16 + + + + + + + + + + + + false + + $(P)$(M2X).LLS + + + + + polyline #463 + 364 + 86 + 2 + 272 + 2 + + + + + + + + + + + + + text update #467 + $(P)$(M2X).HLM + 408 + 90 + 64 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #471 + $(P)$(M2X).RBV + 400 + 102 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #475 + $(P)$(M2X).VAL + 400 + 120 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #479 + $(P)$(M2X).LLM + 408 + 143 + 64 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #483 + $(P)$(M2Y).HLM + 408 + 180 + 64 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #487 + $(P)$(M2Y).RBV + 400 + 192 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #491 + $(P)$(M2Y).VAL + 400 + 210 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #495 + $(P)$(M2Y).LLM + 408 + 233 + 64 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #499 + $(P)$(M2Z).HLM + 408 + 270 + 64 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #503 + $(P)$(M2Z).RBV + 400 + 282 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #507 + $(P)$(M2Z).VAL + 400 + 300 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #511 + $(P)$(M2Z).LLM + 408 + 323 + 64 + 12 + + + + + + + + + + + + + 1 + false + 1 + false + + + message button #515 + + + $(P)$(M2X).TWR + 1 + Write + + + $(P)$(M2X).TWR + < + 400 + 153 + 20 + 20 + + + + + + + message button #518 + + + $(P)$(M2Y).TWR + 1 + Write + + + $(P)$(M2Y).TWR + < + 400 + 243 + 20 + 20 + + + + + + + text entry #521 + $(P)$(M2X).TWV + 420 + 155 + 40 + 18 + + + + + + + + + 1 + false + false + + + text entry #525 + $(P)$(M2Y).TWV + 420 + 245 + 40 + 18 + + + + + + + + + 1 + false + false + + + text entry #529 + $(P)$(M2Z).TWV + 420 + 335 + 40 + 18 + + + + + + + + + 1 + false + false + + + message button #533 + + + $(P)$(M2X).TWF + 1 + Write + + + $(P)$(M2X).TWF + > + 460 + 153 + 20 + 20 + + + + + + + message button #536 + + + $(P)$(M2Y).TWF + 1 + Write + + + $(P)$(M2Y).TWF + > + 460 + 243 + 20 + 20 + + + + + + + message button #539 + + + $(P)$(M2Z).TWF + 1 + Write + + + $(P)$(M2Z).TWF + > + 460 + 333 + 20 + 20 + + + + + + + rectangle #542 + 470 + 90 + 10 + 16 + + + + + + + + + + + + false + + $(P)$(M2X).HLS + + + + + rectangle #546 + 470 + 180 + 10 + 16 + + + + + + + + + + + + false + + $(P)$(M2Y).HLS + + + + + rectangle #550 + 470 + 270 + 10 + 16 + + + + + + + + + + + + false + + $(P)$(M2Z).HLS + + + + + rectangle #554 + 398 + 88 + 84 + 87 + 2 + + + + + + + + + true + + + + false + + $(P)$(M2X).DMOV + + + + + rectangle #558 + 398 + 178 + 84 + 87 + 2 + + + + + + + + + true + + + + false + + $(P)$(M2Y).DMOV + + + + + rectangle #562 + 398 + 268 + 84 + 87 + 2 + + + + + + + + + true + + + + false + + $(P)$(M2Z).DMOV + + + + + polyline #566 + 245 + 86 + 239 + 2 + 2 + + + + + + + + + + + + + polyline #570 + 245 + 176 + 240 + 2 + 2 + + + + + + + + + + + + + polyline #574 + 245 + 266 + 240 + 2 + 2 + + + + + + + + + + + + + polyline #578 + 245 + 356 + 239 + 2 + 2 + + + + + + + + + + + + + polyline #582 + 482 + 85 + 2 + 273 + 2 + + + + + + + + + + + + + text #586 + Moving + 220 + 365 + 75 + + + + + + + + + 1 + + + + false + + $(P)$(Q):done.VAL + + + + + text #590 + Done + 220 + 365 + 75 + + + + + + + + + 1 + + + + false + + $(P)$(Q):done.VAL + + + + + related display #594 + + + motorx_tiny.opi + + $(M2X) + + tab + M2X (Tiny) + + + motorx.opi + + $(M2X) + + tab + M2X (Small) + + + motorx_more.opi + + $(M2X) + + tab + M2X (Medium) + + + motorx_setup.opi + + $(M2X) + + tab + M2X (Setup) + + + scanParms.opi + + $(M2X) + $(M2X) + + tab + Scan parameters + + + + 366 + 88 + 18 + 18 + + + + + + + + + + + related display #601 + + + motorx_tiny.opi + + $(M2Y) + + tab + M2Y (Tiny) + + + motorx.opi + + $(M2Y) + + tab + M2Y (Small) + + + motorx_more.opi + + $(M2Y) + + tab + M2Y (Medium) + + + motorx_setup.opi + + $(M2Y) + + tab + M2Y (Setup) + + + scanParms.opi + + $(M2Y) + $(M2Y) + + tab + Scan parameters + + + + 366 + 178 + 18 + 18 + + + + + + + + + + + related display #608 + + + motorx_tiny.opi + + $(M2Z) + + tab + M2Z (Tiny) + + + motorx.opi + + $(M2Z) + + tab + M2Z (Small) + + + motorx_more.opi + + $(M2Z) + + tab + M2Z (Medium) + + + motorx_setup.opi + + $(M2Z) + + tab + M2Z (Setup) + + + scanParms.opi + + $(M2Z) + $(M2Z) + + tab + Scan parameters + + + + 366 + 268 + 18 + 18 + + + + + + + + + + + related display #615 + + + motorx_tiny.opi + + $(M1Y) + + tab + M1Y (Tiny) + + + motorx.opi + + $(M1Y) + + tab + M1Y (Small) + + + motorx_more.opi + + $(M1Y) + + tab + M1Y (Medium) + + + motorx_setup.opi + + $(M1Y) + + tab + M1Y (Setup) + + + scanParms.opi + + $(M1Y) + $(M1Y) + + tab + Scan parameters + + + + 248 + 268 + 18 + 18 + + + + + + + + + + + related display #622 + + + motorx_tiny.opi + + $(M0Y) + + tab + M0Y (Tiny) + + + motorx.opi + + $(M0Y) + + tab + M0Y (Small) + + + motorx_more.opi + + $(M0Y) + + tab + M0Y (Medium) + + + motorx_setup.opi + + $(M0Y) + + tab + M0Y (Setup) + + + scanParms.opi + + $(M0Y) + $(M0Y) + + tab + Scan parameters + + + + 248 + 178 + 18 + 18 + + + + + + + + + + + related display #629 + + + motorx_tiny.opi + + $(M0X) + + tab + M0X (Tiny) + + + motorx.opi + + $(M0X) + + tab + M0X (Small) + + + motorx_more.opi + + $(M0X) + + tab + M0X (Medium) + + + motorx_setup.opi + + $(M0X) + + tab + M0X (Setup) + + + scanParms.opi + + $(M0X) + $(M0X) + + tab + Scan parameters + + + + 248 + 88 + 18 + 18 + + + + + + + + + + + related display #636 + + + table_setup_SRI.opi + tab + Setup (SRI geometry) + + + table_setup_GEOCARS.opi + tab + Setup (GEOCARS geometry) + + + table_setup_NEWPORT.opi + tab + Setup (NEWPORT geometry) + + + table_setup_PNC.opi + tab + Setup (PNC geometry) + + + table_fixedPoints.opi + tab + Fixed points + + + More + 440 + 380 + 40 + 20 + + + + + + + + + + + related display #643 + + + table_soft.opi + replace + Small display + + + Less + 440 + 360 + 40 + 20 + + + + + + + + + + + text entry #646 + $(P)$(Q):x.TWV + 43 + 155 + 44 + 18 + + + + + + + + + 1 + false + false + + + message button #650 + + + $(P)$(Q):x.TWF + 1 + Write + + + $(P)$(Q):x.TWF + > + 87 + 153 + 20 + 20 + + + + + + + message button #653 + + + $(P)$(Q):x.TWR + 1 + Write + + + $(P)$(Q):x.TWR + < + 23 + 153 + 20 + 20 + + + + + + + text #656 + Record version: + 387 + 90 + 10 + + + + + true + + + text update #659 + $(P)$(T).VERS + 90 + 387 + 30 + 12 + + + + + + + + + + + + + 1 + false + false + + + related display #663 + + + table_full_refresh.opi + replace + Refresh fixed-point menu + + + Refresh menu + 395 + 31 + 95 + 20 + + + + + + + + + + + menu #666 + $(P)$(Q)fpSelect + 195 + 31 + 200 + 20 + + + + + false + + + text #669 + Fixed point: + 108 + 34 + 85 + 14 + 1 + + + related display #672 + + + motorx.opi + + $(Q):ax + + tab + M0X (Small) + + + motorx_more.opi + + $(Q):ax + + tab + M0X (Medium) + + + + 112 + 88 + 18 + 18 + + + + + + + + + + + related display #676 + + + motorx.opi + + $(Q):x + + tab + M0X (Small) + + + motorx_more.opi + + $(Q):x + + tab + M0X (Medium) + + + + 7 + 88 + 18 + 18 + + + + + + + + + + + related display #680 + + + motorx.opi + + $(Q):ay + + tab + M0X (Small) + + + motorx_more.opi + + $(Q):ay + + tab + M0X (Medium) + + + + 112 + 178 + 18 + 18 + + + + + + + + + + + related display #684 + + + motorx.opi + + $(Q):y + + tab + M0X (Small) + + + motorx_more.opi + + $(Q):y + + tab + M0X (Medium) + + + + 7 + 178 + 18 + 18 + + + + + + + + + + + related display #688 + + + motorx.opi + + $(Q):az + + tab + M0X (Small) + + + motorx_more.opi + + $(Q):az + + tab + M0X (Medium) + + + + 112 + 268 + 18 + 18 + + + + + + + + + + + related display #692 + + + motorx.opi + + $(Q):z + + tab + M0X (Small) + + + motorx_more.opi + + $(Q):z + + tab + M0X (Medium) + + + + 7 + 268 + 18 + 18 + + + + + + + + + + + rectangle #696 + 23 + 88 + 86 + 87 + 2 + + + + + + + + + true + + + + false + + $(P)$(Q):x.DMOV + + + + + rectangle #700 + 138 + 88 + 86 + 87 + 2 + + + + + + + + + true + + + + false + + $(P)$(Q):ax.DMOV + + + + + rectangle #704 + 23 + 178 + 86 + 87 + 2 + + + + + + + + + true + + + + false + + $(P)$(Q):y.DMOV + + + + + rectangle #708 + 138 + 179 + 86 + 87 + 2 + + + + + + + + + true + + + + false + + $(P)$(Q):ay.DMOV + + + + + rectangle #712 + 23 + 269 + 86 + 87 + 2 + + + + + + + + + true + + + + false + + $(P)$(Q):z.DMOV + + + + + rectangle #716 + 138 + 269 + 86 + 87 + 2 + + + + + + + + + true + + + + false + + $(P)$(Q):az.DMOV + + + + diff --git a/opticsApp/op/bob/autoconvert/table_help.bob b/opticsApp/op/bob/autoconvert/table_help.bob new file mode 100644 index 0000000..f996e37 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/table_help.bob @@ -0,0 +1,523 @@ + + + table_help + 10 + 10 + 410 + 360 + + + + + false + 5 + + rectangle #6 + 1 + 1 + 122 + 103 + + + + + + + + + + + rectangle #9 + 1 + 1 + 122 + 103 + 2 + + + + + + + + + true + + + text #12 + Use: Changes to X, Y, etc. will move table + 101 + 115 + 300 + 14 + true + + + text #15 + Set: Changes to X, Y, etc. will change table + 101 + 130 + 300 + 14 + true + + + choice button #18 + $(P)$(T).SET + 3 + 115 + 83 + 20 + + + + + false + + Item 1 + Item 2 + + + + text #21 + Redefine current table coordinates as zero + 101 + 170 + 300 + 14 + true + + + text #24 + (without moving any motors) + 101 + 185 + 300 + 14 + true + + + message button #27 + + + $(P)$(T).ZERO + 1 + Write + + + $(P)$(T).ZERO + Zero + 6 + 170 + 40 + 20 + + + + + + + text #30 + calibration without moving motors + 101 + 145 + 300 + 14 + true + + + message button #33 + + + $(P)$(T).SYNC + 1 + Write + + + $(P)$(T).SYNC + Sync + 6 + 220 + 40 + 20 + + + + + + + text #36 + Update table coordinates from current + 101 + 220 + 300 + 14 + true + + + text #39 + motor positions; maintain calibration + 101 + 235 + 300 + 14 + true + + + text #42 + motor positions; abandon calibration + 101 + 275 + 300 + 14 + true + + + text #45 + Update table coordinates from current + 101 + 260 + 300 + 14 + true + + + message button #48 + + + $(P)$(T).INIT + 1 + Write + + + $(P)$(T).INIT + Init + 6 + 260 + 40 + 20 + + + + + + + text entry #51 + $(P)$(T).X + 19 + 49 + 22 + + + + + + + + + 1 + false + false + + + text #55 + X + 4 + 49 + 20 + + + + + true + + + text update #58 + 19 + 84 + 15 + + + + + + + + + 1 + false + false + + + text entry #62 + $(P)$(Q):x_tweak.C + 39 + 84 + 60 + 18 + + + + + + + + + 1 + false + false + + + message button #66 + + + $(P)$(Q):x_inc.VAL + 1 + Write + + + $(P)$(Q):x_inc.VAL + > + 99 + 84 + 20 + 18 + + + + + + + message button #69 + + + $(P)$(Q):x_dec.VAL + 1 + Write + + + $(P)$(Q):x_dec.VAL + < + 19 + 84 + 20 + 18 + + + + + + + text update #72 + $(P)$(T).LLX + 19 + 69 + 14 + + + + + + + + + 1 + false + 1 + false + + + text #76 + Drive value (--{transform}--> motors) + 130 + 52 + 275 + 14 + true + + + text #79 + Low limit (calc'd from motor limits) + 130 + 70 + 275 + 14 + true + + + text #82 + Tweak (type in step size, press buttons) + 130 + 87 + 275 + 14 + true + + + polyline #85 + 4 + 108 + 397 + 0 + 1 + + + + + + + + + + + + + text update #89 + $(P)$(T).HLX + 19 + 4 + 14 + + + + + + + + + 1 + false + 1 + false + + + text update #93 + $(P)$(T).XRB + 19 + 34 + 14 + + + + + + + + + 1 + false + 1 + false + + + text #97 + Drive-value readback + 130 + 34 + 275 + 14 + true + + + text #100 + High limit (calc'd from motor limits) + 130 + 3 + 275 + 14 + true + + + text update #103 + $(P)$(T).EX + 19 + 20 + 14 + + + + + + + + + 1 + false + 1 + false + + + text #107 + Encoder readback + 130 + 20 + 275 + 14 + true + + + polyline #110 + 4 + 210 + 397 + 0 + 1 + + + + + 1 + + + + + + + + + polyline #114 + 4 + 300 + 397 + 0 + 1 + + + + + 1 + + + + + + + + + text #118 + A positive-sense rotation turns table clockwise when + 10 + 310 + 390 + 14 + true + + + text #121 + viewed from the + axis. (For example, increasing AY + 10 + 325 + 390 + 14 + true + + + text #124 + rotates the table clockwise, as seen from above.) + 10 + 340 + 390 + 14 + true + + diff --git a/opticsApp/op/bob/autoconvert/table_limits.bob b/opticsApp/op/bob/autoconvert/table_limits.bob new file mode 100644 index 0000000..a310654 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/table_limits.bob @@ -0,0 +1,702 @@ + + + table_limits + 800 + 532 + 700 + 130 + + + + + false + 5 + + text #6 + User limits + 5 + 5 + 110 + + + + + + + + + true + + + polyline #9 + 700 + 2 + 2 + + + + + + + + + + + + + text #13 + X + 110 + 9 + 80 + + + + + 1 + + + text #16 + Y + 195 + 9 + 80 + + + + + 1 + + + text #19 + Z + 280 + 9 + 80 + + + + + 1 + + + text #22 + AX + 405 + 9 + 80 + + + + + 1 + + + text #25 + AY + 490 + 9 + 80 + + + + + 1 + + + text #28 + AZ + 575 + 9 + 80 + + + + + 1 + + + text entry #31 + $(P)$(T).UHXR + 110 + 29 + 80 + 18 + + + + + + + + + 5 + false + false + + + text entry #35 + $(P)$(T).UHYR + 195 + 29 + 80 + 18 + + + + + + + + + 5 + false + false + + + text #39 + High + 60 + 29 + 40 + + + + + true + + + text entry #42 + $(P)$(T).ULXR + 110 + 49 + 80 + 18 + + + + + + + + + 5 + false + false + + + text entry #46 + $(P)$(T).ULYR + 195 + 49 + 80 + 18 + + + + + + + + + 5 + false + false + + + text #50 + Low + 60 + 49 + 20 + + + + + true + + + text entry #53 + $(P)$(T).ULZR + 280 + 49 + 80 + 18 + + + + + + + + + 5 + false + false + + + text entry #57 + $(P)$(T).UHZR + 280 + 29 + 80 + 18 + + + + + + + + + 5 + false + false + + + text entry #61 + $(P)$(T).ULAXR + 405 + 49 + 80 + 18 + + + + + + + + + 5 + false + false + + + text entry #65 + $(P)$(T).UHAXR + 405 + 29 + 80 + 18 + + + + + + + + + 5 + false + false + + + text entry #69 + $(P)$(T).ULAYR + 490 + 49 + 80 + 18 + + + + + + + + + 5 + false + false + + + text entry #73 + $(P)$(T).UHAYR + 490 + 29 + 80 + 18 + + + + + + + + + 5 + false + false + + + text entry #77 + $(P)$(T).ULAZR + 575 + 49 + 80 + 18 + + + + + + + + + 5 + false + false + + + text entry #81 + $(P)$(T).UHAZR + 575 + 29 + 80 + 18 + + + + + + + + + 5 + false + false + + + text update #85 + $(P)$(T).AEGU + 475 + 114 + 115 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #89 + $(P)$(T).LEGU + 175 + 114 + 115 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #93 + $(P)$(T).UHX + 110 + 74 + 80 + 18 + + + + + + + + + 5 + false + false + + + text entry #97 + $(P)$(T).UHY + 195 + 74 + 80 + 18 + + + + + + + + + 5 + false + false + + + text #101 + High + 60 + 74 + 40 + + + + + true + + + text entry #104 + $(P)$(T).ULX + 110 + 94 + 80 + 18 + + + + + + + + + 5 + false + false + + + text entry #108 + $(P)$(T).ULY + 195 + 94 + 80 + 18 + + + + + + + + + 5 + false + false + + + text #112 + Low + 60 + 94 + 20 + + + + + true + + + text entry #115 + $(P)$(T).ULZ + 280 + 94 + 80 + 18 + + + + + + + + + 5 + false + false + + + text entry #119 + $(P)$(T).UHZ + 280 + 74 + 80 + 18 + + + + + + + + + 5 + false + false + + + text entry #123 + $(P)$(T).ULAX + 405 + 94 + 80 + 18 + + + + + + + + + 5 + false + false + + + text entry #127 + $(P)$(T).UHAX + 405 + 74 + 80 + 18 + + + + + + + + + 5 + false + false + + + text entry #131 + $(P)$(T).ULAY + 490 + 94 + 80 + 18 + + + + + + + + + 5 + false + false + + + text entry #135 + $(P)$(T).UHAY + 490 + 74 + 80 + 18 + + + + + + + + + 5 + false + false + + + text entry #139 + $(P)$(T).ULAZ + 575 + 94 + 80 + 18 + + + + + + + + + 5 + false + false + + + text entry #143 + $(P)$(T).UHAZ + 575 + 74 + 80 + 18 + + + + + + + + + 5 + false + false + + + text #147 + REL + 10 + 39 + 40 + + + + + + + + + true + + + text #150 + ABS + 10 + 84 + 40 + + + + + + + + + true + + diff --git a/opticsApp/op/bob/autoconvert/table_refresh.bob b/opticsApp/op/bob/autoconvert/table_refresh.bob new file mode 100644 index 0000000..ebe9826 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/table_refresh.bob @@ -0,0 +1,37 @@ + + + table_refresh + 545 + 291 + 230 + 375 + + + + + false + 5 + + related display #6 + + + table.opi + replace + Refresh fixed-point menu + + + PRESS AGAIN + 95 + 43 + 135 + 15 + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/table_setup_GEOCARS.bob b/opticsApp/op/bob/autoconvert/table_setup_GEOCARS.bob new file mode 100644 index 0000000..4d90d64 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/table_setup_GEOCARS.bob @@ -0,0 +1,2067 @@ + + + table_setup_GEOCARS + 729 + 513 + 700 + 500 + + + + + false + 5 + + composite #6 + 125 + 150 + 8 + 10 + + true + + polyline #9 + 5 + 3 + 7 + 1 + + + + + + + + + + + + + polyline #13 + 7 + 8 + 3 + 1 + + + + + + + + + + + + + + polygon #17 + 77 + 161 + 63 + 68 + 2 + + + + + + + + + + + + + + + + + + + + + + + oval #21 + 84 + 203 + 7 + 7 + + + + + + + + + + + oval #24 + 116 + 198 + 7 + 7 + + + + + + + + + + + oval #27 + 108 + 168 + 7 + 7 + + + + + + + + + + + polyline #30 + 110 + 242 + 2 + 51 + 2 + + + + + + + + + + + + + polyline #34 + 104 + 241 + 13 + 13 + 2 + + + + + + + + + + + + + + + text #38 + BEAM + 97 + 226 + 30 + 14 + + + + + 1 + + + text #41 + (+Y is up) + 40 + 316 + 120 + + + + + 1 + + + text entry #44 + $(P)$(T).YANG + 95 + 63 + 90 + 22 + + + + + + + + + 1 + false + false + + + text #48 + Table angle + 95 + 33 + 90 + 15 + + + + + 1 + + + text #51 + (degrees) + 95 + 48 + 90 + 15 + + + + + 1 + + + polyline #54 + 98 + 86 + 81 + 0 + 1 + + + + + + + + + + + + + text #58 + +Z' + 141 + 128 + 20 + 15 + + + + + + + + + true + + + text #61 + +X' + 36 + 155 + 20 + 15 + + + + + + + + + true + + + polyline #64 + 195 + 30 + 3 + 345 + + + + + + + + + + + + + arc #68 + 65 + 151 + 90 + 90 + 61.0 + 29.0 + 1 + + + + + true + + + polyline #71 + 62 + 168 + 49 + 27 + 2 + + + + + + + + + + + + + polyline #75 + 120 + 87 + 21 + 65 + 1 + + + + + + + + + + + + + polyline #79 + 110 + 142 + 31 + 53 + 2 + + + + + + + + + + + + + oval #83 + 111 + 189 + 7 + 7 + + + + + + + + + + + composite #86 + 22 + 96 + 98 + 110 + + true + + text #89 + +X + 90 + 20 + + + + + true + + + polyline #92 + 28 + 93 + 14 + 11 + 2 + + + + + + + + + + + + + + + polyline #96 + 28 + 98 + 62 + 2 + 2 + + + + + + + + + + + + + polyline #100 + 88 + 31 + 2 + 69 + 2 + + + + + + + + + + + + + polyline #104 + 80 + 28 + 16 + 16 + 2 + + + + + + + + + + + + + + + text #108 + +Z + 78 + 20 + + + + + true + + + + text #111 + You're using the wrong setup display + 415 + 351 + 280 + 14 + + + + + true + + + + false + + $(P)$(Q):geomIsGEOCARS + + + + + menu #115 + $(P)$(T).GEOM + 540 + 311 + 20 + + + + + false + + + text #118 + Geometry + 450 + 311 + 80 + + + + + true + + + text #121 + This display is for the GEOCARS geometry + 415 + 336 + 280 + 14 + + + + + true + + + + false + + $(P)$(Q):geomIsGEOCARS + + + + + rectangle #125 + 469 + 241 + 200 + + + + + + + + + + + oval #128 + 489 + 261 + 10 + 10 + + + + + + + + + + + oval #131 + 639 + 261 + 10 + 10 + + + + + + + + + + + polyline #134 + 600 + 265 + 88 + 2 + 2 + + + + + + + + + + + + + text #138 + M1,M2 + 484 + 276 + 20 + + + + + true + + + text #141 + M0 + 634 + 276 + 20 + + + + + true + + + composite #144 + 640 + 261 + 10 + 11 + + true + + rectangle #147 + 10 + 10 + 1 + + + + + + + + + true + + + polyline #151 + 1 + 5 + 9 + 1 + 1 + + + + + + + + + + + + + polyline #156 + 5 + 1 + 1 + 10 + 1 + + + + + + + + + + + + + + rectangle #161 + 230 + 41 + 200 + 250 + + + + + + + + + + + oval #164 + 250 + 261 + 10 + 10 + + + + + + + + + + + oval #167 + 400 + 161 + 10 + 10 + + + + + + + + + + + oval #170 + 250 + 61 + 10 + 10 + + + + + + + + + + + text #173 + M2 + 263 + 246 + 20 + + + + + true + + + text #176 + M0 + 411 + 159 + 20 + + + + + true + + + text #179 + M1 + 246 + 71 + 20 + + + + + true + + + oval #182 + 345 + 128 + 10 + 10 + + + + + + + + + + + composite #185 + 252 + 248 + 5 + 15 + + true + + polyline #188 + 2 + 1 + 2 + 15 + 2 + + + + + + + + + + + + + polyline #192 + 6 + 7 + 2 + + + + + + + + + + + + + + + + composite #196 + 238 + 263 + 15 + 5 + + true + + polyline #199 + 8 + 6 + 2 + + + + + + + + + + + + + + + polyline #203 + 1 + 2 + 15 + 2 + 2 + + + + + + + + + + + + + + composite #207 + 387 + 163 + 15 + 5 + + true + + polyline #210 + 8 + 6 + 2 + + + + + + + + + + + + + + + polyline #214 + 1 + 2 + 15 + 2 + 2 + + + + + + + + + + + + + + polyline #218 + 404 + 147 + 2 + 39 + 2 + + + + + 1 + + + + + + + + + text entry #222 + $(P)$(T).LZ + 235 + 126 + 60 + 18 + + + + + + + + + 1 + false + false + + + composite #226 + 401 + 262 + 10 + 11 + + true + + rectangle #229 + 10 + 10 + 1 + + + + + + + + + true + + + polyline #233 + 1 + 5 + 9 + 1 + 1 + + + + + + + + + + + + + polyline #238 + 5 + 1 + 1 + 10 + 1 + + + + + + + + + + + + + + polyline #243 + 204 + 66 + 25 + 1 + 1 + + + + + + + + + + + + + polyline #247 + 205 + 266 + 25 + 1 + 1 + + + + + + + + + + + + + polyline #251 + 210 + 66 + 1 + 60 + 1 + + + + + + + + + + + + + text #255 + Lz' + 200 + 126 + 20 + + + + + true + + + polyline #258 + 210 + 148 + 1 + 119 + 1 + + + + + + + + + + + + + polyline #262 + 405 + 266 + 26 + 25 + + + + + + + + + + + + + text #266 + R + 425 + 294 + 15 + + + + + + + + + true + + + polyline #269 + 349 + 131 + 82 + 160 + + + + + + + + + + + + + text #273 + S + 360 + 121 + 15 + + + + + + + + + true + + + polyline #276 + 644 + 239 + 25 + 29 + + + + + + + + + + + + + text #280 + R + 670 + 231 + 15 + + + + + + + + + true + + + polyline #283 + 593 + 190 + 76 + 53 + + + + + + + + + + + + + oval #287 + 589 + 186 + 10 + 10 + + + + + + + + + + + text #290 + S + 574 + 192 + 15 + + + + + + + + + true + + + composite #293 + 460 + 41 + 100 + 40 + + true + + oval #296 + 15 + 10 + 10 + + + + + + + + + + + composite #299 + 10 + 11 + + true + + rectangle #302 + 10 + 10 + 1 + + + + + + + + + true + + + polyline #306 + 1 + 5 + 9 + 1 + 1 + + + + + + + + + + + + + polyline #311 + 5 + 1 + 1 + 10 + 1 + + + + + + + + + + + + + + oval #316 + 30 + 10 + 10 + + + + + + + + + + + text #319 + PIVOT POINTS + 20 + 15 + 80 + 10 + + + + + true + + + text #322 + LOCAL ORIGIN + 20 + 80 + 10 + + + + + true + + + text #325 + 'FIXED' POINT + 20 + 30 + 80 + 10 + + + + + true + + + + text entry #328 + $(P)$(T).RX + 495 + 117 + 60 + 18 + + + + + + + + + 1 + false + false + + + text entry #332 + $(P)$(T).RY + 495 + 135 + 60 + 18 + + + + + + + + + 1 + false + false + + + text entry #336 + $(P)$(T).SX + 615 + 115 + 60 + 18 + + + + + + + + + 1 + false + false + + + text entry #340 + $(P)$(T).SZ + 615 + 155 + 60 + 18 + + + + + + + + + 1 + false + false + + + text entry #344 + $(P)$(T).SY + 615 + 135 + 60 + 18 + + + + + + + + + 1 + false + false + + + text #348 + Lx' + 319 + 301 + 20 + + + + + true + + + polyline #351 + 345 + 311 + 62 + 1 + 1 + + + + + + + + + + + + + polyline #355 + 257 + 311 + 59 + 1 + 1 + + + + + + + + + + + + + text entry #359 + $(P)$(T).LX + 300 + 318 + 60 + 18 + + + + + + + + + 1 + false + false + + + polyline #363 + 406 + 297 + 1 + 25 + 1 + + + + + + + + + + + + + composite #367 + 310 + 196 + 64 + 57 + + true + + text #370 + +X' + 43 + 20 + 14 + + + + + true + + + polyline #373 + 21 + 45 + 14 + 11 + 2 + + + + + + + + + + + + + + + polyline #377 + 24 + 50 + 28 + 2 + 2 + + + + + + + + + + + + + polyline #381 + 51 + 20 + 2 + 33 + 2 + + + + + + + + + + + + + polyline #385 + 44 + 17 + 14 + 14 + 2 + + + + + + + + + + + + + + + text #389 + +Z' + 44 + 20 + 14 + + + + + true + + + + composite #392 + 530 + 216 + 20 + 53 + + true + + polyline #395 + 7 + 20 + 2 + 33 + 2 + + + + + + + + + + + + + polyline #399 + 17 + 14 + 14 + 2 + + + + + + + + + + + + + + + text #403 + +Y' + 20 + 14 + + + + + true + + + + rectangle #406 + 700 + 27 + + + + + + + + + + + polyline #409 + 27 + 699 + 3 + + + + + + + + + + + + + text #413 + ($(P)$(T)) + 350 + 5 + 350 + 15 + + + + + 1 + + + text entry #416 + $(P)$(T).DESC + 350 + 27 + + + + + + + + + + + + + 1 + false + false + + + text entry #420 + $(P)$(T).RZ + 495 + 155 + 60 + 18 + + + + + + + + + 1 + false + false + + + text update #424 + $(P)$(Q)fpSelect.VAL + 580 + 58 + 95 + 14 + + + + + + + + + 1 + false + 1 + false + + + menu #428 + $(P)$(Q)fpSelect + 580 + 75 + 95 + 20 + + + + + false + + + related display #431 + + + table_fixedPoints.opi + tab + Fixed points + + + Fixed points + 580 + 35 + 95 + 20 + + + + + + + + + + + text #434 + Rx' + 460 + 115 + 30 + + + + + + + + + true + + + text #437 + Rz' + 460 + 155 + 30 + + + + + + + + + true + + + text #440 + Ry' + 460 + 135 + 30 + + + + + + + + + true + + + text #443 + Sx' + 580 + 115 + 30 + + + + + + + + + true + + + text #446 + Sz' + 580 + 155 + 30 + + + + + + + + + true + + + text #449 + Sy' + 580 + 135 + 30 + + + + + + + + + true + + + related display #452 + + + table_setup_GEOCARS_refresh.opi + replace + + + REFRESH MENU + 585 + 95 + 85 + 15 + + + + + + + + + + + composite #455 + table_limits.bob + 371 + 700 + 129 + + + menu #457 + $(P)$(T).AUNIT + 290 + 345 + 120 + 20 + + + + + false + + + text #460 + Angle units + 205 + 348 + 80 + 14 + true + + + polyline #463 + 255 + 297 + 1 + 25 + 1 + + + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/table_setup_GEOCARS_refresh.bob b/opticsApp/op/bob/autoconvert/table_setup_GEOCARS_refresh.bob new file mode 100644 index 0000000..e0ff43f --- /dev/null +++ b/opticsApp/op/bob/autoconvert/table_setup_GEOCARS_refresh.bob @@ -0,0 +1,36 @@ + + + table_setup_GEOCARS_refresh + 36 + 25 + 700 + 120 + + + + + false + 5 + + related display #6 + + + table_setup_GEOCARS.opi + replace + + + PRESS AGAIN + 585 + 95 + 85 + 15 + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/table_setup_NEWPORT.bob b/opticsApp/op/bob/autoconvert/table_setup_NEWPORT.bob new file mode 100644 index 0000000..376d573 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/table_setup_NEWPORT.bob @@ -0,0 +1,2111 @@ + + + table_setup_NEWPORT + 699 + 521 + 700 + 500 + + + + + false + 5 + + oval #6 + 639 + 266 + 10 + 10 + + + + + + + + + + + rectangle #9 + 637 + 226 + 15 + 40 + + + + + + + + + + + composite #12 + 125 + 150 + 8 + 10 + + true + + polyline #15 + 5 + 3 + 7 + 1 + + + + + + + + + + + + + polyline #19 + 7 + 8 + 3 + 1 + + + + + + + + + + + + + + polygon #23 + 77 + 161 + 63 + 68 + 2 + + + + + + + + + + + + + + + + + + + + + + + oval #27 + 84 + 203 + 7 + 7 + + + + + + + + + + + oval #30 + 116 + 198 + 7 + 7 + + + + + + + + + + + oval #33 + 108 + 168 + 7 + 7 + + + + + + + + + + + text #36 + BEAM + 97 + 226 + 30 + 14 + + + + + 1 + + + text #39 + (+Y is up) + 40 + 316 + 120 + + + + + 1 + + + text entry #42 + $(P)$(T).YANG + 95 + 63 + 90 + 22 + + + + + + + + + 1 + false + false + + + text #46 + Table angle + 95 + 33 + 90 + 15 + + + + + 1 + + + text #49 + (degrees) + 95 + 48 + 90 + 15 + + + + + 1 + + + polyline #52 + 98 + 86 + 81 + 0 + 1 + + + + + + + + + + + + + text #56 + +Z' + 141 + 128 + 20 + 15 + + + + + + + + + true + + + text #59 + +X' + 36 + 155 + 20 + 15 + + + + + + + + + true + + + polyline #62 + 195 + 30 + 3 + 345 + + + + + + + + + + + + + arc #66 + 65 + 151 + 90 + 90 + 61.0 + 29.0 + 1 + + + + + true + + + polyline #69 + 62 + 168 + 49 + 27 + 2 + + + + + + + + + + + + + polyline #73 + 120 + 87 + 21 + 65 + 1 + + + + + + + + + + + + + polyline #77 + 110 + 142 + 31 + 53 + 2 + + + + + + + + + + + + + oval #81 + 111 + 189 + 7 + 7 + + + + + + + + + + + composite #84 + 22 + 96 + 98 + 110 + + true + + text #87 + +X + 90 + 20 + + + + + true + + + polyline #90 + 28 + 93 + 14 + 11 + 2 + + + + + + + + + + + + + + + polyline #94 + 28 + 98 + 62 + 2 + 2 + + + + + + + + + + + + + polyline #98 + 88 + 31 + 2 + 69 + 2 + + + + + + + + + + + + + polyline #102 + 80 + 28 + 16 + 16 + 2 + + + + + + + + + + + + + + + text #106 + +Z + 78 + 20 + + + + + true + + + + text #109 + You're using the wrong setup display + 415 + 351 + 280 + 14 + + + + + true + + + + false + + $(P)$(Q):geomIsNEWPORT + + + + + menu #113 + $(P)$(T).GEOM + 540 + 311 + 20 + + + + + false + + + text #116 + Geometry + 450 + 311 + 80 + + + + + true + + + text #119 + This display is for the NEWPORT geometry + 415 + 336 + 280 + 14 + + + + + true + + + + false + + $(P)$(Q):geomIsNEWPORT + + + + + composite #123 + 104 + 241 + 13 + 52 + + true + + polyline #126 + 6 + 1 + 2 + 51 + 2 + + + + + + + + + + + + + polyline #130 + 13 + 13 + 2 + + + + + + + + + + + + + + + + text #134 + Lx' + 319 + 301 + 20 + + + + + true + + + polyline #137 + 345 + 311 + 62 + 1 + 1 + + + + + + + + + + + + + polyline #141 + 257 + 311 + 59 + 1 + 1 + + + + + + + + + + + + + rectangle #145 + 230 + 41 + 200 + 250 + + + + + + + + + + + oval #148 + 250 + 261 + 10 + 10 + + + + + + + + + + + oval #151 + 400 + 161 + 10 + 10 + + + + + + + + + + + oval #154 + 250 + 61 + 10 + 10 + + + + + + + + + + + polyline #157 + 204 + 66 + 25 + 1 + 1 + + + + + + + + + + + + + text #161 + M0 + 263 + 246 + 20 + + + + + true + + + text #164 + M1 + 400 + 176 + 20 + + + + + true + + + text #167 + M2 + 246 + 71 + 20 + + + + + true + + + oval #170 + 345 + 128 + 10 + 10 + + + + + + + + + + + composite #173 + 252 + 49 + 5 + 15 + + true + + polyline #176 + 2 + 1 + 2 + 15 + 2 + + + + + + + + + + + + + polyline #180 + 6 + 7 + 2 + + + + + + + + + + + + + + + + composite #184 + 238 + 63 + 15 + 5 + + true + + polyline #187 + 8 + 6 + 2 + + + + + + + + + + + + + + + polyline #191 + 1 + 2 + 15 + 2 + 2 + + + + + + + + + + + + + + text entry #195 + $(P)$(T).LZ + 235 + 126 + 60 + 18 + + + + + + + + + 1 + false + false + + + composite #199 + 401 + 262 + 10 + 11 + + true + + rectangle #202 + 10 + 10 + 1 + + + + + + + + + true + + + polyline #206 + 1 + 5 + 9 + 1 + 1 + + + + + + + + + + + + + polyline #211 + 5 + 1 + 1 + 10 + 1 + + + + + + + + + + + + + + polyline #216 + 405 + 266 + 26 + 25 + + + + + + + + + + + + + polyline #220 + 204 + 265 + 25 + 1 + 1 + + + + + + + + + + + + + polyline #224 + 349 + 131 + 82 + 160 + + + + + + + + + + + + + text #228 + R + 425 + 294 + 15 + + + + + + + + + true + + + text #231 + S + 360 + 121 + 15 + + + + + + + + + true + + + polyline #234 + 210 + 66 + 1 + 60 + 1 + + + + + + + + + + + + + text #238 + Lz' + 200 + 126 + 20 + + + + + true + + + polyline #241 + 210 + 148 + 1 + 119 + 1 + + + + + + + + + + + + + text entry #245 + $(P)$(T).LX + 300 + 318 + 60 + 18 + + + + + + + + + 1 + false + false + + + rectangle #249 + 469 + 216 + 200 + + + + + + + + + + + oval #252 + 589 + 186 + 10 + 10 + + + + + + + + + + + polyline #255 + 644 + 214 + 25 + 58 + + + + + + + + + + + + + text #259 + R + 670 + 206 + 15 + + + + + + + + + true + + + text #262 + S + 574 + 192 + 15 + + + + + + + + + true + + + polyline #265 + 593 + 190 + 76 + 28 + + + + + + + + + + + + + oval #269 + 489 + 266 + 10 + 10 + + + + + + + + + + + polyline #272 + 600 + 270 + 88 + 2 + 2 + + + + + + + + + + + + + text #276 + M0,M2 + 484 + 281 + 20 + + + + + true + + + text #279 + M1 + 634 + 281 + 20 + + + + + true + + + composite #282 + 640 + 266 + 10 + 11 + + true + + rectangle #285 + 10 + 10 + 1 + + + + + + + + + true + + + polyline #289 + 1 + 5 + 9 + 1 + 1 + + + + + + + + + + + + + polyline #294 + 5 + 1 + 1 + 10 + 1 + + + + + + + + + + + + + + rectangle #299 + 485 + 226 + 15 + 40 + + + + + + + + + + + oval #302 + 460 + 56 + 10 + 10 + + + + + + + + + + + composite #305 + 460 + 41 + 10 + 11 + + true + + rectangle #308 + 10 + 10 + 1 + + + + + + + + + true + + + polyline #312 + 1 + 5 + 9 + 1 + 1 + + + + + + + + + + + + + polyline #317 + 5 + 1 + 1 + 10 + 1 + + + + + + + + + + + + + + oval #322 + 460 + 71 + 10 + 10 + + + + + + + + + + + text #325 + PIVOT POINTS + 480 + 56 + 80 + 10 + + + + + true + + + text #328 + LOCAL ORIGIN + 480 + 41 + 80 + 10 + + + + + true + + + text #331 + 'FIXED' POINT + 480 + 71 + 80 + 10 + + + + + true + + + composite #334 + 237 + 263 + 15 + 5 + + true + + polyline #337 + 8 + 6 + 2 + + + + + + + + + + + + + + + polyline #341 + 1 + 2 + 15 + 2 + 2 + + + + + + + + + + + + + + polyline #345 + 254 + 247 + 2 + 39 + 2 + + + + + 1 + + + + + + + + + composite #349 + 310 + 196 + 64 + 57 + + true + + text #352 + +X' + 43 + 20 + 14 + + + + + true + + + polyline #355 + 21 + 45 + 14 + 11 + 2 + + + + + + + + + + + + + + + polyline #359 + 24 + 50 + 28 + 2 + 2 + + + + + + + + + + + + + polyline #363 + 51 + 20 + 2 + 33 + 2 + + + + + + + + + + + + + polyline #367 + 44 + 17 + 14 + 14 + 2 + + + + + + + + + + + + + + + text #371 + +Z' + 44 + 20 + 14 + + + + + true + + + + composite #374 + 552 + 221 + 20 + 53 + + true + + polyline #377 + 7 + 20 + 2 + 33 + 2 + + + + + + + + + + + + + polyline #381 + 17 + 14 + 14 + 2 + + + + + + + + + + + + + + + text #385 + +Y' + 20 + 14 + + + + + true + + + + polyline #388 + 256 + 297 + 1 + 25 + 1 + + + + + + + + + + + + + polyline #392 + 406 + 297 + 1 + 25 + 1 + + + + + + + + + + + + + composite #396 + 700 + 30 + + true + + rectangle #399 + 700 + 27 + + + + + + + + + + + polyline #402 + 27 + 699 + 3 + + + + + + + + + + + + + text #406 + ($(P)$(T)) + 350 + 5 + 350 + 15 + + + + + 1 + + + text entry #409 + $(P)$(T).DESC + 350 + 27 + + + + + + + + + + + + + 1 + false + false + + + + text update #413 + $(P)$(Q)fpSelect.VAL + 581 + 58 + 95 + 14 + + + + + + + + + 1 + false + 1 + false + + + menu #417 + $(P)$(Q)fpSelect + 581 + 75 + 95 + 20 + + + + + false + + + related display #420 + + + table_fixedPoints.opi + tab + Fixed points + + + Fixed points + 581 + 35 + 95 + 20 + + + + + + + + + + + related display #423 + + + table_setup_NEWPORT_refresh.opi + replace + + + REFRESH MENU + 586 + 95 + 85 + 15 + + + + + + + + + + + text entry #426 + $(P)$(T).RX + 495 + 116 + 60 + 18 + + + + + + + + + 1 + false + false + + + text entry #430 + $(P)$(T).RY + 495 + 135 + 60 + 18 + + + + + + + + + 1 + false + false + + + text entry #434 + $(P)$(T).SX + 615 + 115 + 60 + 18 + + + + + + + + + 1 + false + false + + + text entry #438 + $(P)$(T).SZ + 615 + 155 + 60 + 18 + + + + + + + + + 1 + false + false + + + text entry #442 + $(P)$(T).SY + 615 + 135 + 60 + 18 + + + + + + + + + 1 + false + false + + + composite #446 + 460 + 115 + 140 + 60 + + true + + text #449 + Rx' + 20 + + + + + + + + + true + + + text #452 + Rz' + 40 + 20 + + + + + + + + + true + + + text #455 + Ry' + 20 + 20 + + + + + + + + + true + + + text #458 + Sx' + 120 + 20 + + + + + + + + + true + + + text #461 + Sz' + 120 + 40 + 20 + + + + + + + + + true + + + text #464 + Sy' + 120 + 20 + 20 + + + + + + + + + true + + + + text entry #467 + $(P)$(T).RZ + 495 + 155 + 60 + 18 + + + + + + + + + 1 + false + false + + + composite #471 + table_limits.bob + 371 + 700 + 129 + + + menu #473 + $(P)$(T).AUNIT + 290 + 345 + 120 + 20 + + + + + false + + + text #476 + Angle units + 205 + 348 + 80 + 14 + true + + diff --git a/opticsApp/op/bob/autoconvert/table_setup_NEWPORT_refresh.bob b/opticsApp/op/bob/autoconvert/table_setup_NEWPORT_refresh.bob new file mode 100644 index 0000000..e22f66b --- /dev/null +++ b/opticsApp/op/bob/autoconvert/table_setup_NEWPORT_refresh.bob @@ -0,0 +1,36 @@ + + + table_setup_NEWPORT_refresh + 36 + 25 + 700 + 120 + + + + + false + 5 + + related display #6 + + + table_setup_NEWPORT.opi + replace + + + PRESS AGAIN + 585 + 95 + 85 + 15 + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/table_setup_PNC.bob b/opticsApp/op/bob/autoconvert/table_setup_PNC.bob new file mode 100644 index 0000000..2a55c24 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/table_setup_PNC.bob @@ -0,0 +1,2119 @@ + + + table_setup_PNC + 743 + 507 + 700 + 500 + + + + + false + 5 + + composite #6 + 125 + 150 + 8 + 10 + + true + + polyline #9 + 5 + 3 + 7 + 1 + + + + + + + + + + + + + polyline #13 + 7 + 8 + 3 + 1 + + + + + + + + + + + + + + polygon #17 + 77 + 161 + 63 + 68 + 2 + + + + + + + + + + + + + + + + + + + + + + + oval #21 + 84 + 203 + 7 + 7 + + + + + + + + + + + oval #24 + 104 + 215 + 7 + 7 + + + + + + + + + + + oval #27 + 117 + 174 + 7 + 7 + + + + + + + + + + + text #30 + (+Y is up) + 40 + 316 + 120 + + + + + 1 + + + text entry #33 + $(P)$(T).YANG + 95 + 63 + 90 + 22 + + + + + + + + + 1 + false + false + + + text #37 + Table angle + 95 + 33 + 90 + 15 + + + + + 1 + + + text #40 + (degrees) + 95 + 48 + 90 + 15 + + + + + 1 + + + polyline #43 + 98 + 86 + 81 + 0 + 1 + + + + + + + + + + + + + text #47 + +Z' + 141 + 128 + 20 + 15 + + + + + + + + + true + + + text #50 + +X' + 36 + 155 + 20 + 15 + + + + + + + + + true + + + polyline #53 + 195 + 30 + 3 + 345 + + + + + + + + + + + + + arc #57 + 65 + 151 + 90 + 90 + 61.0 + 29.0 + 1 + + + + + true + + + polyline #60 + 62 + 168 + 49 + 27 + 2 + + + + + + + + + + + + + polyline #64 + 120 + 87 + 21 + 65 + 1 + + + + + + + + + + + + + polyline #68 + 110 + 142 + 31 + 53 + 2 + + + + + + + + + + + + + oval #72 + 113 + 191 + 7 + 7 + + + + + + + + + + + composite #75 + 22 + 96 + 98 + 110 + + true + + text #78 + +X + 90 + 20 + + + + + true + + + polyline #81 + 28 + 93 + 14 + 11 + 2 + + + + + + + + + + + + + + + polyline #85 + 28 + 98 + 62 + 2 + 2 + + + + + + + + + + + + + polyline #89 + 88 + 31 + 2 + 69 + 2 + + + + + + + + + + + + + polyline #93 + 80 + 28 + 16 + 16 + 2 + + + + + + + + + + + + + + + text #97 + +Z + 78 + 20 + + + + + true + + + + menu #100 + $(P)$(T).GEOM + 540 + 311 + 20 + + + + + false + + + text #103 + Geometry + 450 + 311 + 80 + + + + + true + + + text #106 + You're using the wrong setup display + 425 + 351 + 270 + 14 + + + + + true + + + + false + + $(P)$(T).GEOM + + + + + text #110 + This display is for the PNC geometry + 425 + 336 + 270 + 14 + + + + + true + + + + false + + $(P)$(T).GEOM + + + + + oval #114 + 460 + 56 + 10 + 10 + + + + + + + + + + + composite #117 + 460 + 41 + 10 + 11 + + true + + rectangle #120 + 10 + 10 + 1 + + + + + + + + + true + + + polyline #124 + 1 + 5 + 9 + 1 + 1 + + + + + + + + + + + + + polyline #129 + 5 + 1 + 1 + 10 + 1 + + + + + + + + + + + + + + oval #134 + 460 + 71 + 10 + 10 + + + + + + + + + + + text #137 + PIVOT POINTS + 480 + 56 + 80 + 10 + + + + + true + + + text #140 + LOCAL ORIGIN + 480 + 41 + 80 + 10 + + + + + true + + + text #143 + 'FIXED' POINT + 480 + 71 + 80 + 10 + + + + + true + + + polyline #146 + 110 + 242 + 2 + 51 + 2 + + + + + + + + + + + + + polyline #150 + 104 + 241 + 13 + 13 + 2 + + + + + + + + + + + + + + + text #154 + BEAM + 97 + 226 + 30 + 14 + + + + + 1 + + + composite #157 + 700 + 30 + + true + + rectangle #160 + 700 + 27 + + + + + + + + + + + polyline #163 + 27 + 699 + 3 + + + + + + + + + + + + + text #167 + ($(P)$(T)) + 350 + 5 + 350 + 15 + + + + + 1 + + + text entry #170 + $(P)$(T).DESC + 350 + 27 + + + + + + + + + + + + + 1 + false + false + + + + text entry #174 + $(P)$(T).RX + 495 + 116 + 60 + 18 + + + + + + + + + 1 + false + false + + + text entry #178 + $(P)$(T).RY + 495 + 135 + 60 + 18 + + + + + + + + + 1 + false + false + + + text entry #182 + $(P)$(T).SX + 615 + 115 + 60 + 18 + + + + + + + + + 1 + false + false + + + text entry #186 + $(P)$(T).SZ + 615 + 155 + 60 + 18 + + + + + + + + + 1 + false + false + + + text entry #190 + $(P)$(T).SY + 615 + 135 + 60 + 18 + + + + + + + + + 1 + false + false + + + text #194 + Rx' + 460 + 115 + 20 + + + + + + + + + true + + + text #197 + Rz' + 460 + 155 + 20 + + + + + + + + + true + + + text #200 + Ry' + 460 + 135 + 20 + + + + + + + + + true + + + text #203 + Sx' + 580 + 115 + 20 + + + + + + + + + true + + + text #206 + Sz' + 580 + 155 + 20 + + + + + + + + + true + + + text #209 + Sy' + 580 + 135 + 20 + + + + + + + + + true + + + text entry #212 + $(P)$(T).RZ + 495 + 155 + 60 + 18 + + + + + + + + + 1 + false + false + + + text update #216 + $(P)$(Q)fpSelect.VAL + 580 + 58 + 95 + 14 + + + + + + + + + 1 + false + 1 + false + + + menu #220 + $(P)$(Q)fpSelect + 580 + 75 + 95 + 20 + + + + + false + + + related display #223 + + + table_fixedPoints.opi + tab + Fixed points + + + Fixed points + 580 + 35 + 95 + 20 + + + + + + + + + + + related display #226 + + + table_setup_PNC_refresh.opi + replace + + + REFRESH MENU + 585 + 95 + 85 + 15 + + + + + + + + + + + rectangle #229 + 230 + 41 + 200 + 250 + + + + + + + + + + + oval #232 + 325 + 56 + 10 + 10 + + + + + + + + + + + text #235 + M2 + 320 + 71 + 20 + + + + + true + + + composite #238 + 311 + 58 + 15 + 5 + + true + + polyline #241 + 8 + 6 + 2 + + + + + + + + + + + + + + + polyline #245 + 1 + 2 + 15 + 2 + 2 + + + + + + + + + + + + + + composite #249 + 327 + 43 + 5 + 15 + + true + + polyline #252 + 2 + 1 + 2 + 15 + 2 + + + + + + + + + + + + + polyline #256 + 6 + 7 + 2 + + + + + + + + + + + + + + + + composite #260 + 200 + 63 + 30 + 204 + + true + + polyline #263 + 4 + 1 + 25 + 1 + 1 + + + + + + + + + + + + + polyline #267 + 5 + 203 + 25 + 1 + 1 + + + + + + + + + + + + + composite #271 + 1 + 20 + 203 + + true + + polyline #274 + 10 + 1 + 60 + 1 + + + + + + + + + + + + + text #278 + Lz' + 60 + 20 + + + + + true + + + polyline #281 + 10 + 82 + 1 + 121 + 1 + + + + + + + + + + + + + + + text entry #285 + $(P)$(T).LZ + 235 + 126 + 60 + 18 + + + + + + + + + 1 + false + false + + + text #289 + Lx' + 319 + 301 + 20 + + + + + true + + + polyline #292 + 345 + 311 + 62 + 1 + 1 + + + + + + + + + + + + + polyline #296 + 257 + 311 + 59 + 1 + 1 + + + + + + + + + + + + + text entry #300 + $(P)$(T).LX + 300 + 318 + 60 + 18 + + + + + + + + + 1 + false + false + + + polyline #304 + 256 + 297 + 1 + 25 + 1 + + + + + + + + + + + + + polyline #308 + 406 + 297 + 1 + 25 + 1 + + + + + + + + + + + + + oval #312 + 250 + 261 + 10 + 10 + + + + + + + + + + + oval #315 + 345 + 128 + 10 + 10 + + + + + + + + + + + text #318 + M1 + 264 + 250 + 20 + + + + + true + + + text #321 + M0 + 378 + 243 + 20 + + + + + true + + + composite #324 + 256 + 168 + 64 + 57 + + true + + text #327 + +X' + 43 + 20 + 14 + + + + + true + + + text #330 + +Z' + 44 + 20 + 14 + + + + + true + + + polyline #333 + 51 + 20 + 2 + 33 + 2 + + + + + + + + + + + + + polyline #337 + 44 + 17 + 14 + 14 + 2 + + + + + + + + + + + + + + + polyline #341 + 21 + 45 + 14 + 11 + 2 + + + + + + + + + + + + + + + polyline #345 + 24 + 50 + 28 + 2 + 2 + + + + + + + + + + + + + + oval #349 + 400 + 261 + 10 + 10 + + + + + + + + + + + polyline #352 + 405 + 266 + 26 + 25 + + + + + + + + + + + + + polyline #356 + 349 + 131 + 82 + 160 + + + + + + + + + + + + + text #360 + S + 360 + 121 + 15 + + + + + + + + + true + + + composite #363 + 400 + 261 + 10 + 11 + + true + + rectangle #366 + 10 + 10 + 1 + + + + + + + + + true + + + polyline #370 + 1 + 5 + 9 + 1 + 1 + + + + + + + + + + + + + polyline #375 + 5 + 1 + 1 + 10 + 1 + + + + + + + + + + + + + + text #380 + R + 425 + 294 + 15 + + + + + + + + + true + + + composite #383 + 386 + 247 + 20 + 39 + + true + + composite #386 + 17 + 15 + 5 + + true + + polyline #389 + 8 + 6 + 2 + + + + + + + + + + + + + + + polyline #393 + 1 + 2 + 15 + 2 + 2 + + + + + + + + + + + + + + polyline #397 + 18 + 2 + 39 + 2 + + + + + 1 + + + + + + + + + + rectangle #401 + 460 + 241 + 200 + + + + + + + + + + + oval #404 + 480 + 261 + 10 + 10 + + + + + + + + + + + oval #407 + 630 + 261 + 10 + 10 + + + + + + + + + + + oval #410 + 555 + 261 + 10 + 10 + + + + + + + + + + + polyline #413 + 591 + 265 + 88 + 2 + 2 + + + + + + + + + + + + + text #417 + M1 + 475 + 276 + 20 + + + + + true + + + text #420 + M0 + 625 + 276 + 20 + + + + + true + + + text #423 + M2 + 550 + 276 + 20 + + + + + true + + + composite #426 + 509 + 219 + 20 + 53 + + true + + polyline #429 + 7 + 20 + 2 + 33 + 2 + + + + + + + + + + + + + polyline #433 + 17 + 14 + 14 + 2 + + + + + + + + + + + + + + + text #437 + +Y' + 20 + 14 + + + + + true + + + + composite #440 + 630 + 261 + 10 + 11 + + true + + rectangle #443 + 10 + 10 + 1 + + + + + + + + + true + + + polyline #447 + 1 + 5 + 9 + 1 + 1 + + + + + + + + + + + + + polyline #452 + 5 + 1 + 1 + 10 + 1 + + + + + + + + + + + + + + polyline #457 + 635 + 239 + 25 + 29 + + + + + + + + + + + + + text #461 + R + 661 + 231 + 15 + + + + + + + + + true + + + polyline #464 + 584 + 190 + 76 + 53 + + + + + + + + + + + + + oval #468 + 580 + 186 + 10 + 10 + + + + + + + + + + + text #471 + S + 565 + 192 + 15 + + + + + + + + + true + + + composite #474 + table_limits.bob + 371 + 700 + 129 + + + menu #476 + $(P)$(T).AUNIT + 290 + 345 + 120 + 20 + + + + + false + + + text #479 + Angle units + 205 + 348 + 80 + 14 + true + + diff --git a/opticsApp/op/bob/autoconvert/table_setup_PNC_refresh.bob b/opticsApp/op/bob/autoconvert/table_setup_PNC_refresh.bob new file mode 100644 index 0000000..7677d66 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/table_setup_PNC_refresh.bob @@ -0,0 +1,36 @@ + + + table_setup_PNC_refresh + 36 + 25 + 700 + 120 + + + + + false + 5 + + related display #6 + + + table_setup_PNC.opi + replace + + + PRESS AGAIN + 585 + 95 + 85 + 15 + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/table_setup_SRI.bob b/opticsApp/op/bob/autoconvert/table_setup_SRI.bob new file mode 100644 index 0000000..4613e06 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/table_setup_SRI.bob @@ -0,0 +1,2121 @@ + + + table_setup_SRI + 723 + 30 + 700 + 500 + + + + + false + 5 + + composite #6 + 125 + 150 + 8 + 10 + + true + + polyline #9 + 5 + 3 + 7 + 1 + + + + + + + + + + + + + polyline #13 + 7 + 8 + 3 + 1 + + + + + + + + + + + + + + polygon #17 + 77 + 161 + 63 + 68 + 2 + + + + + + + + + + + + + + + + + + + + + + + oval #21 + 84 + 203 + 7 + 7 + + + + + + + + + + + oval #24 + 104 + 215 + 7 + 7 + + + + + + + + + + + oval #27 + 117 + 174 + 7 + 7 + + + + + + + + + + + rectangle #30 + 469 + 241 + 200 + + + + + + + + + + + oval #33 + 489 + 261 + 10 + 10 + + + + + + + + + + + oval #36 + 639 + 261 + 10 + 10 + + + + + + + + + + + oval #39 + 564 + 261 + 10 + 10 + + + + + + + + + + + polyline #42 + 600 + 265 + 88 + 2 + 2 + + + + + + + + + + + + + composite #46 + 484 + 276 + 170 + 20 + + true + + text #49 + M0 + 20 + + + + + true + + + text #52 + M1 + 150 + 20 + + + + + true + + + text #55 + M2 + 75 + 20 + + + + + true + + + + text #58 + (+Y is up) + 40 + 316 + 120 + + + + + 1 + + + text entry #61 + $(P)$(T).YANG + 95 + 63 + 90 + 22 + + + + + + + + + 1 + false + false + + + text #65 + Table angle + 95 + 33 + 90 + 15 + + + + + 1 + + + text #68 + (degrees) + 95 + 48 + 90 + 15 + + + + + 1 + + + polyline #71 + 98 + 86 + 81 + 0 + 1 + + + + + + + + + + + + + text #75 + +Z' + 141 + 128 + 20 + 15 + + + + + + + + + true + + + text #78 + +X' + 36 + 155 + 20 + 15 + + + + + + + + + true + + + polyline #81 + 195 + 30 + 3 + 345 + + + + + + + + + + + + + arc #85 + 65 + 151 + 90 + 90 + 61.0 + 29.0 + 1 + + + + + true + + + polyline #88 + 62 + 168 + 49 + 27 + 2 + + + + + + + + + + + + + polyline #92 + 120 + 87 + 21 + 65 + 1 + + + + + + + + + + + + + polyline #96 + 110 + 142 + 31 + 53 + 2 + + + + + + + + + + + + + oval #100 + 113 + 191 + 7 + 7 + + + + + + + + + + + composite #103 + 22 + 96 + 98 + 110 + + true + + text #106 + +X + 90 + 20 + + + + + true + + + polyline #109 + 28 + 93 + 14 + 11 + 2 + + + + + + + + + + + + + + + polyline #113 + 28 + 98 + 62 + 2 + 2 + + + + + + + + + + + + + polyline #117 + 88 + 31 + 2 + 69 + 2 + + + + + + + + + + + + + polyline #121 + 80 + 28 + 16 + 16 + 2 + + + + + + + + + + + + + + + text #125 + +Z + 78 + 20 + + + + + true + + + + text #128 + You're using the wrong setup display + 425 + 351 + 270 + 14 + + + + + true + + + + false + + $(P)$(Q):geomIsSRI + + + + + text #132 + This display is for the SRI geometry + 425 + 336 + 270 + 14 + + + + + true + + + + false + + $(P)$(Q):geomIsSRI + + + + + composite #136 + 518 + 219 + 20 + 53 + + true + + polyline #139 + 7 + 20 + 2 + 33 + 2 + + + + + + + + + + + + + polyline #143 + 17 + 14 + 14 + 2 + + + + + + + + + + + + + + + text #147 + +Y' + 20 + 14 + + + + + true + + + + rectangle #150 + 230 + 41 + 200 + 250 + + + + + + + + + + + oval #153 + 250 + 261 + 10 + 10 + + + + + + + + + + + oval #156 + 325 + 56 + 10 + 10 + + + + + + + + + + + oval #159 + 345 + 128 + 10 + 10 + + + + + + + + + + + text #162 + M0 + 264 + 250 + 20 + + + + + true + + + text #165 + M1 + 378 + 258 + 20 + + + + + true + + + text #168 + M2 + 320 + 71 + 20 + + + + + true + + + composite #171 + 236 + 263 + 15 + 5 + + true + + polyline #174 + 8 + 6 + 2 + + + + + + + + + + + + + + + polyline #178 + 1 + 2 + 15 + 2 + 2 + + + + + + + + + + + + + + composite #182 + 311 + 58 + 15 + 5 + + true + + polyline #185 + 8 + 6 + 2 + + + + + + + + + + + + + + + polyline #189 + 1 + 2 + 15 + 2 + 2 + + + + + + + + + + + + + + composite #193 + 327 + 43 + 5 + 15 + + true + + polyline #196 + 2 + 1 + 2 + 15 + 2 + + + + + + + + + + + + + polyline #200 + 6 + 7 + 2 + + + + + + + + + + + + + + + + polyline #204 + 254 + 246 + 2 + 39 + 2 + + + + + 1 + + + + + + + + + composite #208 + 256 + 168 + 64 + 57 + + true + + text #211 + +X' + 43 + 20 + 14 + + + + + true + + + text #214 + +Z' + 44 + 20 + 14 + + + + + true + + + polyline #217 + 51 + 20 + 2 + 33 + 2 + + + + + + + + + + + + + polyline #221 + 44 + 17 + 14 + 14 + 2 + + + + + + + + + + + + + + + polyline #225 + 21 + 45 + 14 + 11 + 2 + + + + + + + + + + + + + + + polyline #229 + 24 + 50 + 28 + 2 + 2 + + + + + + + + + + + + + + composite #233 + 200 + 63 + 30 + 204 + + true + + polyline #236 + 4 + 1 + 25 + 1 + 1 + + + + + + + + + + + + + polyline #240 + 5 + 203 + 25 + 1 + 1 + + + + + + + + + + + + + composite #244 + 1 + 20 + 203 + + true + + polyline #247 + 10 + 1 + 60 + 1 + + + + + + + + + + + + + text #251 + Lz' + 60 + 20 + + + + + true + + + polyline #254 + 10 + 82 + 1 + 121 + 1 + + + + + + + + + + + + + + + oval #258 + 400 + 261 + 10 + 10 + + + + + + + + + + + composite #261 + 639 + 261 + 10 + 11 + + true + + rectangle #264 + 10 + 10 + 1 + + + + + + + + + true + + + polyline #268 + 1 + 5 + 9 + 1 + 1 + + + + + + + + + + + + + polyline #273 + 5 + 1 + 1 + 10 + 1 + + + + + + + + + + + + + + text entry #278 + $(P)$(T).LZ + 235 + 126 + 60 + 18 + + + + + + + + + 1 + false + false + + + polyline #282 + 405 + 266 + 26 + 25 + + + + + + + + + + + + + text #286 + R + 425 + 294 + 15 + + + + + + + + + true + + + polyline #289 + 349 + 131 + 82 + 160 + + + + + + + + + + + + + text #293 + S + 360 + 121 + 15 + + + + + + + + + true + + + polyline #296 + 644 + 239 + 25 + 29 + + + + + + + + + + + + + text #300 + R + 670 + 231 + 15 + + + + + + + + + true + + + polyline #303 + 593 + 190 + 76 + 53 + + + + + + + + + + + + + oval #307 + 589 + 186 + 10 + 10 + + + + + + + + + + + text #310 + S + 574 + 192 + 15 + + + + + + + + + true + + + oval #313 + 460 + 56 + 10 + 10 + + + + + + + + + + + composite #316 + 460 + 41 + 10 + 11 + + true + + rectangle #319 + 10 + 10 + 1 + + + + + + + + + true + + + polyline #323 + 1 + 5 + 9 + 1 + 1 + + + + + + + + + + + + + polyline #328 + 5 + 1 + 1 + 10 + 1 + + + + + + + + + + + + + + oval #333 + 460 + 71 + 10 + 10 + + + + + + + + + + + text #336 + PIVOT POINTS + 480 + 56 + 80 + 10 + + + + + true + + + text #339 + LOCAL ORIGIN + 480 + 41 + 80 + 10 + + + + + true + + + text #342 + 'FIXED' POINT + 480 + 71 + 80 + 10 + + + + + true + + + text #345 + Lx' + 319 + 301 + 20 + + + + + true + + + polyline #348 + 345 + 311 + 62 + 1 + 1 + + + + + + + + + + + + + polyline #352 + 257 + 311 + 59 + 1 + 1 + + + + + + + + + + + + + text entry #356 + $(P)$(T).LX + 300 + 318 + 60 + 18 + + + + + + + + + 1 + false + false + + + polyline #360 + 256 + 297 + 1 + 25 + 1 + + + + + + + + + + + + + polyline #364 + 406 + 297 + 1 + 25 + 1 + + + + + + + + + + + + + polyline #368 + 110 + 242 + 2 + 51 + 2 + + + + + + + + + + + + + polyline #372 + 104 + 241 + 13 + 13 + 2 + + + + + + + + + + + + + + + text #376 + BEAM + 97 + 226 + 30 + 14 + + + + + 1 + + + composite #379 + 400 + 261 + 10 + 11 + + true + + rectangle #382 + 10 + 10 + 1 + + + + + + + + + true + + + polyline #386 + 1 + 5 + 9 + 1 + 1 + + + + + + + + + + + + + polyline #391 + 5 + 1 + 1 + 10 + 1 + + + + + + + + + + + + + + composite #396 + 700 + 30 + + true + + rectangle #399 + 700 + 27 + + + + + + + + + + + polyline #402 + 27 + 699 + 3 + + + + + + + + + + + + + text #406 + ($(P)$(T)) + 350 + 5 + 350 + 15 + + + + + 1 + + + text entry #409 + $(P)$(T).DESC + 350 + 27 + + + + + + + + + + + + + 1 + false + false + + + + text entry #413 + $(P)$(T).RX + 495 + 116 + 60 + 18 + + + + + + + + + 1 + false + false + + + text entry #417 + $(P)$(T).RY + 495 + 135 + 60 + 18 + + + + + + + + + 1 + false + false + + + text entry #421 + $(P)$(T).SX + 615 + 115 + 60 + 18 + + + + + + + + + 1 + false + false + + + text entry #425 + $(P)$(T).SZ + 615 + 155 + 60 + 18 + + + + + + + + + 1 + false + false + + + text entry #429 + $(P)$(T).SY + 615 + 135 + 60 + 18 + + + + + + + + + 1 + false + false + + + composite #433 + 460 + 115 + 140 + 60 + + true + + text #436 + Rx' + 20 + + + + + + + + + true + + + text #439 + Rz' + 40 + 20 + + + + + + + + + true + + + text #442 + Ry' + 20 + 20 + + + + + + + + + true + + + text #445 + Sx' + 120 + 20 + + + + + + + + + true + + + text #448 + Sz' + 120 + 40 + 20 + + + + + + + + + true + + + text #451 + Sy' + 120 + 20 + 20 + + + + + + + + + true + + + + text entry #454 + $(P)$(T).RZ + 495 + 155 + 60 + 18 + + + + + + + + + 1 + false + false + + + text update #458 + $(P)$(Q)fpSelect.VAL + 580 + 58 + 95 + 14 + + + + + + + + + 1 + false + 1 + false + + + menu #462 + $(P)$(Q)fpSelect + 580 + 75 + 95 + 20 + + + + + false + + + related display #465 + + + table_fixedPoints.opi + tab + Fixed points + + + Fixed points + 580 + 35 + 95 + 20 + + + + + + + + + + + related display #468 + + + table_setup_SRI_refresh.opi + replace + + + REFRESH MENU + 585 + 95 + 85 + 15 + + + + + + + + + + + composite #471 + table_limits.bob + 371 + 700 + 129 + + + menu #473 + $(P)$(T).GEOM + 540 + 311 + 20 + + + + + false + + + text #476 + Geometry + 450 + 311 + 80 + + + + + true + + + menu #479 + $(P)$(T).AUNIT + 290 + 345 + 120 + 20 + + + + + false + + + text #482 + Angle units + 205 + 348 + 80 + 14 + true + + diff --git a/opticsApp/op/bob/autoconvert/table_setup_SRI_refresh.bob b/opticsApp/op/bob/autoconvert/table_setup_SRI_refresh.bob new file mode 100644 index 0000000..0ff4ea3 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/table_setup_SRI_refresh.bob @@ -0,0 +1,36 @@ + + + table_setup_SRI_refresh + 36 + 25 + 700 + 120 + + + + + false + 5 + + related display #6 + + + table_setup_SRI.opi + replace + + + PRESS AGAIN + 585 + 95 + 85 + 15 + + + + + + + + + + diff --git a/opticsApp/op/bob/autoconvert/table_soft.bob b/opticsApp/op/bob/autoconvert/table_soft.bob new file mode 100644 index 0000000..aac724a --- /dev/null +++ b/opticsApp/op/bob/autoconvert/table_soft.bob @@ -0,0 +1,1545 @@ + + + table_soft + 1255 + 241 + 230 + 390 + + + + + false + 5 + + text update #6 + $(P)$(T).DESC + 230 + + + + + + + + + + + + + 1 + false + 1 + false + + + polyline #10 + -1 + 20 + 232 + 3 + + + + + + + + + + + + + related display #14 + + + table_refresh.opi + replace + Refresh fixed-point menu + + + REFRESH MENU + 95 + 43 + 135 + 15 + + + + + + + + + + + menu #17 + $(P)$(Q)fpSelect + 95 + 23 + 135 + 20 + + + + + false + + + text #20 + Fixed point: + 5 + 27 + 85 + 14 + true + + + text update #23 + $(P)$(Q):z.RBV + 25 + 262 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #27 + 25 + 260 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + text update #31 + $(P)$(Q):x.RBV + 25 + 82 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #35 + Limit + 90 + 63 + 60 + 18 + + + + + + + + + 1 + + + + false + + $(P)$(T).LVIO + + + + + text update #39 + $(P)$(T).LEGU + 25 + 63 + 70 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #43 + X + 10 + 102 + 20 + + + + + true + + + text entry #46 + $(P)$(Q):x.VAL + 25 + 100 + 80 + 22 + + + + + + + + + 1 + false + false + + + rectangle #50 + 25 + 80 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #54 + 23 + 78 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + text update #58 + $(P)$(T).AEGU + 150 + 63 + 70 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #62 + AX + 115 + 102 + 20 + + + + + true + + + text entry #65 + $(P)$(Q):ax.VAL + 140 + 100 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #69 + $(P)$(Q):ax.RBV + 140 + 82 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #73 + 140 + 80 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #77 + 138 + 78 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + text #81 + Y + 10 + 193 + 20 + + + + + true + + + text entry #84 + $(P)$(Q):y.VAL + 25 + 190 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #88 + $(P)$(Q):y.RBV + 25 + 172 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #92 + 25 + 170 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #96 + 23 + 168 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + text #100 + AY + 115 + 191 + 20 + + + + + true + + + text entry #103 + $(P)$(Q):ay.VAL + 140 + 190 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #107 + $(P)$(Q):ay.RBV + 140 + 172 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #111 + 140 + 170 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #115 + 138 + 168 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + choice button #119 + $(P)$(T).SET + 350 + 80 + 20 + + + + + false + + Item 1 + Item 2 + + + + message button #122 + + + $(P)$(Q):sync + 1 + Write + + + $(P)$(Q):sync + Sync + 370 + 50 + 20 + + + + + + + message button #125 + + + $(P)$(Q):init + 1 + Write + + + $(P)$(Q):init + Init + 50 + 370 + 50 + 20 + + + + + + + message button #128 + + + $(P)$(Q):zero + 1 + Write + + + $(P)$(Q):zero + Zero + 80 + 350 + 35 + 20 + + + + + + + message button #131 + + + $(P)$(Q):stop.VAL + 1 + Write + + + $(P)$(Q):stop.VAL + Stop + 120 + 366 + 60 + 25 + + + + + + + + + + + composite #134 + 120 + 345 + 60 + 20 + + true + + text #137 + Done + 60 + + + + + + + + + 1 + + + + false + + $(P)$(Q):done.VAL + + + + + text #141 + Moving + 60 + + + + + + + + + 1 + + + + false + + $(P)$(Q):done.VAL + + + + + + related display #145 + + + table_full_soft.opi + replace + More + + + table_setup_SRI.opi + tab + Setup (SRI geometry) + + + table_setup_GEOCARS.opi + tab + Setup (GEOCARS geometry) + + + table_setup_NEWPORT.opi + tab + Setup (NEWPORT geometry) + + + table_setup_PNC.opi + tab + Setup (PNC geometry) + + + table_fixedPoints.opi + tab + Fixed points + + + More + 185 + 370 + 40 + 20 + + + + + + + + + + + related display #153 + + + table_tiny_soft.opi + replace + Less + + + Less + 185 + 350 + 40 + 20 + + + + + + + + + + + text #156 + Z + 10 + 282 + 20 + + + + + true + + + text entry #159 + $(P)$(Q):z.VAL + 25 + 280 + 80 + 22 + + + + + + + + + 1 + false + false + + + rectangle #163 + 23 + 258 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + text #167 + AZ + 115 + 281 + 20 + + + + + true + + + text entry #170 + $(P)$(Q):az.VAL + 140 + 280 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #174 + $(P)$(Q):az.RBV + 140 + 262 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #178 + 140 + 260 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #182 + 138 + 258 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + text entry #186 + $(P)$(Q):x.TWV + 45 + 120 + 44 + 18 + + + + + + + + + 1 + false + false + + + message button #190 + + + $(P)$(Q):x.TWF + 1 + Write + + + $(P)$(Q):x.TWF + > + 89 + 120 + 20 + 18 + + + + + + + message button #193 + + + $(P)$(Q):x.TWR + 1 + Write + + + $(P)$(Q):x.TWR + < + 25 + 120 + 20 + 18 + + + + + + + text entry #196 + $(P)$(Q):ax.TWV + 160 + 120 + 44 + 18 + + + + + + + + + 1 + false + false + + + message button #200 + + + $(P)$(Q):ax.TWF + 1 + Write + + + $(P)$(Q):ax.TWF + > + 204 + 120 + 20 + 18 + + + + + + + message button #203 + + + $(P)$(Q):ax.TWR + 1 + Write + + + $(P)$(Q):ax.TWR + < + 140 + 120 + 20 + 18 + + + + + + + text entry #206 + $(P)$(Q):y.TWV + 45 + 210 + 44 + 18 + + + + + + + + + 1 + false + false + + + message button #210 + + + $(P)$(Q):y.TWF + 1 + Write + + + $(P)$(Q):y.TWF + > + 89 + 210 + 20 + 18 + + + + + + + message button #213 + + + $(P)$(Q):y.TWR + 1 + Write + + + $(P)$(Q):y.TWR + < + 25 + 210 + 20 + 18 + + + + + + + text entry #216 + $(P)$(Q):ay.TWV + 160 + 210 + 44 + 18 + + + + + + + + + 1 + false + false + + + message button #220 + + + $(P)$(Q):ay.TWF + 1 + Write + + + $(P)$(Q):ay.TWF + > + 204 + 210 + 20 + 18 + + + + + + + message button #223 + + + $(P)$(Q):ay.TWR + 1 + Write + + + $(P)$(Q):ay.TWR + < + 140 + 210 + 20 + 18 + + + + + + + text entry #226 + $(P)$(Q):z.TWV + 45 + 300 + 44 + 18 + + + + + + + + + 1 + false + false + + + message button #230 + + + $(P)$(Q):z.TWF + 1 + Write + + + $(P)$(Q):z.TWF + > + 89 + 300 + 20 + 18 + + + + + + + message button #233 + + + $(P)$(Q):z.TWR + 1 + Write + + + $(P)$(Q):z.TWR + < + 25 + 300 + 20 + 18 + + + + + + + text entry #236 + $(P)$(Q):az.TWV + 160 + 300 + 44 + 18 + + + + + + + + + 1 + false + false + + + message button #240 + + + $(P)$(Q):az.TWF + 1 + Write + + + $(P)$(Q):az.TWF + > + 204 + 300 + 20 + 18 + + + + + + + message button #243 + + + $(P)$(Q):az.TWR + 1 + Write + + + $(P)$(Q):az.TWR + < + 140 + 300 + 20 + 18 + + + + + + + polyline #246 + -1 + 58 + 233 + 2 + 2 + + + + + + + + + + + + + rectangle #250 + 21 + 76 + 90 + 64 + 2 + + + + + + + + + true + + + + false + + $(P)$(Q):x.DMOV + + + + + rectangle #254 + 136 + 76 + 90 + 64 + 2 + + + + + + + + + true + + + + false + + $(P)$(Q):ax.DMOV + + + + + rectangle #258 + 21 + 166 + 90 + 64 + 2 + + + + + + + + + true + + + + false + + $(P)$(Q):y.DMOV + + + + + rectangle #262 + 136 + 166 + 90 + 64 + 2 + + + + + + + + + true + + + + false + + $(P)$(Q):ay.DMOV + + + + + rectangle #266 + 20 + 256 + 90 + 64 + 2 + + + + + + + + + true + + + + false + + $(P)$(Q):z.DMOV + + + + + rectangle #270 + 135 + 257 + 90 + 64 + 2 + + + + + + + + + true + + + + false + + $(P)$(Q):az.DMOV + + + + diff --git a/opticsApp/op/bob/autoconvert/table_tiny.bob b/opticsApp/op/bob/autoconvert/table_tiny.bob new file mode 100644 index 0000000..bce4587 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/table_tiny.bob @@ -0,0 +1,951 @@ + + + table_tiny + 103 + 180 + 230 + 250 + + + + + false + 5 + + text update #6 + $(P)$(T).EX + 25 + 42 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #10 + Z + 10 + 172 + 20 + + + + + true + + + text #13 + Y + 10 + 118 + 20 + + + + + true + + + text #16 + Limit + 100 + 23 + 50 + 18 + + + + + + + + + 1 + + + + false + + $(P)$(T).LVIO + + + + + text update #20 + $(P)$(T).LEGU + 25 + 23 + 60 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #24 + X + 10 + 62 + 20 + + + + + true + + + text update #27 + $(P)$(T).DESC + 230 + + + + + + + + + + + + + 1 + false + 1 + false + + + polyline #31 + 20 + 231 + 3 + + + + + + + + + + + + + related display #35 + + + table.opi + replace + More + + + table_setup_SRI.opi + tab + Setup (SRI geometry) + + + table_setup_GEOCARS.opi + tab + Setup (GEOCARS geometry) + + + table_setup_NEWPORT.opi + tab + Setup (NEWPORT geometry) + + + table_setup_PNC.opi + tab + Setup (PNC geometry) + + + More + 180 + 225 + 40 + 20 + + + + + + + + + + + choice button #42 + $(P)$(T).SET + 5 + 200 + 80 + 20 + + + + + false + + Item 1 + Item 2 + + + + message button #45 + + + $(P)$(T).ZERO + 1 + Write + + + $(P)$(T).ZERO + Zero + 90 + 200 + 40 + 20 + + + + + + + message button #48 + + + $(P)$(T).SYNC + 1 + Write + + + $(P)$(T).SYNC + Sync + 5 + 225 + 50 + 20 + + + + + + + message button #51 + + + $(P)$(T).INIT + 1 + Write + + + $(P)$(T).INIT + Init + 55 + 225 + 50 + 20 + + + + + + + message button #54 + + + $(P)$(Q):stop.VAL + 1 + Write + + + $(P)$(Q):stop.VAL + Stop + 135 + 200 + 60 + 25 + + + + + + + + + + + composite #57 + 110 + 225 + 60 + 20 + + true + + text #60 + Done + 60 + + + + + + + + + 1 + + + + false + + $(P)$(Q):done.VAL + + + + + text #64 + Moving + 60 + + + + + + + + + 1 + + + + false + + $(P)$(Q):done.VAL + + + + + + text entry #68 + $(P)$(T).X + 25 + 60 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #72 + $(P)$(T).EY + 25 + 97 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #76 + $(P)$(T).Y + 25 + 115 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #80 + $(P)$(T).EZ + 25 + 152 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #84 + $(P)$(T).Z + 25 + 170 + 80 + 22 + + + + + + + + + 1 + false + false + + + rectangle #88 + 25 + 40 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #92 + 25 + 95 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #96 + 25 + 150 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #100 + 23 + 38 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #104 + 23 + 93 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #108 + 23 + 148 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + text #112 + AZ + 115 + 171 + 20 + + + + + true + + + text #115 + AY + 115 + 116 + 20 + + + + + true + + + text update #118 + $(P)$(T).AEGU + 155 + 23 + 60 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #122 + AX + 115 + 62 + 20 + + + + + true + + + text update #125 + $(P)$(T).EAX + 140 + 42 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #129 + $(P)$(T).AX + 140 + 60 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #133 + $(P)$(T).EAY + 140 + 97 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #137 + $(P)$(T).AY + 140 + 115 + 80 + 22 + + + + + + + + + 1 + false + false + + + text update #141 + $(P)$(T).EAZ + 140 + 152 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text entry #145 + $(P)$(T).AZ + 140 + 170 + 80 + 22 + + + + + + + + + 1 + false + false + + + rectangle #149 + 140 + 40 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #153 + 140 + 95 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #157 + 140 + 150 + 80 + 18 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #161 + 138 + 38 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #165 + 138 + 93 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + + rectangle #169 + 138 + 148 + 84 + 22 + 2 + + + + + + + + + true + + + + false + + $(P)$(T).SET + + + + diff --git a/opticsApp/op/bob/autoconvert/table_tiny_soft.bob b/opticsApp/op/bob/autoconvert/table_tiny_soft.bob new file mode 100644 index 0000000..6891660 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/table_tiny_soft.bob @@ -0,0 +1,78 @@ + + + table_tiny_soft + 1227 + 699 + 230 + 250 + + + + + false + 5 + + text update #6 + $(P)$(Q):x.RBV + 25 + 42 + 80 + 15 + + + + + + + + + + + + + 1 + false + 1 + false + + + text #10 + Z + 10 + 172 + 20 + + + + + true + + + text #13 + Y + 10 + 118 + 20 + + + + + true + + + text #16 + Limit + 100 + 23 + 50 + 18 + + + + + + + + + 1 + + + virtualChannelCutMono + 992 + 294 + 400 + 152 + + + + + false + 5 + + text #6 + Energy (keV) + 10 + 40 + 120 + + + + + true + + + related display #9 + + + motorx.opi + + VCCMono:Energy + + tab + Energy + + + yyTransform.opi + + VCCMono:tFwd + + tab + tFwd + + + yyTransform.opi + + VCCMono:tRev + + tab + tRev + + + yyCalcoutRecord.opi + + VCCMono:calcDone + + tab + calcDone + + + yyCalcoutRecord.opi + + VCCMono:closeGate + + tab + closeGate + + + debug + 337 + 125 + 45 + 20 + + + + + + + + + + + text #16 + Offset (mm) + 10 + 65 + 120 + + + + + true + + + text #19 + deltaD + 10 + 90 + 120 + + + + + true + + + text #22 + d spacing (A) + 10 + 115 + 120 + + + + + true + + + choice button #25 + $(P)VCCMono:set + 280 + 40 + 20 + + + + + false + + Item 1 + Item 2 + + + + composite #28 + 145 + 40 + 130 + 95 + + true + + text entry #31 + $(P)VCCMono:Energy + 130 + + + + + + + + + 1 + false + false + + + text entry #35 + $(P)VCCMono:offset + 25 + 130 + + + + + + + + + 1 + false + false + + + text entry #39 + $(P)VCCMono:deltaD + 50 + 130 + + + + + + + + + 1 + false + false + + + text entry #43 + $(P)VCCMono:d_spacing + 75 + 130 + + + + + + + + + 1 + false + false + + + diff --git a/opticsApp/op/bob/autoconvert/xia_slit.bob b/opticsApp/op/bob/autoconvert/xia_slit.bob new file mode 100644 index 0000000..3c0ef38 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/xia_slit.bob @@ -0,0 +1,2043 @@ + + + xia_slit + 556 + 211 + 300 + 340 + + + + + false + 5 + + rectangle #6 + 300 + + + + + + + + + + + polyline #9 + 20 + 299 + 3 + + + + + + + + + + + + + text #13 + $(SLIT) + 170 + + + + + 1 + + + text #16 + (Looking upstream) + 170 + 6 + 110 + 12 + + + + + 1 + + + related display #19 + + + xia_slit_full.opi + replace + more + + + MORE + 250 + 324 + 50 + 16 + + + + + + + + + + + text update #22 + $(P)$(HSC)v0.DRVH + 204 + 242 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #26 + $(P)$(HSC)height.DRVH + 14 + 242 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #30 + $(P)$(HSC)h0.DRVH + 204 + 37 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #34 + $(P)$(HSC)width.DRVH + 14 + 37 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #38 + 99 + 125 + 100 + + + + + + + + + + + rectangle #41 + 99 + 200 + 100 + + + + + + + + + + + rectangle #44 + 99 + 200 + 100 + 2 + + + + + + + + + true + + + rectangle #47 + 99 + 50 + 100 + + + + + + + + + + + rectangle #50 + 99 + 50 + 100 + 2 + + + + + + + + + true + + + rectangle #53 + 19 + 125 + 100 + + + + + + + + + + + rectangle #56 + 19 + 125 + 100 + 2 + + + + + + + + + true + + + message button #59 + + + $(P)$(HSC)l_tweak.A + 1 + Write + + + $(P)$(HSC)l_tweak.A + < + 25 + 184 + 20 + 20 + + + + + + + text entry #62 + $(P)$(HSC)l_tweakVal.VAL + 44 + 186 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #66 + + + $(P)$(HSC)l_tweak.B + 1 + Write + + + $(P)$(HSC)l_tweak.B + > + 93 + 184 + 20 + 20 + + + + + + + text update #69 + $(P)$(HSC)l.DRVH + 29 + 135 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #73 + $(P)$(HSC)lRB + 29 + 143 + 60 + 14 + + + + + + + + + 1 + false + false + + + text entry #77 + $(P)$(HSC)l.VAL + 29 + 156 + 80 + + + + + + + + + 1 + false + false + + + text update #81 + $(P)$(HSC)l.DRVL + 29 + 176 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + related display #85 + + + scanParmsCustom.opi + + $(HSC)l + $(HSC)l.EGU + $(HSC)l + $(HSC)l + + tab + Setup scan parameters + + + + 44 + 205 + 16 + 16 + + + + + + + text #88 + Scan + 64 + 206 + 30 + 14 + true + + + rectangle #91 + 179 + 125 + 100 + + + + + + + + + + + rectangle #94 + 179 + 125 + 100 + 2 + + + + + + + + + true + + + text entry #97 + $(P)$(HSC)r.VAL + 189 + 156 + 80 + + + + + + + + + 1 + false + false + + + text update #101 + $(P)$(HSC)r.DRVL + 189 + 176 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + message button #105 + + + $(P)$(HSC)r_tweak.A + 1 + Write + + + $(P)$(HSC)r_tweak.A + < + 185 + 184 + 20 + 20 + + + + + + + text entry #108 + $(P)$(HSC)r_tweakVal.VAL + 204 + 186 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #112 + + + $(P)$(HSC)r_tweak.B + 1 + Write + + + $(P)$(HSC)r_tweak.B + > + 253 + 184 + 20 + 20 + + + + + + + text update #115 + $(P)$(HSC)r.DRVH + 189 + 135 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #119 + $(P)$(HSC)rRB + 189 + 143 + 60 + 14 + + + + + + + + + 1 + false + false + + + text #123 + Scan + 224 + 206 + 30 + 14 + true + + + related display #126 + + + scanParmsCustom.opi + + $(HSC)r + $(HSC)r.EGU + $(HSC)r + $(HSC)r + + tab + Setup scan parameters + + + + 204 + 205 + 16 + 16 + + + + + + + text entry #129 + $(P)$(HSC)t.VAL + 109 + 76 + 80 + + + + + + + + + 1 + false + false + + + text update #133 + $(P)$(HSC)t.DRVL + 109 + 96 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #137 + $(P)$(HSC)t.DRVH + 109 + 55 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #141 + $(P)$(HSC)tRB + 109 + 63 + 80 + 14 + + + + + + + + + 1 + false + false + + + text entry #145 + $(P)$(HSC)b.VAL + 109 + 251 + 80 + + + + + + + + + 1 + false + false + + + text update #149 + $(P)$(HSC)b.DRVL + 109 + 271 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + message button #153 + + + $(P)$(HSC)b_tweak.A + 1 + Write + + + $(P)$(HSC)b_tweak.A + DN + 104 + 279 + 20 + 19 + + + + + + + text entry #156 + $(P)$(HSC)b_tweakVal.VAL + 124 + 280 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #160 + + + $(P)$(HSC)b_tweak.B + 1 + Write + + + $(P)$(HSC)b_tweak.B + UP + 174 + 279 + 20 + 19 + + + + + + + text update #163 + $(P)$(HSC)b.DRVH + 109 + 230 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #167 + $(P)$(HSC)bRB + 109 + 238 + 60 + 14 + + + + + + + + + 1 + false + false + + + message button #171 + + + $(P)$(HSC)width_tweak.A + 1 + Write + + + $(P)$(HSC)width_tweak.A + - + 10 + 86 + 20 + 20 + + + + + + + text entry #174 + $(P)$(HSC)width_tweakVal.VAL + 29 + 88 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #178 + + + $(P)$(HSC)width_tweak.B + 1 + Write + + + $(P)$(HSC)width_tweak.B + + + 78 + 86 + 20 + 20 + + + + + + + text entry #181 + $(P)$(HSC)width.VAL + 14 + 58 + 80 + + + + + + + + + 1 + false + false + + + text update #185 + $(P)$(HSC)width.DRVL + 14 + 78 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #189 + $(P)$(HSC)widthRB + 14 + 45 + 60 + 14 + + + + + + + + + 1 + false + false + + + text #193 + H SIZE + 14 + 25 + 80 + 14 + + + + + 1 + + + text #196 + Scan + 239 + 106 + 30 + 14 + true + + + related display #199 + + + scanParmsCustom.opi + + $(HSC)h0 + $(HSC)h0.EGU + $(HSC)h0 + $(HSC)h0 + + tab + Setup scan parameters + + + + 219 + 105 + 16 + 16 + + + + + + + text #202 + Scan + 49 + 106 + 30 + 14 + true + + + related display #205 + + + scanParmsCustom.opi + + $(HSC)width + $(HSC)width.EGU + $(HSC)width + $(HSC)width + + tab + Setup scan parameters + + + + 29 + 105 + 16 + 16 + + + + + + + message button #208 + + + $(P)$(HSC)h0_tweak.A + 1 + Write + + + $(P)$(HSC)h0_tweak.A + < + 200 + 86 + 20 + 20 + + + + + + + text entry #211 + $(P)$(HSC)h0_tweakVal.VAL + 219 + 88 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #215 + + + $(P)$(HSC)h0_tweak.B + 1 + Write + + + $(P)$(HSC)h0_tweak.B + > + 268 + 86 + 20 + 20 + + + + + + + text entry #218 + $(P)$(HSC)h0.VAL + 204 + 58 + 80 + + + + + + + + + 1 + false + false + + + text update #222 + $(P)$(HSC)h0.DRVL + 204 + 78 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #226 + $(P)$(HSC)h0RB + 204 + 45 + 60 + 14 + + + + + + + + + 1 + false + false + + + text #230 + H CENTER + 204 + 25 + 80 + 14 + + + + + 1 + + + message button #233 + + + $(P)$(HSC)v0_tweak.A + 1 + Write + + + $(P)$(HSC)v0_tweak.A + DN + 200 + 291 + 20 + 19 + + + + + + + text entry #236 + $(P)$(HSC)v0_tweakVal.VAL + 219 + 292 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #240 + + + $(P)$(HSC)v0_tweak.B + 1 + Write + + + $(P)$(HSC)v0_tweak.B + UP + 268 + 291 + 20 + 19 + + + + + + + text entry #243 + $(P)$(HSC)v0.VAL + 204 + 263 + 80 + + + + + + + + + 1 + false + false + + + text update #247 + $(P)$(HSC)v0.DRVL + 204 + 283 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #251 + $(P)$(HSC)v0RB + 204 + 250 + 60 + 14 + + + + + + + + + 1 + false + false + + + text #255 + V CENTER + 204 + 230 + 80 + 14 + + + + + 1 + + + message button #258 + + + $(P)$(HSC)height_tweak.A + 1 + Write + + + $(P)$(HSC)height_tweak.A + - + 10 + 291 + 20 + 20 + + + + + + + text entry #261 + $(P)$(HSC)height_tweakVal.VAL + 29 + 293 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #265 + + + $(P)$(HSC)height_tweak.B + 1 + Write + + + $(P)$(HSC)height_tweak.B + + + 78 + 291 + 20 + 20 + + + + + + + text entry #268 + $(P)$(HSC)height.VAL + 14 + 263 + 80 + + + + + + + + + 1 + false + false + + + text update #272 + $(P)$(HSC)height.DRVL + 14 + 283 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #276 + $(P)$(HSC)heightRB + 14 + 250 + 60 + 14 + + + + + + + + + 1 + false + false + + + text #280 + V SIZE + 14 + 230 + 80 + 14 + + + + + 1 + + + text #283 + Scan + 144 + 131 + 30 + 14 + true + + + related display #286 + + + scanParmsCustom.opi + + $(HSC)t + $(HSC)t.EGU + $(HSC)t + $(HSC)t + + tab + Setup scan parameters + + + + 124 + 130 + 16 + 16 + + + + + + + text #289 + Scan + 144 + 206 + 30 + 14 + true + + + related display #292 + + + scanParmsCustom.opi + + $(HSC)b + $(HSC)b.EGU + $(HSC)b + $(HSC)b + + tab + Setup scan parameters + + + + 124 + 205 + 16 + 16 + + + + + + + text #295 + Scan + 239 + 311 + 30 + 14 + true + + + related display #298 + + + scanParmsCustom.opi + + $(HSC)v0 + $(HSC)v0.EGU + $(HSC)v0 + $(HSC)v0 + + tab + Setup scan parameters + + + + 219 + 310 + 16 + 16 + + + + + + + text #301 + Scan + 49 + 311 + 30 + 14 + true + + + related display #304 + + + scanParmsCustom.opi + + $(HSC)height + $(HSC)height.EGU + $(HSC)height + $(HSC)height + + tab + Setup scan parameters + + + + 29 + 310 + 16 + 16 + + + + + + + message button #307 + + + $(P)$(HSC)locate + 1 + Write + + + $(P)$(HSC)locate + Sync + 119 + 303 + 60 + 22 + + + + + + + text update #310 + $(P)$(HSC)h_Busy + 120 + 155 + 60 + + + + + + + + + + + + + 6 + false + 1 + false + + + text update #314 + $(P)$(HSC)widthRB.EGU + 75 + 45 + 20 + 14 + + + + + + + + + 1 + false + 2 + false + + + text update #318 + $(P)$(HSC)lRB.EGU + 90 + 143 + 20 + 14 + + + + + + + + + 1 + false + 2 + false + + + text update #322 + $(P)$(HSC)heightRB.EGU + 75 + 250 + 20 + 14 + + + + + + + + + 1 + false + 2 + false + + + text update #326 + $(P)$(HSC)tRB.EGU + 170 + 63 + 20 + 14 + + + + + + + + + 1 + false + 2 + false + + + text update #330 + $(P)$(HSC)h0RB.EGU + 265 + 45 + 20 + 14 + + + + + + + + + 1 + false + 2 + false + + + text update #334 + $(P)$(HSC)rRB.EGU + 250 + 143 + 20 + 14 + + + + + + + + + 1 + false + 2 + false + + + text update #338 + $(P)$(HSC)bRB.EGU + 170 + 238 + 20 + 14 + + + + + + + + + 1 + false + false + + + text update #342 + $(P)$(HSC)v0RB.EGU + 265 + 250 + 20 + 14 + + + + + + + + + 1 + false + 2 + false + + + message button #346 + + + $(P)$(HSC)stop + 1 + Write + + + $(P)$(HSC)stop + STOP + 119 + 23 + 60 + 27 + + + + + + + + + + + text update #349 + $(P)$(HSC)v_Busy + 120 + 181 + 60 + + + + + + + + + + + + + 6 + false + 1 + false + + + message button #353 + + + $(P)$(HSC)t_tweak.B + 1 + Write + + + $(P)$(HSC)t_tweak.B + UP + 174 + 104 + 20 + 19 + + + + + + + text entry #356 + $(P)$(HSC)t_tweakVal.VAL + 124 + 105 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #360 + + + $(P)$(HSC)t_tweak.A + 1 + Write + + + $(P)$(HSC)t_tweak.A + DN + 104 + 104 + 20 + 19 + + + + + + + rectangle #363 + 99 + 50 + 75 + 4 + + + + + + + + + true + + + + false + + $(P)$(HSC)v_Busy + + + + + rectangle #367 + 99 + 225 + 75 + 4 + + + + + + + + + true + + + + false + + $(P)$(HSC)v_Busy + + + + + rectangle #371 + 19 + 125 + 82 + 4 + + + + + + + + + true + + + + false + + $(P)$(HSC)h_Busy + + + + + rectangle #375 + 179 + 125 + 82 + 4 + + + + + + + + + true + + + + false + + $(P)$(HSC)h_Busy + + + + diff --git a/opticsApp/op/bob/autoconvert/xia_slit_calib.bob b/opticsApp/op/bob/autoconvert/xia_slit_calib.bob new file mode 100644 index 0000000..8b9ece1 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/xia_slit_calib.bob @@ -0,0 +1,191 @@ + + + xia_slit_calib + 71 + 153 + 400 + 310 + + + + + false + 5 + + text #6 + Huber Slit Controller $(P)$(HSC) + 10 + 17 + 380 + 22 + + + + + 1 + + + text #9 + xiahsc.adl edited: 1999-Dec-08 (prj) + 10 + 4 + 380 + 8 + + + + + true + + + text #12 + Instructions + 10 + 71 + 380 + 18 + + + + + true + + + text #15 + Calibration + 10 + 44 + 380 + 22 + + + + + 1 + + + text #18 + step 2: unplug power supply from slit cable + 10 + 114 + 380 + 14 + true + + + text #21 + step 3: manually close the slits to 0 + 10 + 133 + 380 + 14 + true + + + text #24 + step 4: plug the power cable back in + 10 + 152 + 380 + 14 + true + + + text #27 + step 1: disable slit software + 10 + 95 + 380 + 14 + true + + + text #30 + step 5: enable slit software + 10 + 171 + 380 + 14 + true + + + message button #33 + + + $(P)$(HSC)calib + 1 + Write + + + $(P)$(HSC)calib + calibrate + 130 + 209 + 140 + 22 + + + + + + + text #36 + step 7: you are done + 10 + 236 + 380 + 14 + true + + + text #39 + step 6: press the calibrate button below + 10 + 190 + 380 + 14 + true + + + text #42 + serial port: + 10 + 282 + 147 + 14 + 2 + + + text update #45 + $(P)$(HSC)port + 169 + 282 + 221 + 14 + + + + + 1 + false + false + + + choice button #49 + $(P)$(HSC)enable + 301 + 62 + 82 + 38 + + + + + false + false + + Item 1 + Item 2 + + + diff --git a/opticsApp/op/bob/autoconvert/xia_slit_full.bob b/opticsApp/op/bob/autoconvert/xia_slit_full.bob new file mode 100644 index 0000000..5f886d6 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/xia_slit_full.bob @@ -0,0 +1,2314 @@ + + + xia_slit_full + 551 + 337 + 300 + 460 + + + + + false + 5 + + rectangle #6 + 300 + + + + + + + + + + + polyline #9 + 20 + 299 + 3 + + + + + + + + + + + + + text #13 + $(SLIT) + 170 + + + + + 1 + + + text #16 + (Looking upstream) + 170 + 6 + 110 + 12 + + + + + 1 + + + text update #19 + $(P)$(HSC)errMsg + 117 + 335 + 170 + 14 + + + + + + + + + 1 + false + 1 + false + + + text update #23 + $(P)$(HSC)error + 70 + 335 + 40 + 14 + + + + + + + + + 1 + false + 1 + false + + + text #27 + error: + 10 + 335 + 59 + 14 + 2 + + + message button #30 + + + $(P)$(HSC)init + 1 + Write + + + $(P)$(HSC)init + init + 10 + 400 + 59 + 18 + + + + + + + choice button #33 + $(P)$(HSC)enable + 71 + 400 + 140 + 18 + + + + + false + + Item 1 + Item 2 + + + + text #36 + hor. ID: + 11 + 356 + 59 + 14 + 2 + + + text #39 + ver. ID: + 11 + 379 + 59 + 14 + 2 + + + choice button #42 + $(P)$(HSC)hOrient + 230 + 356 + 60 + 15 + + + + + false + + Item 1 + Item 2 + + + + choice button #45 + $(P)$(HSC)vOrient + 230 + 379 + 60 + 15 + + + + + false + + Item 1 + Item 2 + + + + text entry #48 + $(P)$(HSC)hID + 72 + 354 + 150 + 18 + + + + + + + + + 1 + false + false + + + text entry #52 + $(P)$(HSC)vID + 72 + 377 + 150 + 18 + + + + + + + + + 1 + false + false + + + related display #56 + + + xia_slit_calib.opi + tab + calibrate + + + CALIBRATE + 220 + 400 + 70 + 18 + + + + + + + + + + + related display #59 + + + xia_slit.opi + replace + more + + + LESS + 250 + 424 + 50 + 16 + + + + + + + + + + + text update #62 + $(P)$(HSC)port + 72 + 422 + 170 + 14 + + + + + + + + + 6 + false + false + + + text #66 + port: + 10 + 422 + 59 + 14 + 2 + + + text update #69 + $(P)$(HSC)v0.DRVH + 204 + 242 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #73 + $(P)$(HSC)height.DRVH + 14 + 242 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #77 + $(P)$(HSC)h0.DRVH + 204 + 37 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #81 + $(P)$(HSC)width.DRVH + 14 + 37 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + rectangle #85 + 99 + 125 + 100 + + + + + + + + + + + composite #88 + 99 + 200 + 100 + 100 + + true + + rectangle #91 + 100 + + + + + + + + + + + rectangle #94 + 100 + 2 + + + + + + + + + true + + + + composite #97 + 99 + 50 + 100 + 100 + + true + + rectangle #100 + 100 + + + + + + + + + + + rectangle #103 + 100 + 2 + + + + + + + + + true + + + + rectangle #106 + 19 + 125 + 100 + + + + + + + + + + + rectangle #109 + 19 + 125 + 100 + 2 + + + + + + + + + true + + + message button #112 + + + $(P)$(HSC)l_tweak.A + 1 + Write + + + $(P)$(HSC)l_tweak.A + < + 25 + 184 + 20 + 20 + + + + + + + text entry #115 + $(P)$(HSC)l_tweakVal.VAL + 44 + 186 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #119 + + + $(P)$(HSC)l_tweak.B + 1 + Write + + + $(P)$(HSC)l_tweak.B + > + 93 + 184 + 20 + 20 + + + + + + + text update #122 + $(P)$(HSC)l.DRVH + 29 + 135 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #126 + $(P)$(HSC)lRB + 29 + 143 + 60 + 14 + + + + + + + + + 1 + false + false + + + text entry #130 + $(P)$(HSC)l.VAL + 29 + 156 + 80 + + + + + + + + + 1 + false + false + + + text update #134 + $(P)$(HSC)l.DRVL + 29 + 176 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + related display #138 + + + scanParmsCustom.opi + + $(HSC)l + $(HSC)l.EGU + $(HSC)l + $(HSC)l + + tab + Setup scan parameters + + + + 44 + 205 + 16 + 16 + + + + + + + text #141 + Scan + 64 + 206 + 30 + 14 + true + + + rectangle #144 + 179 + 125 + 100 + + + + + + + + + + + rectangle #147 + 179 + 125 + 100 + 2 + + + + + + + + + true + + + text entry #150 + $(P)$(HSC)r.VAL + 189 + 156 + 80 + + + + + + + + + 1 + false + false + + + text update #154 + $(P)$(HSC)r.DRVL + 189 + 176 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + message button #158 + + + $(P)$(HSC)r_tweak.A + 1 + Write + + + $(P)$(HSC)r_tweak.A + < + 185 + 184 + 20 + 20 + + + + + + + text entry #161 + $(P)$(HSC)r_tweakVal.VAL + 204 + 186 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #165 + + + $(P)$(HSC)r_tweak.B + 1 + Write + + + $(P)$(HSC)r_tweak.B + > + 253 + 184 + 20 + 20 + + + + + + + text update #168 + $(P)$(HSC)r.DRVH + 189 + 135 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #172 + $(P)$(HSC)rRB + 189 + 143 + 60 + 14 + + + + + + + + + 1 + false + false + + + text #176 + Scan + 224 + 206 + 30 + 14 + true + + + related display #179 + + + scanParmsCustom.opi + + $(HSC)r + $(HSC)r.EGU + $(HSC)r + $(HSC)r + + tab + Setup scan parameters + + + + 204 + 205 + 16 + 16 + + + + + + + text entry #182 + $(P)$(HSC)t.VAL + 109 + 76 + 80 + + + + + + + + + 1 + false + false + + + text update #186 + $(P)$(HSC)t.DRVL + 109 + 96 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + message button #190 + + + $(P)$(HSC)t_tweak.B + 1 + Write + + + $(P)$(HSC)t_tweak.B + UP + 175 + 104 + 20 + 19 + + + + + + + text entry #193 + $(P)$(HSC)t_tweakVal.VAL + 124 + 105 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #197 + + + $(P)$(HSC)t_tweak.A + 1 + Write + + + $(P)$(HSC)t_tweak.A + DN + 104 + 104 + 20 + 19 + + + + + + + text update #200 + $(P)$(HSC)t.DRVH + 109 + 55 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #204 + $(P)$(HSC)tRB + 109 + 63 + 60 + 14 + + + + + + + + + 1 + false + false + + + text entry #208 + $(P)$(HSC)b.VAL + 109 + 251 + 80 + + + + + + + + + 1 + false + false + + + text update #212 + $(P)$(HSC)b.DRVL + 109 + 271 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + message button #216 + + + $(P)$(HSC)b_tweak.A + 1 + Write + + + $(P)$(HSC)b_tweak.A + DN + 104 + 279 + 20 + 19 + + + + + + + text entry #219 + $(P)$(HSC)b_tweakVal.VAL + 124 + 280 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #223 + + + $(P)$(HSC)b_tweak.B + 1 + Write + + + $(P)$(HSC)b_tweak.B + UP + 175 + 279 + 20 + 19 + + + + + + + text update #226 + $(P)$(HSC)b.DRVH + 109 + 230 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #230 + $(P)$(HSC)bRB + 109 + 238 + 60 + 14 + + + + + + + + + 1 + false + false + + + message button #234 + + + $(P)$(HSC)width_tweak.A + 1 + Write + + + $(P)$(HSC)width_tweak.A + - + 10 + 86 + 20 + 20 + + + + + + + text entry #237 + $(P)$(HSC)width_tweakVal.VAL + 29 + 88 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #241 + + + $(P)$(HSC)width_tweak.B + 1 + Write + + + $(P)$(HSC)width_tweak.B + + + 78 + 86 + 20 + 20 + + + + + + + text entry #244 + $(P)$(HSC)width.VAL + 14 + 58 + 80 + + + + + + + + + 1 + false + false + + + text update #248 + $(P)$(HSC)width.DRVL + 14 + 78 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #252 + $(P)$(HSC)widthRB + 14 + 45 + 60 + 14 + + + + + + + + + 1 + false + false + + + text #256 + H SIZE + 14 + 25 + 80 + 14 + + + + + 1 + + + text #259 + Scan + 239 + 106 + 30 + 14 + true + + + text #262 + Scan + 49 + 106 + 30 + 14 + true + + + related display #265 + + + scanParmsCustom.opi + + $(HSC)width + $(HSC)width.EGU + $(HSC)width + $(HSC)width + + tab + Setup scan parameters + + + + 29 + 105 + 16 + 16 + + + + + + + message button #268 + + + $(P)$(HSC)h0_tweak.A + 1 + Write + + + $(P)$(HSC)h0_tweak.A + < + 200 + 86 + 20 + 20 + + + + + + + text entry #271 + $(P)$(HSC)h0_tweakVal.VAL + 219 + 88 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #275 + + + $(P)$(HSC)h0_tweak.B + 1 + Write + + + $(P)$(HSC)h0_tweak.B + > + 268 + 86 + 20 + 20 + + + + + + + text entry #278 + $(P)$(HSC)h0.VAL + 204 + 58 + 80 + + + + + + + + + 1 + false + false + + + text update #282 + $(P)$(HSC)h0.DRVL + 204 + 78 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #286 + $(P)$(HSC)h0RB + 204 + 45 + 60 + 14 + + + + + + + + + 1 + false + false + + + text #290 + H CENTER + 204 + 25 + 80 + 14 + + + + + 1 + + + message button #293 + + + $(P)$(HSC)v0_tweak.A + 1 + Write + + + $(P)$(HSC)v0_tweak.A + DN + 200 + 291 + 20 + 19 + + + + + + + text entry #296 + $(P)$(HSC)v0_tweakVal.VAL + 219 + 292 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #300 + + + $(P)$(HSC)v0_tweak.B + 1 + Write + + + $(P)$(HSC)v0_tweak.B + UP + 268 + 291 + 20 + 19 + + + + + + + text entry #303 + $(P)$(HSC)v0.VAL + 204 + 263 + 80 + + + + + + + + + 1 + false + false + + + text update #307 + $(P)$(HSC)v0.DRVL + 204 + 283 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #311 + $(P)$(HSC)v0RB + 204 + 250 + 60 + 14 + + + + + + + + + 1 + false + false + + + text #315 + V CENTER + 204 + 230 + 80 + 14 + + + + + 1 + + + message button #318 + + + $(P)$(HSC)height_tweak.A + 1 + Write + + + $(P)$(HSC)height_tweak.A + - + 10 + 291 + 20 + 20 + + + + + + + text entry #321 + $(P)$(HSC)height_tweakVal.VAL + 29 + 293 + 50 + 16 + + + + + + + + + 1 + false + false + + + message button #325 + + + $(P)$(HSC)height_tweak.B + 1 + Write + + + $(P)$(HSC)height_tweak.B + + + 78 + 291 + 20 + 20 + + + + + + + text entry #328 + $(P)$(HSC)height.VAL + 14 + 263 + 80 + + + + + + + + + 1 + false + false + + + text update #332 + $(P)$(HSC)height.DRVL + 14 + 283 + 80 + 10 + + + + + + + + + + + + + 1 + false + 1 + false + + + text update #336 + $(P)$(HSC)heightRB + 14 + 250 + 60 + 14 + + + + + + + + + 1 + false + false + + + text #340 + V SIZE + 14 + 230 + 80 + 14 + + + + + 1 + + + text #343 + Scan + 144 + 131 + 30 + 14 + true + + + related display #346 + + + scanParmsCustom.opi + + $(HSC)t + $(HSC)t.EGU + $(HSC)t + $(HSC)t + + tab + Setup scan parameters + + + + 124 + 130 + 16 + 16 + + + + + + + text #349 + Scan + 144 + 206 + 30 + 14 + true + + + related display #352 + + + scanParmsCustom.opi + + $(HSC)b + $(HSC)b.EGU + $(HSC)b + $(HSC)b + + tab + Setup scan parameters + + + + 124 + 205 + 16 + 16 + + + + + + + text #355 + Scan + 239 + 311 + 30 + 14 + true + + + related display #358 + + + scanParmsCustom.opi + + $(HSC)v0 + $(HSC)v0.EGU + $(HSC)v0 + $(HSC)v0 + + tab + Setup scan parameters + + + + 219 + 310 + 16 + 16 + + + + + + + text #361 + Scan + 49 + 311 + 30 + 14 + true + + + related display #364 + + + scanParmsCustom.opi + + $(HSC)height + $(HSC)height.EGU + $(HSC)height + $(HSC)height + + tab + Setup scan parameters + + + + 29 + 310 + 16 + 16 + + + + + + + message button #367 + + + $(P)$(HSC)locate + 1 + Write + + + $(P)$(HSC)locate + Sync + 119 + 303 + 60 + 22 + + + + + + + text update #370 + $(P)$(HSC)widthRB.EGU + 75 + 45 + 20 + 14 + + + + + + + + + 1 + false + 2 + false + + + text update #374 + $(P)$(HSC)lRB.EGU + 90 + 143 + 20 + 14 + + + + + + + + + 1 + false + 2 + false + + + text update #378 + $(P)$(HSC)heightRB.EGU + 75 + 250 + 20 + 14 + + + + + + + + + 1 + false + 2 + false + + + text update #382 + $(P)$(HSC)tRB.EGU + 170 + 63 + 20 + 14 + + + + + + + + + 1 + false + 2 + false + + + text update #386 + $(P)$(HSC)h0RB.EGU + 265 + 45 + 20 + 14 + + + + + + + + + 1 + false + 2 + false + + + text update #390 + $(P)$(HSC)rRB.EGU + 250 + 143 + 20 + 14 + + + + + + + + + 1 + false + 2 + false + + + text update #394 + $(P)$(HSC)bRB.EGU + 170 + 238 + 20 + 14 + + + + + + + + + 1 + false + false + + + text update #398 + $(P)$(HSC)v0RB.EGU + 265 + 250 + 20 + 14 + + + + + + + + + 1 + false + 2 + false + + + message button #402 + + + $(P)$(HSC)stop + 1 + Write + + + $(P)$(HSC)stop + STOP + 119 + 23 + 60 + 27 + + + + + + + + + + + related display #405 + + + scanParmsCustom.opi + + $(HSC)h0 + $(HSC)h0.EGU + $(HSC)h0 + $(HSC)h0 + + tab + Setup scan parameters + + + + 220 + 105 + 16 + 16 + + + + + + + text #408 + debug: + 11 + 442 + 59 + 14 + 2 + + + text entry #411 + $(P)$(HSC)debug + 75 + 440 + 30 + 18 + + + + + + + + + 1 + false + false + + + rectangle #415 + 99 + 50 + 75 + 4 + + + + + + + + + true + + + + false + + $(P)$(HSC)v_Busy + + + + + rectangle #419 + 99 + 225 + 75 + 4 + + + + + + + + + true + + + + false + + $(P)$(HSC)v_Busy + + + + + rectangle #423 + 19 + 125 + 82 + 4 + + + + + + + + + true + + + + false + + $(P)$(HSC)h_Busy + + + + + rectangle #427 + 179 + 125 + 82 + 4 + + + + + + + + + true + + + + false + + $(P)$(HSC)h_Busy + + + + + composite #431 + 120 + 154 + 60 + 46 + + true + + text update #434 + $(P)$(HSC)h_Busy + 60 + + + + + + + + + + + + + 6 + false + 1 + false + + + text update #438 + $(P)$(HSC)v_Busy + 26 + 60 + + + + + + + + + + + + + 6 + false + 1 + false + + + diff --git a/opticsApp/op/bob/autoconvert/xia_slit_status.bob b/opticsApp/op/bob/autoconvert/xia_slit_status.bob new file mode 100644 index 0000000..22aa514 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/xia_slit_status.bob @@ -0,0 +1,771 @@ + + + xia_slit_status + 404 + 24 + 421 + 419 + + + + + false + 5 + + text #6 + XIA SLIT STATUS + 8 + 420 + 26 + + + + + 1 + + + polyline #9 + 7 + 69 + 409 + 2 + 2 + + + + + + + + + + + + + polyline #13 + 7 + 280 + 407 + 2 + 2 + + + + + + + + + + + + + text update #17 + $(P)$(HSC)$(BI1) + 257 + 76 + 74 + 24 + + + + + + + + + + + + + 6 + false + false + + + text update #21 + $(P)$(HSC)$(BI2) + 257 + 104 + 74 + 24 + + + + + + + + + + + + + 6 + false + false + + + text update #25 + $(P)$(HSC)$(BI3) + 257 + 132 + 74 + 24 + + + + + + + + + + + + + 6 + false + false + + + text update #29 + $(P)$(HSC)$(BI4) + 257 + 160 + 74 + 24 + + + + + + + + + + + + + 6 + false + false + + + text update #33 + $(P)$(HSC)$(BI5) + 257 + 188 + 74 + 24 + + + + + + + + + + + + + 6 + false + false + + + text update #37 + $(P)$(HSC)$(BI6) + 257 + 216 + 74 + 24 + + + + + + + + + + + + + 6 + false + false + + + text update #41 + $(P)$(HSC)$(BI7) + 257 + 244 + 74 + 24 + + + + + + + + + + + + + 6 + false + false + + + text #45 + $(SLIT) + 38 + 420 + 26 + + + + + 1 + + + text update #48 + $(P)$(HSC)$(BI1).DESC + 13 + 76 + 220 + 24 + + + + + + + + + 6 + false + false + + + text #52 + : + 237 + 76 + 16 + 24 + + + + + 1 + + + text update #55 + $(P)$(HSC)$(BI2).DESC + 13 + 104 + 220 + 24 + + + + + + + + + 6 + false + false + + + text #59 + : + 237 + 104 + 16 + 24 + + + + + 1 + + + text update #62 + $(P)$(HSC)$(BI3).DESC + 13 + 132 + 220 + 24 + + + + + + + + + 6 + false + false + + + text #66 + : + 237 + 132 + 16 + 24 + + + + + 1 + + + text update #69 + $(P)$(HSC)$(BI4).DESC + 13 + 160 + 220 + 24 + + + + + + + + + 6 + false + false + + + text #73 + : + 237 + 160 + 16 + 24 + + + + + 1 + + + text update #76 + $(P)$(HSC)$(BI5).DESC + 13 + 188 + 220 + 24 + + + + + + + + + 6 + false + false + + + text #80 + : + 237 + 188 + 16 + 24 + + + + + 1 + + + text update #83 + $(P)$(HSC)$(BI6).DESC + 13 + 216 + 220 + 24 + + + + + + + + + 6 + false + false + + + text #87 + : + 237 + 216 + 16 + 24 + + + + + 1 + + + text update #90 + $(P)$(HSC)$(BI7).DESC + 13 + 244 + 220 + 24 + + + + + + + + + 6 + false + false + + + text #94 + : + 237 + 244 + 16 + 24 + + + + + 1 + + + text update #97 + $(P)$(HSC)$(OL).DESC + 13 + 293 + 220 + 24 + + + + + + + + + 6 + false + false + + + text update #101 + $(P)$(HSC)$(OL) + 257 + 293 + 74 + 24 + + + + + + + + + + + + + 6 + false + false + + + text update #105 + $(P)$(HSC)$(OR) + 257 + 321 + 74 + 24 + + + + + + + + + + + + + 6 + false + false + + + text update #109 + $(P)$(HSC)$(OR).DESC + 13 + 321 + 220 + 24 + + + + + + + + + 6 + false + false + + + text #113 + : + 237 + 293 + 16 + 24 + + + + + 1 + + + text #116 + : + 237 + 321 + 16 + 24 + + + + + 1 + + + text update #119 + $(P)$(HSC)$(SD).DESC + 13 + 349 + 220 + 24 + + + + + + + + + 6 + false + false + + + text #123 + : + 237 + 349 + 16 + 24 + + + + + 1 + + + text update #126 + $(P)$(HSC)$(SD) + 257 + 349 + 74 + 24 + + + + + + + + + + + + + 6 + false + false + + + text update #130 + $(P)$(HSC)$(GB).DESC + 13 + 377 + 220 + 24 + + + + + + + + + 6 + false + false + + + text #134 + : + 237 + 377 + 16 + 24 + + + + + 1 + + + text update #137 + $(P)$(HSC)$(GB) + 257 + 377 + 74 + 24 + + + + + + + + + + + + + 6 + false + false + + + text update #141 + $(P)$(HSC)$(OL).EGU + 339 + 293 + 74 + 24 + + + + + + + + + + + + + 6 + false + false + + + text update #145 + $(P)$(HSC)$(OR).EGU + 339 + 321 + 74 + 24 + + + + + + + + + + + + + 6 + false + false + + + text update #149 + $(P)$(HSC)$(SD).EGU + 339 + 349 + 74 + 24 + + + + + + + + + + + + + 6 + false + false + + + text update #153 + $(P)$(HSC)$(GB).EGU + 339 + 377 + 74 + 24 + + + + + + + + + + + + + 6 + false + false + + diff --git a/opticsApp/op/bob/autoconvert/xiahsc.bob b/opticsApp/op/bob/autoconvert/xiahsc.bob new file mode 100644 index 0000000..ccec1ff --- /dev/null +++ b/opticsApp/op/bob/autoconvert/xiahsc.bob @@ -0,0 +1,932 @@ + + + xiahsc + 85 + 104 + 449 + 426 + + + + + false + 5 + + text #6 + Huber Slit Controller $(P)$(HSC) + 10 + 17 + 380 + + + + + 1 + + + text #9 + xiahsc.adl edited: 1999-Sept-25 (prj) + 4 + 4 + 363 + 8 + + + + + true + + + message button #12 + + + $(P)$(HSC)stop + 1 + Write + + + $(P)$(HSC)stop + STOP + 21 + 382 + 410 + + + + + + + + + + + rectangle #15 + 166 + 191 + 120 + 80 + 30 + + + + + + + + + true + + + + false + + $(P)$(HSC)error + + + + + rectangle #19 + 43 + 186 + 118 + 90 + + + + + + + + + + + rectangle #22 + 47 + 200 + 110 + 72 + + + + + + + + + + + + false + + $(P)$(HSC)hBusy + + + + + text entry #26 + $(P)$(HSC)l + 52 + 223 + 24 + + + + + + + + + 1 + false + false + + + text update #29 + $(P)$(HSC)lRB + 52 + 204 + + + + + + + + + 1 + false + false + + + valuator #32 + $(P)$(HSC)l + 52 + 247 + 1.0 + 0.009999999776482582 + + + text #35 + left + 47 + 190 + 110 + 10 + + + + + 1 + + + rectangle #38 + 167 + 96 + 118 + 90 + + + + + + + + + + + rectangle #41 + 171 + 110 + 110 + 72 + + + + + + + + + + + + false + + $(P)$(HSC)vBusy + + + + + text entry #45 + $(P)$(HSC)t + 176 + 133 + 24 + + + + + + + + + 1 + false + false + + + text update #48 + $(P)$(HSC)tRB + 176 + 114 + + + + + + + + + 1 + false + false + + + valuator #51 + $(P)$(HSC)t + 176 + 157 + 1.0 + 0.009999999776482582 + + + text #54 + top + 171 + 100 + 110 + 10 + + + + + 1 + + + rectangle #57 + 167 + 276 + 118 + 90 + + + + + + + + + + + rectangle #60 + 171 + 290 + 110 + 72 + + + + + + + + + + + + false + + $(P)$(HSC)vBusy + + + + + text entry #64 + $(P)$(HSC)b + 176 + 313 + 24 + + + + + + + + + 1 + false + false + + + text update #67 + $(P)$(HSC)bRB + 176 + 294 + + + + + + + + + 1 + false + false + + + valuator #70 + $(P)$(HSC)b + 176 + 337 + 1.0 + 0.009999999776482582 + + + text #73 + bottom + 171 + 280 + 110 + 10 + + + + + 1 + + + rectangle #76 + 291 + 186 + 118 + 90 + + + + + + + + + + + rectangle #79 + 295 + 200 + 110 + 72 + + + + + + + + + + + + false + + $(P)$(HSC)hBusy + + + + + text entry #83 + $(P)$(HSC)r + 300 + 223 + 24 + + + + + + + + + 1 + false + false + + + text update #86 + $(P)$(HSC)rRB + 300 + 204 + + + + + + + + + 1 + false + false + + + valuator #89 + $(P)$(HSC)r + 300 + 247 + 1.0 + 0.009999999776482582 + + + text #92 + right + 295 + 190 + 110 + 10 + + + + + 1 + + + rectangle #95 + 24 + 84 + 118 + 90 + + + + + + + + + + + rectangle #98 + 28 + 98 + 110 + 72 + + + + + + + + + + + + false + + $(P)$(HSC)hBusy + + + + + text entry #102 + $(P)$(HSC)width + 33 + 121 + 24 + + + + + + + + + 1 + false + false + + + text update #105 + $(P)$(HSC)widthRB + 33 + 102 + + + + + + + + + 1 + false + false + + + valuator #108 + $(P)$(HSC)width + 33 + 145 + 1.0 + 0.009999999776482582 + + + text #111 + width + 28 + 88 + 110 + 10 + + + + + 1 + + + rectangle #114 + 24 + 288 + 118 + 90 + + + + + + + + + + + rectangle #117 + 28 + 302 + 110 + 72 + + + + + + + + + + + + false + + $(P)$(HSC)hBusy + + + + + text entry #121 + $(P)$(HSC)h0 + 33 + 325 + 24 + + + + + + + + + 1 + false + false + + + text update #124 + $(P)$(HSC)h0RB + 33 + 306 + + + + + + + + + 1 + false + false + + + valuator #127 + $(P)$(HSC)h0 + 33 + 349 + 1.0 + 0.009999999776482582 + + + text #130 + hor. center + 28 + 292 + 110 + 10 + + + + + 1 + + + rectangle #133 + 310 + 288 + 118 + 90 + + + + + + + + + + + rectangle #136 + 314 + 302 + 110 + 72 + + + + + + + + + + + + false + + $(P)$(HSC)vBusy + + + + + text entry #140 + $(P)$(HSC)v0 + 319 + 325 + 24 + + + + + + + + + 1 + false + false + + + text update #143 + $(P)$(HSC)v0RB + 319 + 306 + + + + + + + + + 1 + false + false + + + valuator #146 + $(P)$(HSC)v0 + 319 + 349 + 1.0 + 0.009999999776482582 + + + text #149 + ver. center + 314 + 292 + 110 + 10 + + + + + 1 + + + rectangle #152 + 310 + 84 + 118 + 90 + + + + + + + + + + + rectangle #155 + 314 + 98 + 110 + 72 + + + + + + + + + + + + false + + $(P)$(HSC)vBusy + + + + + text entry #159 + $(P)$(HSC)height + 319 + 121 + 24 + + + + + + + + + 1 + false + false + + + text update #162 + $(P)$(HSC)heightRB + 319 + 102 + + + + + + + + + 1 + false + false + + + valuator #165 + $(P)$(HSC)height + 319 + 145 + 1.0 + 0.009999999776482582 + + + text #168 + height + 314 + 88 + 110 + 10 + + + + + 1 + + + text #171 + error! + 176 + 223 + 14 + + + + + 1 + + + + false + + $(P)$(HSC)error + + + + + related display #175 + + + xiahsc_full.opi + replace + more + + + more + 380 + 3 + 60 + 16 + + + + + + + + + + + composite #178 + 21 + 40 + 410 + 41 + + true + + text update #181 + $(P)$(HSC)port.VAL + 28 + 410 + 13 + + + + + + + + + 1 + false + 1 + false + + + text update #184 + $(P)$(HSC)port.DESC + 410 + 24 + + + + + + + + + + + + + 1 + false + 1 + false + + + diff --git a/opticsApp/op/bob/autoconvert/xiahsc_calib.bob b/opticsApp/op/bob/autoconvert/xiahsc_calib.bob new file mode 100644 index 0000000..86a991c --- /dev/null +++ b/opticsApp/op/bob/autoconvert/xiahsc_calib.bob @@ -0,0 +1,210 @@ + + + xiahsc_calib + 71 + 153 + 400 + 310 + + + + + false + 5 + + text #6 + Huber Slit Controller $(P)$(HSC) + 10 + 17 + 380 + 22 + + + + + 1 + + + text #9 + xiahsc.adl edited: 1999-Dec-08 (prj) + 10 + 4 + 380 + 8 + + + + + true + + + text #12 + Instructions + 10 + 71 + 380 + 18 + + + + + true + + + text #15 + Calibration + 10 + 44 + 380 + 22 + + + + + 1 + + + text #18 + step 2: unplug power supply from slit cable + 10 + 114 + 380 + 14 + true + + + text #21 + step 3: manually close the slits to 0 + 10 + 133 + 380 + 14 + true + + + text #24 + step 4: plug the power cable back in + 10 + 152 + 380 + 14 + true + + + text #27 + step 1: disable slit software + 10 + 95 + 380 + 14 + true + + + text #30 + step 5: enable slit software + 10 + 171 + 380 + 14 + true + + + message button #33 + + + $(P)$(HSC)calib + 1 + Write + + + $(P)$(HSC)calib + calibrate + 130 + 209 + 140 + 22 + + + + + + + text #36 + step 7: you are done + 10 + 236 + 380 + 14 + true + + + text #39 + step 6: press the calibrate button below + 10 + 190 + 380 + 14 + true + + + related display #42 + + + xiahsc.opi + replace + slit control + + + return to slit control screen + 10 + 255 + 380 + 22 + + + + + + + text #45 + serial port: + 10 + 282 + 147 + 14 + 2 + + + text update #48 + $(P)$(HSC)port + 169 + 282 + 221 + 14 + + + + + 1 + false + false + + + choice button #51 + $(P)$(HSC)enable + 301 + 62 + 82 + 38 + + + + + false + false + + Item 1 + Item 2 + + + diff --git a/opticsApp/op/bob/autoconvert/xiahsc_full.bob b/opticsApp/op/bob/autoconvert/xiahsc_full.bob new file mode 100644 index 0000000..660c9d0 --- /dev/null +++ b/opticsApp/op/bob/autoconvert/xiahsc_full.bob @@ -0,0 +1,1139 @@ + + + xiahsc_full + 13 + 35 + 449 + 538 + + + + + false + 5 + + text #6 + Huber Slit Controller $(P)$(HSC) + 10 + 17 + 380 + + + + + 1 + + + text #9 + xiahsc.adl edited: 1999-Sept-25 (prj) + 4 + 4 + 363 + 8 + + + + + true + + + message button #12 + + + $(P)$(HSC)stop + 1 + Write + + + $(P)$(HSC)stop + STOP + 21 + 382 + 410 + + + + + + + + + + + rectangle #15 + 166 + 191 + 120 + 80 + 30 + + + + + + + + + true + + + + false + + $(P)$(HSC)error + + + + + rectangle #19 + 43 + 186 + 118 + 90 + + + + + + + + + + + rectangle #22 + 47 + 200 + 110 + 72 + + + + + + + + + + + + false + + $(P)$(HSC)hBusy + + + + + text entry #26 + $(P)$(HSC)l + 52 + 223 + 24 + + + + + + + + + 1 + false + false + + + text update #29 + $(P)$(HSC)lRB + 52 + 204 + + + + + + + + + 1 + false + false + + + valuator #32 + $(P)$(HSC)l + 52 + 247 + 1.0 + 0.009999999776482582 + + + text #35 + left + 47 + 190 + 110 + 10 + + + + + 1 + + + rectangle #38 + 167 + 96 + 118 + 90 + + + + + + + + + + + rectangle #41 + 171 + 110 + 110 + 72 + + + + + + + + + + + + false + + $(P)$(HSC)vBusy + + + + + text entry #45 + $(P)$(HSC)t + 176 + 133 + 24 + + + + + + + + + 1 + false + false + + + text update #48 + $(P)$(HSC)tRB + 176 + 114 + + + + + + + + + 1 + false + false + + + valuator #51 + $(P)$(HSC)t + 176 + 157 + 1.0 + 0.009999999776482582 + + + text #54 + top + 171 + 100 + 110 + 10 + + + + + 1 + + + rectangle #57 + 167 + 276 + 118 + 90 + + + + + + + + + + + rectangle #60 + 171 + 290 + 110 + 72 + + + + + + + + + + + + false + + $(P)$(HSC)vBusy + + + + + text entry #64 + $(P)$(HSC)b + 176 + 313 + 24 + + + + + + + + + 1 + false + false + + + text update #67 + $(P)$(HSC)bRB + 176 + 294 + + + + + + + + + 1 + false + false + + + valuator #70 + $(P)$(HSC)b + 176 + 337 + 1.0 + 0.009999999776482582 + + + text #73 + bottom + 171 + 280 + 110 + 10 + + + + + 1 + + + rectangle #76 + 291 + 186 + 118 + 90 + + + + + + + + + + + rectangle #79 + 295 + 200 + 110 + 72 + + + + + + + + + + + + false + + $(P)$(HSC)hBusy + + + + + text entry #83 + $(P)$(HSC)r + 300 + 223 + 24 + + + + + + + + + 1 + false + false + + + text update #86 + $(P)$(HSC)rRB + 300 + 204 + + + + + + + + + 1 + false + false + + + valuator #89 + $(P)$(HSC)r + 300 + 247 + 1.0 + 0.009999999776482582 + + + text #92 + right + 295 + 190 + 110 + 10 + + + + + 1 + + + rectangle #95 + 24 + 84 + 118 + 90 + + + + + + + + + + + rectangle #98 + 28 + 98 + 110 + 72 + + + + + + + + + + + + false + + $(P)$(HSC)hBusy + + + + + text entry #102 + $(P)$(HSC)width + 33 + 121 + 24 + + + + + + + + + 1 + false + false + + + text update #105 + $(P)$(HSC)widthRB + 33 + 102 + + + + + + + + + 1 + false + false + + + valuator #108 + $(P)$(HSC)width + 33 + 145 + 1.0 + 0.009999999776482582 + + + text #111 + width + 28 + 88 + 110 + 10 + + + + + 1 + + + rectangle #114 + 24 + 288 + 118 + 90 + + + + + + + + + + + rectangle #117 + 28 + 302 + 110 + 72 + + + + + + + + + + + + false + + $(P)$(HSC)hBusy + + + + + text entry #121 + $(P)$(HSC)h0 + 33 + 325 + 24 + + + + + + + + + 1 + false + false + + + text update #124 + $(P)$(HSC)h0RB + 33 + 306 + + + + + + + + + 1 + false + false + + + valuator #127 + $(P)$(HSC)h0 + 33 + 349 + 1.0 + 0.009999999776482582 + + + text #130 + hor. center + 28 + 292 + 110 + 10 + + + + + 1 + + + rectangle #133 + 310 + 288 + 118 + 90 + + + + + + + + + + + rectangle #136 + 314 + 302 + 110 + 72 + + + + + + + + + + + + false + + $(P)$(HSC)vBusy + + + + + text entry #140 + $(P)$(HSC)v0 + 319 + 325 + 24 + + + + + + + + + 1 + false + false + + + text update #143 + $(P)$(HSC)v0RB + 319 + 306 + + + + + + + + + 1 + false + false + + + valuator #146 + $(P)$(HSC)v0 + 319 + 349 + 1.0 + 0.009999999776482582 + + + text #149 + ver. center + 314 + 292 + 110 + 10 + + + + + 1 + + + rectangle #152 + 310 + 84 + 118 + 90 + + + + + + + + + + + rectangle #155 + 314 + 98 + 110 + 72 + + + + + + + + + + + + false + + $(P)$(HSC)vBusy + + + + + text entry #159 + $(P)$(HSC)height + 319 + 121 + 24 + + + + + + + + + 1 + false + false + + + text update #162 + $(P)$(HSC)heightRB + 319 + 102 + + + + + + + + + 1 + false + false + + + valuator #165 + $(P)$(HSC)height + 319 + 145 + 1.0 + 0.009999999776482582 + + + text #168 + height + 314 + 88 + 110 + 10 + + + + + 1 + + + text update #171 + $(P)$(HSC)errMsg + 187 + 420 + 240 + 14 + + + + + + + + + 1 + false + 1 + false + + + message button #174 + + + $(P)$(HSC)init + 1 + Write + + + $(P)$(HSC)init + init + 21 + 439 + 112 + 18 + + + + + + + message button #177 + + + $(P)$(HSC)locate + 1 + Write + + + $(P)$(HSC)locate + locate + 319 + 439 + 112 + 18 + + + + + + + choice button #180 + $(P)$(HSC)enable + 142 + 439 + 168 + 18 + + + + + false + + Item 1 + Item 2 + + + + text #183 + hor. ID: + 21 + 464 + 112 + 14 + 2 + + + text entry #186 + $(P)$(HSC)hID + 142 + 462 + 168 + 18 + + + + + + + + + 1 + false + false + + + choice button #189 + $(P)$(HSC)hOrient + 319 + 464 + 112 + 15 + + + + + false + + Item 1 + Item 2 + + + + text #192 + ver. ID: + 21 + 487 + 112 + 14 + 2 + + + text entry #195 + $(P)$(HSC)vID + 142 + 485 + 168 + 18 + + + + + + + + + 1 + false + false + + + choice button #198 + $(P)$(HSC)vOrient + 319 + 487 + 112 + 15 + + + + + false + + Item 1 + Item 2 + + + + text update #201 + $(P)$(HSC)error + 140 + 420 + 40 + 14 + + + + + + + + + 1 + false + 1 + false + + + text #204 + error! + 176 + 223 + 14 + + + + + 1 + + + + false + + $(P)$(HSC)error + + + + + text #208 + error: + 20 + 420 + 14 + 2 + + + related display #211 + + + xiahsc_calib.opi + tab + calibrate + + + calibrate... + 319 + 509 + 112 + 18 + + + + + + + related display #214 + + + xiahsc.opi + replace + less + + + less + 384 + 3 + 60 + 16 + + + + + + + + + + + text update #217 + $(P)$(HSC)port.VAL + 21 + 68 + 410 + 13 + + + + + + + + + 1 + false + 1 + false + + + text entry #220 + $(P)$(HSC)port.DESC + 21 + 40 + 410 + 28 + + + + + + + + + + + + + 1 + false + false + + diff --git a/opticsApp/op/edl/autoconvert/2filter.edl b/opticsApp/op/edl/autoconvert/2filter.edl new file mode 100644 index 0000000..d339147 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/2filter.edl @@ -0,0 +1,168 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 10 +y 10 +w 195 +h 200 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 47872 47872 47872 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 46 +w 90 +h 18 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "upstream" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 99 +y 45 +w 92 +h 18 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "downstream" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 195 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "User Filters" +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 65 +w 90 +h 130 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q1)select.VAL" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 100 +y 65 +w 90 +h 130 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q2)select.VAL" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 20 +w 90 +h 15 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(LOCK1)lock.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 100 +y 20 +w 90 +h 15 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(LOCK2)lock.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/2filter_setup.edl b/opticsApp/op/edl/autoconvert/2filter_setup.edl new file mode 100644 index 0000000..db44a3b --- /dev/null +++ b/opticsApp/op/edl/autoconvert/2filter_setup.edl @@ -0,0 +1,1454 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 10 +y 10 +w 460 +h 310 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 47872 47872 47872 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 275 +w 459 +h 34 +lineColor rgb 7680 47872 0 +fill +fillColor rgb 7680 47872 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 292 +w 400 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "close and re-open any screen that displays it." +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 255 +w 115 +h 18 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Motor-drive PV" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 120 +y 255 +w 105 +h 20 +controlPv "$(P)$(Q1)motorOut.OUTN" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 65280 45056 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 180 +y 247 +w 41 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "INVALID" +} +visPv "CALC\\\{(A)\}($(P)$(Q1)motorOut.OUTV)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 155 +y 125 +w 70 +h 20 +controlPv "$(P)$(Q1)pos5.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 155 +y 145 +w 70 +h 20 +controlPv "$(P)$(Q1)pos4.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 155 +y 165 +w 70 +h 20 +controlPv "$(P)$(Q1)pos3.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 155 +y 185 +w 70 +h 20 +controlPv "$(P)$(Q1)pos2.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 155 +y 225 +w 70 +h 20 +controlPv "$(P)$(Q1)posHome.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 155 +y 205 +w 70 +h 20 +controlPv "$(P)$(Q1)pos1.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 235 +y 255 +w 115 +h 18 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Motor-drive PV" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 350 +y 255 +w 105 +h 20 +controlPv "$(P)$(Q2)motorOut.OUTN" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 65280 45056 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 385 +y 125 +w 70 +h 20 +controlPv "$(P)$(Q2)pos5.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 385 +y 145 +w 70 +h 20 +controlPv "$(P)$(Q2)pos4.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 385 +y 165 +w 70 +h 20 +controlPv "$(P)$(Q2)pos3.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 385 +y 185 +w 70 +h 20 +controlPv "$(P)$(Q2)pos2.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 385 +y 225 +w 70 +h 20 +controlPv "$(P)$(Q2)posHome.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 385 +y 205 +w 70 +h 20 +controlPv "$(P)$(Q2)pos1.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 410 +y 245 +w 41 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "INVALID" +} +visPv "CALC\\\{(A)\}($(P)$(Q2)motorOut.OUTV)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 125 +w 70 +h 20 +controlPv "$(P)$(Q1)name5" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 145 +w 70 +h 20 +controlPv "$(P)$(Q1)name4" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 165 +w 70 +h 20 +controlPv "$(P)$(Q1)name3" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 185 +w 70 +h 20 +controlPv "$(P)$(Q1)name2" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 225 +w 70 +h 20 +controlPv "$(P)$(Q1)nameHome" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 205 +w 70 +h 20 +controlPv "$(P)$(Q1)name1" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 235 +y 125 +w 70 +h 20 +controlPv "$(P)$(Q2)name5" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 235 +y 145 +w 70 +h 20 +controlPv "$(P)$(Q2)name4" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 235 +y 165 +w 70 +h 20 +controlPv "$(P)$(Q2)name3" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 235 +y 185 +w 70 +h 20 +controlPv "$(P)$(Q2)name2" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 235 +y 225 +w 70 +h 20 +controlPv "$(P)$(Q2)nameHome" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 235 +y 205 +w 70 +h 20 +controlPv "$(P)$(Q2)name1" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 155 +y 100 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "position" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 80 +y 100 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "control" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 100 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "material" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 155 +y 85 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "motor" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 80 +y 85 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 85 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "filter" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 460 +h 18 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "User Filter $(P)$(Q1)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 175 +y 45 +w 41 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "INVALID" +} +visPv "CALC\\\{(A)\}($(P)$(LOCK1)lockOut.OUTV)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 55 +y 40 +w 120 +h 20 +controlPv "$(P)$(LOCK1)lockOut.OUTN" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 65280 45056 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 42 +w 73 +h 18 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Lock_PV" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x -1 +y 17 +w 459 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 0 +1 457 +} +yPoints { +0 18 +1 18 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x -1 +y 61 +w 459 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 0 +1 457 +} +yPoints { +0 62 +1 62 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 65 +w 220 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "upstream" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 235 +y 65 +w 220 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "downstream" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 385 +y 100 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "position" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 310 +y 100 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "control" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 235 +y 100 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "material" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 385 +y 85 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "motor" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 310 +y 85 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 235 +y 85 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "filter" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 229 +y 62 +w 2 +h 212 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 230 +1 230 +} +yPoints { +0 63 +1 273 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 278 +w 450 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "NOTE: After changing filter-material description, you must" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x -1 +y 275 +w 459 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 0 +1 457 +} +yPoints { +0 276 +1 276 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 405 +y 45 +w 41 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "INVALID" +} +visPv "CALC\\\{(A)\}($(P)$(LOCK2)lockOut.OUTV)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 285 +y 40 +w 120 +h 20 +controlPv "$(P)$(LOCK2)lockOut.OUTN" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 65280 45056 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 230 +y 42 +w 73 +h 18 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Lock_PV" +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 80 +y 125 +w 70 +h 125 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q1)select.VAL" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 310 +y 125 +w 70 +h 125 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q2)select.VAL" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 15 +y 20 +w 200 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(LOCK1)lock.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 245 +y 20 +w 200 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(LOCK2)lock.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/2iddMicroscope.edl b/opticsApp/op/edl/autoconvert/2iddMicroscope.edl new file mode 100644 index 0000000..d5a6a43 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/2iddMicroscope.edl @@ -0,0 +1,4673 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 149 +y 580 +w 605 +h 255 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 64768 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 500 +y 21 +w 59 +h 18 +lineColor rgb 47872 47872 47872 +fill +fillColor rgb 47872 47872 47872 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 604 +h 19 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 3 +w 605 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "2IDD X-Ray Microscope" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 19 +w 606 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 604 +1 1 +} +yPoints { +0 20 +1 20 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 155 +y 140 +w 144 +h 109 +lineColor rgb 47872 47872 47872 +fill +fillColor rgb 47872 47872 47872 +lineWidth 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 323 +y 83 +w 161 +h 55 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +lineStyle "dash" +numPoints 2 { +xPoints { +0 323 +1 484 +} +yPoints { +0 83 +1 138 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 49 +w 68 +h 63 + +beginGroup + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 49 +w 68 +h 63 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 13 +y 104 +w 50 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 13 +1 63 +} +yPoints { +0 104 +1 104 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 13 +y 82 +w 26 +h 22 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 13 +1 39 +} +yPoints { +0 104 +1 82 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 13 +y 66 +w 0 +h 37 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 13 +1 13 +} +yPoints { +0 103 +1 66 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 68 +y 98 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Z" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 42 +y 68 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "X" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 49 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 160 +y 140 +w 130 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Zone Plate 2" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 305 +y 140 +w 144 +h 79 +lineColor rgb 47872 47872 47872 +fill +fillColor rgb 47872 47872 47872 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 305 +y 140 +w 145 +h 80 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 310 +y 140 +w 135 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "OSA" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 455 +y 140 +w 144 +h 79 +lineColor rgb 47872 47872 47872 +fill +fillColor rgb 47872 47872 47872 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 140 +w 135 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Sample" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 455 +y 140 +w 145 +h 80 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 190 +y 165 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m20.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 190 +y 178 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m20.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 205 +y 160 +w 50 +h 10 +controlPv "$(P)m20.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 205 +y 169 +w 50 +h 16 +controlPv "$(P)m20.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 165 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m20_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 195 +y 170 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m20.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 190 +y 170 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m20.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 255 +y 173 +w 40 +h 14 +controlPv "$(P)m20.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 205 +y 190 +w 50 +h 10 +controlPv "$(P)m19.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 205 +y 199 +w 50 +h 16 +controlPv "$(P)m19.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 195 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m19_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 190 +y 208 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m19.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 195 +y 200 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m19.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 190 +y 200 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m19.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 190 +y 195 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m19.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 255 +y 203 +w 40 +h 14 +controlPv "$(P)m19.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 330 +y 167 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 355 +y 160 +w 50 +h 10 +controlPv "$(P)m12.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 355 +y 168 +w 50 +h 16 +controlPv "$(P)m12.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 350 +y 165 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m12_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 340 +y 178 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m12.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 345 +y 170 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m12.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 340 +y 170 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m12.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 340 +y 165 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m12.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 405 +y 173 +w 40 +h 14 +controlPv "$(P)m12.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 330 +y 197 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "X" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 355 +y 190 +w 50 +h 10 +controlPv "$(P)m11.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 355 +y 198 +w 50 +h 16 +controlPv "$(P)m11.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 350 +y 195 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m11_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 340 +y 208 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m11.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 345 +y 200 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m11.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 340 +y 200 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m11.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 340 +y 195 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m11.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 405 +y 203 +w 40 +h 14 +controlPv "$(P)m11.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 190 +y 225 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m18.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 190 +y 238 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m18.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 205 +y 220 +w 50 +h 10 +controlPv "$(P)m18.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 205 +y 229 +w 50 +h 16 +controlPv "$(P)m18.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 225 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m18_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 195 +y 230 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m18.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 190 +y 230 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m18.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 255 +y 233 +w 40 +h 14 +controlPv "$(P)m18.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 155 +y 140 +w 145 +h 110 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 480 +y 167 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 505 +y 160 +w 50 +h 10 +controlPv "$(P)m14.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 505 +y 168 +w 50 +h 16 +controlPv "$(P)m14.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 500 +y 165 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m14_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 490 +y 178 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m14.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 495 +y 170 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m14.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 490 +y 170 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m14.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 490 +y 165 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m14.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 480 +y 197 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "X" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 505 +y 190 +w 50 +h 10 +controlPv "$(P)m13.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 505 +y 198 +w 50 +h 16 +controlPv "$(P)m13.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 500 +y 195 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m13_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 490 +y 208 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m13.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 495 +y 200 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m13.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 490 +y 200 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m13.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 490 +y 195 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m13.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 555 +y 173 +w 40 +h 14 +controlPv "$(P)m14.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 555 +y 203 +w 40 +h 14 +controlPv "$(P)m13.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 180 +y 167 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 180 +y 197 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "X" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 180 +y 227 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Z" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 140 +w 144 +h 109 +lineColor rgb 47872 47872 47872 +fill +fillColor rgb 47872 47872 47872 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 140 +w 130 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Zone Plate 1" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 40 +y 165 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m4.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 40 +y 178 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m4.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 55 +y 160 +w 50 +h 10 +controlPv "$(P)m4.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 165 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m4_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 170 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m4.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 40 +y 170 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m4.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 55 +y 169 +w 50 +h 16 +controlPv "$(P)m4.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 105 +y 173 +w 40 +h 14 +controlPv "$(P)m4.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 55 +y 190 +w 50 +h 10 +controlPv "$(P)m3.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 55 +y 199 +w 50 +h 16 +controlPv "$(P)m3.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 195 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m3_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 40 +y 208 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m3.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 200 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m3.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 40 +y 200 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m3.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 40 +y 195 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m3.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 105 +y 203 +w 40 +h 14 +controlPv "$(P)m3.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 40 +y 225 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m22.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 40 +y 238 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m22.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 55 +y 220 +w 50 +h 10 +controlPv "$(P)m22.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 55 +y 229 +w 50 +h 16 +controlPv "$(P)m22.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 225 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m22_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 230 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m22.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 40 +y 230 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m22.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 105 +y 233 +w 40 +h 14 +controlPv "$(P)m4.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 140 +w 145 +h 110 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 30 +y 167 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 30 +y 197 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "X" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 30 +y 227 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Z" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 235 +y 30 +w 59 +h 99 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 265 +y 71 +w 3 +h 18 +lineColor rgb 47872 47872 47872 +fill +fillColor rgb 47872 47872 47872 +lineWidth 5 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 145 +y 30 +w 300 +h 100 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 145 +1 445 +} +yPoints { +0 30 +1 130 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 145 +y 30 +w 300 +h 100 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 145 +1 445 +} +yPoints { +0 130 +1 30 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 120 +y 30 +w 50 +h 100 + +beginGroup + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 121 +y 31 +w 48 +h 98 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 127 +y 42 +w 35 +h 75 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 5 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 137 +y 57 +w 15 +h 45 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 5 +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 273 +y 51 +w 48 +h 44 + +beginGroup + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 306 +y 65 +w 2 +h 2 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 5 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 309 +y 70 +w 5 +h 5 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 5 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 312 +y 78 +w 5 +h 5 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 5 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 303 +y 75 +w 6 +h 3 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 309 +1 303 +} +yPoints { +0 75 +1 78 +} +endObjectProperties + +# (Arc) +object activeArcClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 285 +y 51 +w 25 +h 20 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 0 +startAngle 342 +totalAngle 65 +fillMode "pie" +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 313 +y 87 +w 5 +h 5 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 5 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 308 +y 91 +w 5 +h 0 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 313 +1 308 +} +yPoints { +0 91 +1 91 +} +endObjectProperties + +# (Arc) +object activeArcClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 273 +y 54 +w 33 +h 20 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 0 +startAngle 0 +totalAngle 58 +fillMode "pie" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 306 +y 83 +w 6 +h 1 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 312 +1 306 +} +yPoints { +0 83 +1 84 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 20 +y 30 +w 125 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 145 +1 20 +} +yPoints { +0 30 +1 30 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 20 +y 130 +w 125 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 145 +1 20 +} +yPoints { +0 130 +1 130 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 239 +y 95 +w 50 +h 30 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 239 +y 95 +w 50 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "ORDER" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 239 +y 105 +w 50 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "SORTING" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 237 +y 115 +w 54 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "APERTURE" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 145 +y 30 +w 88 +h 88 +lineColor rgb 60416 60416 60416 +fillColor rgb 60416 60416 60416 +lineWidth 0 +lineStyle "dash" +numPoints 2 { +xPoints { +0 145 +1 233 +} +yPoints { +0 30 +1 118 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 146 +y 41 +w 88 +h 88 +lineColor rgb 60416 60416 60416 +fillColor rgb 60416 60416 60416 +lineWidth 0 +lineStyle "dash" +numPoints 2 { +xPoints { +0 146 +1 234 +} +yPoints { +0 129 +1 41 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 500 +y 21 +w 60 +h 19 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 455 +y 40 +w 144 +h 79 +lineColor rgb 47872 47872 47872 +fill +fillColor rgb 47872 47872 47872 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 480 +y 97 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "X" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 505 +y 90 +w 50 +h 10 +controlPv "$(P)m23.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 505 +y 98 +w 50 +h 16 +controlPv "$(P)m23.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 500 +y 95 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m23_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 490 +y 108 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m23.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 495 +y 100 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m23.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 490 +y 100 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m23.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 490 +y 95 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m23.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 40 +w 135 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Camera" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 455 +y 40 +w 145 +h 80 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 480 +y 67 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 505 +y 60 +w 50 +h 10 +controlPv "$(P)m24.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 505 +y 68 +w 50 +h 16 +controlPv "$(P)m24.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 500 +y 65 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m24_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 490 +y 78 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m24.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 495 +y 70 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m24.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 490 +y 70 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m24.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 490 +y 65 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m24.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 555 +y 73 +w 40 +h 14 +controlPv "$(P)m24.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 555 +y 103 +w 40 +h 14 +controlPv "$(P)m23.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 425 +y 40 +w 32 +h 80 + +beginGroup + +# (Arc) +object activeArcClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 425 +y 40 +w 24 +h 80 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +startAngle 290 +totalAngle 140 +fillMode "pie" +endObjectProperties + +# (Arc) +object activeArcClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 433 +y 40 +w 24 +h 80 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +startAngle 110 +totalAngle 140 +fillMode "pie" +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 295 +y 102 +w 25 +h 37 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +lineStyle "dash" +numPoints 2 { +xPoints { +0 295 +1 320 +} +yPoints { +0 102 +1 139 +} +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 49 +w 68 +h 63 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 49 +w 68 +h 63 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 275 +y 160 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m20.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 255 +y 160 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m20.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 275 +y 190 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m19.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 255 +y 190 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m19.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 310 +y 164 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m12" + 1 "P=$(P),M=m12" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 425 +y 160 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m12.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 405 +y 160 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m12.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 310 +y 194 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m11" + 1 "P=$(P),M=m11" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 425 +y 190 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m11.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 405 +y 190 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m11.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 275 +y 220 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m18.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 255 +y 220 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m18.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 164 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m14" + 1 "P=$(P),M=m14" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 575 +y 160 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m14.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 555 +y 160 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m14.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 194 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m13" + 1 "P=$(P),M=m13" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 575 +y 190 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m13.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 555 +y 190 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m13.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 552 +y 229 +w 50 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +icon +buttonLabel "More" +numPvs 2 +numDsps 1 +displayFileName { + 0 2iddMicroscope_full.edl +} +menuLabel { + 0 Microscope (full) +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T),M0X=m27,M0Y=m28,M1Y=m29,M2X=m30,M2Y=m31,M2Z=m32" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 160 +y 164 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m20" + 1 "P=$(P),M=m20" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 160 +y 194 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m19" + 1 "P=$(P),M=m19" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 160 +y 224 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m18" + 1 "P=$(P),M=m18" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 125 +y 160 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m4.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 105 +y 160 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m4.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 125 +y 190 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m3.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 105 +y 190 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m3.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 125 +y 220 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m22.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 105 +y 220 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m22.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 164 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m4" + 1 "P=$(P),M=m4" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 194 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m3" + 1 "P=$(P),M=m3" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 224 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m22" + 1 "P=$(P),M=m22" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 225 +w 100 +h 30 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "All Stop" +offLabel "All Stop" +3d +useEnumNumeric +font "helvetica-medium-r-18.0" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 120 +y 30 +w 50 +h 100 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 273 +y 51 +w 48 +h 44 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 239 +y 95 +w 50 +h 30 + +beginGroup + +endGroup + +endObjectProperties + + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 94 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m23" + 1 "P=$(P),M=m23" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 575 +y 90 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m23.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 555 +y 90 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m23.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 64 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m24" + 1 "P=$(P),M=m24" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 575 +y 60 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m24.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 555 +y 60 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m24.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 425 +y 40 +w 32 +h 80 + +beginGroup + +endGroup + +endObjectProperties + + diff --git a/opticsApp/op/edl/autoconvert/2iddMicroscope_full.edl b/opticsApp/op/edl/autoconvert/2iddMicroscope_full.edl new file mode 100644 index 0000000..abfb658 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/2iddMicroscope_full.edl @@ -0,0 +1,9322 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 18 +y 203 +w 730 +h 400 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 64768 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 443 +y 94 +w 40 +h 55 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +lineStyle "dash" +numPoints 2 { +xPoints { +0 443 +1 483 +} +yPoints { +0 94 +1 149 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 759 +h 19 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 1 +y 3 +w 760 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "2IDD X-Ray Microscope" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 19 +w 754 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 752 +1 1 +} +yPoints { +0 20 +1 20 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 360 +y 30 +w 59 +h 99 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 390 +y 71 +w 3 +h 18 +lineColor rgb 47872 47872 47872 +fill +fillColor rgb 47872 47872 47872 +lineWidth 5 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 270 +y 30 +w 300 +h 100 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 270 +1 570 +} +yPoints { +0 30 +1 130 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 270 +y 30 +w 300 +h 100 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 270 +1 570 +} +yPoints { +0 130 +1 30 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 245 +y 30 +w 50 +h 100 + +beginGroup + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 246 +y 31 +w 48 +h 98 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 252 +y 42 +w 35 +h 75 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 5 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 262 +y 57 +w 15 +h 45 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 5 +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 398 +y 51 +w 48 +h 44 + +beginGroup + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 431 +y 65 +w 2 +h 2 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 5 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 434 +y 70 +w 5 +h 5 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 5 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 437 +y 78 +w 5 +h 5 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 5 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 428 +y 75 +w 6 +h 3 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 434 +1 428 +} +yPoints { +0 75 +1 78 +} +endObjectProperties + +# (Arc) +object activeArcClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 410 +y 51 +w 25 +h 20 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 0 +startAngle 342 +totalAngle 65 +fillMode "pie" +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 438 +y 87 +w 5 +h 5 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 5 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 433 +y 91 +w 5 +h 0 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 438 +1 433 +} +yPoints { +0 91 +1 91 +} +endObjectProperties + +# (Arc) +object activeArcClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 398 +y 54 +w 33 +h 20 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 0 +startAngle 0 +totalAngle 58 +fillMode "pie" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 431 +y 83 +w 6 +h 1 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 437 +1 431 +} +yPoints { +0 83 +1 84 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 145 +y 30 +w 125 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 270 +1 145 +} +yPoints { +0 30 +1 30 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 145 +y 130 +w 125 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 270 +1 145 +} +yPoints { +0 130 +1 130 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 364 +y 95 +w 50 +h 30 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 364 +y 95 +w 50 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "ORDER" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 364 +y 105 +w 50 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "SORTING" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 362 +y 115 +w 54 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "APERTURE" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 270 +y 30 +w 88 +h 88 +lineColor rgb 60416 60416 60416 +fillColor rgb 60416 60416 60416 +lineWidth 0 +lineStyle "dash" +numPoints 2 { +xPoints { +0 270 +1 358 +} +yPoints { +0 30 +1 118 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 271 +y 41 +w 88 +h 88 +lineColor rgb 60416 60416 60416 +fillColor rgb 60416 60416 60416 +lineWidth 0 +lineStyle "dash" +numPoints 2 { +xPoints { +0 271 +1 359 +} +yPoints { +0 129 +1 41 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 49 +w 68 +h 63 + +beginGroup + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 49 +w 68 +h 63 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 13 +y 104 +w 50 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 13 +1 63 +} +yPoints { +0 104 +1 104 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 13 +y 82 +w 26 +h 22 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 13 +1 39 +} +yPoints { +0 104 +1 82 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 13 +y 66 +w 0 +h 37 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 13 +1 13 +} +yPoints { +0 103 +1 66 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 68 +y 98 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Z" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 42 +y 68 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "X" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 49 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 360 +w 714 +h 34 +lineColor rgb 47872 47872 47872 +fill +fillColor rgb 47872 47872 47872 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 6 +y 361 +w 713 +h 33 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 270 +y 364 +w 50 +h 10 +controlPv "$(P)$(T).EY" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 270 +y 372 +w 50 +h 16 +controlPv "$(P)$(T).Y" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 255 +y 371 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 150 +y 364 +w 50 +h 10 +controlPv "$(P)$(T).EX" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 150 +y 372 +w 50 +h 16 +controlPv "$(P)$(T).X" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 135 +y 371 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "X" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 368 +y 372 +w 70 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "MOTOR LIMIT" +} +visPv "CALC\\\{(A)\}($(P)$(T).LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 30 +y 364 +w 70 +h 20 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 50 +y 364 +w 50 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Table" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 200 +y 377 +w 40 +h 14 +controlPv "$(P)$(Q):x_tweak.D" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 320 +y 377 +w 40 +h 14 +controlPv "$(P)$(Q):y_tweak.D" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 340 +w 60 +h 20 + +beginGroup + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 46 +y 340 +w 58 +h 19 +lineColor rgb 47872 47872 47872 +fill +fillColor rgb 47872 47872 47872 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 340 +w 59 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +endGroup + +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 140 +w 149 +h 199 +lineColor rgb 47872 47872 47872 +fill +fillColor rgb 47872 47872 47872 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 140 +w 150 +h 200 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 140 +w 150 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Zone Plate 1" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 315 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m22.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 328 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m22.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 60 +y 310 +w 50 +h 10 +controlPv "$(P)m22.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 60 +y 319 +w 50 +h 16 +controlPv "$(P)m22.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 55 +y 315 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m22_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 320 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m22.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 320 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m22.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 323 +w 40 +h 14 +controlPv "$(P)m4.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 165 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m4.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 178 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m4.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 60 +y 160 +w 50 +h 10 +controlPv "$(P)m4.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 55 +y 165 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m4_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 170 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m4.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 170 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m4.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 60 +y 169 +w 50 +h 16 +controlPv "$(P)m4.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 173 +w 40 +h 14 +controlPv "$(P)m4.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 60 +y 190 +w 50 +h 10 +controlPv "$(P)m3.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 60 +y 199 +w 50 +h 16 +controlPv "$(P)m3.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 55 +y 195 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m3_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 208 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m3.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 200 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m3.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 200 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m3.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 195 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m3.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 203 +w 40 +h 14 +controlPv "$(P)m3.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 60 +y 220 +w 50 +h 10 +controlPv "$(P)m0.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 60 +y 229 +w 50 +h 16 +controlPv "$(P)m0.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 55 +y 225 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 238 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 230 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 230 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 225 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 233 +w 40 +h 14 +controlPv "$(P)m0.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 60 +y 250 +w 50 +h 10 +controlPv "$(P)m0.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 60 +y 259 +w 50 +h 16 +controlPv "$(P)m0.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 55 +y 255 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 268 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 260 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 260 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 255 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 263 +w 40 +h 14 +controlPv "$(P)m0.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 60 +y 280 +w 50 +h 10 +controlPv "$(P)m0.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 60 +y 289 +w 50 +h 16 +controlPv "$(P)m0.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 55 +y 285 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 298 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 290 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 290 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 285 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 293 +w 40 +h 14 +controlPv "$(P)m0.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 30 +y 317 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Z" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 30 +y 167 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 30 +y 197 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "X" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 30 +y 227 +w 19 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "-" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 30 +y 227 +w 30 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "0Y" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 30 +y 257 +w 19 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "-" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 30 +y 257 +w 30 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "0X" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 30 +y 287 +w 19 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "-" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 30 +y 287 +w 30 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "0Z" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 330 +y 220 +w 60 +h 140 + +beginGroup + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 330 +y 220 +w 59 +h 139 +lineColor rgb 47872 47872 47872 +fill +fillColor rgb 47872 47872 47872 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 330 +y 220 +w 60 +h 140 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 199 +y 340 +w 60 +h 20 + +beginGroup + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 340 +w 58 +h 19 +lineColor rgb 47872 47872 47872 +fill +fillColor rgb 47872 47872 47872 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 199 +y 340 +w 59 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +endGroup + +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 160 +y 140 +w 149 +h 199 +lineColor rgb 47872 47872 47872 +fill +fillColor rgb 47872 47872 47872 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 160 +y 140 +w 150 +h 200 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 160 +y 140 +w 150 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Zone Plate 2" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 315 +y 140 +w 144 +h 79 +lineColor rgb 47872 47872 47872 +fill +fillColor rgb 47872 47872 47872 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 315 +y 140 +w 145 +h 80 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 320 +y 140 +w 135 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "OSA" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 465 +y 140 +w 144 +h 109 +lineColor rgb 47872 47872 47872 +fill +fillColor rgb 47872 47872 47872 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 470 +y 140 +w 135 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Sample" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 465 +y 140 +w 145 +h 110 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 490 +y 197 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 515 +y 190 +w 50 +h 10 +controlPv "$(P)m14.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 515 +y 198 +w 50 +h 16 +controlPv "$(P)m14.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 510 +y 195 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m14_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 500 +y 208 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m14.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 505 +y 200 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m14.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 500 +y 200 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m14.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 500 +y 195 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m14.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 165 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m20.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 178 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m20.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 215 +y 160 +w 50 +h 10 +controlPv "$(P)m20.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 215 +y 169 +w 50 +h 16 +controlPv "$(P)m20.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 210 +y 165 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m20_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 205 +y 170 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m20.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 170 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m20.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 265 +y 173 +w 40 +h 14 +controlPv "$(P)m20.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 215 +y 190 +w 50 +h 10 +controlPv "$(P)m19.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 215 +y 199 +w 50 +h 16 +controlPv "$(P)m19.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 210 +y 195 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m19_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 208 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m19.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 205 +y 200 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m19.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 200 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m19.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 195 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m19.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 265 +y 203 +w 40 +h 14 +controlPv "$(P)m19.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 215 +y 220 +w 50 +h 10 +controlPv "$(P)m0.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 215 +y 229 +w 50 +h 16 +controlPv "$(P)m0.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 210 +y 225 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 238 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 205 +y 230 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 230 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 225 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 265 +y 233 +w 40 +h 14 +controlPv "$(P)m0.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 315 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m18.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 328 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m18.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 215 +y 310 +w 50 +h 10 +controlPv "$(P)m18.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 215 +y 319 +w 50 +h 16 +controlPv "$(P)m18.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 210 +y 315 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m18_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 205 +y 320 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m18.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 320 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m18.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 265 +y 323 +w 40 +h 14 +controlPv "$(P)m18.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 215 +y 280 +w 50 +h 10 +controlPv "$(P)m0.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 215 +y 289 +w 50 +h 16 +controlPv "$(P)m0.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 210 +y 285 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 298 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 205 +y 290 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 290 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 285 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 265 +y 293 +w 40 +h 14 +controlPv "$(P)m0.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 215 +y 250 +w 50 +h 10 +controlPv "$(P)m0.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 215 +y 259 +w 50 +h 16 +controlPv "$(P)m0.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 210 +y 255 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 268 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 205 +y 260 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 260 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 255 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 265 +y 263 +w 40 +h 14 +controlPv "$(P)m0.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 340 +y 167 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 365 +y 160 +w 50 +h 10 +controlPv "$(P)m12.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 365 +y 168 +w 50 +h 16 +controlPv "$(P)m12.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 360 +y 165 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m12_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 350 +y 178 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m12.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 355 +y 170 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m12.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 350 +y 170 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m12.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 350 +y 165 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m12.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 415 +y 173 +w 40 +h 14 +controlPv "$(P)m12.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 340 +y 197 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "X" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 365 +y 190 +w 50 +h 10 +controlPv "$(P)m11.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 365 +y 198 +w 50 +h 16 +controlPv "$(P)m11.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 360 +y 195 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m11_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 350 +y 208 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m11.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 355 +y 200 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m11.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 350 +y 200 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m11.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 350 +y 195 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m11.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 415 +y 203 +w 40 +h 14 +controlPv "$(P)m11.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 490 +y 167 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Z" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 515 +y 160 +w 50 +h 10 +controlPv "$(P)m0.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 515 +y 168 +w 50 +h 16 +controlPv "$(P)m0.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 510 +y 165 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 500 +y 178 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 505 +y 170 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 500 +y 170 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 500 +y 165 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m0.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 490 +y 227 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "X" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 515 +y 220 +w 50 +h 10 +controlPv "$(P)m13.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 515 +y 228 +w 50 +h 16 +controlPv "$(P)m13.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 510 +y 225 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m13_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 500 +y 238 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m13.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 505 +y 230 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m13.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 500 +y 230 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m13.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 500 +y 225 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m13.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 565 +y 173 +w 40 +h 14 +controlPv "$(P)m0.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 565 +y 203 +w 40 +h 14 +controlPv "$(P)m14.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 565 +y 233 +w 40 +h 14 +controlPv "$(P)m13.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 185 +y 167 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 185 +y 197 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "X" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 185 +y 227 +w 19 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "-" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 185 +y 227 +w 30 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "0Y" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 185 +y 317 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Z" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 185 +y 287 +w 19 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "-" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 185 +y 287 +w 30 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "0Z" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 185 +y 257 +w 19 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "-" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 185 +y 257 +w 30 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "0X" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 620 +y 21 +w 59 +h 18 +lineColor rgb 47872 47872 47872 +fill +fillColor rgb 47872 47872 47872 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 620 +y 21 +w 60 +h 19 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 622 +y 140 +w 95 +h 65 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 642 +y 195 +w 75 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "DISABLED" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 642 +y 185 +w 75 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "MOTOR" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 642 +y 175 +w 75 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "SOFT LIMIT" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 642 +y 165 +w 75 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 29440 65280 27392 +bgColor index 3 +useDisplayBg +value { + "MOVING" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 642 +y 155 +w 75 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "LIMIT SWITCH" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 627 +y 176 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 627 +y 140 +w 90 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Legend:" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 627 +y 157 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 627 +y 166 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 627 +y 186 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 622 +y 140 +w 95 +h 65 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +endGroup + +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 405 +y 250 +w 314 +h 109 +lineColor rgb 47872 47872 47872 +fill +fillColor rgb 47872 47872 47872 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 410 +y 250 +w 310 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Huber 430" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 405 +y 250 +w 315 +h 110 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 625 +y 300 +w 50 +h 10 +controlPv "$(P)m16.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 625 +y 308 +w 50 +h 16 +controlPv "$(P)m16.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 620 +y 305 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m16_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 610 +y 318 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m16.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 615 +y 310 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m16.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 610 +y 310 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m16.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 610 +y 305 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m16.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 625 +y 270 +w 50 +h 10 +controlPv "$(P)m15.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 625 +y 278 +w 50 +h 16 +controlPv "$(P)m15.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 620 +y 275 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m15_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 610 +y 288 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m15.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 615 +y 280 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m15.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 610 +y 280 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m15.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 610 +y 275 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m15.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 625 +y 330 +w 50 +h 10 +controlPv "$(P)m10.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 625 +y 338 +w 50 +h 16 +controlPv "$(P)m10.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 620 +y 335 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m10_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 610 +y 348 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m10.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 615 +y 340 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m10.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 610 +y 340 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m10.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 610 +y 335 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m10.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 675 +y 283 +w 40 +h 14 +controlPv "$(P)m15.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 675 +y 313 +w 40 +h 14 +controlPv "$(P)m16.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 675 +y 343 +w 40 +h 14 +controlPv "$(P)m10.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 595 +y 307 +w 30 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "0X" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 595 +y 307 +w 19 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "-" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 555 +y 310 +w 22 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PHI" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 595 +y 277 +w 19 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "-" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 595 +y 277 +w 30 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "0Z" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 555 +y 280 +w 22 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "CHI" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 595 +y 337 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Z" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 460 +y 300 +w 50 +h 10 +controlPv "$(P)m7.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 460 +y 308 +w 50 +h 16 +controlPv "$(P)m7.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 455 +y 305 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m7_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 445 +y 318 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m7.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 450 +y 310 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m7.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 445 +y 310 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m7.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 445 +y 305 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m7.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 460 +y 270 +w 50 +h 10 +controlPv "$(P)m9.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 460 +y 278 +w 50 +h 16 +controlPv "$(P)m9.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 455 +y 275 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m9_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 445 +y 288 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m9.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 450 +y 280 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m9.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 445 +y 280 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m9.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 445 +y 275 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m9.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 460 +y 330 +w 50 +h 10 +controlPv "$(P)m8.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 460 +y 338 +w 50 +h 16 +controlPv "$(P)m8.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 455 +y 335 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m8_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 445 +y 348 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m8.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 450 +y 340 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m8.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 445 +y 340 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m8.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 445 +y 335 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m8.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 510 +y 283 +w 40 +h 14 +controlPv "$(P)m9.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 510 +y 313 +w 40 +h 14 +controlPv "$(P)m7.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 510 +y 343 +w 40 +h 14 +controlPv "$(P)m8.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 430 +y 307 +w 19 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "-" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 430 +y 307 +w 21 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "0" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 430 +y 277 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "X" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 430 +y 337 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + " -" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 430 +y 337 +w 28 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "20" +} +endObjectProperties + +# (Arc) +object activeArcClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 545 +y 40 +w 24 +h 80 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +startAngle 290 +totalAngle 140 +fillMode "pie" +endObjectProperties + +# (Arc) +object activeArcClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 553 +y 40 +w 24 +h 80 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +startAngle 110 +totalAngle 140 +fillMode "pie" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 575 +y 40 +w 144 +h 79 +lineColor rgb 47872 47872 47872 +fill +fillColor rgb 47872 47872 47872 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 600 +y 97 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "X" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 625 +y 90 +w 50 +h 10 +controlPv "$(P)m23.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 625 +y 98 +w 50 +h 16 +controlPv "$(P)m23.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 620 +y 95 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m23_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 610 +y 108 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m23.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 615 +y 100 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m23.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 610 +y 100 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m23.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 610 +y 95 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m23.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 580 +y 40 +w 135 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Camera" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 575 +y 40 +w 145 +h 80 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 600 +y 67 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 625 +y 60 +w 50 +h 10 +controlPv "$(P)m24.RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 625 +y 68 +w 50 +h 16 +controlPv "$(P)m24.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 620 +y 65 +w 4 +h 17 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m24_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 610 +y 78 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m24.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 615 +y 70 +w 4 +h 7 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m24.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 610 +y 70 +w 4 +h 7 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m24.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 610 +y 65 +w 9 +h 4 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)m24.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 675 +y 73 +w 40 +h 14 +controlPv "$(P)m24.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 675 +y 103 +w 40 +h 14 +controlPv "$(P)m23.TWV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 245 +y 30 +w 50 +h 100 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 398 +y 51 +w 48 +h 44 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 364 +y 95 +w 50 +h 30 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 49 +w 68 +h 63 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 49 +w 68 +h 63 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 30 +y 364 +w 70 +h 20 + +beginGroup + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 30 +y 364 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 table.edl + 1 table_full.edl +} +menuLabel { + 0 Table 1 (S) + 1 Table 1 (L) +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T),M0X=m27,M0Y=m28,M1Y=m29,M2X=m30,M2Y=m31,M2Z=m32" + 1 "P=$(P),Q=$(Q),T=$(T),M0X=m27,M0Y=m28,M1Y=m29,M2X=m30,M2Y=m31,M2Z=m32" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 364 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):x_dec.VAL" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 220 +y 364 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):x_inc.VAL" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 320 +y 364 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):y_dec.VAL" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 340 +y 364 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):y_inc.VAL" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 340 +w 60 +h 20 + +beginGroup + +endGroup + +endObjectProperties + + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 130 +y 310 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m22.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 310 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m22.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 130 +y 160 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m4.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 160 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m4.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 130 +y 190 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m3.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 190 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m3.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 130 +y 220 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m0.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 220 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m0.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 130 +y 250 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m0.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 250 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m0.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 130 +y 280 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m0.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 280 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m0.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 314 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m22" + 1 "P=$(P),M=m22" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 164 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m4" + 1 "P=$(P),M=m4" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 194 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m3" + 1 "P=$(P),M=m3" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 224 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 0 +numDsps 0 +displayFileName { +} +menuLabel { +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 254 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 0 +numDsps 0 +displayFileName { +} +menuLabel { +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 284 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 0 +numDsps 0 +displayFileName { +} +menuLabel { +} +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 330 +y 220 +w 60 +h 140 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 199 +y 340 +w 60 +h 20 + +beginGroup + +endGroup + +endObjectProperties + + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 470 +y 194 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m14" + 1 "P=$(P),M=m14" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 285 +y 160 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m20.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 265 +y 160 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m20.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 285 +y 190 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m19.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 265 +y 190 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m19.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 285 +y 220 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m0.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 265 +y 220 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m0.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 285 +y 310 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m18.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 265 +y 310 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m18.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 285 +y 280 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m0.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 265 +y 280 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m0.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 285 +y 250 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m0.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 265 +y 250 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m0.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 320 +y 164 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m12" + 1 "P=$(P),M=m12" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 435 +y 160 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m12.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 415 +y 160 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m12.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 320 +y 194 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m11" + 1 "P=$(P),M=m11" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 435 +y 190 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m11.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 415 +y 190 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m11.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 585 +y 190 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m14.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 565 +y 190 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m14.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 470 +y 164 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m0" + 1 "P=$(P),M=m0" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 585 +y 160 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m0.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 565 +y 160 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m0.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 470 +y 224 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m13" + 1 "P=$(P),M=m13" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 585 +y 220 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m13.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 565 +y 220 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m13.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 165 +y 164 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m20" + 1 "P=$(P),M=m20" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 165 +y 194 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m19" + 1 "P=$(P),M=m19" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 165 +y 224 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 0 +numDsps 0 +displayFileName { +} +menuLabel { +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 165 +y 314 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m18" + 1 "P=$(P),M=m18" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 165 +y 284 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 0 +numDsps 0 +displayFileName { +} +menuLabel { +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 165 +y 254 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 0 +numDsps 0 +displayFileName { +} +menuLabel { +} +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 622 +y 140 +w 95 +h 65 + +beginGroup + +endGroup + +endObjectProperties + + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 620 +y 206 +w 100 +h 40 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "All Stop" +offLabel "All Stop" +3d +useEnumNumeric +font "utopia-medium-r-24.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 675 +y 300 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m16.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 695 +y 300 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m16.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 675 +y 270 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m15.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 695 +y 270 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m15.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 675 +y 330 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m10.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 695 +y 330 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m10.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 575 +y 304 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m16" + 1 "P=$(P),M=m16" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 575 +y 274 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m15" + 1 "P=$(P),M=m15" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 575 +y 334 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m10" + 1 "P=$(P),M=m10" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 510 +y 300 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m7.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 530 +y 300 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m7.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 510 +y 270 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m9.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 530 +y 270 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m9.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 510 +y 330 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m8.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 530 +y 330 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m8.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 410 +y 304 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m7" + 1 "P=$(P),M=m7" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 410 +y 274 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m9" + 1 "P=$(P),M=m9" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 410 +y 334 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m8" + 1 "P=$(P),M=m8" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 580 +y 94 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m23" + 1 "P=$(P),M=m23" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 695 +y 90 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m23.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 675 +y 90 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m23.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 580 +y 64 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 Motor (small) + 1 Motor (medium) +} +symbols { + 0 "P=$(P),M=m24" + 1 "P=$(P),M=m24" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 695 +y 60 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m24.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 675 +y 60 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)m24.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 532 +y 367 +w 50 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +icon +buttonLabel "Less" +numPvs 2 +numDsps 1 +displayFileName { + 0 2iddMicroscope.edl +} +menuLabel { + 0 Microscope (small) +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T),M0X=m27,M0Y=m28,M1Y=m29,M2X=m30,M2Y=m31,M2Z=m32" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/2postMirror.edl b/opticsApp/op/edl/autoconvert/2postMirror.edl new file mode 100644 index 0000000..58804cf --- /dev/null +++ b/opticsApp/op/edl/autoconvert/2postMirror.edl @@ -0,0 +1,3029 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 263 +y 27 +w 460 +h 290 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 64256 62208 18944 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 350 +y 225 +w 104 +h 37 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 235 +y 225 +w 104 +h 37 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 125 +y 225 +w 104 +h 37 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 11 +y 111 +w 104 +h 153 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 112 +w 70 +h 20 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 134 +y 112 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 150 +y 120 +w 61 +h 12 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "AVERAGE" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 128 +y 145 +w 100 +h 20 +controlPv "$(P)$(Q)t2.D" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 128 +y 165 +w 100 +h 25 +controlPv "$(P)$(Q)avg.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 148 +y 205 +w 60 +h 20 +controlPv "$(P)$(Q)avg_tweakVal" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 128 +y 190 +w 100 +h 14 +controlPv "$(P)$(Q)t3.G" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 128 +y 130 +w 100 +h 14 +controlPv "$(P)$(Q)t3.H" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 200 +y 115 +w 20 +h 14 +controlPv "$(P)$(Q)avg.EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 237 +y 112 +w 60 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Angle" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 237 +y 145 +w 100 +h 20 +controlPv "$(P)$(Q)t2.C" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 237 +y 165 +w 100 +h 25 +controlPv "$(P)$(Q)angl.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 257 +y 205 +w 60 +h 20 +controlPv "$(P)$(Q)angl_tweakVal" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 372 +y 205 +w 60 +h 20 +controlPv "$(P)$(Q)up_tweakVal" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 238 +y 190 +w 100 +h 14 +controlPv "$(P)$(Q)t3.E" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 238 +y 130 +w 100 +h 14 +controlPv "$(P)$(Q)t3.F" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 297 +y 115 +w 40 +h 14 +controlPv "$(P)$(Q)angl.EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 15 +y 112 +w 70 +h 20 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 9 +y 112 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 25 +y 120 +w 86 +h 12 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "DOWNSTREAM" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 13 +y 145 +w 100 +h 20 +controlPv "$(P)$(Q)t2.A" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 13 +y 165 +w 100 +h 25 +controlPv "$(P)$(Q)dn.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 33 +y 205 +w 60 +h 20 +controlPv "$(P)$(Q)dn_tweakVal" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 13 +y 190 +w 100 +h 14 +controlPv "$(P)$(mDn).LLM" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 13 +y 130 +w 100 +h 14 +controlPv "$(P)$(mDn).HLM" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 225 +w 104 +h 37 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 90 +y 115 +w 20 +h 14 +controlPv "$(P)$(mDn).EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 360 +y 112 +w 70 +h 20 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 360 +y 112 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 370 +y 120 +w 68 +h 12 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "UPSTREAM" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 352 +y 145 +w 100 +h 20 +controlPv "$(P)$(Q)t2.B" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 352 +y 165 +w 100 +h 25 +controlPv "$(P)$(Q)up.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 353 +y 190 +w 100 +h 14 +controlPv "$(P)$(mUp).LLM" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 353 +y 130 +w 100 +h 14 +controlPv "$(P)$(mUp).HLM" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 424 +y 115 +w 20 +h 14 +controlPv "$(P)$(mUp).EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 118 +y 35 +w 276 +h 71 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 118 +y 52 +w 234 +h 33 +lineColor rgb 26880 26880 26880 +fillColor rgb 26880 26880 26880 +lineWidth 7 +numPoints 2 { +xPoints { +0 121 +1 348 +} +yPoints { +0 55 +1 81 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 238 +y 63 +w 156 +h 2 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 393 +1 239 +} +yPoints { +0 64 +1 64 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 135 +y 60 +w 10 +h 24 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 135 +y 60 +w 0 +h 24 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 135 +1 135 +} +yPoints { +0 60 +1 84 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 135 +y 60 +w 10 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 135 +1 145 +} +yPoints { +0 60 +1 60 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 135 +y 81 +w 5 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 135 +1 140 +} +yPoints { +0 81 +1 81 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 135 +y 75 +w 5 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 135 +1 140 +} +yPoints { +0 75 +1 75 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 135 +y 78 +w 5 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 135 +1 140 +} +yPoints { +0 78 +1 78 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 135 +y 63 +w 5 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 135 +1 140 +} +yPoints { +0 63 +1 63 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 135 +y 66 +w 5 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 135 +1 140 +} +yPoints { +0 66 +1 66 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 135 +y 69 +w 5 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 135 +1 140 +} +yPoints { +0 69 +1 69 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 135 +y 72 +w 10 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 135 +1 145 +} +yPoints { +0 72 +1 72 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 135 +y 84 +w 10 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 135 +1 145 +} +yPoints { +0 84 +1 84 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 238 +y 72 +w 10 +h 24 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 238 +y 72 +w 0 +h 24 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 238 +1 238 +} +yPoints { +0 72 +1 96 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 238 +y 72 +w 10 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 238 +1 248 +} +yPoints { +0 72 +1 72 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 238 +y 93 +w 5 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 238 +1 243 +} +yPoints { +0 93 +1 93 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 238 +y 87 +w 5 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 238 +1 243 +} +yPoints { +0 87 +1 87 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 238 +y 90 +w 5 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 238 +1 243 +} +yPoints { +0 90 +1 90 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 238 +y 75 +w 5 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 238 +1 243 +} +yPoints { +0 75 +1 75 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 238 +y 78 +w 5 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 238 +1 243 +} +yPoints { +0 78 +1 78 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 238 +y 81 +w 5 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 238 +1 243 +} +yPoints { +0 81 +1 81 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 238 +y 84 +w 10 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 238 +1 248 +} +yPoints { +0 84 +1 84 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 238 +y 96 +w 10 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 238 +1 248 +} +yPoints { +0 96 +1 96 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 328 +y 82 +w 10 +h 24 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 328 +y 82 +w 0 +h 24 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 328 +1 328 +} +yPoints { +0 82 +1 106 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 328 +y 82 +w 10 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 328 +1 338 +} +yPoints { +0 82 +1 82 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 328 +y 103 +w 5 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 328 +1 333 +} +yPoints { +0 103 +1 103 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 328 +y 97 +w 5 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 328 +1 333 +} +yPoints { +0 97 +1 97 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 328 +y 100 +w 5 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 328 +1 333 +} +yPoints { +0 100 +1 100 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 328 +y 85 +w 5 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 328 +1 333 +} +yPoints { +0 85 +1 85 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 328 +y 88 +w 5 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 328 +1 333 +} +yPoints { +0 88 +1 88 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 328 +y 91 +w 5 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 328 +1 333 +} +yPoints { +0 91 +1 91 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 328 +y 94 +w 10 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 328 +1 338 +} +yPoints { +0 94 +1 94 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 328 +y 106 +w 10 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 328 +1 338 +} +yPoints { +0 106 +1 106 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 131 +y 35 +w 107 +h 29 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 237 +1 132 +} +yPoints { +0 63 +1 36 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 291 +y 49 +w 101 +h 10 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 291 +y 54 +w 100 +h 5 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 0 +numPoints 3 { +xPoints { +0 391 +1 291 +2 306 +} +yPoints { +0 59 +1 59 +2 54 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 312 +y 49 +w 80 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "INCIDENT BEAM" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 131 +y 35 +w 21 +h 3 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 151 +1 132 +} +yPoints { +0 37 +1 36 +} +endObjectProperties + +# (Arc) +object activeArcClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 290 +y 58 +w 20 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +startAngle 328 +totalAngle 65 +fillMode "pie" +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 59 +y 72 +w 76 +h 38 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 0 +numPoints 3 { +xPoints { +0 59 +1 59 +2 135 +} +yPoints { +0 110 +1 102 +2 72 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 173 +y 84 +w 65 +h 26 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 0 +numPoints 3 { +xPoints { +0 173 +1 173 +2 238 +} +yPoints { +0 110 +1 103 +2 84 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 337 +y 93 +w 66 +h 18 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 0 +numPoints 3 { +xPoints { +0 403 +1 403 +2 337 +} +yPoints { +0 111 +1 103 +2 93 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 283 +y 67 +w 27 +h 43 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 0 +numPoints 3 { +xPoints { +0 283 +1 283 +2 310 +} +yPoints { +0 110 +1 84 +2 67 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 240 +y 270 +w 60 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "length" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 350 +y 273 +w 15 +h 14 +controlPv "$(P)$(Q)length.EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 300 +y 273 +w 45 +h 14 +controlPv "$(P)$(Q)length.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 126 +y 111 +w 104 +h 153 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 111 +w 104 +h 153 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 351 +y 111 +w 104 +h 153 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 459 +h 30 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 2 +y 0 +w 350 +h 30 +controlPv "$(P)mirror-$(Q).DESC" +format "decimal" +font "helvetica-medium-r-18.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 355 +y 4 +w 100 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Mirror $(Q)" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 31 +w 461 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 459 +} +yPoints { +0 32 +1 32 +} +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 112 +w 70 +h 20 + +beginGroup + +endGroup + +endObjectProperties + + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 128 +y 205 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)avg_tweak.A" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 208 +y 205 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)avg_tweak.B" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 237 +y 205 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)angl_tweak.A" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 317 +y 205 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)angl_tweak.B" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 352 +y 205 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)up_tweak.A" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 432 +y 205 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)up_tweak.B" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 15 +y 112 +w 70 +h 20 + +beginGroup + +endGroup + +endObjectProperties + + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 13 +y 205 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)dn_tweak.A" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 93 +y 205 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)dn_tweak.B" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 360 +y 112 +w 70 +h 20 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 118 +y 35 +w 276 +h 71 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 135 +y 60 +w 10 +h 24 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 238 +y 72 +w 10 +h 24 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 328 +y 82 +w 10 +h 24 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 291 +y 49 +w 101 +h 10 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 270 +w 78 +h 21 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)set.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 150 +y 270 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "More" +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx.edl +} +menuLabel { + 0 Up motor + 1 Dn motor +} +symbols { + 0 "P=$(P),M=$(mUp)" + 1 "P=$(P),M=$(mDn)" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 270 +w 50 +h 21 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)sync.PROC" +pressValue "1" +releaseValue +onLabel "Sync" +offLabel "Sync" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 380 +y 270 +w 79 +h 21 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "All Stop" +offLabel "All Stop" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 131 +y 228 +w 94 +h 16 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "SCAN CONTROL" +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(Q)avg,NAME=$(Q)avg,DESC=$(Q)avg,EGU=$(Q)avg.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 16 +y 228 +w 94 +h 16 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "SCAN CONTROL" +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(Q)dn,NAME=$(Q)dn,DESC=$(Q)dn,EGU=$(Q)dn.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 239 +y 228 +w 94 +h 16 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "SCAN CONTROL" +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(Q)angl,NAME=$(Q)angl,DESC=$(Q)angl,EGU=$(Q)angl.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 356 +y 228 +w 94 +h 16 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "SCAN CONTROL" +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(Q)up,NAME=$(Q)up,DESC=$(Q)up,EGU=$(Q)up.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 131 +y 245 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)avg:scanParms.LOAD" +pressValue "1" +releaseValue +onLabel "LD" +offLabel "LD" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 158 +y 245 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)avg:scanParms.GO" +pressValue "1" +releaseValue +onLabel "GO" +offLabel "GO" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 185 +y 245 +w 40 +h 16 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "ABORT" +offLabel "ABORT" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 241 +y 245 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)angl:scanParms.LOAD" +pressValue "1" +releaseValue +onLabel "LD" +offLabel "LD" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 268 +y 245 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)angl:scanParms.GO" +pressValue "1" +releaseValue +onLabel "GO" +offLabel "GO" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 295 +y 245 +w 40 +h 16 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "ABORT" +offLabel "ABORT" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 356 +y 245 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)up:scanParms.LOAD" +pressValue "1" +releaseValue +onLabel "LD" +offLabel "LD" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 383 +y 245 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)up:scanParms.GO" +pressValue "1" +releaseValue +onLabel "GO" +offLabel "GO" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 410 +y 245 +w 40 +h 16 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "ABORT" +offLabel "ABORT" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 70 +y 245 +w 40 +h 16 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "ABORT" +offLabel "ABORT" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 43 +y 245 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)dn:scanParms.GO" +pressValue "1" +releaseValue +onLabel "GO" +offLabel "GO" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 16 +y 245 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)dn:scanParms.LOAD" +pressValue "1" +releaseValue +onLabel "LD" +offLabel "LD" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/2slit.edl b/opticsApp/op/edl/autoconvert/2slit.edl new file mode 100644 index 0000000..51b1f24 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/2slit.edl @@ -0,0 +1,1413 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 44 +y 34 +w 435 +h 205 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 7 +y 42 +w 101 +h 19 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 111 +y 42 +w 101 +h 19 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 222 +y 42 +w 101 +h 19 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 326 +y 42 +w 101 +h 19 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 42 +w 106 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(SLIT) -" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 325 +y 41 +w 104 +h 143 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 326 +y 42 +w 106 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Center" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 332 +y 75 +w 90 +h 20 +controlPv "$(P)$(SLIT)t2.D" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 347 +y 135 +w 60 +h 20 +controlPv "$(P)$(SLIT)center_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 327 +y 120 +w 100 +h 14 +controlPv "$(P)$(SLIT)center.DRVL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 327 +y 60 +w 100 +h 14 +controlPv "$(P)$(SLIT)center.DRVH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 221 +y 41 +w 104 +h 143 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 220 +y 42 +w 106 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Size" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 227 +y 75 +w 90 +h 20 +controlPv "$(P)$(SLIT)t2.C" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 222 +y 95 +w 100 +h 25 +controlPv "$(P)$(SLIT)size.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 242 +y 136 +w 60 +h 20 +controlPv "$(P)$(SLIT)size_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 223 +y 120 +w 100 +h 14 +controlPv "$(P)$(SLIT)size.DRVL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 223 +y 60 +w 100 +h 14 +controlPv "$(P)$(SLIT)size.DRVH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 41 +w 104 +h 143 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 109 +y 42 +w 106 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(SLIT) +" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 117 +y 75 +w 90 +h 20 +controlPv "$(P)$(SLIT)t2.A" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 112 +y 95 +w 100 +h 25 +controlPv "$(P)$(SLIT)xp.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 132 +y 135 +w 60 +h 20 +controlPv "$(P)$(SLIT)xp_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 112 +y 120 +w 100 +h 14 +controlPv "$(P)$(SLIT)xp.DRVL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 112 +y 60 +w 100 +h 14 +controlPv "$(P)$(SLIT)xp.DRVH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 6 +y 41 +w 104 +h 143 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 12 +y 75 +w 90 +h 20 +controlPv "$(P)$(SLIT)t2.B" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 7 +y 95 +w 100 +h 25 +controlPv "$(P)$(SLIT)xn.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 27 +y 136 +w 60 +h 20 +controlPv "$(P)$(SLIT)xn_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 8 +y 120 +w 100 +h 14 +controlPv "$(P)$(SLIT)xn.DRVL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 8 +y 60 +w 100 +h 14 +controlPv "$(P)$(SLIT)xn.DRVH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 7 +w 22 +h 21 +font "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "-" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 327 +y 95 +w 100 +h 25 +controlPv "$(P)$(SLIT)center.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 25 +w 100 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "LOOKING UPSTREAM" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x -1 +y -3 +w 25 +h 21 +font "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "+" +} +endObjectProperties +# (Bar) +object activeBarClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 3 +w 420 +h 10 +indicatorColor rgb 65280 65280 65280 +fgColor rgb 0 0 0 +bgColor rgb 0 0 0 +indicatorPv "$(P)$(SLIT)xp.VAL" +font "helvetica-bold-r-10.0" +labelTicks 1 +majorTicks 10 +minorTicks 0 +border +scaleFormat "FFloat" +orientation "horizontal" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 13 +w 420 +h 10 + +beginGroup +# (Bar) +object activeBarClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 13 +w 420 +h 10 +indicatorColor rgb 0 0 0 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +indicatorPv "$(P)$(SLIT)xn.VAL" +font "helvetica-bold-r-10.0" +labelTicks 1 +majorTicks 10 +minorTicks 0 +border +scaleFormat "FFloat" +orientation "horizontal" +endObjectProperties + +endGroup + +visPv "CALC\\\{(A)\}($(P)$(SLIT)CoordSys)" +visMin 0 +visMax 1 +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 13 +w 420 +h 10 + +beginGroup +# (Bar) +object activeBarClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 13 +w 420 +h 10 +indicatorColor rgb 65280 65280 65280 +fgColor rgb 0 0 0 +bgColor rgb 0 0 0 +indicatorPv "$(P)$(SLIT)xn.VAL" +font "helvetica-bold-r-10.0" +labelTicks 1 +majorTicks 10 +minorTicks 0 +border +scaleFormat "FFloat" +orientation "horizontal" +endObjectProperties + +endGroup + +visPv "CALC\\\{(A)\}($(P)$(SLIT)CoordSys)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 245 +y 25 +w 100 +h 12 +controlPv "$(P)$(SLIT)CoordSys" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 130 +y 25 +w 110 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "COORDINATE SYSTEM:" +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 185 +w 78 +h 21 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)set.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 327 +y 135 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)center_tweak.A" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 407 +y 135 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)center_tweak.B" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 222 +y 136 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)size_tweak.A" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 302 +y 136 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)size_tweak.B" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 112 +y 135 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)xp_tweak.A" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 192 +y 135 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)xp_tweak.B" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 7 +y 136 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)xn_tweak.A" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 87 +y 136 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)xn_tweak.B" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 27 +y 160 +w 60 +h 16 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "ScanParms" +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(SLIT)n,NAME=$(SLIT)xn,DESC=$(SLIT)n,EGU=$(SLIT)xn.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 350 +y 185 +w 79 +h 21 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "All Stop" +offLabel "All Stop" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 185 +w 110 +h 21 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)sync.PROC" +pressValue "1" +releaseValue +onLabel "Sync to motors" +offLabel "Sync to motors" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 305 +y 185 +w 40 +h 21 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "More" +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx_more.edl + 1 motorx_more.edl +} +menuLabel { + 0 X- motor + 1 X+ motor +} +symbols { + 0 "P=$(P),M=$(mXn)" + 1 "P=$(P),M=$(mXp)" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 347 +y 160 +w 60 +h 16 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "ScanParms" +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(SLIT)center,NAME=$(SLIT)center,DESC=$(SLIT)center,EGU=$(SLIT)center.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 242 +y 160 +w 60 +h 16 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "ScanParms" +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(SLIT)size,NAME=$(SLIT)size,DESC=$(SLIT)size,EGU=$(SLIT)size.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 132 +y 160 +w 60 +h 16 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "ScanParms" +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(SLIT)p,NAME=$(SLIT)xp,DESC=$(SLIT)p,EGU=$(SLIT)xp.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 13 +w 420 +h 10 + +beginGroup + +endGroup + +visPv "CALC\\\{(A)\}($(P)$(SLIT)CoordSys)" +visMin 0 +visMax 1 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 13 +w 420 +h 10 + +beginGroup + +endGroup + +visPv "CALC\\\{(A)\}($(P)$(SLIT)CoordSys)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + + diff --git a/opticsApp/op/edl/autoconvert/2slit_soft.edl b/opticsApp/op/edl/autoconvert/2slit_soft.edl new file mode 100644 index 0000000..b366cf1 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/2slit_soft.edl @@ -0,0 +1,2919 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 103 +y 302 +w 500 +h 260 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 1 +y 164 +w 49 +h 16 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Calib:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 163 +w 49 +h 16 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Calib:" +} +visPv "CALC\\\{(A)\}($(P)$(SLIT)xn.SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 25 +w 116 +h 20 +controlPv "$(P)$(SLIT)xn.DESC" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 7 +y 92 +w 101 +h 28 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(SLIT)xn.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 7 +y 92 +w 101 +h 28 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(SLIT)xn.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 123 +w 112 +h 36 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 3 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 28 +y 146 +w 60 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 29440 65280 27392 +bgColor index 3 +useDisplayBg +value { + "Moving" +} +visPv "CALC\\\{(A)\}($(P)$(SLIT)xn.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 28 +y 152 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Calibrate" +} +visPv "CALC\\\{(A)\}($(P)$(SLIT)xn.SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 201 +w 115 +h 23 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x -2 +y 207 +w 34 +h 13 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "Scan" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 28 +y 124 +w 60 +h 20 +controlPv "$(P)$(SLIT)xn.TWV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 9 +y 94 +w 98 +h 25 +controlPv "$(P)$(SLIT)xn.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 70 +w 5 +h 49 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(SLIT)xn.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 70 +w 5 +h 49 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(SLIT)xn.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 57 +w 116 +h 12 +controlPv "$(P)$(SLIT)xn.EGU" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 46 +w 113 +h 9 +lineColor rgb 2560 0 47104 +fill +fillColor rgb 2560 0 47104 +lineWidth 2 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 46 +w 116 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "($(P)$(SLIT)xn)" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 8 +y 67 +w 100 +h 24 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(SLIT)xn.SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 69 +w 96 +h 19 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(SLIT)xn.SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 11 +y 70 +w 94 +h 17 +controlPv "$(P)$(SLIT)xn.RBV" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 28 +y 144 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Soft limit" +} +visPv "CALC\\\{(A)\}($(P)$(SLIT)xn.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 126 +y 164 +w 49 +h 16 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Calib:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 125 +y 163 +w 49 +h 16 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Calib:" +} +visPv "CALC\\\{(A)\}($(P)$(SLIT)xp.SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 125 +y 25 +w 116 +h 20 +controlPv "$(P)$(SLIT)xp.DESC" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 132 +y 92 +w 101 +h 28 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(SLIT)xp.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 132 +y 92 +w 101 +h 28 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(SLIT)xp.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 126 +y 123 +w 112 +h 36 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 3 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 153 +y 146 +w 60 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 29440 65280 27392 +bgColor index 3 +useDisplayBg +value { + "Moving" +} +visPv "CALC\\\{(A)\}($(P)$(SLIT)xp.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 153 +y 152 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Calibrate" +} +visPv "CALC\\\{(A)\}($(P)$(SLIT)xp.SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 125 +y 201 +w 115 +h 23 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 123 +y 207 +w 34 +h 13 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "Scan" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 153 +y 124 +w 60 +h 20 +controlPv "$(P)$(SLIT)xp.TWV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 134 +y 94 +w 98 +h 25 +controlPv "$(P)$(SLIT)xp.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 125 +y 70 +w 5 +h 49 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(SLIT)xp.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 235 +y 70 +w 5 +h 49 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(SLIT)xp.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 125 +y 57 +w 116 +h 12 +controlPv "$(P)$(SLIT)xp.EGU" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 126 +y 46 +w 113 +h 9 +lineColor rgb 2560 0 47104 +fill +fillColor rgb 2560 0 47104 +lineWidth 2 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 125 +y 46 +w 116 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "($(P)$(SLIT)xp)" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 133 +y 67 +w 100 +h 24 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(SLIT)xp.SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 135 +y 69 +w 96 +h 19 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(SLIT)xp.SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 136 +y 70 +w 94 +h 17 +controlPv "$(P)$(SLIT)xp.RBV" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 153 +y 144 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Soft limit" +} +visPv "CALC\\\{(A)\}($(P)$(SLIT)xp.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 256 +y 164 +w 49 +h 16 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Calib:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 255 +y 163 +w 49 +h 16 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Calib:" +} +visPv "CALC\\\{(A)\}($(P)$(SLIT)size.SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 255 +y 25 +w 116 +h 20 +controlPv "$(P)$(SLIT)size.DESC" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 262 +y 92 +w 101 +h 28 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(SLIT)size.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 262 +y 92 +w 101 +h 28 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(SLIT)size.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 256 +y 123 +w 112 +h 36 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 3 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 283 +y 146 +w 60 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 29440 65280 27392 +bgColor index 3 +useDisplayBg +value { + "Moving" +} +visPv "CALC\\\{(A)\}($(P)$(SLIT)size.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 283 +y 152 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Calibrate" +} +visPv "CALC\\\{(A)\}($(P)$(SLIT)size.SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 255 +y 201 +w 115 +h 23 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 253 +y 207 +w 34 +h 13 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "Scan" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 283 +y 124 +w 60 +h 20 +controlPv "$(P)$(SLIT)size.TWV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 264 +y 94 +w 98 +h 25 +controlPv "$(P)$(SLIT)size.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 255 +y 70 +w 5 +h 49 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(SLIT)size.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 365 +y 70 +w 5 +h 49 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(SLIT)size.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 255 +y 57 +w 116 +h 12 +controlPv "$(P)$(SLIT)size.EGU" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 256 +y 46 +w 113 +h 9 +lineColor rgb 2560 0 47104 +fill +fillColor rgb 2560 0 47104 +lineWidth 2 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 255 +y 46 +w 116 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "($(P)$(SLIT)size)" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 263 +y 67 +w 100 +h 24 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(SLIT)size.SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 265 +y 69 +w 96 +h 19 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(SLIT)size.SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 266 +y 70 +w 94 +h 17 +controlPv "$(P)$(SLIT)size.RBV" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 283 +y 144 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Soft limit" +} +visPv "CALC\\\{(A)\}($(P)$(SLIT)size.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 381 +y 164 +w 49 +h 16 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Calib:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 380 +y 163 +w 49 +h 16 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Calib:" +} +visPv "CALC\\\{(A)\}($(P)$(SLIT)center.SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 380 +y 25 +w 116 +h 20 +controlPv "$(P)$(SLIT)center.DESC" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 387 +y 92 +w 101 +h 28 +lineColor rgb 29440 65280 27392 +fill +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(SLIT)center.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 387 +y 92 +w 101 +h 28 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(SLIT)center.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 381 +y 123 +w 112 +h 36 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 3 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 408 +y 146 +w 60 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 29440 65280 27392 +bgColor index 3 +useDisplayBg +value { + "Moving" +} +visPv "CALC\\\{(A)\}($(P)$(SLIT)center.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 408 +y 152 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Calibrate" +} +visPv "CALC\\\{(A)\}($(P)$(SLIT)center.SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 380 +y 201 +w 115 +h 23 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 378 +y 207 +w 34 +h 13 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "Scan" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 408 +y 124 +w 60 +h 20 +controlPv "$(P)$(SLIT)center.TWV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 389 +y 94 +w 98 +h 25 +controlPv "$(P)$(SLIT)center.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 380 +y 70 +w 5 +h 49 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(SLIT)center.LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 490 +y 70 +w 5 +h 49 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(SLIT)center.HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 380 +y 57 +w 116 +h 12 +controlPv "$(P)$(SLIT)center.EGU" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 381 +y 46 +w 113 +h 9 +lineColor rgb 2560 0 47104 +fill +fillColor rgb 2560 0 47104 +lineWidth 2 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 380 +y 46 +w 116 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "($(P)$(SLIT)center)" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 388 +y 67 +w 100 +h 24 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(SLIT)center.SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 390 +y 69 +w 96 +h 19 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(SLIT)center.SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 391 +y 70 +w 94 +h 17 +controlPv "$(P)$(SLIT)center.RBV" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 408 +y 144 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Soft limit" +} +visPv "CALC\\\{(A)\}($(P)$(SLIT)center.LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 499 +h 24 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 22 +w 501 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 499 +} +yPoints { +0 23 +1 23 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 500 +h 22 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Slit $(SLIT)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 353 +y 250 +w 52 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "X+ MOTOR:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 355 +y 235 +w 50 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "X- MOTOR:" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 410 +y 250 +w 80 +h 12 +controlPv "$(P)$(SLIT)mXp_nameCalc.SVAL" +format "string" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 410 +y 235 +w 80 +h 12 +controlPv "$(P)$(SLIT)mXn_nameCalc.SVAL" +format "string" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 74 +y 203 +w 40 +h 20 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "Abort" +offLabel "Abort" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 52 +y 203 +w 21 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)xn:scanParms.GO" +pressValue "1" +releaseValue +onLabel "Go" +offLabel "Go" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 30 +y 203 +w 21 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)xn:scanParms.LOAD" +pressValue "1" +releaseValue +onLabel "Ld" +offLabel "Ld" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 60 +y 181 +w 53 +h 20 +fgColor rgb 63744 55808 15360 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)xn.STOP" +pressValue "1" +releaseValue +onLabel "STOP" +offLabel "STOP" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 181 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "More" +numPvs 12 +numDsps 6 +displayFileName { + 0 motorx_tiny.edl + 1 motorx_help.edl + 2 motorx_more.edl + 3 motorx_setup.edl + 4 scanParms.edl + 5 motorx_all.edl +} +menuLabel { + 0 $(SLIT)xn (Tiny) + 1 $(SLIT)xn (Help) + 2 $(SLIT)xn (Medium) + 3 $(SLIT)xn (Setup) + 4 Scan Parameters + 5 $(SLIT)xn (Debug) +} +symbols { + 0 "P=$(P),M=$(SLIT)xn" + 1 "P=$(P),M=$(SLIT)xn" + 2 "P=$(P),M=$(SLIT)xn" + 3 "P=$(P),M=$(SLIT)xn" + 4 "P=$(P),Q=$(SLIT)xn,PV=$(SLIT)xn" + 5 "P=$(P),M=$(SLIT)xn" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 + 5 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 124 +w 25 +h 36 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)xn.TWR" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-18.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 89 +y 124 +w 25 +h 36 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)xn.TWF" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-18.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 162 +w 71 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)xn.SET" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 199 +y 203 +w 40 +h 20 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "Abort" +offLabel "Abort" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 177 +y 203 +w 21 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)xp:scanParms.GO" +pressValue "1" +releaseValue +onLabel "Go" +offLabel "Go" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 155 +y 203 +w 21 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)xp:scanParms.LOAD" +pressValue "1" +releaseValue +onLabel "Ld" +offLabel "Ld" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 185 +y 181 +w 53 +h 20 +fgColor rgb 63744 55808 15360 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)xp.STOP" +pressValue "1" +releaseValue +onLabel "STOP" +offLabel "STOP" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 130 +y 181 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "More" +numPvs 12 +numDsps 6 +displayFileName { + 0 motorx_tiny.edl + 1 motorx_help.edl + 2 motorx_more.edl + 3 motorx_setup.edl + 4 scanParms.edl + 5 motorx_all.edl +} +menuLabel { + 0 $(SLIT)xp (Tiny) + 1 $(SLIT)xp (Help) + 2 $(SLIT)xp (Medium) + 3 $(SLIT)xp (Setup) + 4 Scan Parameters + 5 $(SLIT)xp (Debug) +} +symbols { + 0 "P=$(P),M=$(SLIT)xp" + 1 "P=$(P),M=$(SLIT)xp" + 2 "P=$(P),M=$(SLIT)xp" + 3 "P=$(P),M=$(SLIT)xp" + 4 "P=$(P),Q=$(SLIT)xp,PV=$(SLIT)xp" + 5 "P=$(P),M=$(SLIT)xp" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 + 5 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 127 +y 124 +w 25 +h 36 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)xp.TWR" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-18.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 214 +y 124 +w 25 +h 36 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)xp.TWF" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-18.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 170 +y 162 +w 71 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)xp.SET" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 329 +y 203 +w 40 +h 20 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "Abort" +offLabel "Abort" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 307 +y 203 +w 21 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)size:scanParms.GO" +pressValue "1" +releaseValue +onLabel "Go" +offLabel "Go" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 285 +y 203 +w 21 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)size:scanParms.LOAD" +pressValue "1" +releaseValue +onLabel "Ld" +offLabel "Ld" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 315 +y 181 +w 53 +h 20 +fgColor rgb 63744 55808 15360 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)size.STOP" +pressValue "1" +releaseValue +onLabel "STOP" +offLabel "STOP" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 260 +y 181 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "More" +numPvs 12 +numDsps 6 +displayFileName { + 0 motorx_tiny.edl + 1 motorx_help.edl + 2 motorx_more.edl + 3 motorx_setup.edl + 4 scanParms.edl + 5 motorx_all.edl +} +menuLabel { + 0 $(SLIT)size (Tiny) + 1 $(SLIT)size (Help) + 2 $(SLIT)size (Medium) + 3 $(SLIT)size (Setup) + 4 Scan Parameters + 5 $(SLIT)size (Debug) +} +symbols { + 0 "P=$(P),M=$(SLIT)size" + 1 "P=$(P),M=$(SLIT)size" + 2 "P=$(P),M=$(SLIT)size" + 3 "P=$(P),M=$(SLIT)size" + 4 "P=$(P),Q=$(SLIT)size,PV=$(SLIT)size" + 5 "P=$(P),M=$(SLIT)size" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 + 5 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 257 +y 124 +w 25 +h 36 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)size.TWR" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-18.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 344 +y 124 +w 25 +h 36 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)size.TWF" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-18.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 300 +y 162 +w 71 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)size.SET" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 454 +y 203 +w 40 +h 20 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "Abort" +offLabel "Abort" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 432 +y 203 +w 21 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)center:scanParms.GO" +pressValue "1" +releaseValue +onLabel "Go" +offLabel "Go" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 410 +y 203 +w 21 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)center:scanParms.LOAD" +pressValue "1" +releaseValue +onLabel "Ld" +offLabel "Ld" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 440 +y 181 +w 53 +h 20 +fgColor rgb 63744 55808 15360 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)center.STOP" +pressValue "1" +releaseValue +onLabel "STOP" +offLabel "STOP" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 385 +y 181 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "More" +numPvs 12 +numDsps 6 +displayFileName { + 0 motorx_tiny.edl + 1 motorx_help.edl + 2 motorx_more.edl + 3 motorx_setup.edl + 4 scanParms.edl + 5 motorx_all.edl +} +menuLabel { + 0 $(SLIT)center (Tiny) + 1 $(SLIT)center (Help) + 2 $(SLIT)center (Medium) + 3 $(SLIT)center (Setup) + 4 Scan Parameters + 5 $(SLIT)center (Debug) +} +symbols { + 0 "P=$(P),M=$(SLIT)center" + 1 "P=$(P),M=$(SLIT)center" + 2 "P=$(P),M=$(SLIT)center" + 3 "P=$(P),M=$(SLIT)center" + 4 "P=$(P),Q=$(SLIT)center,PV=$(SLIT)center" + 5 "P=$(P),M=$(SLIT)center" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 + 5 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 382 +y 124 +w 25 +h 36 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)center.TWR" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-18.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 469 +y 124 +w 25 +h 36 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)center.TWF" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-18.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 425 +y 162 +w 71 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)center.SET" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 240 +w 78 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(SLIT)set.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 240 +w 50 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Debug" +numPvs 18 +numDsps 9 +displayFileName { + 0 yyTransform_full.edl + 1 yyTransform_full.edl + 2 yyTransform_full.edl + 3 yyCalcoutRecord.edl + 4 yyTransform_full.edl + 5 yySeq_full.edl + 6 yyTransform.edl + 7 yyTransform.edl + 8 yyTransform.edl +} +menuLabel { + 0 drive transform + 1 readback transform + 2 limits transform + 3 calcDone + 4 monitorStop + 5 doStop + 6 spectator + 7 syncCalc + 8 sync +} +symbols { + 0 "P=$(P),T=$(SLIT)tFwd" + 1 "P=$(P),T=$(SLIT)tRev" + 2 "P=$(P),T=$(SLIT)tLimits" + 3 "P=$(P),C=$(SLIT)calcDone" + 4 "P=$(P),T=$(SLIT)monitorStop" + 5 "P=$(P),S=$(SLIT)doStop" + 6 "P=$(P),T=$(SLIT)spectator" + 7 "P=$(P),T=$(SLIT)tSyncCalc" + 8 "P=$(P),T=$(SLIT)tSync" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 + 5 1 + 6 1 + 7 1 + 8 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/4filter.edl b/opticsApp/op/edl/autoconvert/4filter.edl new file mode 100644 index 0000000..aede833 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/4filter.edl @@ -0,0 +1,250 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 10 +y 10 +w 385 +h 200 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 47872 47872 47872 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 46 +w 90 +h 18 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "upstream" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 390 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "User Filters" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 289 +y 45 +w 92 +h 18 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "downstream" +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 65 +w 90 +h 130 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q1)select.VAL" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 100 +y 65 +w 90 +h 130 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q2)select.VAL" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 100 +y 20 +w 90 +h 15 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(LOCK2)lock.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 20 +w 90 +h 15 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(LOCK1)lock.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 195 +y 65 +w 90 +h 130 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q3)select.VAL" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 195 +y 20 +w 90 +h 15 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(LOCK3)lock.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 290 +y 65 +w 90 +h 130 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q4)select.VAL" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 290 +y 20 +w 90 +h 15 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(LOCK4)lock.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/4filter_setup.edl b/opticsApp/op/edl/autoconvert/4filter_setup.edl new file mode 100644 index 0000000..3c7ebeb --- /dev/null +++ b/opticsApp/op/edl/autoconvert/4filter_setup.edl @@ -0,0 +1,2702 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 10 +y 10 +w 920 +h 295 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 47872 47872 47872 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 275 +w 919 +h 16 +lineColor rgb 7680 47872 0 +fill +fillColor rgb 7680 47872 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 278 +w 920 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "NOTE: After changing filter-material description, you must close and reopen any screen that displays it." +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 255 +w 115 +h 18 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Motor-drive PV" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 120 +y 255 +w 105 +h 20 +controlPv "$(P)$(Q1)motorOut.OUTN" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 65280 45056 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 180 +y 247 +w 41 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "INVALID" +} +visPv "CALC\\\{(A)\}($(P)$(Q1)motorOut.OUTV)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 155 +y 125 +w 70 +h 20 +controlPv "$(P)$(Q1)pos5.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 155 +y 145 +w 70 +h 20 +controlPv "$(P)$(Q1)pos4.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 155 +y 165 +w 70 +h 20 +controlPv "$(P)$(Q1)pos3.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 155 +y 185 +w 70 +h 20 +controlPv "$(P)$(Q1)pos2.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 155 +y 225 +w 70 +h 20 +controlPv "$(P)$(Q1)posHome.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 155 +y 205 +w 70 +h 20 +controlPv "$(P)$(Q1)pos1.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 235 +y 255 +w 115 +h 18 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Motor-drive PV" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 350 +y 255 +w 105 +h 20 +controlPv "$(P)$(Q2)motorOut.OUTN" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 65280 45056 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 385 +y 125 +w 70 +h 20 +controlPv "$(P)$(Q2)pos5.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 385 +y 145 +w 70 +h 20 +controlPv "$(P)$(Q2)pos4.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 385 +y 165 +w 70 +h 20 +controlPv "$(P)$(Q2)pos3.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 385 +y 185 +w 70 +h 20 +controlPv "$(P)$(Q2)pos2.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 385 +y 225 +w 70 +h 20 +controlPv "$(P)$(Q2)posHome.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 385 +y 205 +w 70 +h 20 +controlPv "$(P)$(Q2)pos1.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 410 +y 245 +w 41 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "INVALID" +} +visPv "CALC\\\{(A)\}($(P)$(Q2)motorOut.OUTV)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 235 +y 125 +w 70 +h 20 +controlPv "$(P)$(Q2)name5" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 235 +y 145 +w 70 +h 20 +controlPv "$(P)$(Q2)name4" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 235 +y 165 +w 70 +h 20 +controlPv "$(P)$(Q2)name3" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 235 +y 185 +w 70 +h 20 +controlPv "$(P)$(Q2)name2" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 235 +y 225 +w 70 +h 20 +controlPv "$(P)$(Q2)nameHome" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 235 +y 205 +w 70 +h 20 +controlPv "$(P)$(Q2)name1" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 385 +y 100 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "position" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 310 +y 100 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "control" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 235 +y 100 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "material" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 385 +y 85 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "motor" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 310 +y 85 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 235 +y 85 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "filter" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 229 +y 62 +w 2 +h 212 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 230 +1 230 +} +yPoints { +0 63 +1 273 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 405 +y 45 +w 41 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "INVALID" +} +visPv "CALC\\\{(A)\}($(P)$(LOCK2)lockOut.OUTV)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 285 +y 40 +w 120 +h 20 +controlPv "$(P)$(LOCK2)lockOut.OUTN" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 65280 45056 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 230 +y 42 +w 73 +h 18 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Lock_PV" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 125 +w 70 +h 20 +controlPv "$(P)$(Q1)name5" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 145 +w 70 +h 20 +controlPv "$(P)$(Q1)name4" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 165 +w 70 +h 20 +controlPv "$(P)$(Q1)name3" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 185 +w 70 +h 20 +controlPv "$(P)$(Q1)name2" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 225 +w 70 +h 20 +controlPv "$(P)$(Q1)nameHome" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 205 +w 70 +h 20 +controlPv "$(P)$(Q1)name1" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 155 +y 100 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "position" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 80 +y 100 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "control" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 100 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "material" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 155 +y 85 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "motor" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 80 +y 85 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 85 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "filter" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 920 +h 18 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "User Filter $(P)$(Q1)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 175 +y 45 +w 41 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "INVALID" +} +visPv "CALC\\\{(A)\}($(P)$(LOCK1)lockOut.OUTV)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 55 +y 40 +w 120 +h 20 +controlPv "$(P)$(LOCK1)lockOut.OUTN" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 65280 45056 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 42 +w 73 +h 18 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Lock_PV" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 17 +w 917 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 1 +1 916 +} +yPoints { +0 18 +1 18 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 61 +w 917 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 1 +1 916 +} +yPoints { +0 62 +1 62 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 65 +w 220 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "upstream" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 275 +w 917 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 1 +1 916 +} +yPoints { +0 276 +1 276 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 465 +y 255 +w 115 +h 18 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Motor-drive PV" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 580 +y 255 +w 105 +h 20 +controlPv "$(P)$(Q3)motorOut.OUTN" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 65280 45056 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 615 +y 125 +w 70 +h 20 +controlPv "$(P)$(Q3)pos5.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 615 +y 145 +w 70 +h 20 +controlPv "$(P)$(Q3)pos4.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 615 +y 165 +w 70 +h 20 +controlPv "$(P)$(Q3)pos3.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 615 +y 185 +w 70 +h 20 +controlPv "$(P)$(Q3)pos2.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 615 +y 225 +w 70 +h 20 +controlPv "$(P)$(Q3)posHome.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 615 +y 205 +w 70 +h 20 +controlPv "$(P)$(Q3)pos1.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 640 +y 245 +w 41 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "INVALID" +} +visPv "CALC\\\{(A)\}($(P)$(Q3)motorOut.OUTV)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 465 +y 125 +w 70 +h 20 +controlPv "$(P)$(Q3)name5" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 465 +y 145 +w 70 +h 20 +controlPv "$(P)$(Q3)name4" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 465 +y 165 +w 70 +h 20 +controlPv "$(P)$(Q3)name3" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 465 +y 185 +w 70 +h 20 +controlPv "$(P)$(Q3)name2" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 465 +y 225 +w 70 +h 20 +controlPv "$(P)$(Q3)nameHome" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 465 +y 205 +w 70 +h 20 +controlPv "$(P)$(Q3)name1" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 615 +y 100 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "position" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 540 +y 100 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "control" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 465 +y 100 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "material" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 615 +y 85 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "motor" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 540 +y 85 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 465 +y 85 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "filter" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 459 +y 62 +w 2 +h 212 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 460 +1 460 +} +yPoints { +0 63 +1 273 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 635 +y 45 +w 41 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "INVALID" +} +visPv "CALC\\\{(A)\}($(P)$(LOCK3)lockOut.OUTV)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 515 +y 40 +w 120 +h 20 +controlPv "$(P)$(LOCK3)lockOut.OUTN" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 65280 45056 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 42 +w 73 +h 18 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Lock_PV" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 695 +y 255 +w 115 +h 18 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Motor-drive PV" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 810 +y 255 +w 105 +h 20 +controlPv "$(P)$(Q4)motorOut.OUTN" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 65280 45056 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 845 +y 125 +w 70 +h 20 +controlPv "$(P)$(Q4)pos5.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 845 +y 145 +w 70 +h 20 +controlPv "$(P)$(Q4)pos4.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 845 +y 165 +w 70 +h 20 +controlPv "$(P)$(Q4)pos3.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 845 +y 185 +w 70 +h 20 +controlPv "$(P)$(Q4)pos2.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 845 +y 225 +w 70 +h 20 +controlPv "$(P)$(Q4)posHome.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 845 +y 205 +w 70 +h 20 +controlPv "$(P)$(Q4)pos1.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 870 +y 245 +w 41 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "INVALID" +} +visPv "CALC\\\{(A)\}($(P)$(Q4)motorOut.OUTV)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 695 +y 125 +w 70 +h 20 +controlPv "$(P)$(Q4)name5" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 695 +y 145 +w 70 +h 20 +controlPv "$(P)$(Q4)name4" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 695 +y 165 +w 70 +h 20 +controlPv "$(P)$(Q4)name3" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 695 +y 185 +w 70 +h 20 +controlPv "$(P)$(Q4)name2" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 695 +y 225 +w 70 +h 20 +controlPv "$(P)$(Q4)nameHome" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 695 +y 205 +w 70 +h 20 +controlPv "$(P)$(Q4)name1" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 7680 47872 0 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 695 +y 65 +w 220 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "downstream" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 845 +y 100 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "position" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 770 +y 100 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "control" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 695 +y 100 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "material" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 845 +y 85 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "motor" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 770 +y 85 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 695 +y 85 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "filter" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 689 +y 62 +w 2 +h 212 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 690 +1 690 +} +yPoints { +0 63 +1 273 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 865 +y 45 +w 41 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "INVALID" +} +visPv "CALC\\\{(A)\}($(P)$(LOCK4)lockOut.OUTV)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 745 +y 40 +w 120 +h 20 +controlPv "$(P)$(LOCK4)lockOut.OUTN" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 65280 45056 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 690 +y 42 +w 73 +h 18 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Lock_PV" +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 770 +y 125 +w 70 +h 125 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q4)select.VAL" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 540 +y 125 +w 70 +h 125 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q3)select.VAL" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 310 +y 125 +w 70 +h 125 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q2)select.VAL" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 80 +y 125 +w 70 +h 125 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q1)select.VAL" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 245 +y 20 +w 200 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(LOCK2)lock.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 15 +y 20 +w 200 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(LOCK1)lock.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 475 +y 20 +w 200 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(LOCK3)lock.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 705 +y 20 +w 200 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(LOCK4)lock.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/4slitGraphic.edl b/opticsApp/op/edl/autoconvert/4slitGraphic.edl new file mode 100644 index 0000000..582562d --- /dev/null +++ b/opticsApp/op/edl/autoconvert/4slitGraphic.edl @@ -0,0 +1,2803 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 1120 +y 543 +w 280 +h 325 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 91 +y 126 +w 97 +h 97 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 1 +w 277 +h 17 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 2 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 20 +w 281 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 279 +} +yPoints { +0 21 +1 21 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 170 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(SLIT)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 195 +y 242 +w 80 +h 10 +controlPv "$(P)$(V)center.DRVH" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 242 +w 80 +h 10 +controlPv "$(P)$(V)size.DRVH" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 195 +y 37 +w 80 +h 10 +controlPv "$(P)$(H)center.DRVH" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 37 +w 80 +h 10 +controlPv "$(P)$(H)size.DRVH" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 200 +w 100 +h 100 + +beginGroup + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 200 +w 99 +h 99 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 91 +y 201 +w 98 +h 98 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 50 +w 100 +h 100 + +beginGroup + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 50 +w 99 +h 99 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 91 +y 51 +w 98 +h 98 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +endGroup + +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 125 +w 99 +h 99 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 11 +y 126 +w 98 +h 98 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 35 +y 184 +w 50 +h 16 +controlPv "$(P)$(H)xn_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 135 +w 80 +h 10 +controlPv "$(P)$(H)xn.DRVH" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 143 +w 80 +h 14 +controlPv "$(P)$(H)t2.B" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 156 +w 80 +h 20 +controlPv "$(P)$(H)xn.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 176 +w 80 +h 10 +controlPv "$(P)$(H)xn.DRVL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 55 +y 206 +w 43 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Scan" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 170 +y 125 +w 99 +h 99 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 171 +y 126 +w 98 +h 98 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 180 +y 156 +w 80 +h 20 +controlPv "$(P)$(H)xp.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 180 +y 176 +w 80 +h 10 +controlPv "$(P)$(H)xp.DRVL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 195 +y 184 +w 50 +h 16 +controlPv "$(P)$(H)xp_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 180 +y 135 +w 80 +h 10 +controlPv "$(P)$(H)xp.DRVH" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 180 +y 143 +w 80 +h 14 +controlPv "$(P)$(H)t2.A" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 215 +y 206 +w 43 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Scan" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 100 +y 76 +w 80 +h 20 +controlPv "$(P)$(V)xp.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 100 +y 96 +w 80 +h 10 +controlPv "$(P)$(V)xp.DRVL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 115 +y 104 +w 50 +h 16 +controlPv "$(P)$(V)xp_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 100 +y 55 +w 80 +h 10 +controlPv "$(P)$(V)xp.DRVH" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 100 +y 63 +w 80 +h 14 +controlPv "$(P)$(V)t2.A" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 100 +y 251 +w 80 +h 20 +controlPv "$(P)$(V)xn.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 100 +y 271 +w 80 +h 10 +controlPv "$(P)$(V)xn.DRVL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 115 +y 279 +w 50 +h 16 +controlPv "$(P)$(V)xn_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 100 +y 230 +w 80 +h 10 +controlPv "$(P)$(V)xn.DRVH" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 100 +y 238 +w 80 +h 14 +controlPv "$(P)$(V)t2.B" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 86 +w 50 +h 16 +controlPv "$(P)$(H)size_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 58 +w 80 +h 20 +controlPv "$(P)$(H)size.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 78 +w 80 +h 10 +controlPv "$(P)$(H)size.DRVL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 45 +w 80 +h 14 +controlPv "$(P)$(H)t2.C" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 25 +w 80 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 33280 1024 0 +bgColor index 3 +useDisplayBg +value { + "H SIZE" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 230 +y 106 +w 43 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Scan" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 40 +y 106 +w 43 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Scan" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 210 +y 86 +w 50 +h 16 +controlPv "$(P)$(H)center_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 195 +y 58 +w 80 +h 20 +controlPv "$(P)$(H)center.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 195 +y 78 +w 80 +h 10 +controlPv "$(P)$(H)center.DRVL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 195 +y 45 +w 80 +h 14 +controlPv "$(P)$(H)t2.D" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 195 +y 25 +w 80 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 33280 1024 0 +bgColor index 3 +useDisplayBg +value { + "H CENTER" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 210 +y 291 +w 50 +h 16 +controlPv "$(P)$(V)center_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 195 +y 263 +w 80 +h 20 +controlPv "$(P)$(V)center.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 195 +y 283 +w 80 +h 10 +controlPv "$(P)$(V)center.DRVL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 195 +y 250 +w 80 +h 14 +controlPv "$(P)$(V)t2.D" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 195 +y 230 +w 80 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 33280 1024 0 +bgColor index 3 +useDisplayBg +value { + "V CENTER" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 291 +w 50 +h 16 +controlPv "$(P)$(V)size_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 263 +w 80 +h 20 +controlPv "$(P)$(V)size.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 283 +w 80 +h 10 +controlPv "$(P)$(V)size.DRVL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 250 +w 80 +h 14 +controlPv "$(P)$(V)t2.C" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 230 +w 80 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 33280 1024 0 +bgColor index 3 +useDisplayBg +value { + "V SIZE" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 135 +y 131 +w 43 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Scan" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 135 +y 206 +w 43 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Scan" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 230 +y 311 +w 43 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Scan" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 40 +y 311 +w 43 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Scan" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 170 +y 6 +w 110 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "(Looking upstream)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 135 +y 170 +w 21 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "+" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 146 +y 171 +w 16 +h 11 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 146 +y 177 +w 13 +h 0 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 0 +numPoints 2 { +xPoints { +0 146 +1 159 +} +yPoints { +0 177 +1 177 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 151 +y 171 +w 11 +h 11 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 152 +1 161 +2 152 +} +yPoints { +0 172 +1 177 +2 181 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 114 +y 171 +w 16 +h 11 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 114 +y 177 +w 13 +h 0 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 0 +numPoints 2 { +xPoints { +0 114 +1 127 +} +yPoints { +0 177 +1 177 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 119 +y 171 +w 11 +h 11 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 120 +1 129 +2 120 +} +yPoints { +0 172 +1 177 +2 181 +} +endObjectProperties + +endGroup + +visPv "CALC\\\{(A)\}($(P)$(H)CoordSys)" +visMin 0 +visMax 1 +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 132 +y 153 +w 11 +h 16 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 138 +y 156 +w 0 +h 13 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 0 +numPoints 2 { +xPoints { +0 138 +1 138 +} +yPoints { +0 169 +1 156 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 132 +y 153 +w 11 +h 11 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 133 +1 138 +2 142 +} +yPoints { +0 163 +1 154 +2 163 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 133 +y 184 +w 11 +h 16 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 187 +w 0 +h 13 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 0 +numPoints 2 { +xPoints { +0 139 +1 139 +} +yPoints { +0 200 +1 187 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 133 +y 184 +w 11 +h 11 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 134 +1 139 +2 143 +} +yPoints { +0 194 +1 185 +2 194 +} +endObjectProperties + +endGroup + +visPv "CALC\\\{(A)\}($(P)$(V)CoordSys)" +visMin 0 +visMax 1 +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 133 +y 184 +w 11 +h 16 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 138 +y 184 +w 0 +h 13 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 0 +numPoints 2 { +xPoints { +0 138 +1 138 +} +yPoints { +0 184 +1 197 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 133 +y 189 +w 11 +h 11 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 143 +1 138 +2 134 +} +yPoints { +0 190 +1 199 +2 190 +} +endObjectProperties + +endGroup + +visPv "CALC\\\{(A)\}($(P)$(V)CoordSys)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 114 +y 171 +w 16 +h 11 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 117 +y 177 +w 13 +h 0 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 0 +numPoints 2 { +xPoints { +0 130 +1 117 +} +yPoints { +0 177 +1 177 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 114 +y 171 +w 11 +h 11 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 124 +1 115 +2 124 +} +yPoints { +0 172 +1 177 +2 181 +} +endObjectProperties + +endGroup + +visPv "CALC\\\{(A)\}($(P)$(H)CoordSys)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 200 +w 100 +h 100 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 50 +w 100 +h 100 + +beginGroup + +endGroup + +endObjectProperties + + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 20 +y 184 +w 16 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)xn_tweak.A" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 84 +y 184 +w 16 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)xn_tweak.B" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 35 +y 205 +w 16 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(H)n,NAME=$(H)xn,DESC=$(H)n,EGU=$(H)xn.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 180 +y 184 +w 16 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)xp_tweak.A" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 244 +y 184 +w 16 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)xp_tweak.B" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 195 +y 205 +w 16 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(H)p,NAME=$(H)xp,DESC=$(H)p,EGU=$(H)xp.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 166 +y 104 +w 20 +h 16 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(V)xp_tweak.B" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 95 +y 104 +w 20 +h 16 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(V)xp_tweak.A" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 95 +y 279 +w 20 +h 16 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(V)xn_tweak.A" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 166 +y 279 +w 20 +h 16 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(V)xn_tweak.B" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 86 +w 16 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)size_tweak.A" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 69 +y 86 +w 16 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)size_tweak.B" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 210 +y 105 +w 16 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(H)center,NAME=$(H)center,DESC=$(H)center,EGU=$(H)center.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 20 +y 105 +w 16 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(H)size,NAME=$(H)size,DESC=$(H)size,EGU=$(H)size.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 195 +y 86 +w 16 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)center_tweak.A" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 259 +y 86 +w 16 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)center_tweak.B" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 191 +y 291 +w 20 +h 16 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(V)center_tweak.A" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 259 +y 291 +w 20 +h 16 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(V)center_tweak.B" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 4 +y 291 +w 16 +h 16 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(V)size_tweak.A" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 69 +y 291 +w 16 +h 16 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(V)size_tweak.B" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 115 +y 130 +w 16 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(V)p,NAME=$(V)xp,DESC=$(V)p,EGU=$(V)xp.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 115 +y 205 +w 16 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(V)n,NAME=$(V)xn,DESC=$(V)n,EGU=$(V)xn.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 210 +y 310 +w 16 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(V)center,NAME=$(V)center,DESC=$(V)center,EGU=$(V)center.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 20 +y 310 +w 16 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(V)size,NAME=$(V)size,DESC=$(V)size,EGU=$(V)size.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 25 +w 60 +h 22 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)sync.PROC" +pressValue "1" +releaseValue +onLabel "Sync H" +offLabel "Sync H" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 303 +w 60 +h 22 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(V)sync.PROC" +pressValue "1" +releaseValue +onLabel "Sync V" +offLabel "Sync V" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 146 +y 171 +w 16 +h 11 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 114 +y 171 +w 16 +h 11 + +beginGroup + +endGroup + +visPv "CALC\\\{(A)\}($(P)$(H)CoordSys)" +visMin 0 +visMax 1 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 132 +y 153 +w 11 +h 16 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 133 +y 184 +w 11 +h 16 + +beginGroup + +endGroup + +visPv "CALC\\\{(A)\}($(P)$(V)CoordSys)" +visMin 0 +visMax 1 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 133 +y 184 +w 11 +h 16 + +beginGroup + +endGroup + +visPv "CALC\\\{(A)\}($(P)$(V)CoordSys)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 114 +y 171 +w 16 +h 11 + +beginGroup + +endGroup + +visPv "CALC\\\{(A)\}($(P)$(H)CoordSys)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + + diff --git a/opticsApp/op/edl/autoconvert/4slitGraphic_soft.edl b/opticsApp/op/edl/autoconvert/4slitGraphic_soft.edl new file mode 100644 index 0000000..b52637b --- /dev/null +++ b/opticsApp/op/edl/autoconvert/4slitGraphic_soft.edl @@ -0,0 +1,2049 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 212 +y 66 +w 280 +h 325 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 1 +w 277 +h 17 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 2 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 20 +w 281 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 279 +} +yPoints { +0 21 +1 21 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 280 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(SLIT) (Looking upstream)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 195 +y 242 +w 80 +h 10 +controlPv "$(P)$(V)center.HLM" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 242 +w 80 +h 10 +controlPv "$(P)$(V)size.HLM" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 195 +y 37 +w 80 +h 10 +controlPv "$(P)$(H)center.HLM" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 37 +w 80 +h 10 +controlPv "$(P)$(H)size.HLM" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 91 +y 126 +w 97 +h 97 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 200 +w 100 +h 100 + +beginGroup + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 200 +w 99 +h 99 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 91 +y 201 +w 98 +h 98 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 50 +w 100 +h 100 + +beginGroup + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 50 +w 99 +h 99 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 91 +y 51 +w 98 +h 98 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +endGroup + +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 125 +w 99 +h 99 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 11 +y 126 +w 98 +h 98 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 35 +y 184 +w 50 +h 16 +controlPv "$(P)$(H)xn.TWV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 135 +w 80 +h 10 +controlPv "$(P)$(H)xn.HLM" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 143 +w 80 +h 14 +controlPv "$(P)$(H)xn.RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 156 +w 80 +h 20 +controlPv "$(P)$(H)xn.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 176 +w 80 +h 10 +controlPv "$(P)$(H)xn.LLM" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 170 +y 125 +w 99 +h 99 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 171 +y 126 +w 98 +h 98 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 180 +y 156 +w 80 +h 20 +controlPv "$(P)$(H)xp.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 180 +y 176 +w 80 +h 10 +controlPv "$(P)$(H)xp.LLM" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 195 +y 184 +w 50 +h 16 +controlPv "$(P)$(H)xp.TWV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 180 +y 135 +w 80 +h 10 +controlPv "$(P)$(H)xp.HLM" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 180 +y 143 +w 80 +h 14 +controlPv "$(P)$(H)xp.RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 100 +y 76 +w 80 +h 20 +controlPv "$(P)$(V)xp.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 100 +y 96 +w 80 +h 10 +controlPv "$(P)$(V)xp.LLM" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 115 +y 104 +w 50 +h 16 +controlPv "$(P)$(V)xp.TWV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 100 +y 55 +w 80 +h 10 +controlPv "$(P)$(V)xp.HLM" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 100 +y 63 +w 80 +h 14 +controlPv "$(P)$(V)xp.RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 100 +y 251 +w 80 +h 20 +controlPv "$(P)$(V)xn.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 100 +y 271 +w 80 +h 10 +controlPv "$(P)$(V)xn.LLM" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 115 +y 279 +w 50 +h 16 +controlPv "$(P)$(V)xn.TWV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 100 +y 230 +w 80 +h 10 +controlPv "$(P)$(V)xn.HLM" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 100 +y 238 +w 80 +h 14 +controlPv "$(P)$(V)xn.RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 86 +w 50 +h 16 +controlPv "$(P)$(H)size.TWV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 58 +w 80 +h 20 +controlPv "$(P)$(H)size.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 78 +w 80 +h 10 +controlPv "$(P)$(H)size.LLM" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 45 +w 80 +h 14 +controlPv "$(P)$(H)size.RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 25 +w 80 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 33280 1024 0 +bgColor index 3 +useDisplayBg +value { + "H SIZE" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 210 +y 86 +w 50 +h 16 +controlPv "$(P)$(H)center.TWV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 195 +y 58 +w 80 +h 20 +controlPv "$(P)$(H)center.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 195 +y 78 +w 80 +h 10 +controlPv "$(P)$(H)center.LLM" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 195 +y 45 +w 80 +h 14 +controlPv "$(P)$(H)center.RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 195 +y 25 +w 80 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 33280 1024 0 +bgColor index 3 +useDisplayBg +value { + "H CENTER" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 210 +y 291 +w 50 +h 16 +controlPv "$(P)$(V)center.TWV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 195 +y 263 +w 80 +h 20 +controlPv "$(P)$(V)center.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 195 +y 283 +w 80 +h 10 +controlPv "$(P)$(V)center.LLM" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 195 +y 250 +w 80 +h 14 +controlPv "$(P)$(V)center.RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 195 +y 230 +w 80 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 33280 1024 0 +bgColor index 3 +useDisplayBg +value { + "V CENTER" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 291 +w 50 +h 16 +controlPv "$(P)$(V)size.TWV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 263 +w 80 +h 20 +controlPv "$(P)$(V)size.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 283 +w 80 +h 10 +controlPv "$(P)$(V)size.LLM" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 250 +w 80 +h 14 +controlPv "$(P)$(V)size.RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 230 +w 80 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 33280 1024 0 +bgColor index 3 +useDisplayBg +value { + "V SIZE" +} +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 200 +w 100 +h 100 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 50 +w 100 +h 100 + +beginGroup + +endGroup + +endObjectProperties + + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 20 +y 184 +w 16 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)xn.TWR" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 84 +y 184 +w 16 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)xn.TWF" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 40 +y 205 +w 40 +h 16 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "SCAN" +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParms.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(H)xn,PV=$(H)xn" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 180 +y 184 +w 16 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)xp.TWR" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 244 +y 184 +w 16 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)xp.TWF" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 205 +w 40 +h 16 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "SCAN" +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParms.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(H)xp,PV=$(H)xp" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 166 +y 104 +w 20 +h 16 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(V)xp.TWF" +pressValue "1" +releaseValue +onLabel "UP" +offLabel "UP" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 95 +y 104 +w 20 +h 16 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(V)xp.TWR" +pressValue "1" +releaseValue +onLabel "DN" +offLabel "DN" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 95 +y 279 +w 20 +h 16 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(V)xn.TWR" +pressValue "1" +releaseValue +onLabel "DN" +offLabel "DN" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 166 +y 279 +w 20 +h 16 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(V)xn.TWF" +pressValue "1" +releaseValue +onLabel "UP" +offLabel "UP" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 86 +w 16 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)size.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 69 +y 86 +w 16 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)size.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 215 +y 105 +w 40 +h 16 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "SCAN" +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParms.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(H)center,PV=$(H)center" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 25 +y 105 +w 40 +h 16 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "SCAN" +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParms.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(H)size,PV=$(H)size" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 195 +y 86 +w 16 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)center.TWR" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 259 +y 86 +w 16 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)center.TWF" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 191 +y 291 +w 20 +h 16 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(V)center.TWR" +pressValue "1" +releaseValue +onLabel "DN" +offLabel "DN" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 259 +y 291 +w 20 +h 16 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(V)center.TWF" +pressValue "1" +releaseValue +onLabel "UP" +offLabel "UP" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 4 +y 291 +w 16 +h 16 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(V)size.TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 69 +y 291 +w 16 +h 16 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(V)size.TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 120 +y 130 +w 40 +h 16 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "SCAN" +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParms.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(V)xp,PV=$(V)xp" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 120 +y 205 +w 40 +h 16 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "SCAN" +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParms.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(V)xn,PV=$(V)xn" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 215 +y 310 +w 40 +h 16 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "SCAN" +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParms.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(V)center,PV=$(V)center" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 25 +y 310 +w 40 +h 16 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "SCAN" +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParms.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(V)size,PV=$(V)size" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 305 +w 53 +h 20 +fgColor rgb 63744 55808 15360 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)xn.STOP" +pressValue "1" +releaseValue +onLabel "STOP" +offLabel "STOP" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/ASRPmirrorTable.edl b/opticsApp/op/edl/autoconvert/ASRPmirrorTable.edl new file mode 100644 index 0000000..6824da9 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/ASRPmirrorTable.edl @@ -0,0 +1,1223 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 471 +y 396 +w 520 +h 185 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 333 +y 99 +w 157 +h 59 +lineColor rgb 51200 51200 51200 +fill +fillColor rgb 51200 51200 51200 +lineWidth 3 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 357 +y 131 +w 100 +h 20 +controlPv "$(P)$(TBL):tran.F" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 357 +y 107 +w 100 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "COUPLED PITCH" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 355 +y 120 +w 104 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "(DRIVES PITCH & VERT)" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 86 +y 61 +w 204 +h 10 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 101 +y 73 +w 15 +h 40 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +closePolygon +numPoints 4 { +xPoints { +0 101 +1 116 +2 107 +3 101 +} +yPoints { +0 113 +1 113 +2 73 +3 113 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 256 +y 73 +w 10 +h 40 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 256 +y 73 +w 10 +h 10 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +closePolygon +numPoints 4 { +xPoints { +0 256 +1 266 +2 260 +3 256 +} +yPoints { +0 83 +1 83 +2 73 +3 83 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 256 +y 103 +w 10 +h 10 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +closePolygon +numPoints 4 { +xPoints { +0 256 +1 266 +2 260 +3 256 +} +yPoints { +0 103 +1 103 +2 113 +3 103 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 260 +y 82 +w 3 +h 26 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 3 +numPoints 2 { +xPoints { +0 261 +1 261 +} +yPoints { +0 83 +1 106 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 86 +y 113 +w 204 +h 10 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 173 +y 123 +w 10 +h 40 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 173 +y 123 +w 10 +h 10 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +closePolygon +numPoints 4 { +xPoints { +0 173 +1 183 +2 177 +3 173 +} +yPoints { +0 133 +1 133 +2 123 +3 133 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 173 +y 153 +w 10 +h 10 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +closePolygon +numPoints 4 { +xPoints { +0 173 +1 183 +2 177 +3 173 +} +yPoints { +0 153 +1 153 +2 163 +3 153 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 177 +y 132 +w 3 +h 26 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 3 +numPoints 2 { +xPoints { +0 178 +1 178 +} +yPoints { +0 133 +1 156 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 187 +y 153 +w 60 +h 20 +controlPv "$(VERT).VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 187 +y 127 +w 61 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "VERT MOTOR" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 337 +y 55 +w 60 +h 20 +controlPv "$(PITCH).VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 152 +y 88 +w 60 +h 20 +controlPv "$(P)$(TBL):pitchArmLen" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 152 +y 77 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PITCH ARM" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 210 +y 80 +w 39 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineStyle "dash" +numPoints 2 { +xPoints { +0 248 +1 210 +} +yPoints { +0 80 +1 80 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 243 +y 74 +w 11 +h 11 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 3 { +xPoints { +0 244 +1 253 +2 244 +} +yPoints { +0 75 +1 80 +2 84 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 113 +y 80 +w 39 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineStyle "dash" +numPoints 2 { +xPoints { +0 151 +1 113 +} +yPoints { +0 80 +1 80 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 74 +w 11 +h 11 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 3 { +xPoints { +0 120 +1 111 +2 120 +} +yPoints { +0 75 +1 80 +2 84 +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 75 +y 16 +w 60 +h 20 +controlPv "$(P)$(TBL):fixedPointZ" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 75 +y 5 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "FIXED POINT" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 107 +y 42 +w 0 +h 19 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 107 +1 107 +} +yPoints { +0 61 +1 42 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 82 +y 34 +w 19 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "-" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 106 +y 34 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "+" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 64 +y 45 +w 87 +h 11 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 67 +y 51 +w 39 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineStyle "dash" +numPoints 2 { +xPoints { +0 105 +1 67 +} +yPoints { +0 51 +1 51 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 64 +y 45 +w 11 +h 11 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 3 { +xPoints { +0 74 +1 65 +2 74 +} +yPoints { +0 46 +1 51 +2 55 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 51 +w 39 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineStyle "dash" +numPoints 2 { +xPoints { +0 110 +1 148 +} +yPoints { +0 51 +1 51 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 45 +w 11 +h 11 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 3 { +xPoints { +0 141 +1 150 +2 141 +} +yPoints { +0 46 +1 51 +2 55 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 294 +y 66 +w 35 +h 1 +lineColor rgb 6656 29440 2304 +fillColor rgb 6656 29440 2304 +numPoints 2 { +xPoints { +0 294 +1 328 +} +yPoints { +0 66 +1 66 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 309 +y 42 +w 0 +h 44 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +lineStyle "dash" +numPoints 2 { +xPoints { +0 309 +1 309 +} +yPoints { +0 42 +1 86 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 304 +y 79 +w 11 +h 11 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 3 { +xPoints { +0 314 +1 309 +2 305 +} +yPoints { +0 80 +1 89 +2 80 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 304 +y 36 +w 11 +h 11 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 3 { +xPoints { +0 314 +1 309 +2 305 +} +yPoints { +0 46 +1 37 +2 46 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 309 +y 46 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "+" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 311 +y 65 +w 19 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "-" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 451 +y 133 +w 39 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "(mR)" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 332 +y 98 +w 162 +h 64 +lineColor rgb 60416 60416 60416 +fillColor rgb 60416 60416 60416 +lineWidth 3 +numPoints 3 { +xPoints { +0 333 +1 333 +2 492 +} +yPoints { +0 160 +1 99 +2 99 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 332 +y 98 +w 161 +h 61 +lineColor rgb 30720 30720 30720 +fillColor rgb 30720 30720 30720 +lineWidth 3 +numPoints 3 { +xPoints { +0 491 +1 491 +2 333 +} +yPoints { +0 99 +1 157 +2 157 +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 337 +y 39 +w 60 +h 16 +controlPv "$(PITCH).RBV" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 336 +y 30 +w 63 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PITCH MOTOR" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 187 +y 137 +w 60 +h 16 +controlPv "$(VERT).RBV" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 480 +y 165 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "More" +numPvs 4 +numDsps 2 +displayFileName { + 0 yyTransform_full.edl + 1 yyTransform.edl +} +menuLabel { + 0 tran + 1 autosync +} +symbols { + 0 "P=xxx:,T=$(TBL):tran" + 1 "P=xxx:,T=$(TBL):autosync" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 256 +y 73 +w 10 +h 40 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 173 +y 123 +w 10 +h 40 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 64 +y 45 +w 87 +h 11 + +beginGroup + +endGroup + +endObjectProperties + + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 440 +y 165 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Less" +numPvs 2 +numDsps 1 +displayFileName { + 0 ASRPmirrorTable_small.edl +} +menuLabel { + 0 small +} +symbols { + 0 "P=xxx:,TBL=$(TBL),VERT=$(VERT),PITCH=$(PITCH)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/ASRPmirrorTable_small.edl b/opticsApp/op/edl/autoconvert/ASRPmirrorTable_small.edl new file mode 100644 index 0000000..5baf488 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/ASRPmirrorTable_small.edl @@ -0,0 +1,190 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 640 +y 511 +w 180 +h 95 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 179 +h 19 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 180 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "ASRP Mirror Table" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 20 +w 181 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 179 +} +yPoints { +0 21 +1 21 +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 27 +y 52 +w 100 +h 20 +controlPv "$(P)$(TBL):tran.F" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 27 +y 28 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PITCH" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 121 +y 54 +w 39 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "(mR)" +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 75 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "More" +numPvs 2 +numDsps 1 +displayFileName { + 0 ASRPmirrorTable.edl +} +menuLabel { + 0 small +} +symbols { + 0 "P=xxx:,TBL=$(TBL),VERT=$(VERT),PITCH=$(PITCH)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/CoarseFineMotor.edl b/opticsApp/op/edl/autoconvert/CoarseFineMotor.edl new file mode 100644 index 0000000..01a478e --- /dev/null +++ b/opticsApp/op/edl/autoconvert/CoarseFineMotor.edl @@ -0,0 +1,208 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 371 +y 130 +w 130 +h 100 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 25 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Mode" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 129 +h 22 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 130 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Coarse/Fine" +} +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 45 +w 95 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)mode" +indicatorPv "$(P)mode" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 102 +y 35 +w 25 +h 30 +fgColor rgb 65280 65280 65280 +bgColor rgb 10240 37632 5376 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-18.0" +buttonLabel "?" +numPvs 2 +numDsps 1 +displayFileName { + 0 CoarseFineMotorHelp.edl +} +menuLabel { + 0 mode descriptions +} +symbols { + 0 "P=$(P)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 75 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "More" +numPvs 2 +numDsps 1 +displayFileName { + 0 CoarseFineMotorShow.edl +} +menuLabel { + 0 Graphic of stage +} +symbols { + 0 "P=$(P),M=MOT,PM=$(PM),CM=$(CM),FM=$(FM)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 75 +w 55 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 10240 37632 5376 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Motors" +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motor2x.edl +} +menuLabel { + 0 Combined (soft) motor + 1 Actual motors +} +symbols { + 0 "P=$(P),M=MOT" + 1 "P=$(PM),M1=$(CM),M2=$(FM)" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/CoarseFineMotorHelp.edl b/opticsApp/op/edl/autoconvert/CoarseFineMotorHelp.edl new file mode 100644 index 0000000..edfca36 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/CoarseFineMotorHelp.edl @@ -0,0 +1,557 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 327 +y 507 +w 400 +h 225 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 399 +h 22 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 400 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Coarse/Fine Mode choices" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 25 +w 80 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Mode" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 45 +w 80 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "AUTO" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 100 +y 45 +w 300 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "FINE SCAN+ or FINE SCAN-, depending on" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 100 +y 60 +w 300 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "the preferred direction (BDST field) of" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 43 +w 390 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 5 +1 395 +} +yPoints { +0 43 +1 43 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 23 +w 390 +h 158 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 89 +y 43 +w 0 +h 138 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 89 +1 89 +} +yPoints { +0 43 +1 181 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 1 +y 95 +w 88 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "FINE SCAN+" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 100 +y 95 +w 300 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Move fine motor only, if possible." +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 100 +y 110 +w 300 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "If coarse motor must move, position it so" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 100 +y 125 +w 300 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "that fine motor is at it's low limit." +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 145 +w 395 +h 14 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 2 +y 145 +w 86 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "FINE SCAN-" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 100 +y 145 +w 300 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "...high limit" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 165 +w 395 +h 14 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x -5 +y 165 +w 100 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "FINE WANDER" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 100 +y 165 +w 300 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "...midpoint" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 185 +w 390 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "For coarse-only, or fine-only motions, use the coarse" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 92 +w 390 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 5 +1 395 +} +yPoints { +0 92 +1 92 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 142 +w 390 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 5 +1 395 +} +yPoints { +0 142 +1 142 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 162 +w 390 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 5 +1 395 +} +yPoints { +0 162 +1 162 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 100 +y 75 +w 300 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "the fine motor" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 200 +w 390 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "or fine motor directly. This software will cooperate." +} +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 145 +w 395 +h 14 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 165 +w 395 +h 14 + +beginGroup + +endGroup + +endObjectProperties + + diff --git a/opticsApp/op/edl/autoconvert/CoarseFineMotorShow.edl b/opticsApp/op/edl/autoconvert/CoarseFineMotorShow.edl new file mode 100644 index 0000000..9e3480d --- /dev/null +++ b/opticsApp/op/edl/autoconvert/CoarseFineMotorShow.edl @@ -0,0 +1,344 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 375 +y 268 +w 470 +h 100 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 25 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Mode" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 129 +h 22 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 130 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Coarse/Fine" +} +endObjectProperties +# (Bar) +object activeBarClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 178 +y 52 +w 250 +h 25 +indicatorColor rgb 0 0 0 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +indicatorPv "$(PM)$(CM).RBV" +font "helvetica-bold-r-10.0" +labelTicks 1 +majorTicks 10 +minorTicks 0 +border +scaleFormat "FFloat" +orientation "horizontal" +endObjectProperties +# (Bar) +object activeBarClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 228 +y 24 +w 150 +h 25 +indicatorColor rgb 0 0 0 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +indicatorPv "$(PM)$(FM).RBV" +font "helvetica-bold-r-10.0" +labelTicks 1 +majorTicks 10 +minorTicks 0 +border +scaleFormat "FFloat" +orientation "horizontal" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 207 +y 27 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "F" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 156 +y 57 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "C" +} +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 45 +w 95 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)mode" +indicatorPv "$(P)mode" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 102 +y 35 +w 25 +h 30 +fgColor rgb 65280 65280 65280 +bgColor rgb 10240 37632 5376 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-18.0" +buttonLabel "?" +numPvs 2 +numDsps 1 +displayFileName { + 0 CoarseFineMotorHelp.edl +} +menuLabel { + 0 help +} +symbols { + 0 "P=$(P)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 430 +y 85 +w 40 +h 15 +fgColor rgb 26880 26880 26880 +bgColor rgb 55808 55808 55808 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "DEBUG" +numPvs 12 +numDsps 6 +displayFileName { + 0 yyTransform_full.edl + 1 yyTransform_full.edl + 2 yyCalcoutRecord.edl + 3 yyCalcoutRecord.edl + 4 yyCalcoutRecord.edl + 5 yyCalcoutRecord.edl +} +menuLabel { + 0 limitProc + 1 moveCF + 2 closeGate calc + 3 fineModeCalc + 4 done calc + 5 RBV calc +} +symbols { + 0 "P=$(P),T=limitProc" + 1 "P=$(P),T=moveCF" + 2 "P=$(P),C=closeGate" + 3 "P=$(P),C=fineModeCalc" + 4 "P=$(P),C=doneCalc" + 5 "P=$(P),C=RBV" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 + 5 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 75 +w 55 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 10240 37632 5376 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Motors" +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motor2x.edl +} +menuLabel { + 0 Combined (soft) motor + 1 Actual motors +} +symbols { + 0 "P=$(P),M=MOT" + 1 "P=$(PM),M1=$(CM),M2=$(FM)" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 75 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Less" +numPvs 2 +numDsps 1 +displayFileName { + 0 CoarseFineMotor.edl +} +menuLabel { + 0 Small display +} +symbols { + 0 "P=$(P),M=MOT,PM=$(PM),CM=$(CM),FM=$(FM)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/Io.edl b/opticsApp/op/edl/autoconvert/Io.edl new file mode 100644 index 0000000..fb2913e --- /dev/null +++ b/opticsApp/op/edl/autoconvert/Io.edl @@ -0,0 +1,1943 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 366 +y 194 +w 545 +h 460 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 255 +y 2 +w 60 +h 25 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 33280 1024 0 +bgColor index 3 +useDisplayBg +value { + "Io" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 461 +y 2 +w 80 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Io.adl" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 10 +y 296 +w 131 +h 15 +controlPv "$(P)HePath.DESC" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 142 +y 291 +w 60 +h 25 +controlPv "$(P)HePath" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 206 +y 296 +w 50 +h 15 +controlPv "$(P)HePath.EGU" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 10 +y 326 +w 131 +h 15 +controlPv "$(P)airPath.DESC" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 142 +y 321 +w 60 +h 25 +controlPv "$(P)airPath" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 206 +y 326 +w 50 +h 15 +controlPv "$(P)airPath.EGU" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 272 +y 296 +w 131 +h 15 +controlPv "$(P)Be.DESC" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 403 +y 291 +w 60 +h 25 +controlPv "$(P)Be" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 467 +y 296 +w 50 +h 15 +controlPv "$(P)Be.EGU" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 265 +y 163 +w 131 +h 15 +controlPv "$(P)v2f.DESC" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 397 +y 158 +w 60 +h 25 +controlPv "$(P)v2f" +format "exponential" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 461 +y 163 +w 50 +h 15 +controlPv "$(P)v2f.EGU" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 1 +y 32 +w 113 +h 18 +controlPv "$(P)flux.DESC" +format "string" +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 115 +y 30 +w 100 +h 23 +controlPv "$(P)flux" +format "exponential" +font "helvetica-medium-r-18.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 220 +y 34 +w 80 +h 15 +controlPv "$(P)flux.EGU" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 1 +y 60 +w 113 +h 18 +controlPv "$(P)detector.DESC" +format "string" +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 115 +y 58 +w 100 +h 23 +controlPv "$(P)detector" +format "exponential" +font "helvetica-medium-r-18.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 220 +y 62 +w 80 +h 15 +controlPv "$(P)detector.EGU" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 115 +y 110 +w 100 +h 18 +controlPv "$(P)ionAbs" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 1 +y 111 +w 113 +h 16 +controlPv "$(P)ionAbs.DESC" +format "string" +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 220 +y 112 +w 80 +h 15 +controlPv "$(P)ionAbs.EGU" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 1 +y 87 +w 113 +h 16 +controlPv "$(P)ionPhotons.DESC" +format "string" +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 115 +y 86 +w 100 +h 18 +controlPv "$(P)ionPhotons" +format "exponential" +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 220 +y 88 +w 80 +h 15 +controlPv "$(P)ionPhotons.EGU" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 397 +y 62 +w 80 +h 18 +controlPv "$(S).S1" +format "exponential" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 397 +y 37 +w 80 +h 18 +controlPv "$(S).FREQ" +format "exponential" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 482 +y 39 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Hz" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 482 +y 64 +w 75 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "scaler cnts" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 482 +y 89 +w 75 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "scaler cnts" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 292 +y 39 +w 95 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "counter clock" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 292 +y 64 +w 95 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "clock ticks" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 292 +y 89 +w 95 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Io counts" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 397 +y 87 +w 80 +h 18 +controlPv "$(S).S5" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 377 +y 349 +w 140 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "2'' proportional cntr" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 404 +y 322 +w 60 +h 25 +controlPv "$(P)efficiency" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 272 +y 327 +w 131 +h 15 +controlPv "$(P)efficiency.DESC" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 367 +w 525 +h 4 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 4 +numPoints 2 { +xPoints { +0 12 +1 533 +} +yPoints { +0 369 +1 369 +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 272 +y 409 +w 131 +h 15 +controlPv "$(P)kapton2.DESC" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 404 +y 404 +w 60 +h 25 +controlPv "$(P)kapton2" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 468 +y 409 +w 50 +h 15 +controlPv "$(P)kapton2.EGU" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 272 +y 380 +w 131 +h 15 +controlPv "$(P)kapton1.DESC" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 404 +y 375 +w 60 +h 25 +controlPv "$(P)kapton1" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 468 +y 380 +w 50 +h 15 +controlPv "$(P)kapton1.EGU" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 10 +y 380 +w 131 +h 15 +controlPv "$(P)activeLen.DESC" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 142 +y 375 +w 60 +h 25 +controlPv "$(P)activeLen" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 206 +y 380 +w 50 +h 15 +controlPv "$(P)activeLen.EGU" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 10 +y 409 +w 131 +h 15 +controlPv "$(P)deadFront.DESC" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 142 +y 404 +w 60 +h 25 +controlPv "$(P)deadFront" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 206 +y 409 +w 50 +h 15 +controlPv "$(P)deadFront.EGU" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 10 +y 438 +w 131 +h 15 +controlPv "$(P)deadRear.DESC" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 142 +y 433 +w 60 +h 25 +controlPv "$(P)deadRear" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 206 +y 438 +w 50 +h 15 +controlPv "$(P)deadRear.EGU" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 176 +y 218 +w 250 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 9984 21504 36096 +bgColor index 3 +useDisplayBg +value { + "ion chamber fill gas (atm)" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 106 +y 212 +w 395 +h 70 +lineColor rgb 9984 21504 36096 +fillColor rgb 9984 21504 36096 +lineWidth 5 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 342 +y 252 +w 60 +h 25 +controlPv "$(P)xAr" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 342 +y 237 +w 60 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Argon" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 412 +y 252 +w 60 +h 25 +controlPv "$(P)xAr" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 412 +y 237 +w 60 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "CO2" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 272 +y 252 +w 60 +h 25 +controlPv "$(P)xHe" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 272 +y 237 +w 60 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "He" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 132 +y 237 +w 60 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Air" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 132 +y 252 +w 60 +h 25 +controlPv "$(P)xAir" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 202 +y 237 +w 61 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Nitrogen" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 202 +y 252 +w 60 +h 25 +controlPv "$(P)xN2" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 306 +y 444 +w 236 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "CHESS chamber (17.5, 60, 17.5 mm)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 171 +y 135 +w 110 +h 15 +controlPv "$(P)scaler.DESC" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 3 +y 135 +w 120 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "scaler channel" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 28 +y 188 +w 95 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "using" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 129 +y 186 +w 80 +h 18 +controlPv "$(P)E_using" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 214 +y 188 +w 50 +h 14 +controlPv "$(P)E_using.EGU" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 20 +y 164 +w 99 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "monochromator" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 129 +y 160 +w 80 +h 18 +controlPv "$(MONO)" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 214 +y 164 +w 50 +h 14 +controlPv "$(MONO).EGU" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 396 +y 133 +w 80 +h 18 +controlPv "$(P)VperA" +format "exponential" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 293 +y 112 +w 95 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Current Amp" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 396 +y 110 +w 80 +h 18 +controlPv "$(P)VperA" +format "exponential" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 483 +y 112 +w 50 +h 14 +controlPv "$(P)VperA.EGU" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 2 +w 60 +h 23 +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-14.0" +icon +buttonLabel "small" +numPvs 2 +numDsps 1 +displayFileName { + 0 Io_small.edl +} +menuLabel { + 0 small +} +symbols { + 0 "P=$(P)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 468 +y 321 +w 75 +h 23 +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)ArPcntr" +indicatorPv "$(P)ArPcntr" +font "helvetica-medium-r-14.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 128 +y 132 +w 35 +h 18 +fgColor rgb 0 0 0 +bgColor rgb 47872 47872 47872 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)scaler" +indicatorPv "$(P)scaler" +font "helvetica-medium-r-10.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/Io_small.edl b/opticsApp/op/edl/autoconvert/Io_small.edl new file mode 100644 index 0000000..aa00d25 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/Io_small.edl @@ -0,0 +1,313 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 698 +y 154 +w 300 +h 118 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 136 +y 2 +w 40 +h 25 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 33280 1024 0 +bgColor index 3 +useDisplayBg +value { + "Io" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 215 +y 2 +w 80 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Io_small.adl" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 1 +y 35 +w 113 +h 18 +controlPv "$(P)flux.DESC" +format "string" +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 115 +y 33 +w 100 +h 23 +controlPv "$(P)flux" +format "exponential" +font "helvetica-medium-r-18.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 220 +y 37 +w 80 +h 15 +controlPv "$(P)flux.EGU" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 1 +y 63 +w 113 +h 18 +controlPv "$(P)detector.DESC" +format "string" +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 115 +y 61 +w 100 +h 23 +controlPv "$(P)detector" +format "exponential" +font "helvetica-medium-r-18.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 220 +y 65 +w 80 +h 15 +controlPv "$(P)detector.EGU" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 18 +y 94 +w 113 +h 18 +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "scaler channel" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 186 +y 94 +w 110 +h 18 +controlPv "$(P)scaler.DESC" +format "string" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 2 +w 60 +h 23 +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-14.0" +icon +buttonLabel "all" +numPvs 2 +numDsps 1 +displayFileName { + 0 Io.edl +} +menuLabel { + 0 all +} +symbols { + 0 "P=$(P),MONO=$(MONO),S=$(S)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 90 +w 35 +h 21 +fgColor rgb 0 0 0 +bgColor rgb 47872 47872 47872 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)scaler" +indicatorPv "$(P)scaler" +font "helvetica-medium-r-12.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/MLLH.edl b/opticsApp/op/edl/autoconvert/MLLH.edl new file mode 100644 index 0000000..5008dfc --- /dev/null +++ b/opticsApp/op/edl/autoconvert/MLLH.edl @@ -0,0 +1,217 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 503 +y 49 +w 390 +h 250 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 390 +h 206 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 0 +y 0 +w 390 +h 206 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "MLLH_bare.edl;P=$(P),Q=$(Q)" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "MLLH_bare.edl;P=$(P),Q=$(Q)" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 290 +y 215 +w 45 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "debug" +numPvs 16 +numDsps 8 +displayFileName { + 0 motorx.edl + 1 motorx.edl + 2 motorx.edl + 3 yyTransform.edl + 4 yyTransform.edl + 5 yyTransform.edl + 6 yyCalcoutRecord.edl + 7 yySeq.edl +} +menuLabel { + 0 th + 1 z + 2 x + 3 t1 + 4 t2 + 5 t3 + 6 calcDone + 7 softPut +} +symbols { + 0 "P=$(P),M=$(Q)th" + 1 "P=$(P),M=$(Q)z" + 2 "P=$(P),M=$(Q)x" + 3 "P=$(P),T=$(Q)t1" + 4 "P=$(P),T=$(Q)t2" + 5 "P=$(P),T=$(Q)t3" + 6 "P=$(P),C=$(Q)calcDone" + 7 "P=$(P),S=$(Q)softPut" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 + 5 1 + 6 1 + 7 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 340 +y 215 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "More" +numPvs 2 +numDsps 1 +displayFileName { + 0 MLLH_more.edl +} +menuLabel { + 0 more +} +symbols { + 0 "P=$(P),Q=$(Q)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 20 +y 215 +w 110 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)sync" +pressValue "1" +releaseValue +onLabel "Sync to Motors" +offLabel "Sync to Motors" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 160 +y 215 +w 100 +h 30 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)stop" +pressValue "1" +releaseValue +onLabel "Stop MLLH" +offLabel "Stop MLLH" +3d +useEnumNumeric +font "helvetica-medium-r-18.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/MLLH_bare.edl b/opticsApp/op/edl/autoconvert/MLLH_bare.edl new file mode 100644 index 0000000..9ef6b0a --- /dev/null +++ b/opticsApp/op/edl/autoconvert/MLLH_bare.edl @@ -0,0 +1,215 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 945 +y 281 +w 390 +h 210 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 389 +h 24 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 30 +w 116 +h 176 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 10 +y 30 +w 116 +h 176 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "motorx_bare.edl;P=$(P),M=$(Q)th" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "motorx_bare.edl;P=$(P),M=$(Q)th" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 135 +y 30 +w 116 +h 176 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 135 +y 30 +w 116 +h 176 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "motorx_bare.edl;P=$(P),M=$(Q)z" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "motorx_bare.edl;P=$(P),M=$(Q)z" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 260 +y 30 +w 116 +h 176 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 260 +y 30 +w 116 +h 176 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "motorx_bare.edl;P=$(P),M=$(Q)x" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "motorx_bare.edl;P=$(P),M=$(Q)x" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 0 +w 370 +h 22 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "MLL H stage" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 22 +w 389 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 387 +} +yPoints { +0 23 +1 23 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/MLLH_more.edl b/opticsApp/op/edl/autoconvert/MLLH_more.edl new file mode 100644 index 0000000..d400091 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/MLLH_more.edl @@ -0,0 +1,748 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 993 +y 401 +w 390 +h 420 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 104 +y 347 +w 237 +h 33 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 115 +y 357 +w 12 +h 12 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 318 +y 357 +w 12 +h 12 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Arc) +object activeArcClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 120 +y 290 +w 23 +h 21 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +startAngle 120 +totalAngle 125 +fillMode "pie" +endObjectProperties + +# (Arc) +object activeArcClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 91 +y 291 +w 23 +h 21 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +startAngle 295 +totalAngle 125 +fillMode "pie" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 107 +y 311 +w 0 +h 36 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 107 +1 107 +} +yPoints { +0 311 +1 347 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 128 +y 311 +w 0 +h 36 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 128 +1 128 +} +yPoints { +0 311 +1 347 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 107 +y 271 +w 0 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 107 +1 107 +} +yPoints { +0 271 +1 291 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 128 +y 271 +w 0 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 128 +1 128 +} +yPoints { +0 271 +1 291 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 108 +y 270 +w 20 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 108 +1 128 +} +yPoints { +0 270 +1 270 +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 191 +y 306 +w 60 +h 20 +controlPv "$(P)$(Q)xLen" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 28 +y 324 +w 60 +h 20 +controlPv "$(P)$(Q)zBendLen" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 92 +y 303 +w 0 +h 60 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 92 +1 92 +} +yPoints { +0 303 +1 363 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 215 +y 384 +w 0 +h 16 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 215 +1 215 +} +yPoints { +0 384 +1 400 +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 233 +y 391 +w 60 +h 20 +controlPv "$(P)$(Q)zNoseLen" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 119 +y 331 +w 202 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 119 +1 321 +} +yPoints { +0 331 +1 331 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 210 +y 381 +w 10 +h 10 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +closePolygon +numPoints 4 { +xPoints { +0 210 +1 214 +2 220 +3 210 +} +yPoints { +0 391 +1 381 +2 391 +3 391 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 312 +y 326 +w 10 +h 10 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +closePolygon +numPoints 4 { +xPoints { +0 312 +1 322 +2 312 +3 312 +} +yPoints { +0 326 +1 330 +2 336 +3 326 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 120 +y 326 +w 10 +h 10 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +closePolygon +numPoints 4 { +xPoints { +0 130 +1 120 +2 130 +3 130 +} +yPoints { +0 326 +1 330 +2 336 +3 326 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 210 +y 393 +w 10 +h 10 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +closePolygon +numPoints 4 { +xPoints { +0 220 +1 216 +2 210 +3 220 +} +yPoints { +0 393 +1 403 +2 393 +3 393 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 86 +y 354 +w 10 +h 10 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +closePolygon +numPoints 4 { +xPoints { +0 96 +1 92 +2 86 +3 96 +} +yPoints { +0 354 +1 364 +2 354 +3 354 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 87 +y 301 +w 10 +h 10 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +closePolygon +numPoints 4 { +xPoints { +0 87 +1 91 +2 97 +3 87 +} +yPoints { +0 311 +1 301 +2 311 +3 311 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 390 +h 206 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 0 +y 0 +w 390 +h 206 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "MLLH_bare.edl;P=$(P),Q=$(Q)" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "MLLH_bare.edl;P=$(P),Q=$(Q)" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 290 +y 230 +w 45 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "debug" +numPvs 16 +numDsps 8 +displayFileName { + 0 motorx.edl + 1 motorx.edl + 2 motorx.edl + 3 yyTransform.edl + 4 yyTransform.edl + 5 yyTransform.edl + 6 yyCalcoutRecord.edl + 7 yySeq.edl +} +menuLabel { + 0 th + 1 z + 2 x + 3 t1 + 4 t2 + 5 t3 + 6 calcDone + 7 softPut +} +symbols { + 0 "P=$(P),M=$(Q)th" + 1 "P=$(P),M=$(Q)z" + 2 "P=$(P),M=$(Q)x" + 3 "P=$(P),T=$(Q)t1" + 4 "P=$(P),T=$(Q)t2" + 5 "P=$(P),T=$(Q)t3" + 6 "P=$(P),C=$(Q)calcDone" + 7 "P=$(P),S=$(Q)softPut" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 + 5 1 + 6 1 + 7 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 340 +y 230 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Less" +numPvs 2 +numDsps 1 +displayFileName { + 0 MLLH.edl +} +menuLabel { + 0 more +} +symbols { + 0 "P=$(P),Q=$(Q)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 230 +w 40 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)sync" +pressValue "1" +releaseValue +onLabel "Sync" +offLabel "Sync" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 160 +y 215 +w 100 +h 30 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)stop" +pressValue "1" +releaseValue +onLabel "Stop MLLH" +offLabel "Stop MLLH" +3d +useEnumNumeric +font "helvetica-medium-r-18.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/MLLV.edl b/opticsApp/op/edl/autoconvert/MLLV.edl new file mode 100644 index 0000000..49d555e --- /dev/null +++ b/opticsApp/op/edl/autoconvert/MLLV.edl @@ -0,0 +1,237 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 261 +y 346 +w 640 +h 250 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 640 +h 206 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 0 +y 0 +w 640 +h 206 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "MLLV_bare.edl;P=$(P),Q=$(Q)" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "MLLV_bare.edl;P=$(P),Q=$(Q)" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 480 +y 215 +w 70 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "debug" +numPvs 26 +numDsps 13 +displayFileName { + 0 motorx.edl + 1 motorx.edl + 2 motorx.edl + 3 motorx.edl + 4 motorx.edl + 5 yyTransform.edl + 6 yyTransform.edl + 7 yyTransform.edl + 8 yyTransform.edl + 9 yyCalcoutRecord.edl + 10 yyCalcoutRecord.edl + 11 MLLV_misc.edl + 12 yySeq.edl +} +menuLabel { + 0 th + 1 z + 2 y + 3 chi + 4 x + 5 tFwd + 6 tRev + 7 tLimits + 8 tLimits1 + 9 calcDone + 10 closeGate + 11 misc + 12 softPut +} +symbols { + 0 "P=$(P),M=$(Q)th" + 1 "P=$(P),M=$(Q)z" + 2 "P=$(P),M=$(Q)y" + 3 "P=$(P),M=$(Q)chi" + 4 "P=$(P),M=$(Q)x" + 5 "P=$(P),T=$(Q)tFwd" + 6 "P=$(P),T=$(Q)tRev" + 7 "P=$(P),T=$(Q)tLimits" + 8 "P=$(P),T=$(Q)tLimits1" + 9 "P=$(P),C=$(Q)calcDone" + 10 "P=$(P),C=$(Q)closeGate" + 11 "P=$(P),Q=$(Q)" + 12 "P=$(P),S=$(Q)softPut" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 + 5 1 + 6 1 + 7 1 + 8 1 + 9 1 + 10 1 + 11 1 + 12 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 555 +y 215 +w 70 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "More" +numPvs 2 +numDsps 1 +displayFileName { + 0 MLLV_more.edl +} +menuLabel { + 0 more +} +symbols { + 0 "P=$(P),Q=$(Q)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 20 +y 215 +w 110 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)sync" +pressValue "1" +releaseValue +onLabel "Sync to motors" +offLabel "Sync to motors" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 270 +y 215 +w 100 +h 30 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)stop" +pressValue "1" +releaseValue +onLabel "Stop MLLV" +offLabel "Stop MLLV" +3d +useEnumNumeric +font "helvetica-medium-r-18.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/MLLV_bare.edl b/opticsApp/op/edl/autoconvert/MLLV_bare.edl new file mode 100644 index 0000000..c13dec3 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/MLLV_bare.edl @@ -0,0 +1,301 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 600 +y 268 +w 640 +h 210 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 639 +h 24 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 30 +w 116 +h 176 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 10 +y 30 +w 116 +h 176 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "motorx_bare.edl;P=$(P),M=$(Q)th" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "motorx_bare.edl;P=$(P),M=$(Q)th" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 0 +w 620 +h 22 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "MLL V stage" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 22 +w 638 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 636 +} +yPoints { +0 23 +1 23 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 135 +y 30 +w 116 +h 176 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 135 +y 30 +w 116 +h 176 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "motorx_bare.edl;P=$(P),M=$(Q)z" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "motorx_bare.edl;P=$(P),M=$(Q)z" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 260 +y 30 +w 116 +h 176 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 260 +y 30 +w 116 +h 176 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "motorx_bare.edl;P=$(P),M=$(Q)y" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "motorx_bare.edl;P=$(P),M=$(Q)y" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 385 +y 30 +w 116 +h 176 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 385 +y 30 +w 116 +h 176 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "motorx_bare.edl;P=$(P),M=$(Q)chi" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "motorx_bare.edl;P=$(P),M=$(Q)chi" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 510 +y 30 +w 116 +h 176 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 510 +y 30 +w 116 +h 176 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "motorx_bare.edl;P=$(P),M=$(Q)x" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "motorx_bare.edl;P=$(P),M=$(Q)x" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/MLLV_more.edl b/opticsApp/op/edl/autoconvert/MLLV_more.edl new file mode 100644 index 0000000..74feee1 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/MLLV_more.edl @@ -0,0 +1,237 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 905 +y 346 +w 640 +h 250 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 640 +h 206 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 0 +y 0 +w 640 +h 206 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "MLLV_bare.edl;P=$(P),Q=$(Q)" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "MLLV_bare.edl;P=$(P),Q=$(Q)" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 555 +y 215 +w 70 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Less" +numPvs 2 +numDsps 1 +displayFileName { + 0 MLLV.edl +} +menuLabel { + 0 more +} +symbols { + 0 "P=$(P),Q=$(Q)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 20 +y 215 +w 110 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)sync" +pressValue "1" +releaseValue +onLabel "Sync to motors" +offLabel "Sync to motors" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 270 +y 215 +w 100 +h 30 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)stop" +pressValue "1" +releaseValue +onLabel "Stop MLLV" +offLabel "Stop MLLV" +3d +useEnumNumeric +font "helvetica-medium-r-18.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 480 +y 215 +w 70 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "debug" +numPvs 26 +numDsps 13 +displayFileName { + 0 motorx.edl + 1 motorx.edl + 2 motorx.edl + 3 motorx.edl + 4 motorx.edl + 5 yyTransform.edl + 6 yyTransform.edl + 7 yyTransform.edl + 8 yyTransform.edl + 9 yyCalcoutRecord.edl + 10 yyCalcoutRecord.edl + 11 MLLV_misc.edl + 12 yySeq.edl +} +menuLabel { + 0 th + 1 z + 2 y + 3 chi + 4 x + 5 tFwd + 6 tRev + 7 tLimits + 8 tLimits1 + 9 calcDone + 10 closeGate + 11 misc + 12 softPut +} +symbols { + 0 "P=$(P),M=$(Q)th" + 1 "P=$(P),M=$(Q)z" + 2 "P=$(P),M=$(Q)y" + 3 "P=$(P),M=$(Q)chi" + 4 "P=$(P),M=$(Q)x" + 5 "P=$(P),T=$(Q)tFwd" + 6 "P=$(P),T=$(Q)tRev" + 7 "P=$(P),T=$(Q)tLimits" + 8 "P=$(P),T=$(Q)tLimits1" + 9 "P=$(P),C=$(Q)calcDone" + 10 "P=$(P),C=$(Q)closeGate" + 11 "P=$(P),Q=$(Q)" + 12 "P=$(P),S=$(Q)softPut" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 + 5 1 + 6 1 + 7 1 + 8 1 + 9 1 + 10 1 + 11 1 + 12 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/SGM.edl b/opticsApp/op/edl/autoconvert/SGM.edl new file mode 100644 index 0000000..6cf3297 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/SGM.edl @@ -0,0 +1,3296 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 812 +y 582 +w 592 +h 290 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 390 +y 25 +w 204 +h 19 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 392 +y 165 +w 199 +h 124 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Arc) +object activeArcClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 410 +y 36 +w 200 +h 200 +lineColor rgb 19968 42240 63744 +fillColor rgb 19968 42240 63744 +lineWidth 3 +startAngle 238 +totalAngle 47 +fillMode "pie" +endObjectProperties + +# (Arc) +object activeArcClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 410 +y 34 +w 200 +h 200 +lineColor rgb 19968 42240 63744 +fillColor rgb 19968 42240 63744 +lineWidth 3 +lineStyle "dash" +startAngle 238 +totalAngle 47 +fillMode "pie" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 325 +y 110 +w 60 +h 0 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +lineStyle "dash" +numPoints 2 { +xPoints { +0 385 +1 325 +} +yPoints { +0 110 +1 110 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 397 +y 174 +w 11 +h 19 +lineColor rgb 37120 37120 37120 +fillColor rgb 37120 37120 37120 +lineWidth 3 +numPoints 2 { +xPoints { +0 398 +1 406 +} +yPoints { +0 191 +1 175 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 575 +y 175 +w 12 +h 19 +lineColor rgb 34048 34048 34048 +fillColor rgb 34048 34048 34048 +lineWidth 3 +numPoints 2 { +xPoints { +0 576 +1 585 +} +yPoints { +0 176 +1 192 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 547 +y 205 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "r'" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 419 +y 205 +w 19 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "r" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 494 +y 182 +w 1 +h 90 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineStyle "dash" +numPoints 2 { +xPoints { +0 494 +1 494 +} +yPoints { +0 182 +1 271 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 473 +y 266 +w 21 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "x" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 484 +y 231 +w 10 +h 39 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +numPoints 3 { +xPoints { +0 493 +1 484 +2 493 +} +yPoints { +0 231 +1 269 +2 269 +} +endObjectProperties + +# (Arc) +object activeArcClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 483 +y 238 +w 20 +h 20 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +startAngle 223 +totalAngle 58 +fillMode "pie" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 426 +y 256 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "phi" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 594 +h 24 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 595 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Spherical Grating Monochromator" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 380 +y 77 +w 10 +h 15 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +closePolygon +numPoints 4 { +xPoints { +0 380 +1 380 +2 390 +3 380 +} +yPoints { +0 77 +1 92 +2 84 +3 77 +} +visPv "CALC\\\{(A)\}($(P)SGM$(N):auto)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 321 +y 83 +w 12 +h 2 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)SGM$(N):auto)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 390 +y 23 +w 2 +h 287 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 391 +1 391 +} +yPoints { +0 24 +1 309 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 325 +y 125 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Calib:" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 130 +w 99 +h 31 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 130 +w 100 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "SCAN CONTROL" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 57 +w 100 +h 20 +controlPv "$(P)SGM$(N):EnergyRBV" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 73 +w 100 +h 25 +controlPv "$(P)SGM$(N):Energy" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 109 +w 60 +h 20 +controlPv "$(P)SGM$(N):EnergyTweak.C" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 96 +w 100 +h 15 +controlPv "$(P)SGM$(N):Energy.DRVL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 44 +w 100 +h 15 +controlPv "$(P)SGM$(N):Energy.DRVH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 25 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Energy(eV)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 390 +y 25 +w 200 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "SGM Motors" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 320 +y 23 +w 2 +h 141 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 321 +1 321 +} +yPoints { +0 24 +1 163 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 163 +w 594 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 1 +1 593 +} +yPoints { +0 164 +1 164 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 110 +y 25 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Wavelen(A)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 57 +w 100 +h 20 +controlPv "$(P)SGM$(N):LambdaRBV" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 73 +w 100 +h 25 +controlPv "$(P)SGM$(N):Lambda" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 44 +w 100 +h 15 +controlPv "$(P)SGM$(N):Lambda.DRVH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 96 +w 100 +h 15 +controlPv "$(P)SGM$(N):Lambda.DRVL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 130 +w 99 +h 31 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 110 +y 130 +w 100 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "SCAN CONTROL" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 130 +y 109 +w 60 +h 20 +controlPv "$(P)SGM$(N):LambdaTweak.C" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 215 +y 130 +w 99 +h 31 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 215 +y 130 +w 100 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "SCAN CONTROL" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 215 +y 57 +w 100 +h 20 +controlPv "$(P)SGM$(N):phiRBV" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 215 +y 73 +w 100 +h 25 +controlPv "$(P)SGM$(N):phi" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 235 +y 109 +w 60 +h 20 +controlPv "$(P)SGM$(N):phiTweak.C" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 215 +y 96 +w 100 +h 15 +controlPv "$(P)SGM$(N):phi.DRVL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 215 +y 44 +w 100 +h 15 +controlPv "$(P)SGM$(N):phi.DRVH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 215 +y 25 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Phi(deg)" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 22 +w 597 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 595 +} +yPoints { +0 23 +1 23 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 392 +y 177 +w 112 +h 51 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +closePolygon +numPoints 4 { +xPoints { +0 392 +1 486 +2 504 +3 392 +} +yPoints { +0 177 +1 227 +2 228 +3 177 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 488 +y 178 +w 102 +h 52 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +closePolygon +numPoints 4 { +xPoints { +0 590 +1 506 +2 488 +3 590 +} +yPoints { +0 178 +1 230 +2 228 +3 178 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 457 +y 258 +w 24 +h 7 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 0 +lineStyle "dash" +numPoints 2 { +xPoints { +0 481 +1 457 +} +yPoints { +0 258 +1 265 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 324 +y 107 +w 5 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 3 { +xPoints { +0 329 +1 324 +2 329 +} +yPoints { +0 107 +1 110 +2 113 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 376 +y 83 +w 2 +h 2 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)SGM$(N):auto)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 519 +y 183 +w 47 +h 24 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +numPoints 3 { +xPoints { +0 519 +1 565 +2 557 +} +yPoints { +0 206 +1 183 +2 183 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 212 +w 100 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "THAT GRATING IS" +} +visPv "CALC\\\{(A)\}($(P)SGM$(N):exists)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 222 +w 100 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "NOT INSTALLED." +} +visPv "CALC\\\{(A)\}($(P)SGM$(N):exists)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 232 +w 100 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "(NOTHING DONE)" +} +visPv "CALC\\\{(A)\}($(P)SGM$(N):exists)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 400 +y 35 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Soft limit" +} +visPv "CALC\\\{(A)\}($(P)$(M_rIn).LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 530 +y 35 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Soft limit" +} +visPv "CALC\\\{(A)\}($(P)$(M_rOut).LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 465 +y 35 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Soft limit" +} +visPv "CALC\\\{(A)\}($(P)$(M_x).LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 400 +y 35 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Low limit" +} +visPv "CALC\\\{(A)\}($(P)$(M_rIn).LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 400 +y 35 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "High limit" +} +visPv "CALC\\\{(A)\}($(P)$(M_rIn).HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 465 +y 35 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "High limit" +} +visPv "CALC\\\{(A)\}($(P)$(M_x).HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 465 +y 35 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Low limit" +} +visPv "CALC\\\{(A)\}($(P)$(M_x).LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 530 +y 35 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Low limit" +} +visPv "CALC\\\{(A)\}($(P)$(M_rOut).LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 530 +y 35 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "High limit" +} +visPv "CALC\\\{(A)\}($(P)$(M_rOut).HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 531 +y 35 +w 56 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "AT LIMIT" +} +visPv "CALC\\\{(A)\}($(P)SGM$(N):T2.M)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 462 +y 120 +w 64 +h 37 +lineColor rgb 30720 30720 30720 +fill +fillColor rgb 30720 30720 30720 +lineWidth 0 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 467 +y 122 +w 56 +h 10 +controlPv "$(P)$(M_x).RRBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 30720 30720 30720 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 467 +y 130 +w 56 +h 16 +controlPv "$(P)$(M_x).RVAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 462 +y 148 +w 65 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "steps" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 467 +y 87 +w 56 +h 20 +controlPv "$(P)$(M_x).VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 467 +y 74 +w 56 +h 14 +controlPv "$(P)$(M_x).RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 466 +y 73 +w 58 +h 35 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M_x).DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 465 +y 62 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "$(P)$(M_x)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 531 +y 74 +w 56 +h 14 +controlPv "$(P)$(M_rOut).RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 528 +y 62 +w 64 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "$(P)$(M_rOut)" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 531 +y 87 +w 56 +h 20 +controlPv "$(P)$(M_rOut).VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 401 +y 73 +w 58 +h 35 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M_rIn).DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 402 +y 74 +w 56 +h 14 +controlPv "$(P)$(M_rIn).RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 400 +y 62 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "$(P)$(M_rIn)" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 402 +y 87 +w 56 +h 20 +controlPv "$(P)$(M_rIn).VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 527 +y 50 +w 0 +h 107 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 527 +1 527 +} +yPoints { +0 50 +1 157 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 462 +y 50 +w 0 +h 107 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 462 +1 462 +} +yPoints { +0 50 +1 157 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 531 +y 73 +w 58 +h 35 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M_rOut).DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 465 +y 110 +w 60 +h 10 +controlPv "$(P)SGM$(N):T2.H" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 34048 34048 34048 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 530 +y 110 +w 60 +h 10 +controlPv "$(P)SGM$(N):T2.G" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 34048 34048 34048 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 430 +y 52 +w 30 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "(m)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 495 +y 52 +w 30 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "(mm)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 560 +y 52 +w 30 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "(m)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 400 +y 45 +w 30 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "r" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 465 +y 45 +w 30 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "x" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 530 +y 45 +w 30 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "r'" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 20 +h 8 +font "helvetica-bold-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "V1.8" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 100 +y 169 +w 95 +h 18 +font "helvetica-medium-r-14.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Description:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 100 +y 249 +w 150 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "tangent-arm length:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 100 +y 269 +w 150 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "included angle:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 100 +y 229 +w 150 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "radius of curvature:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 100 +y 189 +w 150 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "diffraction order:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 100 +y 209 +w 150 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "grating line density:" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 255 +y 249 +w 60 +h 16 +controlPv "$(P)SGM$(N):len" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 255 +y 269 +w 60 +h 16 +controlPv "$(P)SGM$(N):2Theta" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 255 +y 229 +w 60 +h 14 +controlPv "$(P)SGM$(N):R" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 255 +y 209 +w 60 +h 14 +controlPv "$(P)SGM$(N):gDensity" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 320 +y 269 +w 65 +h 14 +controlPv "$(P)SGM$(N):2Theta.EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 320 +y 249 +w 65 +h 14 +controlPv "$(P)SGM$(N):len.EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 320 +y 209 +w 65 +h 14 +controlPv "$(P)SGM$(N):gDensity.EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 320 +y 229 +w 65 +h 14 +controlPv "$(P)SGM$(N):R.EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 325 +y 189 +w 60 +h 14 +controlPv "$(P)SGM$(N):m.EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 255 +y 189 +w 65 +h 14 +controlPv "$(P)SGM$(N):m" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 195 +y 169 +w 190 +h 18 +controlPv "$(P)SGM$(N):stripeDesc" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 325 +y 28 +w 60 +h 45 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):auto" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 335 +y 75 +w 40 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):move.PROC" +pressValue "1" +releaseValue +onLabel "Move" +offLabel "Move" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 325 +y 135 +w 60 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)SGM$(N):set" +indicatorPv "$(P)SGM$(N):set" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 69 +y 140 +w 35 +h 20 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "Stop" +offLabel "Stop" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 48 +y 140 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):Energy:scanParms.GO" +pressValue "1" +releaseValue +onLabel "Go" +offLabel "Go" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 27 +y 140 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):Energy:scanParms.LOAD" +pressValue "1" +releaseValue +onLabel "Ld" +offLabel "Ld" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 6 +y 140 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParms.edl +} +menuLabel { + 0 Energy-scan parameters +} +symbols { + 0 "P=$(P),Q=SGM$(N):Energy,PV=SGM$(N):Energy" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 109 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):EnergyTweak.A" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 109 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):EnergyTweak.B" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 393 +y 135 +w 60 +h 27 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "Stop" +offLabel "Stop" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 174 +y 140 +w 35 +h 20 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "Stop" +offLabel "Stop" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 153 +y 140 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):Lambda:scanParms.GO" +pressValue "1" +releaseValue +onLabel "Go" +offLabel "Go" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 132 +y 140 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):Lambda:scanParms.LOAD" +pressValue "1" +releaseValue +onLabel "Ld" +offLabel "Ld" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 111 +y 140 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParms.edl +} +menuLabel { + 0 Wavelength-scan parameters +} +symbols { + 0 "P=$(P),Q=SGM$(N):Lambda,PV=SGM$(N):Lambda" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 190 +y 109 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):LambdaTweak.A" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 109 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):LambdaTweak.B" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 279 +y 140 +w 35 +h 20 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "Stop" +offLabel "Stop" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 258 +y 140 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):phi:scanParms.GO" +pressValue "1" +releaseValue +onLabel "Go" +offLabel "Go" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 237 +y 140 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):phi:scanParms.LOAD" +pressValue "1" +releaseValue +onLabel "Ld" +offLabel "Ld" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 216 +y 140 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParms.edl +} +menuLabel { + 0 Grating angle scan parameters +} +symbols { + 0 "P=$(P),Q=SGM$(N):phi,PV=SGM$(N):phi" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 295 +y 109 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):phiTweak.A" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 215 +y 109 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):phiTweak.B" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 335 +y 100 +w 40 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):sync.PROC" +pressValue "1" +releaseValue +onLabel "Sync" +offLabel "Sync" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 3 +y 245 +w 45 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Debug" +numPvs 20 +numDsps 10 +displayFileName { + 0 yyTransform_full.edl + 1 yyTransform_full.edl + 2 yyTransform_full.edl + 3 yyTransform_full.edl + 4 yyTransform_full.edl + 5 yyTransform_full.edl + 6 yyTransform_full.edl + 7 yyTransform_full.edl + 8 yySeq_full.edl + 9 yySeq_full.edl +} +menuLabel { + 0 T1 calcs (debug) + 1 T2 calcs (debug) + 2 T3 calcs (debug) + 3 delta calcs (debug) + 4 Energy tweak calcs (debug) + 5 Lambda tweak calcs (debug) + 6 phi tweak calcs (debug) + 7 limit calcs (debug) + 8 init + 9 init1 +} +symbols { + 0 "P=$(P),T=SGM$(N):T1" + 1 "P=$(P),T=SGM$(N):T2" + 2 "P=$(P),T=SGM$(N):T3" + 3 "P=$(P),T=SGM$(N):delta" + 4 "P=$(P),T=SGM$(N):EnergyTweak" + 5 "P=$(P),T=SGM$(N):LambdaTweak" + 6 "P=$(P),T=SGM$(N):phiTweak" + 7 "P=$(P),T=SGM$(N):limits" + 8 "P=$(P),S=SGM$(N):init" + 9 "P=$(P),S=SGM$(N):init1" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 + 5 1 + 6 1 + 7 1 + 8 1 + 9 1 +} +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 190 +w 90 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)SGM$(N):grating" +indicatorPv "$(P)SGM$(N):grating" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 170 +w 70 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Gratings" +numPvs 2 +numDsps 1 +displayFileName { + 0 SGM_gratings.edl +} +menuLabel { + 0 display/modify grating table +} +symbols { + 0 "P=$(P),N=$(N)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 4 +y 265 +w 45 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "More" +numPvs 12 +numDsps 6 +displayFileName { + 0 SGM_tiny.edl + 1 SGM_gratings.edl + 2 motorx_more.edl + 3 motorx_more.edl + 4 motorx_more.edl + 5 motorx_more.edl +} +menuLabel { + 0 SGM (less) + 1 Gratings + 2 r motor (entrance slit) + 3 x motor (grating drive) + 4 r' motor (exit slit) + 5 index motor (grating index) +} +symbols { + 0 "P=$(P),N=$(N),M_x=$(M_x),M_rIn=$(M_rIn),M_rOut=$(M_rOut),M_g=$(M_g)" + 1 "P=$(P),N=$(N),M_x=$(M_x),M_rIn=$(M_rIn),M_rOut=$(M_rOut),M_g=$(M_g)" + 2 "P=$(P),M=$(M_rIn)" + 3 "P=$(P),M=$(M_x)" + 4 "P=$(P),M=$(M_rOut)" + 5 "P=$(P),M=$(M_g)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 + 5 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 530 +y 120 +w 60 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)SGM$(N):rTrack" +indicatorPv "$(P)SGM$(N):rTrack" +font "helvetica-medium-r-8.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/SGM_gratings.edl b/opticsApp/op/edl/autoconvert/SGM_gratings.edl new file mode 100644 index 0000000..ca39945 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/SGM_gratings.edl @@ -0,0 +1,5064 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 173 +y 166 +w 600 +h 395 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x -6 +y 20 +w 38 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "USE" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 179 +w 23 +h 18 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)SGM$(N):sel_exists_1.DO8)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 159 +w 23 +h 18 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)SGM$(N):sel_exists_1.DO7)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 199 +w 23 +h 18 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)SGM$(N):sel_exists_1.DO9)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 219 +w 23 +h 18 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)SGM$(N):sel_exists_1.DOA)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 79 +w 23 +h 18 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)SGM$(N):sel_exists_1.DO3)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 59 +w 23 +h 18 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)SGM$(N):sel_exists_1.DO2)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 39 +w 23 +h 18 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)SGM$(N):sel_exists_1.DO1)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 99 +w 23 +h 18 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)SGM$(N):sel_exists_1.DO4)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 119 +w 23 +h 18 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)SGM$(N):sel_exists_1.DO5)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 139 +w 23 +h 18 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)SGM$(N):sel_exists_1.DO6)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 279 +w 23 +h 18 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)SGM$(N):sel_exists_2.DO3)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 259 +w 23 +h 18 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)SGM$(N):sel_exists_2.DO2)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 239 +w 23 +h 18 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)SGM$(N):sel_exists_2.DO1)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 299 +w 23 +h 18 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)SGM$(N):sel_exists_2.DO4)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 319 +w 23 +h 18 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)SGM$(N):sel_exists_2.DO5)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 339 +w 23 +h 18 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)SGM$(N):sel_exists_2.DO6)" +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 555 +y 40 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_exists_1.DO1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 555 +y 60 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_exists_1.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 555 +y 80 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_exists_1.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 555 +y 100 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_exists_1.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 555 +y 120 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_exists_1.DO5" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 555 +y 140 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_exists_1.DO6" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 555 +y 160 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_exists_1.DO7" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 555 +y 180 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_exists_1.DO8" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 555 +y 200 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_exists_1.DO9" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 555 +y 220 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_exists_1.DOA" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 555 +y 240 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_exists_2.DO1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 555 +y 260 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_exists_2.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 555 +y 280 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_exists_2.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 555 +y 300 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_exists_2.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 555 +y 320 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_exists_2.DO5" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 555 +y 340 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_exists_2.DO6" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 40 +w 100 +h 16 +controlPv "$(P)SGM$(N):sel_desc_1.STR1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 60 +w 100 +h 16 +controlPv "$(P)SGM$(N):sel_desc_1.STR2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 80 +w 100 +h 16 +controlPv "$(P)SGM$(N):sel_desc_1.STR3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 100 +w 100 +h 16 +controlPv "$(P)SGM$(N):sel_desc_1.STR4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 120 +w 100 +h 16 +controlPv "$(P)SGM$(N):sel_desc_1.STR5" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 140 +w 100 +h 16 +controlPv "$(P)SGM$(N):sel_desc_1.STR6" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 160 +w 100 +h 16 +controlPv "$(P)SGM$(N):sel_desc_1.STR7" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 180 +w 100 +h 16 +controlPv "$(P)SGM$(N):sel_desc_1.STR8" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 200 +w 100 +h 16 +controlPv "$(P)SGM$(N):sel_desc_1.STR9" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 220 +w 100 +h 16 +controlPv "$(P)SGM$(N):sel_desc_1.STRA" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 240 +w 100 +h 16 +controlPv "$(P)SGM$(N):sel_desc_2.STR1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 260 +w 100 +h 16 +controlPv "$(P)SGM$(N):sel_desc_2.STR2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 280 +w 100 +h 16 +controlPv "$(P)SGM$(N):sel_desc_2.STR3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 300 +w 100 +h 16 +controlPv "$(P)SGM$(N):sel_desc_2.STR4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 320 +w 100 +h 16 +controlPv "$(P)SGM$(N):sel_desc_2.STR5" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 340 +w 100 +h 16 +controlPv "$(P)SGM$(N):sel_desc_2.STR6" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 135 +y 160 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_m_1.DO7" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 180 +y 160 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_den_1.DO7" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 245 +y 160 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_R_1.DO7" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 310 +y 160 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Wlow_1.DO7" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 375 +y 160 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Whigh_1.DO7" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 440 +y 160 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_loc_1.DO7" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 135 +y 180 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_m_1.DO8" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 180 +y 180 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_den_1.DO8" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 245 +y 180 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_R_1.DO8" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 310 +y 180 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Wlow_1.DO8" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 375 +y 180 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Whigh_1.DO8" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 440 +y 180 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_loc_1.DO8" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 135 +y 200 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_m_1.DO9" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 180 +y 200 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_den_1.DO9" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 245 +y 200 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_R_1.DO9" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 310 +y 200 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Wlow_1.DO9" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 375 +y 200 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Whigh_1.DO9" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 440 +y 200 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_loc_1.DO9" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 135 +y 220 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_m_1.DOA" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 180 +y 220 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_den_1.DOA" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 245 +y 220 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_R_1.DOA" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 310 +y 220 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Wlow_1.DOA" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 375 +y 220 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Whigh_1.DOA" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 440 +y 220 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_loc_1.DOA" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 135 +y 40 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_m_1.DO1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 180 +y 40 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_den_1.DO1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 245 +y 40 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_R_1.DO1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 310 +y 40 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Wlow_1.DO1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 375 +y 40 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Whigh_1.DO1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 440 +y 40 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_loc_1.DO1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 135 +y 60 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_m_1.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 180 +y 60 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_den_1.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 245 +y 60 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_R_1.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 310 +y 60 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Wlow_1.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 375 +y 60 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Whigh_1.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 440 +y 60 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_loc_1.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 135 +y 80 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_m_1.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 180 +y 80 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_den_1.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 245 +y 80 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_R_1.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 310 +y 80 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Wlow_1.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 375 +y 80 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Whigh_1.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 440 +y 80 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_loc_1.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 135 +y 100 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_m_1.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 180 +y 100 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_den_1.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 245 +y 100 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_R_1.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 310 +y 100 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Wlow_1.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 375 +y 100 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Whigh_1.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 440 +y 100 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_loc_1.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 135 +y 120 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_m_1.DO5" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 180 +y 120 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_den_1.DO5" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 245 +y 120 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_R_1.DO5" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 310 +y 120 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Wlow_1.DO5" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 375 +y 120 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Whigh_1.DO5" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 440 +y 120 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_loc_1.DO6" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 135 +y 140 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_m_1.DO6" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 180 +y 140 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_den_1.DO6" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 245 +y 140 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_R_1.DO6" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 310 +y 140 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Wlow_1.DO6" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 375 +y 140 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Whigh_1.DO6" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 440 +y 140 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_loc_1.DO6" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 135 +y 240 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_m_2.DO1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 180 +y 240 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_den_2.DO1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 245 +y 240 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_R_2.DO1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 310 +y 240 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Wlow_2.DO1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 375 +y 240 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Whigh_2.DO1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 440 +y 240 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_loc_2.DO1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 135 +y 260 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_m_2.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 180 +y 260 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_den_2.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 245 +y 260 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_R_2.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 310 +y 260 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Wlow_2.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 375 +y 260 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Whigh_2.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 440 +y 260 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_loc_2.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 135 +y 280 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_m_2.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 180 +y 280 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_den_2.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 245 +y 280 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_R_2.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 310 +y 280 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Wlow_2.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 375 +y 280 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Whigh_2.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 440 +y 280 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_loc_2.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 135 +y 300 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_m_2.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 180 +y 300 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_den_2.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 245 +y 300 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_R_2.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 310 +y 300 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Wlow_2.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 375 +y 300 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Whigh_2.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 440 +y 300 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_loc_2.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 135 +y 320 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_m_2.DO5" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 180 +y 320 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_den_2.DO5" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 245 +y 320 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_R_2.DO5" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 310 +y 320 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Wlow_2.DO5" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 375 +y 320 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Whigh_2.DO5" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 440 +y 320 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_loc_2.DO6" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 135 +y 340 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_m_2.DO6" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 180 +y 340 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_den_2.DO6" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 245 +y 340 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_R_2.DO6" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 310 +y 340 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Wlow_2.DO6" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 375 +y 340 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_Whigh_2.DO6" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 440 +y 340 +w 60 +h 16 +controlPv "$(P)SGM$(N):sel_loc_2.DO6" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 505 +y 40 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_xOff_1.DO1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 505 +y 60 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_xOff_1.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 505 +y 80 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_xOff_1.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 505 +y 100 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_xOff_1.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 505 +y 120 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_xOff_1.DO5" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 505 +y 140 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_xOff_1.DO6" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 505 +y 160 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_xOff_1.DO7" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 505 +y 180 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_xOff_1.DO8" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 505 +y 200 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_xOff_1.DO9" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 505 +y 220 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_xOff_1.DOA" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 505 +y 240 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_xOff_2.DO1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 505 +y 260 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_xOff_2.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 505 +y 280 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_xOff_2.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 505 +y 300 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_xOff_2.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 505 +y 320 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_xOff_2.DO5" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 505 +y 340 +w 40 +h 16 +controlPv "$(P)SGM$(N):sel_xOff_2.DO6" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 440 +y 370 +w 60 +h 16 +controlPv "$(P)SGM$(N):StripeWidth" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 345 +y 370 +w 90 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Stripe width:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 30 +y 0 +w 100 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "grating" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 130 +y 0 +w 51 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "diffract" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 180 +y 0 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "line" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 245 +y 0 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "grating" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 309 +y 0 +w 63 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Wavelen" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 374 +y 0 +w 63 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Wavelen" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 440 +y 0 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "grating" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 496 +y 0 +w 58 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "X-motor" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 552 +y 0 +w 46 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "OK to" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 30 +y 15 +w 100 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "description" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 134 +y 15 +w 43 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "order" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 180 +y 15 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "density" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 245 +y 15 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "radius" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 310 +y 15 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Lo Lim" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 375 +y 15 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Hi Lim" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 440 +y 15 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "index" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 504 +y 15 +w 43 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "offset" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 555 +y 15 +w 41 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "use?" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 30 +y 30 +w 100 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 135 +y 30 +w 40 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 180 +y 30 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "[lines/mm]" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 245 +y 30 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "[m]" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 310 +y 30 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "[Angstroms]" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 375 +y 30 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "[Angstroms]" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 440 +y 30 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "(stripe #)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 505 +y 30 +w 40 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "[mm]" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 555 +y 30 +w 40 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "1==YES" +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 160 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):grating" +pressValue +releaseValue "6" +onLabel "7" +offLabel "7" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 180 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):grating" +pressValue +releaseValue "7" +onLabel "8" +offLabel "8" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 200 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):grating" +pressValue +releaseValue "8" +onLabel "9" +offLabel "9" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 220 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):grating" +pressValue +releaseValue "9" +onLabel "10" +offLabel "10" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 40 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):grating" +pressValue +releaseValue "0" +onLabel "1" +offLabel "1" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 60 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):grating" +pressValue +releaseValue "1" +onLabel "2" +offLabel "2" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 80 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):grating" +pressValue +releaseValue "2" +onLabel "3" +offLabel "3" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 100 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):grating" +pressValue +releaseValue "3" +onLabel "4" +offLabel "4" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 120 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):grating" +pressValue +releaseValue "4" +onLabel "5" +offLabel "5" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 140 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):grating" +pressValue +releaseValue "5" +onLabel "6" +offLabel "6" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 240 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):grating" +pressValue +releaseValue "10" +onLabel "11" +offLabel "11" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 260 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):grating" +pressValue +releaseValue "11" +onLabel "12" +offLabel "12" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 280 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):grating" +pressValue +releaseValue "12" +onLabel "13" +offLabel "13" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 300 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):grating" +pressValue +releaseValue "13" +onLabel "14" +offLabel "14" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 320 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):grating" +pressValue +releaseValue "14" +onLabel "15" +offLabel "15" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 340 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):grating" +pressValue +releaseValue "15" +onLabel "16" +offLabel "16" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/SGM_tiny.edl b/opticsApp/op/edl/autoconvert/SGM_tiny.edl new file mode 100644 index 0000000..f79fbde --- /dev/null +++ b/opticsApp/op/edl/autoconvert/SGM_tiny.edl @@ -0,0 +1,1424 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 118 +y 76 +w 320 +h 173 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 80 +y 164 +w 75 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Motor limit" +} +visPv "CALC\\\{(A)\}($(P)$(M_rOut).LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 80 +y 164 +w 75 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Motor limit" +} +visPv "CALC\\\{(A)\}($(P)$(M_rOut).HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 80 +y 164 +w 75 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Motor limit" +} +visPv "CALC\\\{(A)\}($(P)$(M_rOut).LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 80 +y 164 +w 75 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Motor limit" +} +visPv "CALC\\\{(A)\}($(P)$(M_rIn).LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 80 +y 164 +w 75 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Motor limit" +} +visPv "CALC\\\{(A)\}($(P)$(M_x).LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 80 +y 164 +w 75 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Motor limit" +} +visPv "CALC\\\{(A)\}($(P)$(M_x).HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 80 +y 164 +w 75 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Motor limit" +} +visPv "CALC\\\{(A)\}($(P)$(M_rIn).HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 80 +y 164 +w 75 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Motor limit" +} +visPv "CALC\\\{(A)\}($(P)$(M_rIn).LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 80 +y 164 +w 75 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Motor limit" +} +visPv "CALC\\\{(A)\}($(P)$(M_x).LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 107 +w 99 +h 31 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 107 +w 100 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "SCAN CONTROL" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 86 +w 60 +h 20 +controlPv "$(P)SGM$(N):EnergyTweak.C" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x -1 +y 140 +w 321 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 0 +1 319 +} +yPoints { +0 141 +1 141 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 107 +w 99 +h 31 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 110 +y 107 +w 100 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "SCAN CONTROL" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 130 +y 86 +w 60 +h 20 +controlPv "$(P)SGM$(N):LambdaTweak.C" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 215 +y 107 +w 99 +h 31 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 215 +y 107 +w 100 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "SCAN CONTROL" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 235 +y 86 +w 60 +h 20 +controlPv "$(P)SGM$(N):phiTweak.C" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 175 +y 144 +w 26 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "EXIT" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 175 +y 154 +w 25 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "SLIT" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 45 +w 100 +h 20 +controlPv "$(P)SGM$(N):EnergyRBV" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 61 +w 100 +h 25 +controlPv "$(P)SGM$(N):Energy" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 45 +w 100 +h 20 +controlPv "$(P)SGM$(N):LambdaRBV" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 61 +w 100 +h 25 +controlPv "$(P)SGM$(N):Lambda" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 215 +y 45 +w 100 +h 20 +controlPv "$(P)SGM$(N):phiRBV" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 215 +y 61 +w 100 +h 25 +controlPv "$(P)SGM$(N):phi" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 319 +h 24 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 3 +w 320 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Spherical Grating Monochromator" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 25 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Energy(eV)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 110 +y 25 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Wavelen(A)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 215 +y 25 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Phi(deg)" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 22 +w 321 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 319 +} +yPoints { +0 23 +1 23 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 175 +y 164 +w 75 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "r' AT LIMIT" +} +visPv "CALC\\\{(A)\}($(P)SGM$(N):T2.M)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 1 +y 165 +w 20 +h 8 +font "helvetica-bold-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "V1.4" +} +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 144 +w 55 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)SGM$(N):rTrack" +indicatorPv "$(P)SGM$(N):rTrack" +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 80 +y 144 +w 35 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):move.PROC" +pressValue "1" +releaseValue +onLabel "Move" +offLabel "Move" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 120 +y 144 +w 35 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):sync.PROC" +pressValue "1" +releaseValue +onLabel "Sync" +offLabel "Sync" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 69 +y 117 +w 35 +h 20 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "Stop" +offLabel "Stop" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 48 +y 117 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):Energy:scanParms.GO" +pressValue "1" +releaseValue +onLabel "Go" +offLabel "Go" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 27 +y 117 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):Energy:scanParms.LOAD" +pressValue "1" +releaseValue +onLabel "Ld" +offLabel "Ld" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 6 +y 117 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParms.edl +} +menuLabel { + 0 Energy-scan parameters +} +symbols { + 0 "P=$(P),Q=SGM$(N):Energy,PV=SGM$(N):Energy" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 86 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):EnergyTweak.A" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 86 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):EnergyTweak.B" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 279 +y 152 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "More" +numPvs 12 +numDsps 6 +displayFileName { + 0 SGM.edl + 1 SGM_gratings.edl + 2 motorx_more.edl + 3 motorx_more.edl + 4 motorx_more.edl + 5 motorx_more.edl +} +menuLabel { + 0 SGM (more) + 1 Gratings + 2 r motor (entrance slit) + 3 x motor (grating drive) + 4 r' motor (exit slit) + 5 index motor (grating index) +} +symbols { + 0 "P=$(P),N=$(N),M_x=$(M_x),M_rIn=$(M_rIn),M_rOut=$(M_rOut),M_g=$(M_g)" + 1 "P=$(P),N=$(N),M_x=$(M_x),M_rIn=$(M_rIn),M_rOut=$(M_rOut),M_g=$(M_g)" + 2 "P=$(P),M=$(M_rIn)" + 3 "P=$(P),M=$(M_x)" + 4 "P=$(P),M=$(M_rOut)" + 5 "P=$(P),M=$(M_g)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 + 5 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 174 +y 117 +w 35 +h 20 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)AbortScans.VAL" +pressValue "1" +releaseValue +onLabel "Stop" +offLabel "Stop" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 153 +y 117 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):Lambda:scanParms.GO" +pressValue "1" +releaseValue +onLabel "Go" +offLabel "Go" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 132 +y 117 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):Lambda:scanParms.LOAD" +pressValue "1" +releaseValue +onLabel "Ld" +offLabel "Ld" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 111 +y 117 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParms.edl +} +menuLabel { + 0 Wavelength-scan parameters +} +symbols { + 0 "P=$(P),Q=SGM$(N):Lambda,PV=SGM$(N):Lambda" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 190 +y 86 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):LambdaTweak.A" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 86 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):LambdaTweak.B" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 279 +y 117 +w 35 +h 20 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "Stop" +offLabel "Stop" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 258 +y 117 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):phi:scanParms.GO" +pressValue "1" +releaseValue +onLabel "Go" +offLabel "Go" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 237 +y 117 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):phi:scanParms.LOAD" +pressValue "1" +releaseValue +onLabel "Ld" +offLabel "Ld" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 216 +y 117 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParms.edl +} +menuLabel { + 0 Grating angle scan parameters +} +symbols { + 0 "P=$(P),Q=SGM$(N):phi,PV=SGM$(N):phi" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 295 +y 86 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):phiTweak.A" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 215 +y 86 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)SGM$(N):phiTweak.B" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 144 +w 75 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)SGM$(N):auto" +indicatorPv "$(P)SGM$(N):auto" +font "helvetica-medium-r-8.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/TheBox_Bragg.edl b/opticsApp/op/edl/autoconvert/TheBox_Bragg.edl new file mode 100644 index 0000000..95010c1 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/TheBox_Bragg.edl @@ -0,0 +1,2451 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 10 +y 10 +w 535 +h 285 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 194 +y 125 +w 5 +h 14 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(mTH1).HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 187 +y 125 +w 5 +h 14 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(mTH1).LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 120 +y 125 +w 5 +h 14 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(mTH1).LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 127 +y 125 +w 5 +h 14 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(mTH1).LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 245 +w 391 +h 16 +lineColor rgb 29440 57088 65280 +fill +fillColor rgb 29440 57088 65280 +lineWidth 2 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 1 +w 113 +h 85 +lineColor rgb 44544 44544 44544 +fill +fillColor rgb 44544 44544 44544 +lineWidth 2 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 5 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "H" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 15 +y 5 +w 20 +h 20 +controlPv "$(P)Bragg_H.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 43 +y 5 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "K" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 53 +y 5 +w 20 +h 20 +controlPv "$(P)Bragg_K.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 81 +y 5 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "L" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 91 +y 5 +w 20 +h 20 +controlPv "$(P)Bragg_L.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 25 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "a" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 25 +w 60 +h 20 +controlPv "$(P)Bragg_a.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 45 +w 30 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "2d" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 45 +w 60 +h 20 +controlPv "$(P)Bragg_2d_spacing.G" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 490 +y 128 +w 48 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "More" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 215 +y 170 +w 80 +h 20 +controlPv "$(P)$(mTH2).VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 310 +y 205 +w 80 +h 18 +controlPv "$(P)$(mZ2).VELO" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 120 +y 205 +w 80 +h 18 +controlPv "$(P)$(mTH1).VELO" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 215 +y 205 +w 80 +h 18 +controlPv "$(P)$(mTH2).VELO" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 310 +y 170 +w 80 +h 20 +controlPv "$(P)$(mZ2).VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 120 +y 170 +w 80 +h 20 +controlPv "$(P)$(mTH1).VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 245 +w 100 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Calibration" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 204 +y 140 +w 92 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 14848 24064 43776 +bgColor index 3 +useDisplayBg +value { + "($(P)$(mTH2))" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 109 +y 140 +w 92 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 14848 24064 43776 +bgColor index 3 +useDisplayBg +value { + "($(P)$(mTH1))" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 300 +y 140 +w 90 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 14848 24064 43776 +bgColor index 3 +useDisplayBg +value { + "($(P)$(mZ2))" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 215 +y 125 +w 80 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Theta2" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 120 +y 125 +w 80 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Theta1" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 310 +y 125 +w 80 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Z2" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 347 +y 1 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TH (deg.)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 347 +y 35 +w 100 +h 20 +controlPv "$(P)Bragg_readback.A" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 347 +y 55 +w 100 +h 25 +controlPv "$(P)Bragg_theta.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 367 +y 95 +w 60 +h 20 +controlPv "$(P)Bragg_theta_tweak.D" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 347 +y 20 +w 100 +h 15 +controlPv "$(P)Bragg_limits.A" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 127 +y 80 +w 320 +h 15 + +beginGroup + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 347 +y 80 +w 100 +h 15 +controlPv "$(P)Bragg_limits.B" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 237 +y 80 +w 100 +h 15 +controlPv "$(P)Bragg_limits.F" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 127 +y 80 +w 100 +h 15 +controlPv "$(P)Bragg_limits.H" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +endGroup + +endObjectProperties + + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 237 +y 35 +w 100 +h 20 +controlPv "$(P)Bragg_readback.C" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 237 +y 55 +w 100 +h 25 +controlPv "$(P)Bragg_lambda.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 257 +y 95 +w 60 +h 20 +controlPv "$(P)Bragg_lambda_tweak.D" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 237 +y 20 +w 100 +h 15 +controlPv "$(P)Bragg_limits.E" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 127 +y 55 +w 100 +h 25 +controlPv "$(P)Bragg_E.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 147 +y 95 +w 60 +h 20 +controlPv "$(P)Bragg_E_tweak.D" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 127 +y 20 +w 100 +h 15 +controlPv "$(P)Bragg_limits.G" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 127 +y 35 +w 100 +h 20 +controlPv "$(P)Bragg_readback.E" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 346 +y 1 +w 103 +h 115 +lineColor rgb 51200 51200 51200 +fillColor rgb 51200 51200 51200 +lineWidth 2 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 237 +y 1 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "lambda (A)" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 1 +w 103 +h 115 +lineColor rgb 51200 51200 51200 +fillColor rgb 51200 51200 51200 +lineWidth 2 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 127 +y 1 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "E (keV)" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 126 +y 1 +w 103 +h 115 +lineColor rgb 51200 51200 51200 +fillColor rgb 51200 51200 51200 +lineWidth 2 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 400 +y 205 +w 50 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 60416 60416 60416 +bgColor index 3 +useDisplayBg +value { + "Speed" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 400 +y 190 +w 50 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 60416 60416 60416 +bgColor index 3 +useDisplayBg +value { + "Ideal" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 400 +y 155 +w 50 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 60416 60416 60416 +bgColor index 3 +useDisplayBg +value { + "Actual" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 400 +y 173 +w 57 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 60416 60416 60416 +bgColor index 3 +useDisplayBg +value { + "Desired" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 80 +w 75 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 60416 60416 60416 +bgColor index 3 +useDisplayBg +value { + "Low Limit" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 60 +w 75 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 60416 60416 60416 +bgColor index 3 +useDisplayBg +value { + "Desired" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 38 +w 75 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 60416 60416 60416 +bgColor index 3 +useDisplayBg +value { + "Actual" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 20 +w 75 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 60416 60416 60416 +bgColor index 3 +useDisplayBg +value { + "High Limit" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 455 +y 195 +w 80 +h 25 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 29440 65280 27392 +bgColor index 3 +useDisplayBg +value { + "Moving" +} +visPv "CALC\\\{(A)\}($(P)alldone.VAL)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 455 +y 195 +w 80 +h 25 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 19712 20992 41984 +bgColor index 3 +useDisplayBg +value { + "Done" +} +visPv "CALC\\\{(A)\}($(P)alldone.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x -1 +y 120 +w 536 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 0 +1 534 +} +yPoints { +0 121 +1 121 +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 120 +y 155 +w 80 +h 15 +controlPv "$(P)$(mTH1).RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 215 +y 154 +w 80 +h 15 +controlPv "$(P)$(mTH2).RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 310 +y 155 +w 80 +h 15 +controlPv "$(P)$(mZ2).RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 1 +w 116 +h 88 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 310 +y 190 +w 80 +h 15 +controlPv "$(P)TheBox_TH2Z2.C" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 57600 36864 5376 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 215 +y 190 +w 80 +h 15 +controlPv "$(P)TheBox_TH2Z2.D" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 57600 36864 5376 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 120 +y 190 +w 80 +h 15 +controlPv "$(P)TheBox_TH2Z2.A" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 57600 36864 5376 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 100 +y 177 +w 25 +h 21 + +beginGroup + +# (Arc) +object activeArcClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 100 +y 180 +w 25 +h 18 +lineColor rgb 57600 36864 5376 +fillColor rgb 57600 36864 5376 +lineWidth 2 +startAngle 90 +totalAngle 180 +fillMode "pie" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 107 +y 177 +w 8 +h 10 +lineColor rgb 57600 36864 5376 +fillColor rgb 57600 36864 5376 +lineWidth 2 +numPoints 3 { +xPoints { +0 108 +1 114 +2 108 +} +yPoints { +0 178 +1 181 +2 186 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 78 +y 188 +w 20 +h 2 +lineColor rgb 57600 36864 5376 +fillColor rgb 57600 36864 5376 +lineWidth 2 +lineStyle "dash" +numPoints 2 { +xPoints { +0 97 +1 79 +} +yPoints { +0 189 +1 189 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 146 +w 79 +h 96 +lineColor rgb 57600 36864 5376 +fill +fillColor rgb 57600 36864 5376 +lineWidth 2 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 226 +w 391 +h 16 +lineColor rgb 57600 36864 5376 +fill +fillColor rgb 57600 36864 5376 +lineWidth 2 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 308 +y 154 +w 82 +h 36 +lineColor rgb 60160 61696 46336 +fillColor rgb 60160 61696 46336 +visPv "CALC\\\{(A)\}($(P)$(mZ2)_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 213 +y 154 +w 82 +h 36 +lineColor rgb 60160 61696 46336 +fillColor rgb 60160 61696 46336 +visPv "CALC\\\{(A)\}($(P)$(mTH2)_able.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 289 +y 124 +w 5 +h 14 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(mTH2).HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 282 +y 124 +w 5 +h 14 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(mTH2).LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 215 +y 124 +w 5 +h 14 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(mTH2).LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 222 +y 124 +w 5 +h 14 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(mTH2).LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 384 +y 124 +w 5 +h 14 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(mZ2).HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 377 +y 124 +w 5 +h 14 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(mZ2).LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 310 +y 124 +w 5 +h 14 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(mZ2).LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 317 +y 124 +w 5 +h 14 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(mZ2).LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 465 +y 128 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 TheBox_graphic.edl +} +menuLabel { + 0 TheBox Graphic +} +symbols { + 0 "P=$(P),mX1=$(mX1),mY1=$(mY1),mTH1=$(mTH1),mZ2=$(mZ2),mX2=$(mX2),mY2=$(mY2),mTH2=$(mTH2)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 205 +y 227 +w 90 +h 15 +fgColor rgb 0 0 0 +bgColor rgb 57600 36864 5376 +selectColor rgb 57600 36864 5376 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mTH2)_able.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 300 +y 227 +w 90 +h 15 +fgColor rgb 0 0 0 +bgColor rgb 57600 36864 5376 +selectColor rgb 57600 36864 5376 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mZ2)_able.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 227 +w 90 +h 15 +fgColor rgb 0 0 0 +bgColor rgb 57600 36864 5376 +selectColor rgb 57600 36864 5376 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mTH1)_able.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 300 +y 245 +w 90 +h 15 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mZ2).SET" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 205 +y 245 +w 90 +h 15 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mTH2).SET" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 245 +w 90 +h 15 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mTH1).SET" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 150 +w 75 +h 45 +fgColor rgb 0 0 0 +bgColor rgb 57600 36864 5376 +selectColor rgb 57600 36864 5376 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)TheBox_run.VAL" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 198 +w 75 +h 25 +fgColor rgb 0 0 0 +onColor rgb 57600 36864 5376 +offColor rgb 57600 36864 5376 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)TheBox_put.PROC" +pressValue "1" +releaseValue +onLabel "Move" +offLabel "Move" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 427 +y 95 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)Bragg_theta_inc.VAL" +pressValue "1" +releaseValue "0" +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 347 +y 95 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)Bragg_theta_dec.VAL" +pressValue "1" +releaseValue "0" +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 127 +y 80 +w 320 +h 15 + +beginGroup + +endGroup + +endObjectProperties + + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 317 +y 95 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)Bragg_lambda_inc.VAL" +pressValue "1" +releaseValue "0" +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 237 +y 95 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)Bragg_lambda_dec.VAL" +pressValue "1" +releaseValue "0" +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 127 +y 95 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)Bragg_E_dec.VAL" +pressValue "1" +releaseValue "0" +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 207 +y 95 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)Bragg_E_inc.VAL" +pressValue "1" +releaseValue "0" +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 95 +w 110 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)BraggBackProp.PROC" +pressValue "1" +releaseValue +onLabel "SyncToMotor" +offLabel "SyncToMotor" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 66 +w 110 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)Bragg_2d_put.PROC" +pressValue "1" +releaseValue +onLabel "Use 2d spacing" +offLabel "Use 2d spacing" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 420 +y 220 +w 115 +h 40 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "All Stop" +offLabel "All Stop" +3d +useEnumNumeric +font "utopia-medium-r-24.0" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 100 +y 177 +w 25 +h 21 + +beginGroup + +endGroup + +endObjectProperties + + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 120 +y 264 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 6 +numDsps 3 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl + 2 motorx_all.edl +} +menuLabel { + 0 Theta motor (S) + 1 Theta motor (M) + 2 Theta motor (L) +} +symbols { + 0 "P=$(P),M=$(mTH1)" + 1 "P=$(P),M=$(mTH1)" + 2 "P=$(P),M=$(mTH1)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 217 +y 264 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 6 +numDsps 3 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl + 2 motorx_all.edl +} +menuLabel { + 0 TH2 motor (S) + 1 TH2 motor (M) + 2 TH2 motor (L) +} +symbols { + 0 "P=$(P),M=$(mTH2)" + 1 "P=$(P),M=$(mTH2)" + 2 "P=$(P),M=$(mTH2)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 312 +y 264 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 6 +numDsps 3 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl + 2 motorx_all.edl +} +menuLabel { + 0 Z2 motor (S) + 1 Z2 motor (M) + 2 Z2 motor (L) +} +symbols { + 0 "P=$(P),M=$(mZ2)" + 1 "P=$(P),M=$(mZ2)" + 2 "P=$(P),M=$(mZ2)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/TheBox_calc.edl b/opticsApp/op/edl/autoconvert/TheBox_calc.edl new file mode 100644 index 0000000..8774ea9 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/TheBox_calc.edl @@ -0,0 +1,1856 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 10 +y 10 +w 560 +h 220 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 495 +y 180 +w 60 +h 20 +controlPv "$(P)$(mZ2).VELO" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 480 +y 180 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "v" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 480 +y 110 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "v" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 480 +y 90 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "p" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 480 +y 160 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "p" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 480 +y 40 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "v" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 480 +y 20 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "p" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 495 +y 90 +w 60 +h 20 +controlPv "$(P)$(mTH2).VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 495 +y 110 +w 60 +h 20 +controlPv "$(P)$(mTH2).VELO" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 495 +y 70 +w 69 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "($(mTH2))" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 495 +y 4 +w 69 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "($(mTH1))" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 495 +y 20 +w 60 +h 20 +controlPv "$(P)$(mTH1).VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 495 +y 160 +w 60 +h 20 +controlPv "$(P)$(mZ2).VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 495 +y 140 +w 62 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "($(mZ2))" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 495 +y 40 +w 60 +h 20 +controlPv "$(P)$(mTH1).VELO" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 2 +y 40 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "b" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 2 +y 20 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "a" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 2 +y 60 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "c" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 2 +y 80 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "d" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 2 +y 100 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "e" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 2 +y 120 +w 20 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "f" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 2 +y 140 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "g" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 2 +y 160 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "h" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 2 +y 180 +w 20 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "i" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 2 +y 200 +w 20 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "j" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 80 +y 40 +w 150 +h 20 +controlPv "$(P)TheBox_TH2Z2.CLCB" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 80 +y 20 +w 150 +h 20 +controlPv "$(P)TheBox_TH2Z2.CLCA" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 80 +y 60 +w 150 +h 20 +controlPv "$(P)TheBox_TH2Z2.CLCC" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 80 +y 80 +w 150 +h 20 +controlPv "$(P)TheBox_TH2Z2.CLCD" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 80 +y 100 +w 150 +h 20 +controlPv "$(P)TheBox_TH2Z2.CLCE" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 80 +y 120 +w 150 +h 20 +controlPv "$(P)TheBox_TH2Z2.CLCF" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 80 +y 140 +w 150 +h 20 +controlPv "$(P)TheBox_TH2Z2.CLCG" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 80 +y 160 +w 150 +h 20 +controlPv "$(P)TheBox_TH2Z2.CLCH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 80 +y 180 +w 150 +h 20 +controlPv "$(P)TheBox_TH2Z2.CLCI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 80 +y 200 +w 150 +h 20 +controlPv "$(P)TheBox_TH2Z2.CLCJ" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 40 +w 60 +h 20 +controlPv "$(P)TheBox_TH2Z2.B" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 20 +w 60 +h 20 +controlPv "$(P)TheBox_TH2Z2.A" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 60 +w 60 +h 20 +controlPv "$(P)TheBox_TH2Z2.C" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 80 +w 60 +h 20 +controlPv "$(P)TheBox_TH2Z2.D" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 100 +w 60 +h 20 +controlPv "$(P)TheBox_TH2Z2.E" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 120 +w 60 +h 20 +controlPv "$(P)TheBox_TH2Z2.F" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 140 +w 60 +h 20 +controlPv "$(P)TheBox_TH2Z2.G" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 160 +w 60 +h 20 +controlPv "$(P)TheBox_TH2Z2.H" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 180 +w 60 +h 20 +controlPv "$(P)TheBox_TH2Z2.I" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 200 +w 60 +h 20 +controlPv "$(P)TheBox_TH2Z2.J" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 240 +y 20 +w 20 +h 200 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 240 +y 20 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "a" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 240 +y 40 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "b" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 240 +y 60 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "c" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 240 +y 80 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "d" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 240 +y 100 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "e" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 240 +y 120 +w 20 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "f" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 240 +y 140 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "g" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 240 +y 160 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "h" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 240 +y 180 +w 20 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "i" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 240 +y 200 +w 20 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "j" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 315 +y 20 +w 150 +h 19 +controlPv "$(P)TheBox_put.CLCA" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 315 +y 40 +w 150 +h 20 +controlPv "$(P)TheBox_put.CLCB" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 315 +y 60 +w 150 +h 20 +controlPv "$(P)TheBox_put.CLCC" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 315 +y 80 +w 150 +h 20 +controlPv "$(P)TheBox_put.CLCD" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 315 +y 100 +w 150 +h 20 +controlPv "$(P)TheBox_put.CLCE" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 315 +y 120 +w 150 +h 20 +controlPv "$(P)TheBox_put.CLCF" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 315 +y 140 +w 150 +h 20 +controlPv "$(P)TheBox_put.CLCG" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 315 +y 160 +w 150 +h 20 +controlPv "$(P)TheBox_put.CLCH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 315 +y 180 +w 150 +h 20 +controlPv "$(P)TheBox_put.CLCI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 315 +y 200 +w 150 +h 20 +controlPv "$(P)TheBox_put.CLCJ" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 255 +y 20 +w 60 +h 20 +controlPv "$(P)TheBox_put.A" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 255 +y 40 +w 60 +h 20 +controlPv "$(P)TheBox_put.B" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 255 +y 60 +w 60 +h 20 +controlPv "$(P)TheBox_put.C" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 255 +y 80 +w 60 +h 20 +controlPv "$(P)TheBox_put.D" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 255 +y 100 +w 60 +h 20 +controlPv "$(P)TheBox_put.E" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 255 +y 120 +w 60 +h 20 +controlPv "$(P)TheBox_put.F" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 255 +y 140 +w 60 +h 20 +controlPv "$(P)TheBox_put.G" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 255 +y 160 +w 60 +h 20 +controlPv "$(P)TheBox_put.H" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 255 +y 180 +w 60 +h 20 +controlPv "$(P)TheBox_put.I" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 255 +y 200 +w 60 +h 20 +controlPv "$(P)TheBox_put.J" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 2 +y 2 +w 225 +h 14 +controlPv "$(P)TheBox_TH2Z2.DESC" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 240 +y 2 +w 225 +h 14 +controlPv "$(P)TheBox_put.DESC" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 240 +y 20 +w 20 +h 200 + +beginGroup + +endGroup + +endObjectProperties + + diff --git a/opticsApp/op/edl/autoconvert/TheBox_graphic.edl b/opticsApp/op/edl/autoconvert/TheBox_graphic.edl new file mode 100644 index 0000000..29708ae --- /dev/null +++ b/opticsApp/op/edl/autoconvert/TheBox_graphic.edl @@ -0,0 +1,3460 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 10 +y 10 +w 525 +h 350 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 11 +y 26 +w 496 +h 316 +lineColor rgb 47872 47872 47872 +fill +fillColor rgb 47872 47872 47872 +lineWidth 3 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 369 +y 93 +w 97 +h 166 +lineColor rgb 55808 55808 55808 +fill +fillColor rgb 55808 55808 55808 +lineWidth 2 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 369 +y 93 +w 98 +h 167 +lineColor rgb 23040 23040 23040 +fillColor rgb 23040 23040 23040 +lineWidth 2 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 411 +y 94 +w 9 +h 102 + +beginGroup + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 94 +w 8 +h 100 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 94 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 94 +1 99 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 100 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 100 +1 106 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 106 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 106 +1 112 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 112 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 112 +1 118 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 119 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 119 +1 124 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 125 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 125 +1 131 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 131 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 131 +1 137 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 137 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 137 +1 143 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 144 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 144 +1 150 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 150 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 150 +1 156 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 157 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 157 +1 163 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 163 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 163 +1 169 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 169 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 169 +1 175 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 175 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 175 +1 181 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 181 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 181 +1 187 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 188 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 188 +1 194 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 411 +y 94 +w 9 +h 102 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +endGroup + +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 74 +y 91 +w 97 +h 200 +lineColor rgb 55808 55808 55808 +fill +fillColor rgb 55808 55808 55808 +lineWidth 2 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 74 +y 91 +w 98 +h 201 +lineColor rgb 23040 23040 23040 +fillColor rgb 23040 23040 23040 +lineWidth 2 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 121 +y 92 +w 9 +h 102 + +beginGroup + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 92 +w 8 +h 100 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 92 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 92 +1 97 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 98 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 98 +1 104 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 104 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 104 +1 110 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 110 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 110 +1 116 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 117 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 117 +1 122 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 123 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 123 +1 129 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 129 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 129 +1 135 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 135 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 135 +1 141 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 142 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 142 +1 148 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 148 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 148 +1 154 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 155 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 155 +1 161 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 161 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 161 +1 167 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 167 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 167 +1 173 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 173 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 173 +1 179 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 179 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 179 +1 185 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 186 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 186 +1 192 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 121 +y 92 +w 9 +h 102 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +endGroup + +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 77 +y 179 +w 172 +h 72 +lineColor rgb 55808 55808 55808 +fill +fillColor rgb 55808 55808 55808 +lineWidth 2 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 291 +y 98 +w 172 +h 72 +lineColor rgb 55808 55808 55808 +fill +fillColor rgb 55808 55808 55808 +lineWidth 2 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 77 +y 179 +w 173 +h 73 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 226 +y 145 +w 25 +h 30 + +beginGroup + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 226 +y 145 +w 24 +h 29 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 221 +y 153 +w 37 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "TH1" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 182 +y 187 +w 56 +h 56 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 2 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 197 +y 209 +w 29 +h 12 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 3 +numPoints 2 { +xPoints { +0 198 +1 224 +} +yPoints { +0 219 +1 210 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 176 +w 6 +h 50 + +beginGroup + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 176 +w 5 +h 49 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 176 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 236 +1 242 +} +yPoints { +0 176 +1 180 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 181 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 236 +1 242 +} +yPoints { +0 181 +1 186 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 186 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 236 +1 242 +} +yPoints { +0 186 +1 190 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 190 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 236 +1 242 +} +yPoints { +0 190 +1 195 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 196 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 236 +1 242 +} +yPoints { +0 196 +1 200 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 201 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 236 +1 242 +} +yPoints { +0 201 +1 205 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 205 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 236 +1 242 +} +yPoints { +0 205 +1 210 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 210 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 236 +1 242 +} +yPoints { +0 210 +1 215 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 215 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 236 +1 242 +} +yPoints { +0 215 +1 220 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 220 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 236 +1 242 +} +yPoints { +0 220 +1 225 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 176 +w 6 +h 50 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +endGroup + +endObjectProperties + + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 100 +y 30 +w 50 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(mY1)" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 11 +y 26 +w 497 +h 317 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 3 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 74 +y 296 +w 98 +h 28 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 115 +y 300 +w 42 +h 20 + +beginGroup + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 116 +y 301 +w 18 +h 18 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 111 +y 303 +w 30 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "X1" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 237 +y 296 +w 248 +h 28 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 205 +y 300 +w 29 +h 19 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 205 +y 303 +w 30 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "Z2" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 369 +y 264 +w 98 +h 28 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 368 +y 298 +w 50 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(mX2)" +} +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 410 +y 269 +w 18 +h 18 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 405 +y 271 +w 30 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "X2" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 404 +y 61 +w 24 +h 29 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 402 +y 69 +w 30 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "Y2" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 114 +y 59 +w 24 +h 29 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 112 +y 67 +w 30 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "Y1" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 291 +y 98 +w 173 +h 73 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 302 +y 107 +w 56 +h 56 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 2 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 317 +y 129 +w 29 +h 12 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 3 +numPoints 2 { +xPoints { +0 318 +1 344 +} +yPoints { +0 139 +1 130 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 288 +y 66 +w 24 +h 29 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 283 +y 74 +w 37 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "TH2" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x -1 +y 212 +w 213 +h 3 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 3 +lineStyle "dash" +numPoints 2 { +xPoints { +0 210 +1 0 +} +yPoints { +0 213 +1 213 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 209 +y 135 +w 123 +h 80 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineStyle "dash" +numPoints 2 { +xPoints { +0 209 +1 331 +} +yPoints { +0 214 +1 135 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 331 +y 135 +w 190 +h 1 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineStyle "dash" +numPoints 2 { +xPoints { +0 331 +1 520 +} +yPoints { +0 135 +1 135 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 211 +y 112 +w 52 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(mTH1)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 70 +y 325 +w 46 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(mX1)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 189 +y 266 +w 50 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(mZ2)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 274 +y 30 +w 52 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(mTH2)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 391 +y 30 +w 50 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(mY2)" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 17 +y 203 +w 49 +h 6 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +numPoints 3 { +xPoints { +0 17 +1 65 +2 59 +} +yPoints { +0 208 +1 208 +2 203 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 500 +y 127 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + ">" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 98 +w 6 +h 50 + +beginGroup + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 98 +w 5 +h 49 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 98 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 298 +1 304 +} +yPoints { +0 98 +1 102 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 103 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 298 +1 304 +} +yPoints { +0 103 +1 108 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 108 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 298 +1 304 +} +yPoints { +0 108 +1 112 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 112 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 298 +1 304 +} +yPoints { +0 112 +1 117 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 118 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 298 +1 304 +} +yPoints { +0 118 +1 122 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 123 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 298 +1 304 +} +yPoints { +0 123 +1 127 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 127 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 298 +1 304 +} +yPoints { +0 127 +1 132 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 132 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 298 +1 304 +} +yPoints { +0 132 +1 137 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 137 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 298 +1 304 +} +yPoints { +0 137 +1 142 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 142 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 298 +1 304 +} +yPoints { +0 142 +1 147 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 98 +w 6 +h 50 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 40 +w 40 +h 20 + +beginGroup + +endGroup + +endObjectProperties + + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 181 +y 186 +w 58 +h 58 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 301 +y 106 +w 58 +h 58 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 150 +y 42 +w 50 +h 12 +controlPv "$(P)$(mY1).RBV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 121 +y 325 +w 50 +h 12 +controlPv "$(P)$(mX1).RBV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 39168 65280 65280 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 236 +y 281 +w 50 +h 12 +controlPv "$(P)$(mZ2).RBV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 39168 65280 65280 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 172 +y 131 +w 50 +h 12 +controlPv "$(P)$(mTH1).RBV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 39168 65280 65280 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 322 +y 49 +w 50 +h 12 +controlPv "$(P)$(mTH2).RBV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 39168 65280 65280 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 437 +y 45 +w 50 +h 12 +controlPv "$(P)$(mY2).RBV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 39168 65280 65280 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 415 +y 298 +w 50 +h 12 +controlPv "$(P)$(mX2).RBV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 39168 65280 65280 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 150 +y 30 +w 50 +h 12 +controlPv "$(P)$(mY1).DESC" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 0 +w 500 +h 25 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Prototype Monochromator" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 174 +y 223 +w 10 +h 18 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 3 { +xPoints { +0 175 +1 183 +2 176 +} +yPoints { +0 224 +1 240 +2 236 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 173 +y 189 +w 13 +h 18 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 4 { +xPoints { +0 174 +1 174 +2 185 +3 179 +} +yPoints { +0 206 +1 206 +2 190 +3 193 +} +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 411 +y 94 +w 9 +h 102 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 94 +w 8 +h 100 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 121 +y 92 +w 9 +h 102 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 92 +w 8 +h 100 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 226 +y 145 +w 25 +h 30 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 176 +w 6 +h 50 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 176 +w 5 +h 49 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 203 +y 150 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 6 +numDsps 3 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl + 2 motorx_all.edl +} +menuLabel { + 0 mTheta1 (S) + 1 mTheta1 (M) + 2 mTheta1 (L) +} +symbols { + 0 "P=$(P),M=$(mTH1)" + 1 "P=$(P),M=$(mTH1)" + 2 "P=$(P),M=$(mTH1)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 125 +y 40 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mY1).TWF" +pressValue "1" +releaseValue "0" +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 105 +y 40 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mY1).TWR" +pressValue "1" +releaseValue "0" +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 115 +y 300 +w 42 +h 20 + +beginGroup + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 137 +y 300 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 6 +numDsps 3 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl + 2 motorx_all.edl +} +menuLabel { + 0 mX1 (S) + 1 mX1 (M) + 2 mX1 (L) +} +symbols { + 0 "P=$(P),M=$(mX1)" + 1 "P=$(P),M=$(mX1)" + 2 "P=$(P),M=$(mX1)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 184 +y 300 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 6 +numDsps 3 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl + 2 motorx_all.edl +} +menuLabel { + 0 mZ2 (S) + 1 mZ2 (M) + 2 mZ2 (L) +} +symbols { + 0 "P=$(P),M=$(mZ2)" + 1 "P=$(P),M=$(mZ2)" + 2 "P=$(P),M=$(mZ2)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 431 +y 268 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 6 +numDsps 3 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl + 2 motorx_all.edl +} +menuLabel { + 0 mX2 (S) + 1 mX2 (M) + 2 mX2 (L) +} +symbols { + 0 "P=$(P),M=$(mX2)" + 1 "P=$(P),M=$(mX2)" + 2 "P=$(P),M=$(mX2)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 432 +y 67 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 6 +numDsps 3 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl + 2 motorx_all.edl +} +menuLabel { + 0 mY2 (S) + 1 mY2 (M) + 2 mY2 (L) +} +symbols { + 0 "P=$(P),M=$(mY2)" + 1 "P=$(P),M=$(mY2)" + 2 "P=$(P),M=$(mY2)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 141 +y 61 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 6 +numDsps 3 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl + 2 motorx_all.edl +} +menuLabel { + 0 mY1 (S) + 1 mY1 (M) + 2 mY1 (L) +} +symbols { + 0 "P=$(P),M=$(mY1)" + 1 "P=$(P),M=$(mY1)" + 2 "P=$(P),M=$(mY1)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 315 +y 71 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 6 +numDsps 3 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl + 2 motorx_all.edl +} +menuLabel { + 0 mTheta2 (S) + 1 mTheta2 (M) + 2 mTheta2 (L) +} +symbols { + 0 "P=$(P),M=$(mTH2)" + 1 "P=$(P),M=$(mTH2)" + 2 "P=$(P),M=$(mTH2)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 +} +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 98 +w 6 +h 50 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 98 +w 5 +h 49 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 40 +w 40 +h 20 + +beginGroup + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 40 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mTH2).TWR" +pressValue "1" +releaseValue "0" +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 300 +y 40 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mTH2).TWF" +pressValue "1" +releaseValue "0" +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +endGroup + +endObjectProperties + + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 395 +y 41 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mY2).TWR" +pressValue "1" +releaseValue "0" +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 415 +y 41 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mY2).TWF" +pressValue "1" +releaseValue "0" +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 218 +y 125 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mTH1).TWR" +pressValue "1" +releaseValue "0" +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 238 +y 125 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mTH1).TWF" +pressValue "1" +releaseValue "0" +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 195 +y 279 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mZ2).TWR" +pressValue "1" +releaseValue "0" +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 215 +y 279 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mZ2).TWF" +pressValue "1" +releaseValue "0" +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 75 +y 301 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mX1).TWR" +pressValue "1" +releaseValue "0" +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 95 +y 301 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mX1).TWF" +pressValue "1" +releaseValue "0" +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 370 +y 269 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mX2).TWR" +pressValue "1" +releaseValue "0" +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 390 +y 269 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mX2).TWF" +pressValue "1" +releaseValue "0" +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 262 +y 195 +w 100 +h 40 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "All Stop" +offLabel "All Stop" +3d +useEnumNumeric +font "utopia-medium-r-24.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/TheBox_graphic_try.edl b/opticsApp/op/edl/autoconvert/TheBox_graphic_try.edl new file mode 100644 index 0000000..c27954f --- /dev/null +++ b/opticsApp/op/edl/autoconvert/TheBox_graphic_try.edl @@ -0,0 +1,4005 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 10 +y 10 +w 525 +h 350 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 11 +y 26 +w 496 +h 316 +lineColor rgb 47872 47872 47872 +fill +fillColor rgb 47872 47872 47872 +lineWidth 3 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 11 +y 26 +w 497 +h 317 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 3 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 74 +y 91 +w 97 +h 200 +lineColor rgb 55808 55808 55808 +fill +fillColor rgb 55808 55808 55808 +lineWidth 2 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 74 +y 91 +w 98 +h 201 +lineColor rgb 23040 23040 23040 +fillColor rgb 23040 23040 23040 +lineWidth 2 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 77 +y 179 +w 172 +h 72 +lineColor rgb 55808 55808 55808 +fill +fillColor rgb 55808 55808 55808 +lineWidth 2 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 77 +y 179 +w 173 +h 73 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 182 +y 187 +w 56 +h 56 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 2 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 181 +y 186 +w 58 +h 58 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 369 +y 93 +w 97 +h 166 +lineColor rgb 55808 55808 55808 +fill +fillColor rgb 55808 55808 55808 +lineWidth 2 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 369 +y 93 +w 98 +h 167 +lineColor rgb 23040 23040 23040 +fillColor rgb 23040 23040 23040 +lineWidth 2 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 411 +y 94 +w 9 +h 102 + +beginGroup + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 94 +w 8 +h 100 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 94 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 94 +1 99 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 100 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 100 +1 106 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 106 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 106 +1 112 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 112 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 112 +1 118 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 119 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 119 +1 124 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 125 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 125 +1 131 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 131 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 131 +1 137 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 137 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 137 +1 143 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 144 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 144 +1 150 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 150 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 150 +1 156 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 157 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 157 +1 163 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 163 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 163 +1 169 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 169 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 169 +1 175 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 175 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 175 +1 181 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 181 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 181 +1 187 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 188 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 412 +1 420 +} +yPoints { +0 188 +1 194 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 411 +y 94 +w 9 +h 102 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 121 +y 92 +w 9 +h 102 + +beginGroup + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 92 +w 8 +h 100 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 92 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 92 +1 97 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 98 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 98 +1 104 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 104 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 104 +1 110 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 110 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 110 +1 116 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 117 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 117 +1 122 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 123 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 123 +1 129 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 129 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 129 +1 135 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 135 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 135 +1 141 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 142 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 142 +1 148 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 148 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 148 +1 154 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 155 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 155 +1 161 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 161 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 161 +1 167 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 167 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 167 +1 173 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 173 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 173 +1 179 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 179 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 179 +1 185 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 186 +w 8 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 122 +1 130 +} +yPoints { +0 186 +1 192 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 121 +y 92 +w 9 +h 102 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +endGroup + +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 291 +y 98 +w 172 +h 72 +lineColor rgb 55808 55808 55808 +fill +fillColor rgb 55808 55808 55808 +lineWidth 2 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 226 +y 145 +w 25 +h 30 + +beginGroup + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 226 +y 145 +w 24 +h 29 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 221 +y 153 +w 37 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "TH1" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 197 +y 209 +w 29 +h 12 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 3 +numPoints 2 { +xPoints { +0 198 +1 224 +} +yPoints { +0 219 +1 210 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 176 +w 6 +h 50 + +beginGroup + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 176 +w 5 +h 49 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 176 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 236 +1 242 +} +yPoints { +0 176 +1 180 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 181 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 236 +1 242 +} +yPoints { +0 181 +1 186 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 186 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 236 +1 242 +} +yPoints { +0 186 +1 190 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 190 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 236 +1 242 +} +yPoints { +0 190 +1 195 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 196 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 236 +1 242 +} +yPoints { +0 196 +1 200 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 201 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 236 +1 242 +} +yPoints { +0 201 +1 205 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 205 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 236 +1 242 +} +yPoints { +0 205 +1 210 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 210 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 236 +1 242 +} +yPoints { +0 210 +1 215 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 215 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 236 +1 242 +} +yPoints { +0 215 +1 220 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 220 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 236 +1 242 +} +yPoints { +0 220 +1 225 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 176 +w 6 +h 50 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +endGroup + +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 74 +y 296 +w 98 +h 28 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 115 +y 300 +w 42 +h 20 + +beginGroup + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 116 +y 301 +w 18 +h 18 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 111 +y 303 +w 30 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "X1" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 237 +y 296 +w 248 +h 28 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 205 +y 300 +w 29 +h 19 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 205 +y 303 +w 30 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "Z2" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 369 +y 264 +w 98 +h 28 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 410 +y 269 +w 18 +h 18 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 405 +y 271 +w 30 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "X2" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 404 +y 61 +w 24 +h 29 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 402 +y 69 +w 30 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "Y2" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 114 +y 59 +w 24 +h 29 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 112 +y 67 +w 30 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "Y1" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 291 +y 98 +w 173 +h 73 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 302 +y 107 +w 56 +h 56 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 2 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 317 +y 129 +w 29 +h 12 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 3 +numPoints 2 { +xPoints { +0 318 +1 344 +} +yPoints { +0 139 +1 130 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 288 +y 66 +w 24 +h 29 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 283 +y 74 +w 37 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "TH2" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x -1 +y 212 +w 213 +h 3 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 3 +lineStyle "dash" +numPoints 2 { +xPoints { +0 210 +1 0 +} +yPoints { +0 213 +1 213 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 209 +y 135 +w 123 +h 80 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineStyle "dash" +numPoints 2 { +xPoints { +0 209 +1 331 +} +yPoints { +0 214 +1 135 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 331 +y 135 +w 190 +h 1 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineStyle "dash" +numPoints 2 { +xPoints { +0 331 +1 520 +} +yPoints { +0 135 +1 135 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 17 +y 203 +w 40 +h 6 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +numPoints 3 { +xPoints { +0 17 +1 56 +2 51 +} +yPoints { +0 208 +1 208 +2 203 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 500 +y 127 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + ">" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 98 +w 6 +h 50 + +beginGroup + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 98 +w 5 +h 49 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 98 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 298 +1 304 +} +yPoints { +0 98 +1 102 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 103 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 298 +1 304 +} +yPoints { +0 103 +1 108 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 108 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 298 +1 304 +} +yPoints { +0 108 +1 112 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 112 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 298 +1 304 +} +yPoints { +0 112 +1 117 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 118 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 298 +1 304 +} +yPoints { +0 118 +1 122 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 123 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 298 +1 304 +} +yPoints { +0 123 +1 127 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 127 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 298 +1 304 +} +yPoints { +0 127 +1 132 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 132 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 298 +1 304 +} +yPoints { +0 132 +1 137 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 137 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 298 +1 304 +} +yPoints { +0 137 +1 142 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 142 +w 5 +h 5 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 298 +1 304 +} +yPoints { +0 142 +1 147 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 98 +w 6 +h 50 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 425 +y 100 +w 20 +h 68 + +beginGroup + +endGroup + +endObjectProperties + + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 301 +y 106 +w 58 +h 58 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 21 +y 297 +w 50 +h 25 + +beginGroup + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 21 +y 307 +w 50 +h 15 +controlPv "$(P)$(mX1).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 21 +y 297 +w 50 +h 12 +controlPv "$(P)$(mX1).RBV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +endGroup + +endObjectProperties + + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 315 +y 265 +w 50 +h 12 +controlPv "$(P)$(mX2).RBV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 0 +w 500 +h 25 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Prototype Monochromator" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 178 +y 228 +w 10 +h 18 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 3 { +xPoints { +0 179 +1 187 +2 180 +} +yPoints { +0 229 +1 245 +2 241 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 179 +y 183 +w 13 +h 18 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 4 { +xPoints { +0 180 +1 180 +2 191 +3 185 +} +yPoints { +0 200 +1 200 +2 184 +3 187 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 348 +y 104 +w 19 +h 25 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 3 { +xPoints { +0 366 +1 349 +2 359 +} +yPoints { +0 128 +1 105 +2 108 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 349 +y 142 +w 18 +h 22 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 3 { +xPoints { +0 366 +1 350 +2 361 +} +yPoints { +0 143 +1 163 +2 162 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 447 +y 101 +w 6 +h 67 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 447 +y 101 +w 5 +h 25 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 5 { +xPoints { +0 448 +1 448 +2 451 +3 451 +4 451 +} +yPoints { +0 125 +1 102 +2 109 +3 109 +4 109 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 447 +y 141 +w 6 +h 27 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 3 { +xPoints { +0 448 +1 448 +2 452 +} +yPoints { +0 142 +1 167 +2 159 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 428 +y 225 +w 35 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 3 { +xPoints { +0 429 +1 462 +2 453 +} +yPoints { +0 230 +1 230 +2 226 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 371 +y 225 +w 37 +h 6 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 3 { +xPoints { +0 407 +1 372 +2 381 +} +yPoints { +0 230 +1 230 +2 226 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 393 +y 222 +w 50 +h 25 + +beginGroup + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 393 +y 232 +w 50 +h 15 +controlPv "$(P)$(mZ2).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 393 +y 222 +w 50 +h 12 +controlPv "$(P)$(mZ2).RBV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +endGroup + +endObjectProperties + + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 203 +w 50 +h 12 +controlPv "$(P)$(mTH1).RBV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 213 +w 50 +h 15 +controlPv "$(P)$(mTH1).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 315 +y 275 +w 50 +h 15 +controlPv "$(P)$(mX2).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 350 +y 131 +w 50 +h 15 +controlPv "$(P)$(mTH2).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 351 +y 121 +w 50 +h 12 +controlPv "$(P)$(mTH2).RBV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 410 +y 121 +w 50 +h 25 + +beginGroup + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 410 +y 131 +w 50 +h 15 +controlPv "$(P)$(mY2).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 410 +y 121 +w 50 +h 12 +controlPv "$(P)$(mY2).RBV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 80 +y 181 +w 50 +h 68 + +beginGroup + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 80 +y 213 +w 50 +h 15 +controlPv "$(P)$(mY1).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 80 +y 203 +w 50 +h 12 +controlPv "$(P)$(mY1).RBV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 86 +y 181 +w 7 +h 22 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 3 { +xPoints { +0 92 +1 92 +2 87 +} +yPoints { +0 202 +1 182 +2 189 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 86 +y 226 +w 7 +h 24 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 3 { +xPoints { +0 92 +1 92 +2 87 +} +yPoints { +0 227 +1 249 +2 240 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 99 +y 46 +w 50 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(mY1)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 21 +y 284 +w 50 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(mX1)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 191 +y 267 +w 50 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(mZ2)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 212 +y 132 +w 52 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(mTH1)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 275 +y 53 +w 52 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(mTH2)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 390 +y 48 +w 50 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(mY2)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 315 +y 252 +w 50 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(mX2)" +} +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 411 +y 94 +w 9 +h 102 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 94 +w 8 +h 100 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 121 +y 92 +w 9 +h 102 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 122 +y 92 +w 8 +h 100 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 226 +y 145 +w 25 +h 30 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 176 +w 6 +h 50 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 176 +w 5 +h 49 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 250 +y 145 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 6 +numDsps 3 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl + 2 motorx_all.edl +} +menuLabel { + 0 mTheta1 (S) + 1 mTheta1 (M) + 2 mTheta1 (L) +} +symbols { + 0 "P=$(P),M=$(mTH1)" + 1 "P=$(P),M=$(mTH1)" + 2 "P=$(P),M=$(mTH1)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 +} +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 115 +y 300 +w 42 +h 20 + +beginGroup + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 137 +y 300 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 6 +numDsps 3 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl + 2 motorx_all.edl +} +menuLabel { + 0 mX1 (S) + 1 mX1 (M) + 2 mX1 (L) +} +symbols { + 0 "P=$(P),M=$(mX1)" + 1 "P=$(P),M=$(mX1)" + 2 "P=$(P),M=$(mX1)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 205 +y 279 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 6 +numDsps 3 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl + 2 motorx_all.edl +} +menuLabel { + 0 mZ2 (S) + 1 mZ2 (M) + 2 mZ2 (L) +} +symbols { + 0 "P=$(P),M=$(mZ2)" + 1 "P=$(P),M=$(mZ2)" + 2 "P=$(P),M=$(mZ2)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 431 +y 268 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 6 +numDsps 3 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl + 2 motorx_all.edl +} +menuLabel { + 0 mX2 (S) + 1 mX2 (M) + 2 mX2 (L) +} +symbols { + 0 "P=$(P),M=$(mX2)" + 1 "P=$(P),M=$(mX2)" + 2 "P=$(P),M=$(mX2)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 430 +y 61 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 6 +numDsps 3 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl + 2 motorx_all.edl +} +menuLabel { + 0 mY2 (S) + 1 mY2 (M) + 2 mY2 (L) +} +symbols { + 0 "P=$(P),M=$(mY2)" + 1 "P=$(P),M=$(mY2)" + 2 "P=$(P),M=$(mY2)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 138 +y 59 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 6 +numDsps 3 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl + 2 motorx_all.edl +} +menuLabel { + 0 mY1 (S) + 1 mY1 (M) + 2 mY1 (L) +} +symbols { + 0 "P=$(P),M=$(mY1)" + 1 "P=$(P),M=$(mY1)" + 2 "P=$(P),M=$(mY1)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 313 +y 66 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 6 +numDsps 3 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl + 2 motorx_all.edl +} +menuLabel { + 0 mTheta2 (S) + 1 mTheta2 (M) + 2 mTheta2 (L) +} +symbols { + 0 "P=$(P),M=$(mTH2)" + 1 "P=$(P),M=$(mTH2)" + 2 "P=$(P),M=$(mTH2)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 +} +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 98 +w 6 +h 50 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 298 +y 98 +w 5 +h 49 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 366 +y 148 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mTH2).TWR" +pressValue "1" +releaseValue "0" +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 366 +y 100 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mTH2).TWF" +pressValue "1" +releaseValue "0" +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 425 +y 100 +w 20 +h 68 + +beginGroup + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 425 +y 148 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mY2).TWR" +pressValue "1" +releaseValue "0" +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 425 +y 100 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mY2).TWF" +pressValue "1" +releaseValue "0" +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +endGroup + +endObjectProperties + + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 155 +y 181 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mTH1).TWR" +pressValue "1" +releaseValue "0" +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 155 +y 229 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mTH1).TWF" +pressValue "1" +releaseValue "0" +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 372 +y 236 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mZ2).TWR" +pressValue "1" +releaseValue "0" +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 443 +y 236 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mZ2).TWF" +pressValue "1" +releaseValue "0" +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 75 +y 301 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mX1).TWR" +pressValue "1" +releaseValue "0" +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 95 +y 301 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mX1).TWF" +pressValue "1" +releaseValue "0" +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 370 +y 269 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mX2).TWR" +pressValue "1" +releaseValue "0" +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 390 +y 269 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mX2).TWF" +pressValue "1" +releaseValue "0" +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 262 +y 195 +w 100 +h 40 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "All Stop" +offLabel "All Stop" +3d +useEnumNumeric +font "utopia-medium-r-24.0" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 21 +y 297 +w 50 +h 25 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 447 +y 101 +w 6 +h 67 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 393 +y 222 +w 50 +h 25 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 410 +y 121 +w 50 +h 25 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 80 +y 181 +w 50 +h 68 + +beginGroup + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 95 +y 229 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mY1).TWR" +pressValue "1" +releaseValue "0" +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 95 +y 181 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mY1).TWF" +pressValue "1" +releaseValue "0" +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +endGroup + +endObjectProperties + + diff --git a/opticsApp/op/edl/autoconvert/XIA_filter.edl b/opticsApp/op/edl/autoconvert/XIA_filter.edl new file mode 100644 index 0000000..411620a --- /dev/null +++ b/opticsApp/op/edl/autoconvert/XIA_filter.edl @@ -0,0 +1,1337 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 135 +y 338 +w 325 +h 622 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 250 +y 35 +w 35 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 15360 46080 8192 +bgColor index 3 +useDisplayBg +value { + "In" +} +visPv "CALC\\\{(A)\}($(P)$(S)Status1)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 324 +h 24 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 25 +w 324 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 322 +} +yPoints { +0 26 +1 26 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 5 +w 325 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "XIA Filters" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 35 +w 30 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "F1" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 250 +y 35 +w 35 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Out" +} +visPv "CALC\\\{(A)\}($(P)$(S)Status1)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 250 +y 55 +w 35 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 15360 46080 8192 +bgColor index 3 +useDisplayBg +value { + "In" +} +visPv "CALC\\\{(A)\}($(P)$(S)Status2)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 55 +w 30 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "F2" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 250 +y 55 +w 35 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Out" +} +visPv "CALC\\\{(A)\}($(P)$(S)Status2)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 250 +y 75 +w 35 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 15360 46080 8192 +bgColor index 3 +useDisplayBg +value { + "In" +} +visPv "CALC\\\{(A)\}($(P)$(S)Status3)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 75 +w 30 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "F3" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 250 +y 75 +w 35 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Out" +} +visPv "CALC\\\{(A)\}($(P)$(S)Status3)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 250 +y 95 +w 35 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 15360 46080 8192 +bgColor index 3 +useDisplayBg +value { + "In" +} +visPv "CALC\\\{(A)\}($(P)$(S)Status4)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 95 +w 30 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "F4" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 250 +y 95 +w 35 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Out" +} +visPv "CALC\\\{(A)\}($(P)$(S)Status4)" +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 145 +w 255 +h 14 +controlPv "$(P)$(S)writeRead.AINP" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 165 +w 280 +h 1 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +numPoints 2 { +xPoints { +0 5 +1 284 +} +yPoints { +0 165 +1 165 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 45 +y 170 +w 205 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Attenuation Control" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 50 +y 190 +w 155 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Bit Status: F1 F2 F3 F4" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 130 +y 200 +w 21 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "0" +} +visPv "CALC\\\{(A)\}($(P)$(S)Status1)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 150 +y 200 +w 21 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "0" +} +visPv "CALC\\\{(A)\}($(P)$(S)Status2)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 170 +y 200 +w 21 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "0" +} +visPv "CALC\\\{(A)\}($(P)$(S)Status3)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 190 +y 200 +w 21 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "0" +} +visPv "CALC\\\{(A)\}($(P)$(S)Status4)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 130 +y 200 +w 21 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "1" +} +visPv "CALC\\\{(A)\}($(P)$(S)Status1)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 150 +y 200 +w 21 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "1" +} +visPv "CALC\\\{(A)\}($(P)$(S)Status2)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 170 +y 200 +w 21 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "1" +} +visPv "CALC\\\{(A)\}($(P)$(S)Status3)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 190 +y 200 +w 21 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "1" +} +visPv "CALC\\\{(A)\}($(P)$(S)Status4)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 35 +w 100 +h 15 +controlPv "$(P)$(S)Status1.DESC" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 55 +w 100 +h 15 +controlPv "$(P)$(S)Status2.DESC" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 75 +w 100 +h 15 +controlPv "$(P)$(S)Status3.DESC" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 95 +w 100 +h 15 +controlPv "$(P)$(S)Status4.DESC" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 35 +w 25 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "I1" +releaseValue +onLabel "In" +offLabel "In" +3d +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 170 +y 35 +w 25 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "R1" +releaseValue +onLabel "Out" +offLabel "Out" +3d +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 55 +w 25 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "I2" +releaseValue +onLabel "In" +offLabel "In" +3d +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 170 +y 55 +w 25 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "R2" +releaseValue +onLabel "Out" +offLabel "Out" +3d +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 75 +w 25 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "I3" +releaseValue +onLabel "In" +offLabel "In" +3d +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 170 +y 75 +w 25 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "R3" +releaseValue +onLabel "Out" +offLabel "Out" +3d +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 95 +w 25 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "I4" +releaseValue +onLabel "In" +offLabel "In" +3d +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 170 +y 95 +w 25 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "R4" +releaseValue +onLabel "Out" +offLabel "Out" +3d +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 120 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "F" +releaseValue +onLabel "Filter Status" +offLabel "Filter Status" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 130 +y 120 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "Z" +releaseValue +onLabel "Clear Short Error" +offLabel "Clear Short Error" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 220 +w 190 +h 20 +fgColor rgb 9984 21504 36096 +onColor rgb 51200 51200 51200 +offColor rgb 51200 51200 51200 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "W0000" +releaseValue +onLabel "Att0 (0000)" +offLabel "Att0 (0000)" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 245 +w 190 +h 20 +fgColor rgb 9984 21504 36096 +onColor rgb 51200 51200 51200 +offColor rgb 51200 51200 51200 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "W0001" +releaseValue +onLabel "Att1 (0001)" +offLabel "Att1 (0001)" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 270 +w 190 +h 20 +fgColor rgb 9984 21504 36096 +onColor rgb 51200 51200 51200 +offColor rgb 51200 51200 51200 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "W0010" +releaseValue +onLabel "Att2 (0010)" +offLabel "Att2 (0010)" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 295 +w 190 +h 20 +fgColor rgb 9984 21504 36096 +onColor rgb 51200 51200 51200 +offColor rgb 51200 51200 51200 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "W0011" +releaseValue +onLabel "Att3 (0011)" +offLabel "Att3 (0011)" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 320 +w 190 +h 20 +fgColor rgb 9984 21504 36096 +onColor rgb 51200 51200 51200 +offColor rgb 51200 51200 51200 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "W0100" +releaseValue +onLabel "Att4 (0100)" +offLabel "Att4 (0100)" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 345 +w 190 +h 20 +fgColor rgb 9984 21504 36096 +onColor rgb 51200 51200 51200 +offColor rgb 51200 51200 51200 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "W0101" +releaseValue +onLabel "Att5 (0101)" +offLabel "Att5 (0101)" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 370 +w 190 +h 20 +fgColor rgb 9984 21504 36096 +onColor rgb 51200 51200 51200 +offColor rgb 51200 51200 51200 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "W0110" +releaseValue +onLabel "Att6 (0110)" +offLabel "Att6 (0110)" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 395 +w 190 +h 20 +fgColor rgb 9984 21504 36096 +onColor rgb 51200 51200 51200 +offColor rgb 51200 51200 51200 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "W0111" +releaseValue +onLabel "Att7 (0111)" +offLabel "Att7 (0111)" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 421 +w 190 +h 20 +fgColor rgb 9984 21504 36096 +onColor rgb 51200 51200 51200 +offColor rgb 51200 51200 51200 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "W1000" +releaseValue +onLabel "Att8 (1000)" +offLabel "Att8 (1000)" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 446 +w 190 +h 20 +fgColor rgb 9984 21504 36096 +onColor rgb 51200 51200 51200 +offColor rgb 51200 51200 51200 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "W1001" +releaseValue +onLabel "Att9 (1001)" +offLabel "Att9 (1001)" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 471 +w 190 +h 20 +fgColor rgb 9984 21504 36096 +onColor rgb 51200 51200 51200 +offColor rgb 51200 51200 51200 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "W1010" +releaseValue +onLabel "Att10 (1010)" +offLabel "Att10 (1010)" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 497 +w 190 +h 20 +fgColor rgb 9984 21504 36096 +onColor rgb 51200 51200 51200 +offColor rgb 51200 51200 51200 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "W1011" +releaseValue +onLabel "Att11 (1011)" +offLabel "Att11 (1011)" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 522 +w 190 +h 20 +fgColor rgb 9984 21504 36096 +onColor rgb 51200 51200 51200 +offColor rgb 51200 51200 51200 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "W1100" +releaseValue +onLabel "Att12 (1100)" +offLabel "Att12 (1100)" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 547 +w 190 +h 20 +fgColor rgb 9984 21504 36096 +onColor rgb 51200 51200 51200 +offColor rgb 51200 51200 51200 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "W1101" +releaseValue +onLabel "Att13 (1101)" +offLabel "Att13 (1101)" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 572 +w 190 +h 20 +fgColor rgb 9984 21504 36096 +onColor rgb 51200 51200 51200 +offColor rgb 51200 51200 51200 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "W1110" +releaseValue +onLabel "Att14 (1110)" +offLabel "Att14 (1110)" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 597 +w 190 +h 20 +fgColor rgb 9984 21504 36096 +onColor rgb 51200 51200 51200 +offColor rgb 51200 51200 51200 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "W1111" +releaseValue +onLabel "Att15 (1111)" +offLabel "Att15 (1111)" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/XIA_shutter.edl b/opticsApp/op/edl/autoconvert/XIA_shutter.edl new file mode 100644 index 0000000..fdd2b3d --- /dev/null +++ b/opticsApp/op/edl/autoconvert/XIA_shutter.edl @@ -0,0 +1,1110 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 114 +y 39 +w 325 +h 346 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 275 +y 185 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 15360 46080 8192 +bgColor index 3 +useDisplayBg +value { + "In" +} +visPv "CALC\\\{(A)\}($(P)$(S)Status4)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 275 +y 165 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 15360 46080 8192 +bgColor index 3 +useDisplayBg +value { + "In" +} +visPv "CALC\\\{(A)\}($(P)$(S)Status3)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 275 +y 145 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 15360 46080 8192 +bgColor index 3 +useDisplayBg +value { + "In" +} +visPv "CALC\\\{(A)\}($(P)$(S)Status2)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 324 +h 24 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 25 +w 324 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 322 +} +yPoints { +0 26 +1 26 +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 10 +y 301 +w 255 +h 14 +controlPv "$(P)$(S)writeRead.AINP" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 15 +y 30 +w 50 +h 10 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 15 +y 30 +w 50 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "BUSY" +} +visPv "CALC\\\{(A)\}($(P)$(S)busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 15 +y 30 +w 50 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "DONE" +} +visPv "CALC\\\{(A)\}($(P)$(S)busy)" +visMin 0 +visMax 1 +endObjectProperties + +endGroup + +endObjectProperties + + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 65 +y 40 +w 50 +h 20 +controlPv "$(P)$(S)exposeTime" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 115 +y 42 +w 32 +h 16 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "(s)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 10 +y 65 +w 255 +h 14 +controlPv "$(P)$(S)getAck.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 10 +y 80 +w 225 +h 14 +controlPv "$(P)$(S)serial.AINP" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x -4 +y 99 +w 280 +h 1 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +numPoints 2 { +xPoints { +0 -4 +1 275 +} +yPoints { +0 99 +1 99 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 275 +y 125 +w 35 +h 20 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 275 +y 125 +w 37 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Out" +} +visPv "CALC\\\{(A)\}($(P)$(S)Status1)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 275 +y 125 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 15360 46080 8192 +bgColor index 3 +useDisplayBg +value { + "In" +} +visPv "CALC\\\{(A)\}($(P)$(S)Status1)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +endGroup + +endObjectProperties + + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 275 +y 145 +w 37 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Out" +} +visPv "CALC\\\{(A)\}($(P)$(S)Status2)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 275 +y 165 +w 37 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Out" +} +visPv "CALC\\\{(A)\}($(P)$(S)Status3)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 275 +y 185 +w 37 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Out" +} +visPv "CALC\\\{(A)\}($(P)$(S)Status4)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 244 +y 30 +w 66 +h 12 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Status poll" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 5 +w 325 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "XIA Shutter" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 10 +y 320 +w 255 +h 14 +controlPv "$(P)$(S)Status.AINP" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 105 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)openShutter.PROC" +pressValue "1" +releaseValue +onLabel "Open shutter" +offLabel "Open shutter" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 105 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)closeShutter.PROC" +pressValue "1" +releaseValue +onLabel "Close shutter" +offLabel "Close shutter" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 15 +y 30 +w 50 +h 10 + +beginGroup + +endGroup + +endObjectProperties + + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 15 +y 40 +w 50 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)expose.PROC" +pressValue "1" +releaseValue +onLabel "Expose" +offLabel "Expose" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 235 +y 80 +w 30 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)serial.PROC" +pressValue "1" +releaseValue +onLabel "READ" +offLabel "READ" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 215 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "H" +releaseValue +onLabel "Shutter status" +offLabel "Shutter status" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 215 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "L" +releaseValue +onLabel "Forbid Local Ctrl" +offLabel "Forbid Local Ctrl" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 125 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "I1" +releaseValue +onLabel "Insert Filter 1" +offLabel "Insert Filter 1" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 145 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "I2" +releaseValue +onLabel "Insert Filter 2" +offLabel "Insert Filter 2" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 125 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "R1" +releaseValue +onLabel "Remove Filter 1" +offLabel "Remove Filter 1" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 145 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "R2" +releaseValue +onLabel "Remove Filter 2" +offLabel "Remove Filter 2" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 235 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "2" +releaseValue +onLabel "Enable shutter" +offLabel "Enable shutter" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 255 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "4" +releaseValue +onLabel "Disable shutter" +offLabel "Disable shutter" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 275 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "F" +releaseValue +onLabel "Filter Status" +offLabel "Filter Status" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 275 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "P" +releaseValue +onLabel "Position Query" +offLabel "Position Query" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 235 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "U" +releaseValue +onLabel "Allow Local Ctrl" +offLabel "Allow Local Ctrl" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 255 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "Z" +releaseValue +onLabel "Clear Short Error" +offLabel "Clear Short Error" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 165 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "I3" +releaseValue +onLabel "Insert Filter 3" +offLabel "Insert Filter 3" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 185 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "I4" +releaseValue +onLabel "Insert Filter 4" +offLabel "Insert Filter 4" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 165 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "R3" +releaseValue +onLabel "Remove Filter 3" +offLabel "Remove Filter 3" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 185 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "R4" +releaseValue +onLabel "Remove Filter 4" +offLabel "Remove Filter 4" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 238 +y 42 +w 80 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(S)poll.SCAN" +indicatorPv "$(P)$(S)poll.SCAN" +font "helvetica-medium-r-12.0" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 275 +y 125 +w 35 +h 20 + +beginGroup + +endGroup + +endObjectProperties + + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 275 +y 315 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 10240 37632 5376 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Less" +numPvs 2 +numDsps 1 +displayFileName { + 0 XIA_shutter_more.edl +} +menuLabel { + 0 XIA shutter (small) +} +symbols { + 0 "P=$(P),S=$(S)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/XIA_shutterTry.edl b/opticsApp/op/edl/autoconvert/XIA_shutterTry.edl new file mode 100644 index 0000000..978aadb --- /dev/null +++ b/opticsApp/op/edl/autoconvert/XIA_shutterTry.edl @@ -0,0 +1,1136 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 74 +y 98 +w 325 +h 340 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 324 +h 24 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 25 +w 324 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 322 +} +yPoints { +0 26 +1 26 +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 10 +y 300 +w 255 +h 14 +controlPv "$(P)$(S):UserCmd_IO.AINP" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 10 +y 65 +w 255 +h 14 +controlPv "$(P)$(S):expose_IO.AINP" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 10 +y 80 +w 255 +h 14 +controlPv "$(P)$(S):exposeDone_IO.AINP" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x -4 +y 99 +w 280 +h 1 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +numPoints 2 { +xPoints { +0 -4 +1 275 +} +yPoints { +0 99 +1 99 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 244 +y 30 +w 66 +h 12 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Status poll" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 5 +w 325 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "XIA Shutter" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 70 +y 320 +w 50 +h 20 +controlPv "$(P)$(S):address" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 15 +y 320 +w 50 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "MODULE" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 15 +y 330 +w 50 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "ADDRESS" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 65 +y 40 +w 50 +h 20 +controlPv "$(P)$(S):exposeTime" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 115 +y 42 +w 32 +h 16 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "(s)" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 40 +w 80 +h 20 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 136 +y 40 +w 88 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 13056 39168 0 +bgColor index 3 +useDisplayBg +value { + "EXPOSING" +} +visPv "CALC\\\{(A)\}($(P)$(S):busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 140 +y 40 +w 80 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor index 3 +useDisplayBg +value { + "DONE" +} +visPv "CALC\\\{(A)\}($(P)$(S):busy)" +visMin 0 +visMax 1 +endObjectProperties + +endGroup + +endObjectProperties + + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 275 +y 185 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 15360 46080 8192 +bgColor index 3 +useDisplayBg +value { + "In" +} +visPv "CALC\\\{(A)\}($(P)$(S):Status4)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 275 +y 165 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 15360 46080 8192 +bgColor index 3 +useDisplayBg +value { + "In" +} +visPv "CALC\\\{(A)\}($(P)$(S):Status3)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 275 +y 145 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 15360 46080 8192 +bgColor index 3 +useDisplayBg +value { + "In" +} +visPv "CALC\\\{(A)\}($(P)$(S):Status2)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 275 +y 125 +w 37 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Out" +} +visPv "CALC\\\{(A)\}($(P)$(S):Status1)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 275 +y 125 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 15360 46080 8192 +bgColor index 3 +useDisplayBg +value { + "In" +} +visPv "CALC\\\{(A)\}($(P)$(S):Status1)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 275 +y 145 +w 37 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Out" +} +visPv "CALC\\\{(A)\}($(P)$(S):Status2)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 275 +y 165 +w 37 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Out" +} +visPv "CALC\\\{(A)\}($(P)$(S):Status3)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 275 +y 185 +w 37 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Out" +} +visPv "CALC\\\{(A)\}($(P)$(S):Status4)" +visMin 0 +visMax 1 +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 215 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):sendCommand.VAL" +pressValue "H" +releaseValue +onLabel "Shutter status" +offLabel "Shutter status" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 215 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):sendCommand.VAL" +pressValue "L" +releaseValue +onLabel "Forbid Local Ctrl" +offLabel "Forbid Local Ctrl" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 235 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):sendCommand.VAL" +pressValue "2" +releaseValue +onLabel "Enable shutter" +offLabel "Enable shutter" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 255 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):sendCommand.VAL" +pressValue "4" +releaseValue +onLabel "Disable shutter" +offLabel "Disable shutter" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 275 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):sendCommand.VAL" +pressValue "F" +releaseValue +onLabel "Filter Status" +offLabel "Filter Status" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 275 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):sendCommand.VAL" +pressValue "P" +releaseValue +onLabel "Position Query" +offLabel "Position Query" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 235 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):sendCommand.VAL" +pressValue "U" +releaseValue +onLabel "Allow Local Ctrl" +offLabel "Allow Local Ctrl" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 255 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):sendCommand.VAL" +pressValue "Z" +releaseValue +onLabel "Clear Short Error" +offLabel "Clear Short Error" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 285 +y 300 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 10240 37632 5376 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Less" +numPvs 2 +numDsps 1 +displayFileName { + 0 XIA_shutterTry_more.edl +} +menuLabel { + 0 XIA shutter (small) +} +symbols { + 0 "P=$(P),S=$(S)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 238 +y 42 +w 80 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(S):poll.SCAN" +indicatorPv "$(P)$(S):poll.SCAN" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 285 +y 320 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 10240 37632 5376 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "More" +numPvs 8 +numDsps 4 +displayFileName { + 0 asynOctet.edl + 1 asynOctet.edl + 2 asynOctet.edl + 3 asynOctet.edl +} +menuLabel { + 0 filterStatus asyn + 1 exposeCmd asyn + 2 UserCmd_IO + 3 exposeDone asyn +} +symbols { + 0 "P=$(P),R=$(S):writeRead" + 1 "P=$(P),R=$(S):expose_IO" + 2 "P=$(P),R=$(S):UserCmd_IO" + 3 "P=$(P),R=$(S):exposeDone_IO" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 15 +y 40 +w 50 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):expose.PROC" +pressValue "1" +releaseValue +onLabel "Expose" +offLabel "Expose" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 40 +w 80 +h 20 + +beginGroup + +endGroup + +endObjectProperties + + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 105 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):openShutter.PROC" +pressValue "1" +releaseValue +onLabel "Open shutter" +offLabel "Open shutter" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 105 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):closeShutter.PROC" +pressValue "1" +releaseValue +onLabel "Close shutter" +offLabel "Close shutter" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 125 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):sendCommand.VAL" +pressValue "I1" +releaseValue +onLabel "Insert Filter 1" +offLabel "Insert Filter 1" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 145 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):sendCommand.VAL" +pressValue "I2" +releaseValue +onLabel "Insert Filter 2" +offLabel "Insert Filter 2" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 125 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):sendCommand.VAL" +pressValue "R1" +releaseValue +onLabel "Remove Filter 1" +offLabel "Remove Filter 1" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 145 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):sendCommand.VAL" +pressValue "R2" +releaseValue +onLabel "Remove Filter 2" +offLabel "Remove Filter 2" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 165 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):sendCommand.VAL" +pressValue "I3" +releaseValue +onLabel "Insert Filter 3" +offLabel "Insert Filter 3" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 185 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):sendCommand.VAL" +pressValue "I4" +releaseValue +onLabel "Insert Filter 4" +offLabel "Insert Filter 4" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 165 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):sendCommand.VAL" +pressValue "R3" +releaseValue +onLabel "Remove Filter 3" +offLabel "Remove Filter 3" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 185 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):sendCommand.VAL" +pressValue "R4" +releaseValue +onLabel "Remove Filter 4" +offLabel "Remove Filter 4" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/XIA_shutterTry_more.edl b/opticsApp/op/edl/autoconvert/XIA_shutterTry_more.edl new file mode 100644 index 0000000..a0a32b5 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/XIA_shutterTry_more.edl @@ -0,0 +1,802 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 75 +y 477 +w 310 +h 190 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 309 +h 24 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 25 +w 310 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 308 +} +yPoints { +0 26 +1 26 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 4 +w 310 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "XIA Shutter" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 65 +y 170 +w 50 +h 20 +controlPv "$(P)$(S):address" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 170 +w 50 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "MODULE" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 180 +w 50 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "ADDRESS" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 65 +y 40 +w 50 +h 20 +controlPv "$(P)$(S):exposeTime" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 115 +y 42 +w 32 +h 16 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "(s)" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 40 +w 80 +h 20 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 136 +y 40 +w 88 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 13056 39168 0 +bgColor index 3 +useDisplayBg +value { + "EXPOSING" +} +visPv "CALC\\\{(A)\}($(P)$(S):busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 140 +y 40 +w 80 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor index 3 +useDisplayBg +value { + "DONE" +} +visPv "CALC\\\{(A)\}($(P)$(S):busy)" +visMin 0 +visMax 1 +endObjectProperties + +endGroup + +endObjectProperties + + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 275 +y 145 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 15360 46080 8192 +bgColor index 3 +useDisplayBg +value { + "In" +} +visPv "CALC\\\{(A)\}($(P)$(S):Status4)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 275 +y 125 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 15360 46080 8192 +bgColor index 3 +useDisplayBg +value { + "In" +} +visPv "CALC\\\{(A)\}($(P)$(S):Status3)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 275 +y 105 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 15360 46080 8192 +bgColor index 3 +useDisplayBg +value { + "In" +} +visPv "CALC\\\{(A)\}($(P)$(S):Status2)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 275 +y 85 +w 37 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Out" +} +visPv "CALC\\\{(A)\}($(P)$(S):Status1)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 275 +y 85 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 15360 46080 8192 +bgColor index 3 +useDisplayBg +value { + "In" +} +visPv "CALC\\\{(A)\}($(P)$(S):Status1)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 275 +y 105 +w 37 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Out" +} +visPv "CALC\\\{(A)\}($(P)$(S):Status2)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 275 +y 125 +w 37 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Out" +} +visPv "CALC\\\{(A)\}($(P)$(S):Status3)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 275 +y 145 +w 37 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Out" +} +visPv "CALC\\\{(A)\}($(P)$(S):Status4)" +visMin 0 +visMax 1 +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 230 +y 170 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 10240 37632 5376 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Less" +numPvs 2 +numDsps 1 +displayFileName { + 0 XIA_shutterTry_small.edl +} +menuLabel { + 0 XIA shutter (small) +} +symbols { + 0 "P=$(P),S=$(S)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 270 +y 170 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 10240 37632 5376 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "More" +numPvs 2 +numDsps 1 +displayFileName { + 0 XIA_shutterTry.edl +} +menuLabel { + 0 XIA shutter (small) +} +symbols { + 0 "P=$(P),S=$(S)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 15 +y 40 +w 50 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):expose.PROC" +pressValue "1" +releaseValue +onLabel "Expose" +offLabel "Expose" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 40 +w 80 +h 20 + +beginGroup + +endGroup + +endObjectProperties + + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 65 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):openShutter.PROC" +pressValue "1" +releaseValue +onLabel "Open shutter" +offLabel "Open shutter" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 65 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):closeShutter.PROC" +pressValue "1" +releaseValue +onLabel "Close shutter" +offLabel "Close shutter" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 85 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):sendCommand.VAL" +pressValue "I1" +releaseValue +onLabel "Insert Filter 1" +offLabel "Insert Filter 1" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 105 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):sendCommand.VAL" +pressValue "I2" +releaseValue +onLabel "Insert Filter 2" +offLabel "Insert Filter 2" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 85 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):sendCommand.VAL" +pressValue "R1" +releaseValue +onLabel "Remove Filter 1" +offLabel "Remove Filter 1" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 105 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):sendCommand.VAL" +pressValue "R2" +releaseValue +onLabel "Remove Filter 2" +offLabel "Remove Filter 2" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 125 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):sendCommand.VAL" +pressValue "I3" +releaseValue +onLabel "Insert Filter 3" +offLabel "Insert Filter 3" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 145 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):sendCommand.VAL" +pressValue "I4" +releaseValue +onLabel "Insert Filter 4" +offLabel "Insert Filter 4" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 125 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):sendCommand.VAL" +pressValue "R3" +releaseValue +onLabel "Remove Filter 3" +offLabel "Remove Filter 3" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 145 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):sendCommand.VAL" +pressValue "R4" +releaseValue +onLabel "Remove Filter 4" +offLabel "Remove Filter 4" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/XIA_shutterTry_small.edl b/opticsApp/op/edl/autoconvert/XIA_shutterTry_small.edl new file mode 100644 index 0000000..ad4a054 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/XIA_shutterTry_small.edl @@ -0,0 +1,326 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 420 +y 707 +w 280 +h 90 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 279 +h 24 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 25 +w 281 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 279 +} +yPoints { +0 26 +1 26 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 5 +w 280 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "XIA Shutter" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 65 +y 40 +w 50 +h 20 +controlPv "$(P)$(S):exposeTime" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 115 +y 42 +w 32 +h 16 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "(s)" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 40 +w 80 +h 20 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 136 +y 40 +w 88 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 13056 39168 0 +bgColor index 3 +useDisplayBg +value { + "EXPOSING" +} +visPv "CALC\\\{(A)\}($(P)$(S):busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 140 +y 40 +w 80 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor index 3 +useDisplayBg +value { + "DONE" +} +visPv "CALC\\\{(A)\}($(P)$(S):busy)" +visMin 0 +visMax 1 +endObjectProperties + +endGroup + +endObjectProperties + + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 65 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):openShutter.PROC" +pressValue "1" +releaseValue +onLabel "Open shutter" +offLabel "Open shutter" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 65 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):closeShutter.PROC" +pressValue "1" +releaseValue +onLabel "Close shutter" +offLabel "Close shutter" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 230 +y 30 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 10240 37632 5376 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "More" +numPvs 2 +numDsps 1 +displayFileName { + 0 XIA_shutterTry_more.edl +} +menuLabel { + 0 XIA shutter (all) +} +symbols { + 0 "P=$(P),S=$(S)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 15 +y 40 +w 50 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S):expose.PROC" +pressValue "1" +releaseValue +onLabel "Expose" +offLabel "Expose" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 40 +w 80 +h 20 + +beginGroup + +endGroup + +endObjectProperties + + diff --git a/opticsApp/op/edl/autoconvert/XIA_shutter_more.edl b/opticsApp/op/edl/autoconvert/XIA_shutter_more.edl new file mode 100644 index 0000000..3d8cfb8 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/XIA_shutter_more.edl @@ -0,0 +1,556 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 192 +y 160 +w 280 +h 170 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 279 +h 24 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 25 +w 281 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 279 +} +yPoints { +0 26 +1 26 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 15 +y 30 +w 50 +h 10 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 15 +y 30 +w 50 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "BUSY" +} +visPv "CALC\\\{(A)\}($(P)$(S)busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 15 +y 30 +w 50 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "DONE" +} +visPv "CALC\\\{(A)\}($(P)$(S)busy)" +visMin 0 +visMax 1 +endObjectProperties + +endGroup + +endObjectProperties + + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 65 +y 40 +w 50 +h 20 +controlPv "$(P)$(S)exposeTime" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 115 +y 42 +w 32 +h 16 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "(s)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 5 +w 280 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "XIA Shutter" +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 65 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)openShutter.PROC" +pressValue "1" +releaseValue +onLabel "Open shutter" +offLabel "Open shutter" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 65 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)closeShutter.PROC" +pressValue "1" +releaseValue +onLabel "Close shutter" +offLabel "Close shutter" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 15 +y 30 +w 50 +h 10 + +beginGroup + +endGroup + +endObjectProperties + + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 15 +y 40 +w 50 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)expose.PROC" +pressValue "1" +releaseValue +onLabel "Expose" +offLabel "Expose" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 85 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "I1" +releaseValue +onLabel "Insert Filter 1" +offLabel "Insert Filter 1" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 105 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "I2" +releaseValue +onLabel "Insert Filter 2" +offLabel "Insert Filter 2" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 85 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "R1" +releaseValue +onLabel "Remove Filter 1" +offLabel "Remove Filter 1" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 105 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "R2" +releaseValue +onLabel "Remove Filter 2" +offLabel "Remove Filter 2" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 125 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "I3" +releaseValue +onLabel "Insert Filter 3" +offLabel "Insert Filter 3" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 145 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "I4" +releaseValue +onLabel "Insert Filter 4" +offLabel "Insert Filter 4" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 125 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "R3" +releaseValue +onLabel "Remove Filter 3" +offLabel "Remove Filter 3" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 145 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)sendCommand.VAL" +pressValue "R4" +releaseValue +onLabel "Remove Filter 4" +offLabel "Remove Filter 4" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 190 +y 30 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 10240 37632 5376 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Less" +numPvs 2 +numDsps 1 +displayFileName { + 0 XIA_shutter_small.edl +} +menuLabel { + 0 XIA shutter (small) +} +symbols { + 0 "P=$(P),S=$(S)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 230 +y 30 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 10240 37632 5376 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "More" +numPvs 2 +numDsps 1 +displayFileName { + 0 XIA_shutter.edl +} +menuLabel { + 0 XIA shutter (small) +} +symbols { + 0 "P=$(P),S=$(S)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/XIA_shutter_small.edl b/opticsApp/op/edl/autoconvert/XIA_shutter_small.edl new file mode 100644 index 0000000..cdaa8af --- /dev/null +++ b/opticsApp/op/edl/autoconvert/XIA_shutter_small.edl @@ -0,0 +1,326 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 192 +y 31 +w 280 +h 90 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 279 +h 24 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 25 +w 281 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 279 +} +yPoints { +0 26 +1 26 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 15 +y 30 +w 50 +h 10 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 15 +y 30 +w 50 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "BUSY" +} +visPv "CALC\\\{(A)\}($(P)$(S)busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 15 +y 30 +w 50 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "DONE" +} +visPv "CALC\\\{(A)\}($(P)$(S)busy)" +visMin 0 +visMax 1 +endObjectProperties + +endGroup + +endObjectProperties + + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 65 +y 40 +w 50 +h 20 +controlPv "$(P)$(S)exposeTime" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 115 +y 42 +w 32 +h 16 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "(s)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 5 +w 280 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "XIA Shutter" +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 65 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)openShutter.PROC" +pressValue "1" +releaseValue +onLabel "Open shutter" +offLabel "Open shutter" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 65 +w 120 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)closeShutter.PROC" +pressValue "1" +releaseValue +onLabel "Close shutter" +offLabel "Close shutter" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 15 +y 30 +w 50 +h 10 + +beginGroup + +endGroup + +endObjectProperties + + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 15 +y 40 +w 50 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(S)expose.PROC" +pressValue "1" +releaseValue +onLabel "Expose" +offLabel "Expose" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 230 +y 30 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 10240 37632 5376 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "More" +numPvs 2 +numDsps 1 +displayFileName { + 0 XIA_shutter_more.edl +} +menuLabel { + 0 XIA shutter (all) +} +symbols { + 0 "P=$(P),S=$(S)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/bProtect.edl b/opticsApp/op/edl/autoconvert/bProtect.edl new file mode 100644 index 0000000..ee39fda --- /dev/null +++ b/opticsApp/op/edl/autoconvert/bProtect.edl @@ -0,0 +1,66 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 10 +y 10 +w 100 +h 70 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 47872 47872 47872 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "bProtect" +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 20 +w 100 +h 50 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)bProtect.VAL" +font "helvetica-medium-r-10.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/fb_epid.edl b/opticsApp/op/edl/autoconvert/fb_epid.edl new file mode 100644 index 0000000..cfc8778 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/fb_epid.edl @@ -0,0 +1,1543 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 26 +y 59 +w 518 +h 330 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 47872 49408 34560 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 16 +y 4 +w 200 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "fb_epid.adl" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 16 +y 14 +w 200 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "last update: 2012-03-01 (prj)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 164 +y 3 +w 340 +h 24 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "feedback $(P)" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 64 +w 496 +h 88 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 4 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 37 +y 57 +w 139 +h 13 +lineColor rgb 47872 49408 34560 +fill +fillColor rgb 47872 49408 34560 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 47 +y 57 +w 120 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "EPID input" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 49 +y 99 +w 102 +h 14 +controlPv "$(P).CVAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 49 +y 77 +w 103 +h 16 +controlPv "$(P).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 15 +y 99 +w 19 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "-" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 36 +y 119 +w 121 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 37 +1 156 +} +yPoints { +0 120 +1 120 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 156 +y 126 +w 160 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "following error (FE)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 49 +y 126 +w 102 +h 14 +controlPv "$(P).ERR" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 166 +w 496 +h 126 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 4 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 37 +y 159 +w 139 +h 13 +lineColor rgb 47872 49408 34560 +fill +fillColor rgb 47872 49408 34560 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 47 +y 159 +w 120 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "EPID output" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 141 +y 257 +w 124 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 142 +1 264 +} +yPoints { +0 258 +1 258 +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 153 +y 265 +w 100 +h 14 +controlPv "$(P).OVAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 122 +y 265 +w 28 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "<=" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 256 +y 265 +w 28 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "<=" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 39 +y 264 +w 80 +h 16 +controlPv "$(P).DRVL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 287 +y 264 +w 80 +h 16 +controlPv "$(P).DRVH" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 244 +y 198 +w 22 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "P" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 145 +y 198 +w 14 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 244 +y 238 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "D" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 142 +y 238 +w 21 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "+" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 247 +y 217 +w 17 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "I" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 142 +y 217 +w 21 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "+" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 4 +y 197 +w 30 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "KP" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 38 +y 217 +w 80 +h 16 +controlPv "$(P).KI" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 218 +w 25 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "KI" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 39 +y 238 +w 80 +h 16 +controlPv "$(P).KD" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 3 +y 238 +w 31 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "KD" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 38 +y 196 +w 80 +h 16 +controlPv "$(P).KP" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 4 +y 197 +w 30 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "KP" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 247 +y 217 +w 17 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "I" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 142 +y 217 +w 21 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "+" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 244 +y 198 +w 22 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "P" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 145 +y 198 +w 14 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 244 +y 238 +w 23 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "D" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 142 +y 238 +w 21 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "+" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 125 +y 177 +w 60 +h 12 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "feedback" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 236 +y 175 +w 80 +h 14 +controlPv "$(P).FBON" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 164 +y 198 +w 80 +h 14 +controlPv "$(P).P" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 164 +y 238 +w 80 +h 14 +controlPv "$(P).D" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 164 +y 217 +w 80 +h 16 +controlPv "$(P).I" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 282 +y 220 +w 220 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "I = KP * KI * sum(FE*DT)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 282 +y 200 +w 220 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "P = KP * FE" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 282 +y 241 +w 220 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "D = KP * KD * (FE[i] - FE[i-1])/DT" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 195 +y 217 +w 21 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "0" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 195 +y 238 +w 21 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "0" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 282 +y 241 +w 220 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "D = 0" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 282 +y 220 +w 220 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "I = 0" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 282 +y 200 +w 220 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "P = KP * (INP[i] - INP[i-1])/DT" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x -4 +y 34 +w 52 +h 16 +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "DESC" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 260 +y 34 +w 44 +h 16 +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "EGU" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 395 +y 34 +w 51 +h 16 +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PREC" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 55 +y 34 +w 217 +h 18 +controlPv "$(P).DESC" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 310 +y 34 +w 92 +h 18 +controlPv "$(P).EGU" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 54272 56064 40192 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 451 +y 34 +w 46 +h 16 +controlPv "$(P).PREC" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor rgb 42496 41984 25088 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 156 +y 77 +w 160 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "set point" +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 7 +y 299 +w 120 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 35584 33280 14592 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "'enable' calc" +numPvs 2 +numDsps 1 +displayFileName { + 0 userCalc.edl +} +menuLabel { + 0 calculation +} +symbols { + 0 "P=$(P):,C=enable" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 132 +y 299 +w 83 +h 14 +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P).SCAN" +indicatorPv "$(P).SCAN" +font "helvetica-bold-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 220 +y 299 +w 50 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 10240 37632 5376 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "chart" +numPvs 2 +numDsps 1 +displayFileName { + 0 fb_epid_chart.edl +} +menuLabel { + 0 charting +} +symbols { + 0 "P=$(P)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 299 +w 50 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 10240 37632 5376 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "less" +numPvs 2 +numDsps 1 +displayFileName { + 0 fb_epid_basic.edl +} +menuLabel { + 0 basic +} +symbols { + 0 "P=$(P)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 458 +y 299 +w 50 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 10240 37632 5376 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "config" +numPvs 2 +numDsps 1 +displayFileName { + 0 fb_epid_config.edl +} +menuLabel { + 0 config +} +symbols { + 0 "P=$(P)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 156 +y 98 +w 160 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 35584 33280 14592 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "input calc" +numPvs 2 +numDsps 1 +displayFileName { + 0 userCalc.edl +} +menuLabel { + 0 calculation +} +symbols { + 0 "P=$(P):,C=in" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 339 +y 176 +w 156 +h 14 +fgColor rgb 0 0 0 +bgColor rgb 54272 56064 40192 +selectColor rgb 54272 56064 40192 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P).FMOD" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 40 +y 176 +w 80 +h 14 +fgColor rgb 65280 65280 65280 +bgColor rgb 15360 46080 8192 +selectColor rgb 15360 46080 8192 +inconsistentColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P):on" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 370 +y 263 +w 120 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 35584 33280 14592 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "output calc" +numPvs 2 +numDsps 1 +displayFileName { + 0 userCalc.edl +} +menuLabel { + 0 calculation +} +symbols { + 0 "P=$(P):,C=out" +} +replaceSymbols { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/fb_epid_basic.edl b/opticsApp/op/edl/autoconvert/fb_epid_basic.edl new file mode 100644 index 0000000..5b8a893 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/fb_epid_basic.edl @@ -0,0 +1,295 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 28 +y 59 +w 260 +h 200 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 47872 49408 34560 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 16 +y 4 +w 200 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "fb_epid_basic.adl" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 16 +y 14 +w 200 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "last update: 2012-02-28 (prj)" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 37 +y 195 +w 139 +h 13 +lineColor rgb 47872 49408 34560 +fill +fillColor rgb 47872 49408 34560 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 34 +w 240 +h 24 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "feedback $(P)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 10 +y 64 +w 240 +h 20 +controlPv "$(P).DESC" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor rgb 2560 0 47104 +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 10 +y 90 +w 240 +h 28 +controlPv "$(P).CVAL" +format "decimal" +font "utopia-medium-r-24.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 10 +y 130 +w 240 +h 28 +controlPv "$(P).VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 175 +y 170 +w 50 +h 18 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 8448 27648 0 +bgColor index 3 +useDisplayBg +value { + "On" +} +visPv "CALC\\\{(A)\}($(P).FBON)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 152 +y 166 +w 96 +h 26 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 4 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 175 +y 170 +w 50 +h 18 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Off" +} +visPv "CALC\\\{(A)\}($(P).FBON)" +visMin 0 +visMax 1 +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 4 +w 50 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 10240 37632 5376 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "more" +numPvs 2 +numDsps 1 +displayFileName { + 0 fb_epid.edl +} +menuLabel { + 0 standard screen +} +symbols { + 0 "P=$(P)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 170 +w 132 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 10240 37632 5376 +selectColor rgb 10240 37632 5376 +inconsistentColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P):on" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/fb_epid_chart.edl b/opticsApp/op/edl/autoconvert/fb_epid_chart.edl new file mode 100644 index 0000000..090981f --- /dev/null +++ b/opticsApp/op/edl/autoconvert/fb_epid_chart.edl @@ -0,0 +1,154 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 8 +y 56 +w 400 +h 400 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 47872 49408 34560 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 20 +y 6 +w 360 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P) fb_epid simulator chart" +} +endObjectProperties + +# (X-Y Graph) +object xyGraphClass +beginObjectProperties +major 4 +minor 0 +release 0 +# Geometry +x 20 +y 31 +w 360 +h 176 +# Appearance +border +plotAreaBorder +graphTitle "signal (R) & set point (Y)" +xLabel +yLabel +fgColor rgb 0 0 0 +bColor rgb 47872 47872 47872 +gridColor rgb 0 0 0 +font "helvetica-medium-r-18.0" +# Operating Modes +plotMode "plotLastNPts" +nPts 200 +# X axis properties +xAxisSrc "AutoScale" +xMax 1 +xLablePrecision 1 +# Y axis properties +showYAxis +yAxisSrc "AutoScale" +yMax 1 +# Y2 axis properties +showY2Axis +y2AxisSrc "AutoScale" +y2Max 1 +# Trace Properties +numTraces 2 +yPv { + 0 "$(P).CVAL" + 1 "$(P).VAL" +} +plotUpdateMode { + 0 "y" + 1 "y" +} +opMode { + 0 "plot" + 1 "plot" +} +plotColor { + 0 rgb 64768 0 0 + 1 rgb 63744 55808 15360 +} +endObjectProperties + +# (X-Y Graph) +object xyGraphClass +beginObjectProperties +major 4 +minor 0 +release 0 +# Geometry +x 20 +y 226 +w 360 +h 150 +# Appearance +border +plotAreaBorder +graphTitle "following error" +xLabel +yLabel +fgColor rgb 0 0 0 +bColor rgb 47872 47872 47872 +gridColor rgb 0 0 0 +font "helvetica-medium-r-18.0" +# Operating Modes +plotMode "plotLastNPts" +nPts 200 +# X axis properties +xAxisSrc "AutoScale" +xMax 1 +xLablePrecision 1 +# Y axis properties +showYAxis +yAxisSrc "AutoScale" +yMax 1 +# Y2 axis properties +showY2Axis +y2AxisSrc "AutoScale" +y2Max 1 +# Trace Properties +numTraces 1 +yPv { + 0 "$(P).ERR" +} +plotUpdateMode { + 0 "y" +} +opMode { + 0 "plot" +} +plotColor { + 0 rgb 64768 0 0 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/fb_epid_config.edl b/opticsApp/op/edl/autoconvert/fb_epid_config.edl new file mode 100644 index 0000000..9289f71 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/fb_epid_config.edl @@ -0,0 +1,875 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 106 +y 140 +w 650 +h 340 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 47872 49408 34560 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 42 +y 290 +w 500 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "The is for internal use. Do not use it!" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 16 +y 4 +w 200 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "fb_epid_control.adl" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 16 +y 14 +w 200 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "last update: 2012-03-01 (prj)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 164 +y 3 +w 340 +h 24 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "feedback $(P)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x -4 +y 35 +w 52 +h 16 +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "DESC" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 55 +y 34 +w 217 +h 18 +controlPv "$(P).DESC" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 260 +y 35 +w 44 +h 16 +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "EGU" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 310 +y 34 +w 92 +h 18 +controlPv "$(P).EGU" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 54272 56064 40192 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 399 +y 36 +w 47 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PREC" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 451 +y 35 +w 46 +h 16 +controlPv "$(P).PREC" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 42496 41984 25088 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 149 +y 59 +w 32 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "DT" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 186 +y 58 +w 90 +h 16 +controlPv "$(P).DT" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 42496 41984 25088 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 407 +y 58 +w 90 +h 16 +controlPv "$(P).MDT" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 42496 41984 25088 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 361 +y 59 +w 41 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "MDT" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 13 +y 199 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Note:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 42 +y 220 +w 500 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "This screen provides direct access to just a few of the possible" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 42 +y 240 +w 500 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "configuration variables for the fb_epid support. For access to more" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 42 +y 260 +w 500 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "capabilities, visit each calculation subscreen." +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 42 +y 310 +w 500 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "The is for internal use. Do not use it!" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 400 +y 153 +w 190 +h 16 +controlPv "$(P):enable.CALC" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 205 +y 153 +w 190 +h 16 +controlPv "$(P):enable.INAN" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 153 +w 190 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "enable calculation" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 174 +w 190 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "output signal" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 205 +y 174 +w 190 +h 16 +controlPv "$(P):out.OUTN" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 400 +y 132 +w 190 +h 16 +controlPv "$(P):in.CALC" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 205 +y 132 +w 190 +h 16 +controlPv "$(P):in.INAN" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 132 +w 190 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "input signal" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 205 +y 110 +w 190 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PV name " +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 400 +y 110 +w 190 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + " calculation" +} +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 282 +y 59 +w 83 +h 14 +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P).SCAN" +indicatorPv "$(P).SCAN" +font "helvetica-bold-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 520 +y 290 +w 120 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 47872 49408 34560 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "output buffer calc" +numPvs 2 +numDsps 1 +displayFileName { + 0 userCalc.edl +} +menuLabel { + 0 calculation +} +symbols { + 0 "P=$(P):,C=obuf" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 520 +y 310 +w 120 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 47872 49408 34560 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "resume calc" +numPvs 2 +numDsps 1 +displayFileName { + 0 userCalc.edl +} +menuLabel { + 0 calculation +} +symbols { + 0 "P=$(P):,C=resume" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 586 +y 35 +w 50 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 10240 37632 5376 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "main" +numPvs 2 +numDsps 1 +displayFileName { + 0 fb_epid.edl +} +menuLabel { + 0 main +} +symbols { + 0 "P=$(P)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 595 +y 153 +w 40 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 35584 33280 14592 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "calc" +numPvs 2 +numDsps 1 +displayFileName { + 0 userCalc.edl +} +menuLabel { + 0 calculation +} +symbols { + 0 "P=$(P):,C=enable" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 595 +y 174 +w 40 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 35584 33280 14592 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "calc" +numPvs 2 +numDsps 1 +displayFileName { + 0 userCalc.edl +} +menuLabel { + 0 calculation +} +symbols { + 0 "P=$(P):,C=out" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 595 +y 132 +w 40 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 35584 33280 14592 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "calc" +numPvs 2 +numDsps 1 +displayFileName { + 0 userCalc.edl +} +menuLabel { + 0 calculation +} +symbols { + 0 "P=$(P):,C=in" +} +replaceSymbols { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/fb_epid_sim.edl b/opticsApp/op/edl/autoconvert/fb_epid_sim.edl new file mode 100644 index 0000000..4b6dbe6 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/fb_epid_sim.edl @@ -0,0 +1,694 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 28 +y 69 +w 443 +h 300 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 47872 49408 34560 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 16 +y 4 +w 200 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "fb_epid_sim.adl" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 16 +y 14 +w 200 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "last update: 2012-02-28 (prj)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 34 +w 400 +h 24 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "feedback simulator $(P):sim" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 10 +y 64 +w 400 +h 20 +controlPv "$(P):sim.DESC" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor rgb 2560 0 47104 +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 100 +w 190 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "base temperature" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 205 +y 100 +w 190 +h 20 +controlPv "$(P):sim.A" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 150 +w 190 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "heater power" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 205 +y 150 +w 190 +h 20 +controlPv "$(P):sim.C" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 125 +w 190 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "cooling power" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 205 +y 125 +w 190 +h 20 +controlPv "$(P):sim.B" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 200 +w 190 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "relay threshold" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 205 +y 200 +w 190 +h 20 +controlPv "$(P):sim.E" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 175 +w 190 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PID output" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 205 +y 175 +w 190 +h 20 +controlPv "$(P):sim.D" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 225 +w 190 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "current temperature" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 205 +y 225 +w 190 +h 20 +controlPv "$(P):sim.F" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 250 +w 190 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "feedback ON or OFF" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 205 +y 250 +w 190 +h 20 +controlPv "$(P).FBON" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 275 +w 190 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "desired temperature" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 205 +y 275 +w 120 +h 20 +controlPv "$(P).VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 398 +y 100 +w 25 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "A" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 399 +y 125 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "B" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 398 +y 150 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "C" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 398 +y 175 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "D" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 399 +y 200 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "E" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 399 +y 225 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "F" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 398 +y 250 +w 25 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "G" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 330 +y 275 +w 90 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P).VAL" +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 324 +y 3 +w 70 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 10240 37632 5376 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "controls" +numPvs 2 +numDsps 1 +displayFileName { + 0 fb_epid.edl +} +menuLabel { + 0 basic +} +symbols { + 0 "P=$(P)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 222 +y 3 +w 70 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 10240 37632 5376 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "calc" +numPvs 2 +numDsps 1 +displayFileName { + 0 userCalc_full.edl +} +menuLabel { + 0 basic +} +symbols { + 0 "P=$(P),C=:sim" +} +replaceSymbols { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/filter_16_0_less.edl b/opticsApp/op/edl/autoconvert/filter_16_0_less.edl new file mode 100644 index 0000000..c117493 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/filter_16_0_less.edl @@ -0,0 +1,1943 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 600 +y 666 +w 680 +h 285 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 40 +w 149 +h 20 +lineColor rgb 2560 0 47104 +fill +fillColor rgb 2560 0 47104 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 245 +y 60 +w 9 +h 14 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(R)EnergySelect)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 245 +y 40 +w 9 +h 14 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(R)EnergySelect)" +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 260 +y 40 +w 85 +h 15 +controlPv "$(P)$(R)EnergyBeamline" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 260 +y 57 +w 85 +h 20 +controlPv "$(P)$(R)EnergyLocal" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 176 +y 153 +w 68 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Message:" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 250 +y 153 +w 415 +h 15 +controlPv "$(P)$(R)Message" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 570 +y 105 +w 86 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Setpoint:" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 570 +y 123 +w 95 +h 25 +controlPv "$(P)$(R)TransmissionSetpoint" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 175 +y 133 +w 60 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Mask:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 175 +y 111 +w 60 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Transm:" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 245 +y 134 +w 60 +h 13 +controlPv "$(P)$(R)FilterMask" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 245 +y 108 +w 140 +h 20 +controlPv "$(P)$(R)Transmission" +format "exponential" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 64256 62208 18944 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 175 +y 89 +w 60 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Status:" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 245 +y 86 +w 140 +h 20 +controlPv "$(P)$(R)Status" +format "string" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 65535 0 +fgAlarm +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 325 +y 134 +w 60 +h 13 +controlPv "$(P)$(R)FilterMask" +format "hex" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 310 +y 134 +w 16 +h 13 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "=" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 350 +y 40 +w 36 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "keV" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 350 +y 60 +w 36 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "keV" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 40 +w 155 +h 108 + +beginGroup + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 175 +w 680 +h 1 +lineColor rgb 17920 17920 17920 +fillColor rgb 17920 17920 17920 +numPoints 2 { +xPoints { +0 0 +1 679 +} +yPoints { +0 175 +1 175 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 40 +y 180 +w 130 +h 100 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 40 +y 180 +w 130 +h 100 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filterbox_less.edl;P=$(P),R=$(R),N1=13,N2=14,N3=15,N4=16" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filterbox_less.edl;P=$(P),R=$(R),N1=13,N2=14,N3=15,N4=16" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 180 +y 180 +w 130 +h 100 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 180 +y 180 +w 130 +h 100 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filterbox_less.edl;P=$(P),R=$(R),N1=9,N2=10,N3=11,N4=12" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filterbox_less.edl;P=$(P),R=$(R),N1=9,N2=10,N3=11,N4=12" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 375 +y 180 +w 130 +h 100 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 375 +y 180 +w 130 +h 100 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filterbox_less.edl;P=$(P),R=$(R),N1=5,N2=6,N3=7,N4=8" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filterbox_less.edl;P=$(P),R=$(R),N1=5,N2=6,N3=7,N4=8" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 515 +y 180 +w 130 +h 100 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 515 +y 180 +w 130 +h 100 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filterbox_less.edl;P=$(P),R=$(R),N1=1,N2=2,N3=3,N4=4" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filterbox_less.edl;P=$(P),R=$(R),N1=1,N2=2,N3=3,N4=4" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 5 +w 670 +h 25 +controlPv "$(P)$(R)Description" +format "decimal" +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor rgb 2560 0 47104 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 165 +y 30 +w 0 +h 145 +lineColor rgb 17920 17920 17920 +fillColor rgb 17920 17920 17920 +lineWidth 0 +numPoints 2 { +xPoints { +0 165 +1 165 +} +yPoints { +0 30 +1 175 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 44 +w 150 +h 13 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "$(P)$(R)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 95 +w 118 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "filter_16_0_less.adl" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 110 +w 118 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "2013-01-24 (CMS)" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 303 +y 188 +w 79 +h 19 + +beginGroup + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 325 +y 188 +w 35 +h 19 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 326 +y 197 +w 22 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 8448 27648 0 +bgColor index 3 +useDisplayBg +value { + "free" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 325 +y 188 +w 35 +h 10 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 325 +y 188 +w 23 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "lock" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 350 +y 188 +w 10 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "/" +} +endObjectProperties + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 303 +y 193 +w 19 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 303 +1 321 +} +yPoints { +0 193 +1 193 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 363 +y 193 +w 19 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 363 +1 381 +} +yPoints { +0 193 +1 193 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 226 +w 671 +h 15 + +beginGroup + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 226 +w 20 +h 15 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 226 +w 21 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 6 +1 25 +} +yPoints { +0 234 +1 227 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 232 +w 21 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 6 +1 25 +} +yPoints { +0 233 +1 240 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 335 +y 226 +w 20 +h 15 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 335 +y 226 +w 21 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 336 +1 355 +} +yPoints { +0 234 +1 227 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 335 +y 232 +w 21 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 336 +1 355 +} +yPoints { +0 233 +1 240 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 651 +y 226 +w 20 +h 15 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 651 +y 226 +w 21 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 652 +1 671 +} +yPoints { +0 234 +1 227 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 651 +y 232 +w 21 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 652 +1 671 +} +yPoints { +0 233 +1 240 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 233 +w 671 +h 2 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 6 +1 675 +} +yPoints { +0 234 +1 234 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 303 +y 253 +w 79 +h 20 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 303 +y 260 +w 19 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 303 +1 321 +} +yPoints { +0 260 +1 260 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 320 +y 253 +w 45 +h 20 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 320 +y 253 +w 45 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "remove" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 320 +y 263 +w 45 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "insert" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 363 +y 260 +w 19 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 363 +1 381 +} +yPoints { +0 260 +1 260 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 175 +y 40 +w 65 +h 37 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)EnergySelect" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 570 +y 40 +w 95 +h 28 +fgColor rgb 13056 39168 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "0" +releaseValue +onLabel "ALL IN" +offLabel "ALL IN" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 570 +y 70 +w 95 +h 28 +fgColor rgb 64768 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1" +releaseValue +onLabel "ALL OUT" +offLabel "ALL OUT" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 40 +w 155 +h 108 + +beginGroup + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 40 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "0.001" +releaseValue +onLabel "/1000" +offLabel "/1000" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 510 +y 40 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-2" +releaseValue +onLabel "1e-2" +offLabel "1e-2" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 510 +y 62 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-4" +releaseValue +onLabel "1e-4" +offLabel "1e-4" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 510 +y 84 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-6" +releaseValue +onLabel "1e-6" +offLabel "1e-6" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 510 +y 106 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-8" +releaseValue +onLabel "1e-8" +offLabel "1e-8" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 510 +y 128 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-10" +releaseValue +onLabel "1e-10" +offLabel "1e-10" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 62 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "0.1" +releaseValue +onLabel "/10" +offLabel "/10" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 84 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue ".5" +releaseValue +onLabel "/2" +offLabel "/2" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 106 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "0.9" +releaseValue +onLabel "-10%" +offLabel "-10%" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 128 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionStepDown" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 450 +y 128 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionStepUp" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 450 +y 40 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "1000" +releaseValue +onLabel "*1000" +offLabel "*1000" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 450 +y 62 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "10" +releaseValue +onLabel "*10" +offLabel "*10" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 450 +y 84 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "2" +releaseValue +onLabel "*2" +offLabel "*2" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 450 +y 106 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "1.1" +releaseValue +onLabel "+10%" +offLabel "+10%" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +endGroup + +endObjectProperties + + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 70 +w 70 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 22528 13312 3840 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "configure" +numPvs 2 +numDsps 1 +displayFileName { + 0 filter_drive_config.edl +} +menuLabel { + 0 configure +} +symbols { + 0 "P=$(P),R=$(R)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 70 +w 70 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 22528 13312 3840 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "more" +numPvs 2 +numDsps 1 +displayFileName { + 0 filter_16_0_more.edl +} +menuLabel { + 0 more +} +symbols { + 0 "P=$(P),R=$(R)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 303 +y 188 +w 79 +h 19 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 325 +y 188 +w 35 +h 19 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 325 +y 188 +w 35 +h 10 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 226 +w 671 +h 15 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 226 +w 20 +h 15 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 335 +y 226 +w 20 +h 15 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 651 +y 226 +w 20 +h 15 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 303 +y 253 +w 79 +h 20 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 320 +y 253 +w 45 +h 20 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + diff --git a/opticsApp/op/edl/autoconvert/filter_16_0_more.edl b/opticsApp/op/edl/autoconvert/filter_16_0_more.edl new file mode 100644 index 0000000..f2fdf1b --- /dev/null +++ b/opticsApp/op/edl/autoconvert/filter_16_0_more.edl @@ -0,0 +1,1128 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 300 +y 300 +w 680 +h 400 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 40 +w 149 +h 20 +lineColor rgb 2560 0 47104 +fill +fillColor rgb 2560 0 47104 +lineWidth 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 220 +w 680 +h 1 +lineColor rgb 17920 17920 17920 +fillColor rgb 17920 17920 17920 +numPoints 2 { +xPoints { +0 0 +1 679 +} +yPoints { +0 220 +1 220 +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 5 +w 670 +h 25 +controlPv "$(P)$(R)Description" +format "decimal" +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor rgb 2560 0 47104 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 165 +y 30 +w 0 +h 190 +lineColor rgb 17920 17920 17920 +fillColor rgb 17920 17920 17920 +lineWidth 0 +numPoints 2 { +xPoints { +0 165 +1 165 +} +yPoints { +0 30 +1 220 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 44 +w 150 +h 13 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "$(P)$(R)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 95 +w 118 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "filter_16_0_more.adl" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 110 +w 118 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "2013-01-31 (CMS)" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 40 +y 225 +w 130 +h 170 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 40 +y 225 +w 130 +h 170 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filterbox_more.edl;P=$(P),R=$(R),N1=13,N2=14,N3=15,N4=16" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filterbox_more.edl;P=$(P),R=$(R),N1=13,N2=14,N3=15,N4=16" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 180 +y 225 +w 130 +h 170 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 180 +y 225 +w 130 +h 170 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filterbox_more.edl;P=$(P),R=$(R),N1=9,N2=10,N3=11,N4=12" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filterbox_more.edl;P=$(P),R=$(R),N1=9,N2=10,N3=11,N4=12" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 375 +y 225 +w 130 +h 170 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 375 +y 225 +w 130 +h 170 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filterbox_more.edl;P=$(P),R=$(R),N1=5,N2=6,N3=7,N4=8" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filterbox_more.edl;P=$(P),R=$(R),N1=5,N2=6,N3=7,N4=8" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 515 +y 225 +w 130 +h 170 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 515 +y 225 +w 130 +h 170 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filterbox_more.edl;P=$(P),R=$(R),N1=1,N2=2,N3=3,N4=4" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filterbox_more.edl;P=$(P),R=$(R),N1=1,N2=2,N3=3,N4=4" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 303 +y 280 +w 79 +h 19 + +beginGroup + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 325 +y 280 +w 35 +h 19 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 326 +y 289 +w 22 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 8448 27648 0 +bgColor index 3 +useDisplayBg +value { + "free" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 325 +y 280 +w 35 +h 10 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 325 +y 280 +w 23 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "lock" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 350 +y 280 +w 10 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "/" +} +endObjectProperties + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 303 +y 285 +w 19 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 303 +1 321 +} +yPoints { +0 285 +1 285 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 363 +y 285 +w 19 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 363 +1 381 +} +yPoints { +0 285 +1 285 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 318 +w 671 +h 15 + +beginGroup + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 318 +w 20 +h 15 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 318 +w 21 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 6 +1 25 +} +yPoints { +0 326 +1 319 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 324 +w 21 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 6 +1 25 +} +yPoints { +0 325 +1 332 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 335 +y 318 +w 20 +h 15 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 335 +y 318 +w 21 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 336 +1 355 +} +yPoints { +0 326 +1 319 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 335 +y 324 +w 21 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 336 +1 355 +} +yPoints { +0 325 +1 332 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 651 +y 318 +w 20 +h 15 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 651 +y 318 +w 21 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 652 +1 671 +} +yPoints { +0 326 +1 319 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 651 +y 324 +w 21 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 652 +1 671 +} +yPoints { +0 325 +1 332 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 325 +w 671 +h 2 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 6 +1 675 +} +yPoints { +0 326 +1 326 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 303 +y 345 +w 79 +h 20 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 303 +y 352 +w 19 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 303 +1 321 +} +yPoints { +0 352 +1 352 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 320 +y 345 +w 45 +h 20 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 320 +y 345 +w 45 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "remove" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 320 +y 355 +w 45 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "insert" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 363 +y 352 +w 19 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 363 +1 381 +} +yPoints { +0 352 +1 352 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 175 +y 40 +w 490 +h 168 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 175 +y 40 +w 490 +h 168 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filter_drive_more.edl;P=$(P),R=$(R)" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filter_drive_more.edl;P=$(P),R=$(R)" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 70 +w 70 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 22528 13312 3840 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "configure" +numPvs 2 +numDsps 1 +displayFileName { + 0 filter_drive_config.edl +} +menuLabel { + 0 configure +} +symbols { + 0 "P=$(P),R=$(R)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 70 +w 70 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 22528 13312 3840 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "less" +numPvs 2 +numDsps 1 +displayFileName { + 0 filter_16_0_less.edl +} +menuLabel { + 0 less +} +symbols { + 0 "P=$(P),R=$(R)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 303 +y 280 +w 79 +h 19 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 325 +y 280 +w 35 +h 19 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 325 +y 280 +w 35 +h 10 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 318 +w 671 +h 15 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 318 +w 20 +h 15 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 335 +y 318 +w 20 +h 15 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 651 +y 318 +w 20 +h 15 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 303 +y 345 +w 79 +h 20 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 320 +y 345 +w 45 +h 20 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + diff --git a/opticsApp/op/edl/autoconvert/filter_4_4_less.edl b/opticsApp/op/edl/autoconvert/filter_4_4_less.edl new file mode 100644 index 0000000..f22afae --- /dev/null +++ b/opticsApp/op/edl/autoconvert/filter_4_4_less.edl @@ -0,0 +1,1796 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 300 +y 300 +w 510 +h 280 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 205 +w 114 +h 20 +lineColor rgb 2560 0 47104 +fill +fillColor rgb 2560 0 47104 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 80 +y 60 +w 9 +h 14 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(R)EnergySelect)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 80 +y 40 +w 9 +h 14 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(R)EnergySelect)" +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 95 +y 40 +w 85 +h 15 +controlPv "$(P)$(R)EnergyBeamline" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 95 +y 57 +w 85 +h 20 +controlPv "$(P)$(R)EnergyLocal" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 11 +y 153 +w 68 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Message:" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 85 +y 153 +w 415 +h 15 +controlPv "$(P)$(R)Message" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 405 +y 105 +w 86 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Setpoint:" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 405 +y 123 +w 95 +h 25 +controlPv "$(P)$(R)TransmissionSetpoint" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 133 +w 60 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Mask:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 111 +w 60 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Transm:" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 80 +y 134 +w 60 +h 13 +controlPv "$(P)$(R)FilterMask" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 80 +y 108 +w 140 +h 20 +controlPv "$(P)$(R)Transmission" +format "exponential" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 64256 62208 18944 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 89 +w 60 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Status:" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 80 +y 86 +w 140 +h 20 +controlPv "$(P)$(R)Status" +format "string" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 65535 0 +fgAlarm +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 160 +y 134 +w 60 +h 13 +controlPv "$(P)$(R)FilterMask" +format "hex" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 145 +y 134 +w 16 +h 13 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "=" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 185 +y 40 +w 36 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "keV" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 185 +y 60 +w 36 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "keV" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 235 +y 40 +w 155 +h 108 + +beginGroup + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 175 +w 515 +h 1 +lineColor rgb 17920 17920 17920 +fillColor rgb 17920 17920 17920 +numPoints 2 { +xPoints { +0 0 +1 514 +} +yPoints { +0 175 +1 175 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 180 +y 180 +w 130 +h 100 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 180 +y 180 +w 130 +h 100 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filterbox_less.edl;P=$(P),R=$(R),N1=5,N2=6,N3=7,N4=8" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filterbox_less.edl;P=$(P),R=$(R),N1=5,N2=6,N3=7,N4=8" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 355 +y 180 +w 130 +h 100 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 355 +y 180 +w 130 +h 100 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filterbox_less.edl;P=$(P),R=$(R),N1=1,N2=2,N3=3,N4=4" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filterbox_less.edl;P=$(P),R=$(R),N1=1,N2=2,N3=3,N4=4" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 5 +w 500 +h 25 +controlPv "$(P)$(R)Description" +format "decimal" +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor rgb 2560 0 47104 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 130 +y 175 +w 0 +h 110 +lineColor rgb 17920 17920 17920 +fillColor rgb 17920 17920 17920 +lineWidth 0 +numPoints 2 { +xPoints { +0 130 +1 130 +} +yPoints { +0 175 +1 285 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 182 +w 114 +h 20 +lineColor rgb 2560 0 47104 +fill +fillColor rgb 2560 0 47104 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 209 +w 115 +h 13 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "$(R)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 252 +w 118 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "filter_4_4_less.adl" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 267 +w 118 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "2013-01-24 (CMS)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 186 +w 115 +h 13 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "$(P)" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 127 +y 183 +w 62 +h 88 + +beginGroup + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 183 +w 50 +h 20 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 170 +y 193 +w 19 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 170 +1 188 +} +yPoints { +0 193 +1 193 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 183 +w 34 +h 20 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 139 +y 193 +w 22 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 8448 27648 0 +bgColor index 3 +useDisplayBg +value { + "free" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 183 +w 34 +h 10 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 163 +y 183 +w 10 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "/" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 139 +y 183 +w 23 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "lock" +} +endObjectProperties + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 127 +y 251 +w 60 +h 20 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 169 +y 260 +w 18 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 169 +1 186 +} +yPoints { +0 260 +1 260 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 127 +y 251 +w 55 +h 20 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 127 +y 251 +w 55 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "remove" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 127 +y 261 +w 55 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "insert" +} +endObjectProperties + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 330 +y 224 +w 18 +h 18 +lineColor rgb 23040 23040 23040 +fill +fillColor rgb 23040 23040 23040 +lineWidth 2 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 310 +y 226 +w 16 +h 15 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 310 +y 226 +w 18 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 311 +1 327 +} +yPoints { +0 234 +1 227 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 310 +y 232 +w 18 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 311 +1 327 +} +yPoints { +0 233 +1 240 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 486 +y 226 +w 16 +h 15 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 486 +y 226 +w 18 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 487 +1 503 +} +yPoints { +0 234 +1 227 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 486 +y 232 +w 18 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 487 +1 503 +} +yPoints { +0 233 +1 240 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 160 +y 233 +w 346 +h 2 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 161 +1 505 +} +yPoints { +0 234 +1 234 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 149 +y 221 +w 12 +h 23 +lineColor rgb 23040 23040 23040 +fill +fillColor rgb 23040 23040 23040 +lineWidth 2 +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 40 +w 65 +h 37 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)EnergySelect" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 405 +y 40 +w 95 +h 28 +fgColor rgb 13056 39168 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "0" +releaseValue +onLabel "ALL IN" +offLabel "ALL IN" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 405 +y 70 +w 95 +h 28 +fgColor rgb 64768 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1" +releaseValue +onLabel "ALL OUT" +offLabel "ALL OUT" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 235 +y 40 +w 155 +h 108 + +beginGroup + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 235 +y 40 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "0.001" +releaseValue +onLabel "/1000" +offLabel "/1000" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 345 +y 40 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-2" +releaseValue +onLabel "1e-2" +offLabel "1e-2" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 345 +y 62 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-4" +releaseValue +onLabel "1e-4" +offLabel "1e-4" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 345 +y 84 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-6" +releaseValue +onLabel "1e-6" +offLabel "1e-6" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 345 +y 106 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-8" +releaseValue +onLabel "1e-8" +offLabel "1e-8" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 345 +y 128 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-10" +releaseValue +onLabel "1e-10" +offLabel "1e-10" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 235 +y 62 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "0.1" +releaseValue +onLabel "/10" +offLabel "/10" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 235 +y 84 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue ".5" +releaseValue +onLabel "/2" +offLabel "/2" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 235 +y 106 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "0.9" +releaseValue +onLabel "-10%" +offLabel "-10%" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 235 +y 128 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionStepDown" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 285 +y 128 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionStepUp" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 285 +y 40 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "1000" +releaseValue +onLabel "*1000" +offLabel "*1000" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 285 +y 62 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "10" +releaseValue +onLabel "*10" +offLabel "*10" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 285 +y 84 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "2" +releaseValue +onLabel "*2" +offLabel "*2" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 285 +y 106 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "1.1" +releaseValue +onLabel "+10%" +offLabel "+10%" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +endGroup + +endObjectProperties + + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 230 +w 50 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 22528 13312 3840 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "more" +numPvs 2 +numDsps 1 +displayFileName { + 0 filter_4_4_more.edl +} +menuLabel { + 0 more +} +symbols { + 0 "P=$(P),R=$(R)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 65 +y 230 +w 60 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 22528 13312 3840 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "configure" +numPvs 2 +numDsps 1 +displayFileName { + 0 filter_drive_config.edl +} +menuLabel { + 0 configure +} +symbols { + 0 "P=$(P),R=$(R)" +} +replaceSymbols { + 0 1 +} +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 127 +y 183 +w 62 +h 88 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 183 +w 50 +h 20 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 183 +w 34 +h 20 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 183 +w 34 +h 10 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 127 +y 251 +w 60 +h 20 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 127 +y 251 +w 55 +h 20 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 310 +y 226 +w 16 +h 15 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 486 +y 226 +w 16 +h 15 + +beginGroup + +endGroup + +endObjectProperties + + diff --git a/opticsApp/op/edl/autoconvert/filter_4_4_more.edl b/opticsApp/op/edl/autoconvert/filter_4_4_more.edl new file mode 100644 index 0000000..fb24116 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/filter_4_4_more.edl @@ -0,0 +1,981 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 300 +y 300 +w 510 +h 400 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 220 +w 515 +h 1 +lineColor rgb 17920 17920 17920 +fillColor rgb 17920 17920 17920 +numPoints 2 { +xPoints { +0 0 +1 514 +} +yPoints { +0 220 +1 220 +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 5 +w 500 +h 25 +controlPv "$(P)$(R)Description" +format "decimal" +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor rgb 2560 0 47104 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 250 +w 114 +h 20 +lineColor rgb 2560 0 47104 +fill +fillColor rgb 2560 0 47104 +lineWidth 0 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 180 +y 225 +w 130 +h 170 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 180 +y 225 +w 130 +h 170 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filterbox_more.edl;P=$(P),R=$(R),N1=5,N2=6,N3=7,N4=8" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filterbox_more.edl;P=$(P),R=$(R),N1=5,N2=6,N3=7,N4=8" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 355 +y 225 +w 130 +h 170 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 355 +y 225 +w 130 +h 170 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filterbox_more.edl;P=$(P),R=$(R),N1=1,N2=2,N3=3,N4=4" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filterbox_more.edl;P=$(P),R=$(R),N1=1,N2=2,N3=3,N4=4" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 130 +y 220 +w 0 +h 180 +lineColor rgb 17920 17920 17920 +fillColor rgb 17920 17920 17920 +lineWidth 0 +numPoints 2 { +xPoints { +0 130 +1 130 +} +yPoints { +0 220 +1 400 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 227 +w 114 +h 20 +lineColor rgb 2560 0 47104 +fill +fillColor rgb 2560 0 47104 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 254 +w 115 +h 13 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "$(R)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 297 +w 118 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "filter_4_4_more.adl" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 312 +w 118 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "2013-01-24 (CMS)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 231 +w 115 +h 13 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "$(P)" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 127 +y 275 +w 62 +h 88 + +beginGroup + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 275 +w 50 +h 20 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 170 +y 285 +w 19 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 170 +1 188 +} +yPoints { +0 285 +1 285 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 275 +w 34 +h 20 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 139 +y 285 +w 22 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 8448 27648 0 +bgColor index 3 +useDisplayBg +value { + "free" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 275 +w 34 +h 10 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 163 +y 275 +w 10 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "/" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 139 +y 275 +w 23 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "lock" +} +endObjectProperties + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 127 +y 343 +w 60 +h 20 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 169 +y 352 +w 18 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 169 +1 186 +} +yPoints { +0 352 +1 352 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 127 +y 343 +w 55 +h 20 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 127 +y 343 +w 55 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "remove" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 127 +y 353 +w 55 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "insert" +} +endObjectProperties + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 330 +y 316 +w 18 +h 18 +lineColor rgb 23040 23040 23040 +fill +fillColor rgb 23040 23040 23040 +lineWidth 2 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 310 +y 318 +w 16 +h 15 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 310 +y 318 +w 18 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 311 +1 327 +} +yPoints { +0 326 +1 319 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 310 +y 324 +w 18 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 311 +1 327 +} +yPoints { +0 325 +1 332 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 486 +y 318 +w 16 +h 15 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 486 +y 318 +w 18 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 487 +1 503 +} +yPoints { +0 326 +1 319 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 486 +y 324 +w 18 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 487 +1 503 +} +yPoints { +0 325 +1 332 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 160 +y 325 +w 346 +h 2 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 161 +1 505 +} +yPoints { +0 326 +1 326 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 149 +y 313 +w 12 +h 23 +lineColor rgb 23040 23040 23040 +fill +fillColor rgb 23040 23040 23040 +lineWidth 2 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 40 +w 490 +h 168 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 10 +y 40 +w 490 +h 168 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filter_drive_more.edl;P=$(P),R=$(R)" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filter_drive_more.edl;P=$(P),R=$(R)" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 276 +w 50 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 22528 13312 3840 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "less" +numPvs 2 +numDsps 1 +displayFileName { + 0 filter_4_4_less.edl +} +menuLabel { + 0 less +} +symbols { + 0 "P=$(P),R=$(R)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 65 +y 275 +w 60 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 22528 13312 3840 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "configure" +numPvs 2 +numDsps 1 +displayFileName { + 0 filter_drive_config.edl +} +menuLabel { + 0 configure +} +symbols { + 0 "P=$(P),R=$(R)" +} +replaceSymbols { + 0 1 +} +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 127 +y 275 +w 62 +h 88 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 275 +w 50 +h 20 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 275 +w 34 +h 20 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 275 +w 34 +h 10 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 127 +y 343 +w 60 +h 20 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 127 +y 343 +w 55 +h 20 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 310 +y 318 +w 16 +h 15 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 486 +y 318 +w 16 +h 15 + +beginGroup + +endGroup + +endObjectProperties + + diff --git a/opticsApp/op/edl/autoconvert/filter_8_0_less.edl b/opticsApp/op/edl/autoconvert/filter_8_0_less.edl new file mode 100644 index 0000000..32233aa --- /dev/null +++ b/opticsApp/op/edl/autoconvert/filter_8_0_less.edl @@ -0,0 +1,1728 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 300 +y 300 +w 510 +h 280 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 80 +y 60 +w 9 +h 14 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(R)EnergySelect)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 80 +y 40 +w 9 +h 14 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(R)EnergySelect)" +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 95 +y 40 +w 85 +h 15 +controlPv "$(P)$(R)EnergyBeamline" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 95 +y 57 +w 85 +h 20 +controlPv "$(P)$(R)EnergyLocal" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 11 +y 153 +w 68 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Message:" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 85 +y 153 +w 415 +h 15 +controlPv "$(P)$(R)Message" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 405 +y 105 +w 86 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Setpoint:" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 405 +y 123 +w 95 +h 25 +controlPv "$(P)$(R)TransmissionSetpoint" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 133 +w 60 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Mask:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 111 +w 60 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Transm:" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 80 +y 134 +w 60 +h 13 +controlPv "$(P)$(R)FilterMask" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 80 +y 108 +w 140 +h 20 +controlPv "$(P)$(R)Transmission" +format "exponential" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 64256 62208 18944 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 89 +w 60 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Status:" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 80 +y 86 +w 140 +h 20 +controlPv "$(P)$(R)Status" +format "string" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 65535 0 +fgAlarm +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 160 +y 134 +w 60 +h 13 +controlPv "$(P)$(R)FilterMask" +format "hex" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 145 +y 134 +w 16 +h 13 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "=" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 185 +y 40 +w 36 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "keV" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 185 +y 60 +w 36 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "keV" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 235 +y 40 +w 155 +h 108 + +beginGroup + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 175 +w 515 +h 1 +lineColor rgb 17920 17920 17920 +fillColor rgb 17920 17920 17920 +numPoints 2 { +xPoints { +0 0 +1 514 +} +yPoints { +0 175 +1 175 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 215 +y 180 +w 130 +h 100 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 215 +y 180 +w 130 +h 100 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filterbox_less.edl;P=$(P),R=$(R),N1=5,N2=6,N3=7,N4=8" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filterbox_less.edl;P=$(P),R=$(R),N1=5,N2=6,N3=7,N4=8" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 355 +y 180 +w 130 +h 100 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 355 +y 180 +w 130 +h 100 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filterbox_less.edl;P=$(P),R=$(R),N1=1,N2=2,N3=3,N4=4" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filterbox_less.edl;P=$(P),R=$(R),N1=1,N2=2,N3=3,N4=4" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 5 +w 500 +h 25 +controlPv "$(P)$(R)Description" +format "decimal" +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor rgb 2560 0 47104 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 165 +y 175 +w 0 +h 110 +lineColor rgb 17920 17920 17920 +fillColor rgb 17920 17920 17920 +lineWidth 0 +numPoints 2 { +xPoints { +0 165 +1 165 +} +yPoints { +0 175 +1 285 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 182 +w 149 +h 20 +lineColor rgb 2560 0 47104 +fill +fillColor rgb 2560 0 47104 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 186 +w 150 +h 13 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "$(P)$(R)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 237 +w 118 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "filter_8_0_less.adl" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 252 +w 118 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "2013-01-24 (CMS)" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 175 +y 183 +w 50 +h 20 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 206 +y 193 +w 19 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 206 +1 224 +} +yPoints { +0 193 +1 193 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 175 +y 183 +w 34 +h 20 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 175 +y 193 +w 22 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 8448 27648 0 +bgColor index 3 +useDisplayBg +value { + "free" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 175 +y 183 +w 34 +h 10 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 199 +y 183 +w 10 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "/" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 175 +y 183 +w 23 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "lock" +} +endObjectProperties + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 185 +y 226 +w 326 +h 15 + +beginGroup + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 190 +y 226 +w 20 +h 15 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 190 +y 226 +w 21 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 191 +1 210 +} +yPoints { +0 234 +1 227 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 190 +y 232 +w 21 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 191 +1 210 +} +yPoints { +0 233 +1 240 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 486 +y 226 +w 20 +h 15 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 486 +y 226 +w 21 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 487 +1 506 +} +yPoints { +0 234 +1 227 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 486 +y 232 +w 21 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 487 +1 506 +} +yPoints { +0 233 +1 240 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 185 +y 233 +w 326 +h 2 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 186 +1 510 +} +yPoints { +0 234 +1 234 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 163 +y 251 +w 60 +h 20 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 205 +y 260 +w 18 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 205 +1 222 +} +yPoints { +0 260 +1 260 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 163 +y 251 +w 55 +h 20 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 163 +y 251 +w 55 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "remove" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 163 +y 261 +w 55 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "insert" +} +endObjectProperties + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 40 +w 65 +h 37 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)EnergySelect" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 405 +y 40 +w 95 +h 28 +fgColor rgb 13056 39168 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "0" +releaseValue +onLabel "ALL IN" +offLabel "ALL IN" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 405 +y 70 +w 95 +h 28 +fgColor rgb 64768 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1" +releaseValue +onLabel "ALL OUT" +offLabel "ALL OUT" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 235 +y 40 +w 155 +h 108 + +beginGroup + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 235 +y 40 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "0.001" +releaseValue +onLabel "/1000" +offLabel "/1000" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 345 +y 40 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-2" +releaseValue +onLabel "1e-2" +offLabel "1e-2" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 345 +y 62 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-4" +releaseValue +onLabel "1e-4" +offLabel "1e-4" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 345 +y 84 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-6" +releaseValue +onLabel "1e-6" +offLabel "1e-6" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 345 +y 106 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-8" +releaseValue +onLabel "1e-8" +offLabel "1e-8" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 345 +y 128 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-10" +releaseValue +onLabel "1e-10" +offLabel "1e-10" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 235 +y 62 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "0.1" +releaseValue +onLabel "/10" +offLabel "/10" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 235 +y 84 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue ".5" +releaseValue +onLabel "/2" +offLabel "/2" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 235 +y 106 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "0.9" +releaseValue +onLabel "-10%" +offLabel "-10%" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 235 +y 128 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionStepDown" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 285 +y 128 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionStepUp" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 285 +y 40 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "1000" +releaseValue +onLabel "*1000" +offLabel "*1000" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 285 +y 62 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "10" +releaseValue +onLabel "*10" +offLabel "*10" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 285 +y 84 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "2" +releaseValue +onLabel "*2" +offLabel "*2" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 285 +y 106 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "1.1" +releaseValue +onLabel "+10%" +offLabel "+10%" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +endGroup + +endObjectProperties + + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 212 +w 70 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 22528 13312 3840 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "configure" +numPvs 2 +numDsps 1 +displayFileName { + 0 filter_drive_config.edl +} +menuLabel { + 0 configure +} +symbols { + 0 "P=$(P),R=$(R)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 212 +w 70 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 22528 13312 3840 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "more" +numPvs 2 +numDsps 1 +displayFileName { + 0 filter_8_0_more.edl +} +menuLabel { + 0 more +} +symbols { + 0 "P=$(P),R=$(R)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 175 +y 183 +w 50 +h 20 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 175 +y 183 +w 34 +h 20 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 175 +y 183 +w 34 +h 10 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 185 +y 226 +w 326 +h 15 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 190 +y 226 +w 20 +h 15 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 486 +y 226 +w 20 +h 15 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 163 +y 251 +w 60 +h 20 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 163 +y 251 +w 55 +h 20 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + diff --git a/opticsApp/op/edl/autoconvert/filter_8_0_more.edl b/opticsApp/op/edl/autoconvert/filter_8_0_more.edl new file mode 100644 index 0000000..2f7a6bc --- /dev/null +++ b/opticsApp/op/edl/autoconvert/filter_8_0_more.edl @@ -0,0 +1,633 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 300 +y 300 +w 510 +h 400 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 220 +w 515 +h 1 +lineColor rgb 17920 17920 17920 +fillColor rgb 17920 17920 17920 +numPoints 2 { +xPoints { +0 0 +1 514 +} +yPoints { +0 220 +1 220 +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 5 +w 500 +h 25 +controlPv "$(P)$(R)Description" +format "decimal" +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor rgb 2560 0 47104 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 215 +y 225 +w 130 +h 170 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 215 +y 225 +w 130 +h 170 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filterbox_more.edl;P=$(P),R=$(R),N1=5,N2=6,N3=7,N4=8" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filterbox_more.edl;P=$(P),R=$(R),N1=5,N2=6,N3=7,N4=8" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 355 +y 225 +w 130 +h 170 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 355 +y 225 +w 130 +h 170 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filterbox_more.edl;P=$(P),R=$(R),N1=1,N2=2,N3=3,N4=4" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filterbox_more.edl;P=$(P),R=$(R),N1=1,N2=2,N3=3,N4=4" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 165 +y 220 +w 0 +h 185 +lineColor rgb 17920 17920 17920 +fillColor rgb 17920 17920 17920 +lineWidth 0 +numPoints 2 { +xPoints { +0 165 +1 165 +} +yPoints { +0 220 +1 405 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 227 +w 149 +h 20 +lineColor rgb 2560 0 47104 +fill +fillColor rgb 2560 0 47104 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 231 +w 150 +h 13 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "$(P)$(R)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 282 +w 118 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "filter_8_0_more.adl" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 297 +w 118 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "2013-01-24 (CMS)" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 190 +y 318 +w 21 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 191 +1 210 +} +yPoints { +0 326 +1 319 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 190 +y 324 +w 21 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 191 +1 210 +} +yPoints { +0 325 +1 332 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 486 +y 318 +w 21 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 487 +1 506 +} +yPoints { +0 326 +1 319 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 486 +y 324 +w 21 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 487 +1 506 +} +yPoints { +0 325 +1 332 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 185 +y 325 +w 326 +h 2 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 186 +1 510 +} +yPoints { +0 326 +1 326 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 206 +y 285 +w 19 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 206 +1 224 +} +yPoints { +0 285 +1 285 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 175 +y 285 +w 22 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 8448 27648 0 +bgColor index 3 +useDisplayBg +value { + "free" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 199 +y 275 +w 10 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "/" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 175 +y 275 +w 23 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "lock" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 205 +y 352 +w 18 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 205 +1 222 +} +yPoints { +0 352 +1 352 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 163 +y 343 +w 55 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "remove" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 163 +y 353 +w 55 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "insert" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 40 +w 490 +h 168 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 10 +y 40 +w 490 +h 168 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filter_drive_more.edl;P=$(P),R=$(R)" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filter_drive_more.edl;P=$(P),R=$(R)" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 257 +w 70 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 22528 13312 3840 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "configure" +numPvs 2 +numDsps 1 +displayFileName { + 0 filter_drive_config.edl +} +menuLabel { + 0 configure +} +symbols { + 0 "P=$(P),R=$(R)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 257 +w 70 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 22528 13312 3840 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "less" +numPvs 2 +numDsps 1 +displayFileName { + 0 filter_8_0_less.edl +} +menuLabel { + 0 less +} +symbols { + 0 "P=$(P),R=$(R)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/filter_8_8_less.edl b/opticsApp/op/edl/autoconvert/filter_8_8_less.edl new file mode 100644 index 0000000..240b6e7 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/filter_8_8_less.edl @@ -0,0 +1,1787 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 300 +y 300 +w 680 +h 285 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 40 +w 149 +h 20 +lineColor rgb 2560 0 47104 +fill +fillColor rgb 2560 0 47104 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 245 +y 60 +w 9 +h 14 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(R)EnergySelect)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 245 +y 40 +w 9 +h 14 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(R)EnergySelect)" +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 260 +y 40 +w 85 +h 15 +controlPv "$(P)$(R)EnergyBeamline" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 260 +y 57 +w 85 +h 20 +controlPv "$(P)$(R)EnergyLocal" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 176 +y 153 +w 68 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Message:" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 250 +y 153 +w 415 +h 15 +controlPv "$(P)$(R)Message" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 570 +y 105 +w 86 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Setpoint:" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 570 +y 123 +w 95 +h 25 +controlPv "$(P)$(R)TransmissionSetpoint" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 175 +y 133 +w 60 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Mask:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 175 +y 111 +w 60 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Transm:" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 245 +y 134 +w 60 +h 13 +controlPv "$(P)$(R)FilterMask" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 245 +y 108 +w 140 +h 20 +controlPv "$(P)$(R)Transmission" +format "exponential" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 64256 62208 18944 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 175 +y 89 +w 60 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Status:" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 245 +y 86 +w 140 +h 20 +controlPv "$(P)$(R)Status" +format "string" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 65535 0 +fgAlarm +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 325 +y 134 +w 60 +h 13 +controlPv "$(P)$(R)FilterMask" +format "hex" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 310 +y 134 +w 16 +h 13 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "=" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 350 +y 40 +w 36 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "keV" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 350 +y 60 +w 36 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "keV" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 40 +w 155 +h 108 + +beginGroup + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 175 +w 680 +h 1 +lineColor rgb 17920 17920 17920 +fillColor rgb 17920 17920 17920 +numPoints 2 { +xPoints { +0 0 +1 679 +} +yPoints { +0 175 +1 175 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 30 +y 180 +w 130 +h 100 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 30 +y 180 +w 130 +h 100 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filterbox_less.edl;P=$(P),R=$(R),N1=13,N2=14,N3=15,N4=16" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filterbox_less.edl;P=$(P),R=$(R),N1=13,N2=14,N3=15,N4=16" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 170 +y 180 +w 130 +h 100 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 170 +y 180 +w 130 +h 100 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filterbox_less.edl;P=$(P),R=$(R),N1=9,N2=10,N3=11,N4=12" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filterbox_less.edl;P=$(P),R=$(R),N1=9,N2=10,N3=11,N4=12" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 375 +y 180 +w 130 +h 100 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 375 +y 180 +w 130 +h 100 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filterbox_less.edl;P=$(P),R=$(R),N1=5,N2=6,N3=7,N4=8" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filterbox_less.edl;P=$(P),R=$(R),N1=5,N2=6,N3=7,N4=8" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 515 +y 180 +w 130 +h 100 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 515 +y 180 +w 130 +h 100 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filterbox_less.edl;P=$(P),R=$(R),N1=1,N2=2,N3=3,N4=4" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filterbox_less.edl;P=$(P),R=$(R),N1=1,N2=2,N3=3,N4=4" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 5 +w 670 +h 25 +controlPv "$(P)$(R)Description" +format "decimal" +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor rgb 2560 0 47104 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 165 +y 30 +w 0 +h 145 +lineColor rgb 17920 17920 17920 +fillColor rgb 17920 17920 17920 +lineWidth 0 +numPoints 2 { +xPoints { +0 165 +1 165 +} +yPoints { +0 30 +1 175 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 44 +w 150 +h 13 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "$(P)$(R)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 95 +w 118 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "filter_8_8_less.adl" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 110 +w 118 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "2013-01-09 (CMS)" +} +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 331 +y 217 +w 28 +h 28 +lineColor rgb 17920 17920 17920 +fill +fillColor rgb 17920 17920 17920 +lineWidth 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 231 +w 671 +h 2 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 6 +1 675 +} +yPoints { +0 232 +1 232 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 651 +y 224 +w 20 +h 15 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 651 +y 224 +w 21 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 652 +1 671 +} +yPoints { +0 232 +1 225 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 651 +y 230 +w 21 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 652 +1 671 +} +yPoints { +0 231 +1 238 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 305 +y 224 +w 20 +h 15 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 305 +y 224 +w 21 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 306 +1 325 +} +yPoints { +0 232 +1 225 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 305 +y 230 +w 21 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 306 +1 325 +} +yPoints { +0 231 +1 238 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 219 +w 19 +h 24 +lineColor rgb 17920 17920 17920 +fill +fillColor rgb 17920 17920 17920 +lineWidth 0 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 290 +y 186 +w 96 +h 10 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 290 +y 191 +w 20 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 290 +1 309 +} +yPoints { +0 191 +1 191 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 312 +y 186 +w 49 +h 10 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 312 +y 186 +w 23 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "lock" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 336 +y 186 +w 10 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "/" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 341 +y 186 +w 22 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 8448 27648 0 +bgColor index 3 +useDisplayBg +value { + "free" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 367 +y 191 +w 19 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 367 +1 385 +} +yPoints { +0 191 +1 191 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 293 +y 251 +w 89 +h 20 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 358 +y 258 +w 24 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 358 +1 381 +} +yPoints { +0 258 +1 258 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 293 +y 258 +w 24 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 293 +1 316 +} +yPoints { +0 258 +1 258 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 311 +y 261 +w 55 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "insert" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 311 +y 251 +w 55 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "remove" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 175 +y 40 +w 65 +h 37 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)EnergySelect" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 570 +y 40 +w 95 +h 28 +fgColor rgb 13056 39168 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "0" +releaseValue +onLabel "ALL IN" +offLabel "ALL IN" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 570 +y 70 +w 95 +h 28 +fgColor rgb 64768 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1" +releaseValue +onLabel "ALL OUT" +offLabel "ALL OUT" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 40 +w 155 +h 108 + +beginGroup + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 40 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "0.001" +releaseValue +onLabel "/1000" +offLabel "/1000" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 510 +y 40 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-2" +releaseValue +onLabel "1e-2" +offLabel "1e-2" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 510 +y 62 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-4" +releaseValue +onLabel "1e-4" +offLabel "1e-4" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 510 +y 84 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-6" +releaseValue +onLabel "1e-6" +offLabel "1e-6" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 510 +y 106 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-8" +releaseValue +onLabel "1e-8" +offLabel "1e-8" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 510 +y 128 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-10" +releaseValue +onLabel "1e-10" +offLabel "1e-10" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 62 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "0.1" +releaseValue +onLabel "/10" +offLabel "/10" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 84 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue ".5" +releaseValue +onLabel "/2" +offLabel "/2" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 106 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "0.9" +releaseValue +onLabel "-10%" +offLabel "-10%" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 128 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionStepDown" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 450 +y 128 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionStepUp" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 450 +y 40 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "1000" +releaseValue +onLabel "*1000" +offLabel "*1000" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 450 +y 62 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "10" +releaseValue +onLabel "*10" +offLabel "*10" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 450 +y 84 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "2" +releaseValue +onLabel "*2" +offLabel "*2" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 450 +y 106 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "1.1" +releaseValue +onLabel "+10%" +offLabel "+10%" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +endGroup + +endObjectProperties + + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 70 +w 70 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 22528 13312 3840 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "configure" +numPvs 2 +numDsps 1 +displayFileName { + 0 filter_drive_config.edl +} +menuLabel { + 0 configure +} +symbols { + 0 "P=$(P),R=$(R)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 70 +w 70 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 22528 13312 3840 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "more" +numPvs 2 +numDsps 1 +displayFileName { + 0 filter_8_8_more.edl +} +menuLabel { + 0 less +} +symbols { + 0 "P=$(P),R=$(R),KEV=$(KEV)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 651 +y 224 +w 20 +h 15 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 305 +y 224 +w 20 +h 15 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 290 +y 186 +w 96 +h 10 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 312 +y 186 +w 49 +h 10 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 293 +y 251 +w 89 +h 20 + +beginGroup + +endGroup + +endObjectProperties + + diff --git a/opticsApp/op/edl/autoconvert/filter_8_8_more.edl b/opticsApp/op/edl/autoconvert/filter_8_8_more.edl new file mode 100644 index 0000000..8efbf15 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/filter_8_8_more.edl @@ -0,0 +1,972 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 300 +y 300 +w 680 +h 400 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 40 +w 149 +h 20 +lineColor rgb 2560 0 47104 +fill +fillColor rgb 2560 0 47104 +lineWidth 0 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 5 +w 670 +h 25 +controlPv "$(P)$(R)Description" +format "decimal" +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor rgb 2560 0 47104 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 165 +y 30 +w 0 +h 190 +lineColor rgb 17920 17920 17920 +fillColor rgb 17920 17920 17920 +lineWidth 0 +numPoints 2 { +xPoints { +0 165 +1 165 +} +yPoints { +0 30 +1 220 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 44 +w 150 +h 13 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "$(P)$(R)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 95 +w 118 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "filter_8_8_more.adl" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 110 +w 118 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "2013-01-31 (CMS)" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 30 +y 225 +w 130 +h 170 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 30 +y 225 +w 130 +h 170 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filterbox_more.edl;P=$(P),R=$(R),N1=13,N2=14,N3=15,N4=16" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filterbox_more.edl;P=$(P),R=$(R),N1=13,N2=14,N3=15,N4=16" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 170 +y 225 +w 130 +h 170 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 170 +y 225 +w 130 +h 170 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filterbox_more.edl;P=$(P),R=$(R),N1=9,N2=10,N3=11,N4=12" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filterbox_more.edl;P=$(P),R=$(R),N1=9,N2=10,N3=11,N4=12" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 375 +y 225 +w 130 +h 170 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 375 +y 225 +w 130 +h 170 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filterbox_more.edl;P=$(P),R=$(R),N1=5,N2=6,N3=7,N4=8" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filterbox_more.edl;P=$(P),R=$(R),N1=5,N2=6,N3=7,N4=8" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 515 +y 225 +w 130 +h 170 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 515 +y 225 +w 130 +h 170 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filterbox_more.edl;P=$(P),R=$(R),N1=1,N2=2,N3=3,N4=4" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filterbox_more.edl;P=$(P),R=$(R),N1=1,N2=2,N3=3,N4=4" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 293 +y 345 +w 89 +h 20 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 358 +y 352 +w 24 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 358 +1 381 +} +yPoints { +0 352 +1 352 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 293 +y 352 +w 24 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 293 +1 316 +} +yPoints { +0 352 +1 352 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 311 +y 355 +w 55 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "insert" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 311 +y 345 +w 55 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "remove" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 290 +y 280 +w 96 +h 10 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 290 +y 285 +w 20 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 290 +1 309 +} +yPoints { +0 285 +1 285 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 312 +y 280 +w 49 +h 10 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 312 +y 280 +w 23 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "lock" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 336 +y 280 +w 10 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "/" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 341 +y 280 +w 22 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 8448 27648 0 +bgColor index 3 +useDisplayBg +value { + "free" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 367 +y 285 +w 19 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 367 +1 385 +} +yPoints { +0 285 +1 285 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 331 +y 311 +w 28 +h 28 +lineColor rgb 17920 17920 17920 +fill +fillColor rgb 17920 17920 17920 +lineWidth 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 325 +w 671 +h 2 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 6 +1 675 +} +yPoints { +0 326 +1 326 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 651 +y 318 +w 20 +h 15 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 651 +y 318 +w 21 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 652 +1 671 +} +yPoints { +0 326 +1 319 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 651 +y 324 +w 21 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 652 +1 671 +} +yPoints { +0 325 +1 332 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 305 +y 318 +w 20 +h 15 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 305 +y 318 +w 21 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 306 +1 325 +} +yPoints { +0 326 +1 319 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 305 +y 324 +w 21 +h 9 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 306 +1 325 +} +yPoints { +0 325 +1 332 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 313 +w 19 +h 24 +lineColor rgb 17920 17920 17920 +fill +fillColor rgb 17920 17920 17920 +lineWidth 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 220 +w 680 +h 1 +lineColor rgb 17920 17920 17920 +fillColor rgb 17920 17920 17920 +numPoints 2 { +xPoints { +0 0 +1 679 +} +yPoints { +0 220 +1 220 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 175 +y 40 +w 490 +h 168 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 175 +y 40 +w 490 +h 168 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filter_drive_more.edl;P=$(P),R=$(R)" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filter_drive_more.edl;P=$(P),R=$(R)" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 70 +w 70 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 22528 13312 3840 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "configure" +numPvs 2 +numDsps 1 +displayFileName { + 0 filter_drive_config.edl +} +menuLabel { + 0 configure +} +symbols { + 0 "P=$(P),R=$(R)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 70 +w 70 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 22528 13312 3840 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "less" +numPvs 2 +numDsps 1 +displayFileName { + 0 filter_8_8_less.edl +} +menuLabel { + 0 less +} +symbols { + 0 "P=$(P),R=$(R)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 293 +y 345 +w 89 +h 20 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 290 +y 280 +w 96 +h 10 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 312 +y 280 +w 49 +h 10 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 651 +y 318 +w 20 +h 15 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 305 +y 318 +w 20 +h 15 + +beginGroup + +endGroup + +endObjectProperties + + diff --git a/opticsApp/op/edl/autoconvert/filter_blade.edl b/opticsApp/op/edl/autoconvert/filter_blade.edl new file mode 100644 index 0000000..87df507 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/filter_blade.edl @@ -0,0 +1,239 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 990 +y 150 +w 72 +h 88 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 6 +y 0 +w 14 +h 14 + +beginGroup + +endGroup + +visPv "CALC\\\{(A)\}($(P)$(R)Fi$(N):Lock)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 1 +y 16 +w 25 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(N)" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 9 +y 39 +w 7 +h 15 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(R)Fi$(N):Set)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 6 +y 0 +w 14 +h 14 + +beginGroup + +endGroup + +visPv "CALC\\\{(A)\}($(P)$(R)Fi$(N):Lock)" +visMin 0 +visMax 1 +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 9 +y 27 +w 7 +h 15 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(R)Fi$(N):Set)" +visMin 0 +visMax 1 +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 6 +y 0 +w 14 +h 14 + +beginGroup + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 6 +y 0 +w 14 +h 14 +fgColor rgb 0 0 0 +onColor rgb 56832 4864 2304 +offColor rgb 56832 4864 2304 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)Fi$(N):Lock" +pressValue "0" +releaseValue +onLabel "L" +offLabel "L" +3d +useEnumNumeric +font "helvetica-bold-r-12.0" +endObjectProperties + +endGroup + +visPv "CALC\\\{(A)\}($(P)$(R)Fi$(N):Lock)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 60 +w 26 +h 28 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)Fi$(N):Set" +font "helvetica-medium-r-10.0" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 6 +y 0 +w 14 +h 14 + +beginGroup + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 6 +y 0 +w 14 +h 14 +fgColor rgb 0 0 0 +onColor rgb 0 55296 0 +offColor rgb 0 55296 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)Fi$(N):Lock" +pressValue "1" +releaseValue +onLabel "F" +offLabel "F" +3d +useEnumNumeric +font "helvetica-bold-r-12.0" +endObjectProperties + +endGroup + +visPv "CALC\\\{(A)\}($(P)$(R)Fi$(N):Lock)" +visMin 0 +visMax 1 +endObjectProperties + + diff --git a/opticsApp/op/edl/autoconvert/filter_drive.edl b/opticsApp/op/edl/autoconvert/filter_drive.edl new file mode 100644 index 0000000..5cd40b5 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/filter_drive.edl @@ -0,0 +1,849 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 89 +y 92 +w 500 +h 130 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 75 +y 20 +w 9 +h 14 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(R)EnergySelect)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 75 +y 0 +w 9 +h 14 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(R)EnergySelect)" +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 90 +y 0 +w 85 +h 15 +controlPv "$(P)$(R)EnergyBeamline" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 90 +y 17 +w 85 +h 20 +controlPv "$(P)$(R)EnergyLocal" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 6 +y 113 +w 65 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Message" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 80 +y 113 +w 415 +h 15 +controlPv "$(P)$(R)Message" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 400 +y 65 +w 86 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Setpoint" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 400 +y 83 +w 95 +h 25 +controlPv "$(P)$(R)TransmissionSetpoint" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 93 +w 60 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Mask" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 71 +w 60 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Transm" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 75 +y 94 +w 60 +h 13 +controlPv "$(P)$(R)FilterMask" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 75 +y 68 +w 140 +h 20 +controlPv "$(P)$(R)Transmission" +format "exponential" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 64256 62208 18944 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 49 +w 60 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Status" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 75 +y 46 +w 140 +h 20 +controlPv "$(P)$(R)Status" +format "string" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 65535 0 +fgAlarm +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 155 +y 94 +w 60 +h 13 +controlPv "$(P)$(R)FilterMask" +format "hex" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 140 +y 94 +w 16 +h 13 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "=" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 180 +y 0 +w 36 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "keV" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 180 +y 20 +w 36 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "keV" +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 0 +w 65 +h 37 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)EnergySelect" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 0 +w 95 +h 28 +fgColor rgb 13056 39168 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "0" +releaseValue +onLabel "ALL IN" +offLabel "ALL IN" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 30 +w 95 +h 28 +fgColor rgb 64768 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1" +releaseValue +onLabel "ALL OUT" +offLabel "ALL OUT" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 230 +y 0 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "0.001" +releaseValue +onLabel "/1000" +offLabel "/1000" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 340 +y 0 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-2" +releaseValue +onLabel "1e-2" +offLabel "1e-2" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 340 +y 22 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-4" +releaseValue +onLabel "1e-4" +offLabel "1e-4" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 340 +y 44 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-6" +releaseValue +onLabel "1e-6" +offLabel "1e-6" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 340 +y 66 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-8" +releaseValue +onLabel "1e-8" +offLabel "1e-8" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 340 +y 88 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-10" +releaseValue +onLabel "1e-10" +offLabel "1e-10" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 230 +y 22 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "0.1" +releaseValue +onLabel "/10" +offLabel "/10" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 230 +y 44 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue ".5" +releaseValue +onLabel "/2" +offLabel "/2" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 230 +y 66 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "0.9" +releaseValue +onLabel "-10%" +offLabel "-10%" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 230 +y 88 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionStepDown" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 88 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionStepUp" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 0 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "1000" +releaseValue +onLabel "*1000" +offLabel "*1000" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 22 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "10" +releaseValue +onLabel "*10" +offLabel "*10" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 44 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "2" +releaseValue +onLabel "*2" +offLabel "*2" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 66 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "1.1" +releaseValue +onLabel "+10%" +offLabel "+10%" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/filter_drive_config.edl b/opticsApp/op/edl/autoconvert/filter_drive_config.edl new file mode 100644 index 0000000..de079b2 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/filter_drive_config.edl @@ -0,0 +1,140 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 300 +y 200 +w 270 +h 80 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 47872 47872 47872 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 33 +w 220 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Actuator wait time [s]:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 58 +w 220 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Debug level:" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 216 +y 30 +w 50 +h 21 +controlPv "$(P)$(R)WaitTime" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 216 +y 55 +w 50 +h 21 +controlPv "$(P)$(R)Debug" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 5 +w 260 +h 20 +controlPv "$(P)$(R)Description" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor rgb 2560 0 47104 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/filter_drive_more.edl b/opticsApp/op/edl/autoconvert/filter_drive_more.edl new file mode 100644 index 0000000..c81d2ce --- /dev/null +++ b/opticsApp/op/edl/autoconvert/filter_drive_more.edl @@ -0,0 +1,1023 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 829 +y 123 +w 500 +h 175 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 75 +y 20 +w 9 +h 14 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(R)EnergySelect)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 75 +y 0 +w 9 +h 14 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(R)EnergySelect)" +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 90 +y 0 +w 85 +h 15 +controlPv "$(P)$(R)EnergyBeamline" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 90 +y 17 +w 85 +h 20 +controlPv "$(P)$(R)EnergyLocal" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 49 +w 60 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Status" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 75 +y 46 +w 140 +h 20 +controlPv "$(P)$(R)Status" +format "string" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 65535 0 +fgAlarm +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 180 +y 0 +w 36 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "keV" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 180 +y 20 +w 36 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "keV" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 75 +y 153 +w 310 +h 15 +controlPv "$(P)$(R)Message" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 6 +y 153 +w 65 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Message" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 400 +y 65 +w 86 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Setpoint" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 400 +y 83 +w 95 +h 25 +controlPv "$(P)$(R)TransmissionSetpoint" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 399 +y 125 +w 95 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Filter Mask" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 399 +y 143 +w 95 +h 25 +controlPv "$(P)$(R)FilterMaskSetpoint" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 133 +w 60 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Mask" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 75 +y 134 +w 60 +h 13 +controlPv "$(P)$(R)FilterMask" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 140 +y 134 +w 16 +h 13 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "=" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 155 +y 134 +w 60 +h 13 +controlPv "$(P)$(R)FilterMask" +format "hex" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 71 +w 60 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Transm" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 75 +y 68 +w 140 +h 20 +controlPv "$(P)$(R)Transmission" +format "exponential" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 64256 62208 18944 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 93 +w 60 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Up(+)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 75 +y 93 +w 140 +h 15 +controlPv "$(P)$(R)TransmissionUp" +format "exponential" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 113 +w 60 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Down(-)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 75 +y 113 +w 140 +h 15 +controlPv "$(P)$(R)TransmissionDown" +format "exponential" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 230 +y 133 +w 90 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "NumFilters" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 330 +y 133 +w 50 +h 15 +controlPv "$(P)$(R)NumFilters" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 0 +w 65 +h 37 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)EnergySelect" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 0 +w 95 +h 28 +fgColor rgb 13056 39168 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "0" +releaseValue +onLabel "ALL IN" +offLabel "ALL IN" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 30 +w 95 +h 28 +fgColor rgb 64768 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1" +releaseValue +onLabel "ALL OUT" +offLabel "ALL OUT" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 230 +y 0 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "0.001" +releaseValue +onLabel "/1000" +offLabel "/1000" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 340 +y 0 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-2" +releaseValue +onLabel "1e-2" +offLabel "1e-2" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 340 +y 22 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-4" +releaseValue +onLabel "1e-4" +offLabel "1e-4" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 340 +y 44 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-6" +releaseValue +onLabel "1e-6" +offLabel "1e-6" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 340 +y 66 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-8" +releaseValue +onLabel "1e-8" +offLabel "1e-8" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 340 +y 88 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionSetpoint" +pressValue "1.0e-10" +releaseValue +onLabel "1e-10" +offLabel "1e-10" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 230 +y 22 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "0.1" +releaseValue +onLabel "/10" +offLabel "/10" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 230 +y 44 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue ".5" +releaseValue +onLabel "/2" +offLabel "/2" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 230 +y 66 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "0.9" +releaseValue +onLabel "-10%" +offLabel "-10%" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 230 +y 88 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionStepDown" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 88 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionStepUp" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 0 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "1000" +releaseValue +onLabel "*1000" +offLabel "*1000" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 22 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "10" +releaseValue +onLabel "*10" +offLabel "*10" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 44 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "2" +releaseValue +onLabel "*2" +offLabel "*2" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 66 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(R)TransmissionFactor" +pressValue "1.1" +releaseValue +onLabel "+10%" +offLabel "+10%" +3d +font "helvetica-medium-r-12.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/filterbox_config.edl b/opticsApp/op/edl/autoconvert/filterbox_config.edl new file mode 100644 index 0000000..aaf515f --- /dev/null +++ b/opticsApp/op/edl/autoconvert/filterbox_config.edl @@ -0,0 +1,526 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 664 +y 480 +w 425 +h 125 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 5 +w 45 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Filter" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 70 +y 5 +w 70 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Material" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 150 +y 5 +w 70 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Thickness" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 280 +y 5 +w 53 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Enable" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 27 +w 48 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(N1):" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 150 +y 25 +w 100 +h 20 +controlPv "$(P)$(R)Fi$(N1):Thickness" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 255 +y 26 +w 33 +h 17 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "um" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 150 +y 50 +w 100 +h 20 +controlPv "$(P)$(R)Fi$(N2):Thickness" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 255 +y 51 +w 33 +h 17 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "um" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 52 +w 48 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(N2):" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 77 +w 48 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(N3):" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 150 +y 75 +w 100 +h 20 +controlPv "$(P)$(R)Fi$(N3):Thickness" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 255 +y 76 +w 33 +h 17 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "um" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 255 +y 101 +w 33 +h 17 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "um" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 150 +y 100 +w 100 +h 20 +controlPv "$(P)$(R)Fi$(N4):Thickness" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 102 +w 48 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(N4):" +} +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 70 +y 25 +w 70 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 40448 40448 40448 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(R)Fi$(N1):Material" +indicatorPv "$(P)$(R)Fi$(N1):Material" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 25 +w 140 +h 20 +fgColor rgb 0 65535 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +fgAlarm +controlPv "$(P)$(R)Fi$(N1):Enable" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 70 +y 50 +w 70 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 40448 40448 40448 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(R)Fi$(N2):Material" +indicatorPv "$(P)$(R)Fi$(N2):Material" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 50 +w 140 +h 20 +fgColor rgb 0 65535 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +fgAlarm +controlPv "$(P)$(R)Fi$(N2):Enable" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 70 +y 75 +w 70 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 40448 40448 40448 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(R)Fi$(N3):Material" +indicatorPv "$(P)$(R)Fi$(N3):Material" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 75 +w 140 +h 20 +fgColor rgb 0 65535 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +fgAlarm +controlPv "$(P)$(R)Fi$(N3):Enable" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 100 +w 140 +h 20 +fgColor rgb 0 65535 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +fgAlarm +controlPv "$(P)$(R)Fi$(N4):Enable" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 70 +y 100 +w 70 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 40448 40448 40448 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(R)Fi$(N4):Material" +indicatorPv "$(P)$(R)Fi$(N4):Material" +font "helvetica-medium-r-12.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/filterbox_less.edl b/opticsApp/op/edl/autoconvert/filterbox_less.edl new file mode 100644 index 0000000..f322ec5 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/filterbox_less.edl @@ -0,0 +1,217 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 1591 +y 254 +w 140 +h 110 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 6 +y 6 +w 128 +h 98 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 12 +y 11 +w 26 +h 88 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 12 +y 11 +w 26 +h 88 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filter_blade.edl;P=$(P),R=$(R),N=$(N4)" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filter_blade.edl;P=$(P),R=$(R),N=$(N4)" +} +noScroll +endObjectProperties + +endGroup + +visPv "$(P)$(R)Fi$(N4):Enable" +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 43 +y 11 +w 26 +h 88 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 43 +y 11 +w 26 +h 88 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filter_blade.edl;P=$(P),R=$(R),N=$(N3)" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filter_blade.edl;P=$(P),R=$(R),N=$(N3)" +} +noScroll +endObjectProperties + +endGroup + +visPv "$(P)$(R)Fi$(N3):Enable" +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 74 +y 11 +w 26 +h 88 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 74 +y 11 +w 26 +h 88 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filter_blade.edl;P=$(P),R=$(R),N=$(N2)" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filter_blade.edl;P=$(P),R=$(R),N=$(N2)" +} +noScroll +endObjectProperties + +endGroup + +visPv "$(P)$(R)Fi$(N2):Enable" +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 105 +y 11 +w 26 +h 88 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 105 +y 11 +w 26 +h 88 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filter_blade.edl;P=$(P),R=$(R),N=$(N1)" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filter_blade.edl;P=$(P),R=$(R),N=$(N1)" +} +noScroll +endObjectProperties + +endGroup + +visPv "$(P)$(R)Fi$(N1):Enable" +visMin "A" +visMax "1" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/filterbox_more.edl b/opticsApp/op/edl/autoconvert/filterbox_more.edl new file mode 100644 index 0000000..873bf3a --- /dev/null +++ b/opticsApp/op/edl/autoconvert/filterbox_more.edl @@ -0,0 +1,701 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 2375 +y 753 +w 140 +h 170 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 6 +y 49 +w 128 +h 98 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 0 +w 71 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "$(N1): Disabled" +} +visPv "CALC\\\{(A)\}($(P)$(R)Fi$(N1):Enable)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 12 +w 71 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "$(N2): Disabled" +} +visPv "CALC\\\{(A)\}($(P)$(R)Fi$(N2):Enable)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 24 +w 71 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "$(N3): Disabled" +} +visPv "CALC\\\{(A)\}($(P)$(R)Fi$(N3):Enable)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 36 +w 71 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "$(N4): Disabled" +} +visPv "CALC\\\{(A)\}($(P)$(R)Fi$(N4):Enable)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 12 +w 32 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(N2):" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 24 +y 12 +w 12 +h 10 +controlPv "$(P)$(R)Fi$(N2):Material" +format "string" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 40 +y 12 +w 38 +h 10 +controlPv "$(P)$(R)Fi$(N2):Thickness" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 82 +y 12 +w 50 +h 10 +controlPv "$(P)$(R)Fi$(N2):Transmission" +format "exponential" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 0 +w 32 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(N1):" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 24 +y 0 +w 12 +h 10 +controlPv "$(P)$(R)Fi$(N1):Material" +format "string" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 40 +y 0 +w 38 +h 10 +controlPv "$(P)$(R)Fi$(N1):Thickness" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 82 +y 0 +w 50 +h 10 +controlPv "$(P)$(R)Fi$(N1):Transmission" +format "exponential" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 24 +w 32 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(N3):" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 24 +y 24 +w 12 +h 10 +controlPv "$(P)$(R)Fi$(N3):Material" +format "string" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 40 +y 24 +w 38 +h 10 +controlPv "$(P)$(R)Fi$(N3):Thickness" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 82 +y 24 +w 50 +h 10 +controlPv "$(P)$(R)Fi$(N3):Transmission" +format "exponential" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 36 +w 32 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(N4):" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 24 +y 36 +w 12 +h 10 +controlPv "$(P)$(R)Fi$(N4):Material" +format "string" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 40 +y 36 +w 38 +h 10 +controlPv "$(P)$(R)Fi$(N4):Thickness" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 82 +y 36 +w 50 +h 10 +controlPv "$(P)$(R)Fi$(N4):Transmission" +format "exponential" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 12 +y 54 +w 26 +h 88 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 12 +y 54 +w 26 +h 88 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filter_blade.edl;P=$(P),R=$(R),N=$(N4)" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filter_blade.edl;P=$(P),R=$(R),N=$(N4)" +} +noScroll +endObjectProperties + +endGroup + +visPv "$(P)$(R)Fi$(N4):Enable" +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 43 +y 54 +w 26 +h 88 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 43 +y 54 +w 26 +h 88 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filter_blade.edl;P=$(P),R=$(R),N=$(N3)" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filter_blade.edl;P=$(P),R=$(R),N=$(N3)" +} +noScroll +endObjectProperties + +endGroup + +visPv "$(P)$(R)Fi$(N3):Enable" +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 74 +y 54 +w 26 +h 88 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 74 +y 54 +w 26 +h 88 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filter_blade.edl;P=$(P),R=$(R),N=$(N2)" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filter_blade.edl;P=$(P),R=$(R),N=$(N2)" +} +noScroll +endObjectProperties + +endGroup + +visPv "$(P)$(R)Fi$(N2):Enable" +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 105 +y 54 +w 26 +h 88 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 105 +y 54 +w 26 +h 88 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "filter_blade.edl;P=$(P),R=$(R),N=$(N1)" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "filter_blade.edl;P=$(P),R=$(R),N=$(N1)" +} +noScroll +endObjectProperties + +endGroup + +visPv "$(P)$(R)Fi$(N1):Enable" +visMin "A" +visMax "1" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 15 +y 152 +w 110 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 22528 13312 3840 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "Configure" +numPvs 2 +numDsps 1 +displayFileName { + 0 filterbox_config.edl +} +menuLabel { + 0 Configure +} +symbols { + 0 "P=$(P),R=$(R),N1=$(N1),N2=$(N2),N3=$(N3),N4=$(N4)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/flexCapSensor.edl b/opticsApp/op/edl/autoconvert/flexCapSensor.edl new file mode 100644 index 0000000..1ab21b2 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/flexCapSensor.edl @@ -0,0 +1,277 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 643 +y 151 +w 210 +h 210 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 47872 47872 47872 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 5 +w 200 +h 45 +font "helvetica-bold-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Cap Sensor $(P)$(C)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 93 +y 57 +w 100 +h 18 +controlPv "$(P)$(C):pos" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 13 +y 57 +w 75 +h 18 +font "helvetica-bold-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Position" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 93 +y 80 +w 100 +h 18 +controlPv "$(P)$(C):voltage" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 13 +y 80 +w 75 +h 18 +font "helvetica-bold-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Voltage" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 93 +y 103 +w 100 +h 18 +controlPv "$(P)$(C):umPerV" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 13 +y 103 +w 75 +h 18 +font "helvetica-bold-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "um per V" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 13 +y 126 +w 75 +h 18 +font "helvetica-bold-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Offset" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 93 +y 126 +w 96 +h 18 +controlPv "$(P)$(C):offset" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 107 +y 160 +w 80 +h 28 +fgColor rgb 65280 65280 65280 +bgColor rgb 10240 37632 5376 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +buttonLabel "Pos Calc" +numPvs 2 +numDsps 1 +displayFileName { + 0 "yyCalcoutRecord.edl" +} +menuLabel { + 0 "Position Calc" +} +symbols { + 0 "P=$(P),C=$(C):posCalc" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 11 +y 160 +w 80 +h 28 +fgColor rgb 65280 65280 65280 +onColor rgb 10752 25344 58368 +offColor rgb 10752 25344 58368 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(C):zero.PROC" +pressValue "1" +releaseValue +onLabel "Zero Pos" +offLabel "Zero Pos" +3d +useEnumNumeric +font "helvetica-bold-r-12.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/flexCombinedMotion.edl b/opticsApp/op/edl/autoconvert/flexCombinedMotion.edl new file mode 100644 index 0000000..5ab4c7a --- /dev/null +++ b/opticsApp/op/edl/autoconvert/flexCombinedMotion.edl @@ -0,0 +1,768 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 616 +y 127 +w 210 +h 302 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 47872 47872 47872 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 5 +w 200 +h 45 +font "helvetica-bold-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Combined Motion $(P)$(M)" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 13 +y 60 +w 180 +h 18 + +beginGroup + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 93 +y 60 +w 100 +h 18 +controlPv "$(P)$(M):setPoint" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 13 +y 60 +w 75 +h 18 +font "helvetica-bold-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Set Point" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 13 +y 106 +w 176 +h 18 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 13 +y 106 +w 75 +h 18 +font "helvetica-bold-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Upper Lim" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 93 +y 106 +w 96 +h 18 +controlPv "$(P)$(M):upperLimit" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 13 +y 129 +w 176 +h 18 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 13 +y 129 +w 75 +h 18 +font "helvetica-bold-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Home Pos" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 93 +y 129 +w 96 +h 18 +controlPv "$(P)$(M):homePos" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 13 +y 83 +w 176 +h 18 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 13 +y 83 +w 75 +h 18 +font "helvetica-bold-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Deadband" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 93 +y 83 +w 96 +h 18 +controlPv "$(P)$(M):deadband" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 13 +y 175 +w 176 +h 18 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 13 +y 175 +w 75 +h 18 +font "helvetica-bold-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Lower Lim" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 93 +y 175 +w 96 +h 18 +controlPv "$(P)$(M):lowerLimit" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 13 +y 267 +w 180 +h 18 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 13 +y 267 +w 75 +h 18 +font "helvetica-bold-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Mode" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 13 +y 244 +w 176 +h 18 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 13 +y 244 +w 75 +h 18 +font "helvetica-bold-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Debug" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 93 +y 244 +w 96 +h 18 +controlPv "$(P)$(M):debug" +format "decimal" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 39168 65280 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +endGroup + +endObjectProperties + + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 13 +y 198 +w 75 +h 18 +font "helvetica-bold-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Busy" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 93 +y 198 +w 100 +h 18 +controlPv "$(P)$(M):busy" +format "string" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 13 +y 221 +w 180 +h 18 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 13 +y 221 +w 75 +h 18 +font "helvetica-bold-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Retries" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 93 +y 221 +w 100 +h 18 +controlPv "$(P)$(M):retries" +format "string" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +endGroup + +endObjectProperties + + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 93 +y 152 +w 100 +h 18 +controlPv "$(P)$(M):rehome" +format "string" +font "helvetica-bold-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 13 +y 60 +w 180 +h 18 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 13 +y 106 +w 176 +h 18 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 13 +y 129 +w 176 +h 18 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 13 +y 83 +w 176 +h 18 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 13 +y 175 +w 176 +h 18 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 13 +y 267 +w 180 +h 18 + +beginGroup + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 93 +y 267 +w 100 +h 18 +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(M):mode" +indicatorPv "$(P)$(M):mode" +font "helvetica-bold-r-12.0" +endObjectProperties + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 13 +y 244 +w 176 +h 18 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 13 +y 221 +w 180 +h 18 + +beginGroup + +endGroup + +endObjectProperties + + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 13 +y 152 +w 75 +h 18 +fgColor rgb 2560 0 47104 +onColor rgb 51200 51200 51200 +offColor rgb 51200 51200 51200 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(M):rehome" +pressValue "1" +releaseValue +onLabel "Rehome" +offLabel "Rehome" +3d +useEnumNumeric +font "helvetica-bold-r-12.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/flexCombinedMotionTop.edl b/opticsApp/op/edl/autoconvert/flexCombinedMotionTop.edl new file mode 100644 index 0000000..2dbf7eb --- /dev/null +++ b/opticsApp/op/edl/autoconvert/flexCombinedMotionTop.edl @@ -0,0 +1,106 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 273 +y 398 +w 200 +h 130 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 47872 47872 47872 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 10 +w 180 +h 25 +font "helvetica-bold-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Combined Motion" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 45 +w 180 +h 25 +font "helvetica-bold-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(M)" +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 25 +y 85 +w 150 +h 28 +fgColor rgb 65280 65280 65280 +bgColor rgb 10240 37632 5376 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +buttonLabel "Menu" +numPvs 6 +numDsps 3 +displayFileName { + 0 "motor3x.edl" + 1 "flexCombinedMotion.edl" + 2 "flexCapSensor.edl" +} +menuLabel { + 0 "Motors" + 1 "Combined Motion" + 2 "Cap Sensor" +} +symbols { + 0 "P=$(P),M1=$(M),M2=$(CM),M3=$(FM)" + 1 "P=$(P),M=$(M)" + 2 "P=$(P),C=$(C)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/hrSeqCtl_All.edl b/opticsApp/op/edl/autoconvert/hrSeqCtl_All.edl new file mode 100644 index 0000000..2f8460c --- /dev/null +++ b/opticsApp/op/edl/autoconvert/hrSeqCtl_All.edl @@ -0,0 +1,2739 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 159 +y 54 +w 650 +h 310 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 133 +w 649 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 1 +1 648 +} +yPoints { +0 134 +1 134 +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 490 +y 50 +w 100 +h 25 +controlPv "$(P)HR$(N)_Theta2AO.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 510 +y 90 +w 60 +h 20 +controlPv "$(P)HR$(N)_Theta2TweakAI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 490 +y 75 +w 100 +h 15 +controlPv "$(P)HR$(N)_Theta2AO.DRVL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 490 +y 0 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TH2 (deg.)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 490 +y 34 +w 100 +h 20 +controlPv "$(P)HR$(N)_Theta2RdbkAO" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 490 +y 19 +w 100 +h 14 +controlPv "$(P)HR$(N)_Theta2AO.DRVH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 593 +y 75 +w 56 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 60416 60416 60416 +bgColor index 3 +useDisplayBg +value { + "LowLim" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 593 +y 55 +w 57 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 60416 60416 60416 +bgColor index 3 +useDisplayBg +value { + "Desired" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 593 +y 37 +w 50 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 60416 60416 60416 +bgColor index 3 +useDisplayBg +value { + "Actual" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 593 +y 19 +w 59 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 60416 60416 60416 +bgColor index 3 +useDisplayBg +value { + "HighLim" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 300 +y 50 +w 100 +h 25 +controlPv "$(P)HR$(N)_Theta1AO.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 320 +y 90 +w 60 +h 20 +controlPv "$(P)HR$(N)_Theta1TweakAI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 300 +y 75 +w 100 +h 15 +controlPv "$(P)HR$(N)_Theta1AO.DRVL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 300 +y 0 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TH1 (deg.)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 300 +y 34 +w 100 +h 20 +controlPv "$(P)HR$(N)_Theta1RdbkAO" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 300 +y 19 +w 100 +h 14 +controlPv "$(P)HR$(N)_Theta1AO.DRVH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 75 +w 100 +h 15 +controlPv "$(P)HR$(N)_LambdaAO.DRVL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 50 +w 100 +h 25 +controlPv "$(P)HR$(N)_LambdaAO.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 130 +y 90 +w 45 +h 20 +controlPv "$(P)HR$(N)_LambdaTweakAI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 175 +y 92 +w 15 +h 10 +controlPv "$(P)HR$(N)_LambdaTweakAI.EGU" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 75 +w 100 +h 15 +controlPv "$(P)HR$(N)_EAO.DRVL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 50 +w 100 +h 25 +controlPv "$(P)HR$(N)_EAO.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 90 +w 40 +h 20 +controlPv "$(P)HR$(N)_ETweakAI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 60 +y 92 +w 20 +h 10 +controlPv "$(P)HR$(N)_ETweakAI.EGU" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 19 +w 100 +h 14 +controlPv "$(P)HR$(N)_EAO.DRVH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 34 +w 100 +h 20 +controlPv "$(P)HR$(N)_ERdbkAO" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "E (keV)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 34 +w 100 +h 20 +controlPv "$(P)HR$(N)_LambdaRdbkAO" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 19 +w 100 +h 14 +controlPv "$(P)HR$(N)_LambdaAO.DRVH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 110 +y 0 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Lambda (A)" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 221 +y 1 +w 77 +h 107 +lineColor rgb 44544 44544 44544 +fill +fillColor rgb 44544 44544 44544 +lineWidth 2 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 270 +y 2 +w 30 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "L1" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 275 +y 20 +w 20 +h 20 +controlPv "$(P)HR$(N)_L1AO.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 244 +y 2 +w 32 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "K1" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 250 +y 20 +w 20 +h 20 +controlPv "$(P)HR$(N)_K1AO.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 219 +y 2 +w 32 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "H1" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 225 +y 20 +w 20 +h 20 +controlPv "$(P)HR$(N)_H1AO.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 225 +y 43 +w 21 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "a" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 240 +y 40 +w 55 +h 20 +controlPv "$(P)HR$(N)_A1AO.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 240 +y 63 +w 55 +h 20 +controlPv "$(P)HR$(N)_2d1AO" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 225 +y 66 +w 28 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "2d" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 221 +y 1 +w 78 +h 108 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 411 +y 1 +w 77 +h 107 +lineColor rgb 44544 44544 44544 +fill +fillColor rgb 44544 44544 44544 +lineWidth 2 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 2 +w 30 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "L2" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 465 +y 20 +w 20 +h 20 +controlPv "$(P)HR$(N)_L2AO.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 434 +y 2 +w 32 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "K2" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 440 +y 20 +w 20 +h 20 +controlPv "$(P)HR$(N)_K2AO.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 409 +y 2 +w 32 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "H2" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 415 +y 20 +w 20 +h 20 +controlPv "$(P)HR$(N)_H2AO.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 415 +y 43 +w 21 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "a" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 430 +y 40 +w 55 +h 20 +controlPv "$(P)HR$(N)_A2AO.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 430 +y 63 +w 55 +h 20 +controlPv "$(P)HR$(N)_2d2AO" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 415 +y 66 +w 28 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "2d" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 411 +y 1 +w 78 +h 108 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 550 +y 246 +w 77 +h 22 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 39168 65280 65280 +bgColor index 3 +useDisplayBg +value { + "Moving" +} +visPv "CALC\\\{(A)\}($(P)HR$(N)_Moving)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 111 +y 187 +w 89 +h 14 +controlPv "$(P)HR$(N)_phi1CmdAO" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 116 +y 173 +w 80 +h 14 +controlPv "$(P)HR$(N)_phi1RdbkAI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 173 +w 92 +h 28 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)HR$(N)_phi1DmovBI)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 106 +y 140 +w 90 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Phi 1" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 205 +y 202 +w 94 +h 14 +controlPv "$(P)HR$(N)_phi2SetAO" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 52480 24832 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 202 +w 94 +h 14 +controlPv "$(P)HR$(N)_phi1SetAO" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 52480 24832 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 215 +w 94 +h 20 +controlPv "$(P)HR$(N)_phi1OffAO" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 205 +y 215 +w 94 +h 20 +controlPv "$(P)HR$(N)_phi2OffAO" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 211 +y 172 +w 80 +h 14 +controlPv "$(P)HR$(N)_phi2RdbkAI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Arc) +object activeArcClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 96 +y 193 +w 25 +h 18 +lineColor rgb 57600 36864 5376 +fillColor rgb 57600 36864 5376 +lineWidth 2 +startAngle 90 +totalAngle 180 +fillMode "pie" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 103 +y 190 +w 8 +h 10 +lineColor rgb 57600 36864 5376 +fillColor rgb 57600 36864 5376 +lineWidth 2 +numPoints 3 { +xPoints { +0 104 +1 110 +2 104 +} +yPoints { +0 191 +1 194 +2 199 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 74 +y 204 +w 20 +h 2 +lineColor rgb 57600 36864 5376 +fillColor rgb 57600 36864 5376 +lineWidth 2 +lineStyle "dash" +numPoints 2 { +xPoints { +0 93 +1 75 +} +yPoints { +0 205 +1 205 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 211 +y 140 +w 90 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Phi 2" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 157 +w 89 +h 14 +controlPv "$(P)HR$(N)_phi1PvSI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 206 +y 157 +w 89 +h 14 +controlPv "$(P)HR$(N)_phi2PvSI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 207 +y 187 +w 89 +h 14 +controlPv "$(P)HR$(N)_phi2CmdAO" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 205 +y 173 +w 92 +h 28 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)HR$(N)_phi2DmovBI)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 305 +y 202 +w 78 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 52480 24832 0 +bgColor index 3 +useDisplayBg +value { + "Motor Write" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 305 +y 172 +w 79 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Motor Read" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 305 +y 187 +w 78 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Motor Write" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 305 +y 157 +w 101 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Motor PV name" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 305 +y 218 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Offset" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 305 +y 234 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Angle" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 385 +y 172 +w 25 +h 10 +controlPv "$(P)HR$(N)_phi1RdbkAI.EGU" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 385 +y 187 +w 25 +h 10 +controlPv "$(P)HR$(N)_phi1CmdAO.EGU" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 385 +y 202 +w 25 +h 10 +controlPv "$(P)HR$(N)_phi1SetAO.EGU" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 360 +y 218 +w 50 +h 10 +controlPv "$(P)HR$(N)_phi1OffAO.EGU" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 360 +y 234 +w 50 +h 10 +controlPv "$(P)HR$(N)_phi1AO.EGU" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 158 +w 81 +h 80 +lineColor rgb 57600 36864 5376 +fill +fillColor rgb 57600 36864 5376 +lineWidth 2 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 205 +y 234 +w 94 +h 14 +controlPv "$(P)HR$(N)_phi2AO" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 234 +w 94 +h 14 +controlPv "$(P)HR$(N)_phi1AO" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 553 +y 246 +w 70 +h 22 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 19712 20992 41984 +bgColor index 3 +useDisplayBg +value { + "Done" +} +visPv "CALC\\\{(A)\}($(P)HR$(N)_Moving)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 430 +y 145 +w 100 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Calibration" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 69 +y 261 +w 363 +h 44 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)HR$(N)_AlertBO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 82 +y 265 +w 339 +h 18 +controlPv "$(P)HR$(N)_SeqMsg1SI" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 82 +y 285 +w 339 +h 18 +controlPv "$(P)HR$(N)_SeqMsg2SI" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 255 +w 536 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 1 +1 535 +} +yPoints { +0 256 +1 256 +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 545 +y 157 +w 85 +h 25 +controlPv "$(P)HR$(N)_worldOffAO.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 565 +y 182 +w 45 +h 20 +controlPv "$(P)HR$(N)_worldTweakAI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 545 +y 140 +w 60 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "world" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 605 +y 144 +w 25 +h 10 +controlPv "$(P)HR$(N)_worldOffAO.EGU" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 570 +y 90 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)HR$(N)_Theta2IncBO.VAL" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 490 +y 90 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)HR$(N)_Theta2DecBO.VAL" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 380 +y 90 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)HR$(N)_Theta1IncBO.VAL" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 300 +y 90 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)HR$(N)_Theta1DecBO.VAL" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 190 +y 90 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)HR$(N)_LambdaIncBO.VAL" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 90 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)HR$(N)_LambdaDecBO.VAL" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 90 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)HR$(N)_EDecBO.VAL" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 80 +y 90 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)HR$(N)_EIncBO.VAL" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 225 +y 85 +w 70 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)HR$(N)_1TypeMO" +indicatorPv "$(P)HR$(N)_1TypeMO" +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 415 +y 85 +w 70 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)HR$(N)_2TypeMO" +indicatorPv "$(P)HR$(N)_2TypeMO" +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 162 +w 75 +h 45 +fgColor rgb 0 0 0 +bgColor rgb 57600 36864 5376 +selectColor rgb 57600 36864 5376 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)HR$(N)_ModeBO.VAL" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 210 +w 75 +h 25 +fgColor rgb 0 0 0 +onColor rgb 57600 36864 5376 +offColor rgb 57600 36864 5376 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)HR$(N)_PutBO" +pressValue "1" +releaseValue +onLabel "Move" +offLabel "Move" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 546 +y 209 +w 88 +h 38 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "All Stop" +offLabel "All Stop" +3d +useEnumNumeric +font "helvetica-medium-r-18.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 430 +y 195 +w 100 +h 55 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)HR$(N)_Mode2MO.VAL" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 430 +y 160 +w 100 +h 22 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)HR$(N)_UseSetBO.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 266 +w 54 +h 34 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)HR$(N)_OperAckBO" +pressValue "1" +releaseValue +onLabel "OK" +offLabel "OK" +3d +useEnumNumeric +font "helvetica-medium-r-18.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 610 +y 182 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)HR$(N)_worldIncBO.VAL" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 545 +y 182 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)HR$(N)_worldDecBO.VAL" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 111 +w 60 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "ScanParm" +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParms.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=HR$(N)_E,PV=HR$(N)_EAO" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 82 +y 111 +w 21 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)HR$(N)_E:scanParms.GO" +pressValue "1" +releaseValue +onLabel "Go" +offLabel "Go" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 62 +y 111 +w 21 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)HR$(N)_E:scanParms.LOAD" +pressValue "1" +releaseValue +onLabel "Ld" +offLabel "Ld" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 409 +y 112 +w 200 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)HR$(N)_GeomMO.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/hr_nested.edl b/opticsApp/op/edl/autoconvert/hr_nested.edl new file mode 100644 index 0000000..79265f7 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/hr_nested.edl @@ -0,0 +1,451 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 243 +y 448 +w 456 +h 289 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 47872 47872 47872 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 26 +y 242 +w 63 +h 41 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 26 +y 242 +w 64 +h 42 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 28 +y 258 +w 61 +h 10 +controlPv "$(P)HR$(N)_Theta1RdbkAO" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 28 +y 268 +w 61 +h 16 +controlPv "$(P)HR$(N)_Theta1AO.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 28 +y 242 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Theta1" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 326 +y 158 +w 63 +h 41 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 326 +y 158 +w 64 +h 42 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 328 +y 174 +w 61 +h 10 +controlPv "$(P)HR$(N)_Theta2RdbkAO" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 328 +y 184 +w 61 +h 16 +controlPv "$(P)HR$(N)_Theta2AO.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 328 +y 158 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Theta2" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 253 +y 222 +w 63 +h 37 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 253 +y 222 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 255 +y 238 +w 61 +h 10 +controlPv "$(P)HR$(N)_phi1RdbkAI" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 255 +y 222 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Phi1" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 255 +y 248 +w 61 +h 10 +controlPv "$(P)HR$(N)_phi1AO" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 354 +y 70 +w 63 +h 37 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 354 +y 70 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 356 +y 86 +w 61 +h 10 +controlPv "$(P)HR$(N)_phi2RdbkAI" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 356 +y 70 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Phi2" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 356 +y 96 +w 61 +h 10 +controlPv "$(P)HR$(N)_phi2AO" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 351 +y 255 +w 88 +h 28 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "All Stop" +offLabel "All Stop" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/hr_symmetric.edl b/opticsApp/op/edl/autoconvert/hr_symmetric.edl new file mode 100644 index 0000000..e450c15 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/hr_symmetric.edl @@ -0,0 +1,451 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 30 +y 85 +w 456 +h 290 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 47872 47872 47872 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 65 +y 200 +w 63 +h 41 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 65 +y 200 +w 64 +h 42 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 67 +y 216 +w 61 +h 10 +controlPv "$(P)HR$(N)_Theta1RdbkAO" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 67 +y 226 +w 61 +h 16 +controlPv "$(P)HR$(N)_Theta1AO.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 67 +y 200 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Theta1" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 300 +y 200 +w 63 +h 41 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 300 +y 200 +w 64 +h 42 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 302 +y 216 +w 61 +h 10 +controlPv "$(P)HR$(N)_Theta2RdbkAO" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 302 +y 226 +w 61 +h 16 +controlPv "$(P)HR$(N)_Theta2AO.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 302 +y 200 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Theta2" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 145 +y 235 +w 63 +h 37 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 145 +y 235 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 147 +y 251 +w 61 +h 10 +controlPv "$(P)HR$(N)_phi1RdbkAI" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 147 +y 235 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Phi1" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 147 +y 261 +w 61 +h 10 +controlPv "$(P)HR$(N)_phi1AO" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 215 +y 235 +w 63 +h 37 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 215 +y 235 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 217 +y 251 +w 61 +h 10 +controlPv "$(P)HR$(N)_phi2RdbkAI" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 217 +y 235 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Phi2" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 217 +y 261 +w 61 +h 10 +controlPv "$(P)HR$(N)_phi2AO" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 351 +y 255 +w 88 +h 28 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "All Stop" +offLabel "All Stop" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/kohzu2Graphic.edl b/opticsApp/op/edl/autoconvert/kohzu2Graphic.edl new file mode 100644 index 0000000..bc57bcd --- /dev/null +++ b/opticsApp/op/edl/autoconvert/kohzu2Graphic.edl @@ -0,0 +1,1161 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 10 +y 10 +w 440 +h 340 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 47872 47872 47872 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 298 +y 232 +w 61 +h 10 +controlPv "$(P)$(mX).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 296 +y 220 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 298 +y 222 +w 61 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mX)" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 298 +y 242 +w 61 +h 15 +controlPv "$(P)$(mX).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 74 +y 105 +w 63 +h 37 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 51 +y 281 +w 63 +h 39 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 53 +y 295 +w 60 +h 10 +controlPv "$(P)BraggThetaRdbkAO" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 53 +y 305 +w 60 +h 15 +controlPv "$(P)BraggThetaAO" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 357 +y 87 +w 63 +h 37 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 359 +y 89 +w 61 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mX2)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 359 +y 99 +w 61 +h 10 +controlPv "$(P)$(mX2).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 359 +y 109 +w 61 +h 15 +controlPv "$(P)$(mX2).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 357 +y 87 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 100 +y 27 +w 63 +h 37 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 102 +y 29 +w 61 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mTH2)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 102 +y 39 +w 61 +h 10 +controlPv "$(P)$(mTH2).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 102 +y 49 +w 61 +h 15 +controlPv "$(P)$(mTH2).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 76 +y 117 +w 61 +h 10 +controlPv "$(P)$(mCHI2).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 76 +y 127 +w 61 +h 15 +controlPv "$(P)$(mCHI2).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 76 +y 107 +w 61 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mCHI2)" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 74 +y 105 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 100 +y 27 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 53 +y 283 +w 61 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Theta(Y,Z)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 76 +y 91 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Chi" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 102 +y 13 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Theta2" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 215 +y 37 +w 60 +h 10 +controlPv "$(P)$(mZ2).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 213 +y 25 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 215 +y 27 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mZ2)" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 215 +y 47 +w 60 +h 15 +controlPv "$(P)$(mZ2).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 215 +y 11 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Z2" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 196 +y 166 +w 63 +h 37 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 198 +y 168 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mY2)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 198 +y 178 +w 60 +h 10 +controlPv "$(P)$(mY2).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 198 +y 188 +w 60 +h 15 +controlPv "$(P)$(mY2).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 196 +y 166 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 198 +y 152 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y2" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 298 +y 206 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "X" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 359 +y 73 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "X2" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 342 +y 18 +w 63 +h 37 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 344 +y 20 +w 61 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mY)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 344 +y 30 +w 61 +h 10 +controlPv "$(P)$(mY).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 344 +y 40 +w 61 +h 15 +controlPv "$(P)$(mY).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 342 +y 18 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 344 +y 4 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 122 +w 26 +h 0 +lineColor rgb 37120 37120 37120 +fillColor rgb 37120 37120 37120 +lineWidth 0 +numPoints 2 { +xPoints { +0 140 +1 166 +} +yPoints { +0 122 +1 122 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 165 +y 57 +w 43 +h 44 +lineColor rgb 37120 37120 37120 +fillColor rgb 37120 37120 37120 +lineWidth 0 +numPoints 2 { +xPoints { +0 165 +1 208 +} +yPoints { +0 57 +1 101 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 249 +y 63 +w 3 +h 27 +lineColor rgb 37120 37120 37120 +fillColor rgb 37120 37120 37120 +lineWidth 0 +numPoints 2 { +xPoints { +0 252 +1 249 +} +yPoints { +0 63 +1 90 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 204 +y 123 +w 14 +h 43 +lineColor rgb 37120 37120 37120 +fillColor rgb 37120 37120 37120 +lineWidth 0 +numPoints 2 { +xPoints { +0 204 +1 218 +} +yPoints { +0 166 +1 123 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 81 +y 212 +w 63 +h 37 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 81 +y 212 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 83 +y 224 +w 61 +h 10 +controlPv "$(P)$(mTH).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 83 +y 214 +w 61 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mTH)" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 83 +y 234 +w 61 +h 15 +controlPv "$(P)$(mTH).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 83 +y 198 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Theta" +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 175 +y 276 +w 88 +h 28 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "All Stop" +offLabel "All Stop" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/kohzuGraphic.edl b/opticsApp/op/edl/autoconvert/kohzuGraphic.edl new file mode 100644 index 0000000..24070c6 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/kohzuGraphic.edl @@ -0,0 +1,1065 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 10 +y 10 +w 440 +h 340 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 47872 47872 47872 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 38 +y 288 +w 63 +h 39 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 40 +y 302 +w 60 +h 10 +controlPv "$(P)BraggThetaRdbkAO" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 40 +y 312 +w 60 +h 15 +controlPv "$(P)BraggThetaAO" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 40 +y 290 +w 61 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Theta(Y,Z)" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 73 +y 232 +w 63 +h 37 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 73 +y 232 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 75 +y 244 +w 61 +h 10 +controlPv "$(P)$(mTH).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 75 +y 234 +w 61 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mTH)" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 75 +y 254 +w 61 +h 15 +controlPv "$(P)$(mTH).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 75 +y 218 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Theta" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 77 +y 131 +w 63 +h 37 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 79 +y 143 +w 61 +h 10 +controlPv "$(P)$(mCHI2).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 79 +y 153 +w 61 +h 15 +controlPv "$(P)$(mCHI2).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 79 +y 133 +w 61 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mCHI2)" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 77 +y 131 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 79 +y 117 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Chi" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 160 +y 42 +w 63 +h 37 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 162 +y 44 +w 61 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mTH2)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 162 +y 54 +w 61 +h 10 +controlPv "$(P)$(mTH2).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 162 +y 64 +w 61 +h 15 +controlPv "$(P)$(mTH2).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 160 +y 42 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 162 +y 28 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Theta2" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 233 +y 85 +w 60 +h 10 +controlPv "$(P)$(mZ2).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 231 +y 73 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 233 +y 75 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mZ2)" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 233 +y 95 +w 60 +h 15 +controlPv "$(P)$(mZ2).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 233 +y 59 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Z2" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 374 +y 24 +w 63 +h 37 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 376 +y 26 +w 61 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mY)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 376 +y 36 +w 61 +h 10 +controlPv "$(P)$(mY).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 376 +y 46 +w 61 +h 15 +controlPv "$(P)$(mY).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 374 +y 24 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 376 +y 10 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 317 +y 80 +w 63 +h 37 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 319 +y 82 +w 61 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mX2)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 319 +y 92 +w 61 +h 10 +controlPv "$(P)$(mX2).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 319 +y 102 +w 61 +h 15 +controlPv "$(P)$(mX2).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 317 +y 80 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 319 +y 66 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "X2" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 317 +y 254 +w 61 +h 10 +controlPv "$(P)$(mX).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 315 +y 242 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 317 +y 244 +w 61 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mX)" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 317 +y 264 +w 61 +h 15 +controlPv "$(P)$(mX).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 317 +y 228 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "X" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 214 +y 196 +w 63 +h 37 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 216 +y 198 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mY1)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 216 +y 208 +w 60 +h 10 +controlPv "$(P)$(mY1).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 216 +y 218 +w 60 +h 15 +controlPv "$(P)$(mY1).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 214 +y 196 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 216 +y 182 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y1" +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 181 +y 281 +w 88 +h 28 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "All Stop" +offLabel "All Stop" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/kohzuGraphicLarge.edl b/opticsApp/op/edl/autoconvert/kohzuGraphicLarge.edl new file mode 100644 index 0000000..dc05464 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/kohzuGraphicLarge.edl @@ -0,0 +1,890 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 10 +y 10 +w 880 +h 680 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 47872 47872 47872 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 454 +y 197 +w 40 +h 10 +controlPv "$(P)$(mZ2).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 453 +y 196 +w 42 +h 32 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 453 +y 186 +w 53 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mZ2)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 390 +y 354 +w 40 +h 10 +controlPv "$(P)$(mY1).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 389 +y 353 +w 42 +h 32 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 390 +y 343 +w 53 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mY1)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 209 +y 444 +w 40 +h 10 +controlPv "$(P)$(mTH).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 208 +y 443 +w 42 +h 32 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 209 +y 433 +w 52 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mTH)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 288 +y 244 +w 40 +h 10 +controlPv "$(P)$(mCHI2).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 287 +y 243 +w 42 +h 32 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 288 +y 233 +w 61 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mCHI2)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 321 +y 134 +w 40 +h 10 +controlPv "$(P)$(mTH2).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 320 +y 133 +w 42 +h 32 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 321 +y 123 +w 57 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mTH2)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 736 +y 211 +w 40 +h 10 +controlPv "$(P)$(mX2).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 735 +y 210 +w 42 +h 32 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 736 +y 200 +w 53 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mX2)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 751 +y 35 +w 40 +h 10 +controlPv "$(P)$(mY).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 750 +y 34 +w 42 +h 32 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 751 +y 24 +w 48 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mY)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 544 +y 460 +w 40 +h 10 +controlPv "$(P)$(mX).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 543 +y 459 +w 42 +h 32 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 544 +y 449 +w 48 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mX)" +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 474 +y 207 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mZ2).JOGF" +pressValue "1" +releaseValue "0" +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 454 +y 207 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mZ2).JOGR" +pressValue "1" +releaseValue "0" +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 410 +y 364 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mY1).JOGF" +pressValue "1" +releaseValue "0" +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 390 +y 364 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mY1).JOGR" +pressValue "1" +releaseValue "0" +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 229 +y 454 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mTH).JOGF" +pressValue "1" +releaseValue "0" +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 209 +y 454 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mTH).JOGR" +pressValue "1" +releaseValue "0" +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 308 +y 254 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mCHI2).JOGF" +pressValue "1" +releaseValue "0" +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 288 +y 254 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mCHI2).JOGR" +pressValue "1" +releaseValue "0" +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 341 +y 144 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mTH2).JOGF" +pressValue "1" +releaseValue "0" +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 321 +y 144 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mTH2).JOGR" +pressValue "1" +releaseValue "0" +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 756 +y 221 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mX2).JOGF" +pressValue "1" +releaseValue "0" +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 736 +y 221 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mX2).JOGR" +pressValue "1" +releaseValue "0" +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 771 +y 45 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mY).JOGF" +pressValue "1" +releaseValue "0" +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 751 +y 45 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mY).JOGR" +pressValue "1" +releaseValue "0" +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 564 +y 470 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mX).JOGF" +pressValue "1" +releaseValue "0" +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 544 +y 470 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(mX).JOGR" +pressValue "1" +releaseValue "0" +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/kohzuSeqCtl.edl b/opticsApp/op/edl/autoconvert/kohzuSeqCtl.edl new file mode 100644 index 0000000..05a1b4c --- /dev/null +++ b/opticsApp/op/edl/autoconvert/kohzuSeqCtl.edl @@ -0,0 +1,1666 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 10 +y 10 +w 525 +h 200 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 105 +w 104 +h 31 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 105 +w 105 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "SCAN CONTROL" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 285 +y 0 +w 2 +h 139 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 286 +1 286 +} +yPoints { +0 1 +1 138 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 275 +y 55 +w 15 +h 15 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +closePolygon +numPoints 4 { +xPoints { +0 275 +1 275 +2 290 +3 275 +} +yPoints { +0 55 +1 70 +2 62 +3 55 +} +visPv "CALC\\\{(A)\}($(P)KohzuModeBO.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 451 +y 43 +w 67 +h 15 +controlPv "$(P)KohzuZRdbkAI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 451 +y 57 +w 67 +h 15 +controlPv "$(P)KohzuZCmdAO" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 450 +y 32 +w 70 +h 10 +controlPv "$(P)KohzuZPvSI" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 451 +y 43 +w 68 +h 30 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)KohzuZDmovBI)" +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 292 +y 43 +w 76 +h 15 +controlPv "$(P)KohzuThetaRdbkAI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 292 +y 57 +w 76 +h 15 +controlPv "$(P)KohzuThetaCmdAO" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 290 +y 32 +w 80 +h 10 +controlPv "$(P)KohzuThetaPvSI" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 291 +y 43 +w 78 +h 30 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)KohzuThetaDmovBI)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 290 +y 17 +w 80 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Theta" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 450 +y 17 +w 70 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Z" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 275 +y 55 +w 15 +h 15 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +closePolygon +numPoints 4 { +xPoints { +0 275 +1 275 +2 290 +3 275 +} +yPoints { +0 55 +1 70 +2 62 +3 55 +} +visPv "CALC\\\{(A)\}($(P)KohzuPutBO.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 431 +y 89 +w 100 +h 26 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor index 3 +useDisplayBg +value { + "Moving" +} +visPv "CALC\\\{(A)\}($(P)KohzuMoving)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 432 +y 90 +w 100 +h 26 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor index 3 +useDisplayBg +value { + "Moving" +} +visPv "CALC\\\{(A)\}($(P)KohzuMoving)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 430 +y 88 +w 100 +h 26 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 39168 65280 65280 +bgColor index 3 +useDisplayBg +value { + "Moving" +} +visPv "CALC\\\{(A)\}($(P)KohzuMoving)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 295 +y 97 +w 100 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Calibration:" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 215 +y 0 +w 2 +h 139 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 216 +1 216 +} +yPoints { +0 1 +1 138 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 211 +y 61 +w 67 +h 2 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)KohzuPutBO.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x -1 +y 138 +w 524 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 0 +1 522 +} +yPoints { +0 139 +1 139 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 167 +w 342 +h 31 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)KohzuAlertBO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 3 +y 168 +w 339 +h 14 +controlPv "$(P)KohzuSeqMsg1SI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 3 +y 184 +w 339 +h 14 +controlPv "$(P)KohzuSeqMsg2SI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 475 +y 178 +w 48 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "More" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 143 +w 54 +h 18 +font "helvetica-medium-r-14.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Mode:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 110 +y 0 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TH (deg.)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 32 +w 100 +h 20 +controlPv "$(P)BraggThetaRdbkAO" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 48 +w 100 +h 25 +controlPv "$(P)BraggThetaAO.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 130 +y 84 +w 60 +h 20 +controlPv "$(P)BraggThetaTweakAI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 19 +w 100 +h 15 +controlPv "$(P)BraggThetaAO.DRVH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 71 +w 100 +h 15 +controlPv "$(P)BraggThetaAO.DRVL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 32 +w 100 +h 20 +controlPv "$(P)BraggERdbkAO" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 48 +w 100 +h 25 +controlPv "$(P)BraggEAO.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 84 +w 60 +h 20 +controlPv "$(P)BraggETweakAI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 71 +w 100 +h 15 +controlPv "$(P)BraggEAO.DRVL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 19 +w 100 +h 15 +controlPv "$(P)BraggEAO.DRVH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 0 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "E (keV)" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 211 +y 61 +w 67 +h 2 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)KohzuModeBO.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 105 +w 104 +h 31 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 110 +y 105 +w 105 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "SCAN CONTROL" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 290 +y 0 +w 230 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Monochromator Motors" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 376 +y 43 +w 67 +h 15 +controlPv "$(P)KohzuYRdbkAI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 376 +y 57 +w 67 +h 15 +controlPv "$(P)KohzuYCmdAO" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 375 +y 32 +w 70 +h 10 +controlPv "$(P)KohzuYPvSI" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 376 +y 43 +w 68 +h 30 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)KohzuYDmovBI)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 375 +y 17 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 372 +y 20 +w 0 +h 54 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 372 +1 372 +} +yPoints { +0 20 +1 74 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 447 +y 20 +w 0 +h 54 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 447 +1 447 +} +yPoints { +0 20 +1 74 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 64 +y 115 +w 40 +h 20 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "Abort" +offLabel "Abort" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 43 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)BraggE:scanParms.GO" +pressValue "1" +releaseValue +onLabel "Go" +offLabel "Go" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 22 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)BraggE:scanParms.LOAD" +pressValue "1" +releaseValue +onLabel "Ld" +offLabel "Ld" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParms.edl +} +menuLabel { + 0 Energy-scan parameters +} +symbols { + 0 "P=$(P),Q=BraggE,PV=BraggEAO" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 295 +y 112 +w 100 +h 22 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)KohzuUseSetBO.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 405 +y 112 +w 100 +h 22 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "All Stop" +offLabel "All Stop" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 143 +w 475 +h 18 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)KohzuMode2MO.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 350 +y 166 +w 50 +h 34 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)KohzuOperAckBO" +pressValue "1" +releaseValue +onLabel "OK" +offLabel "OK" +3d +useEnumNumeric +font "helvetica-medium-r-18.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 450 +y 176 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 14 +numDsps 7 +displayFileName { + 0 kohzuGraphic.edl + 1 kohzuGraphicLarge.edl + 2 kohzuSeqCtl_tiny.edl + 3 kohzuSeqCtl_All.edl + 4 scanParms.edl + 5 scanParms.edl + 6 scanParms.edl +} +menuLabel { + 0 Kohzu Graphic + 1 Kohzu Graphic (L) + 2 KohzuSeq (tiny) + 3 KohzuSeq (all) + 4 Energy-scan parameters + 5 Theta-scan parameters + 6 Wavelength-scan parameters +} +symbols { + 0 "P=$(P),mTH=$(mTH),mY=$(mY),mZ=$(mZ),mCHI2=$(mCHI2),mTH2=$(mTH2),mX2=$(mX2),QE=BraggE,PVE=BraggEAO,QL=BraggLambda,PVL=BraggLambdaAO,QTh=BraggTheta,PVTh=BraggThetaAO" + 1 "P=$(P),mTH=$(mTH),mY=$(mY),mZ=$(mZ),mCHI2=$(mCHI2),mTH2=$(mTH2),mX2=$(mX2),QE=BraggE,PVE=BraggEAO,QL=BraggLambda,PVL=BraggLambdaAO,QTh=BraggTheta,PVTh=BraggThetaAO" + 2 "P=$(P),mTH=$(mTH),mY=$(mY),mZ=$(mZ),mCHI2=$(mCHI2),mTH2=$(mTH2),mX2=$(mX2)" + 3 "P=$(P),mTH=$(mTH),mY=$(mY),mZ=$(mZ),mCHI2=$(mCHI2),mTH2=$(mTH2),mX2=$(mX2)" + 4 "P=$(P),Q=BraggE,PV=BraggEAO" + 5 "P=$(P),Q=BraggTheta,PV=BraggThetaAO" + 6 "P=$(P),Q=BraggLambda,PV=BraggLambdaAO" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 + 5 1 + 6 1 +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 220 +y 5 +w 60 +h 45 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)KohzuModeBO.VAL" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 220 +y 75 +w 60 +h 25 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)KohzuPutBO" +pressValue "1" +releaseValue +onLabel "Move" +offLabel "Move" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 190 +y 84 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)BraggThetaIncBO.VAL" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 84 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)BraggThetaDecBO.VAL" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 84 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)BraggEIncBO.VAL" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 84 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)BraggEDecBO.VAL" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 174 +y 115 +w 40 +h 20 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "Abort" +offLabel "Abort" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 153 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)BraggTheta:scanParms.GO" +pressValue "1" +releaseValue +onLabel "Go" +offLabel "Go" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 132 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)BraggTheta:scanParms.LOAD" +pressValue "1" +releaseValue +onLabel "Ld" +offLabel "Ld" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 111 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParms.edl +} +menuLabel { + 0 Theta-scan parameters +} +symbols { + 0 "P=$(P),Q=BraggTheta,PV=BraggThetaAO" +} +replaceSymbols { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/kohzuSeqCtl_All.edl b/opticsApp/op/edl/autoconvert/kohzuSeqCtl_All.edl new file mode 100644 index 0000000..3980da3 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/kohzuSeqCtl_All.edl @@ -0,0 +1,2057 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 901 +y 617 +w 535 +h 365 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 295 +w 363 +h 44 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)KohzuAlertBO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 1 +w 112 +h 91 +lineColor rgb 44544 44544 44544 +fill +fillColor rgb 44544 44544 44544 +lineWidth 2 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 5 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "H" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 15 +y 5 +w 20 +h 20 +controlPv "$(P)BraggHAO.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 43 +y 5 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "K" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 53 +y 5 +w 20 +h 20 +controlPv "$(P)BraggKAO.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 81 +y 5 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "L" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 91 +y 5 +w 20 +h 20 +controlPv "$(P)BraggLAO.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 9 +y 25 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "a" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 29 +y 25 +w 60 +h 20 +controlPv "$(P)BraggAAO.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 9 +y 48 +w 30 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "2d" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 29 +y 48 +w 60 +h 20 +controlPv "$(P)Bragg2dSpacingAO" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 110 +y 123 +w 90 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Theta" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 300 +y 123 +w 90 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Z" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 347 +y 1 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TH (deg.)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 347 +y 35 +w 100 +h 20 +controlPv "$(P)BraggThetaRdbkAO" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 347 +y 55 +w 100 +h 25 +controlPv "$(P)BraggThetaAO.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 367 +y 95 +w 60 +h 20 +controlPv "$(P)BraggThetaTweakAI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 347 +y 20 +w 100 +h 15 +controlPv "$(P)BraggThetaAO.DRVH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 347 +y 80 +w 100 +h 15 +controlPv "$(P)BraggThetaAO.DRVL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 237 +y 80 +w 100 +h 15 +controlPv "$(P)BraggLambdaAO.DRVL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 127 +y 80 +w 100 +h 15 +controlPv "$(P)BraggEAO.DRVL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 237 +y 35 +w 100 +h 20 +controlPv "$(P)BraggLambdaRdbkAO" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 237 +y 55 +w 100 +h 25 +controlPv "$(P)BraggLambdaAO.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 257 +y 95 +w 60 +h 20 +controlPv "$(P)BraggLambdaTweakAI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 237 +y 20 +w 100 +h 15 +controlPv "$(P)BraggLambdaAO.DRVH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 127 +y 55 +w 100 +h 25 +controlPv "$(P)BraggEAO.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 147 +y 95 +w 60 +h 20 +controlPv "$(P)BraggETweakAI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 127 +y 20 +w 100 +h 15 +controlPv "$(P)BraggEAO.DRVH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 127 +y 35 +w 100 +h 20 +controlPv "$(P)BraggERdbkAO" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 237 +y 1 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "lambda (A)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 127 +y 1 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "E (keV)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 400 +y 205 +w 50 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Speed" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 400 +y 190 +w 50 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Ideal" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 400 +y 155 +w 78 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Actual Pos." +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 400 +y 173 +w 105 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Motor Command" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 80 +w 75 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 60416 60416 60416 +bgColor index 3 +useDisplayBg +value { + "Low Limit" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 60 +w 75 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 60416 60416 60416 +bgColor index 3 +useDisplayBg +value { + "Desired" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 38 +w 75 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 60416 60416 60416 +bgColor index 3 +useDisplayBg +value { + "Actual" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 20 +w 75 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 60416 60416 60416 +bgColor index 3 +useDisplayBg +value { + "High Limit" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x -1 +y 118 +w 536 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 0 +1 534 +} +yPoints { +0 119 +1 119 +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 120 +y 155 +w 80 +h 15 +controlPv "$(P)KohzuThetaRdbkAI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 215 +y 154 +w 80 +h 15 +controlPv "$(P)KohzuYRdbkAI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 310 +y 155 +w 80 +h 15 +controlPv "$(P)KohzuZRdbkAI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 1 +w 116 +h 95 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 310 +y 190 +w 80 +h 15 +controlPv "$(P)KohzuZSetAO" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 52480 24832 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 215 +y 190 +w 80 +h 15 +controlPv "$(P)KohzuYSetAO" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 52480 24832 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 120 +y 190 +w 80 +h 15 +controlPv "$(P)KohzuThetaSetAO" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 52480 24832 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Arc) +object activeArcClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 100 +y 180 +w 25 +h 18 +lineColor rgb 57600 36864 5376 +fillColor rgb 57600 36864 5376 +lineWidth 2 +startAngle 90 +totalAngle 180 +fillMode "pie" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 107 +y 177 +w 8 +h 10 +lineColor rgb 57600 36864 5376 +fillColor rgb 57600 36864 5376 +lineWidth 2 +numPoints 3 { +xPoints { +0 108 +1 114 +2 108 +} +yPoints { +0 178 +1 181 +2 186 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 78 +y 188 +w 20 +h 2 +lineColor rgb 57600 36864 5376 +fillColor rgb 57600 36864 5376 +lineWidth 2 +lineStyle "dash" +numPoints 2 { +xPoints { +0 97 +1 79 +} +yPoints { +0 189 +1 189 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 138 +w 81 +h 80 +lineColor rgb 57600 36864 5376 +fill +fillColor rgb 57600 36864 5376 +lineWidth 2 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 98 +y 299 +w 339 +h 18 +controlPv "$(P)KohzuSeqMsg1SI" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x -2 +y 288 +w 536 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 -1 +1 533 +} +yPoints { +0 289 +1 289 +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 98 +y 319 +w 339 +h 18 +controlPv "$(P)KohzuSeqMsg2SI" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 215 +y 122 +w 90 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 114 +y 140 +w 89 +h 13 +controlPv "$(P)KohzuThetaPvSI" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 210 +y 140 +w 89 +h 13 +controlPv "$(P)KohzuYPvSI" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 306 +y 140 +w 89 +h 13 +controlPv "$(P)KohzuZPvSI" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 401 +y 138 +w 67 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Motor PV" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 307 +y 206 +w 89 +h 13 +controlPv "$(P)KohzuZVelAI" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 211 +y 206 +w 89 +h 13 +controlPv "$(P)KohzuYVelAI" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 115 +y 206 +w 89 +h 13 +controlPv "$(P)KohzuThetaVelAI" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 307 +y 173 +w 89 +h 13 +controlPv "$(P)KohzuZCmdAO" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 211 +y 173 +w 89 +h 13 +controlPv "$(P)KohzuYCmdAO" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 115 +y 173 +w 89 +h 13 +controlPv "$(P)KohzuThetaCmdAO" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 307 +y 155 +w 92 +h 33 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)KohzuZDmovBI)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 114 +y 155 +w 92 +h 33 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)KohzuThetaDmovBI)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 210 +y 155 +w 92 +h 33 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)KohzuYDmovBI)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 244 +w 100 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Calibration:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 445 +y 230 +w 88 +h 22 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 39168 65280 65280 +bgColor index 3 +useDisplayBg +value { + "Moving" +} +visPv "CALC\\\{(A)\}($(P)KohzuMoving)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 445 +y 230 +w 88 +h 22 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Done" +} +visPv "CALC\\\{(A)\}($(P)KohzuMoving)" +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 181 +y 263 +w 60 +h 20 +controlPv "$(P)Kohzu_yOffsetAO.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 119 +y 266 +w 65 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "y offset:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 107 +y 230 +w 150 +h 9 +font "helvetica-bold-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Channel Cut inhibits" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 108 +y 237 +w 150 +h 9 +font "helvetica-bold-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Y1 and Z2 motors" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 20 +y 345 +w 100 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Speed Control:" +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 6 +y 142 +w 75 +h 45 +fgColor rgb 0 0 0 +bgColor rgb 57600 36864 5376 +selectColor rgb 57600 36864 5376 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)KohzuModeBO.VAL" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 6 +y 190 +w 75 +h 25 +fgColor rgb 0 0 0 +onColor rgb 57600 36864 5376 +offColor rgb 57600 36864 5376 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)KohzuPutBO" +pressValue "1" +releaseValue +onLabel "Move" +offLabel "Move" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 427 +y 95 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)BraggThetaIncBO.VAL" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 347 +y 95 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)BraggThetaDecBO.VAL" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 317 +y 95 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)BraggLambdaIncBO.VAL" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 237 +y 95 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)BraggLambdaDecBO.VAL" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 127 +y 95 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)BraggEDecBO.VAL" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 207 +y 95 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)BraggEIncBO.VAL" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 445 +y 189 +w 88 +h 38 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "All Stop" +offLabel "All Stop" +3d +useEnumNumeric +font "helvetica-medium-r-18.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 21 +y 300 +w 54 +h 34 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)KohzuOperAckBO" +pressValue "1" +releaseValue +onLabel "OK" +offLabel "OK" +3d +useEnumNumeric +font "helvetica-medium-r-18.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 16 +y 73 +w 90 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)BraggTypeMO" +indicatorPv "$(P)BraggTypeMO" +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 248 +y 222 +w 106 +h 65 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)KohzuMode2MO.VAL" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 260 +w 100 +h 22 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)KohzuUseSetBO.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 125 +y 344 +w 150 +h 22 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)KohzuSpeedCtrl" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/kohzuSeqCtl_soft.edl b/opticsApp/op/edl/autoconvert/kohzuSeqCtl_soft.edl new file mode 100644 index 0000000..7820a76 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/kohzuSeqCtl_soft.edl @@ -0,0 +1,1666 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 10 +y 25 +w 525 +h 200 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 105 +w 104 +h 31 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 105 +w 105 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "SCAN CONTROL" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 285 +y 0 +w 2 +h 139 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 286 +1 286 +} +yPoints { +0 1 +1 138 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 275 +y 55 +w 15 +h 15 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +closePolygon +numPoints 4 { +xPoints { +0 275 +1 275 +2 290 +3 275 +} +yPoints { +0 55 +1 70 +2 62 +3 55 +} +visPv "CALC\\\{(A)\}($(P)$(MONO)Mode.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 451 +y 43 +w 67 +h 15 +controlPv "$(P)$(MONO)ZRdbk" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 451 +y 57 +w 67 +h 15 +controlPv "$(P)$(MONO)ZCmd" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 450 +y 32 +w 70 +h 10 +controlPv "$(P)$(MONO)ZPv" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 451 +y 43 +w 68 +h 30 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(MONO)ZDmov)" +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 292 +y 43 +w 76 +h 15 +controlPv "$(P)$(MONO)ThetaMotRdbk" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 292 +y 57 +w 76 +h 15 +controlPv "$(P)$(MONO)ThetaCmd" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 290 +y 32 +w 80 +h 10 +controlPv "$(P)$(MONO)ThetaPv" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 291 +y 43 +w 78 +h 30 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(MONO)ThetaDmov)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 290 +y 17 +w 80 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Theta" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 450 +y 17 +w 70 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Z" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 275 +y 55 +w 15 +h 15 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +closePolygon +numPoints 4 { +xPoints { +0 275 +1 275 +2 290 +3 275 +} +yPoints { +0 55 +1 70 +2 62 +3 55 +} +visPv "CALC\\\{(A)\}($(P)$(MONO)Put.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 431 +y 89 +w 100 +h 26 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor index 3 +useDisplayBg +value { + "Moving" +} +visPv "CALC\\\{(A)\}($(P)$(MONO)Moving)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 432 +y 90 +w 100 +h 26 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor index 3 +useDisplayBg +value { + "Moving" +} +visPv "CALC\\\{(A)\}($(P)$(MONO)Moving)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 430 +y 88 +w 100 +h 26 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 39168 65280 65280 +bgColor index 3 +useDisplayBg +value { + "Moving" +} +visPv "CALC\\\{(A)\}($(P)$(MONO)Moving)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 295 +y 97 +w 100 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Calibration:" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 215 +y 0 +w 2 +h 139 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 216 +1 216 +} +yPoints { +0 1 +1 138 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 211 +y 61 +w 67 +h 2 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(MONO)Put.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x -1 +y 138 +w 524 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 0 +1 522 +} +yPoints { +0 139 +1 139 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 167 +w 342 +h 31 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(MONO)Alert)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 3 +y 168 +w 339 +h 14 +controlPv "$(P)$(MONO)SeqMsg1" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 3 +y 184 +w 339 +h 14 +controlPv "$(P)$(MONO)SeqMsg2" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 475 +y 178 +w 48 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "More" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 143 +w 54 +h 18 +font "helvetica-medium-r-14.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Mode:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 110 +y 0 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TH (deg.)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 32 +w 100 +h 20 +controlPv "$(P)$(MONO)Theta.RBV" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 48 +w 100 +h 25 +controlPv "$(P)$(MONO)Theta.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 130 +y 84 +w 60 +h 20 +controlPv "$(P)$(MONO)Theta.TWV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 19 +w 100 +h 15 +controlPv "$(P)$(MONO)Theta.HLM" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 71 +w 100 +h 15 +controlPv "$(P)$(MONO)Theta.LLM" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 32 +w 100 +h 20 +controlPv "$(P)$(MONO)E.RBV" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 48 +w 100 +h 25 +controlPv "$(P)$(MONO)E.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 84 +w 60 +h 20 +controlPv "$(P)$(MONO)E.TWV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 71 +w 100 +h 15 +controlPv "$(P)$(MONO)E.LLM" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 19 +w 100 +h 15 +controlPv "$(P)$(MONO)E.HLM" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 0 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "E (keV)" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 211 +y 61 +w 67 +h 2 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(MONO)Mode.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 105 +w 104 +h 31 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 110 +y 105 +w 105 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "SCAN CONTROL" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 290 +y 0 +w 230 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Monochromator Motors" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 376 +y 43 +w 67 +h 15 +controlPv "$(P)$(MONO)YRdbk" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 376 +y 57 +w 67 +h 15 +controlPv "$(P)$(MONO)YCmd" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 375 +y 32 +w 70 +h 10 +controlPv "$(P)$(MONO)YPv" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 376 +y 43 +w 68 +h 30 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(MONO)YDmov)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 375 +y 17 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 372 +y 20 +w 0 +h 54 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 372 +1 372 +} +yPoints { +0 20 +1 74 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 447 +y 20 +w 0 +h 54 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 447 +1 447 +} +yPoints { +0 20 +1 74 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 64 +y 115 +w 40 +h 20 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "Abort" +offLabel "Abort" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 43 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)E:scanParms.GO" +pressValue "1" +releaseValue +onLabel "Go" +offLabel "Go" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 22 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)E:scanParms.LOAD" +pressValue "1" +releaseValue +onLabel "Ld" +offLabel "Ld" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParms.edl +} +menuLabel { + 0 Energy-scan parameters +} +symbols { + 0 "P=$(P),Q=$(MONO)E,PV=$(MONO)E" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 295 +y 112 +w 100 +h 22 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)UseSet.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 405 +y 112 +w 100 +h 22 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "All Stop" +offLabel "All Stop" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 143 +w 475 +h 18 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)Mode2.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 350 +y 166 +w 50 +h 34 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)OperAck" +pressValue "1" +releaseValue +onLabel "OK" +offLabel "OK" +3d +useEnumNumeric +font "helvetica-medium-r-18.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 450 +y 176 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 14 +numDsps 7 +displayFileName { + 0 kohzuGraphic.edl + 1 kohzuGraphicLarge.edl + 2 kohzuSeqCtl_soft_tiny.edl + 3 kohzuSeqCtl_soft_All.edl + 4 scanParms.edl + 5 scanParms.edl + 6 scanParms.edl +} +menuLabel { + 0 Kohzu Graphic + 1 Kohzu Graphic (L) + 2 KohzuSeq (tiny) + 3 KohzuSeq (all) + 4 Energy-scan parameters + 5 Theta-scan parameters + 6 Wavelength-scan parameters +} +symbols { + 0 "P=$(P),mTH=$(mTH),mY=$(mY),mZ=$(mZ),mCHI2=$(mCHI2),mTH2=$(mTH2),mX2=$(mX2),QE=BraggE,PVE=BraggEAO,QL=BraggLambda,PVL=BraggLambdaAO,QTh=BraggTheta,PVTh=BraggTheta" + 1 "P=$(P),mTH=$(mTH),mY=$(mY),mZ=$(mZ),mCHI2=$(mCHI2),mTH2=$(mTH2),mX2=$(mX2),QE=BraggE,PVE=BraggEAO,QL=BraggLambda,PVL=BraggLambdaAO,QTh=BraggTheta,PVTh=BraggTheta" + 2 "P=$(P),MONO=$(MONO,mTH=$(mTH),mY=$(mY),mZ=$(mZ),mCHI2=$(mCHI2),mTH2=$(mTH2),mX2=$(mX2)" + 3 "P=$(P),MONO=$(MONO)mTH=$(mTH),mY=$(mY),mZ=$(mZ),mCHI2=$(mCHI2),mTH2=$(mTH2),mX2=$(mX2)" + 4 "P=$(P),Q=BraggE,PV=BraggE" + 5 "P=$(P),Q=BraggTheta,PV=BraggTheta" + 6 "P=$(P),Q=BraggLambda,PV=BraggLambda" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 + 5 1 + 6 1 +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 220 +y 5 +w 60 +h 45 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)Mode.VAL" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 220 +y 75 +w 60 +h 25 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)Put" +pressValue "1" +releaseValue +onLabel "Move" +offLabel "Move" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 190 +y 84 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)Theta.TWF" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 84 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)Theta.TWR" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 84 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)E.TWF" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 84 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)E.TWR" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 174 +y 115 +w 40 +h 20 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "Abort" +offLabel "Abort" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 153 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)Theta:scanParms.GO" +pressValue "1" +releaseValue +onLabel "Go" +offLabel "Go" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 132 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)Theta:scanParms.LOAD" +pressValue "1" +releaseValue +onLabel "Ld" +offLabel "Ld" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 111 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParms.edl +} +menuLabel { + 0 Theta-scan parameters +} +symbols { + 0 "P=$(P),Q=$(MONO)Theta,PV=$(MONO)Theta" +} +replaceSymbols { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/kohzuSeqCtl_soft_All.edl b/opticsApp/op/edl/autoconvert/kohzuSeqCtl_soft_All.edl new file mode 100644 index 0000000..8b0694b --- /dev/null +++ b/opticsApp/op/edl/autoconvert/kohzuSeqCtl_soft_All.edl @@ -0,0 +1,2057 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 951 +y 454 +w 535 +h 365 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 295 +w 363 +h 44 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(MONO)Alert)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 1 +w 112 +h 91 +lineColor rgb 44544 44544 44544 +fill +fillColor rgb 44544 44544 44544 +lineWidth 2 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 5 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "H" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 15 +y 5 +w 20 +h 20 +controlPv "$(P)$(MONO)H" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 43 +y 5 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "K" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 53 +y 5 +w 20 +h 20 +controlPv "$(P)$(MONO)K" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 81 +y 5 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "L" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 91 +y 5 +w 20 +h 20 +controlPv "$(P)$(MONO)L" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 9 +y 25 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "a" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 29 +y 25 +w 60 +h 20 +controlPv "$(P)$(MONO)A" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 9 +y 48 +w 30 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "2d" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 29 +y 48 +w 60 +h 20 +controlPv "$(P)$(MONO)2dSpacing" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 110 +y 123 +w 90 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Theta" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 300 +y 123 +w 90 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Z" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 347 +y 1 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TH (deg.)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 347 +y 35 +w 100 +h 20 +controlPv "$(P)$(MONO)Theta.RBV" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 347 +y 55 +w 100 +h 25 +controlPv "$(P)$(MONO)Theta" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 367 +y 95 +w 60 +h 20 +controlPv "$(P)$(MONO)Theta.TWV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 347 +y 20 +w 100 +h 15 +controlPv "$(P)$(MONO)Theta.HLM" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 347 +y 80 +w 100 +h 15 +controlPv "$(P)$(MONO)Theta.LLM" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 237 +y 80 +w 100 +h 15 +controlPv "$(P)$(MONO)Lambda.LLM" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 127 +y 80 +w 100 +h 15 +controlPv "$(P)$(MONO)E.LLM" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 237 +y 35 +w 100 +h 20 +controlPv "$(P)$(MONO)Lambda.RBV" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 237 +y 55 +w 100 +h 25 +controlPv "$(P)$(MONO)Lambda" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 257 +y 95 +w 60 +h 20 +controlPv "$(P)$(MONO)Lambda.TWV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 237 +y 20 +w 100 +h 15 +controlPv "$(P)$(MONO)Lambda.HLM" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 127 +y 55 +w 100 +h 25 +controlPv "$(P)$(MONO)E" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 147 +y 95 +w 60 +h 20 +controlPv "$(P)$(MONO)E.TWV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 127 +y 20 +w 100 +h 15 +controlPv "$(P)$(MONO)E.HLM" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 127 +y 35 +w 100 +h 20 +controlPv "$(P)$(MONO)E.RBV" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 237 +y 1 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "lambda (A)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 127 +y 1 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "E (keV)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 400 +y 205 +w 50 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Speed" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 400 +y 190 +w 50 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Ideal" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 400 +y 155 +w 78 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Actual Pos." +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 400 +y 173 +w 105 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Motor Command" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 80 +w 75 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 60416 60416 60416 +bgColor index 3 +useDisplayBg +value { + "Low Limit" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 60 +w 75 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 60416 60416 60416 +bgColor index 3 +useDisplayBg +value { + "Desired" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 38 +w 75 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 60416 60416 60416 +bgColor index 3 +useDisplayBg +value { + "Actual" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 20 +w 75 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 60416 60416 60416 +bgColor index 3 +useDisplayBg +value { + "High Limit" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x -1 +y 118 +w 536 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 0 +1 534 +} +yPoints { +0 119 +1 119 +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 120 +y 155 +w 80 +h 15 +controlPv "$(P)$(MONO)ThetaMotRdbk" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 215 +y 154 +w 80 +h 15 +controlPv "$(P)$(MONO)YRdbk" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 310 +y 155 +w 80 +h 15 +controlPv "$(P)$(MONO)ZRdbk" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 1 +w 116 +h 95 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 310 +y 190 +w 80 +h 15 +controlPv "$(P)$(MONO)ZSet" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 52480 24832 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 215 +y 190 +w 80 +h 15 +controlPv "$(P)$(MONO)YSet" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 52480 24832 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 120 +y 190 +w 80 +h 15 +controlPv "$(P)$(MONO)ThetaSet" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 52480 24832 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Arc) +object activeArcClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 100 +y 180 +w 25 +h 18 +lineColor rgb 57600 36864 5376 +fillColor rgb 57600 36864 5376 +lineWidth 2 +startAngle 90 +totalAngle 180 +fillMode "pie" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 107 +y 177 +w 8 +h 10 +lineColor rgb 57600 36864 5376 +fillColor rgb 57600 36864 5376 +lineWidth 2 +numPoints 3 { +xPoints { +0 108 +1 114 +2 108 +} +yPoints { +0 178 +1 181 +2 186 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 78 +y 188 +w 20 +h 2 +lineColor rgb 57600 36864 5376 +fillColor rgb 57600 36864 5376 +lineWidth 2 +lineStyle "dash" +numPoints 2 { +xPoints { +0 97 +1 79 +} +yPoints { +0 189 +1 189 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 138 +w 81 +h 80 +lineColor rgb 57600 36864 5376 +fill +fillColor rgb 57600 36864 5376 +lineWidth 2 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 98 +y 299 +w 339 +h 18 +controlPv "$(P)$(MONO)SeqMsg1" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x -2 +y 288 +w 536 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 -1 +1 533 +} +yPoints { +0 289 +1 289 +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 98 +y 319 +w 339 +h 18 +controlPv "$(P)$(MONO)SeqMsg2" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 215 +y 122 +w 90 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 114 +y 140 +w 89 +h 13 +controlPv "$(P)$(MONO)ThetaPv" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 210 +y 140 +w 89 +h 13 +controlPv "$(P)$(MONO)YPv" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 306 +y 140 +w 89 +h 13 +controlPv "$(P)$(MONO)ZPv" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 401 +y 138 +w 67 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Motor PV" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 307 +y 206 +w 89 +h 13 +controlPv "$(P)$(MONO)ZVel" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 211 +y 206 +w 89 +h 13 +controlPv "$(P)$(MONO)YVel" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 115 +y 206 +w 89 +h 13 +controlPv "$(P)$(MONO)ThetaVel" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 307 +y 173 +w 89 +h 13 +controlPv "$(P)$(MONO)ZCmd" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 211 +y 173 +w 89 +h 13 +controlPv "$(P)$(MONO)YCmd" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 115 +y 173 +w 89 +h 13 +controlPv "$(P)$(MONO)ThetaCmd" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 307 +y 155 +w 92 +h 33 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(MONO)ZDmov)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 114 +y 155 +w 92 +h 33 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(MONO)ThetaDmov)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 210 +y 155 +w 92 +h 33 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(MONO)YDmov)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 244 +w 100 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Calibration:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 445 +y 230 +w 88 +h 22 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 39168 65280 65280 +bgColor index 3 +useDisplayBg +value { + "Moving" +} +visPv "CALC\\\{(A)\}($(P)$(MONO)Moving)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 445 +y 230 +w 88 +h 22 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Done" +} +visPv "CALC\\\{(A)\}($(P)$(MONO)Moving)" +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 181 +y 263 +w 60 +h 20 +controlPv "$(P)$(MONO)yOffset" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 119 +y 266 +w 65 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "y offset:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 107 +y 230 +w 150 +h 9 +font "helvetica-bold-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Channel Cut inhibits" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 108 +y 237 +w 150 +h 9 +font "helvetica-bold-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Y1 and Z2 motors" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 21 +y 344 +w 100 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Speed Control:" +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 6 +y 142 +w 75 +h 45 +fgColor rgb 0 0 0 +bgColor rgb 57600 36864 5376 +selectColor rgb 57600 36864 5376 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)Mode.VAL" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 6 +y 190 +w 75 +h 25 +fgColor rgb 0 0 0 +onColor rgb 57600 36864 5376 +offColor rgb 57600 36864 5376 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)Put" +pressValue "1" +releaseValue +onLabel "Move" +offLabel "Move" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 427 +y 95 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)Theta.TWF" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 347 +y 95 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)Theta.TWR" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 317 +y 95 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)Lambda.TWF" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 237 +y 95 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)Lambda.TWR" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 127 +y 95 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)E.TWR" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 207 +y 95 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)E.TWF" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 445 +y 189 +w 88 +h 38 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "All Stop" +offLabel "All Stop" +3d +useEnumNumeric +font "helvetica-medium-r-18.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 21 +y 300 +w 54 +h 34 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)OperAck" +pressValue "1" +releaseValue +onLabel "OK" +offLabel "OK" +3d +useEnumNumeric +font "helvetica-medium-r-18.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 16 +y 73 +w 90 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(MONO)Type" +indicatorPv "$(P)$(MONO)Type" +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 248 +y 222 +w 106 +h 65 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)Mode2.VAL" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 260 +w 100 +h 22 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)UseSet.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 126 +y 343 +w 150 +h 22 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)SpeedCtrl" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/kohzuSeqCtl_soft_All_BAK.edl b/opticsApp/op/edl/autoconvert/kohzuSeqCtl_soft_All_BAK.edl new file mode 100644 index 0000000..36728b6 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/kohzuSeqCtl_soft_All_BAK.edl @@ -0,0 +1,2007 @@ +4 0 0 +beginScreenProperties +major 4 +minor 0 +release 0 +x 816 +y 481 +w 535 +h 342 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-medium-r-8.0" +btnFont "helvetica-medium-r-18.0" +fgColor index 14 +bgColor index 3 +textColor index 14 +ctlFgColor1 index 30 +ctlFgColor2 index 32 +ctlBgColor1 index 34 +ctlBgColor2 index 35 +topShadowColor index 37 +botShadowColor index 44 +snapToGrid +gridSize 5 +endScreenProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 295 +w 363 +h 44 +lineColor index 20 +fill +fillColor index 20 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(MONO)Alert)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 1 +w 112 +h 91 +lineColor index 5 +fill +fillColor index 5 +lineWidth 2 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 5 +w 10 +h 20 +font "helvetica-medium-r-8.0" +fgColor index 14 +useDisplayBg +value { + "H" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 15 +y 5 +w 20 +h 20 +controlPv "$(P)$(MONO)H" +font "helvetica-medium-r-8.0" +smartRefresh +fastUpdate +fgColor index 14 +bgColor index 51 +editable +autoHeight +format decimal +motifWidget +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 43 +y 5 +w 10 +h 20 +font "helvetica-medium-r-8.0" +fgColor index 14 +useDisplayBg +value { + "K" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 53 +y 5 +w 20 +h 20 +controlPv "$(P)$(MONO)K" +font "helvetica-medium-r-8.0" +smartRefresh +fastUpdate +fgColor index 14 +bgColor index 51 +editable +autoHeight +format decimal +motifWidget +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 81 +y 5 +w 10 +h 20 +font "helvetica-medium-r-8.0" +fgColor index 14 +useDisplayBg +value { + "L" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 91 +y 5 +w 20 +h 20 +controlPv "$(P)$(MONO)L" +font "helvetica-medium-r-8.0" +smartRefresh +fastUpdate +fgColor index 14 +bgColor index 51 +editable +autoHeight +format decimal +motifWidget +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 9 +y 25 +w 20 +h 20 +font "helvetica-medium-r-8.0" +fgColor index 14 +useDisplayBg +value { + "a" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 29 +y 25 +w 60 +h 20 +controlPv "$(P)$(MONO)A" +font "helvetica-medium-r-8.0" +smartRefresh +fastUpdate +fgColor index 14 +bgColor index 51 +editable +autoHeight +format decimal +motifWidget +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 9 +y 48 +w 20 +h 20 +font "helvetica-medium-r-8.0" +fgColor index 14 +useDisplayBg +value { + "2d" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 29 +y 48 +w 60 +h 20 +controlPv "$(P)$(MONO)2dSpacing" +font "helvetica-medium-r-8.0" +smartRefresh +fastUpdate +fgColor index 14 +bgColor index 51 +editable +autoHeight +format decimal +motifWidget +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 123 +w 90 +h 20 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor index 14 +useDisplayBg +value { + "Theta" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 300 +y 123 +w 90 +h 20 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor index 14 +useDisplayBg +value { + "Z" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 347 +y 1 +w 100 +h 20 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor index 14 +useDisplayBg +value { + "TH (deg.)" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 347 +y 35 +w 100 +h 20 +controlPv "$(P)$(MONO)Theta.RBV" +font "helvetica-medium-r-8.0" +smartRefresh +fastUpdate +fgColor index 54 +bgColor index 3 +autoHeight +format decimal +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 347 +y 55 +w 100 +h 25 +controlPv "$(P)$(MONO)Theta" +font "helvetica-medium-r-8.0" +smartRefresh +fastUpdate +fgColor index 14 +bgColor index 51 +editable +autoHeight +format decimal +motifWidget +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 367 +y 95 +w 60 +h 20 +controlPv "$(P)$(MONO)Theta.TWV" +font "helvetica-medium-r-8.0" +smartRefresh +fastUpdate +fgColor index 14 +bgColor index 51 +editable +autoHeight +format decimal +motifWidget +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 347 +y 20 +w 100 +h 15 +controlPv "$(P)$(MONO)Theta.HLM" +font "helvetica-medium-r-8.0" +fontAlign "center" +smartRefresh +fastUpdate +fgColor index 54 +bgColor index 3 +autoHeight +format decimal +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 347 +y 80 +w 100 +h 15 +controlPv "$(P)$(MONO)Theta.LLM" +font "helvetica-medium-r-8.0" +fontAlign "center" +smartRefresh +fastUpdate +fgColor index 54 +bgColor index 3 +autoHeight +format decimal +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 237 +y 80 +w 100 +h 15 +controlPv "$(P)$(MONO)Lambda.LLM" +font "helvetica-medium-r-8.0" +fontAlign "center" +smartRefresh +fastUpdate +fgColor index 54 +bgColor index 3 +autoHeight +format decimal +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 127 +y 80 +w 100 +h 15 +controlPv "$(P)$(MONO)E.LLM" +font "helvetica-medium-r-8.0" +fontAlign "center" +smartRefresh +fastUpdate +fgColor index 54 +bgColor index 3 +autoHeight +format decimal +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 237 +y 35 +w 100 +h 20 +controlPv "$(P)$(MONO)Lambda.RBV" +font "helvetica-medium-r-8.0" +smartRefresh +fastUpdate +fgColor index 54 +bgColor index 3 +autoHeight +format decimal +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 237 +y 55 +w 100 +h 25 +controlPv "$(P)$(MONO)Lambda" +font "helvetica-medium-r-8.0" +smartRefresh +fastUpdate +fgColor index 14 +bgColor index 51 +editable +autoHeight +format decimal +motifWidget +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 257 +y 95 +w 60 +h 20 +controlPv "$(P)$(MONO)Lambda.TWV" +font "helvetica-medium-r-8.0" +smartRefresh +fastUpdate +fgColor index 14 +bgColor index 51 +editable +autoHeight +format decimal +motifWidget +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 237 +y 20 +w 100 +h 15 +controlPv "$(P)$(MONO)Lambda.HLM" +font "helvetica-medium-r-8.0" +smartRefresh +fastUpdate +fgColor index 54 +bgColor index 3 +autoHeight +format decimal +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 127 +y 55 +w 100 +h 25 +controlPv "$(P)$(MONO)E" +font "helvetica-medium-r-8.0" +smartRefresh +fastUpdate +fgColor index 14 +bgColor index 51 +editable +autoHeight +format decimal +motifWidget +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 147 +y 95 +w 60 +h 20 +controlPv "$(P)$(MONO)E.TWV" +font "helvetica-medium-r-8.0" +smartRefresh +fastUpdate +fgColor index 14 +bgColor index 51 +editable +autoHeight +format decimal +motifWidget +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 127 +y 20 +w 100 +h 15 +controlPv "$(P)$(MONO)E.HLM" +font "helvetica-medium-r-8.0" +fontAlign "center" +smartRefresh +fastUpdate +fgColor index 54 +bgColor index 3 +autoHeight +format decimal +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 127 +y 35 +w 100 +h 20 +controlPv "$(P)$(MONO)E.RBV" +font "helvetica-medium-r-8.0" +smartRefresh +fastUpdate +fgColor index 54 +bgColor index 3 +autoHeight +format decimal +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 237 +y 1 +w 100 +h 20 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor index 14 +useDisplayBg +value { + "lambda (A)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 127 +y 1 +w 100 +h 20 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor index 14 +useDisplayBg +value { + "E (keV)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 205 +w 50 +h 14 +font "helvetica-medium-r-8.0" +fgColor index 13 +useDisplayBg +value { + "Speed" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 190 +w 50 +h 14 +font "helvetica-medium-r-8.0" +fgColor index 13 +useDisplayBg +value { + "Ideal" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 155 +w 50 +h 14 +font "helvetica-medium-r-8.0" +fgColor index 13 +useDisplayBg +value { + "Actual Pos." +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 173 +w 50 +h 14 +font "helvetica-medium-r-8.0" +fgColor index 13 +useDisplayBg +value { + "Motor Command" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 80 +w 75 +h 14 +font "helvetica-medium-r-8.0" +fgColor index 1 +useDisplayBg +value { + "Low Limit" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 60 +w 75 +h 14 +font "helvetica-medium-r-8.0" +fgColor index 1 +useDisplayBg +value { + "Desired" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 38 +w 75 +h 14 +font "helvetica-medium-r-8.0" +fgColor index 1 +useDisplayBg +value { + "Actual" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 20 +w 75 +h 14 +font "helvetica-medium-r-8.0" +fgColor index 1 +useDisplayBg +value { + "High Limit" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x -1 +y 118 +w 536 +h 2 +lineColor index 14 +fillColor index 14 +lineWidth 2 +numPoints 2 { +xPoints { +0 0 +1 534 +} +yPoints { +0 119 +1 119 +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 120 +y 155 +w 80 +h 15 +controlPv "$(P)$(MONO)ThetaMotRdbk" +font "helvetica-medium-r-8.0" +smartRefresh +fastUpdate +fgColor index 54 +bgColor index 3 +autoHeight +format decimal +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 215 +y 154 +w 80 +h 15 +controlPv "$(P)$(MONO)YRdbk" +font "helvetica-medium-r-8.0" +smartRefresh +fastUpdate +fgColor index 54 +bgColor index 3 +autoHeight +format decimal +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 310 +y 155 +w 80 +h 15 +controlPv "$(P)$(MONO)ZRdbk" +font "helvetica-medium-r-8.0" +smartRefresh +fastUpdate +fgColor index 54 +bgColor index 3 +autoHeight +format decimal +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 1 +w 116 +h 95 +lineColor index 14 +fillColor index 14 +lineWidth 2 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 310 +y 190 +w 80 +h 15 +controlPv "$(P)$(MONO)ZSet" +font "helvetica-medium-r-8.0" +smartRefresh +fastUpdate +fgColor index 34 +bgColor index 3 +autoHeight +format decimal +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 215 +y 190 +w 80 +h 15 +controlPv "$(P)$(MONO)YSet" +font "helvetica-medium-r-8.0" +smartRefresh +fastUpdate +fgColor index 34 +bgColor index 3 +autoHeight +format decimal +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 120 +y 190 +w 80 +h 15 +controlPv "$(P)$(MONO)ThetaSet" +font "helvetica-medium-r-8.0" +smartRefresh +fastUpdate +fgColor index 34 +bgColor index 3 +autoHeight +format decimal +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Arc) +object activeArcClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 100 +y 180 +w 25 +h 18 +lineColor index 33 +fillColor index 33 +lineWidth 2 +startAngle 90 +totalAngle 180 +fillMode "pie" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 107 +y 177 +w 8 +h 10 +lineColor index 33 +fillColor index 33 +lineWidth 2 +numPoints 3 { +xPoints { +0 108 +1 114 +2 108 +} +yPoints { +0 178 +1 181 +2 186 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 78 +y 188 +w 20 +h 2 +lineColor index 33 +fillColor index 33 +lineWidth 2 +lineStyle "dash" +numPoints 2 { +xPoints { +0 97 +1 79 +} +yPoints { +0 189 +1 189 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 138 +w 81 +h 80 +lineColor index 33 +fill +fillColor index 33 +lineWidth 2 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 98 +y 299 +w 339 +h 18 +controlPv "$(P)$(MONO)SeqMsg1" +font "helvetica-medium-r-8.0" +fontAlign "center" +smartRefresh +fastUpdate +fgColor index 14 +bgColor index 1 +autoHeight +format decimal +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x -2 +y 288 +w 536 +h 2 +lineColor index 14 +fillColor index 14 +lineWidth 2 +numPoints 2 { +xPoints { +0 -1 +1 533 +} +yPoints { +0 289 +1 289 +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 98 +y 319 +w 339 +h 18 +controlPv "$(P)$(MONO)SeqMsg2" +font "helvetica-medium-r-8.0" +fontAlign "center" +smartRefresh +fastUpdate +fgColor index 14 +bgColor index 1 +autoHeight +format decimal +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 215 +y 122 +w 90 +h 20 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor index 14 +useDisplayBg +value { + "Y" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 114 +y 140 +w 89 +h 13 +controlPv "$(P)$(MONO)ThetaPv" +font "helvetica-medium-r-8.0" +fontAlign "center" +smartRefresh +fastUpdate +fgColor index 14 +bgColor index 1 +autoHeight +format decimal +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 210 +y 140 +w 89 +h 13 +controlPv "$(P)$(MONO)YPv" +font "helvetica-medium-r-8.0" +fontAlign "center" +smartRefresh +fastUpdate +fgColor index 14 +bgColor index 1 +autoHeight +format decimal +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 306 +y 140 +w 89 +h 13 +controlPv "$(P)$(MONO)ZPv" +font "helvetica-medium-r-8.0" +fontAlign "center" +smartRefresh +fastUpdate +fgColor index 14 +bgColor index 1 +autoHeight +format decimal +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 401 +y 138 +w 50 +h 14 +font "helvetica-medium-r-8.0" +fgColor index 13 +useDisplayBg +value { + "Motor PV" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 307 +y 206 +w 89 +h 13 +controlPv "$(P)$(MONO)ZVel" +font "helvetica-medium-r-8.0" +fontAlign "center" +smartRefresh +fastUpdate +fgColor index 14 +bgColor index 1 +autoHeight +format decimal +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 211 +y 206 +w 89 +h 13 +controlPv "$(P)$(MONO)YVel" +font "helvetica-medium-r-8.0" +fontAlign "center" +smartRefresh +fastUpdate +fgColor index 14 +bgColor index 1 +autoHeight +format decimal +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 115 +y 206 +w 89 +h 13 +controlPv "$(P)$(MONO)ThetaVel" +font "helvetica-medium-r-8.0" +fontAlign "center" +smartRefresh +fastUpdate +fgColor index 14 +bgColor index 1 +autoHeight +format decimal +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 307 +y 173 +w 89 +h 13 +controlPv "$(P)$(MONO)ZCmd" +font "helvetica-medium-r-8.0" +fontAlign "center" +smartRefresh +fastUpdate +fgColor index 14 +bgColor index 1 +autoHeight +format decimal +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 211 +y 173 +w 89 +h 13 +controlPv "$(P)$(MONO)YCmd" +font "helvetica-medium-r-8.0" +fontAlign "center" +smartRefresh +fastUpdate +fgColor index 14 +bgColor index 1 +autoHeight +format decimal +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 115 +y 173 +w 89 +h 13 +controlPv "$(P)$(MONO)ThetaCmd" +font "helvetica-medium-r-8.0" +fontAlign "center" +smartRefresh +fastUpdate +fgColor index 14 +bgColor index 1 +autoHeight +format decimal +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 307 +y 155 +w 92 +h 33 +lineColor index 60 +fillColor index 60 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(MONO)ZDmov)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 114 +y 155 +w 92 +h 33 +lineColor index 60 +fillColor index 60 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(MONO)ThetaDmov)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 210 +y 155 +w 92 +h 33 +lineColor index 60 +fillColor index 60 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(MONO)YDmov)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 244 +w 100 +h 14 +font "helvetica-medium-r-8.0" +fgColor index 13 +useDisplayBg +value { + "Calibration:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 445 +y 230 +w 88 +h 22 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor index 50 +useDisplayBg +value { + "Moving" +} +visPv "CALC\\\{(A)\}($(P)$(MONO)Moving)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 445 +y 230 +w 88 +h 22 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor index 14 +useDisplayBg +value { + "Done" +} +visPv "CALC\\\{(A)\}($(P)$(MONO)Moving)" +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 181 +y 263 +w 60 +h 20 +controlPv "$(P)$(MONO)yOffset" +font "helvetica-medium-r-8.0" +smartRefresh +fastUpdate +fgColor index 14 +bgColor index 51 +editable +autoHeight +format decimal +motifWidget +nullColor index 32 +useHexPrefix +objType "controls" +newPos +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 119 +y 266 +w 65 +h 14 +font "helvetica-medium-r-8.0" +fgColor index 13 +useDisplayBg +value { + "y offset:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 107 +y 230 +w 150 +h 9 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor index 13 +useDisplayBg +value { + "Channel Cut inhibits" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 108 +y 237 +w 150 +h 9 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor index 13 +useDisplayBg +value { + "Y1 and Z2 motors" +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 6 +y 142 +w 75 +h 45 +fgColor index 14 +bgColor index 33 +selectColor index 33 +inconsistentColor index 14 +topShadowColor index 0 +botShadowColor index 14 +controlPv "$(P)$(MONO)Mode.VAL" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 6 +y 190 +w 75 +h 25 +fgColor index 14 +onColor index 33 +offColor index 33 +topShadowColor index 0 +botShadowColor index 14 +controlPv "$(P)$(MONO)Put" +pressValue "1" +releaseValue +onLabel "Move" +offLabel "Move" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 427 +y 95 +w 20 +h 20 +fgColor index 14 +onColor index 51 +offColor index 51 +topShadowColor index 0 +botShadowColor index 14 +controlPv "$(P)$(MONO)Theta.TWF" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 347 +y 95 +w 20 +h 20 +fgColor index 14 +onColor index 51 +offColor index 51 +topShadowColor index 0 +botShadowColor index 14 +controlPv "$(P)$(MONO)Theta.TWR" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 317 +y 95 +w 20 +h 20 +fgColor index 14 +onColor index 51 +offColor index 51 +topShadowColor index 0 +botShadowColor index 14 +controlPv "$(P)$(MONO)Lambda.TWF" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 237 +y 95 +w 20 +h 20 +fgColor index 14 +onColor index 51 +offColor index 51 +topShadowColor index 0 +botShadowColor index 14 +controlPv "$(P)$(MONO)Lambda.TWR" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 127 +y 95 +w 20 +h 20 +fgColor index 14 +onColor index 51 +offColor index 51 +topShadowColor index 0 +botShadowColor index 14 +controlPv "$(P)$(MONO)E.TWR" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 207 +y 95 +w 20 +h 20 +fgColor index 14 +onColor index 51 +offColor index 51 +topShadowColor index 0 +botShadowColor index 14 +controlPv "$(P)$(MONO)E.TWF" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 445 +y 189 +w 88 +h 38 +fgColor index 30 +onColor index 20 +offColor index 20 +topShadowColor index 0 +botShadowColor index 14 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "All Stop" +offLabel "All Stop" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 21 +y 300 +w 54 +h 34 +fgColor index 14 +onColor index 51 +offColor index 51 +topShadowColor index 0 +botShadowColor index 14 +controlPv "$(P)$(MONO)OperAck" +pressValue "1" +releaseValue +onLabel "OK" +offLabel "OK" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 16 +y 73 +w 90 +h 16 +fgColor index 14 +bgColor index 51 +inconsistentColor index 12 +topShadowColor index 2 +botShadowColor index 12 +controlPv "$(P)$(MONO)Type" +indicatorPv "$(P)$(MONO)Type" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 248 +y 222 +w 106 +h 65 +fgColor index 14 +bgColor index 51 +selectColor index 51 +inconsistentColor index 14 +topShadowColor index 0 +botShadowColor index 14 +controlPv "$(P)$(MONO)Mode2.VAL" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 260 +w 100 +h 22 +fgColor index 14 +bgColor index 51 +selectColor index 51 +inconsistentColor index 14 +topShadowColor index 0 +botShadowColor index 14 +controlPv "$(P)$(MONO)UseSet.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/kohzuSeqCtl_soft_tiny.edl b/opticsApp/op/edl/autoconvert/kohzuSeqCtl_soft_tiny.edl new file mode 100644 index 0000000..18fb183 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/kohzuSeqCtl_soft_tiny.edl @@ -0,0 +1,700 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 300 +y 258 +w 215 +h 140 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 32 +w 105 +h 20 +controlPv "$(P)$(MONO)E.RBV" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 48 +w 105 +h 25 +controlPv "$(P)$(MONO)E.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 19 +w 105 +h 15 +controlPv "$(P)$(MONO)E.HLM" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 71 +w 105 +h 15 +controlPv "$(P)$(MONO)E.LLM" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 105 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "E (keV)" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 84 +w 65 +h 20 +controlPv "$(P)$(MONO)E.TWV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 105 +w 104 +h 31 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 105 +w 105 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "SCAN CONTROL" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 110 +y 0 +w 105 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TH (deg.)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 32 +w 105 +h 20 +controlPv "$(P)$(MONO)Theta.RBV" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 48 +w 105 +h 25 +controlPv "$(P)$(MONO)Theta.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 19 +w 105 +h 15 +controlPv "$(P)$(MONO)Theta.HLM" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 71 +w 105 +h 15 +controlPv "$(P)$(MONO)Theta.LLM" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 130 +y 84 +w 65 +h 20 +controlPv "$(P)$(MONO)Theta.TWV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 105 +w 104 +h 31 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 110 +y 105 +w 105 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "SCAN CONTROL" +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 84 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)E.TWR" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 84 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)E.TWF" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 64 +y 115 +w 40 +h 20 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "Abort" +offLabel "Abort" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 43 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)E:scanParms.GO" +pressValue "1" +releaseValue +onLabel "Go" +offLabel "Go" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 22 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)E:scanParms.LOAD" +pressValue "1" +releaseValue +onLabel "Ld" +offLabel "Ld" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParms.edl +} +menuLabel { + 0 Energy-scan parameters +} +symbols { + 0 "P=$(P),Q=BraggE,PV=BraggE" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 195 +y 84 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)Theta.TWF" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 84 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)Theta.TWR" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 174 +y 115 +w 40 +h 20 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "Abort" +offLabel "Abort" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 153 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)Theta:scanParms.GO" +pressValue "1" +releaseValue +onLabel "Go" +offLabel "Go" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 132 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(MONO)Theta:scanParms.LOAD" +pressValue "1" +releaseValue +onLabel "Ld" +offLabel "Ld" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 111 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParms.edl +} +menuLabel { + 0 Theta-scan parameters +} +symbols { + 0 "P=$(P),Q=BraggTheta,PV=BraggTheta" +} +replaceSymbols { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/kohzuSeqCtl_tiny.edl b/opticsApp/op/edl/autoconvert/kohzuSeqCtl_tiny.edl new file mode 100644 index 0000000..3c4fb2a --- /dev/null +++ b/opticsApp/op/edl/autoconvert/kohzuSeqCtl_tiny.edl @@ -0,0 +1,700 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 300 +y 258 +w 215 +h 140 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 32 +w 105 +h 20 +controlPv "$(P)BraggERdbkAO" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 48 +w 105 +h 25 +controlPv "$(P)BraggEAO.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 19 +w 105 +h 15 +controlPv "$(P)BraggEAO.DRVH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 71 +w 105 +h 15 +controlPv "$(P)BraggEAO.DRVL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 105 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "E (keV)" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 84 +w 65 +h 20 +controlPv "$(P)BraggETweakAI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 105 +w 104 +h 31 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 105 +w 105 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "SCAN CONTROL" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 110 +y 0 +w 105 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TH (deg.)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 32 +w 105 +h 20 +controlPv "$(P)BraggThetaRdbkAO" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 48 +w 105 +h 25 +controlPv "$(P)BraggThetaAO.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 19 +w 105 +h 15 +controlPv "$(P)BraggThetaAO.DRVH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 71 +w 105 +h 15 +controlPv "$(P)BraggThetaAO.DRVL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 130 +y 84 +w 65 +h 20 +controlPv "$(P)BraggThetaTweakAI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 105 +w 104 +h 31 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 110 +y 105 +w 105 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "SCAN CONTROL" +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 84 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)BraggEDecBO.VAL" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 84 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)BraggEIncBO.VAL" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 64 +y 115 +w 40 +h 20 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "Abort" +offLabel "Abort" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 43 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)BraggE:scanParms.GO" +pressValue "1" +releaseValue +onLabel "Go" +offLabel "Go" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 22 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)BraggE:scanParms.LOAD" +pressValue "1" +releaseValue +onLabel "Ld" +offLabel "Ld" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParms.edl +} +menuLabel { + 0 Energy-scan parameters +} +symbols { + 0 "P=$(P),Q=BraggE,PV=BraggEAO" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 195 +y 84 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)BraggThetaIncBO.VAL" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 84 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)BraggThetaDecBO.VAL" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 174 +y 115 +w 40 +h 20 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "Abort" +offLabel "Abort" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 153 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)BraggTheta:scanParms.GO" +pressValue "1" +releaseValue +onLabel "Go" +offLabel "Go" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 132 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)BraggTheta:scanParms.LOAD" +pressValue "1" +releaseValue +onLabel "Ld" +offLabel "Ld" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 111 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParms.edl +} +menuLabel { + 0 Theta-scan parameters +} +symbols { + 0 "P=$(P),Q=BraggTheta,PV=BraggThetaAO" +} +replaceSymbols { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/ml_monoGraphic.edl b/opticsApp/op/edl/autoconvert/ml_monoGraphic.edl new file mode 100644 index 0000000..5738e84 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/ml_monoGraphic.edl @@ -0,0 +1,1765 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 626 +y 333 +w 400 +h 400 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 55808 55808 55808 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 25 +w 380 +h 130 +lineColor rgb 47872 47872 47872 +fill +fillColor rgb 47872 47872 47872 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 11 +y 26 +w 378 +h 128 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 3 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 73 +y 51 +w 100 +h 26 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 5 +numPoints 2 { +xPoints { +0 75 +1 170 +} +yPoints { +0 53 +1 74 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 221 +y 115 +w 100 +h 26 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 5 +numPoints 2 { +xPoints { +0 223 +1 318 +} +yPoints { +0 117 +1 138 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 272 +y 123 +w 111 +h 2 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 382 +1 273 +} +yPoints { +0 124 +1 124 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 27 +y 65 +w 245 +h 60 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 3 { +xPoints { +0 271 +1 119 +2 28 +} +yPoints { +0 124 +1 66 +2 66 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 60 +w 17 +h 12 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 3 { +xPoints { +0 40 +1 25 +2 39 +} +yPoints { +0 61 +1 65 +2 71 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 235 +y 255 +w 63 +h 37 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 237 +y 257 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mZ1)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 237 +y 267 +w 60 +h 10 +controlPv "$(P)$(mZ1).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 237 +y 277 +w 60 +h 15 +controlPv "$(P)$(mZ1).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 235 +y 255 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 235 +y 190 +w 63 +h 37 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 237 +y 192 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mY1)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 237 +y 202 +w 60 +h 10 +controlPv "$(P)$(mY1).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 237 +y 212 +w 60 +h 15 +controlPv "$(P)$(mY1).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 235 +y 190 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 310 +y 190 +w 63 +h 37 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 312 +y 192 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mC1)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 312 +y 202 +w 60 +h 10 +controlPv "$(P)$(mC1).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 312 +y 212 +w 60 +h 15 +controlPv "$(P)$(mC1).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 310 +y 190 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 15 +y 255 +w 63 +h 37 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 17 +y 257 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mP2)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 17 +y 267 +w 60 +h 10 +controlPv "$(P)$(mP2).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 17 +y 277 +w 60 +h 15 +controlPv "$(P)$(mP2).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 15 +y 255 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 15 +y 190 +w 63 +h 37 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 17 +y 192 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mB)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 17 +y 202 +w 60 +h 10 +controlPv "$(P)$(mB).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 17 +y 212 +w 60 +h 15 +controlPv "$(P)$(mB).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 15 +y 190 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 190 +w 63 +h 37 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 92 +y 192 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mY2)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 92 +y 202 +w 60 +h 10 +controlPv "$(P)$(mY2).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 92 +y 212 +w 60 +h 15 +controlPv "$(P)$(mY2).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 190 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 255 +w 63 +h 37 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 92 +y 257 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mZ2)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 92 +y 267 +w 60 +h 10 +controlPv "$(P)$(mZ2).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 92 +y 277 +w 60 +h 15 +controlPv "$(P)$(mZ2).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 255 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 15 +y 320 +w 63 +h 37 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 17 +y 322 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mC2)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 17 +y 332 +w 60 +h 10 +controlPv "$(P)$(mC2).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 17 +y 342 +w 60 +h 15 +controlPv "$(P)$(mC2).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 15 +y 320 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 320 +w 63 +h 37 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 92 +y 322 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mX2)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 92 +y 332 +w 60 +h 10 +controlPv "$(P)$(mX2).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 92 +y 342 +w 60 +h 15 +controlPv "$(P)$(mX2).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 320 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 63 +y 104 +w 63 +h 37 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 65 +y 106 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mT2)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 65 +y 116 +w 60 +h 10 +controlPv "$(P)$(mT2).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 65 +y 126 +w 60 +h 15 +controlPv "$(P)$(mT2).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 63 +y 104 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 235 +y 320 +w 63 +h 37 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 237 +y 322 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mX1)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 237 +y 332 +w 60 +h 10 +controlPv "$(P)$(mX1).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 237 +y 342 +w 60 +h 15 +controlPv "$(P)$(mX1).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 235 +y 320 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 261 +y 67 +w 63 +h 37 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 263 +y 69 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(mT1)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 263 +y 79 +w 60 +h 10 +controlPv "$(P)$(mT1).RBV" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 263 +y 89 +w 60 +h 15 +controlPv "$(P)$(mT1).VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 261 +y 67 +w 64 +h 38 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 235 +y 235 +w 64 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Z1" +numPvs 2 +numDsps 1 +displayFileName { + 0 motorx.edl +} +menuLabel { + 0 +} +symbols { + 0 "P=$(P),M=$(mZ1)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 235 +y 170 +w 64 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Y1" +numPvs 2 +numDsps 1 +displayFileName { + 0 motorx.edl +} +menuLabel { + 0 +} +symbols { + 0 "P=$(P),M=$(mY1)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 310 +y 170 +w 64 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Chi1" +numPvs 2 +numDsps 1 +displayFileName { + 0 motorx.edl +} +menuLabel { + 0 +} +symbols { + 0 "P=$(P),M=$(mC1)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 15 +y 235 +w 64 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Phi2" +numPvs 2 +numDsps 1 +displayFileName { + 0 motorx.edl +} +menuLabel { + 0 +} +symbols { + 0 "P=$(P),M=$(mP2)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 15 +y 170 +w 64 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Bend" +numPvs 2 +numDsps 1 +displayFileName { + 0 motorx.edl +} +menuLabel { + 0 +} +symbols { + 0 "P=$(P),M=$(mB)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 170 +w 64 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Y2" +numPvs 2 +numDsps 1 +displayFileName { + 0 motorx.edl +} +menuLabel { + 0 +} +symbols { + 0 "P=$(P),M=$(mY2)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 235 +w 64 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Z2" +numPvs 2 +numDsps 1 +displayFileName { + 0 motorx.edl +} +menuLabel { + 0 +} +symbols { + 0 "P=$(P),M=$(mZ2)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 15 +y 300 +w 64 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Chi2" +numPvs 2 +numDsps 1 +displayFileName { + 0 motorx.edl +} +menuLabel { + 0 +} +symbols { + 0 "P=$(P),M=$(mC2)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 300 +w 64 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "X2" +numPvs 2 +numDsps 1 +displayFileName { + 0 motorx.edl +} +menuLabel { + 0 +} +symbols { + 0 "P=$(P),M=$(mX2)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 63 +y 84 +w 64 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Theta2" +numPvs 2 +numDsps 1 +displayFileName { + 0 motorx.edl +} +menuLabel { + 0 +} +symbols { + 0 "P=$(P),M=$(mT2)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 235 +y 300 +w 64 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "X1" +numPvs 2 +numDsps 1 +displayFileName { + 0 motorx.edl +} +menuLabel { + 0 +} +symbols { + 0 "P=$(P),M=$(mX1)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 261 +y 47 +w 64 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Theta1" +numPvs 2 +numDsps 1 +displayFileName { + 0 motorx.edl +} +menuLabel { + 0 +} +symbols { + 0 "P=$(P),M=$(mT1)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/ml_monoSeqCtl.edl b/opticsApp/op/edl/autoconvert/ml_monoSeqCtl.edl new file mode 100644 index 0000000..9b45f65 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/ml_monoSeqCtl.edl @@ -0,0 +1,1617 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 523 +y 673 +w 525 +h 200 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 105 +w 104 +h 31 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 105 +w 105 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "SCAN CONTROL" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 285 +y 0 +w 2 +h 139 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 286 +1 286 +} +yPoints { +0 1 +1 138 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 275 +y 55 +w 15 +h 15 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +closePolygon +numPoints 4 { +xPoints { +0 275 +1 275 +2 290 +3 275 +} +yPoints { +0 55 +1 70 +2 62 +3 55 +} +visPv "CALC\\\{(A)\}($(P)ml_monoMode.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 451 +y 43 +w 67 +h 15 +controlPv "$(P)ml_monoZRdbk" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 451 +y 57 +w 67 +h 15 +controlPv "$(P)ml_monoZCmd" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 451 +y 43 +w 68 +h 30 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)ml_monoZDmov)" +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 292 +y 43 +w 76 +h 15 +controlPv "$(P)ml_monoThetaRdbk" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 292 +y 57 +w 76 +h 15 +controlPv "$(P)ml_monoThetaCmd" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 290 +y 32 +w 80 +h 10 +controlPv "$(P)ml_monoThetaPv" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 291 +y 43 +w 78 +h 30 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)ml_monoThetaDmov)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 290 +y 17 +w 80 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Theta" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 275 +y 55 +w 15 +h 15 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +closePolygon +numPoints 4 { +xPoints { +0 275 +1 275 +2 290 +3 275 +} +yPoints { +0 55 +1 70 +2 62 +3 55 +} +visPv "CALC\\\{(A)\}($(P)ml_monoPut.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 431 +y 89 +w 100 +h 26 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor index 3 +useDisplayBg +value { + "Moving" +} +visPv "CALC\\\{(A)\}($(P)ml_monoMoving)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 432 +y 90 +w 100 +h 26 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor index 3 +useDisplayBg +value { + "Moving" +} +visPv "CALC\\\{(A)\}($(P)ml_monoMoving)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 430 +y 88 +w 100 +h 26 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 39168 65280 65280 +bgColor index 3 +useDisplayBg +value { + "Moving" +} +visPv "CALC\\\{(A)\}($(P)ml_monoMoving)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 295 +y 97 +w 100 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Calibration:" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 215 +y 0 +w 2 +h 139 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 216 +1 216 +} +yPoints { +0 1 +1 138 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 211 +y 61 +w 67 +h 2 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)ml_monoPut.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x -1 +y 138 +w 524 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 0 +1 522 +} +yPoints { +0 139 +1 139 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 167 +w 342 +h 31 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)ml_monoAlert)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 3 +y 168 +w 339 +h 14 +controlPv "$(P)ml_monoSeqMsg1" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 3 +y 184 +w 339 +h 14 +controlPv "$(P)ml_monoSeqMsg2" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 143 +w 54 +h 18 +font "helvetica-medium-r-14.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Mode:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 110 +y 0 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TH (deg.)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 32 +w 100 +h 20 +controlPv "$(P)ml_monoThetaRdbk" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 48 +w 100 +h 25 +controlPv "$(P)ml_monoTheta.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 130 +y 84 +w 60 +h 20 +controlPv "$(P)ml_monoThetaTweak" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 19 +w 100 +h 15 +controlPv "$(P)ml_monoTheta.DRVH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 71 +w 100 +h 15 +controlPv "$(P)ml_monoTheta.DRVL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 32 +w 100 +h 20 +controlPv "$(P)ml_monoERdbk" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 48 +w 100 +h 25 +controlPv "$(P)ml_monoE.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 84 +w 60 +h 20 +controlPv "$(P)ml_monoETweak" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 71 +w 100 +h 15 +controlPv "$(P)ml_monoE.DRVL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 19 +w 100 +h 15 +controlPv "$(P)ml_monoE.DRVH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 0 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "E (keV)" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 211 +y 61 +w 67 +h 2 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)ml_monoMode.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 105 +w 104 +h 31 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 110 +y 105 +w 105 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "SCAN CONTROL" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 290 +y 0 +w 230 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Monochromator Motors" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 372 +y 20 +w 0 +h 54 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 372 +1 372 +} +yPoints { +0 20 +1 74 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 447 +y 20 +w 0 +h 54 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 0 +numPoints 2 { +xPoints { +0 447 +1 447 +} +yPoints { +0 20 +1 74 +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 450 +y 32 +w 70 +h 10 +controlPv "$(P)ml_monoZPv" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 450 +y 17 +w 70 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Z2" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 375 +y 17 +w 70 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y2" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 375 +y 72 +w 70 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "(y offset)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 375 +y 32 +w 70 +h 10 +controlPv "$(P)ml_monoYPv" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 376 +y 43 +w 67 +h 15 +controlPv "$(P)ml_mono_yOffset" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 64 +y 115 +w 40 +h 20 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "Abort" +offLabel "Abort" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 43 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoE:scanParms.GO" +pressValue "1" +releaseValue +onLabel "Go" +offLabel "Go" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 22 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoE:scanParms.LOAD" +pressValue "1" +releaseValue +onLabel "Ld" +offLabel "Ld" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParms.edl +} +menuLabel { + 0 Energy-scan parameters +} +symbols { + 0 "P=$(P),Q=ml_monoE,PV=ml_monoE" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 295 +y 112 +w 100 +h 22 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoUseSet.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 405 +y 112 +w 100 +h 22 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "All Stop" +offLabel "All Stop" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 143 +w 475 +h 18 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoMode2.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 350 +y 166 +w 50 +h 34 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoOperAck" +pressValue "1" +releaseValue +onLabel "OK" +offLabel "OK" +3d +useEnumNumeric +font "helvetica-medium-r-18.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 450 +y 176 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "More" +numPvs 10 +numDsps 5 +displayFileName { + 0 ml_monoSeqCtl_tiny.edl + 1 ml_monoSeqCtl_All.edl + 2 scanParms.edl + 3 scanParms.edl + 4 scanParms.edl +} +menuLabel { + 0 ml_monoSeq (tiny) + 1 ml_monoSeq (all) + 2 Energy-scan parameters + 3 Theta-scan parameters + 4 Wavelength-scan parameters +} +symbols { + 0 "P=$(P),mTH=$(mTH),mZ=$(mZ),mCHI2=$(mCHI2),mTH2=$(mTH2),mX2=$(mX2)" + 1 "P=$(P),mTH=$(mTH),mZ=$(mZ),mCHI2=$(mCHI2),mTH2=$(mTH2),mX2=$(mX2)" + 2 "P=$(P),Q=ml_monoE,PV=ml_monoE" + 3 "P=$(P),Q=ml_monoTheta,PV=ml_monoTheta" + 4 "P=$(P),Q=ml_monoLambda,PV=ml_monoLambda" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 220 +y 5 +w 60 +h 45 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoMode.VAL" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 220 +y 75 +w 60 +h 25 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoPut" +pressValue "1" +releaseValue +onLabel "Move" +offLabel "Move" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 190 +y 84 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoThetaInc.VAL" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 84 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoThetaDec.VAL" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 84 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoEInc.VAL" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 84 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoEDec.VAL" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 174 +y 115 +w 40 +h 20 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "Abort" +offLabel "Abort" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 153 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoTheta:scanParms.GO" +pressValue "1" +releaseValue +onLabel "Go" +offLabel "Go" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 132 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoTheta:scanParms.LOAD" +pressValue "1" +releaseValue +onLabel "Ld" +offLabel "Ld" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 111 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParms.edl +} +menuLabel { + 0 Theta-scan parameters +} +symbols { + 0 "P=$(P),Q=ml_monoTheta,PV=ml_monoTheta" +} +replaceSymbols { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/ml_monoSeqCtl_All.edl b/opticsApp/op/edl/autoconvert/ml_monoSeqCtl_All.edl new file mode 100644 index 0000000..01f78f8 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/ml_monoSeqCtl_All.edl @@ -0,0 +1,1865 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 516 +y 290 +w 635 +h 342 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 295 +w 363 +h 44 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)ml_monoAlert)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 1 +w 112 +h 91 +lineColor rgb 44544 44544 44544 +fill +fillColor rgb 44544 44544 44544 +lineWidth 2 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 9 +y 5 +w 51 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Order" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 65 +y 5 +w 20 +h 20 +controlPv "$(P)ml_monoOrder.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 9 +y 28 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "d" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 29 +y 28 +w 60 +h 20 +controlPv "$(P)ml_monoD.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 347 +y 1 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TH (deg.)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 347 +y 35 +w 100 +h 20 +controlPv "$(P)ml_monoThetaRdbk" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 347 +y 55 +w 100 +h 25 +controlPv "$(P)ml_monoTheta.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 367 +y 95 +w 60 +h 20 +controlPv "$(P)ml_monoThetaTweak" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 347 +y 20 +w 100 +h 15 +controlPv "$(P)ml_monoTheta.DRVH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 347 +y 80 +w 100 +h 15 +controlPv "$(P)ml_monoTheta.DRVL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 237 +y 80 +w 100 +h 15 +controlPv "$(P)ml_monoLambda.DRVL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 127 +y 80 +w 100 +h 15 +controlPv "$(P)ml_monoE.DRVL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 237 +y 35 +w 100 +h 20 +controlPv "$(P)ml_monoLambdaRdbk" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 237 +y 55 +w 100 +h 25 +controlPv "$(P)ml_monoLambda.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 257 +y 95 +w 60 +h 20 +controlPv "$(P)ml_monoLambdaTweak" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 237 +y 20 +w 100 +h 15 +controlPv "$(P)ml_monoLambda.DRVH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 127 +y 55 +w 100 +h 25 +controlPv "$(P)ml_monoE.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 147 +y 95 +w 60 +h 20 +controlPv "$(P)ml_monoETweak" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 127 +y 20 +w 100 +h 15 +controlPv "$(P)ml_monoE.DRVH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 127 +y 35 +w 100 +h 20 +controlPv "$(P)ml_monoERdbk" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 237 +y 1 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "lambda (A)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 127 +y 1 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "E (keV)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 80 +w 75 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 60416 60416 60416 +bgColor index 3 +useDisplayBg +value { + "Low Limit" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 60 +w 75 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 60416 60416 60416 +bgColor index 3 +useDisplayBg +value { + "Desired" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 38 +w 75 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 60416 60416 60416 +bgColor index 3 +useDisplayBg +value { + "Actual" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 20 +w 75 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 60416 60416 60416 +bgColor index 3 +useDisplayBg +value { + "High Limit" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x -1 +y 118 +w 536 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 0 +1 534 +} +yPoints { +0 119 +1 119 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 1 +w 116 +h 95 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Arc) +object activeArcClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 100 +y 180 +w 25 +h 18 +lineColor rgb 57600 36864 5376 +fillColor rgb 57600 36864 5376 +lineWidth 2 +startAngle 90 +totalAngle 180 +fillMode "pie" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 107 +y 177 +w 8 +h 10 +lineColor rgb 57600 36864 5376 +fillColor rgb 57600 36864 5376 +lineWidth 2 +numPoints 3 { +xPoints { +0 108 +1 114 +2 108 +} +yPoints { +0 178 +1 181 +2 186 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 78 +y 188 +w 20 +h 2 +lineColor rgb 57600 36864 5376 +fillColor rgb 57600 36864 5376 +lineWidth 2 +lineStyle "dash" +numPoints 2 { +xPoints { +0 97 +1 79 +} +yPoints { +0 189 +1 189 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 138 +w 81 +h 80 +lineColor rgb 57600 36864 5376 +fill +fillColor rgb 57600 36864 5376 +lineWidth 2 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 98 +y 299 +w 339 +h 18 +controlPv "$(P)ml_monoSeqMsg1" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x -2 +y 288 +w 536 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 -1 +1 533 +} +yPoints { +0 289 +1 289 +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 98 +y 319 +w 339 +h 18 +controlPv "$(P)ml_monoSeqMsg2" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 244 +w 100 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Calibration:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 300 +y 123 +w 90 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y2" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 495 +y 155 +w 78 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Actual Pos." +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 495 +y 173 +w 105 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Motor Command" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 496 +y 138 +w 67 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Motor PV" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 540 +y 230 +w 88 +h 22 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 39168 65280 65280 +bgColor index 3 +useDisplayBg +value { + "Moving" +} +visPv "CALC\\\{(A)\}($(P)ml_monoMoving)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 540 +y 230 +w 88 +h 22 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Done" +} +visPv "CALC\\\{(A)\}($(P)ml_monoMoving)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 310 +y 176 +w 80 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "(y offset)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 395 +y 123 +w 90 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Z2" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 402 +y 155 +w 89 +h 15 +controlPv "$(P)ml_monoZRdbk" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 401 +y 140 +w 89 +h 13 +controlPv "$(P)ml_monoZPv" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 310 +y 155 +w 80 +h 15 +controlPv "$(P)ml_mono_yOffset" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 306 +y 140 +w 89 +h 13 +controlPv "$(P)ml_monoYPv" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 110 +y 123 +w 90 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Theta" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 115 +y 155 +w 89 +h 15 +controlPv "$(P)ml_monoThetaRdbk" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 114 +y 140 +w 89 +h 13 +controlPv "$(P)ml_monoThetaPv" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 205 +y 123 +w 90 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Theta2" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 210 +y 155 +w 89 +h 15 +controlPv "$(P)ml_monoTheta2RdbkEcho" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 209 +y 140 +w 89 +h 13 +controlPv "$(P)ml_monoTheta2Pv" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 115 +y 192 +w 89 +h 15 +controlPv "$(P)ml_monoThetaSet" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 52480 24832 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 115 +y 208 +w 89 +h 13 +controlPv "$(P)ml_monoThetaVel" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 210 +y 192 +w 89 +h 15 +controlPv "$(P)ml_monoTheta2Set" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 52480 24832 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 210 +y 208 +w 89 +h 13 +controlPv "$(P)ml_monoTheta2Vel" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 402 +y 192 +w 89 +h 15 +controlPv "$(P)ml_monoZSet" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 52480 24832 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 402 +y 208 +w 89 +h 13 +controlPv "$(P)ml_monoZVel" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 495 +y 192 +w 50 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Ideal" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 495 +y 207 +w 50 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Speed" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 114 +y 155 +w 92 +h 35 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)ml_monoThetaDmov)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 209 +y 155 +w 92 +h 35 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)ml_monoTheta2Dmov)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 402 +y 155 +w 92 +h 35 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)ml_monoZDmov)" +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 115 +y 173 +w 89 +h 15 +controlPv "$(P)ml_monoThetaCmd" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 210 +y 173 +w 89 +h 15 +controlPv "$(P)ml_monoTheta2Cmd" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 402 +y 173 +w 89 +h 15 +controlPv "$(P)ml_monoZCmd" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 6 +y 142 +w 75 +h 45 +fgColor rgb 0 0 0 +bgColor rgb 57600 36864 5376 +selectColor rgb 57600 36864 5376 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoMode.VAL" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 6 +y 190 +w 75 +h 25 +fgColor rgb 0 0 0 +onColor rgb 57600 36864 5376 +offColor rgb 57600 36864 5376 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoPut" +pressValue "1" +releaseValue +onLabel "Move" +offLabel "Move" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 427 +y 95 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoThetaInc.VAL" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 347 +y 95 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoThetaDec.VAL" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 317 +y 95 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoLambdaInc.VAL" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 237 +y 95 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoLambdaDec.VAL" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 127 +y 95 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoEDec.VAL" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 207 +y 95 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoEInc.VAL" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 21 +y 300 +w 54 +h 34 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoOperAck" +pressValue "1" +releaseValue +onLabel "OK" +offLabel "OK" +3d +useEnumNumeric +font "helvetica-medium-r-18.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 260 +w 100 +h 22 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoUseSet.VAL" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 540 +y 189 +w 88 +h 38 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "All Stop" +offLabel "All Stop" +3d +useEnumNumeric +font "helvetica-medium-r-18.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 385 +y 245 +w 106 +h 35 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoMode2.VAL" +font "helvetica-medium-r-10.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/ml_monoSeqCtl_tiny.edl b/opticsApp/op/edl/autoconvert/ml_monoSeqCtl_tiny.edl new file mode 100644 index 0000000..ed80f78 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/ml_monoSeqCtl_tiny.edl @@ -0,0 +1,700 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 300 +y 258 +w 215 +h 140 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 32 +w 105 +h 20 +controlPv "$(P)ml_monoERdbk" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 48 +w 105 +h 25 +controlPv "$(P)ml_monoE.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 19 +w 105 +h 15 +controlPv "$(P)ml_monoE.DRVH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 71 +w 105 +h 15 +controlPv "$(P)ml_monoE.DRVL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 105 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "E (keV)" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 84 +w 65 +h 20 +controlPv "$(P)ml_monoETweak" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 105 +w 104 +h 31 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 105 +w 105 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "SCAN CONTROL" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 110 +y 0 +w 105 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TH (deg.)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 32 +w 105 +h 20 +controlPv "$(P)ml_monoThetaRdbk" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 48 +w 105 +h 25 +controlPv "$(P)ml_monoTheta.VAL" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 19 +w 105 +h 15 +controlPv "$(P)ml_monoTheta.DRVH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 71 +w 105 +h 15 +controlPv "$(P)ml_monoTheta.DRVL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 130 +y 84 +w 65 +h 20 +controlPv "$(P)ml_monoThetaTweak" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 105 +w 104 +h 31 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 110 +y 105 +w 105 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "SCAN CONTROL" +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 84 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoEDec.VAL" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 84 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoEInc.VAL" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 64 +y 115 +w 40 +h 20 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "Abort" +offLabel "Abort" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 43 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoE:scanParms.GO" +pressValue "1" +releaseValue +onLabel "Go" +offLabel "Go" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 22 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoE:scanParms.LOAD" +pressValue "1" +releaseValue +onLabel "Ld" +offLabel "Ld" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParms.edl +} +menuLabel { + 0 Energy-scan parameters +} +symbols { + 0 "P=$(P),Q=ml_monoE,PV=ml_monoE" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 195 +y 84 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoThetaInc.VAL" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 84 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoThetaDec.VAL" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 174 +y 115 +w 40 +h 20 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "Abort" +offLabel "Abort" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 153 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoTheta:scanParms.GO" +pressValue "1" +releaseValue +onLabel "Go" +offLabel "Go" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 132 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)ml_monoTheta:scanParms.LOAD" +pressValue "1" +releaseValue +onLabel "Ld" +offLabel "Ld" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 111 +y 115 +w 20 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParms.edl +} +menuLabel { + 0 Theta-scan parameters +} +symbols { + 0 "P=$(P),Q=ml_monoTheta,PV=ml_monoTheta" +} +replaceSymbols { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/orient.edl b/opticsApp/op/edl/autoconvert/orient.edl new file mode 100644 index 0000000..26c99df --- /dev/null +++ b/opticsApp/op/edl/autoconvert/orient.edl @@ -0,0 +1,1735 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 82 +y 81 +w 490 +h 245 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 1 +w 486 +h 16 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 3 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 21 +w 486 +h -1 +lineColor rgb 2560 0 47104 +fill +fillColor rgb 2560 0 47104 +lineWidth 3 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 490 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Diffractometer $(P)orient$(O)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 132 +y 64 +w 115 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "CONSTRAINT:" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 164 +y 99 +w 80 +h 20 +controlPv "$(P)orient$(O):TTH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 164 +y 122 +w 80 +h 20 +controlPv "$(P)orient$(O):TH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 164 +y 145 +w 80 +h 20 +controlPv "$(P)orient$(O):CHI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 164 +y 168 +w 80 +h 20 +controlPv "$(P)orient$(O):PHI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 162 +y 98 +w 83 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):TTH_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 125 +y 100 +w 42 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TTH" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 130 +y 123 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TH" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 127 +y 146 +w 39 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "CHI" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 127 +y 169 +w 38 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PHI" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 162 +y 122 +w 83 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):TH_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 162 +y 144 +w 83 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):CHI_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 162 +y 167 +w 83 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):PHI_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 254 +y 118 +w 99 +h 6 +lineColor rgb 13056 39168 0 +fillColor rgb 13056 39168 0 +lineWidth 6 +numPoints 2 { +xPoints { +0 350 +1 257 +} +yPoints { +0 121 +1 121 +} +visPv "CALC\\\{(A||B)\}($(P)orient$(O):motPut, $(P)orient$(O):motPut_Auto)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 344 +y 108 +w 23 +h 26 +lineColor rgb 13056 39168 0 +fill +fillColor rgb 13056 39168 0 +closePolygon +numPoints 4 { +xPoints { +0 344 +1 344 +2 367 +3 344 +} +yPoints { +0 108 +1 134 +2 119 +3 108 +} +visPv "CALC\\\{(A||B)\}($(P)orient$(O):motPut, $(P)orient$(O):motPut_Auto)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 11 +y 23 +w 417 +h 19 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 3 +visPv "CALC\\\{(A)\}($(P)orient$(O):Alert)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 14 +y 27 +w 412 +h 14 +controlPv +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 280 +y 70 +w 55 +h 20 +controlPv "$(P)orient$(O):Busy" +format "string" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 13056 39168 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 26 +y 46 +w 80 +h 14 +controlPv "$(P)orient$(O):H_RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 180 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "L" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 179 +w 80 +h 20 +controlPv "$(P)orient$(O):L" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 178 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):L_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 26 +y 163 +w 80 +h 14 +controlPv "$(P)orient$(O):L_RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 120 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "K" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 119 +w 80 +h 20 +controlPv "$(P)orient$(O):K" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 118 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):K_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 26 +y 103 +w 80 +h 14 +controlPv "$(P)orient$(O):K_RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 61 +w 80 +h 20 +controlPv "$(P)orient$(O):H" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 62 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "H" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 60 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):H_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 264 +y 165 +w 99 +h 7 +lineColor rgb 13056 39168 0 +fillColor rgb 13056 39168 0 +lineWidth 6 +numPoints 2 { +xPoints { +0 267 +1 360 +} +yPoints { +0 169 +1 168 +} +visPv "CALC\\\{(A||B)\}($(P)orient$(O):motGet, $(P)orient$(O):motGet_Auto)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 252 +y 156 +w 23 +h 26 +lineColor rgb 13056 39168 0 +fill +fillColor rgb 13056 39168 0 +closePolygon +numPoints 4 { +xPoints { +0 275 +1 275 +2 252 +3 275 +} +yPoints { +0 156 +1 182 +2 167 +3 156 +} +visPv "CALC\\\{(A||B)\}($(P)orient$(O):motGet, $(P)orient$(O):motGet_Auto)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 45 +y 83 +w 40 +h 18 +controlPv "$(P)orient$(O):H_tweak.C" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 45 +y 201 +w 40 +h 18 +controlPv "$(P)orient$(O):L_tweak.C" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 45 +y 141 +w 40 +h 18 +controlPv "$(P)orient$(O):K_tweak.C" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 397 +y 126 +w 80 +h 14 +controlPv "$(PM)$(mCHI).RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 396 +y 141 +w 82 +h 22 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A=0)\}($(P)orient$(O):motCHI_Connected)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 397 +y 142 +w 80 +h 20 +controlPv "$(PM)$(mCHI)" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 396 +y 141 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):waiting4motCHI)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 396 +y 101 +w 82 +h 22 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A=0)\}($(P)orient$(O):motTH_Connected)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 396 +y 101 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):waiting4motTH)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 397 +y 86 +w 80 +h 14 +controlPv "$(PM)$(mTH).RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 397 +y 102 +w 80 +h 20 +controlPv "$(PM)$(mTH)" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 397 +y 46 +w 80 +h 14 +controlPv "$(PM)$(mTTH).RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 396 +y 61 +w 82 +h 22 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A=0)\}($(P)orient$(O):motTTH_Connected)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 397 +y 62 +w 80 +h 20 +controlPv "$(PM)$(mTTH)" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 396 +y 61 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):waiting4motTTH)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 395 +y 203 +w 84 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 13056 39168 0 +bgColor index 3 +useDisplayBg +value { + "Moving" +} +visPv "CALC\\\{(A)\}($(P)orient$(O):waiting4Mot)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 397 +y 166 +w 80 +h 14 +controlPv "$(PM)$(mPHI).RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 396 +y 181 +w 82 +h 22 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A=0)\}($(P)orient$(O):motPHI_Connected)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 397 +y 182 +w 80 +h 20 +controlPv "$(PM)$(mPHI)" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 396 +y 181 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):waiting4motPHI)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 359 +y 63 +w 42 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TTH" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 364 +y 103 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TH" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 361 +y 143 +w 39 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "CHI" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 361 +y 183 +w 38 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PHI" +} +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 132 +y 75 +w 115 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)orient$(O):Mode" +indicatorPv "$(P)orient$(O):Mode" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 97 +w 55 +h 14 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)orient$(O):motPut_Auto" +indicatorPv "$(P)orient$(O):motPut_Auto" +font "helvetica-bold-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 111 +w 55 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):motPut" +pressValue "1" +releaseValue +onLabel "Move" +offLabel "Move" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 249 +y 202 +w 120 +h 28 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):stopMotors" +pressValue "1" +releaseValue +onLabel "Stop Motors" +offLabel "Stop Motors" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 430 +y 23 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):OperAck" +pressValue "1" +releaseValue +onLabel "Erase" +offLabel "Erase" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 145 +w 55 +h 14 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)orient$(O):motGet_Auto" +indicatorPv "$(P)orient$(O):motGet_Auto" +font "helvetica-bold-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 159 +w 55 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):motGet" +pressValue "1" +releaseValue +onLabel "Read" +offLabel "Read" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 450 +y 225 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "More" +numPvs 4 +numDsps 2 +displayFileName { + 0 orient_full.edl + 1 motor4x.edl +} +menuLabel { + 0 Everything + 1 Motors +} +symbols { + 0 "P=$(P),O=$(O),PM=$(PM),mTTH=$(mTTH),mTH=$(mTH),mCHI=$(mCHI),mPHI=$(mPHI)" + 1 "P=$(PM),M1=$(mTTH),M2=$(mTH),M3=$(mCHI),M4=$(mPHI)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 + 1 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 412 +y 225 +w 40 +h 21 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Less" +numPvs 2 +numDsps 1 +displayFileName { + 0 orient_HKL.edl +} +menuLabel { + 0 HKL only +} +symbols { + 0 "P=$(P),O=$(O),PM=$(PM),mTTH=$(mTTH),mTH=$(mTH),mCHI=$(mCHI),mPHI=$(mPHI)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 81 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):H_tweak.A" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 25 +y 81 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):H_tweak.B" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 199 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):L_tweak.A" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 25 +y 199 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):L_tweak.B" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 139 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):K_tweak.A" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 25 +y 139 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):K_tweak.B" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/orient9.edl b/opticsApp/op/edl/autoconvert/orient9.edl new file mode 100644 index 0000000..2554701 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/orient9.edl @@ -0,0 +1,2658 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 729 +y 568 +w 675 +h 280 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 1 +w 696 +h 16 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 3 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 21 +w 696 +h -1 +lineColor rgb 2560 0 47104 +fill +fillColor rgb 2560 0 47104 +lineWidth 3 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 700 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Diffractometer" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 30 +y 25 +w 80 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "H" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 125 +y 25 +w 80 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "K" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 220 +y 25 +w 80 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "L" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 315 +y 25 +w 80 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TTH" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 405 +y 25 +w 80 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TH" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 495 +y 25 +w 80 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "CHI" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 585 +y 25 +w 80 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PHI" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 45 +w 80 +h 15 +controlPv "$(P)orient_p4:H" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 315 +y 45 +w 80 +h 15 +controlPv "$(P)orient_p4:TTH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 125 +y 45 +w 80 +h 15 +controlPv "$(P)orient_p4:K" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 220 +y 45 +w 80 +h 15 +controlPv "$(P)orient_p4:L" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 315 +y 65 +w 80 +h 15 +controlPv "$(P)orient_p3:TTH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 65 +w 80 +h 15 +controlPv "$(P)orient_p3:H" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 125 +y 65 +w 80 +h 15 +controlPv "$(P)orient_p3:K" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 220 +y 65 +w 80 +h 15 +controlPv "$(P)orient_p3:L" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 85 +w 80 +h 15 +controlPv "$(P)orient_p2:H" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 125 +y 85 +w 80 +h 15 +controlPv "$(P)orient_p2:K" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 220 +y 85 +w 80 +h 15 +controlPv "$(P)orient_p2:L" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 315 +y 85 +w 80 +h 15 +controlPv "$(P)orient_p2:TTH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 105 +w 80 +h 15 +controlPv "$(P)orient_p1:H" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 125 +y 105 +w 80 +h 15 +controlPv "$(P)orient_p1:K" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 220 +y 105 +w 80 +h 15 +controlPv "$(P)orient_p1:L" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 315 +y 105 +w 80 +h 15 +controlPv "$(P)orient_p1:TTH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 130 +w 80 +h 15 +controlPv "$(P)orient$(O):H_RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 125 +y 130 +w 80 +h 15 +controlPv "$(P)orient$(O):K_RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 220 +y 130 +w 80 +h 15 +controlPv "$(P)orient$(O):L_RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 315 +y 130 +w 80 +h 15 +controlPv "$(P)orient1:TTH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 405 +y 130 +w 80 +h 15 +controlPv "$(P)orient1:TH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 495 +y 130 +w 80 +h 15 +controlPv "$(P)orient1:CHI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 585 +y 130 +w 80 +h 15 +controlPv "$(P)orient1:PHI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 314 +y 146 +w 82 +h 22 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A=0)\}($(P)orient$(O):motTTH_Connected)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 315 +y 147 +w 80 +h 20 +controlPv "$(PM)$(mTTH)" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 314 +y 146 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):waiting4motTTH)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 200 +w 80 +h 15 +controlPv "$(P)orient_m1:H" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 125 +y 200 +w 80 +h 15 +controlPv "$(P)orient_m1:K" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 220 +y 200 +w 80 +h 15 +controlPv "$(P)orient_m1:L" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 315 +y 200 +w 80 +h 15 +controlPv "$(P)orient_m1:TTH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 220 +w 80 +h 15 +controlPv "$(P)orient_m2:H" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 125 +y 220 +w 80 +h 15 +controlPv "$(P)orient_m2:K" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 220 +y 220 +w 80 +h 15 +controlPv "$(P)orient_m2:L" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 315 +y 220 +w 80 +h 15 +controlPv "$(P)orient_m2:TTH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 240 +w 80 +h 15 +controlPv "$(P)orient_m3:H" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 125 +y 240 +w 80 +h 15 +controlPv "$(P)orient_m3:K" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 220 +y 240 +w 80 +h 15 +controlPv "$(P)orient_m3:L" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 315 +y 240 +w 80 +h 15 +controlPv "$(P)orient_m3:TTH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 31 +y 260 +w 80 +h 15 +controlPv "$(P)orient_m4:H" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 126 +y 260 +w 80 +h 15 +controlPv "$(P)orient_m4:K" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 221 +y 260 +w 80 +h 15 +controlPv "$(P)orient_m4:L" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 316 +y 260 +w 80 +h 15 +controlPv "$(P)orient_m4:TTH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 31 +y 147 +w 80 +h 22 +controlPv "$(P)orient$(O):H" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 30 +y 146 +w 82 +h 24 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):H_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 125 +y 147 +w 80 +h 22 +controlPv "$(P)orient$(O):K" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 124 +y 146 +w 82 +h 24 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):K_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 220 +y 147 +w 80 +h 22 +controlPv "$(P)orient$(O):L" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 219 +y 146 +w 82 +h 24 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):L_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 51 +y 174 +w 40 +h 18 +controlPv "$(P)orient$(O):H_tweak.C" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 145 +y 174 +w 40 +h 18 +controlPv "$(P)orient$(O):K_tweak.C" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 240 +y 174 +w 40 +h 18 +controlPv "$(P)orient$(O):L_tweak.C" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 335 +y 174 +w 40 +h 18 +controlPv "$(PM)$(mTTH).TWV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 425 +y 174 +w 40 +h 18 +controlPv "$(PM)$(mTH).TWV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 515 +y 174 +w 40 +h 18 +controlPv "$(PM)$(mCHI).TWV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 404 +y 146 +w 82 +h 22 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A=0)\}($(P)orient$(O):motTH_Connected)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 405 +y 147 +w 80 +h 20 +controlPv "$(PM)$(mTH)" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 404 +y 146 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):waiting4motTH)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 494 +y 146 +w 82 +h 22 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A=0)\}($(P)orient$(O):motCHI_Connected)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 495 +y 147 +w 80 +h 20 +controlPv "$(PM)$(mCHI)" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 494 +y 146 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):waiting4motCHI)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 584 +y 146 +w 82 +h 22 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A=0)\}($(P)orient$(O):motPHI_Connected)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 585 +y 147 +w 80 +h 20 +controlPv "$(PM)$(mPHI)" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 584 +y 146 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):waiting4motPHI)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 605 +y 174 +w 40 +h 18 +controlPv "$(PM)$(mPHI).TWV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 129 +w 667 +h 66 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 405 +y 48 +w 260 +h 1 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +numPoints 2 { +xPoints { +0 405 +1 664 +} +yPoints { +0 48 +1 48 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 405 +y 116 +w 260 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 405 +1 664 +} +yPoints { +0 116 +1 116 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 405 +y 48 +w 1 +h 69 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +numPoints 2 { +xPoints { +0 405 +1 405 +} +yPoints { +0 48 +1 116 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 663 +y 48 +w 1 +h 69 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 663 +1 663 +} +yPoints { +0 48 +1 116 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 405 +y 205 +w 260 +h 1 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +numPoints 2 { +xPoints { +0 405 +1 664 +} +yPoints { +0 205 +1 205 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 405 +y 273 +w 260 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 405 +1 664 +} +yPoints { +0 273 +1 273 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 405 +y 205 +w 1 +h 69 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +numPoints 2 { +xPoints { +0 405 +1 405 +} +yPoints { +0 205 +1 273 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 663 +y 205 +w 1 +h 69 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 663 +1 663 +} +yPoints { +0 205 +1 273 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 456 +y 233 +w 70 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Energy:" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 530 +y 233 +w 70 +h 20 +controlPv "$(P)orient$(O):energy" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 601 +y 233 +w 40 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "keV" +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 105 +w 25 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "+1" +numPvs 2 +numDsps 1 +displayFileName { + 0 orient_slave.edl +} +menuLabel { + 0 More +} +symbols { + 0 "P=$(P),O=_p1" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 85 +w 25 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "+2" +numPvs 2 +numDsps 1 +displayFileName { + 0 orient_slave.edl +} +menuLabel { + 0 More +} +symbols { + 0 "P=$(P),O=_p2" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 65 +w 25 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "+3" +numPvs 2 +numDsps 1 +displayFileName { + 0 orient_slave.edl +} +menuLabel { + 0 More +} +symbols { + 0 "P=$(P),O=_p3" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 45 +w 25 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "+4" +numPvs 2 +numDsps 1 +displayFileName { + 0 orient_slave.edl +} +menuLabel { + 0 More +} +symbols { + 0 "P=$(P),O=_p4" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 144 +w 25 +h 27 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-14.0" +buttonLabel "0" +numPvs 4 +numDsps 2 +displayFileName { + 0 orient.edl + 1 motor4x.edl +} +menuLabel { + 0 Orientation matrix + 1 Motors +} +symbols { + 0 "P=$(P),O=1,PM=$(PM),mTTH=$(mTTH),mTH=$(mTH),mCHI=$(mCHI),mPHI=$(mPHI)" + 1 "P=$(PM),M1=$(mTTH),M2=$(mTH),M3=$(mCHI),M4=$(mPHI)" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 200 +w 25 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "-1" +numPvs 2 +numDsps 1 +displayFileName { + 0 orient_slave.edl +} +menuLabel { + 0 More +} +symbols { + 0 "P=$(P),O=_m1" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 220 +w 25 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "-2" +numPvs 2 +numDsps 1 +displayFileName { + 0 orient_slave.edl +} +menuLabel { + 0 More +} +symbols { + 0 "P=$(P),O=_m2" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 240 +w 25 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "-3" +numPvs 2 +numDsps 1 +displayFileName { + 0 orient_slave.edl +} +menuLabel { + 0 More +} +symbols { + 0 "P=$(P),O=_m3" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 260 +w 25 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "-4" +numPvs 2 +numDsps 1 +displayFileName { + 0 orient_slave.edl +} +menuLabel { + 0 More +} +symbols { + 0 "P=$(P),O=_m4" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 91 +y 172 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):H_tweak.A" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 31 +y 172 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):H_tweak.B" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 185 +y 172 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):K_tweak.A" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 125 +y 172 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):K_tweak.B" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 172 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):L_tweak.A" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 220 +y 172 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):L_tweak.B" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 375 +y 172 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(PM)$(mTTH).TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 315 +y 172 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(PM)$(mTTH).TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 465 +y 172 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(PM)$(mTH).TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 405 +y 172 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(PM)$(mTH).TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 555 +y 172 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(PM)$(mCHI).TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 495 +y 172 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(PM)$(mCHI).TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 645 +y 172 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(PM)$(mPHI).TWF" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 585 +y 172 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(PM)$(mPHI).TWR" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 471 +y 68 +w 120 +h 28 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):stopMotors" +pressValue "1" +releaseValue +onLabel "Stop Motors" +offLabel "Stop Motors" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/orient_HKL.edl b/opticsApp/op/edl/autoconvert/orient_HKL.edl new file mode 100644 index 0000000..4cc0682 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/orient_HKL.edl @@ -0,0 +1,618 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 885 +y 192 +w 340 +h 85 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 1 +w 296 +h 16 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 3 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 21 +w 296 +h -1 +lineColor rgb 2560 0 47104 +fill +fillColor rgb 2560 0 47104 +lineWidth 3 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 300 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Diffractometer $(P)orient$(O)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 26 +y 24 +w 80 +h 14 +controlPv "$(P)orient$(O):H_RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 136 +y 24 +w 80 +h 14 +controlPv "$(P)orient$(O):K_RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 246 +y 24 +w 80 +h 14 +controlPv "$(P)orient$(O):L_RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 39 +w 80 +h 20 +controlPv "$(P)orient$(O):H" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 40 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "H" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 38 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):H_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 120 +y 40 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "K" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 135 +y 39 +w 80 +h 20 +controlPv "$(P)orient$(O):K" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 134 +y 38 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):K_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 230 +y 40 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "L" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 245 +y 39 +w 80 +h 20 +controlPv "$(P)orient$(O):L" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 244 +y 38 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):L_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 45 +y 61 +w 40 +h 18 +controlPv "$(P)orient$(O):H_tweak.C" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 155 +y 61 +w 40 +h 18 +controlPv "$(P)orient$(O):K_tweak.C" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 265 +y 61 +w 40 +h 18 +controlPv "$(P)orient$(O):L_tweak.C" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 300 +y 0 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "More" +numPvs 6 +numDsps 3 +displayFileName { + 0 orient.edl + 1 orient_full.edl + 2 motor4x.edl +} +menuLabel { + 0 HKL, Angles, Motors + 1 Everything + 2 Motors +} +symbols { + 0 "P=$(P),O=$(O),PM=$(PM),mTTH=$(mTTH),mTH=$(mTH),mCHI=$(mCHI),mPHI=$(mPHI)" + 1 "P=$(P),O=$(O),PM=$(PM),mTTH=$(mTTH),mTH=$(mTH),mCHI=$(mCHI),mPHI=$(mPHI)" + 2 "P=$(PM),M1=$(mTTH),M2=$(mTH),M3=$(mCHI),M4=$(mPHI)" +} +closeAction { + 0 1 + 1 1 +} +replaceSymbols { + 0 1 + 1 1 + 2 1 +} +closeDisplay { + 0 1 + 1 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 59 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):H_tweak.A" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 25 +y 59 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):H_tweak.B" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 195 +y 59 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):K_tweak.A" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 135 +y 59 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):K_tweak.B" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 305 +y 59 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):L_tweak.A" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 245 +y 59 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):L_tweak.B" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/orient_HKL_angles.edl b/opticsApp/op/edl/autoconvert/orient_HKL_angles.edl new file mode 100644 index 0000000..00d54d5 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/orient_HKL_angles.edl @@ -0,0 +1,518 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 690 +y 570 +w 700 +h 65 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 1 +w 696 +h 16 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 3 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 21 +w 696 +h -1 +lineColor rgb 2560 0 47104 +fill +fillColor rgb 2560 0 47104 +lineWidth 3 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 700 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Diffractometer $(P)orient$(O)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 26 +y 25 +w 80 +h 14 +controlPv "$(P)orient$(O):H_RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 40 +w 80 +h 20 +controlPv "$(P)orient$(O):H" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 41 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "H" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 39 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):H_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 120 +y 42 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "K" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 135 +y 41 +w 80 +h 20 +controlPv "$(P)orient$(O):K" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 134 +y 40 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):K_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 136 +y 25 +w 80 +h 14 +controlPv "$(P)orient$(O):K_RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 230 +y 42 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "L" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 245 +y 41 +w 80 +h 20 +controlPv "$(P)orient$(O):L" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 244 +y 40 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):L_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 246 +y 25 +w 80 +h 14 +controlPv "$(P)orient$(O):L_RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 520 +y 25 +w 80 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "CHI" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 520 +y 45 +w 80 +h 14 +controlPv "$(P)orient$(O):CHI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 610 +y 25 +w 80 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PHI" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 610 +y 45 +w 80 +h 14 +controlPv "$(P)orient$(O):PHI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 340 +y 25 +w 80 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TTH" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 340 +y 45 +w 80 +h 14 +controlPv "$(P)orient$(O):TTH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 430 +y 25 +w 80 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TH" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 430 +y 45 +w 80 +h 14 +controlPv "$(P)orient$(O):TH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/orient_XTALs.edl b/opticsApp/op/edl/autoconvert/orient_XTALs.edl new file mode 100644 index 0000000..01617df --- /dev/null +++ b/opticsApp/op/edl/autoconvert/orient_XTALs.edl @@ -0,0 +1,2134 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 53 +y 289 +w 560 +h 215 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x -1 +y 35 +w 38 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "USE" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 526 +y 35 +w 33 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Get" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 35 +y 175 +w 100 +h 16 +controlPv "$(P)orient$(O):xtal_7.STR1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 205 +y 175 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_7.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 270 +y 175 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_7.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 335 +y 175 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_7.DO5" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 400 +y 175 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_7.DO6" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 465 +y 175 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_7.DO7" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 175 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_7.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 35 +y 25 +w 100 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "crystal" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 35 +y 40 +w 100 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "description" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 205 +y 25 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "b" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 270 +y 25 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "c" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 335 +y 25 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "alpha" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 400 +y 25 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "beta" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 465 +y 25 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "gamma" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 140 +y 25 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "a" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 35 +y 55 +w 100 +h 16 +controlPv "$(P)orient$(O):xtal_1.STR1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 205 +y 55 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_1.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 270 +y 55 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_1.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 335 +y 55 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_1.DO5" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 400 +y 55 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_1.DO6" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 465 +y 55 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_1.DO7" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 55 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_1.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 35 +y 75 +w 100 +h 16 +controlPv "$(P)orient$(O):xtal_2.STR1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 205 +y 75 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_2.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 270 +y 75 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_2.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 335 +y 75 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_2.DO5" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 400 +y 75 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_2.DO6" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 465 +y 75 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_2.DO7" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 75 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_2.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 35 +y 95 +w 100 +h 16 +controlPv "$(P)orient$(O):xtal_3.STR1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 205 +y 95 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_3.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 270 +y 95 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_3.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 335 +y 95 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_3.DO5" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 400 +y 95 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_3.DO6" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 465 +y 95 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_3.DO7" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 95 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_3.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 35 +y 115 +w 100 +h 16 +controlPv "$(P)orient$(O):xtal_4.STR1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 205 +y 115 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_4.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 270 +y 115 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_4.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 335 +y 115 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_4.DO5" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 400 +y 115 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_4.DO6" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 465 +y 115 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_4.DO7" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 115 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_4.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 35 +y 135 +w 100 +h 16 +controlPv "$(P)orient$(O):xtal_5.STR1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 205 +y 135 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_5.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 270 +y 135 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_5.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 335 +y 135 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_5.DO5" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 400 +y 135 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_5.DO6" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 465 +y 135 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_5.DO7" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 135 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_5.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 35 +y 155 +w 100 +h 16 +controlPv "$(P)orient$(O):xtal_6.STR1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 205 +y 155 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_6.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 270 +y 155 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_6.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 335 +y 155 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_6.DO5" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 400 +y 155 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_6.DO6" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 465 +y 155 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_6.DO7" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 155 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_6.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 35 +y 195 +w 100 +h 16 +controlPv "$(P)orient$(O):xtal_8.STR1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 205 +y 195 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_8.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 270 +y 195 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_8.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 335 +y 195 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_8.DO5" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 400 +y 195 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_8.DO6" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 465 +y 195 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_8.DO7" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 195 +w 60 +h 16 +controlPv "$(P)orient$(O):xtal_8.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 1 +w 556 +h 16 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 3 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 560 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Diffractometer $(P)orient$(O) crystals" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 21 +w 556 +h -1 +lineColor rgb 2560 0 47104 +fill +fillColor rgb 2560 0 47104 +lineWidth 3 +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 55 +w 25 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):xtal_1.PROC" +pressValue "1" +releaseValue +onLabel "1" +offLabel "1" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 75 +w 25 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):xtal_2.PROC" +pressValue "2" +releaseValue +onLabel "2" +offLabel "2" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 95 +w 25 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):xtal_3.PROC" +pressValue "3" +releaseValue +onLabel "3" +offLabel "3" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 115 +w 25 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):xtal_4.PROC" +pressValue "4" +releaseValue +onLabel "4" +offLabel "4" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 135 +w 25 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):xtal_5.PROC" +pressValue "5" +releaseValue +onLabel "5" +offLabel "5" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 155 +w 25 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):xtal_6.PROC" +pressValue "6" +releaseValue +onLabel "6" +offLabel "6" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 175 +w 25 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):xtal_7.PROC" +pressValue "7" +releaseValue +onLabel "7" +offLabel "7" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 195 +w 25 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):xtal_8.PROC" +pressValue "8" +releaseValue +onLabel "8" +offLabel "8" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 530 +y 175 +w 25 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):xtal_7_get.PROC" +pressValue "7" +releaseValue +onLabel "7" +offLabel "7" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 530 +y 55 +w 25 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):xtal_1_get.PROC" +pressValue "1" +releaseValue +onLabel "1" +offLabel "1" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 530 +y 75 +w 25 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):xtal_2_get.PROC" +pressValue "2" +releaseValue +onLabel "2" +offLabel "2" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 530 +y 95 +w 25 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):xtal_3_get.PROC" +pressValue "3" +releaseValue +onLabel "3" +offLabel "3" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 530 +y 115 +w 25 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):xtal_4_get.PROC" +pressValue "4" +releaseValue +onLabel "4" +offLabel "4" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 530 +y 135 +w 25 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):xtal_5_get.PROC" +pressValue "5" +releaseValue +onLabel "5" +offLabel "5" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 530 +y 155 +w 25 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):xtal_6_get.PROC" +pressValue "6" +releaseValue +onLabel "6" +offLabel "6" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 530 +y 195 +w 25 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):xtal_8_get.PROC" +pressValue "8" +releaseValue +onLabel "8" +offLabel "8" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/orient_full.edl b/opticsApp/op/edl/autoconvert/orient_full.edl new file mode 100644 index 0000000..4133a63 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/orient_full.edl @@ -0,0 +1,4163 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 756 +y 440 +w 550 +h 565 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 13 +y 458 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "a" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 13 +y 478 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "b" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 28 +y 457 +w 50 +h 20 +controlPv "$(P)orient$(O):a" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 28 +y 477 +w 50 +h 20 +controlPv "$(P)orient$(O):b" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 13 +y 418 +w 190 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Lattice parameters" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 13 +y 498 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "c" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 28 +y 497 +w 50 +h 20 +controlPv "$(P)orient$(O):c" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 283 +y 436 +w 240 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "A0" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 60 +y 434 +w 165 +h 18 +controlPv "$(P)orient$(O):XTAL" +format "string" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 285 +y 537 +w 49 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "debug" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 310 +y 451 +w 214 +h 64 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 3 +visPv "CALC\\\{(A#1)\}($(P)orient$(O):A0_state)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 100 +y 458 +w 50 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "alpha" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 100 +y 478 +w 50 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "beta" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 100 +y 498 +w 60 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "gamma" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 78 +y 460 +w 25 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "A" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 80 +y 455 +w 13 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "o" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 78 +y 480 +w 25 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "A" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 80 +y 475 +w 13 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "o" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 78 +y 500 +w 25 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "A" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 80 +y 495 +w 13 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "o" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 1 +w 546 +h 16 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 3 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 21 +w 546 +h -1 +lineColor rgb 2560 0 47104 +fill +fillColor rgb 2560 0 47104 +lineWidth 3 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 550 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Diffractometer $(P)orient$(O)" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 71 +y 259 +w 404 +h 22 +lineColor rgb 13056 39168 0 +fillColor rgb 13056 39168 0 +lineWidth 2 +visPv "CALC\\\{(A||B)\}($(P)orient$(O):refGet1, $(P)orient$(O):refPut1)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 71 +y 285 +w 404 +h 22 +lineColor rgb 13056 39168 0 +fillColor rgb 13056 39168 0 +lineWidth 2 +visPv "CALC\\\{(A||B)\}($(P)orient$(O):refGet2, $(P)orient$(O):refPut2)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 174 +y 243 +w 75 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TTH" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 249 +y 243 +w 75 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TH" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 324 +y 243 +w 75 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "CHI" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 399 +y 243 +w 75 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PHI" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 174 +y 260 +w 75 +h 20 +controlPv "$(P)orient$(O):TTH1" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 249 +y 260 +w 75 +h 20 +controlPv "$(P)orient$(O):TH1" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 324 +y 260 +w 75 +h 20 +controlPv "$(P)orient$(O):CHI1" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 399 +y 260 +w 75 +h 20 +controlPv "$(P)orient$(O):PHI1" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 157 +y 262 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "=" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 158 +y 259 +w 21 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "^" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 174 +y 286 +w 75 +h 20 +controlPv "$(P)orient$(O):TTH2" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 249 +y 286 +w 75 +h 20 +controlPv "$(P)orient$(O):TH2" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 324 +y 286 +w 75 +h 20 +controlPv "$(P)orient$(O):CHI2" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 399 +y 286 +w 75 +h 20 +controlPv "$(P)orient$(O):PHI2" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 157 +y 288 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "=" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 158 +y 285 +w 21 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "^" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 132 +y 260 +w 30 +h 20 +controlPv "$(P)orient$(O):L1" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 132 +y 243 +w 30 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "L" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 132 +y 286 +w 30 +h 20 +controlPv "$(P)orient$(O):L2" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 102 +y 243 +w 30 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "K" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 102 +y 260 +w 30 +h 20 +controlPv "$(P)orient$(O):K1" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 102 +y 286 +w 30 +h 20 +controlPv "$(P)orient$(O):K2" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 72 +y 243 +w 30 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "H" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 72 +y 260 +w 30 +h 20 +controlPv "$(P)orient$(O):H1" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 72 +y 286 +w 30 +h 20 +controlPv "$(P)orient$(O):H2" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 167 +y 229 +w 20 +h 20 +lineColor rgb 13056 39168 0 +fill +fillColor rgb 13056 39168 0 +lineWidth 4 +closePolygon +numPoints 4 { +xPoints { +0 176 +1 187 +2 167 +3 176 +} +yPoints { +0 249 +1 229 +2 229 +3 249 +} +visPv "CALC\\\{(A||B)\}($(P)orient$(O):refGet1, $(P)orient$(O):refGet2)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 157 +y 229 +w 20 +h 20 +lineColor rgb 13056 39168 0 +fill +fillColor rgb 13056 39168 0 +lineWidth 4 +closePolygon +numPoints 4 { +xPoints { +0 166 +1 177 +2 157 +3 166 +} +yPoints { +0 229 +1 249 +2 249 +3 229 +} +visPv "CALC\\\{(A||B)\}($(P)orient$(O):refPut1, $(P)orient$(O):refPut2)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 306 +y 333 +w 214 +h 64 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 3 +visPv "CALC\\\{(A#1)\}($(P)orient$(O):OMTX_state)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 279 +y 318 +w 240 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "OM" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 26 +y 57 +w 80 +h 14 +controlPv "$(P)orient$(O):H_RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 191 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "L" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 190 +w 80 +h 20 +controlPv "$(P)orient$(O):L" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 189 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):L_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 45 +y 212 +w 40 +h 18 +controlPv "$(P)orient$(O):L_tweak.C" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 26 +y 174 +w 80 +h 14 +controlPv "$(P)orient$(O):L_RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 131 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "K" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 130 +w 80 +h 20 +controlPv "$(P)orient$(O):K" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 129 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):K_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 45 +y 152 +w 40 +h 18 +controlPv "$(P)orient$(O):K_tweak.C" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 26 +y 114 +w 80 +h 14 +controlPv "$(P)orient$(O):K_RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 45 +y 94 +w 40 +h 18 +controlPv "$(P)orient$(O):H_tweak.C" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 72 +w 80 +h 20 +controlPv "$(P)orient$(O):H" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 73 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "H" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 71 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):H_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 258 +w 55 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PRIMARY" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 268 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "REFLECTION" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 286 +w 62 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "SECONDARY" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 296 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "REFLECTION" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 116 +y 362 +w 65 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "errAngle:" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 182 +y 362 +w 90 +h 14 +controlPv "$(P)orient$(O):errAngle" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 118 +y 380 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "maxErr:" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 182 +y 378 +w 90 +h 20 +controlPv "$(P)orient$(O):errAngleThresh" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 11 +y 23 +w 482 +h 19 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 3 +visPv "CALC\\\{(A)\}($(P)orient$(O):Alert)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 15 +y 27 +w 475 +h 14 +controlPv "$(P)orient$(O):Msg" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 379 +y 336 +w 70 +h 20 +controlPv "$(P)orient$(O):OMTX_12" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 379 +y 356 +w 70 +h 20 +controlPv "$(P)orient$(O):OMTX_22" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 379 +y 376 +w 70 +h 20 +controlPv "$(P)orient$(O):OMTX_32" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 449 +y 336 +w 70 +h 20 +controlPv "$(P)orient$(O):OMTX_13" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 449 +y 356 +w 70 +h 20 +controlPv "$(P)orient$(O):OMTX_23" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 449 +y 376 +w 70 +h 20 +controlPv "$(P)orient$(O):OMTX_33" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 309 +y 336 +w 70 +h 20 +controlPv "$(P)orient$(O):OMTX_11" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 309 +y 356 +w 70 +h 20 +controlPv "$(P)orient$(O):OMTX_21" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 309 +y 376 +w 70 +h 20 +controlPv "$(P)orient$(O):OMTX_31" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 313 +y 454 +w 70 +h 20 +controlPv "$(P)orient$(O):A0_11" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 313 +y 474 +w 70 +h 20 +controlPv "$(P)orient$(O):A0_21" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 313 +y 494 +w 70 +h 20 +controlPv "$(P)orient$(O):A0_31" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 383 +y 454 +w 70 +h 20 +controlPv "$(P)orient$(O):A0_12" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 383 +y 474 +w 70 +h 20 +controlPv "$(P)orient$(O):A0_22" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 383 +y 494 +w 70 +h 20 +controlPv "$(P)orient$(O):A0_32" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 453 +y 454 +w 70 +h 20 +controlPv "$(P)orient$(O):A0_13" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 453 +y 474 +w 70 +h 20 +controlPv "$(P)orient$(O):A0_23" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 453 +y 494 +w 70 +h 20 +controlPv "$(P)orient$(O):A0_33" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 228 +y 457 +w 13 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "o" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 228 +y 478 +w 13 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "o" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 228 +y 498 +w 13 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "o" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 155 +y 457 +w 70 +h 20 +controlPv "$(P)orient$(O):alpha" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 155 +y 477 +w 70 +h 20 +controlPv "$(P)orient$(O):beta" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 155 +y 497 +w 70 +h 20 +controlPv "$(P)orient$(O):gamma" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 246 +y 482 +w 31 +h 6 +lineColor rgb 13056 39168 0 +fillColor rgb 13056 39168 0 +lineWidth 6 +numPoints 2 { +xPoints { +0 274 +1 249 +} +yPoints { +0 485 +1 485 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 273 +y 475 +w 20 +h 20 +lineColor rgb 13056 39168 0 +fill +fillColor rgb 13056 39168 0 +closePolygon +numPoints 5 { +xPoints { +0 273 +1 293 +2 273 +3 273 +4 273 +} +yPoints { +0 475 +1 485 +2 494 +3 495 +4 475 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 245 +y 461 +w 48 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "AUTO" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 9 +y 522 +w 83 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Wavelength:" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 94 +y 521 +w 70 +h 20 +controlPv "$(P)orient$(O):lambda" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 165 +y 523 +w 25 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "A" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 167 +y 518 +w 13 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "o" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 13 +y 542 +w 75 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Energy:" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 94 +y 541 +w 70 +h 20 +controlPv "$(P)orient$(O):energy" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 165 +y 543 +w 40 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "keV" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 307 +y 118 +w 99 +h 6 +lineColor rgb 13056 39168 0 +fillColor rgb 13056 39168 0 +lineWidth 6 +numPoints 2 { +xPoints { +0 403 +1 310 +} +yPoints { +0 121 +1 121 +} +visPv "CALC\\\{(A||B)\}($(P)orient$(O):motPut, $(P)orient$(O):motPut_Auto)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 397 +y 108 +w 23 +h 26 +lineColor rgb 13056 39168 0 +fill +fillColor rgb 13056 39168 0 +closePolygon +numPoints 4 { +xPoints { +0 397 +1 397 +2 420 +3 397 +} +yPoints { +0 108 +1 134 +2 119 +3 108 +} +visPv "CALC\\\{(A||B)\}($(P)orient$(O):motPut, $(P)orient$(O):motPut_Auto)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 317 +y 174 +w 99 +h 7 +lineColor rgb 13056 39168 0 +fillColor rgb 13056 39168 0 +lineWidth 6 +numPoints 2 { +xPoints { +0 320 +1 413 +} +yPoints { +0 178 +1 177 +} +visPv "CALC\\\{(A||B)\}($(P)orient$(O):motGet, $(P)orient$(O):motGet_Auto)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 305 +y 165 +w 23 +h 26 +lineColor rgb 13056 39168 0 +fill +fillColor rgb 13056 39168 0 +closePolygon +numPoints 4 { +xPoints { +0 328 +1 328 +2 305 +3 328 +} +yPoints { +0 165 +1 191 +2 176 +3 165 +} +visPv "CALC\\\{(A||B)\}($(P)orient$(O):motGet, $(P)orient$(O):motGet_Auto)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 181 +y 66 +w 120 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "HKL/ANGLE CONSTRAINT:" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 213 +y 129 +w 80 +h 20 +controlPv "$(P)orient$(O):TH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 213 +y 152 +w 80 +h 20 +controlPv "$(P)orient$(O):CHI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 213 +y 175 +w 80 +h 20 +controlPv "$(P)orient$(O):PHI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 180 +y 130 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TH" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 180 +y 153 +w 39 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "CHI" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 180 +y 176 +w 38 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PHI" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 211 +y 129 +w 83 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):TH_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 211 +y 151 +w 83 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):CHI_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 211 +y 174 +w 83 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):PHI_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 213 +y 106 +w 80 +h 20 +controlPv "$(P)orient$(O):TTH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 211 +y 105 +w 83 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):TTH_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 180 +y 107 +w 42 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TTH" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 131 +y 138 +w 21 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "OM" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 132 +y 149 +w 19 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "A0" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 133 +y 136 +w 18 +h 23 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 152 +y 140 +w 17 +h 17 +lineColor rgb 13056 39168 0 +fill +fillColor rgb 13056 39168 0 +closePolygon +numPoints 5 { +xPoints { +0 152 +1 169 +2 152 +3 152 +4 152 +} +yPoints { +0 140 +1 147 +2 155 +3 157 +4 140 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 115 +y 140 +w 17 +h 17 +lineColor rgb 13056 39168 0 +fill +fillColor rgb 13056 39168 0 +closePolygon +numPoints 5 { +xPoints { +0 132 +1 115 +2 132 +3 132 +4 132 +} +yPoints { +0 140 +1 147 +2 155 +3 157 +4 140 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 119 +y 117 +w 48 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "AUTO" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 457 +y 133 +w 80 +h 14 +controlPv "$(PM)$(mCHI).RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 456 +y 148 +w 82 +h 22 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A=0)\}($(P)orient$(O):motCHI_Connected)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 457 +y 149 +w 80 +h 20 +controlPv "$(PM)$(mCHI)" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 456 +y 148 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):waiting4motCHI)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 456 +y 108 +w 82 +h 22 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A=0)\}($(P)orient$(O):motTH_Connected)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 456 +y 108 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):waiting4motTH)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 457 +y 93 +w 80 +h 14 +controlPv "$(PM)$(mTH).RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 457 +y 109 +w 80 +h 20 +controlPv "$(PM)$(mTH)" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 457 +y 53 +w 80 +h 14 +controlPv "$(PM)$(mTTH).RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 456 +y 68 +w 82 +h 22 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A=0)\}($(P)orient$(O):motTTH_Connected)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 457 +y 69 +w 80 +h 20 +controlPv "$(PM)$(mTTH)" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 456 +y 68 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):waiting4motTTH)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 455 +y 210 +w 84 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 13056 39168 0 +bgColor index 3 +useDisplayBg +value { + "Moving" +} +visPv "CALC\\\{(A)\}($(P)orient$(O):waiting4Mot)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 457 +y 173 +w 80 +h 14 +controlPv "$(PM)$(mPHI).RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 456 +y 188 +w 82 +h 22 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A=0)\}($(P)orient$(O):motPHI_Connected)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 457 +y 189 +w 80 +h 20 +controlPv "$(PM)$(mPHI)" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 456 +y 188 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):waiting4motPHI)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 419 +y 70 +w 42 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TTH" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 424 +y 110 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TH" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 421 +y 150 +w 39 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "CHI" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 421 +y 190 +w 38 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PHI" +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 13 +y 434 +w 45 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "XTALS" +numPvs 2 +numDsps 1 +displayFileName { + 0 orient_XTALs.edl +} +menuLabel { + 0 crystals +} +symbols { + 0 "P=$(P),O=$(O)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 330 +y 533 +w 60 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)orient$(O):Debug" +indicatorPv "$(P)orient$(O):Debug" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 450 +y 540 +w 50 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Less" +numPvs 2 +numDsps 1 +displayFileName { + 0 orient.edl +} +menuLabel { + 0 HKL, Angles, Motors +} +symbols { + 0 "P=$(P),O=$(O),PM=$(PM),mTTH=$(mTTH),mTH=$(mTH),mCHI=$(mCHI),mPHI=$(mPHI)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 500 +y 540 +w 50 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Motors" +numPvs 2 +numDsps 1 +displayFileName { + 0 motor4x.edl +} +menuLabel { + 0 Motors +} +symbols { + 0 "P=$(PM),M1=$(mTTH),M2=$(mTH),M3=$(mCHI),M4=$(mPHI)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 478 +y 260 +w 30 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):refGet1" +pressValue "1" +releaseValue +onLabel "Get" +offLabel "Get" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 509 +y 260 +w 30 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):refPut1" +pressValue "1" +releaseValue +onLabel "Put" +offLabel "Put" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 478 +y 285 +w 30 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):refGet2" +pressValue "1" +releaseValue +onLabel "Get" +offLabel "Get" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 509 +y 285 +w 30 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):refPut2" +pressValue "1" +releaseValue +onLabel "Put" +offLabel "Put" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 182 +y 340 +w 90 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):OMTX_Calc" +pressValue "1" +releaseValue +onLabel "Calc OMTX" +offLabel "Calc OMTX" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 210 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):L_tweak.A" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 25 +y 210 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):L_tweak.B" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 150 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):K_tweak.A" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 25 +y 150 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):K_tweak.B" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 92 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):H_tweak.A" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 25 +y 92 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):H_tweak.B" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 495 +y 24 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):OperAck" +pressValue "1" +releaseValue +onLabel "Erase" +offLabel "Erase" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 299 +y 203 +w 120 +h 28 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):stopMotors" +pressValue "1" +releaseValue +onLabel "Stop Motors" +offLabel "Stop Motors" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 335 +y 62 +w 50 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)orient$(O):Busy" +indicatorPv "$(P)orient$(O):Busy" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 333 +y 97 +w 55 +h 14 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)orient$(O):motPut_Auto" +indicatorPv "$(P)orient$(O):motPut_Auto" +font "helvetica-bold-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 333 +y 111 +w 55 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):motPut" +pressValue "1" +releaseValue +onLabel "Move" +offLabel "Move" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 333 +y 154 +w 55 +h 14 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)orient$(O):motGet_Auto" +indicatorPv "$(P)orient$(O):motGet_Auto" +font "helvetica-bold-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 333 +y 168 +w 55 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):motGet" +pressValue "1" +releaseValue +onLabel "Read" +offLabel "Read" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 181 +y 77 +w 120 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)orient$(O):Mode" +indicatorPv "$(P)orient$(O):Mode" +font "helvetica-medium-r-12.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/orient_slave.edl b/opticsApp/op/edl/autoconvert/orient_slave.edl new file mode 100644 index 0000000..17c0630 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/orient_slave.edl @@ -0,0 +1,908 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 82 +y 81 +w 260 +h 245 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 1 +w 246 +h 16 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 3 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 21 +w 246 +h -1 +lineColor rgb 2560 0 47104 +fill +fillColor rgb 2560 0 47104 +lineWidth 3 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 250 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)orient$(O)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 132 +y 64 +w 115 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "CONSTRAINT:" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 164 +y 99 +w 80 +h 20 +controlPv "$(P)orient$(O):TTH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 164 +y 122 +w 80 +h 20 +controlPv "$(P)orient$(O):TH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 164 +y 145 +w 80 +h 20 +controlPv "$(P)orient$(O):CHI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 164 +y 168 +w 80 +h 20 +controlPv "$(P)orient$(O):PHI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 162 +y 98 +w 83 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):TTH_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 125 +y 100 +w 42 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TTH" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 130 +y 123 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TH" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 127 +y 146 +w 39 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "CHI" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 127 +y 169 +w 38 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PHI" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 162 +y 122 +w 83 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):TH_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 162 +y 144 +w 83 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):CHI_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 162 +y 167 +w 83 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):PHI_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 26 +y 46 +w 80 +h 14 +controlPv "$(P)orient$(O):H_RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 180 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "L" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 179 +w 80 +h 20 +controlPv "$(P)orient$(O):L" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 178 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):L_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 26 +y 163 +w 80 +h 14 +controlPv "$(P)orient$(O):L_RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 120 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "K" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 119 +w 80 +h 20 +controlPv "$(P)orient$(O):K" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 118 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):K_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 26 +y 103 +w 80 +h 14 +controlPv "$(P)orient$(O):K_RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 61 +w 80 +h 20 +controlPv "$(P)orient$(O):H" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 62 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "H" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 60 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):H_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 45 +y 83 +w 40 +h 18 +controlPv "$(P)orient$(O):H_tweak.C" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 45 +y 201 +w 40 +h 18 +controlPv "$(P)orient$(O):L_tweak.C" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 45 +y 141 +w 40 +h 18 +controlPv "$(P)orient$(O):K_tweak.C" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 132 +y 75 +w 115 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)orient$(O):Mode" +indicatorPv "$(P)orient$(O):Mode" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 220 +y 223 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "More" +numPvs 2 +numDsps 1 +displayFileName { + 0 orient_slave_full.edl +} +menuLabel { + 0 Everything +} +symbols { + 0 "P=$(P),O=$(O)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 81 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):H_tweak.A" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 25 +y 81 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):H_tweak.B" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 199 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):L_tweak.A" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 25 +y 199 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):L_tweak.B" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 139 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):K_tweak.A" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 25 +y 139 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):K_tweak.B" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/orient_slave_full.edl b/opticsApp/op/edl/autoconvert/orient_slave_full.edl new file mode 100644 index 0000000..85e0378 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/orient_slave_full.edl @@ -0,0 +1,3418 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 204 +y 233 +w 550 +h 565 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 13 +y 458 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "a" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 13 +y 478 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "b" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 28 +y 457 +w 50 +h 20 +controlPv "$(P)orient$(O):a" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 28 +y 477 +w 50 +h 20 +controlPv "$(P)orient$(O):b" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 13 +y 418 +w 190 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Lattice parameters" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 13 +y 498 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "c" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 28 +y 497 +w 50 +h 20 +controlPv "$(P)orient$(O):c" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 283 +y 436 +w 240 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "A0" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 60 +y 434 +w 165 +h 18 +controlPv "$(P)orient$(O):XTAL" +format "string" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 285 +y 537 +w 49 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "debug" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 310 +y 451 +w 214 +h 64 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 3 +visPv "CALC\\\{(A#1)\}($(P)orient$(O):A0_state)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 100 +y 458 +w 50 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "alpha" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 100 +y 478 +w 50 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "beta" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 100 +y 498 +w 60 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "gamma" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 78 +y 460 +w 25 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "A" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 80 +y 455 +w 13 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "o" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 78 +y 480 +w 25 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "A" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 80 +y 475 +w 13 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "o" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 78 +y 500 +w 25 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "A" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 80 +y 495 +w 13 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "o" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 1 +w 546 +h 16 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 3 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 21 +w 546 +h -1 +lineColor rgb 2560 0 47104 +fill +fillColor rgb 2560 0 47104 +lineWidth 3 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 550 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Diffractometer $(P)orient$(O)" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 71 +y 259 +w 404 +h 22 +lineColor rgb 13056 39168 0 +fillColor rgb 13056 39168 0 +lineWidth 2 +visPv "CALC\\\{(A||B)\}($(P)orient$(O):refGet1, $(P)orient$(O):refPut1)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 71 +y 285 +w 404 +h 22 +lineColor rgb 13056 39168 0 +fillColor rgb 13056 39168 0 +lineWidth 2 +visPv "CALC\\\{(A||B)\}($(P)orient$(O):refGet2, $(P)orient$(O):refPut2)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 174 +y 243 +w 75 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TTH" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 249 +y 243 +w 75 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TH" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 324 +y 243 +w 75 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "CHI" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 399 +y 243 +w 75 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PHI" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 174 +y 260 +w 75 +h 20 +controlPv "$(P)orient$(O):TTH1" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 249 +y 260 +w 75 +h 20 +controlPv "$(P)orient$(O):TH1" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 324 +y 260 +w 75 +h 20 +controlPv "$(P)orient$(O):CHI1" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 399 +y 260 +w 75 +h 20 +controlPv "$(P)orient$(O):PHI1" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 157 +y 262 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "=" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 158 +y 259 +w 21 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "^" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 174 +y 286 +w 75 +h 20 +controlPv "$(P)orient$(O):TTH2" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 249 +y 286 +w 75 +h 20 +controlPv "$(P)orient$(O):TH2" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 324 +y 286 +w 75 +h 20 +controlPv "$(P)orient$(O):CHI2" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 399 +y 286 +w 75 +h 20 +controlPv "$(P)orient$(O):PHI2" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 157 +y 288 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "=" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 158 +y 285 +w 21 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "^" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 132 +y 260 +w 30 +h 20 +controlPv "$(P)orient$(O):L1" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 132 +y 243 +w 30 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "L" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 132 +y 286 +w 30 +h 20 +controlPv "$(P)orient$(O):L2" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 102 +y 243 +w 30 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "K" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 102 +y 260 +w 30 +h 20 +controlPv "$(P)orient$(O):K1" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 102 +y 286 +w 30 +h 20 +controlPv "$(P)orient$(O):K2" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 72 +y 243 +w 30 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "H" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 72 +y 260 +w 30 +h 20 +controlPv "$(P)orient$(O):H1" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 72 +y 286 +w 30 +h 20 +controlPv "$(P)orient$(O):H2" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 167 +y 229 +w 20 +h 20 +lineColor rgb 13056 39168 0 +fill +fillColor rgb 13056 39168 0 +lineWidth 4 +closePolygon +numPoints 4 { +xPoints { +0 176 +1 187 +2 167 +3 176 +} +yPoints { +0 249 +1 229 +2 229 +3 249 +} +visPv "CALC\\\{(A||B)\}($(P)orient$(O):refGet1, $(P)orient$(O):refGet2)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 157 +y 229 +w 20 +h 20 +lineColor rgb 13056 39168 0 +fill +fillColor rgb 13056 39168 0 +lineWidth 4 +closePolygon +numPoints 4 { +xPoints { +0 166 +1 177 +2 157 +3 166 +} +yPoints { +0 229 +1 249 +2 249 +3 229 +} +visPv "CALC\\\{(A||B)\}($(P)orient$(O):refPut1, $(P)orient$(O):refPut2)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 306 +y 333 +w 214 +h 64 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 3 +visPv "CALC\\\{(A#1)\}($(P)orient$(O):OMTX_state)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 279 +y 318 +w 240 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "OM" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 26 +y 57 +w 80 +h 14 +controlPv "$(P)orient$(O):H_RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 191 +w 22 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "L" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 190 +w 80 +h 20 +controlPv "$(P)orient$(O):L" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 189 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):L_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 45 +y 212 +w 40 +h 18 +controlPv "$(P)orient$(O):L_tweak.C" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 26 +y 174 +w 80 +h 14 +controlPv "$(P)orient$(O):L_RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 131 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "K" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 130 +w 80 +h 20 +controlPv "$(P)orient$(O):K" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 129 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):K_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 45 +y 152 +w 40 +h 18 +controlPv "$(P)orient$(O):K_tweak.C" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 26 +y 114 +w 80 +h 14 +controlPv "$(P)orient$(O):K_RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 45 +y 94 +w 40 +h 18 +controlPv "$(P)orient$(O):H_tweak.C" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 72 +w 80 +h 20 +controlPv "$(P)orient$(O):H" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 73 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "H" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 71 +w 82 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):H_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 258 +w 55 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PRIMARY" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 268 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "REFLECTION" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 286 +w 62 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "SECONDARY" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 296 +w 60 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "REFLECTION" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 116 +y 362 +w 65 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "errAngle:" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 182 +y 362 +w 90 +h 14 +controlPv "$(P)orient$(O):errAngle" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 118 +y 380 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "maxErr:" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 182 +y 378 +w 90 +h 20 +controlPv "$(P)orient$(O):errAngleThresh" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 11 +y 23 +w 482 +h 19 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 3 +visPv "CALC\\\{(A)\}($(P)orient$(O):Alert)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 15 +y 27 +w 475 +h 14 +controlPv "$(P)orient$(O):Msg" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 379 +y 336 +w 70 +h 20 +controlPv "$(P)orient$(O):OMTX_12" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 379 +y 356 +w 70 +h 20 +controlPv "$(P)orient$(O):OMTX_22" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 379 +y 376 +w 70 +h 20 +controlPv "$(P)orient$(O):OMTX_32" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 449 +y 336 +w 70 +h 20 +controlPv "$(P)orient$(O):OMTX_13" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 449 +y 356 +w 70 +h 20 +controlPv "$(P)orient$(O):OMTX_23" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 449 +y 376 +w 70 +h 20 +controlPv "$(P)orient$(O):OMTX_33" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 309 +y 336 +w 70 +h 20 +controlPv "$(P)orient$(O):OMTX_11" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 309 +y 356 +w 70 +h 20 +controlPv "$(P)orient$(O):OMTX_21" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 309 +y 376 +w 70 +h 20 +controlPv "$(P)orient$(O):OMTX_31" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 313 +y 454 +w 70 +h 20 +controlPv "$(P)orient$(O):A0_11" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 313 +y 474 +w 70 +h 20 +controlPv "$(P)orient$(O):A0_21" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 313 +y 494 +w 70 +h 20 +controlPv "$(P)orient$(O):A0_31" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 383 +y 454 +w 70 +h 20 +controlPv "$(P)orient$(O):A0_12" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 383 +y 474 +w 70 +h 20 +controlPv "$(P)orient$(O):A0_22" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 383 +y 494 +w 70 +h 20 +controlPv "$(P)orient$(O):A0_32" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 453 +y 454 +w 70 +h 20 +controlPv "$(P)orient$(O):A0_13" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 453 +y 474 +w 70 +h 20 +controlPv "$(P)orient$(O):A0_23" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 453 +y 494 +w 70 +h 20 +controlPv "$(P)orient$(O):A0_33" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 228 +y 457 +w 13 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "o" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 228 +y 478 +w 13 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "o" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 228 +y 498 +w 13 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "o" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 155 +y 457 +w 70 +h 20 +controlPv "$(P)orient$(O):alpha" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 155 +y 477 +w 70 +h 20 +controlPv "$(P)orient$(O):beta" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 155 +y 497 +w 70 +h 20 +controlPv "$(P)orient$(O):gamma" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 246 +y 482 +w 31 +h 6 +lineColor rgb 13056 39168 0 +fillColor rgb 13056 39168 0 +lineWidth 6 +numPoints 2 { +xPoints { +0 274 +1 249 +} +yPoints { +0 485 +1 485 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 273 +y 475 +w 20 +h 20 +lineColor rgb 13056 39168 0 +fill +fillColor rgb 13056 39168 0 +closePolygon +numPoints 5 { +xPoints { +0 273 +1 293 +2 273 +3 273 +4 273 +} +yPoints { +0 475 +1 485 +2 494 +3 495 +4 475 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 245 +y 461 +w 48 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "AUTO" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 9 +y 522 +w 83 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Wavelength:" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 94 +y 521 +w 70 +h 20 +controlPv "$(P)orient$(O):lambda" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 165 +y 523 +w 25 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "A" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 167 +y 518 +w 13 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "o" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 13 +y 542 +w 75 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Energy:" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 94 +y 541 +w 70 +h 20 +controlPv "$(P)orient$(O):energy" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 165 +y 543 +w 40 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "keV" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 181 +y 66 +w 120 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "HKL/ANGLE CONSTRAINT:" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 213 +y 129 +w 80 +h 20 +controlPv "$(P)orient$(O):TH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 213 +y 152 +w 80 +h 20 +controlPv "$(P)orient$(O):CHI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 213 +y 175 +w 80 +h 20 +controlPv "$(P)orient$(O):PHI" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 180 +y 130 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TH" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 180 +y 153 +w 39 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "CHI" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 180 +y 176 +w 38 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PHI" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 211 +y 129 +w 83 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):TH_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 211 +y 151 +w 83 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):CHI_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 211 +y 174 +w 83 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):PHI_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 213 +y 106 +w 80 +h 20 +controlPv "$(P)orient$(O):TTH" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 211 +y 105 +w 83 +h 22 +lineColor rgb 7680 47872 0 +fillColor rgb 7680 47872 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)orient$(O):TTH_busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 180 +y 107 +w 42 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "TTH" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 131 +y 138 +w 21 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "OM" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 132 +y 149 +w 19 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "A0" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 133 +y 136 +w 18 +h 23 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 152 +y 140 +w 17 +h 17 +lineColor rgb 13056 39168 0 +fill +fillColor rgb 13056 39168 0 +closePolygon +numPoints 5 { +xPoints { +0 152 +1 169 +2 152 +3 152 +4 152 +} +yPoints { +0 140 +1 147 +2 155 +3 157 +4 140 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 115 +y 140 +w 17 +h 17 +lineColor rgb 13056 39168 0 +fill +fillColor rgb 13056 39168 0 +closePolygon +numPoints 5 { +xPoints { +0 132 +1 115 +2 132 +3 132 +4 132 +} +yPoints { +0 140 +1 147 +2 155 +3 157 +4 140 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 119 +y 117 +w 48 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "AUTO" +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 13 +y 434 +w 45 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "XTALS" +numPvs 2 +numDsps 1 +displayFileName { + 0 orient_XTALs.edl +} +menuLabel { + 0 crystals +} +symbols { + 0 "P=$(P),O=$(O)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 330 +y 533 +w 60 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)orient$(O):Debug" +indicatorPv "$(P)orient$(O):Debug" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 499 +y 544 +w 50 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Less" +numPvs 2 +numDsps 1 +displayFileName { + 0 orient_slave.edl +} +menuLabel { + 0 HKL, Angles, etc. +} +symbols { + 0 "P=$(P),O=$(O)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 478 +y 260 +w 30 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):refGet1" +pressValue "1" +releaseValue +onLabel "Get" +offLabel "Get" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 509 +y 260 +w 30 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):refPut1" +pressValue "1" +releaseValue +onLabel "Put" +offLabel "Put" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 478 +y 285 +w 30 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):refGet2" +pressValue "1" +releaseValue +onLabel "Get" +offLabel "Get" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 509 +y 285 +w 30 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):refPut2" +pressValue "1" +releaseValue +onLabel "Put" +offLabel "Put" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 182 +y 340 +w 90 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):OMTX_Calc" +pressValue "1" +releaseValue +onLabel "Calc OMTX" +offLabel "Calc OMTX" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 210 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):L_tweak.A" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 25 +y 210 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):L_tweak.B" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 150 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):K_tweak.A" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 25 +y 150 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):K_tweak.B" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 92 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):H_tweak.A" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 25 +y 92 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):H_tweak.B" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 495 +y 24 +w 45 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)orient$(O):OperAck" +pressValue "1" +releaseValue +onLabel "Erase" +offLabel "Erase" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 181 +y 77 +w 120 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)orient$(O):Mode" +indicatorPv "$(P)orient$(O):Mode" +font "helvetica-medium-r-12.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/pf4.edl b/opticsApp/op/edl/autoconvert/pf4.edl new file mode 100644 index 0000000..4a7b4d3 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/pf4.edl @@ -0,0 +1,205 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 1194 +y 346 +w 325 +h 215 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 324 +h 24 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 4 +y 3 +w 320 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PF4 dual filter" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 22 +w 326 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 324 +} +yPoints { +0 23 +1 23 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 25 +w 305 +h 189 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 5 +y 25 +w 305 +h 189 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "pf4_bare.edl;" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "pf4_bare.edl;" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 273 +y 194 +w 50 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "more" +numPvs 2 +numDsps 1 +displayFileName { + 0 pf4more.edl +} +menuLabel { + 0 PF4 mono filter computed controls +} +symbols { + 0 "P=$(P),H=$(H),A=$(A),B=$(B),MONO=$(MONO),B1=$(B1),B2=$(B2),B3=$(B3),B4=$(B4),B5=$(B5),B6=$(B6),B7=$(B7),B8=$(B8)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 273 +y 174 +w 50 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "+config" +numPvs 2 +numDsps 1 +displayFileName { + 0 pf4config.edl +} +menuLabel { + 0 all +} +symbols { + 0 "P=$(P),H=$(H),A=$(A),B=$(B),MONO=$(MONO),B1=$(B1),B2=$(B2),B3=$(B3),B4=$(B4),B5=$(B5),B6=$(B6),B7=$(B7),B8=$(B8)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/pf4Bank.edl b/opticsApp/op/edl/autoconvert/pf4Bank.edl new file mode 100644 index 0000000..88b7958 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/pf4Bank.edl @@ -0,0 +1,229 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 1194 +y 346 +w 135 +h 175 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 134 +h 24 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 130 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PF4 filter" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 22 +w 134 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 132 +} +yPoints { +0 23 +1 23 +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 5 +y 135 +w 125 +h 20 +controlPv "$(P)$(H)trans$(A)" +format "exponential" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 25 +w 125 +h 130 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 5 +y 25 +w 125 +h 130 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "pf4Bank_bare.edl;P=$(P),H=$(H),B=$(B)" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "pf4Bank_bare.edl;P=$(P),H=$(H),B=$(B)" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 155 +w 50 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "more" +numPvs 2 +numDsps 1 +displayFileName { + 0 pf4Bankmore.edl +} +menuLabel { + 0 PF4 mono filter computed controls +} +symbols { + 0 "P=$(P),H=$(H),B=$(B)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 30 +y 155 +w 55 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "+config" +numPvs 2 +numDsps 1 +displayFileName { + 0 pf4Bankconfig.edl +} +menuLabel { + 0 all +} +symbols { + 0 "P=$(P),H=$(H),B=$(B)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/pf4Bank_bare.edl b/opticsApp/op/edl/autoconvert/pf4Bank_bare.edl new file mode 100644 index 0000000..f7bbc88 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/pf4Bank_bare.edl @@ -0,0 +1,560 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 1039 +y 692 +w 125 +h 135 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 89 +y 22 +w 33 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "BEAM" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 0 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(P)$(H)$(B)" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 20 +w 123 +h 88 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 110 +w 125 +h 20 +controlPv "$(P)$(H)trans$(B)" +format "exponential" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 4 +y 32 +w 119 +h 2 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 122 +1 5 +} +yPoints { +0 33 +1 33 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 3 +y 26 +w 13 +h 13 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 3 { +xPoints { +0 15 +1 4 +2 15 +} +yPoints { +0 27 +1 33 +2 38 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 7 +y 37 +w 20 +h 46 +lineColor rgb 10752 25344 58368 +fill +fillColor rgb 10752 25344 58368 +lineWidth 2 +closePolygon +numPoints 5 { +xPoints { +0 7 +1 27 +2 27 +3 7 +4 7 +} +yPoints { +0 70 +1 83 +2 45 +3 37 +4 70 +} +visPv "CALC\\\{(A)\}($(P)$(H)displayBit4$(B))" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 37 +y 37 +w 20 +h 46 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 2 +closePolygon +numPoints 5 { +xPoints { +0 37 +1 57 +2 57 +3 37 +4 37 +} +yPoints { +0 70 +1 83 +2 45 +3 37 +4 70 +} +visPv "CALC\\\{(A)\}($(P)$(H)displayBit3$(B))" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 97 +y 37 +w 20 +h 46 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 2 +closePolygon +numPoints 5 { +xPoints { +0 97 +1 117 +2 117 +3 97 +4 97 +} +yPoints { +0 70 +1 83 +2 45 +3 37 +4 70 +} +visPv "CALC\\\{(A)\}($(P)$(H)displayBit1$(B))" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 67 +y 37 +w 20 +h 46 +lineColor rgb 29440 57088 65280 +fill +fillColor rgb 29440 57088 65280 +lineWidth 2 +closePolygon +numPoints 5 { +xPoints { +0 67 +1 87 +2 87 +3 67 +4 67 +} +yPoints { +0 70 +1 83 +2 45 +3 37 +4 70 +} +visPv "CALC\\\{(A)\}($(P)$(H)displayBit2$(B))" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 97 +y 37 +w 21 +h 47 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +closePolygon +numPoints 5 { +xPoints { +0 98 +1 117 +2 117 +3 98 +4 98 +} +yPoints { +0 70 +1 83 +2 46 +3 38 +4 70 +} +visPv "CALC\\\{(A)\}($(P)$(H)displayBit1$(B))" +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 67 +y 37 +w 21 +h 47 +lineColor rgb 29440 57088 65280 +fillColor rgb 29440 57088 65280 +lineWidth 2 +closePolygon +numPoints 5 { +xPoints { +0 68 +1 87 +2 87 +3 68 +4 68 +} +yPoints { +0 70 +1 83 +2 46 +3 38 +4 70 +} +visPv "CALC\\\{(A)\}($(P)$(H)displayBit2$(B))" +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 36 +y 36 +w 22 +h 48 +lineColor rgb 19968 42240 63744 +fillColor rgb 19968 42240 63744 +lineWidth 2 +closePolygon +numPoints 5 { +xPoints { +0 37 +1 57 +2 57 +3 37 +4 37 +} +yPoints { +0 70 +1 83 +2 45 +3 37 +4 70 +} +visPv "CALC\\\{(A)\}($(P)$(H)displayBit3$(B))" +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 7 +y 37 +w 21 +h 47 +lineColor rgb 10752 25344 58368 +fillColor rgb 10752 25344 58368 +lineWidth 2 +closePolygon +numPoints 5 { +xPoints { +0 8 +1 27 +2 27 +3 8 +4 8 +} +yPoints { +0 70 +1 83 +2 46 +3 38 +4 70 +} +visPv "CALC\\\{(A)\}($(P)$(H)displayBit4$(B))" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 105 +y 80 +w 17 +h 12 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "1" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 75 +y 80 +w 17 +h 12 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "2" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 45 +y 80 +w 17 +h 12 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "3" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 15 +y 80 +w 17 +h 12 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "4" +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 65 +y 90 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)ftweak$(B).A" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 90 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)ftweak$(B).B" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/pf4Bankconfig.edl b/opticsApp/op/edl/autoconvert/pf4Bankconfig.edl new file mode 100644 index 0000000..ae58362 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/pf4Bankconfig.edl @@ -0,0 +1,272 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 6 +y 540 +w 225 +h 445 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 224 +h 24 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 4 +y 3 +w 220 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PF4 filter" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 22 +w 225 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 223 +} +yPoints { +0 23 +1 23 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 25 +w 125 +h 130 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 50 +y 25 +w 125 +h 130 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "pf4Bank_bare.edl;P=$(P),H=$(H),B=$(B)" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "pf4Bank_bare.edl;P=$(P),H=$(H),B=$(B)" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 188 +w 225 +h 249 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 0 +y 188 +w 225 +h 249 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "pf4Bankconfig_bare.edl;P=$(P),H=$(H),B=$(B)" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "pf4Bankconfig_bare.edl;P=$(P),H=$(H),B=$(B)" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 175 +w 225 +h 3 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 223 +} +yPoints { +0 176 +1 176 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 115 +y 155 +w 50 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "more" +numPvs 2 +numDsps 1 +displayFileName { + 0 pf4Bankmore.edl +} +menuLabel { + 0 PF4 mono filter computed controls +} +symbols { + 0 "P=$(P),H=$(H),B=$(B)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 60 +y 155 +w 55 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "-config" +numPvs 2 +numDsps 1 +displayFileName { + 0 pf4Bank.edl +} +menuLabel { + 0 all +} +symbols { + 0 "P=$(P),H=$(H),B=$(B)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/pf4Bankconfig_bare.edl b/opticsApp/op/edl/autoconvert/pf4Bankconfig_bare.edl new file mode 100644 index 0000000..4e7e9b7 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/pf4Bankconfig_bare.edl @@ -0,0 +1,924 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 950 +y 581 +w 225 +h 250 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 220 +w 195 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Be B C Al Si Ti Cr Mn Fe Co Ni" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 190 +w 215 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Choices for filter material" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 108 +y 26 +w 90 +h 25 +controlPv "$(P)$(H)E:local" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 200 +y 30 +w 36 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "keV" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 62 +y 30 +w 44 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "using" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 52 +y 1 +w 54 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Energy" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 108 +y 0 +w 90 +h 20 +controlPv "$(P)$(H)displayEnergy" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 200 +y 1 +w 36 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "keV" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 77 +y 65 +w 65 +h 19 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(H)bank$(B))" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 77 +y 65 +w 65 +h 19 +lineColor rgb 11520 32512 0 +fill +fillColor rgb 11520 32512 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(H)bank$(B))" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 80 +y 68 +w 60 +h 14 +controlPv "$(P)$(H)bank$(B)" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 15 +y 91 +w 40 +h 14 +controlPv "$(P)$(H)f4$(B).EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 15 +y 125 +w 40 +h 20 +controlPv "$(P)$(H)f3$(B)" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 15 +y 105 +w 40 +h 20 +controlPv "$(P)$(H)f4$(B)" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 15 +y 145 +w 40 +h 20 +controlPv "$(P)$(H)f2$(B)" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 15 +y 165 +w 40 +h 20 +controlPv "$(P)$(H)f1$(B)" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 165 +w 50 +h 22 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 110 +y 165 +w 50 +h 22 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "pf4_other_bare.edl;P=$(P),H=$(H),N=1,B=B" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "pf4_other_bare.edl;P=$(P),H=$(H),N=1,B=B" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 145 +w 50 +h 22 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 110 +y 145 +w 50 +h 22 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "pf4_other_bare.edl;P=$(P),H=$(H),N=2,B=B" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "pf4_other_bare.edl;P=$(P),H=$(H),N=2,B=B" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 125 +w 50 +h 22 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 110 +y 125 +w 50 +h 22 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "pf4_other_bare.edl;P=$(P),H=$(H),N=3,B=B" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "pf4_other_bare.edl;P=$(P),H=$(H),N=3,B=B" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 105 +w 40 +h 20 +controlPv "$(P)$(H)Other4B" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 150 +y 107 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "X" +} +visPv "CALC\\\{(A)\}($(P)$(H)OtherLegal4B)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 168 +y 78 +w 49 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "debug" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x -12 +y 107 +w 22 +h 18 +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "4" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x -12 +y 127 +w 22 +h 18 +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "3" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x -12 +y 147 +w 22 +h 18 +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "2" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x -12 +y 167 +w 22 +h 18 +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "1" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 55 +w 225 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 1 +1 224 +} +yPoints { +0 56 +1 56 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 205 +w 215 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "'Other':" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 235 +w 220 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Cu Zn Ge Mo Ag Sn Ta W Pt Au Pb" +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 7 +w 55 +h 36 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)useMono" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 49 +y 64 +w 30 +h 20 +fgColor rgb 65280 65280 65280 +onColor rgb 48640 6400 2816 +offColor rgb 48640 6400 2816 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)bank$(B)" +pressValue +releaseValue "0" +onLabel "off" +offLabel "off" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 22 +y 64 +w 30 +h 20 +fgColor rgb 0 0 0 +onColor rgb 0 55296 0 +offColor rgb 0 55296 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)bank$(B)" +pressValue +releaseValue "3" +onLabel "on" +offLabel "on" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 55 +y 104 +w 54 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(H)Z4$(B)" +indicatorPv "$(P)$(H)Z4$(B)" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 55 +y 124 +w 54 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(H)Z3$(B)" +indicatorPv "$(P)$(H)Z3$(B)" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 55 +y 144 +w 54 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(H)Z2$(B)" +indicatorPv "$(P)$(H)Z2$(B)" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 55 +y 164 +w 54 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(H)Z1$(B)" +indicatorPv "$(P)$(H)Z1$(B)" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 179 +y 93 +w 40 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(H)debug$(B)" +indicatorPv "$(P)$(H)debug$(B)" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 89 +w 40 +h 16 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "mu" +numPvs 2 +numDsps 1 +displayFileName { + 0 pf4_otherHelp.edl +} +menuLabel { + 0 all +} +symbols { + 0 "P=$(P),H=$(H),B=$(B)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/pf4Bankmore.edl b/opticsApp/op/edl/autoconvert/pf4Bankmore.edl new file mode 100644 index 0000000..c74f495 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/pf4Bankmore.edl @@ -0,0 +1,1090 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 862 +y 500 +w 140 +h 535 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 139 +h 24 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 180 +w 141 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 1 +1 140 +} +yPoints { +0 181 +1 181 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 135 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PF4 filter" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 22 +w 142 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 140 +} +yPoints { +0 23 +1 23 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 25 +w 125 +h 130 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 5 +y 25 +w 125 +h 130 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "pf4Bank_bare.edl;" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "pf4Bank_bare.edl;" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 6 +y 185 +w 63 +h 345 +lineColor rgb 13312 13056 34304 +fill +fillColor rgb 13312 13056 34304 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(H)fPos$(B))" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 6 +y 185 +w 63 +h 345 +lineColor rgb 7680 47872 0 +fill +fillColor rgb 7680 47872 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(H)fPos$(B))" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 6 +y 185 +w 63 +h 345 +lineColor rgb 56832 4864 2304 +fill +fillColor rgb 56832 4864 2304 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(H)bank$(B))" +visMin 0 +visMax 1 +endObjectProperties + +# (Byte) +object ByteClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 189 +w 10 +h 336 +controlPv "$(P)$(H)bitFlag$(B)" +lineColor rgb 0 0 0 +onColor rgb 35584 6656 38400 +offColor rgb 55808 55808 55808 +endian "little" +numBits 16 +shift 0 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 254 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).THST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 233 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).TWST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 212 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).ONST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 191 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).ZRST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 276 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).FRST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 297 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).FVST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 318 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).SXST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 339 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).SVST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 360 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).EIST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 381 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).NIST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 402 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).TEST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 423 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).ELST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 444 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).TVST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 465 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).TTST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 486 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).FTST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 507 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).FFST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 30 +y 155 +w 55 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "config" +numPvs 2 +numDsps 1 +displayFileName { + 0 pf4Bankconfig.edl +} +menuLabel { + 0 all +} +symbols { + 0 "P=$(P),H=$(H),B=$(B)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 155 +w 50 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "less" +numPvs 2 +numDsps 1 +displayFileName { + 0 pf4Bank.edl +} +menuLabel { + 0 PF4 mono filter computed controls +} +symbols { + 0 "P=$(P),H=$(H),B=$(B)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 191 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "0" +onLabel "B 0" +offLabel "B 0" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 212 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "1" +onLabel "B 1" +offLabel "B 1" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 233 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "2" +onLabel "B 2" +offLabel "B 2" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 254 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "3" +onLabel "B 3" +offLabel "B 3" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 276 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "4" +onLabel "B 4" +offLabel "B 4" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 297 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "5" +onLabel "B 5" +offLabel "B 5" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 318 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "6" +onLabel "B 6" +offLabel "B 6" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 339 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "7" +onLabel "B 7" +offLabel "B 7" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 360 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "8" +onLabel "B 8" +offLabel "B 8" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 381 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "9" +onLabel "B 9" +offLabel "B 9" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 402 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "10" +onLabel "B 10" +offLabel "B 10" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 423 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "11" +onLabel "B 11" +offLabel "B 11" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 444 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "12" +onLabel "B 12" +offLabel "B 12" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 465 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "13" +onLabel "B 13" +offLabel "B 13" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 486 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "14" +onLabel "B 14" +offLabel "B 14" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 507 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "15" +onLabel "B 15" +offLabel "B 15" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/pf4_bare.edl b/opticsApp/op/edl/autoconvert/pf4_bare.edl new file mode 100644 index 0000000..1eb6300 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/pf4_bare.edl @@ -0,0 +1,1178 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 1033 +y 570 +w 320 +h 190 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 20 +y 20 +w 123 +h 88 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 259 +y 22 +w 33 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "BEAM" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 180 +y 0 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Bank A" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 25 +y 0 +w 100 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Bank B" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 171 +y 20 +w 123 +h 88 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 170 +y 111 +w 125 +h 20 +controlPv "$(P)$(H)trans$(A)" +format "exponential" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 19 +y 111 +w 125 +h 20 +controlPv "$(P)$(H)trans$(B)" +format "exponential" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 12 +y 170 +w 30 +h 12 +controlPv "$(P)$(H)filterAl" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "right" +fgColor rgb 2560 0 47104 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 44 +y 170 +w 50 +h 12 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "mm Al" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 123 +y 170 +w 50 +h 12 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "mm Ti" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 91 +y 170 +w 30 +h 12 +controlPv "$(P)$(H)filterTi" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "right" +fgColor rgb 2560 0 47104 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 99 +y 137 +w 125 +h 20 +controlPv "$(P)$(H)trans" +format "exponential" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 205 +y 170 +w 55 +h 12 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "mm Glass" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 173 +y 170 +w 30 +h 12 +controlPv "$(P)$(H)filterGlass" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "right" +fgColor rgb 2560 0 47104 +bgColor rgb 60416 60416 60416 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 27 +y 32 +w 273 +h 2 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 299 +1 28 +} +yPoints { +0 33 +1 33 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 23 +y 26 +w 13 +h 13 +lineColor rgb 64768 0 0 +fillColor rgb 64768 0 0 +lineWidth 2 +numPoints 3 { +xPoints { +0 35 +1 24 +2 35 +} +yPoints { +0 27 +1 33 +2 38 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 26 +y 37 +w 20 +h 46 +lineColor rgb 35584 6656 38400 +fill +fillColor rgb 35584 6656 38400 +lineWidth 2 +closePolygon +numPoints 5 { +xPoints { +0 26 +1 46 +2 46 +3 26 +4 26 +} +yPoints { +0 70 +1 83 +2 45 +3 37 +4 70 +} +visPv "CALC\\\{(A)\}($(P)$(H)displayBit4$(B))" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 56 +y 37 +w 20 +h 46 +lineColor rgb 44544 19968 48128 +fill +fillColor rgb 44544 19968 48128 +lineWidth 2 +closePolygon +numPoints 5 { +xPoints { +0 56 +1 76 +2 76 +3 56 +4 56 +} +yPoints { +0 70 +1 83 +2 45 +3 37 +4 70 +} +visPv "CALC\\\{(A)\}($(P)$(H)displayBit3$(B))" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 86 +y 37 +w 20 +h 46 +lineColor rgb 54784 32512 57856 +fill +fillColor rgb 54784 32512 57856 +lineWidth 2 +closePolygon +numPoints 5 { +xPoints { +0 86 +1 106 +2 106 +3 86 +4 86 +} +yPoints { +0 70 +1 83 +2 45 +3 37 +4 70 +} +visPv "CALC\\\{(A)\}($(P)$(H)displayBit2$(B))" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 116 +y 37 +w 20 +h 46 +lineColor rgb 65280 45056 65280 +fill +fillColor rgb 65280 45056 65280 +lineWidth 2 +closePolygon +numPoints 5 { +xPoints { +0 116 +1 136 +2 136 +3 116 +4 116 +} +yPoints { +0 70 +1 83 +2 45 +3 37 +4 70 +} +visPv "CALC\\\{(A)\}($(P)$(H)displayBit1$(B))" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 116 +y 37 +w 21 +h 47 +lineColor rgb 65280 45056 65280 +fillColor rgb 65280 45056 65280 +lineWidth 2 +closePolygon +numPoints 5 { +xPoints { +0 117 +1 136 +2 136 +3 117 +4 117 +} +yPoints { +0 70 +1 83 +2 46 +3 38 +4 70 +} +visPv "CALC\\\{(A)\}($(P)$(H)displayBit1$(B))" +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 86 +y 37 +w 21 +h 47 +lineColor rgb 54784 32512 57856 +fillColor rgb 54784 32512 57856 +lineWidth 2 +closePolygon +numPoints 5 { +xPoints { +0 87 +1 106 +2 106 +3 87 +4 87 +} +yPoints { +0 70 +1 83 +2 46 +3 38 +4 70 +} +visPv "CALC\\\{(A)\}($(P)$(H)displayBit2$(B))" +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 56 +y 37 +w 21 +h 47 +lineColor rgb 44544 19968 48128 +fillColor rgb 44544 19968 48128 +lineWidth 2 +closePolygon +numPoints 5 { +xPoints { +0 57 +1 76 +2 76 +3 57 +4 57 +} +yPoints { +0 70 +1 83 +2 46 +3 38 +4 70 +} +visPv "CALC\\\{(A)\}($(P)$(H)displayBit3$(B))" +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 26 +y 37 +w 21 +h 47 +lineColor rgb 35584 6656 38400 +fillColor rgb 35584 6656 38400 +lineWidth 2 +closePolygon +numPoints 5 { +xPoints { +0 27 +1 46 +2 46 +3 27 +4 27 +} +yPoints { +0 70 +1 83 +2 46 +3 38 +4 70 +} +visPv "CALC\\\{(A)\}($(P)$(H)displayBit4$(B))" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 124 +y 80 +w 17 +h 12 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "1" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 94 +y 80 +w 17 +h 12 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "2" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 64 +y 80 +w 17 +h 12 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "3" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 34 +y 80 +w 17 +h 12 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "4" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 177 +y 37 +w 20 +h 46 +lineColor rgb 10752 25344 58368 +fill +fillColor rgb 10752 25344 58368 +lineWidth 2 +closePolygon +numPoints 5 { +xPoints { +0 177 +1 197 +2 197 +3 177 +4 177 +} +yPoints { +0 70 +1 83 +2 45 +3 37 +4 70 +} +visPv "CALC\\\{(A)\}($(P)$(H)displayBit4$(A))" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 207 +y 37 +w 20 +h 46 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 2 +closePolygon +numPoints 5 { +xPoints { +0 207 +1 227 +2 227 +3 207 +4 207 +} +yPoints { +0 70 +1 83 +2 45 +3 37 +4 70 +} +visPv "CALC\\\{(A)\}($(P)$(H)displayBit3$(A))" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 267 +y 37 +w 20 +h 46 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 2 +closePolygon +numPoints 5 { +xPoints { +0 267 +1 287 +2 287 +3 267 +4 267 +} +yPoints { +0 70 +1 83 +2 45 +3 37 +4 70 +} +visPv "CALC\\\{(A)\}($(P)$(H)displayBit1$(A))" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 237 +y 37 +w 20 +h 46 +lineColor rgb 29440 57088 65280 +fill +fillColor rgb 29440 57088 65280 +lineWidth 2 +closePolygon +numPoints 5 { +xPoints { +0 237 +1 257 +2 257 +3 237 +4 237 +} +yPoints { +0 70 +1 83 +2 45 +3 37 +4 70 +} +visPv "CALC\\\{(A)\}($(P)$(H)displayBit2$(A))" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 267 +y 37 +w 21 +h 47 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +closePolygon +numPoints 5 { +xPoints { +0 268 +1 287 +2 287 +3 268 +4 268 +} +yPoints { +0 70 +1 83 +2 46 +3 38 +4 70 +} +visPv "CALC\\\{(A)\}($(P)$(H)displayBit1$(A))" +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 237 +y 37 +w 21 +h 47 +lineColor rgb 29440 57088 65280 +fillColor rgb 29440 57088 65280 +lineWidth 2 +closePolygon +numPoints 5 { +xPoints { +0 238 +1 257 +2 257 +3 238 +4 238 +} +yPoints { +0 70 +1 83 +2 46 +3 38 +4 70 +} +visPv "CALC\\\{(A)\}($(P)$(H)displayBit2$(A))" +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 206 +y 36 +w 22 +h 48 +lineColor rgb 19968 42240 63744 +fillColor rgb 19968 42240 63744 +lineWidth 2 +closePolygon +numPoints 5 { +xPoints { +0 207 +1 227 +2 227 +3 207 +4 207 +} +yPoints { +0 70 +1 83 +2 45 +3 37 +4 70 +} +visPv "CALC\\\{(A)\}($(P)$(H)displayBit3$(A))" +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 177 +y 37 +w 21 +h 47 +lineColor rgb 10752 25344 58368 +fillColor rgb 10752 25344 58368 +lineWidth 2 +closePolygon +numPoints 5 { +xPoints { +0 178 +1 197 +2 197 +3 178 +4 178 +} +yPoints { +0 70 +1 83 +2 46 +3 38 +4 70 +} +visPv "CALC\\\{(A)\}($(P)$(H)displayBit4$(A))" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 275 +y 80 +w 17 +h 12 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "1" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 245 +y 80 +w 17 +h 12 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "2" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 215 +y 80 +w 17 +h 12 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "3" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 185 +y 80 +w 17 +h 12 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "4" +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 235 +y 90 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)ftweak$(A).A" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 215 +y 90 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)ftweak$(A).B" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 82 +y 90 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)ftweak$(B).A" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 62 +y 90 +w 20 +h 15 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)ftweak$(B).B" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/pf4_otherHelp.edl b/opticsApp/op/edl/autoconvert/pf4_otherHelp.edl new file mode 100644 index 0000000..004b9fb --- /dev/null +++ b/opticsApp/op/edl/autoconvert/pf4_otherHelp.edl @@ -0,0 +1,200 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 1110 +y 324 +w 400 +h 313 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 10 +y 28 +w 50 +h 20 +controlPv "$(P)$(H)OtherShow" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (X-Y Graph) +object xyGraphClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 12 +y 73 +w 381 +h 224 +# Appearance +border +graphTitle "Mass attenuation coefficient (cm^2/g) vs. energy (keV)" +xLabel "Energy (keV)" +yLabel "Mu total" +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +gridColor rgb 0 0 0 +font "helvetica-medium-r-10.0" +# Operating Modes +plotMode "plotLastNPts" +nPts 0 +# X axis properties +showXAxis +xAxisSrc "AutoScale" +xLablePrecision 1 +# Y axis properties +showYAxis +yAxisSrc "AutoScale" +# Trace Properties +numTraces 1 +xPv { + 0 "$(P)$(H)E" +} +yPv { + 0 "$(P)$(H)T" +} +plotStyle { + 0 "line" +} +plotUpdateMode { + 0 "x" +} +plotSymbolType { + 0 "circle" +} +plotColor { + 0 rgb 0 0 0 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 113 +y 22 +w 233 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Be B C Al Si Ti Cr Mn Fe Co Ni Cu Zn" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 93 +y 7 +w 220 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Supported filter materials:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 113 +y 34 +w 220 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Ge Mo Ag Sn Ta W Pt Au Pb" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 5 +w 50 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Filter" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 6 +y 14 +w 59 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Material" +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/pf4_other_bare.edl b/opticsApp/op/edl/autoconvert/pf4_other_bare.edl new file mode 100644 index 0000000..d333416 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/pf4_other_bare.edl @@ -0,0 +1,74 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 230 +y 230 +w 50 +h 22 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 0 +w 40 +h 20 +controlPv "$(P)$(H)Other$(N)$(B)" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 40 +y 2 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "X" +} +visPv "CALC\\\{(A)\}($(P)$(H)OtherLegal$(N)$(B))" +visMin 0 +visMax 1 +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/pf4config.edl b/opticsApp/op/edl/autoconvert/pf4config.edl new file mode 100644 index 0000000..5ae2952 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/pf4config.edl @@ -0,0 +1,272 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 1139 +y 543 +w 325 +h 490 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 324 +h 24 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 4 +y 3 +w 320 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PF4 dual filter" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 22 +w 326 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 324 +} +yPoints { +0 23 +1 23 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 25 +w 288 +h 182 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 5 +y 25 +w 288 +h 182 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "pf4_bare.edl;" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "pf4_bare.edl;" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 223 +w 326 +h 264 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 0 +y 223 +w 326 +h 264 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "pf4config_bare.edl" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "pf4config_bare.edl" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 215 +w 327 +h 3 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 325 +} +yPoints { +0 216 +1 216 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 273 +y 194 +w 50 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "more" +numPvs 2 +numDsps 1 +displayFileName { + 0 pf4more.edl +} +menuLabel { + 0 PF4 mono filter computed controls +} +symbols { + 0 "P=$(P),H=$(H),A=$(A),B=$(B),MONO=$(MONO),B1=$(B1),B2=$(B2),B3=$(B3),B4=$(B4),B5=$(B5),B6=$(B6),B7=$(B7),B8=$(B8)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 273 +y 174 +w 50 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "-config" +numPvs 2 +numDsps 1 +displayFileName { + 0 pf4.edl +} +menuLabel { + 0 all +} +symbols { + 0 "P=$(P),H=$(H),A=$(A),B=$(B),MONO=$(MONO),B1=$(B1),B2=$(B2),B3=$(B3),B4=$(B4),B5=$(B5),B6=$(B6),B7=$(B7),B8=$(B8)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/pf4config_bare.edl b/opticsApp/op/edl/autoconvert/pf4config_bare.edl new file mode 100644 index 0000000..bd6c858 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/pf4config_bare.edl @@ -0,0 +1,1545 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 956 +y 530 +w 325 +h 265 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 30 +y 240 +w 233 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Be B C Al Si Ti Cr Mn Fe Co Ni Cu Zn" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 225 +w 220 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Choices for filter material 'Other':" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 139 +y 26 +w 108 +h 25 +controlPv "$(P)$(H)E:local" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 250 +y 30 +w 49 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "keV" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 93 +y 30 +w 44 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "using" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 83 +y 1 +w 54 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Energy" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 139 +y 0 +w 108 +h 20 +controlPv "$(P)$(H)displayEnergy" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 2560 0 47104 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 250 +y 1 +w 49 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "keV" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 30 +y 252 +w 220 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Ge Mo Ag Sn Ta W Pt Au Pb" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 77 +y 65 +w 65 +h 19 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(H)bank$(B))" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 77 +y 65 +w 65 +h 19 +lineColor rgb 11520 32512 0 +fill +fillColor rgb 11520 32512 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(H)bank$(B))" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 80 +y 68 +w 60 +h 14 +controlPv "$(P)$(H)bank$(B)" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 15 +y 91 +w 40 +h 14 +controlPv "$(P)$(H)f4$(B).EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 15 +y 125 +w 40 +h 20 +controlPv "$(P)$(H)f3$(B)" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 15 +y 105 +w 40 +h 20 +controlPv "$(P)$(H)f4$(B)" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 15 +y 145 +w 40 +h 20 +controlPv "$(P)$(H)f2$(B)" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 15 +y 165 +w 40 +h 20 +controlPv "$(P)$(H)f1$(B)" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 165 +w 50 +h 22 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 110 +y 165 +w 50 +h 22 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "pf4_other_bare.edl;P=$(P),H=$(H),N=1,B=B" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "pf4_other_bare.edl;P=$(P),H=$(H),N=1,B=B" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 145 +w 50 +h 22 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 110 +y 145 +w 50 +h 22 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "pf4_other_bare.edl;P=$(P),H=$(H),N=2,B=B" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "pf4_other_bare.edl;P=$(P),H=$(H),N=2,B=B" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 125 +w 50 +h 22 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 110 +y 125 +w 50 +h 22 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "pf4_other_bare.edl;P=$(P),H=$(H),N=3,B=B" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "pf4_other_bare.edl;P=$(P),H=$(H),N=3,B=B" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 105 +w 50 +h 22 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 110 +y 105 +w 50 +h 22 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "pf4_other_bare.edl;P=$(P),H=$(H),N=4,B=B" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "pf4_other_bare.edl;P=$(P),H=$(H),N=4,B=B" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 185 +y 198 +w 49 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "debug" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 238 +y 65 +w 65 +h 19 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(H)bank$(A))" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 238 +y 65 +w 65 +h 19 +lineColor rgb 11520 32512 0 +fill +fillColor rgb 11520 32512 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(H)bank$(A))" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 241 +y 68 +w 60 +h 14 +controlPv "$(P)$(H)bank$(A)" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 180 +y 91 +w 40 +h 14 +controlPv "$(P)$(H)f4$(A).EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 180 +y 105 +w 40 +h 20 +controlPv "$(P)$(H)f4$(A)" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 180 +y 125 +w 40 +h 20 +controlPv "$(P)$(H)f3$(A)" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 180 +y 145 +w 40 +h 20 +controlPv "$(P)$(H)f2$(A)" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 180 +y 165 +w 40 +h 20 +controlPv "$(P)$(H)f1$(A)" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 275 +y 165 +w 50 +h 22 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 275 +y 165 +w 50 +h 22 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "pf4_other_bare.edl;P=$(P),H=$(H),N=1,B=A" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "pf4_other_bare.edl;P=$(P),H=$(H),N=1,B=A" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 275 +y 145 +w 50 +h 22 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 275 +y 145 +w 50 +h 22 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "pf4_other_bare.edl;P=$(P),H=$(H),N=2,B=A" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "pf4_other_bare.edl;P=$(P),H=$(H),N=2,B=A" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 275 +y 125 +w 50 +h 22 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 275 +y 125 +w 50 +h 22 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "pf4_other_bare.edl;P=$(P),H=$(H),N=3,B=A" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "pf4_other_bare.edl;P=$(P),H=$(H),N=3,B=A" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 275 +y 105 +w 50 +h 22 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 275 +y 105 +w 50 +h 22 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "pf4_other_bare.edl;P=$(P),H=$(H),N=4,B=A" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "pf4_other_bare.edl;P=$(P),H=$(H),N=4,B=A" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 153 +y 107 +w 22 +h 18 +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "4" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 153 +y 127 +w 22 +h 18 +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "3" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 153 +y 147 +w 22 +h 18 +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "2" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 153 +y 167 +w 22 +h 18 +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "1" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 15 +y 198 +w 49 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "debug" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x -12 +y 107 +w 22 +h 18 +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "4" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x -12 +y 127 +w 22 +h 18 +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "3" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x -12 +y 147 +w 22 +h 18 +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "2" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x -12 +y 167 +w 22 +h 18 +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "1" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 55 +w 325 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 1 +1 324 +} +yPoints { +0 56 +1 56 +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 37 +y 7 +w 55 +h 36 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)useMono" +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 49 +y 64 +w 30 +h 20 +fgColor rgb 65280 65280 65280 +onColor rgb 48640 6400 2816 +offColor rgb 48640 6400 2816 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)bank$(B)" +pressValue +releaseValue "0" +onLabel "off" +offLabel "off" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 22 +y 64 +w 30 +h 20 +fgColor rgb 0 0 0 +onColor rgb 0 55296 0 +offColor rgb 0 55296 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)bank$(B)" +pressValue +releaseValue "3" +onLabel "on" +offLabel "on" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 55 +y 104 +w 54 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(H)Z4$(B)" +indicatorPv "$(P)$(H)Z4$(B)" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 55 +y 124 +w 54 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(H)Z3$(B)" +indicatorPv "$(P)$(H)Z3$(B)" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 55 +y 144 +w 54 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(H)Z2$(B)" +indicatorPv "$(P)$(H)Z2$(B)" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 55 +y 164 +w 54 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(H)Z1$(B)" +indicatorPv "$(P)$(H)Z1$(B)" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 195 +w 40 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(H)debug$(A)" +indicatorPv "$(P)$(H)debug$(A)" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 210 +y 64 +w 30 +h 20 +fgColor rgb 65280 65280 65280 +onColor rgb 48640 6400 2816 +offColor rgb 48640 6400 2816 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)bank$(A)" +pressValue +releaseValue "0" +onLabel "off" +offLabel "off" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 183 +y 64 +w 30 +h 20 +fgColor rgb 0 0 0 +onColor rgb 0 55296 0 +offColor rgb 0 55296 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)bank$(A)" +pressValue +releaseValue "3" +onLabel "on" +offLabel "on" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 220 +y 125 +w 54 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(H)Z3$(A)" +indicatorPv "$(P)$(H)Z3$(A)" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 220 +y 105 +w 54 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(H)Z4$(A)" +indicatorPv "$(P)$(H)Z4$(A)" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 220 +y 145 +w 54 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(H)Z2$(A)" +indicatorPv "$(P)$(H)Z2$(A)" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 220 +y 165 +w 54 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(H)Z1$(A)" +indicatorPv "$(P)$(H)Z1$(A)" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 69 +y 195 +w 40 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(H)debug$(B)" +indicatorPv "$(P)$(H)debug$(B)" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 89 +w 40 +h 16 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "mu" +numPvs 2 +numDsps 1 +displayFileName { + 0 pf4_otherHelp.edl +} +menuLabel { + 0 all +} +symbols { + 0 "P=$(P),H=$(H),A=$(A),B=$(B),MONO=$(MONO),B1=$(B1),B2=$(B2),B3=$(B3),B4=$(B4),B5=$(B5),B6=$(B6),B7=$(B7),B8=$(B8)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 275 +y 89 +w 40 +h 16 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "mu" +numPvs 2 +numDsps 1 +displayFileName { + 0 pf4_otherHelp.edl +} +menuLabel { + 0 all +} +symbols { + 0 "P=$(P),H=$(H),A=$(A),B=$(B),MONO=$(MONO),B1=$(B1),B2=$(B2),B3=$(B3),B4=$(B4),B5=$(B5),B6=$(B6),B7=$(B7),B8=$(B8)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/pf4more.edl b/opticsApp/op/edl/autoconvert/pf4more.edl new file mode 100644 index 0000000..5076f6d --- /dev/null +++ b/opticsApp/op/edl/autoconvert/pf4more.edl @@ -0,0 +1,1951 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 352 +y 494 +w 325 +h 570 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 324 +h 24 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 215 +w 326 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 1 +1 325 +} +yPoints { +0 216 +1 216 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 6 +y 220 +w 63 +h 345 +lineColor rgb 13312 13056 34304 +fill +fillColor rgb 13312 13056 34304 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(H)fPos$(B))" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 6 +y 220 +w 63 +h 345 +lineColor rgb 7680 47872 0 +fill +fillColor rgb 7680 47872 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(H)fPos$(B))" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 6 +y 220 +w 63 +h 345 +lineColor rgb 56832 4864 2304 +fill +fillColor rgb 56832 4864 2304 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(H)bank$(B))" +visMin 0 +visMax 1 +endObjectProperties + +# (Byte) +object ByteClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 224 +w 10 +h 336 +controlPv "$(P)$(H)bitFlag$(B)" +lineColor rgb 0 0 0 +onColor rgb 35584 6656 38400 +offColor rgb 55808 55808 55808 +endian "little" +numBits 16 +shift 0 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 289 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).THST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 268 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).TWST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 247 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).ONST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 226 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).ZRST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 311 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).FRST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 332 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).FVST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 353 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).SXST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 374 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).SVST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 395 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).EIST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 416 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).NIST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 437 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).TEST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 458 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).ELST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 479 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).TVST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 500 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).TTST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 521 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).FTST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 74 +y 542 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(B).FFST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 162 +y 220 +w 63 +h 345 +lineColor rgb 13312 13056 34304 +fill +fillColor rgb 13312 13056 34304 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(H)fPos$(A))" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 162 +y 220 +w 63 +h 345 +lineColor rgb 7680 47872 0 +fill +fillColor rgb 7680 47872 0 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(H)fPos$(A))" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 162 +y 220 +w 63 +h 345 +lineColor rgb 56832 4864 2304 +fill +fillColor rgb 56832 4864 2304 +lineWidth 0 +visPv "CALC\\\{(A)\}($(P)$(H)bank$(A))" +visMin 0 +visMax 1 +endObjectProperties + +# (Byte) +object ByteClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 166 +y 224 +w 10 +h 336 +controlPv "$(P)$(H)bitFlag$(A)" +lineColor rgb 0 0 0 +onColor rgb 35584 6656 38400 +offColor rgb 55808 55808 55808 +endian "little" +numBits 16 +shift 0 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 230 +y 289 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(A).THST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 230 +y 268 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(A).TWST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 230 +y 247 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(A).ONST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 230 +y 226 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(A).ZRST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 230 +y 311 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(A).FRST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 230 +y 332 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(A).FVST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 230 +y 353 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(A).SXST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 230 +y 374 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(A).SVST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 230 +y 395 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(A).EIST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 230 +y 416 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(A).NIST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 230 +y 437 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(A).TEST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 230 +y 458 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(A).ELST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 230 +y 479 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(A).TVST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 230 +y 500 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(A).TTST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 230 +y 521 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(A).FTST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 230 +y 542 +w 70 +h 14 +controlPv "$(P)$(H)fPos$(A).FFST" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 320 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PF4 dual filter" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 22 +w 326 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 324 +} +yPoints { +0 23 +1 23 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 25 +w 288 +h 182 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 5 +y 25 +w 288 +h 182 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "pf4_bare.edl;" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "pf4_bare.edl;" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 226 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "0" +onLabel "B 0" +offLabel "B 0" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 247 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "1" +onLabel "B 1" +offLabel "B 1" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 268 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "2" +onLabel "B 2" +offLabel "B 2" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 289 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "3" +onLabel "B 3" +offLabel "B 3" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 311 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "4" +onLabel "B 4" +offLabel "B 4" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 332 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "5" +onLabel "B 5" +offLabel "B 5" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 353 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "6" +onLabel "B 6" +offLabel "B 6" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 374 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "7" +onLabel "B 7" +offLabel "B 7" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 395 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "8" +onLabel "B 8" +offLabel "B 8" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 416 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "9" +onLabel "B 9" +offLabel "B 9" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 437 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "10" +onLabel "B 10" +offLabel "B 10" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 458 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "11" +onLabel "B 11" +offLabel "B 11" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 479 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "12" +onLabel "B 12" +offLabel "B 12" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 500 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "13" +onLabel "B 13" +offLabel "B 13" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 521 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "14" +onLabel "B 14" +offLabel "B 14" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 542 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(B)" +pressValue +releaseValue "15" +onLabel "B 15" +offLabel "B 15" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 180 +y 226 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(A)" +pressValue +releaseValue "0" +onLabel "A 0" +offLabel "A 0" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 180 +y 247 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(A)" +pressValue +releaseValue "1" +onLabel "A 1" +offLabel "A 1" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 180 +y 268 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(A)" +pressValue +releaseValue "2" +onLabel "A 2" +offLabel "A 2" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 180 +y 289 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(A)" +pressValue +releaseValue "3" +onLabel "A 3" +offLabel "A 3" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 180 +y 311 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(A)" +pressValue +releaseValue "4" +onLabel "A 4" +offLabel "A 4" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 180 +y 332 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(A)" +pressValue +releaseValue "5" +onLabel "A 5" +offLabel "A 5" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 180 +y 353 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(A)" +pressValue +releaseValue "6" +onLabel "A 6" +offLabel "A 6" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 180 +y 374 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(A)" +pressValue +releaseValue "7" +onLabel "A 7" +offLabel "A 7" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 180 +y 395 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(A)" +pressValue +releaseValue "8" +onLabel "A 8" +offLabel "A 8" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 180 +y 416 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(A)" +pressValue +releaseValue "9" +onLabel "A 9" +offLabel "A 9" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 180 +y 437 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(A)" +pressValue +releaseValue "10" +onLabel "A 10" +offLabel "A 10" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 180 +y 458 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(A)" +pressValue +releaseValue "11" +onLabel "A 11" +offLabel "A 11" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 180 +y 479 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(A)" +pressValue +releaseValue "12" +onLabel "A 12" +offLabel "A 12" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 180 +y 500 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(A)" +pressValue +releaseValue "13" +onLabel "A 13" +offLabel "A 13" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 180 +y 521 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(A)" +pressValue +releaseValue "14" +onLabel "A 14" +offLabel "A 14" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 180 +y 542 +w 40 +h 18 +fgColor rgb 0 0 0 +onColor rgb 55808 55808 55808 +offColor rgb 55808 55808 55808 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(H)fPos$(A)" +pressValue +releaseValue "15" +onLabel "A 15" +offLabel "A 15" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 273 +y 174 +w 50 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "config" +numPvs 2 +numDsps 1 +displayFileName { + 0 pf4config.edl +} +menuLabel { + 0 all +} +symbols { + 0 "P=$(P),H=$(H),A=$(A),B=$(B),MONO=$(MONO),B1=$(B1),B2=$(B2),B3=$(B3),B4=$(B4),B5=$(B5),B6=$(B6),B7=$(B7),B8=$(B8)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 273 +y 194 +w 50 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "less" +numPvs 2 +numDsps 1 +displayFileName { + 0 pf4.edl +} +menuLabel { + 0 PF4 mono filter computed controls +} +symbols { + 0 "P=$(P),H=$(H),A=$(A),B=$(B),MONO=$(MONO),B1=$(B1),B2=$(B2),B3=$(B3),B4=$(B4),B5=$(B5),B6=$(B6),B7=$(B7),B8=$(B8)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/qxbpm.edl b/opticsApp/op/edl/autoconvert/qxbpm.edl new file mode 100644 index 0000000..cee4489 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/qxbpm.edl @@ -0,0 +1,1089 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 848 +y 482 +w 555 +h 370 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 47872 49408 34560 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 2 +y 3 +w 200 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "qxbpm.adl" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 2 +y 18 +w 200 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "last edited: 2007-Jan-30 (prj)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 8 +y 35 +w 500 +h 22 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Oxford Quad Beam Position Monitor" +} +endObjectProperties + +# (X-Y Graph) +object xyGraphClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 319 +y 81 +w 220 +h 220 +# Appearance +border +graphTitle +xLabel +yLabel +fgColor rgb 0 55296 0 +bgColor rgb 0 0 0 +gridColor rgb 0 55296 0 +font "helvetica-medium-r-10.0" +# Operating Modes +plotMode "plotLastNPts" +nPts 100 +# X axis properties +showXAxis +xAxisSrc "AutoScale" +xMin -0.05 +xMax 0.05 +xLablePrecision 1 +# Y axis properties +showYAxis +yAxisSrc "AutoScale" +yMin -0.1 +yMax 0.1 +# Trace Properties +numTraces 1 +xPv { + 0 "$(P)diff:x" +} +yPv { + 0 "$(P)diff:y" +} +plotStyle { + 0 "line" +} +plotUpdateMode { + 0 "x" +} +plotSymbolType { + 0 "circle" +} +plotColor { + 0 rgb 64768 0 0 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 96 +y 60 +w 50 +h 16 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "X" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 209 +y 60 +w 50 +h 16 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 318 +y 60 +w 220 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "pos - ref (mm)" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 26 +y 275 +w 279 +h 44 +lineColor rgb 22528 13312 3840 +fill +fillColor rgb 22528 13312 3840 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 32 +y 276 +w 11 +h 10 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(!A&&B)\}($(P)current:ok, $(P)current:low)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 32 +y 292 +w 11 +h 10 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A=B)\}($(P)current:ok, $(P)current:low)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 32 +y 308 +w 11 +h 10 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 0 +visPv "CALC\\\{(A&&!B)\}($(P)current:ok, $(P)current:low)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 50 +y 278 +w 250 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "diode currents OK" +} +visPv "CALC\\\{(A=B)\}($(P)current:ok, $(P)current:low)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 50 +y 278 +w 250 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "diode currents OK" +} +visPv "CALC\\\{(A&&!B)\}($(P)current:ok, $(P)current:low)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 50 +y 278 +w 250 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "diode currents too low" +} +visPv "CALC\\\{(!A&&B)\}($(P)current:ok, $(P)current:low)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 50 +y 298 +w 250 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 60928 46592 11008 +bgColor index 3 +useDisplayBg +value { + "not all diodes above threshold" +} +visPv "CALC\\\{(A)\}($(P)current:ok)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 50 +y 298 +w 250 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "all diodes above threshold" +} +visPv "CALC\\\{(A)\}($(P)current:ok)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 50 +y 307 +w 250 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 60928 46592 11008 +bgColor index 3 +useDisplayBg +value { + "not all diodes below threshold" +} +visPv "CALC\\\{(A)\}($(P)current:low)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 50 +y 307 +w 250 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "all diodes below threshold" +} +visPv "CALC\\\{(A)\}($(P)current:low)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 70 +y 192 +w 100 +h 20 +controlPv "$(P)current:a" +format ""engr." +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor rgb 0 0 0 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 183 +y 192 +w 100 +h 20 +controlPv "$(P)current:c" +format ""engr." +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor rgb 0 0 0 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 41 +y 194 +w 25 +h 16 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "A" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 283 +y 194 +w 24 +h 16 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "C" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 69 +y 220 +w 100 +h 20 +controlPv "$(P)current:b" +format ""engr." +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor rgb 0 0 0 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 182 +y 220 +w 100 +h 20 +controlPv "$(P)current:d" +format ""engr." +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor rgb 0 0 0 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 41 +y 222 +w 23 +h 16 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "B" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 282 +y 222 +w 24 +h 16 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "D" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 77 +y 174 +w 200 +h 16 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "photodiode currents" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 38 +y 252 +w 81 +h 16 +font "helvetica-medium-r-14.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "A+B+C+D" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 126 +y 250 +w 100 +h 20 +controlPv "$(P)current:total" +format ""engr." +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor rgb 0 0 0 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 11 +y 82 +w 50 +h 16 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "pos" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 318 +y 309 +w 76 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "threshold:" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 402 +y 308 +w 76 +h 12 +controlPv "$(P)current:low:raw" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor rgb 0 0 0 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 13 +y 330 +w 400 +h 12 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "amplifier range (all photodiodes use same range)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 11 +y 141 +w 50 +h 16 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "diff" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 71 +y 140 +w 84 +h 20 +controlPv "$(P)diff:x" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor rgb 0 0 0 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 184 +y 140 +w 84 +h 20 +controlPv "$(P)diff:y" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor rgb 0 0 0 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 11 +y 116 +w 50 +h 16 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "ref" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 71 +y 114 +w 100 +h 20 +controlPv "$(P)ref:x" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 54272 56064 40192 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 184 +y 114 +w 100 +h 20 +controlPv "$(P)ref:y" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 54272 56064 40192 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 71 +y 81 +w 100 +h 24 +controlPv "$(P)pos:x" +format "decimal" +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 60416 60416 60416 +bgColor rgb 23040 23040 23040 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 184 +y 81 +w 100 +h 24 +controlPv "$(P)pos:y" +format "decimal" +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 60416 60416 60416 +bgColor rgb 23040 23040 23040 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 457 +y 3 +w 93 +h 14 +fgColor rgb 60416 60416 60416 +bgColor rgb 32000 22016 9984 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +buttonLabel "configure" +numPvs 2 +numDsps 1 +displayFileName { + 0 qxbpm_config.edl +} +menuLabel { + 0 configure +} +symbols { + 0 "P=$(P),S=$(S)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 227 +y 4 +w 200 +h 14 +fgColor rgb 0 0 0 +bgColor rgb 54272 56064 40192 +selectColor rgb 54272 56064 40192 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)enable" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 14 +y 342 +w 530 +h 18 +fgColor rgb 0 0 0 +bgColor rgb 42496 41984 25088 +selectColor rgb 42496 41984 25088 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)gain" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 158 +y 140 +w 18 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 35584 33280 14592 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 userCalcOut.edl +} +menuLabel { + 0 calculation +} +symbols { + 0 "P=$(P),C=diff:x" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 268 +y 140 +w 18 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 35584 33280 14592 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 userCalcOut.edl +} +menuLabel { + 0 calculation +} +symbols { + 0 "P=$(P),C=diff:y" +} +replaceSymbols { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/qxbpm_calib.edl b/opticsApp/op/edl/autoconvert/qxbpm_calib.edl new file mode 100644 index 0000000..d8130bf --- /dev/null +++ b/opticsApp/op/edl/autoconvert/qxbpm_calib.edl @@ -0,0 +1,462 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 31 +y 151 +w 430 +h 370 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 47872 49408 34560 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 2 +y 3 +w 200 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "qxbpm_calib.adl" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 2 +y 18 +w 200 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "last edited: 2007-Feb-12 (prj)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 8 +y 35 +w 400 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Oxford Quad Beam Position Monitor" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 91 +y 321 +w 100 +h 20 +controlPv "$(P)settling" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 54272 56064 40192 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 29 +y 306 +w 274 +h 12 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "settling time after each gain change before offset is read." +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 196 +y 321 +w 100 +h 18 +controlPv "$(P)settling.EGU" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 54272 56064 40192 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 148 +w 136 +h 20 +lineColor rgb 20992 55808 15104 +fillColor rgb 20992 55808 15104 +lineWidth 8 +visPv "CALC\\\{(A)\}($(P)set_defaults)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 23 +y 70 +w 368 +h 107 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 29 +y 74 +w 150 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "default calibration" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 32 +y 99 +w 350 +h 16 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Set amplifier gains and other settings" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 32 +y 120 +w 350 +h 16 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "to factory defaults." +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 23 +y 187 +w 368 +h 168 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 29 +y 191 +w 150 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "amplifier offsets" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 29 +y 216 +w 350 +h 16 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Discover amplifier offsets for each range." +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 29 +y 237 +w 350 +h 16 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Make SURE that the X-ray beam is OFF." +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 201 +y 265 +w 136 +h 20 +lineColor rgb 20992 55808 15104 +fillColor rgb 20992 55808 15104 +lineWidth 8 +visPv "CALC\\\{(A)\}($(P)set_offsets)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 86 +y 265 +w 72 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 8 +visPv "CALC\\\{(A)\}($(P)set_offsets)" +visMin 0 +visMax 1 +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 311 +y 3 +w 93 +h 14 +fgColor rgb 60416 60416 60416 +bgColor rgb 32000 22016 9984 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +buttonLabel "configure" +numPvs 2 +numDsps 1 +displayFileName { + 0 qxbpm_config.edl +} +menuLabel { + 0 configure +} +symbols { + 0 "P=$(P),S=$(S)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 142 +y 148 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 42496 41984 25088 +offColor rgb 42496 41984 25088 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)set_defaults" +pressValue +releaseValue "1" +onLabel "set defaults" +offLabel "set defaults" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 204 +y 265 +w 130 +h 20 +fgColor rgb 0 0 0 +onColor rgb 42496 41984 25088 +offColor rgb 42496 41984 25088 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)set_offsets" +pressValue +releaseValue "1" +onLabel "set offsets" +offLabel "set offsets" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 88 +y 265 +w 68 +h 20 +fgColor rgb 0 0 0 +onColor rgb 42496 41984 25088 +offColor rgb 42496 41984 25088 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)set_offsets" +pressValue +releaseValue "0" +onLabel "idle" +offLabel "idle" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/qxbpm_config.edl b/opticsApp/op/edl/autoconvert/qxbpm_config.edl new file mode 100644 index 0000000..6b72646 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/qxbpm_config.edl @@ -0,0 +1,2968 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 661 +y 527 +w 776 +h 438 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 47872 49408 34560 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 2 +y 3 +w 200 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "qxbpm_config.adl" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 2 +y 18 +w 200 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "last edited: 2007-Mar-01 (prj)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 231 +y 6 +w 400 +h 22 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Oxford Quad XBPM Configuration" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 228 +y 32 +w 400 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "the BPM controller needs ~3 sec to fill 100 sample buffer (~30 ms/sample)" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 26 +y 152 +w 279 +h 44 +lineColor rgb 22528 13312 3840 +fill +fillColor rgb 22528 13312 3840 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 32 +y 153 +w 11 +h 10 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 0 +visPv "CALC\\\{(!A&&B)\}($(P)current:ok, $(P)current:low)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 32 +y 169 +w 11 +h 10 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +visPv "CALC\\\{(A=B)\}($(P)current:ok, $(P)current:low)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 32 +y 185 +w 11 +h 10 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 0 +visPv "CALC\\\{(A&&!B)\}($(P)current:ok, $(P)current:low)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 50 +y 155 +w 250 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "diode currents OK" +} +visPv "CALC\\\{(A=B)\}($(P)current:ok, $(P)current:low)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 50 +y 155 +w 250 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "diode currents OK" +} +visPv "CALC\\\{(A&&!B)\}($(P)current:ok, $(P)current:low)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 50 +y 155 +w 250 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "diode currents too low" +} +visPv "CALC\\\{(!A&&B)\}($(P)current:ok, $(P)current:low)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 50 +y 175 +w 250 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 60928 46592 11008 +bgColor index 3 +useDisplayBg +value { + "not all diodes above threshold" +} +visPv "CALC\\\{(A)\}($(P)current:ok)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 50 +y 175 +w 250 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 55296 0 +bgColor index 3 +useDisplayBg +value { + "all diodes above threshold" +} +visPv "CALC\\\{(A)\}($(P)current:ok)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 50 +y 184 +w 250 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 60928 46592 11008 +bgColor index 3 +useDisplayBg +value { + "not all diodes below threshold" +} +visPv "CALC\\\{(A)\}($(P)current:low)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 50 +y 184 +w 250 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "all diodes below threshold" +} +visPv "CALC\\\{(A)\}($(P)current:low)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 308 +w 80 +h 17 +controlPv "$(P)r1:A1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 105 +y 308 +w 80 +h 17 +controlPv "$(P)r1:B1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 190 +y 308 +w 80 +h 17 +controlPv "$(P)r1:C1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 275 +y 308 +w 80 +h 17 +controlPv "$(P)r1:D1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 329 +w 80 +h 17 +controlPv "$(P)r2:A1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 105 +y 329 +w 80 +h 17 +controlPv "$(P)r2:B1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 190 +y 329 +w 80 +h 17 +controlPv "$(P)r2:C1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 275 +y 329 +w 80 +h 17 +controlPv "$(P)r2:D1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 350 +w 80 +h 17 +controlPv "$(P)r3:A1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 105 +y 350 +w 80 +h 17 +controlPv "$(P)r3:B1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 190 +y 350 +w 80 +h 17 +controlPv "$(P)r3:C1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 275 +y 350 +w 80 +h 17 +controlPv "$(P)r3:D1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 371 +w 80 +h 17 +controlPv "$(P)r4:A1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 105 +y 371 +w 80 +h 17 +controlPv "$(P)r4:B1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 190 +y 371 +w 80 +h 17 +controlPv "$(P)r4:C1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 275 +y 371 +w 80 +h 17 +controlPv "$(P)r4:D1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 392 +w 80 +h 17 +controlPv "$(P)r5:A1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 105 +y 392 +w 80 +h 17 +controlPv "$(P)r5:B1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 190 +y 392 +w 80 +h 17 +controlPv "$(P)r5:C1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 275 +y 392 +w 80 +h 17 +controlPv "$(P)r5:D1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 20 +y 413 +w 80 +h 17 +controlPv "$(P)r6:A1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 105 +y 413 +w 80 +h 17 +controlPv "$(P)r6:B1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 190 +y 413 +w 80 +h 17 +controlPv "$(P)r6:C1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 275 +y 413 +w 80 +h 17 +controlPv "$(P)r6:D1" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 425 +y 308 +w 80 +h 17 +controlPv "$(P)r1:A2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 510 +y 308 +w 80 +h 17 +controlPv "$(P)r1:B2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 595 +y 308 +w 80 +h 17 +controlPv "$(P)r1:C2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 680 +y 308 +w 80 +h 17 +controlPv "$(P)r1:D2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 425 +y 329 +w 80 +h 17 +controlPv "$(P)r2:A2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 510 +y 329 +w 80 +h 17 +controlPv "$(P)r2:B2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 595 +y 329 +w 80 +h 17 +controlPv "$(P)r2:C2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 680 +y 329 +w 80 +h 17 +controlPv "$(P)r2:D2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 425 +y 350 +w 80 +h 17 +controlPv "$(P)r3:A2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 510 +y 350 +w 80 +h 17 +controlPv "$(P)r3:B2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 595 +y 350 +w 80 +h 17 +controlPv "$(P)r3:C2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 680 +y 350 +w 80 +h 17 +controlPv "$(P)r3:D2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 425 +y 371 +w 80 +h 17 +controlPv "$(P)r4:A2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 510 +y 371 +w 80 +h 17 +controlPv "$(P)r4:B2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 595 +y 371 +w 80 +h 17 +controlPv "$(P)r4:C2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 680 +y 371 +w 80 +h 17 +controlPv "$(P)r4:D2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 425 +y 392 +w 80 +h 17 +controlPv "$(P)r5:A2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 510 +y 392 +w 80 +h 17 +controlPv "$(P)r5:B2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 595 +y 392 +w 80 +h 17 +controlPv "$(P)r5:C2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 680 +y 392 +w 80 +h 17 +controlPv "$(P)r5:D2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 425 +y 413 +w 80 +h 17 +controlPv "$(P)r6:A2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 510 +y 413 +w 80 +h 17 +controlPv "$(P)r6:B2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 595 +y 413 +w 80 +h 17 +controlPv "$(P)r6:C2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 680 +y 413 +w 80 +h 17 +controlPv "$(P)r6:D2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 360 +y 308 +w 60 +h 12 +controlPv "$(P)gain.ZRST" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 47872 49408 34560 +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 360 +y 329 +w 60 +h 12 +controlPv "$(P)gain.ONST" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 47872 49408 34560 +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 360 +y 350 +w 60 +h 12 +controlPv "$(P)gain.TWST" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 47872 49408 34560 +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 360 +y 371 +w 60 +h 12 +controlPv "$(P)gain.THST" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 47872 49408 34560 +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 360 +y 392 +w 60 +h 12 +controlPv "$(P)gain.FRST" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 47872 49408 34560 +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 360 +y 413 +w 60 +h 12 +controlPv "$(P)gain.FVST" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor rgb 47872 49408 34560 +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 20 +y 298 +w 80 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "diode A" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 105 +y 298 +w 80 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "diode B" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 190 +y 298 +w 80 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "diode C" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 275 +y 298 +w 80 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "diode D" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 37 +y 280 +w 300 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "cG : photodiode gain multiplier adjustment (float)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 442 +y 280 +w 300 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "cB : photodiode gain raw offset (integer)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 425 +y 298 +w 80 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "diode A" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 510 +y 298 +w 80 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "diode B" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 595 +y 298 +w 80 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "diode C" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 680 +y 298 +w 80 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "diode D" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 360 +y 298 +w 60 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "range" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 18 +y 221 +w 107 +h 12 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "VxWorks debug level" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 18 +y 232 +w 100 +h 18 +controlPv "$(P)debug" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 42496 41984 25088 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 328 +y 190 +w 80 +h 17 +controlPv "$(P)current:low:raw" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 413 +y 191 +w 300 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "raw diode signal lower threshold" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 328 +y 151 +w 104 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "raw diode values" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 433 +y 149 +w 80 +h 17 +controlPv "$(P)current:a:raw" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 39168 65280 65280 +bgColor rgb 0 0 0 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 518 +y 149 +w 80 +h 17 +controlPv "$(P)current:b:raw" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 39168 65280 65280 +bgColor rgb 0 0 0 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 603 +y 149 +w 80 +h 17 +controlPv "$(P)current:c:raw" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 39168 65280 65280 +bgColor rgb 0 0 0 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 688 +y 149 +w 80 +h 17 +controlPv "$(P)current:d:raw" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 39168 65280 65280 +bgColor rgb 0 0 0 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 327 +y 170 +w 104 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "diode current, A" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 432 +y 168 +w 80 +h 17 +controlPv "$(P)current:a" +format "exponential" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 39168 65280 65280 +bgColor rgb 0 0 0 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 517 +y 168 +w 80 +h 17 +controlPv "$(P)current:b" +format "exponential" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 39168 65280 65280 +bgColor rgb 0 0 0 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 602 +y 168 +w 80 +h 17 +controlPv "$(P)current:c" +format "exponential" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 39168 65280 65280 +bgColor rgb 0 0 0 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 687 +y 168 +w 80 +h 17 +controlPv "$(P)current:d" +format "exponential" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 39168 65280 65280 +bgColor rgb 0 0 0 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 14 +y 91 +w 300 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "# measurements for AVERAGE or WINDOW" +} +endObjectProperties + +# (Motif Slider) +object activeMotifSliderClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 14 +y 102 +w 300 +h 40 +fgColor rgb 35584 33280 14592 +bgColor rgb 42496 41984 25088 +2ndBgColor rgb 42496 41984 25088 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)buflen" +controlLabelType "pvName" +font "helvetica-medium-r-8.0" +limitsFromDb +showLimits +increment 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 334 +y 49 +w 130 +h 12 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "RS232 poll period, s" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 334 +y 60 +w 130 +h 18 +controlPv "$(P)period" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 334 +y 83 +w 130 +h 12 +font "helvetica-medium-r-10.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "device address" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 334 +y 94 +w 130 +h 18 +controlPv "$(P)address" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 42496 41984 25088 +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 476 +y 49 +w 90 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "RS232 port" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 476 +y 66 +w 90 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "RS232 out" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 476 +y 83 +w 90 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "RS232 in" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 476 +y 100 +w 90 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "RS232 status" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 571 +y 100 +w 200 +h 12 +controlPv "$(S).SEVR" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 39168 65280 65280 +bgColor rgb 0 0 0 +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 571 +y 83 +w 200 +h 12 +controlPv "$(S).AINP" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 39168 65280 65280 +bgColor rgb 0 0 0 +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 571 +y 66 +w 200 +h 12 +controlPv "$(S).AOUT" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 39168 65280 65280 +bgColor rgb 0 0 0 +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 571 +y 49 +w 200 +h 12 +controlPv "$(P)port" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 39168 65280 65280 +bgColor rgb 0 0 0 +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 156 +y 219 +w 440 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "photodiode current, I_n = cG * (raw_signal - cB)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 156 +y 238 +w 100 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "position_X = " +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 261 +y 238 +w 80 +h 17 +controlPv "$(P)GX" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 346 +y 238 +w 250 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + " * ( I_B - I_D ) / ( I_B + I_D )" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 156 +y 258 +w 100 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "position_Y = " +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 261 +y 258 +w 80 +h 17 +controlPv "$(P)GY" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 346 +y 258 +w 250 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + " * ( I_A - I_C ) / ( I_A + I_C )" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 433 +y 136 +w 80 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "1/A/top" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 518 +y 136 +w 80 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "2/B/left" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 603 +y 136 +w 80 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "3/C/bottom" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 688 +y 136 +w 80 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "4/D/right" +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 674 +y 8 +w 93 +h 14 +fgColor rgb 60416 60416 60416 +bgColor rgb 32000 22016 9984 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +buttonLabel "main screen" +numPvs 2 +numDsps 1 +displayFileName { + 0 qxbpm.edl +} +menuLabel { + 0 main screen +} +symbols { + 0 "P=$(P),S=$(S)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 332 +y 120 +w 440 +h 14 +fgColor rgb 0 0 0 +bgColor rgb 42496 41984 25088 +selectColor rgb 42496 41984 25088 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)gain" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 15 +y 254 +w 104 +h 17 +fgColor rgb 65280 65280 65280 +onColor rgb 22528 13312 3840 +offColor rgb 22528 13312 3840 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)init" +pressValue +releaseValue "1" +onLabel "initialize" +offLabel "initialize" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 664 +y 259 +w 93 +h 14 +fgColor rgb 60416 60416 60416 +bgColor rgb 32000 22016 9984 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +buttonLabel " calibrate" +numPvs 2 +numDsps 1 +displayFileName { + 0 qxbpm_calib.edl +} +menuLabel { + 0 main screen +} +symbols { + 0 "P=$(P),S=$(S)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 14 +y 49 +w 300 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 42496 41984 25088 +selectColor rgb 42496 41984 25088 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)enable" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 14 +y 70 +w 300 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 42496 41984 25088 +selectColor rgb 42496 41984 25088 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)mode" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/table.edl b/opticsApp/op/edl/autoconvert/table.edl new file mode 100644 index 0000000..8cb91fb --- /dev/null +++ b/opticsApp/op/edl/autoconvert/table.edl @@ -0,0 +1,2197 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 1119 +y 494 +w 230 +h 390 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 0 +w 230 +h 20 +controlPv "$(P)$(T).DESC" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x -1 +y 20 +w 232 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 0 +1 229 +} +yPoints { +0 21 +1 21 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 27 +w 85 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Fixed point:" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 262 +w 80 +h 15 +controlPv "$(P)$(T).EZ" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 26 +y 261 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 82 +w 80 +h 15 +controlPv "$(P)$(T).EX" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 90 +y 63 +w 60 +h 18 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Limit" +} +visPv "CALC\\\{(A)\}($(P)$(T).LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 63 +w 70 +h 15 +controlPv "$(P)$(T).LEGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 102 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "X" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 100 +w 80 +h 22 +controlPv "$(P)$(T).X" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 26 +y 81 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 79 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 138 +w 99 +h 23 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 150 +y 63 +w 70 +h 15 +controlPv "$(P)$(T).AEGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 115 +y 102 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "AX" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 100 +w 80 +h 22 +controlPv "$(P)$(T).AX" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 82 +w 80 +h 15 +controlPv "$(P)$(T).EAX" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 141 +y 81 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 79 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 120 +y 138 +w 99 +h 23 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 193 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 190 +w 80 +h 22 +controlPv "$(P)$(T).Y" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 172 +w 80 +h 15 +controlPv "$(P)$(T).EY" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 26 +y 171 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 169 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 115 +y 191 +w 34 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "AY" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 190 +w 80 +h 22 +controlPv "$(P)$(T).AY" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 172 +w 80 +h 15 +controlPv "$(P)$(T).EAY" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 141 +y 171 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 169 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 228 +w 99 +h 23 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 120 +y 228 +w 99 +h 23 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 120 +y 345 +w 60 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 60160 61696 46336 +bgColor index 3 +useDisplayBg +value { + "Done" +} +visPv "CALC\\\{(A)\}($(P)$(Q):done.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 119 +y 345 +w 62 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 60160 61696 46336 +bgColor index 3 +useDisplayBg +value { + "Moving" +} +visPv "CALC\\\{(A)\}($(P)$(Q):done.VAL)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 282 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Z" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 280 +w 80 +h 22 +controlPv "$(P)$(T).Z" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 259 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 318 +w 99 +h 23 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 115 +y 281 +w 34 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "AZ" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 280 +w 80 +h 22 +controlPv "$(P)$(T).AZ" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 262 +w 80 +h 15 +controlPv "$(P)$(T).EAZ" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 141 +y 261 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 259 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 120 +y 318 +w 99 +h 23 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 45 +y 120 +w 44 +h 18 +controlPv "$(P)$(Q):x_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 160 +y 120 +w 44 +h 18 +controlPv "$(P)$(Q):ax_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 45 +y 210 +w 44 +h 18 +controlPv "$(P)$(Q):y_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 160 +y 210 +w 44 +h 18 +controlPv "$(P)$(Q):ay_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 45 +y 300 +w 44 +h 18 +controlPv "$(P)$(Q):z_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 160 +y 300 +w 44 +h 18 +controlPv "$(P)$(Q):az_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x -1 +y 58 +w 233 +h 2 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 2 +numPoints 2 { +xPoints { +0 0 +1 231 +} +yPoints { +0 59 +1 59 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 95 +y 43 +w 135 +h 15 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "REFRESH MENU" +numPvs 2 +numDsps 1 +displayFileName { + 0 table_refresh.edl +} +menuLabel { + 0 Refresh fixed-point menu +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 95 +y 23 +w 135 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(Q)fpSelect" +indicatorPv "$(P)$(Q)fpSelect" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 8 +y 140 +w 35 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Scan" +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(Q)X,NAME=$(Q)X,DESC=$(Q)X,EGU=$(T).LEGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 140 +w 21 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)X:scanParms.GO" +pressValue "1" +releaseValue +onLabel "Go" +offLabel "Go" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 68 +y 140 +w 35 +h 20 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "Kill" +offLabel "Kill" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 123 +y 140 +w 35 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Scan" +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(Q)AX,NAME=$(Q)AX,DESC=$(Q)AX,EGU=$(T).AEGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 160 +y 140 +w 21 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)AX:scanParms.GO" +pressValue "1" +releaseValue +onLabel "Go" +offLabel "Go" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 183 +y 140 +w 35 +h 20 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "Kill" +offLabel "Kill" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 8 +y 230 +w 35 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Scan" +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(Q)Y,NAME=$(Q)Y,DESC=$(Q)Y,EGU=$(T).LEGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 230 +w 21 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)Y:scanParms.GO" +pressValue "1" +releaseValue +onLabel "Go" +offLabel "Go" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 68 +y 230 +w 35 +h 20 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "Kill" +offLabel "Kill" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 123 +y 230 +w 35 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Scan" +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(Q)AY,NAME=$(Q)AY,DESC=$(Q)AY,EGU=$(T).AEGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 160 +y 230 +w 21 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)AY:scanParms.GO" +pressValue "1" +releaseValue +onLabel "Go" +offLabel "Go" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 183 +y 230 +w 35 +h 20 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "Kill" +offLabel "Kill" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 350 +w 80 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(T).SET" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 370 +w 50 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(T).SYNC" +pressValue "1" +releaseValue +onLabel "Sync" +offLabel "Sync" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 370 +w 50 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(T).INIT" +pressValue "1" +releaseValue +onLabel "Init" +offLabel "Init" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 80 +y 350 +w 35 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(T).ZERO" +pressValue "1" +releaseValue +onLabel "Zero" +offLabel "Zero" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 120 +y 366 +w 60 +h 25 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):stop.VAL" +pressValue "1" +releaseValue +onLabel "Stop" +offLabel "Stop" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 185 +y 370 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "More" +numPvs 12 +numDsps 6 +displayFileName { + 0 table_full.edl + 1 table_setup_SRI.edl + 2 table_setup_GEOCARS.edl + 3 table_setup_NEWPORT.edl + 4 table_setup_PNC.edl + 5 table_fixedPoints.edl +} +menuLabel { + 0 More + 1 Setup (SRI geometry) + 2 Setup (GEOCARS geometry) + 3 Setup (NEWPORT geometry) + 4 Setup (PNC geometry) + 5 Fixed points +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z)" + 1 "P=$(P),Q=$(Q),T=$(T)" + 2 "P=$(P),Q=$(Q),T=$(T)" + 3 "P=$(P),Q=$(Q),T=$(T)" + 4 "P=$(P),Q=$(Q),T=$(T)" + 5 "P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 + 5 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 185 +y 350 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Less" +numPvs 2 +numDsps 1 +displayFileName { + 0 table_tiny.edl +} +menuLabel { + 0 Less +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 8 +y 320 +w 35 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Scan" +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(Q)Z,NAME=$(Q)Z,DESC=$(Q)Z,EGU=$(T).LEGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 45 +y 320 +w 21 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)Z:scanParms.GO" +pressValue "1" +releaseValue +onLabel "Go" +offLabel "Go" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 68 +y 320 +w 35 +h 20 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "Kill" +offLabel "Kill" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 123 +y 320 +w 35 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Scan" +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(Q)AZ,NAME=$(Q)AZ,DESC=$(Q)AZ,EGU=$(T).AEGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 160 +y 320 +w 21 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)AZ:scanParms.GO" +pressValue "1" +releaseValue +onLabel "Go" +offLabel "Go" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 183 +y 320 +w 35 +h 20 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)allstop.VAL" +pressValue "1" +releaseValue +onLabel "Kill" +offLabel "Kill" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 89 +y 120 +w 20 +h 18 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):x_tweak.A" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 25 +y 120 +w 20 +h 18 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):x_tweak.B" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 204 +y 120 +w 20 +h 18 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):ax_tweak.A" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 120 +w 20 +h 18 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):ax_tweak.B" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 89 +y 210 +w 20 +h 18 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):y_tweak.A" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 25 +y 210 +w 20 +h 18 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):y_tweak.B" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 204 +y 210 +w 20 +h 18 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):ay_tweak.A" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 210 +w 20 +h 18 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):ay_tweak.B" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 89 +y 300 +w 20 +h 18 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):z_tweak.A" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 25 +y 300 +w 20 +h 18 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):z_tweak.B" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 204 +y 300 +w 20 +h 18 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):az_tweak.A" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 300 +w 20 +h 18 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):az_tweak.B" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/table_fixedPoints.edl b/opticsApp/op/edl/autoconvert/table_fixedPoints.edl new file mode 100644 index 0000000..c58645b --- /dev/null +++ b/opticsApp/op/edl/autoconvert/table_fixedPoints.edl @@ -0,0 +1,1823 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 406 +y 363 +w 330 +h 310 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 30 +y 0 +w 100 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x -6 +y 30 +w 38 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "USE" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 30 +y 25 +w 100 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Description" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 200 +y 25 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Sy" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 265 +y 25 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Sz" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 135 +y 25 +w 60 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "Sx" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 50 +w 100 +h 16 +controlPv "$(P)$(Q)fp0Name" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 200 +y 50 +w 60 +h 16 +controlPv "$(P)$(Q)fp0.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 265 +y 50 +w 60 +h 16 +controlPv "$(P)$(Q)fp0.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 200 +y 40 +w 60 +h 10 +controlPv "$(P)$(T).LEGU" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 135 +y 50 +w 60 +h 16 +controlPv "$(P)$(Q)fp0.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 70 +w 100 +h 16 +controlPv "$(P)$(Q)fp1Name" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 200 +y 70 +w 60 +h 16 +controlPv "$(P)$(Q)fp1.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 265 +y 70 +w 60 +h 16 +controlPv "$(P)$(Q)fp1.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 135 +y 70 +w 60 +h 16 +controlPv "$(P)$(Q)fp1.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 90 +w 100 +h 16 +controlPv "$(P)$(Q)fp2Name" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 200 +y 90 +w 60 +h 16 +controlPv "$(P)$(Q)fp2.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 265 +y 90 +w 60 +h 16 +controlPv "$(P)$(Q)fp2.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 135 +y 90 +w 60 +h 16 +controlPv "$(P)$(Q)fp2.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 110 +w 100 +h 16 +controlPv "$(P)$(Q)fp3Name" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 200 +y 110 +w 60 +h 16 +controlPv "$(P)$(Q)fp3.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 265 +y 110 +w 60 +h 16 +controlPv "$(P)$(Q)fp3.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 135 +y 110 +w 60 +h 16 +controlPv "$(P)$(Q)fp3.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 130 +w 100 +h 16 +controlPv "$(P)$(Q)fp4Name" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 200 +y 130 +w 60 +h 16 +controlPv "$(P)$(Q)fp4.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 265 +y 130 +w 60 +h 16 +controlPv "$(P)$(Q)fp4.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 135 +y 130 +w 60 +h 16 +controlPv "$(P)$(Q)fp4.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 150 +w 100 +h 16 +controlPv "$(P)$(Q)fp5Name" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 200 +y 150 +w 60 +h 16 +controlPv "$(P)$(Q)fp5.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 265 +y 150 +w 60 +h 16 +controlPv "$(P)$(Q)fp5.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 135 +y 150 +w 60 +h 16 +controlPv "$(P)$(Q)fp5.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 170 +w 100 +h 16 +controlPv "$(P)$(Q)fp6Name" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 200 +y 170 +w 60 +h 16 +controlPv "$(P)$(Q)fp6.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 265 +y 170 +w 60 +h 16 +controlPv "$(P)$(Q)fp6.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 135 +y 170 +w 60 +h 16 +controlPv "$(P)$(Q)fp6.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 190 +w 100 +h 16 +controlPv "$(P)$(Q)fp7Name" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 200 +y 190 +w 60 +h 16 +controlPv "$(P)$(Q)fp7.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 265 +y 190 +w 60 +h 16 +controlPv "$(P)$(Q)fp7.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 135 +y 190 +w 60 +h 16 +controlPv "$(P)$(Q)fp7.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 210 +w 100 +h 16 +controlPv "$(P)$(Q)fp8Name" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 200 +y 210 +w 60 +h 16 +controlPv "$(P)$(Q)fp8.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 265 +y 210 +w 60 +h 16 +controlPv "$(P)$(Q)fp8.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 135 +y 210 +w 60 +h 16 +controlPv "$(P)$(Q)fp8.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 30 +y 230 +w 100 +h 16 +controlPv "$(P)$(Q)fp9Name" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 200 +y 230 +w 60 +h 16 +controlPv "$(P)$(Q)fp9.DO3" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 265 +y 230 +w 60 +h 16 +controlPv "$(P)$(Q)fp9.DO4" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 135 +y 230 +w 60 +h 16 +controlPv "$(P)$(Q)fp9.DO2" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 1 +y 0 +w 328 +h 20 +controlPv "$(P)$(T).DESC" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 20 +w 329 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 327 +} +yPoints { +0 21 +1 21 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 250 +w 320 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "NOTE: after changing a description, you must" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 265 +w 320 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "close and re-open any display containing the" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 280 +w 120 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 11520 11520 11520 +bgColor index 3 +useDisplayBg +value { + "fixed-point menu:" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 47 +w 328 +h 21 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(a=0)\}($(P)$(Q)fpSelect.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 67 +w 328 +h 21 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(a=1)\}($(P)$(Q)fpSelect.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 87 +w 328 +h 21 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(a=2)\}($(P)$(Q)fpSelect.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 107 +w 328 +h 21 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(a=3)\}($(P)$(Q)fpSelect.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 127 +w 328 +h 21 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(a=4)\}($(P)$(Q)fpSelect.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 147 +w 328 +h 21 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(a=5)\}($(P)$(Q)fpSelect.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 167 +w 328 +h 21 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(a=6)\}($(P)$(Q)fpSelect.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 187 +w 328 +h 21 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(a=7)\}($(P)$(Q)fpSelect.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 207 +w 328 +h 21 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(a=8)\}($(P)$(Q)fpSelect.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 227 +w 328 +h 21 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 0 +visPv "CALC\\\{(a=9)\}($(P)$(Q)fpSelect.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 50 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)fpSelect" +pressValue +releaseValue "0" +onLabel "0" +offLabel "0" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 70 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)fpSelect" +pressValue +releaseValue "1" +onLabel "1" +offLabel "1" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 90 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)fpSelect" +pressValue +releaseValue "2" +onLabel "2" +offLabel "2" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 110 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)fpSelect" +pressValue +releaseValue "3" +onLabel "3" +offLabel "3" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 130 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)fpSelect" +pressValue +releaseValue "4" +onLabel "4" +offLabel "4" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 150 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)fpSelect" +pressValue +releaseValue "5" +onLabel "5" +offLabel "5" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 170 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)fpSelect" +pressValue +releaseValue "6" +onLabel "6" +offLabel "6" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 190 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)fpSelect" +pressValue +releaseValue "7" +onLabel "7" +offLabel "7" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 210 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)fpSelect" +pressValue +releaseValue "8" +onLabel "8" +offLabel "8" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 230 +w 22 +h 16 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q)fpSelect" +pressValue +releaseValue "9" +onLabel "9" +offLabel "9" +3d +useEnumNumeric +font "helvetica-medium-r-8.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 135 +y 285 +w 95 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(Q)fpSelect" +indicatorPv "$(P)$(Q)fpSelect" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 240 +y 285 +w 90 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Refresh" +numPvs 2 +numDsps 1 +displayFileName { + 0 table_fixedPoints_refresh.edl +} +menuLabel { + 0 Fixed points +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/table_fixedPoints_refresh.edl b/opticsApp/op/edl/autoconvert/table_fixedPoints_refresh.edl new file mode 100644 index 0000000..e3424c0 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/table_fixedPoints_refresh.edl @@ -0,0 +1,64 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 551 +y 483 +w 330 +h 310 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 240 +y 285 +w 90 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Press again" +numPvs 2 +numDsps 1 +displayFileName { + 0 table_fixedPoints.edl +} +menuLabel { + 0 Fixed points +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/table_full.edl b/opticsApp/op/edl/autoconvert/table_full.edl new file mode 100644 index 0000000..6f6341f --- /dev/null +++ b/opticsApp/op/edl/autoconvert/table_full.edl @@ -0,0 +1,4423 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 964 +y 512 +w 490 +h 400 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 1 +w 486 +h 23 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 3 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 245 +y 5 +w 245 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "($(P)$(T))" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 405 +y 519 +w 285 +h 20 +controlPv "$(P)$(T).DESC" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 0 +w 245 +h 27 +controlPv "$(P)$(T).DESC" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 27 +w 489 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 487 +} +yPoints { +0 28 +1 28 +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 270 +w 80 +h 12 +controlPv "$(P)$(T).HLZ" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 180 +w 80 +h 12 +controlPv "$(P)$(T).HLY" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 90 +w 80 +h 12 +controlPv "$(P)$(T).HLX" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 282 +w 80 +h 15 +controlPv "$(P)$(T).EZ" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 26 +y 281 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 192 +w 80 +h 15 +controlPv "$(P)$(T).EY" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 26 +y 191 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 102 +w 80 +h 15 +controlPv "$(P)$(T).EX" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 26 +y 101 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 120 +w 80 +h 22 +controlPv "$(P)$(T).X" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 120 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "X" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 143 +w 80 +h 12 +controlPv "$(P)$(T).LLX" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 210 +w 80 +h 22 +controlPv "$(P)$(T).Y" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 210 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 43 +y 245 +w 44 +h 18 +controlPv "$(P)$(Q):y_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 233 +w 80 +h 12 +controlPv "$(P)$(T).LLY" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 300 +w 80 +h 22 +controlPv "$(P)$(T).Z" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 300 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Z" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 43 +y 335 +w 44 +h 18 +controlPv "$(P)$(Q):z_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 323 +w 80 +h 12 +controlPv "$(P)$(T).LLZ" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 208 +y 55 +w 65 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Limit" +} +visPv "CALC\\\{(A)\}($(P)$(T).LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 248 +y 55 +w 230 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Motors" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 10 +y 71 +w 95 +h 15 +controlPv "$(P)$(T).LEGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 55 +w 115 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Translate" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 85 +w 2 +h 273 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 6 +1 6 +} +yPoints { +0 86 +1 357 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 85 +w 2 +h 273 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 111 +1 111 +} +yPoints { +0 86 +1 357 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 52 +w 488 +h 2 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 2 +numPoints 2 { +xPoints { +0 1 +1 487 +} +yPoints { +0 53 +1 53 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 99 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 189 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 279 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 115 +y 120 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "AX" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 115 +y 210 +w 34 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "AY" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 115 +y 300 +w 34 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "AZ" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 115 +y 71 +w 105 +h 15 +controlPv "$(P)$(T).AEGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 115 +y 55 +w 125 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Rotate" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 225 +y 85 +w 2 +h 274 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 226 +1 226 +} +yPoints { +0 86 +1 358 +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 90 +w 80 +h 12 +controlPv "$(P)$(T).HLAX" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 102 +w 80 +h 15 +controlPv "$(P)$(T).EAX" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 120 +w 80 +h 22 +controlPv "$(P)$(T).AX" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 143 +w 80 +h 12 +controlPv "$(P)$(T).LLAX" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 180 +w 80 +h 12 +controlPv "$(P)$(T).HLAY" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 192 +w 80 +h 15 +controlPv "$(P)$(T).EAY" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 210 +w 80 +h 22 +controlPv "$(P)$(T).AY" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 233 +w 80 +h 12 +controlPv "$(P)$(T).LLAY" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 270 +w 80 +h 12 +controlPv "$(P)$(T).HLAZ" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 282 +w 80 +h 15 +controlPv "$(P)$(T).EAZ" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 300 +w 80 +h 22 +controlPv "$(P)$(T).AZ" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 323 +w 80 +h 12 +controlPv "$(P)$(T).LLAZ" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 141 +y 101 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 141 +y 191 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 141 +y 281 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 99 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 189 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 279 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 158 +y 335 +w 44 +h 18 +controlPv "$(P)$(Q):az_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 158 +y 245 +w 44 +h 18 +controlPv "$(P)$(Q):ay_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 158 +y 155 +w 44 +h 18 +controlPv "$(P)$(Q):ax_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 4 +y 86 +w 224 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 5 +1 227 +} +yPoints { +0 87 +1 87 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 4 +y 176 +w 223 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 5 +1 226 +} +yPoints { +0 177 +1 177 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 4 +y 266 +w 223 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 5 +1 226 +} +yPoints { +0 267 +1 267 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 4 +y 356 +w 225 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 5 +1 228 +} +yPoints { +0 357 +1 357 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 248 +y 300 +w 44 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M1Y" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 248 +y 210 +w 44 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M0Y" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 248 +y 120 +w 45 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M0X" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 281 +y 271 +w 7 +h 13 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M1Y).LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 281 +y 181 +w 7 +h 13 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M0Y).LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 281 +y 91 +w 7 +h 13 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M0X).LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 370 +y 71 +w 105 +h 15 +controlPv "$(P)$(M2X).EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 248 +y 71 +w 115 +h 15 +controlPv "$(P)$(M0X).EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 246 +y 85 +w 2 +h 272 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 247 +1 247 +} +yPoints { +0 86 +1 356 +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 288 +y 90 +w 64 +h 12 +controlPv "$(P)$(M0X).HLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 280 +y 102 +w 80 +h 15 +controlPv "$(P)$(M0X).RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 280 +y 120 +w 80 +h 22 +controlPv "$(P)$(M0X).VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 288 +y 143 +w 64 +h 12 +controlPv "$(P)$(M0X).LLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 288 +y 180 +w 64 +h 12 +controlPv "$(P)$(M0Y).HLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 280 +y 192 +w 80 +h 15 +controlPv "$(P)$(M0Y).RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 280 +y 210 +w 80 +h 22 +controlPv "$(P)$(M0Y).VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 288 +y 233 +w 64 +h 12 +controlPv "$(P)$(M0Y).LLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 288 +y 270 +w 64 +h 12 +controlPv "$(P)$(M1Y).HLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 280 +y 282 +w 80 +h 15 +controlPv "$(P)$(M1Y).RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 280 +y 300 +w 80 +h 22 +controlPv "$(P)$(M1Y).VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 288 +y 323 +w 64 +h 12 +controlPv "$(P)$(M1Y).LLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 300 +y 335 +w 40 +h 18 +controlPv "$(P)$(M1Y).TWV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 300 +y 245 +w 40 +h 18 +controlPv "$(P)$(M0Y).TWV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 300 +y 155 +w 40 +h 18 +controlPv "$(P)$(M0X).TWV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 351 +y 91 +w 7 +h 13 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M0X).HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 351 +y 181 +w 7 +h 13 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M0Y).HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 351 +y 271 +w 7 +h 13 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M1Y).HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 279 +y 89 +w 82 +h 85 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M0X).DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 279 +y 179 +w 82 +h 85 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M0Y).DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 279 +y 269 +w 82 +h 85 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M1Y).DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 368 +y 300 +w 44 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M2Z" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 368 +y 210 +w 44 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M2Y" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 368 +y 120 +w 45 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M2X" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 401 +y 271 +w 7 +h 13 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M2Z).LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 401 +y 181 +w 7 +h 13 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M2Y).LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 401 +y 91 +w 7 +h 13 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M2X).LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 364 +y 86 +w 2 +h 272 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 365 +1 365 +} +yPoints { +0 87 +1 357 +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 408 +y 90 +w 64 +h 12 +controlPv "$(P)$(M2X).HLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 400 +y 102 +w 80 +h 15 +controlPv "$(P)$(M2X).RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 400 +y 120 +w 80 +h 22 +controlPv "$(P)$(M2X).VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 408 +y 143 +w 64 +h 12 +controlPv "$(P)$(M2X).LLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 408 +y 180 +w 64 +h 12 +controlPv "$(P)$(M2Y).HLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 400 +y 192 +w 80 +h 15 +controlPv "$(P)$(M2Y).RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 400 +y 210 +w 80 +h 22 +controlPv "$(P)$(M2Y).VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 408 +y 233 +w 64 +h 12 +controlPv "$(P)$(M2Y).LLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 408 +y 270 +w 64 +h 12 +controlPv "$(P)$(M2Z).HLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 400 +y 282 +w 80 +h 15 +controlPv "$(P)$(M2Z).RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 400 +y 300 +w 80 +h 22 +controlPv "$(P)$(M2Z).VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 408 +y 323 +w 64 +h 12 +controlPv "$(P)$(M2Z).LLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 420 +y 155 +w 40 +h 18 +controlPv "$(P)$(M2X).TWV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 420 +y 245 +w 40 +h 18 +controlPv "$(P)$(M2Y).TWV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 420 +y 335 +w 40 +h 18 +controlPv "$(P)$(M2Z).TWV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 471 +y 91 +w 7 +h 13 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M2X).HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 471 +y 181 +w 7 +h 13 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M2Y).HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 471 +y 271 +w 7 +h 13 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M2Z).HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 399 +y 89 +w 82 +h 85 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M2X).DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 399 +y 179 +w 82 +h 85 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M2Y).DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 399 +y 269 +w 82 +h 85 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M2Z).DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 245 +y 86 +w 239 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 246 +1 483 +} +yPoints { +0 87 +1 87 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 245 +y 176 +w 240 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 246 +1 484 +} +yPoints { +0 177 +1 177 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 245 +y 266 +w 240 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 246 +1 484 +} +yPoints { +0 267 +1 267 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 245 +y 356 +w 239 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 246 +1 483 +} +yPoints { +0 357 +1 357 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 482 +y 85 +w 2 +h 273 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 483 +1 483 +} +yPoints { +0 86 +1 357 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 220 +y 365 +w 75 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Moving" +} +visPv "CALC\\\{(A)\}($(P)$(Q):done.VAL)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 220 +y 365 +w 75 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 29440 65280 27392 +bgColor index 3 +useDisplayBg +value { + "Done" +} +visPv "CALC\\\{(A)\}($(P)$(Q):done.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 43 +y 155 +w 44 +h 18 +controlPv "$(P)$(Q):x_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 387 +w 90 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Record version:" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 90 +y 387 +w 30 +h 12 +controlPv "$(P)$(T).VERS" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 108 +y 34 +w 85 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Fixed point:" +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 365 +w 83 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(T).SET" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 180 +y 365 +w 40 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(T).INIT" +pressValue "1" +releaseValue "0" +onLabel "Init" +offLabel "Init" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 365 +w 40 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(T).SYNC" +pressValue "1" +releaseValue "0" +onLabel "Sync" +offLabel "Sync" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 365 +w 40 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(T).ZERO" +pressValue "1" +releaseValue +onLabel "Zero" +offLabel "Zero" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 305 +y 365 +w 115 +h 35 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):stop.VAL" +pressValue "1" +releaseValue +onLabel "Stop Table" +offLabel "Stop Table" +3d +useEnumNumeric +font "helvetica-medium-r-18.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 87 +y 243 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):y_tweak.A" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 23 +y 243 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):y_tweak.B" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 87 +y 333 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):z_tweak.A" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 23 +y 333 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):z_tweak.B" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 138 +y 153 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):ax_tweak.B" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 138 +y 243 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):ay_tweak.B" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 138 +y 333 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):az_tweak.B" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 202 +y 153 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):ax_tweak.A" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 202 +y 243 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):ay_tweak.A" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 202 +y 333 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):az_tweak.A" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 333 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(M1Y).TWR" +pressValue "1" +releaseValue "0" +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 153 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(M0X).TWR" +pressValue "1" +releaseValue "0" +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 243 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(M0Y).TWR" +pressValue "1" +releaseValue "0" +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 340 +y 153 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(M0X).TWF" +pressValue "1" +releaseValue "0" +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 340 +y 243 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(M0Y).TWF" +pressValue "1" +releaseValue "0" +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 340 +y 333 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(M1Y).TWF" +pressValue "1" +releaseValue "0" +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 333 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(M2Z).TWR" +pressValue "1" +releaseValue "0" +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 153 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(M2X).TWR" +pressValue "1" +releaseValue "0" +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 243 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(M2Y).TWR" +pressValue "1" +releaseValue "0" +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 153 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(M2X).TWF" +pressValue "1" +releaseValue "0" +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 243 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(M2Y).TWF" +pressValue "1" +releaseValue "0" +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 333 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(M2Z).TWF" +pressValue "1" +releaseValue "0" +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 366 +y 88 +w 18 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 10 +numDsps 5 +displayFileName { + 0 motorx_tiny.edl + 1 motorx.edl + 2 motorx_more.edl + 3 motorx_setup.edl + 4 scanParms.edl +} +menuLabel { + 0 M2X (Tiny) + 1 M2X (Small) + 2 M2X (Medium) + 3 M2X (Setup) + 4 Scan parameters +} +symbols { + 0 "P=$(P),M=$(M2X)" + 1 "P=$(P),M=$(M2X)" + 2 "P=$(P),M=$(M2X)" + 3 "P=$(P),M=$(M2X)" + 4 "P=$(P),Q=$(M2X),PV=$(M2X)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 366 +y 178 +w 18 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 10 +numDsps 5 +displayFileName { + 0 motorx_tiny.edl + 1 motorx.edl + 2 motorx_more.edl + 3 motorx_setup.edl + 4 scanParms.edl +} +menuLabel { + 0 M2Y (Tiny) + 1 M2Y (Small) + 2 M2Y (Medium) + 3 M2Y (Setup) + 4 Scan parameters +} +symbols { + 0 "P=$(P),M=$(M2Y)" + 1 "P=$(P),M=$(M2Y)" + 2 "P=$(P),M=$(M2Y)" + 3 "P=$(P),M=$(M2Y)" + 4 "P=$(P),Q=$(M2Y),PV=$(M2Y)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 366 +y 268 +w 18 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 10 +numDsps 5 +displayFileName { + 0 motorx_tiny.edl + 1 motorx.edl + 2 motorx_more.edl + 3 motorx_setup.edl + 4 scanParms.edl +} +menuLabel { + 0 M2Z (Tiny) + 1 M2Z (Small) + 2 M2Z (Medium) + 3 M2Z (Setup) + 4 Scan parameters +} +symbols { + 0 "P=$(P),M=$(M2Z)" + 1 "P=$(P),M=$(M2Z)" + 2 "P=$(P),M=$(M2Z)" + 3 "P=$(P),M=$(M2Z)" + 4 "P=$(P),Q=$(M2Z),PV=$(M2Z)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 248 +y 268 +w 18 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 10 +numDsps 5 +displayFileName { + 0 motorx_tiny.edl + 1 motorx.edl + 2 motorx_more.edl + 3 motorx_setup.edl + 4 scanParms.edl +} +menuLabel { + 0 M1Y (Tiny) + 1 M1Y (Small) + 2 M1Y (Medium) + 3 M1Y (Setup) + 4 Scan parameters +} +symbols { + 0 "P=$(P),M=$(M1Y)" + 1 "P=$(P),M=$(M1Y)" + 2 "P=$(P),M=$(M1Y)" + 3 "P=$(P),M=$(M1Y)" + 4 "P=$(P),Q=$(M1Y),PV=$(M1Y)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 248 +y 178 +w 18 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 10 +numDsps 5 +displayFileName { + 0 motorx_tiny.edl + 1 motorx.edl + 2 motorx_more.edl + 3 motorx_setup.edl + 4 scanParms.edl +} +menuLabel { + 0 M0Y (Tiny) + 1 M0Y (Small) + 2 M0Y (Medium) + 3 M0Y (Setup) + 4 Scan parameters +} +symbols { + 0 "P=$(P),M=$(M0Y)" + 1 "P=$(P),M=$(M0Y)" + 2 "P=$(P),M=$(M0Y)" + 3 "P=$(P),M=$(M0Y)" + 4 "P=$(P),Q=$(M0Y),PV=$(M0Y)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 248 +y 88 +w 18 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 10 +numDsps 5 +displayFileName { + 0 motorx_tiny.edl + 1 motorx.edl + 2 motorx_more.edl + 3 motorx_setup.edl + 4 scanParms.edl +} +menuLabel { + 0 M0X (Tiny) + 1 M0X (Small) + 2 M0X (Medium) + 3 M0X (Setup) + 4 Scan parameters +} +symbols { + 0 "P=$(P),M=$(M0X)" + 1 "P=$(P),M=$(M0X)" + 2 "P=$(P),M=$(M0X)" + 3 "P=$(P),M=$(M0X)" + 4 "P=$(P),Q=$(M0X),PV=$(M0X)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 112 +y 88 +w 18 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(Q)AX,NAME=$(Q)AX,DESC=$(Q)AX,EGU=$(T).AEGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 112 +y 178 +w 18 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(Q)AY,NAME=$(Q)AY,DESC=$(Q)AY,EGU=$(T).AEGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 112 +y 268 +w 18 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(Q)AZ,NAME=$(Q)AZ,DESC=$(Q)AZ,EGU=$(T).AEGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 7 +y 268 +w 18 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(Q)Z,NAME=$(Q)Z,DESC=$(Q)Z,EGU=$(T).LEGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 7 +y 178 +w 18 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(Q)Y,NAME=$(Q)Y,DESC=$(Q)Y,EGU=$(T).LEGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 7 +y 88 +w 18 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(Q)X,NAME=$(Q)X,DESC=$(Q)X,EGU=$(T).LEGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 440 +y 380 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "More" +numPvs 10 +numDsps 5 +displayFileName { + 0 table_setup_SRI.edl + 1 table_setup_GEOCARS.edl + 2 table_setup_NEWPORT.edl + 3 table_setup_PNC.edl + 4 table_fixedPoints.edl +} +menuLabel { + 0 Setup (SRI geometry) + 1 Setup (GEOCARS geometry) + 2 Setup (NEWPORT geometry) + 3 Setup (PNC geometry) + 4 Fixed points +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T)" + 1 "P=$(P),Q=$(Q),T=$(T)" + 2 "P=$(P),Q=$(Q),T=$(T)" + 3 "P=$(P),Q=$(Q),T=$(T)" + 4 "P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 440 +y 360 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Less" +numPvs 2 +numDsps 1 +displayFileName { + 0 table.edl +} +menuLabel { + 0 Small display +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 87 +y 153 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):x_tweak.A" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 23 +y 153 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):x_tweak.B" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 395 +y 31 +w 95 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Refresh menu" +numPvs 2 +numDsps 1 +displayFileName { + 0 table_full_refresh.edl +} +menuLabel { + 0 Refresh fixed-point menu +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 195 +y 31 +w 200 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(Q)fpSelect" +indicatorPv "$(P)$(Q)fpSelect" +font "helvetica-medium-r-12.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/table_full_refresh.edl b/opticsApp/op/edl/autoconvert/table_full_refresh.edl new file mode 100644 index 0000000..0f7978f --- /dev/null +++ b/opticsApp/op/edl/autoconvert/table_full_refresh.edl @@ -0,0 +1,88 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 313 +y 445 +w 490 +h 400 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 405 +y 519 +w 285 +h 20 +controlPv "$(P)$(T).DESC" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 395 +y 31 +w 95 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Press again" +numPvs 2 +numDsps 1 +displayFileName { + 0 table_full.edl +} +menuLabel { + 0 Refresh fixed-point menu +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/table_full_soft.edl b/opticsApp/op/edl/autoconvert/table_full_soft.edl new file mode 100644 index 0000000..b2535d3 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/table_full_soft.edl @@ -0,0 +1,4555 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 950 +y 512 +w 490 +h 400 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 1 +w 486 +h 23 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 3 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 245 +y 5 +w 245 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "($(P)$(T))" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 405 +y 519 +w 285 +h 20 +controlPv "$(P)$(T).DESC" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 0 +w 245 +h 27 +controlPv "$(P)$(T).DESC" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 27 +w 489 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 487 +} +yPoints { +0 28 +1 28 +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 270 +w 80 +h 12 +controlPv "$(P)$(Q):z.HLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 180 +w 80 +h 12 +controlPv "$(P)$(Q):y.HLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 90 +w 80 +h 12 +controlPv "$(P)$(Q):x.HLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 282 +w 80 +h 15 +controlPv "$(P)$(Q):z.RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 26 +y 281 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 192 +w 80 +h 15 +controlPv "$(P)$(Q):y.RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 26 +y 191 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 102 +w 80 +h 15 +controlPv "$(P)$(Q):x.RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 26 +y 101 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 120 +w 80 +h 22 +controlPv "$(P)$(Q):x.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 120 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "X" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 143 +w 80 +h 12 +controlPv "$(P)$(Q):x.LLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 210 +w 80 +h 22 +controlPv "$(P)$(Q):y.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 210 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 43 +y 245 +w 44 +h 18 +controlPv "$(P)$(Q):y.TWV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 233 +w 80 +h 12 +controlPv "$(P)$(Q):y.LLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 300 +w 80 +h 22 +controlPv "$(P)$(Q):z.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 300 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Z" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 43 +y 335 +w 44 +h 18 +controlPv "$(P)$(Q):z.TWV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 323 +w 80 +h 12 +controlPv "$(P)$(Q):z.LLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 208 +y 55 +w 65 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Limit" +} +visPv "CALC\\\{(A)\}($(P)$(T).LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 248 +y 55 +w 230 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Motors" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 10 +y 71 +w 95 +h 15 +controlPv "$(P)$(T).LEGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 55 +w 115 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Translate" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 85 +w 2 +h 273 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 6 +1 6 +} +yPoints { +0 86 +1 357 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 85 +w 2 +h 273 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 111 +1 111 +} +yPoints { +0 86 +1 357 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 52 +w 488 +h 2 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 2 +numPoints 2 { +xPoints { +0 1 +1 487 +} +yPoints { +0 53 +1 53 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 99 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 189 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 279 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 115 +y 120 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "AX" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 115 +y 210 +w 34 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "AY" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 115 +y 300 +w 34 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "AZ" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 115 +y 71 +w 105 +h 15 +controlPv "$(P)$(T).AEGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 115 +y 55 +w 125 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Rotate" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 225 +y 85 +w 2 +h 274 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 226 +1 226 +} +yPoints { +0 86 +1 358 +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 90 +w 80 +h 12 +controlPv "$(P)$(Q):ax.HLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 102 +w 80 +h 15 +controlPv "$(P)$(Q):ax.RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 120 +w 80 +h 22 +controlPv "$(P)$(Q):ax.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 143 +w 80 +h 12 +controlPv "$(P)$(Q):ax.LLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 180 +w 80 +h 12 +controlPv "$(P)$(Q):ay.HLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 192 +w 80 +h 15 +controlPv "$(P)$(Q):ay.RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 210 +w 80 +h 22 +controlPv "$(P)$(Q):ay.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 233 +w 80 +h 12 +controlPv "$(P)$(Q):ay.LLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 270 +w 80 +h 12 +controlPv "$(P)$(Q):az.HLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 282 +w 80 +h 15 +controlPv "$(P)$(Q):az.RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 300 +w 80 +h 22 +controlPv "$(P)$(Q):az.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 323 +w 80 +h 12 +controlPv "$(P)$(Q):az.LLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 141 +y 101 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 141 +y 191 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 141 +y 281 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 99 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 189 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 279 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 158 +y 335 +w 44 +h 18 +controlPv "$(P)$(Q):az.TWV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 158 +y 245 +w 44 +h 18 +controlPv "$(P)$(Q):ay.TWV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 158 +y 155 +w 44 +h 18 +controlPv "$(P)$(Q):ax.TWV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 4 +y 86 +w 224 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 5 +1 227 +} +yPoints { +0 87 +1 87 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 4 +y 176 +w 223 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 5 +1 226 +} +yPoints { +0 177 +1 177 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 4 +y 266 +w 223 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 5 +1 226 +} +yPoints { +0 267 +1 267 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 4 +y 356 +w 225 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 5 +1 228 +} +yPoints { +0 357 +1 357 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 248 +y 300 +w 44 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M1Y" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 248 +y 210 +w 44 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M0Y" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 248 +y 120 +w 45 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M0X" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 281 +y 271 +w 7 +h 13 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M1Y).LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 281 +y 181 +w 7 +h 13 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M0Y).LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 281 +y 91 +w 7 +h 13 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M0X).LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 370 +y 71 +w 105 +h 15 +controlPv "$(P)$(M2X).EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 248 +y 71 +w 115 +h 15 +controlPv "$(P)$(M0X).EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 246 +y 85 +w 2 +h 272 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 247 +1 247 +} +yPoints { +0 86 +1 356 +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 288 +y 90 +w 64 +h 12 +controlPv "$(P)$(M0X).HLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 280 +y 102 +w 80 +h 15 +controlPv "$(P)$(M0X).RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 280 +y 120 +w 80 +h 22 +controlPv "$(P)$(M0X).VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 288 +y 143 +w 64 +h 12 +controlPv "$(P)$(M0X).LLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 288 +y 180 +w 64 +h 12 +controlPv "$(P)$(M0Y).HLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 280 +y 192 +w 80 +h 15 +controlPv "$(P)$(M0Y).RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 280 +y 210 +w 80 +h 22 +controlPv "$(P)$(M0Y).VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 288 +y 233 +w 64 +h 12 +controlPv "$(P)$(M0Y).LLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 288 +y 270 +w 64 +h 12 +controlPv "$(P)$(M1Y).HLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 280 +y 282 +w 80 +h 15 +controlPv "$(P)$(M1Y).RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 280 +y 300 +w 80 +h 22 +controlPv "$(P)$(M1Y).VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 288 +y 323 +w 64 +h 12 +controlPv "$(P)$(M1Y).LLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 300 +y 335 +w 40 +h 18 +controlPv "$(P)$(M1Y).TWV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 300 +y 245 +w 40 +h 18 +controlPv "$(P)$(M0Y).TWV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 300 +y 155 +w 40 +h 18 +controlPv "$(P)$(M0X).TWV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 351 +y 91 +w 7 +h 13 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M0X).HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 351 +y 181 +w 7 +h 13 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M0Y).HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 351 +y 271 +w 7 +h 13 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M1Y).HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 279 +y 89 +w 82 +h 85 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M0X).DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 279 +y 179 +w 82 +h 85 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M0Y).DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 279 +y 269 +w 82 +h 85 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M1Y).DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 368 +y 300 +w 44 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M2Z" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 368 +y 210 +w 44 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M2Y" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 368 +y 120 +w 45 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M2X" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 401 +y 271 +w 7 +h 13 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M2Z).LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 401 +y 181 +w 7 +h 13 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M2Y).LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 401 +y 91 +w 7 +h 13 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M2X).LLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 364 +y 86 +w 2 +h 272 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 365 +1 365 +} +yPoints { +0 87 +1 357 +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 408 +y 90 +w 64 +h 12 +controlPv "$(P)$(M2X).HLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 400 +y 102 +w 80 +h 15 +controlPv "$(P)$(M2X).RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 400 +y 120 +w 80 +h 22 +controlPv "$(P)$(M2X).VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 408 +y 143 +w 64 +h 12 +controlPv "$(P)$(M2X).LLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 408 +y 180 +w 64 +h 12 +controlPv "$(P)$(M2Y).HLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 400 +y 192 +w 80 +h 15 +controlPv "$(P)$(M2Y).RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 400 +y 210 +w 80 +h 22 +controlPv "$(P)$(M2Y).VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 408 +y 233 +w 64 +h 12 +controlPv "$(P)$(M2Y).LLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 408 +y 270 +w 64 +h 12 +controlPv "$(P)$(M2Z).HLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 400 +y 282 +w 80 +h 15 +controlPv "$(P)$(M2Z).RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 400 +y 300 +w 80 +h 22 +controlPv "$(P)$(M2Z).VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 408 +y 323 +w 64 +h 12 +controlPv "$(P)$(M2Z).LLM" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 420 +y 155 +w 40 +h 18 +controlPv "$(P)$(M2X).TWV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 420 +y 245 +w 40 +h 18 +controlPv "$(P)$(M2Y).TWV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 420 +y 335 +w 40 +h 18 +controlPv "$(P)$(M2Z).TWV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 471 +y 91 +w 7 +h 13 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M2X).HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 471 +y 181 +w 7 +h 13 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M2Y).HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 471 +y 271 +w 7 +h 13 +lineColor rgb 64768 0 0 +fill +fillColor rgb 64768 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M2Z).HLS)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 399 +y 89 +w 82 +h 85 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M2X).DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 399 +y 179 +w 82 +h 85 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M2Y).DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 399 +y 269 +w 82 +h 85 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(M2Z).DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 245 +y 86 +w 239 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 246 +1 483 +} +yPoints { +0 87 +1 87 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 245 +y 176 +w 240 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 246 +1 484 +} +yPoints { +0 177 +1 177 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 245 +y 266 +w 240 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 246 +1 484 +} +yPoints { +0 267 +1 267 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 245 +y 356 +w 239 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 246 +1 483 +} +yPoints { +0 357 +1 357 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 482 +y 85 +w 2 +h 273 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 483 +1 483 +} +yPoints { +0 86 +1 357 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 220 +y 365 +w 75 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Moving" +} +visPv "CALC\\\{(A)\}($(P)$(Q):done.VAL)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 220 +y 365 +w 75 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 29440 65280 27392 +bgColor index 3 +useDisplayBg +value { + "Done" +} +visPv "CALC\\\{(A)\}($(P)$(Q):done.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 43 +y 155 +w 44 +h 18 +controlPv "$(P)$(Q):x.TWV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 387 +w 90 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Record version:" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 90 +y 387 +w 30 +h 12 +controlPv "$(P)$(T).VERS" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 108 +y 34 +w 85 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Fixed point:" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 89 +w 84 +h 85 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(Q):x.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 89 +w 84 +h 85 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(Q):ax.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 179 +w 84 +h 85 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(Q):y.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 180 +w 84 +h 85 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(Q):ay.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 270 +w 84 +h 85 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(Q):z.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 270 +w 84 +h 85 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(Q):az.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 365 +w 83 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(T).SET" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 180 +y 365 +w 40 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):init" +pressValue "1" +releaseValue "0" +onLabel "Init" +offLabel "Init" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 365 +w 40 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):sync" +pressValue "1" +releaseValue "0" +onLabel "Sync" +offLabel "Sync" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 365 +w 40 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):zero" +pressValue "1" +releaseValue +onLabel "Zero" +offLabel "Zero" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 305 +y 365 +w 115 +h 35 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):stop.VAL" +pressValue "1" +releaseValue +onLabel "Stop Table" +offLabel "Stop Table" +3d +useEnumNumeric +font "helvetica-medium-r-18.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 87 +y 243 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):y.TWF" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 23 +y 243 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):y.TWR" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 87 +y 333 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):z.TWF" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 23 +y 333 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):z.TWR" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 138 +y 153 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):ax.TWR" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 138 +y 243 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):ay.TWR" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 138 +y 333 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):az.TWR" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 202 +y 153 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):ax.TWF" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 202 +y 243 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):ay.TWF" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 202 +y 333 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):az.TWF" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 333 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(M1Y).TWR" +pressValue "1" +releaseValue "0" +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 153 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(M0X).TWR" +pressValue "1" +releaseValue "0" +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 243 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(M0Y).TWR" +pressValue "1" +releaseValue "0" +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 340 +y 153 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(M0X).TWF" +pressValue "1" +releaseValue "0" +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 340 +y 243 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(M0Y).TWF" +pressValue "1" +releaseValue "0" +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 340 +y 333 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(M1Y).TWF" +pressValue "1" +releaseValue "0" +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 333 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(M2Z).TWR" +pressValue "1" +releaseValue "0" +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 153 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(M2X).TWR" +pressValue "1" +releaseValue "0" +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 243 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(M2Y).TWR" +pressValue "1" +releaseValue "0" +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 153 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(M2X).TWF" +pressValue "1" +releaseValue "0" +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 243 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(M2Y).TWF" +pressValue "1" +releaseValue "0" +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 333 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(M2Z).TWF" +pressValue "1" +releaseValue "0" +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 366 +y 88 +w 18 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 10 +numDsps 5 +displayFileName { + 0 motorx_tiny.edl + 1 motorx.edl + 2 motorx_more.edl + 3 motorx_setup.edl + 4 scanParms.edl +} +menuLabel { + 0 M2X (Tiny) + 1 M2X (Small) + 2 M2X (Medium) + 3 M2X (Setup) + 4 Scan parameters +} +symbols { + 0 "P=$(P),M=$(M2X)" + 1 "P=$(P),M=$(M2X)" + 2 "P=$(P),M=$(M2X)" + 3 "P=$(P),M=$(M2X)" + 4 "P=$(P),Q=$(M2X),PV=$(M2X)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 366 +y 178 +w 18 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 10 +numDsps 5 +displayFileName { + 0 motorx_tiny.edl + 1 motorx.edl + 2 motorx_more.edl + 3 motorx_setup.edl + 4 scanParms.edl +} +menuLabel { + 0 M2Y (Tiny) + 1 M2Y (Small) + 2 M2Y (Medium) + 3 M2Y (Setup) + 4 Scan parameters +} +symbols { + 0 "P=$(P),M=$(M2Y)" + 1 "P=$(P),M=$(M2Y)" + 2 "P=$(P),M=$(M2Y)" + 3 "P=$(P),M=$(M2Y)" + 4 "P=$(P),Q=$(M2Y),PV=$(M2Y)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 366 +y 268 +w 18 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 10 +numDsps 5 +displayFileName { + 0 motorx_tiny.edl + 1 motorx.edl + 2 motorx_more.edl + 3 motorx_setup.edl + 4 scanParms.edl +} +menuLabel { + 0 M2Z (Tiny) + 1 M2Z (Small) + 2 M2Z (Medium) + 3 M2Z (Setup) + 4 Scan parameters +} +symbols { + 0 "P=$(P),M=$(M2Z)" + 1 "P=$(P),M=$(M2Z)" + 2 "P=$(P),M=$(M2Z)" + 3 "P=$(P),M=$(M2Z)" + 4 "P=$(P),Q=$(M2Z),PV=$(M2Z)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 248 +y 268 +w 18 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 10 +numDsps 5 +displayFileName { + 0 motorx_tiny.edl + 1 motorx.edl + 2 motorx_more.edl + 3 motorx_setup.edl + 4 scanParms.edl +} +menuLabel { + 0 M1Y (Tiny) + 1 M1Y (Small) + 2 M1Y (Medium) + 3 M1Y (Setup) + 4 Scan parameters +} +symbols { + 0 "P=$(P),M=$(M1Y)" + 1 "P=$(P),M=$(M1Y)" + 2 "P=$(P),M=$(M1Y)" + 3 "P=$(P),M=$(M1Y)" + 4 "P=$(P),Q=$(M1Y),PV=$(M1Y)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 248 +y 178 +w 18 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 10 +numDsps 5 +displayFileName { + 0 motorx_tiny.edl + 1 motorx.edl + 2 motorx_more.edl + 3 motorx_setup.edl + 4 scanParms.edl +} +menuLabel { + 0 M0Y (Tiny) + 1 M0Y (Small) + 2 M0Y (Medium) + 3 M0Y (Setup) + 4 Scan parameters +} +symbols { + 0 "P=$(P),M=$(M0Y)" + 1 "P=$(P),M=$(M0Y)" + 2 "P=$(P),M=$(M0Y)" + 3 "P=$(P),M=$(M0Y)" + 4 "P=$(P),Q=$(M0Y),PV=$(M0Y)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 248 +y 88 +w 18 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 10 +numDsps 5 +displayFileName { + 0 motorx_tiny.edl + 1 motorx.edl + 2 motorx_more.edl + 3 motorx_setup.edl + 4 scanParms.edl +} +menuLabel { + 0 M0X (Tiny) + 1 M0X (Small) + 2 M0X (Medium) + 3 M0X (Setup) + 4 Scan parameters +} +symbols { + 0 "P=$(P),M=$(M0X)" + 1 "P=$(P),M=$(M0X)" + 2 "P=$(P),M=$(M0X)" + 3 "P=$(P),M=$(M0X)" + 4 "P=$(P),Q=$(M0X),PV=$(M0X)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 440 +y 380 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "More" +numPvs 10 +numDsps 5 +displayFileName { + 0 table_setup_SRI.edl + 1 table_setup_GEOCARS.edl + 2 table_setup_NEWPORT.edl + 3 table_setup_PNC.edl + 4 table_fixedPoints.edl +} +menuLabel { + 0 Setup (SRI geometry) + 1 Setup (GEOCARS geometry) + 2 Setup (NEWPORT geometry) + 3 Setup (PNC geometry) + 4 Fixed points +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T)" + 1 "P=$(P),Q=$(Q),T=$(T)" + 2 "P=$(P),Q=$(Q),T=$(T)" + 3 "P=$(P),Q=$(Q),T=$(T)" + 4 "P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z)" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 440 +y 360 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Less" +numPvs 2 +numDsps 1 +displayFileName { + 0 table_soft.edl +} +menuLabel { + 0 Small display +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 87 +y 153 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):x.TWF" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 23 +y 153 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):x.TWR" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 395 +y 31 +w 95 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Refresh menu" +numPvs 2 +numDsps 1 +displayFileName { + 0 table_full_refresh.edl +} +menuLabel { + 0 Refresh fixed-point menu +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 195 +y 31 +w 200 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(Q)fpSelect" +indicatorPv "$(P)$(Q)fpSelect" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 112 +y 88 +w 18 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 M0X (Small) + 1 M0X (Medium) +} +symbols { + 0 "P=$(P),M=$(Q):ax" + 1 "P=$(P),M=$(Q):ax" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 7 +y 88 +w 18 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 M0X (Small) + 1 M0X (Medium) +} +symbols { + 0 "P=$(P),M=$(Q):x" + 1 "P=$(P),M=$(Q):x" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 112 +y 178 +w 18 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 M0X (Small) + 1 M0X (Medium) +} +symbols { + 0 "P=$(P),M=$(Q):ay" + 1 "P=$(P),M=$(Q):ay" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 7 +y 178 +w 18 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 M0X (Small) + 1 M0X (Medium) +} +symbols { + 0 "P=$(P),M=$(Q):y" + 1 "P=$(P),M=$(Q):y" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 112 +y 268 +w 18 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 M0X (Small) + 1 M0X (Medium) +} +symbols { + 0 "P=$(P),M=$(Q):az" + 1 "P=$(P),M=$(Q):az" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 7 +y 268 +w 18 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 4 +numDsps 2 +displayFileName { + 0 motorx.edl + 1 motorx_more.edl +} +menuLabel { + 0 M0X (Small) + 1 M0X (Medium) +} +symbols { + 0 "P=$(P),M=$(Q):z" + 1 "P=$(P),M=$(Q):z" +} +replaceSymbols { + 0 1 + 1 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/table_help.edl b/opticsApp/op/edl/autoconvert/table_help.edl new file mode 100644 index 0000000..b8bcb84 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/table_help.edl @@ -0,0 +1,810 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 10 +y 10 +w 410 +h 360 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 2 +w 119 +h 100 +lineColor rgb 51200 51200 51200 +fill +fillColor rgb 51200 51200 51200 +lineWidth 2 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 2 +y 2 +w 120 +h 101 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 101 +y 115 +w 300 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Use: Changes to X, Y, etc. will move table" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 101 +y 130 +w 300 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Set: Changes to X, Y, etc. will change table" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 101 +y 170 +w 300 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Redefine current table coordinates as zero" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 101 +y 185 +w 300 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "(without moving any motors)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 101 +y 145 +w 300 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + " calibration without moving motors" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 101 +y 220 +w 300 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Update table coordinates from current" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 101 +y 235 +w 300 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "motor positions; maintain calibration" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 101 +y 275 +w 300 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "motor positions; abandon calibration" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 101 +y 260 +w 300 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Update table coordinates from current" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 19 +y 49 +w 100 +h 22 +controlPv "$(P)$(T).X" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 4 +y 49 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "X" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 19 +y 84 +w 100 +h 15 +controlPv +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 47872 47872 47872 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 39 +y 84 +w 60 +h 18 +controlPv "$(P)$(Q):x_tweak.C" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 19 +y 69 +w 100 +h 14 +controlPv "$(P)$(T).LLX" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 130 +y 52 +w 275 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Drive value (--{transform}--> motors)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 130 +y 70 +w 275 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Low limit (calc'd from motor limits)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 130 +y 87 +w 275 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Tweak (type in step size, press buttons)" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 4 +y 108 +w 397 +h 0 +lineColor rgb 10752 25344 58368 +fillColor rgb 10752 25344 58368 +lineWidth 0 +numPoints 2 { +xPoints { +0 4 +1 401 +} +yPoints { +0 108 +1 108 +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 19 +y 4 +w 100 +h 14 +controlPv "$(P)$(T).HLX" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 19 +y 34 +w 100 +h 14 +controlPv "$(P)$(T).XRB" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 130 +y 34 +w 275 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Drive-value readback" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 130 +y 3 +w 275 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "High limit (calc'd from motor limits)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 19 +y 20 +w 100 +h 14 +controlPv "$(P)$(T).EX" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 130 +y 20 +w 275 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Encoder readback" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 4 +y 210 +w 397 +h 0 +lineColor rgb 10752 25344 58368 +fillColor rgb 10752 25344 58368 +lineWidth 0 +lineStyle "dash" +numPoints 2 { +xPoints { +0 4 +1 401 +} +yPoints { +0 210 +1 210 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 4 +y 300 +w 397 +h 0 +lineColor rgb 10752 25344 58368 +fillColor rgb 10752 25344 58368 +lineWidth 0 +lineStyle "dash" +numPoints 2 { +xPoints { +0 4 +1 401 +} +yPoints { +0 300 +1 300 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 310 +w 390 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "A positive-sense rotation turns table clockwise when" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 325 +w 390 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "viewed from the + axis. (For example, increasing AY" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 340 +w 390 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "rotates the table clockwise, as seen from above.)" +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 3 +y 115 +w 83 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 57600 36864 5376 +selectColor rgb 57600 36864 5376 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(T).SET" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 6 +y 170 +w 40 +h 20 +fgColor rgb 0 0 0 +onColor rgb 57600 36864 5376 +offColor rgb 57600 36864 5376 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(T).ZERO" +pressValue "1" +releaseValue +onLabel "Zero" +offLabel "Zero" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 6 +y 220 +w 40 +h 20 +fgColor rgb 0 0 0 +onColor rgb 57600 36864 5376 +offColor rgb 57600 36864 5376 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(T).SYNC" +pressValue "1" +releaseValue "0" +onLabel "Sync" +offLabel "Sync" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 6 +y 260 +w 40 +h 20 +fgColor rgb 0 0 0 +onColor rgb 57600 36864 5376 +offColor rgb 57600 36864 5376 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(T).INIT" +pressValue "1" +releaseValue "0" +onLabel "Init" +offLabel "Init" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 99 +y 84 +w 20 +h 18 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):x_inc.VAL" +pressValue "1" +releaseValue "0" +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 19 +y 84 +w 20 +h 18 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):x_dec.VAL" +pressValue "1" +releaseValue "0" +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/table_limits.edl b/opticsApp/op/edl/autoconvert/table_limits.edl new file mode 100644 index 0000000..f5240c2 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/table_limits.edl @@ -0,0 +1,975 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 800 +y 532 +w 700 +h 130 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 5 +w 110 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "User limits" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 700 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 1 +1 699 +} +yPoints { +0 1 +1 1 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 110 +y 9 +w 80 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "X" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 195 +y 9 +w 80 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 280 +y 9 +w 80 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Z" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 405 +y 9 +w 80 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "AX" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 490 +y 9 +w 80 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "AY" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 575 +y 9 +w 80 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "AZ" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 29 +w 80 +h 18 +controlPv "$(P)$(T).UHXR" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 195 +y 29 +w 80 +h 18 +controlPv "$(P)$(T).UHYR" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 60 +y 29 +w 43 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "High" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 49 +w 80 +h 18 +controlPv "$(P)$(T).ULXR" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 195 +y 49 +w 80 +h 18 +controlPv "$(P)$(T).ULYR" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 60 +y 49 +w 40 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Low" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 280 +y 49 +w 80 +h 18 +controlPv "$(P)$(T).ULZR" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 280 +y 29 +w 80 +h 18 +controlPv "$(P)$(T).UHZR" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 405 +y 49 +w 80 +h 18 +controlPv "$(P)$(T).ULAXR" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 405 +y 29 +w 80 +h 18 +controlPv "$(P)$(T).UHAXR" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 490 +y 49 +w 80 +h 18 +controlPv "$(P)$(T).ULAYR" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 490 +y 29 +w 80 +h 18 +controlPv "$(P)$(T).UHAYR" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 575 +y 49 +w 80 +h 18 +controlPv "$(P)$(T).ULAZR" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 575 +y 29 +w 80 +h 18 +controlPv "$(P)$(T).UHAZR" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 475 +y 114 +w 115 +h 15 +controlPv "$(P)$(T).AEGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 175 +y 114 +w 115 +h 15 +controlPv "$(P)$(T).LEGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 74 +w 80 +h 18 +controlPv "$(P)$(T).UHX" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 195 +y 74 +w 80 +h 18 +controlPv "$(P)$(T).UHY" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 60 +y 74 +w 43 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "High" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 110 +y 94 +w 80 +h 18 +controlPv "$(P)$(T).ULX" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 195 +y 94 +w 80 +h 18 +controlPv "$(P)$(T).ULY" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 60 +y 94 +w 40 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Low" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 280 +y 94 +w 80 +h 18 +controlPv "$(P)$(T).ULZ" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 280 +y 74 +w 80 +h 18 +controlPv "$(P)$(T).UHZ" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 405 +y 94 +w 80 +h 18 +controlPv "$(P)$(T).ULAX" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 405 +y 74 +w 80 +h 18 +controlPv "$(P)$(T).UHAX" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 490 +y 94 +w 80 +h 18 +controlPv "$(P)$(T).ULAY" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 490 +y 74 +w 80 +h 18 +controlPv "$(P)$(T).UHAY" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 575 +y 94 +w 80 +h 18 +controlPv "$(P)$(T).ULAZ" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 575 +y 74 +w 80 +h 18 +controlPv "$(P)$(T).UHAZ" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +precision 2 +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 39 +w 40 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "REL" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 84 +w 43 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "ABS" +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/table_refresh.edl b/opticsApp/op/edl/autoconvert/table_refresh.edl new file mode 100644 index 0000000..b3e23d8 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/table_refresh.edl @@ -0,0 +1,64 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 545 +y 291 +w 230 +h 375 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 95 +y 43 +w 135 +h 15 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "PRESS AGAIN" +numPvs 2 +numDsps 1 +displayFileName { + 0 table.edl +} +menuLabel { + 0 Refresh fixed-point menu +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/table_setup_GEOCARS.edl b/opticsApp/op/edl/autoconvert/table_setup_GEOCARS.edl new file mode 100644 index 0000000..7a5e338 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/table_setup_GEOCARS.edl @@ -0,0 +1,3018 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 729 +y 513 +w 700 +h 500 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 125 +y 150 +w 8 +h 10 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 130 +y 150 +w 3 +h 7 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +numPoints 2 { +xPoints { +0 130 +1 132 +} +yPoints { +0 150 +1 156 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 125 +y 157 +w 8 +h 3 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +numPoints 2 { +xPoints { +0 132 +1 125 +} +yPoints { +0 157 +1 159 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 77 +y 161 +w 63 +h 68 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 2 +closePolygon +numPoints 5 { +xPoints { +0 77 +1 108 +2 140 +3 110 +4 77 +} +yPoints { +0 210 +1 161 +2 180 +3 229 +4 210 +} +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 204 +w 5 +h 5 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 117 +y 199 +w 5 +h 5 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 109 +y 169 +w 5 +h 5 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 242 +w 2 +h 51 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 111 +1 111 +} +yPoints { +0 292 +1 243 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 104 +y 241 +w 13 +h 13 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 105 +1 111 +2 116 +} +yPoints { +0 253 +1 242 +2 253 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 87 +y 226 +w 50 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "BEAM" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 40 +y 316 +w 120 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "(+Y is up)" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 95 +y 63 +w 90 +h 22 +controlPv "$(P)$(T).YANG" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 95 +y 33 +w 90 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Table angle" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 95 +y 48 +w 90 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "(degrees)" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 98 +y 86 +w 81 +h 0 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 0 +numPoints 2 { +xPoints { +0 98 +1 179 +} +yPoints { +0 86 +1 86 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 141 +y 128 +w 33 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 40448 40448 40448 +bgColor index 3 +useDisplayBg +value { + "+Z'" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 36 +y 155 +w 33 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 40448 40448 40448 +bgColor index 3 +useDisplayBg +value { + "+X'" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 195 +y 30 +w 3 +h 345 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 3 +numPoints 2 { +xPoints { +0 196 +1 196 +} +yPoints { +0 31 +1 373 +} +endObjectProperties + +# (Arc) +object activeArcClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 65 +y 151 +w 90 +h 90 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 0 +startAngle 61 +totalAngle 29 +fillMode "pie" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 62 +y 168 +w 49 +h 27 +lineColor rgb 40448 40448 40448 +fillColor rgb 40448 40448 40448 +lineWidth 2 +numPoints 2 { +xPoints { +0 110 +1 63 +} +yPoints { +0 194 +1 169 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 120 +y 87 +w 21 +h 65 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 0 +numPoints 2 { +xPoints { +0 141 +1 120 +} +yPoints { +0 87 +1 152 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 142 +w 31 +h 53 +lineColor rgb 40448 40448 40448 +fillColor rgb 40448 40448 40448 +lineWidth 2 +numPoints 2 { +xPoints { +0 140 +1 111 +} +yPoints { +0 143 +1 194 +} +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 112 +y 190 +w 5 +h 5 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 22 +y 96 +w 98 +h 110 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 22 +y 186 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "+X" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 189 +w 14 +h 11 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 3 { +xPoints { +0 63 +1 51 +2 61 +} +yPoints { +0 190 +1 195 +2 199 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 194 +w 62 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 111 +1 51 +} +yPoints { +0 195 +1 195 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 127 +w 2 +h 69 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 111 +1 111 +} +yPoints { +0 195 +1 128 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 102 +y 124 +w 16 +h 16 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 3 { +xPoints { +0 103 +1 110 +2 117 +} +yPoints { +0 139 +1 125 +2 139 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 100 +y 96 +w 32 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "+Z" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 415 +y 351 +w 280 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "You're using the wrong setup display" +} +visPv "CALC\\\{(A)\}($(P)$(Q):geomIsGEOCARS)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 450 +y 311 +w 80 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Geometry" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 415 +y 336 +w 280 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "This display is for the GEOCARS geometry" +} +visPv "CALC\\\{(A)\}($(P)$(Q):geomIsGEOCARS)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 469 +y 241 +w 199 +h 19 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 490 +y 262 +w 8 +h 8 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 640 +y 262 +w 8 +h 8 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 600 +y 265 +w 88 +h 2 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 601 +1 687 +} +yPoints { +0 266 +1 266 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 484 +y 276 +w 59 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M1,M2" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 634 +y 276 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M0" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 640 +y 261 +w 10 +h 11 + +beginGroup + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 640 +y 261 +w 9 +h 9 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 641 +y 266 +w 9 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 641 +1 649 +} +yPoints { +0 266 +1 266 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 645 +y 262 +w 1 +h 10 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 645 +1 645 +} +yPoints { +0 262 +1 271 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 230 +y 41 +w 199 +h 249 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 251 +y 262 +w 8 +h 8 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 401 +y 162 +w 8 +h 8 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 251 +y 62 +w 8 +h 8 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 263 +y 246 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M2" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 411 +y 159 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M0" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 246 +y 71 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M1" +} +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 346 +y 129 +w 8 +h 8 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 252 +y 248 +w 5 +h 15 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 254 +y 249 +w 2 +h 15 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 255 +1 255 +} +yPoints { +0 263 +1 250 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 252 +y 248 +w 6 +h 7 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 253 +1 255 +2 257 +} +yPoints { +0 254 +1 249 +2 254 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 238 +y 263 +w 15 +h 5 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 238 +y 263 +w 8 +h 6 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 245 +1 239 +2 244 +} +yPoints { +0 264 +1 266 +2 268 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 239 +y 265 +w 15 +h 2 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 253 +1 240 +} +yPoints { +0 266 +1 266 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 387 +y 163 +w 15 +h 5 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 387 +y 163 +w 8 +h 6 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 394 +1 388 +2 393 +} +yPoints { +0 164 +1 166 +2 168 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 388 +y 165 +w 15 +h 2 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 402 +1 389 +} +yPoints { +0 166 +1 166 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 404 +y 147 +w 2 +h 39 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +lineStyle "dash" +numPoints 2 { +xPoints { +0 405 +1 405 +} +yPoints { +0 148 +1 185 +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 235 +y 126 +w 60 +h 18 +controlPv "$(P)$(T).LZ" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 401 +y 262 +w 10 +h 11 + +beginGroup + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 401 +y 262 +w 9 +h 9 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 402 +y 267 +w 9 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 402 +1 410 +} +yPoints { +0 267 +1 267 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 406 +y 263 +w 1 +h 10 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 406 +1 406 +} +yPoints { +0 263 +1 272 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 204 +y 66 +w 25 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 204 +1 228 +} +yPoints { +0 66 +1 66 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 205 +y 266 +w 25 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 205 +1 229 +} +yPoints { +0 266 +1 266 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 210 +y 66 +w 1 +h 60 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 210 +1 210 +} +yPoints { +0 125 +1 66 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 200 +y 126 +w 32 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Lz'" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 210 +y 148 +w 1 +h 119 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 210 +1 210 +} +yPoints { +0 266 +1 148 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 405 +y 266 +w 26 +h 25 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 3 +numPoints 2 { +xPoints { +0 406 +1 429 +} +yPoints { +0 267 +1 289 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 425 +y 294 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "R" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 349 +y 131 +w 82 +h 160 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 3 +numPoints 2 { +xPoints { +0 429 +1 350 +} +yPoints { +0 289 +1 132 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 360 +y 121 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "S" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 644 +y 239 +w 25 +h 29 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 3 +numPoints 2 { +xPoints { +0 645 +1 667 +} +yPoints { +0 266 +1 240 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 670 +y 231 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "R" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 593 +y 190 +w 76 +h 53 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 3 +numPoints 2 { +xPoints { +0 667 +1 594 +} +yPoints { +0 241 +1 191 +} +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 590 +y 187 +w 8 +h 8 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 574 +y 192 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "S" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 41 +w 100 +h 40 + +beginGroup + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 461 +y 57 +w 8 +h 8 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 41 +w 10 +h 11 + +beginGroup + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 41 +w 9 +h 9 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 461 +y 46 +w 9 +h 1 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +numPoints 2 { +xPoints { +0 461 +1 469 +} +yPoints { +0 46 +1 46 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 465 +y 42 +w 1 +h 10 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +numPoints 2 { +xPoints { +0 465 +1 465 +} +yPoints { +0 42 +1 51 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 461 +y 72 +w 8 +h 8 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 480 +y 56 +w 80 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PIVOT POINTS" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 480 +y 41 +w 80 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "LOCAL ORIGIN" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 480 +y 71 +w 80 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "'FIXED' POINT" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 495 +y 117 +w 60 +h 18 +controlPv "$(P)$(T).RX" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 495 +y 135 +w 60 +h 18 +controlPv "$(P)$(T).RY" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 615 +y 115 +w 60 +h 18 +controlPv "$(P)$(T).SX" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 615 +y 155 +w 60 +h 18 +controlPv "$(P)$(T).SZ" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 615 +y 135 +w 60 +h 18 +controlPv "$(P)$(T).SY" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 319 +y 301 +w 32 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Lx'" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 345 +y 311 +w 62 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 345 +1 406 +} +yPoints { +0 311 +1 311 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 257 +y 311 +w 59 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 257 +1 315 +} +yPoints { +0 311 +1 311 +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 300 +y 318 +w 60 +h 18 +controlPv "$(P)$(T).LX" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 406 +y 297 +w 1 +h 25 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 406 +1 406 +} +yPoints { +0 297 +1 321 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 310 +y 196 +w 64 +h 57 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 310 +y 239 +w 33 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "+X'" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 331 +y 241 +w 14 +h 11 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 344 +1 332 +2 342 +} +yPoints { +0 242 +1 247 +2 251 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 334 +y 246 +w 28 +h 2 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 361 +1 335 +} +yPoints { +0 247 +1 247 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 361 +y 216 +w 2 +h 33 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 362 +1 362 +} +yPoints { +0 248 +1 217 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 354 +y 213 +w 14 +h 14 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 355 +1 361 +2 367 +} +yPoints { +0 226 +1 214 +2 226 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 354 +y 196 +w 33 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "+Z'" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 530 +y 216 +w 20 +h 53 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 537 +y 236 +w 2 +h 33 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 538 +1 538 +} +yPoints { +0 268 +1 237 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 530 +y 233 +w 14 +h 14 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 531 +1 537 +2 543 +} +yPoints { +0 246 +1 234 +2 246 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 530 +y 216 +w 33 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "+Y'" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 1 +w 696 +h 23 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 3 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 27 +w 699 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 697 +} +yPoints { +0 28 +1 28 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 350 +y 5 +w 350 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "($(P)$(T))" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 0 +w 350 +h 27 +controlPv "$(P)$(T).DESC" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 495 +y 155 +w 60 +h 18 +controlPv "$(P)$(T).RZ" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 580 +y 58 +w 95 +h 14 +controlPv "$(P)$(Q)fpSelect.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 115 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Rx'" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 155 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Rz'" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 135 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Ry'" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 580 +y 115 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Sx'" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 580 +y 155 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Sz'" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 580 +y 135 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Sy'" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 371 +w 700 +h 129 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 0 +y 371 +w 700 +h 129 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "table_limits.edl;P=$(P),T=$(T)" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "table_limits.edl;P=$(P),T=$(T)" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 205 +y 348 +w 80 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Angle units" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 255 +y 297 +w 1 +h 25 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 255 +1 255 +} +yPoints { +0 297 +1 321 +} +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 125 +y 150 +w 8 +h 10 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 22 +y 96 +w 98 +h 110 + +beginGroup + +endGroup + +endObjectProperties + + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 540 +y 311 +w 100 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(T).GEOM" +indicatorPv "$(P)$(T).GEOM" +font "helvetica-medium-r-12.0" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 640 +y 261 +w 10 +h 11 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 252 +y 248 +w 5 +h 15 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 238 +y 263 +w 15 +h 5 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 387 +y 163 +w 15 +h 5 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 401 +y 262 +w 10 +h 11 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 41 +w 100 +h 40 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 41 +w 10 +h 11 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 310 +y 196 +w 64 +h 57 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 530 +y 216 +w 20 +h 53 + +beginGroup + +endGroup + +endObjectProperties + + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 580 +y 75 +w 95 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(Q)fpSelect" +indicatorPv "$(P)$(Q)fpSelect" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 580 +y 35 +w 95 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Fixed points" +numPvs 2 +numDsps 1 +displayFileName { + 0 table_fixedPoints.edl +} +menuLabel { + 0 Fixed points +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 585 +y 95 +w 85 +h 15 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "REFRESH MENU" +numPvs 2 +numDsps 1 +displayFileName { + 0 table_setup_GEOCARS_refresh.edl +} +menuLabel { + 0 +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 290 +y 345 +w 120 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(T).AUNIT" +indicatorPv "$(P)$(T).AUNIT" +font "helvetica-medium-r-12.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/table_setup_GEOCARS_refresh.edl b/opticsApp/op/edl/autoconvert/table_setup_GEOCARS_refresh.edl new file mode 100644 index 0000000..c03ec63 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/table_setup_GEOCARS_refresh.edl @@ -0,0 +1,64 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 36 +y 25 +w 700 +h 120 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 585 +y 95 +w 85 +h 15 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "PRESS AGAIN" +numPvs 2 +numDsps 1 +displayFileName { + 0 table_setup_GEOCARS.edl +} +menuLabel { + 0 +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/table_setup_NEWPORT.edl b/opticsApp/op/edl/autoconvert/table_setup_NEWPORT.edl new file mode 100644 index 0000000..b90ae8d --- /dev/null +++ b/opticsApp/op/edl/autoconvert/table_setup_NEWPORT.edl @@ -0,0 +1,3120 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 699 +y 521 +w 700 +h 500 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 640 +y 267 +w 8 +h 8 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 637 +y 226 +w 14 +h 39 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 0 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 125 +y 150 +w 8 +h 10 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 130 +y 150 +w 3 +h 7 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +numPoints 2 { +xPoints { +0 130 +1 132 +} +yPoints { +0 150 +1 156 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 125 +y 157 +w 8 +h 3 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +numPoints 2 { +xPoints { +0 132 +1 125 +} +yPoints { +0 157 +1 159 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 77 +y 161 +w 63 +h 68 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 2 +closePolygon +numPoints 5 { +xPoints { +0 77 +1 108 +2 140 +3 110 +4 77 +} +yPoints { +0 210 +1 161 +2 180 +3 229 +4 210 +} +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 204 +w 5 +h 5 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 117 +y 199 +w 5 +h 5 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 109 +y 169 +w 5 +h 5 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 87 +y 226 +w 50 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "BEAM" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 40 +y 316 +w 120 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "(+Y is up)" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 95 +y 63 +w 90 +h 22 +controlPv "$(P)$(T).YANG" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 95 +y 33 +w 90 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Table angle" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 95 +y 48 +w 90 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "(degrees)" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 98 +y 86 +w 81 +h 0 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 0 +numPoints 2 { +xPoints { +0 98 +1 179 +} +yPoints { +0 86 +1 86 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 141 +y 128 +w 33 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 40448 40448 40448 +bgColor index 3 +useDisplayBg +value { + "+Z'" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 36 +y 155 +w 33 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 40448 40448 40448 +bgColor index 3 +useDisplayBg +value { + "+X'" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 195 +y 30 +w 3 +h 345 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 3 +numPoints 2 { +xPoints { +0 196 +1 196 +} +yPoints { +0 31 +1 373 +} +endObjectProperties + +# (Arc) +object activeArcClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 65 +y 151 +w 90 +h 90 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 0 +startAngle 61 +totalAngle 29 +fillMode "pie" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 62 +y 168 +w 49 +h 27 +lineColor rgb 40448 40448 40448 +fillColor rgb 40448 40448 40448 +lineWidth 2 +numPoints 2 { +xPoints { +0 110 +1 63 +} +yPoints { +0 194 +1 169 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 120 +y 87 +w 21 +h 65 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 0 +numPoints 2 { +xPoints { +0 141 +1 120 +} +yPoints { +0 87 +1 152 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 142 +w 31 +h 53 +lineColor rgb 40448 40448 40448 +fillColor rgb 40448 40448 40448 +lineWidth 2 +numPoints 2 { +xPoints { +0 140 +1 111 +} +yPoints { +0 143 +1 194 +} +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 112 +y 190 +w 5 +h 5 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 22 +y 96 +w 98 +h 110 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 22 +y 186 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "+X" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 189 +w 14 +h 11 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 3 { +xPoints { +0 63 +1 51 +2 61 +} +yPoints { +0 190 +1 195 +2 199 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 194 +w 62 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 111 +1 51 +} +yPoints { +0 195 +1 195 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 127 +w 2 +h 69 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 111 +1 111 +} +yPoints { +0 195 +1 128 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 102 +y 124 +w 16 +h 16 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 3 { +xPoints { +0 103 +1 110 +2 117 +} +yPoints { +0 139 +1 125 +2 139 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 100 +y 96 +w 32 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "+Z" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 415 +y 351 +w 280 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "You're using the wrong setup display" +} +visPv "CALC\\\{(A)\}($(P)$(Q):geomIsNEWPORT)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 450 +y 311 +w 80 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Geometry" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 415 +y 336 +w 280 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "This display is for the NEWPORT geometry" +} +visPv "CALC\\\{(A)\}($(P)$(Q):geomIsNEWPORT)" +visMin 0 +visMax 1 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 104 +y 241 +w 13 +h 52 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 242 +w 2 +h 51 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 111 +1 111 +} +yPoints { +0 292 +1 243 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 104 +y 241 +w 13 +h 13 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 105 +1 111 +2 116 +} +yPoints { +0 253 +1 242 +2 253 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 319 +y 301 +w 32 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Lx'" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 345 +y 311 +w 62 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 345 +1 406 +} +yPoints { +0 311 +1 311 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 257 +y 311 +w 59 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 257 +1 315 +} +yPoints { +0 311 +1 311 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 230 +y 41 +w 199 +h 249 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 251 +y 262 +w 8 +h 8 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 401 +y 162 +w 8 +h 8 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 251 +y 62 +w 8 +h 8 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 204 +y 66 +w 25 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 204 +1 228 +} +yPoints { +0 66 +1 66 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 263 +y 246 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M0" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 400 +y 176 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M1" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 246 +y 71 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M2" +} +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 346 +y 129 +w 8 +h 8 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 252 +y 49 +w 5 +h 15 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 254 +y 50 +w 2 +h 15 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 255 +1 255 +} +yPoints { +0 64 +1 51 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 252 +y 49 +w 6 +h 7 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 253 +1 255 +2 257 +} +yPoints { +0 55 +1 50 +2 55 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 238 +y 63 +w 15 +h 5 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 238 +y 63 +w 8 +h 6 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 245 +1 239 +2 244 +} +yPoints { +0 64 +1 66 +2 68 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 239 +y 65 +w 15 +h 2 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 253 +1 240 +} +yPoints { +0 66 +1 66 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 235 +y 126 +w 60 +h 18 +controlPv "$(P)$(T).LZ" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 401 +y 262 +w 10 +h 11 + +beginGroup + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 401 +y 262 +w 9 +h 9 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 402 +y 267 +w 9 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 402 +1 410 +} +yPoints { +0 267 +1 267 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 406 +y 263 +w 1 +h 10 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 406 +1 406 +} +yPoints { +0 263 +1 272 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 405 +y 266 +w 26 +h 25 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 3 +numPoints 2 { +xPoints { +0 406 +1 429 +} +yPoints { +0 267 +1 289 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 204 +y 265 +w 25 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 204 +1 228 +} +yPoints { +0 265 +1 265 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 349 +y 131 +w 82 +h 160 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 3 +numPoints 2 { +xPoints { +0 429 +1 350 +} +yPoints { +0 289 +1 132 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 425 +y 294 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "R" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 360 +y 121 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "S" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 210 +y 66 +w 1 +h 60 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 210 +1 210 +} +yPoints { +0 125 +1 66 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 200 +y 126 +w 32 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Lz'" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 210 +y 148 +w 1 +h 119 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 210 +1 210 +} +yPoints { +0 266 +1 148 +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 300 +y 318 +w 60 +h 18 +controlPv "$(P)$(T).LX" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 469 +y 216 +w 199 +h 19 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 590 +y 187 +w 8 +h 8 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 644 +y 214 +w 25 +h 58 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 3 +numPoints 2 { +xPoints { +0 645 +1 667 +} +yPoints { +0 270 +1 215 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 670 +y 206 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "R" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 574 +y 192 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "S" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 593 +y 190 +w 76 +h 28 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 3 +numPoints 2 { +xPoints { +0 667 +1 594 +} +yPoints { +0 216 +1 191 +} +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 490 +y 267 +w 8 +h 8 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 600 +y 270 +w 88 +h 2 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 601 +1 687 +} +yPoints { +0 271 +1 271 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 484 +y 281 +w 59 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M0,M2" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 634 +y 281 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M1" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 640 +y 266 +w 10 +h 11 + +beginGroup + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 640 +y 266 +w 9 +h 9 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 641 +y 271 +w 9 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 641 +1 649 +} +yPoints { +0 271 +1 271 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 645 +y 267 +w 1 +h 10 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 645 +1 645 +} +yPoints { +0 267 +1 276 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 485 +y 226 +w 14 +h 39 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 461 +y 57 +w 8 +h 8 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 41 +w 10 +h 11 + +beginGroup + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 41 +w 9 +h 9 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 461 +y 46 +w 9 +h 1 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +numPoints 2 { +xPoints { +0 461 +1 469 +} +yPoints { +0 46 +1 46 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 465 +y 42 +w 1 +h 10 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +numPoints 2 { +xPoints { +0 465 +1 465 +} +yPoints { +0 42 +1 51 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 461 +y 72 +w 8 +h 8 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 480 +y 56 +w 80 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PIVOT POINTS" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 480 +y 41 +w 80 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "LOCAL ORIGIN" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 480 +y 71 +w 80 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "'FIXED' POINT" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 237 +y 263 +w 15 +h 5 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 237 +y 263 +w 8 +h 6 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 244 +1 238 +2 243 +} +yPoints { +0 264 +1 266 +2 268 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 238 +y 265 +w 15 +h 2 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 252 +1 239 +} +yPoints { +0 266 +1 266 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 254 +y 247 +w 2 +h 39 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +lineStyle "dash" +numPoints 2 { +xPoints { +0 255 +1 255 +} +yPoints { +0 248 +1 285 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 310 +y 196 +w 64 +h 57 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 310 +y 239 +w 33 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "+X'" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 331 +y 241 +w 14 +h 11 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 344 +1 332 +2 342 +} +yPoints { +0 242 +1 247 +2 251 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 334 +y 246 +w 28 +h 2 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 361 +1 335 +} +yPoints { +0 247 +1 247 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 361 +y 216 +w 2 +h 33 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 362 +1 362 +} +yPoints { +0 248 +1 217 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 354 +y 213 +w 14 +h 14 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 355 +1 361 +2 367 +} +yPoints { +0 226 +1 214 +2 226 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 354 +y 196 +w 33 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "+Z'" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 552 +y 221 +w 20 +h 53 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 559 +y 241 +w 2 +h 33 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 560 +1 560 +} +yPoints { +0 273 +1 242 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 552 +y 238 +w 14 +h 14 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 553 +1 559 +2 565 +} +yPoints { +0 251 +1 239 +2 251 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 552 +y 221 +w 33 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "+Y'" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 256 +y 297 +w 1 +h 25 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 256 +1 256 +} +yPoints { +0 297 +1 321 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 406 +y 297 +w 1 +h 25 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 406 +1 406 +} +yPoints { +0 297 +1 321 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 700 +h 30 + +beginGroup + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 1 +w 696 +h 23 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 3 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 27 +w 699 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 697 +} +yPoints { +0 28 +1 28 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 350 +y 5 +w 350 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "($(P)$(T))" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 0 +w 350 +h 27 +controlPv "$(P)$(T).DESC" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +endGroup + +endObjectProperties + + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 581 +y 58 +w 95 +h 14 +controlPv "$(P)$(Q)fpSelect.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 495 +y 116 +w 60 +h 18 +controlPv "$(P)$(T).RX" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 495 +y 135 +w 60 +h 18 +controlPv "$(P)$(T).RY" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 615 +y 115 +w 60 +h 18 +controlPv "$(P)$(T).SX" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 615 +y 155 +w 60 +h 18 +controlPv "$(P)$(T).SZ" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 615 +y 135 +w 60 +h 18 +controlPv "$(P)$(T).SY" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 115 +w 140 +h 60 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 115 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Rx'" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 155 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Rz'" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 135 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Ry'" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 580 +y 115 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Sx'" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 580 +y 155 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Sz'" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 580 +y 135 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Sy'" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 495 +y 155 +w 60 +h 18 +controlPv "$(P)$(T).RZ" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 371 +w 700 +h 129 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 0 +y 371 +w 700 +h 129 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "table_limits.edl;P=$(P),T=$(T)" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "table_limits.edl;P=$(P),T=$(T)" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 205 +y 348 +w 80 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Angle units" +} +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 125 +y 150 +w 8 +h 10 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 22 +y 96 +w 98 +h 110 + +beginGroup + +endGroup + +endObjectProperties + + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 540 +y 311 +w 100 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(T).GEOM" +indicatorPv "$(P)$(T).GEOM" +font "helvetica-medium-r-12.0" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 104 +y 241 +w 13 +h 52 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 252 +y 49 +w 5 +h 15 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 238 +y 63 +w 15 +h 5 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 401 +y 262 +w 10 +h 11 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 640 +y 266 +w 10 +h 11 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 41 +w 10 +h 11 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 237 +y 263 +w 15 +h 5 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 310 +y 196 +w 64 +h 57 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 552 +y 221 +w 20 +h 53 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 700 +h 30 + +beginGroup + +endGroup + +endObjectProperties + + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 581 +y 75 +w 95 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(Q)fpSelect" +indicatorPv "$(P)$(Q)fpSelect" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 581 +y 35 +w 95 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Fixed points" +numPvs 2 +numDsps 1 +displayFileName { + 0 table_fixedPoints.edl +} +menuLabel { + 0 Fixed points +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 586 +y 95 +w 85 +h 15 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "REFRESH MENU" +numPvs 2 +numDsps 1 +displayFileName { + 0 table_setup_NEWPORT_refresh.edl +} +menuLabel { + 0 +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 115 +w 140 +h 60 + +beginGroup + +endGroup + +endObjectProperties + + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 290 +y 345 +w 120 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(T).AUNIT" +indicatorPv "$(P)$(T).AUNIT" +font "helvetica-medium-r-12.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/table_setup_NEWPORT_refresh.edl b/opticsApp/op/edl/autoconvert/table_setup_NEWPORT_refresh.edl new file mode 100644 index 0000000..ee362da --- /dev/null +++ b/opticsApp/op/edl/autoconvert/table_setup_NEWPORT_refresh.edl @@ -0,0 +1,64 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 36 +y 25 +w 700 +h 120 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 585 +y 95 +w 85 +h 15 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "PRESS AGAIN" +numPvs 2 +numDsps 1 +displayFileName { + 0 table_setup_NEWPORT.edl +} +menuLabel { + 0 +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/table_setup_PNC.edl b/opticsApp/op/edl/autoconvert/table_setup_PNC.edl new file mode 100644 index 0000000..227b4c5 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/table_setup_PNC.edl @@ -0,0 +1,3158 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 743 +y 507 +w 700 +h 500 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 125 +y 150 +w 8 +h 10 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 130 +y 150 +w 3 +h 7 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +numPoints 2 { +xPoints { +0 130 +1 132 +} +yPoints { +0 150 +1 156 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 125 +y 157 +w 8 +h 3 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +numPoints 2 { +xPoints { +0 132 +1 125 +} +yPoints { +0 157 +1 159 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 77 +y 161 +w 63 +h 68 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 2 +closePolygon +numPoints 5 { +xPoints { +0 77 +1 108 +2 140 +3 110 +4 77 +} +yPoints { +0 210 +1 161 +2 180 +3 229 +4 210 +} +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 204 +w 5 +h 5 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 105 +y 216 +w 5 +h 5 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 118 +y 175 +w 5 +h 5 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 40 +y 316 +w 120 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "(+Y is up)" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 95 +y 63 +w 90 +h 22 +controlPv "$(P)$(T).YANG" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 95 +y 33 +w 90 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Table angle" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 95 +y 48 +w 90 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "(degrees)" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 98 +y 86 +w 81 +h 0 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 0 +numPoints 2 { +xPoints { +0 98 +1 179 +} +yPoints { +0 86 +1 86 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 141 +y 128 +w 33 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 40448 40448 40448 +bgColor index 3 +useDisplayBg +value { + "+Z'" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 36 +y 155 +w 33 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 40448 40448 40448 +bgColor index 3 +useDisplayBg +value { + "+X'" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 195 +y 30 +w 3 +h 345 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 3 +numPoints 2 { +xPoints { +0 196 +1 196 +} +yPoints { +0 31 +1 373 +} +endObjectProperties + +# (Arc) +object activeArcClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 65 +y 151 +w 90 +h 90 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 0 +startAngle 61 +totalAngle 29 +fillMode "pie" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 62 +y 168 +w 49 +h 27 +lineColor rgb 40448 40448 40448 +fillColor rgb 40448 40448 40448 +lineWidth 2 +numPoints 2 { +xPoints { +0 110 +1 63 +} +yPoints { +0 194 +1 169 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 120 +y 87 +w 21 +h 65 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 0 +numPoints 2 { +xPoints { +0 141 +1 120 +} +yPoints { +0 87 +1 152 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 142 +w 31 +h 53 +lineColor rgb 40448 40448 40448 +fillColor rgb 40448 40448 40448 +lineWidth 2 +numPoints 2 { +xPoints { +0 140 +1 111 +} +yPoints { +0 143 +1 194 +} +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 114 +y 192 +w 5 +h 5 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 22 +y 96 +w 98 +h 110 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 22 +y 186 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "+X" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 189 +w 14 +h 11 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 3 { +xPoints { +0 63 +1 51 +2 61 +} +yPoints { +0 190 +1 195 +2 199 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 194 +w 62 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 111 +1 51 +} +yPoints { +0 195 +1 195 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 127 +w 2 +h 69 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 111 +1 111 +} +yPoints { +0 195 +1 128 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 102 +y 124 +w 16 +h 16 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 3 { +xPoints { +0 103 +1 110 +2 117 +} +yPoints { +0 139 +1 125 +2 139 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 100 +y 96 +w 32 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "+Z" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 450 +y 311 +w 80 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Geometry" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 425 +y 351 +w 270 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "You're using the wrong setup display" +} +visPv "CALC\\\{(a!=3)\}($(P)$(T).GEOM)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 425 +y 336 +w 270 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "This display is for the PNC geometry" +} +visPv "CALC\\\{(a!=3)\}($(P)$(T).GEOM)" +visMin 0 +visMax 1 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 461 +y 57 +w 8 +h 8 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 41 +w 10 +h 11 + +beginGroup + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 41 +w 9 +h 9 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 461 +y 46 +w 9 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 461 +1 469 +} +yPoints { +0 46 +1 46 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 465 +y 42 +w 1 +h 10 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 465 +1 465 +} +yPoints { +0 42 +1 51 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 461 +y 72 +w 8 +h 8 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 480 +y 56 +w 80 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PIVOT POINTS" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 480 +y 41 +w 80 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "LOCAL ORIGIN" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 480 +y 71 +w 80 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "'FIXED' POINT" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 242 +w 2 +h 51 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 111 +1 111 +} +yPoints { +0 292 +1 243 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 104 +y 241 +w 13 +h 13 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 105 +1 111 +2 116 +} +yPoints { +0 253 +1 242 +2 253 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 87 +y 226 +w 50 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "BEAM" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 700 +h 30 + +beginGroup + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 1 +w 696 +h 23 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 3 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 27 +w 699 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 697 +} +yPoints { +0 28 +1 28 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 350 +y 5 +w 350 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "($(P)$(T))" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 0 +w 350 +h 27 +controlPv "$(P)$(T).DESC" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +endGroup + +endObjectProperties + + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 495 +y 116 +w 60 +h 18 +controlPv "$(P)$(T).RX" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 495 +y 135 +w 60 +h 18 +controlPv "$(P)$(T).RY" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 615 +y 115 +w 60 +h 18 +controlPv "$(P)$(T).SX" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 615 +y 155 +w 60 +h 18 +controlPv "$(P)$(T).SZ" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 615 +y 135 +w 60 +h 18 +controlPv "$(P)$(T).SY" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 115 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Rx'" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 155 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Rz'" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 135 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Ry'" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 580 +y 115 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Sx'" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 580 +y 155 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Sz'" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 580 +y 135 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Sy'" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 495 +y 155 +w 60 +h 18 +controlPv "$(P)$(T).RZ" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 580 +y 58 +w 95 +h 14 +controlPv "$(P)$(Q)fpSelect.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 230 +y 41 +w 199 +h 249 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 326 +y 57 +w 8 +h 8 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 320 +y 71 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M2" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 311 +y 58 +w 15 +h 5 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 311 +y 58 +w 8 +h 6 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 318 +1 312 +2 317 +} +yPoints { +0 59 +1 61 +2 63 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 312 +y 60 +w 15 +h 2 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 326 +1 313 +} +yPoints { +0 61 +1 61 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 327 +y 43 +w 5 +h 15 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 329 +y 44 +w 2 +h 15 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 330 +1 330 +} +yPoints { +0 58 +1 45 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 327 +y 43 +w 6 +h 7 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 328 +1 330 +2 332 +} +yPoints { +0 49 +1 44 +2 49 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 63 +w 30 +h 204 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 204 +y 64 +w 25 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 204 +1 228 +} +yPoints { +0 64 +1 64 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 205 +y 266 +w 25 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 205 +1 229 +} +yPoints { +0 266 +1 266 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 64 +w 20 +h 203 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 210 +y 64 +w 1 +h 60 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 210 +1 210 +} +yPoints { +0 123 +1 64 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 200 +y 124 +w 32 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Lz'" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 210 +y 146 +w 1 +h 121 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 210 +1 210 +} +yPoints { +0 266 +1 146 +} +endObjectProperties + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 235 +y 126 +w 60 +h 18 +controlPv "$(P)$(T).LZ" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 319 +y 301 +w 32 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Lx'" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 345 +y 311 +w 62 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 345 +1 406 +} +yPoints { +0 311 +1 311 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 257 +y 311 +w 59 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 257 +1 315 +} +yPoints { +0 311 +1 311 +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 300 +y 318 +w 60 +h 18 +controlPv "$(P)$(T).LX" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 256 +y 297 +w 1 +h 25 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 256 +1 256 +} +yPoints { +0 297 +1 321 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 406 +y 297 +w 1 +h 25 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 406 +1 406 +} +yPoints { +0 297 +1 321 +} +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 251 +y 262 +w 8 +h 8 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 346 +y 129 +w 8 +h 8 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 264 +y 250 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M1" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 378 +y 243 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M0" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 256 +y 168 +w 64 +h 57 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 256 +y 211 +w 33 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "+X'" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 300 +y 168 +w 33 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "+Z'" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 307 +y 188 +w 2 +h 33 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 308 +1 308 +} +yPoints { +0 220 +1 189 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 300 +y 185 +w 14 +h 14 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 301 +1 307 +2 313 +} +yPoints { +0 198 +1 186 +2 198 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 277 +y 213 +w 14 +h 11 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 290 +1 278 +2 288 +} +yPoints { +0 214 +1 219 +2 223 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 218 +w 28 +h 2 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 307 +1 281 +} +yPoints { +0 219 +1 219 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 401 +y 262 +w 8 +h 8 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 405 +y 266 +w 26 +h 25 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 3 +numPoints 2 { +xPoints { +0 406 +1 429 +} +yPoints { +0 267 +1 289 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 349 +y 131 +w 82 +h 160 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 3 +numPoints 2 { +xPoints { +0 429 +1 350 +} +yPoints { +0 289 +1 132 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 360 +y 121 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "S" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 261 +w 10 +h 11 + +beginGroup + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 261 +w 9 +h 9 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 401 +y 266 +w 9 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 401 +1 409 +} +yPoints { +0 266 +1 266 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 405 +y 262 +w 1 +h 10 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 405 +1 405 +} +yPoints { +0 262 +1 271 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 425 +y 294 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "R" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 386 +y 247 +w 20 +h 39 + +beginGroup + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 386 +y 264 +w 15 +h 5 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 386 +y 264 +w 8 +h 6 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 393 +1 387 +2 392 +} +yPoints { +0 265 +1 267 +2 269 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 387 +y 266 +w 15 +h 2 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 401 +1 388 +} +yPoints { +0 267 +1 267 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 404 +y 247 +w 2 +h 39 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +lineStyle "dash" +numPoints 2 { +xPoints { +0 405 +1 405 +} +yPoints { +0 248 +1 285 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 241 +w 199 +h 19 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 481 +y 262 +w 8 +h 8 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 631 +y 262 +w 8 +h 8 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 556 +y 262 +w 8 +h 8 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 591 +y 265 +w 88 +h 2 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 592 +1 678 +} +yPoints { +0 266 +1 266 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 475 +y 276 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M1" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 625 +y 276 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M0" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 550 +y 276 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M2" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 509 +y 219 +w 20 +h 53 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 516 +y 239 +w 2 +h 33 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 517 +1 517 +} +yPoints { +0 271 +1 240 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 509 +y 236 +w 14 +h 14 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 510 +1 516 +2 522 +} +yPoints { +0 249 +1 237 +2 249 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 509 +y 219 +w 33 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "+Y'" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 630 +y 261 +w 10 +h 11 + +beginGroup + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 630 +y 261 +w 9 +h 9 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 631 +y 266 +w 9 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 631 +1 639 +} +yPoints { +0 266 +1 266 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 635 +y 262 +w 1 +h 10 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 635 +1 635 +} +yPoints { +0 262 +1 271 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 635 +y 239 +w 25 +h 29 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 3 +numPoints 2 { +xPoints { +0 636 +1 658 +} +yPoints { +0 266 +1 240 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 661 +y 231 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "R" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 584 +y 190 +w 76 +h 53 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 3 +numPoints 2 { +xPoints { +0 658 +1 585 +} +yPoints { +0 241 +1 191 +} +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 581 +y 187 +w 8 +h 8 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 565 +y 192 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "S" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 371 +w 700 +h 129 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 0 +y 371 +w 700 +h 129 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "table_limits.edl;P=$(P),T=$(T)" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "table_limits.edl;P=$(P),T=$(T)" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 205 +y 348 +w 80 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Angle units" +} +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 125 +y 150 +w 8 +h 10 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 22 +y 96 +w 98 +h 110 + +beginGroup + +endGroup + +endObjectProperties + + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 540 +y 311 +w 100 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(T).GEOM" +indicatorPv "$(P)$(T).GEOM" +font "helvetica-medium-r-12.0" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 41 +w 10 +h 11 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 700 +h 30 + +beginGroup + +endGroup + +endObjectProperties + + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 580 +y 75 +w 95 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(Q)fpSelect" +indicatorPv "$(P)$(Q)fpSelect" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 580 +y 35 +w 95 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Fixed points" +numPvs 2 +numDsps 1 +displayFileName { + 0 table_fixedPoints.edl +} +menuLabel { + 0 Fixed points +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 585 +y 95 +w 85 +h 15 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "REFRESH MENU" +numPvs 2 +numDsps 1 +displayFileName { + 0 table_setup_PNC_refresh.edl +} +menuLabel { + 0 +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 311 +y 58 +w 15 +h 5 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 327 +y 43 +w 5 +h 15 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 63 +w 30 +h 204 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 64 +w 20 +h 203 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 256 +y 168 +w 64 +h 57 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 261 +w 10 +h 11 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 386 +y 247 +w 20 +h 39 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 386 +y 264 +w 15 +h 5 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 509 +y 219 +w 20 +h 53 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 630 +y 261 +w 10 +h 11 + +beginGroup + +endGroup + +endObjectProperties + + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 290 +y 345 +w 120 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(T).AUNIT" +indicatorPv "$(P)$(T).AUNIT" +font "helvetica-medium-r-12.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/table_setup_PNC_refresh.edl b/opticsApp/op/edl/autoconvert/table_setup_PNC_refresh.edl new file mode 100644 index 0000000..dbb90c7 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/table_setup_PNC_refresh.edl @@ -0,0 +1,64 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 36 +y 25 +w 700 +h 120 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 585 +y 95 +w 85 +h 15 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "PRESS AGAIN" +numPvs 2 +numDsps 1 +displayFileName { + 0 table_setup_PNC.edl +} +menuLabel { + 0 +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/table_setup_SRI.edl b/opticsApp/op/edl/autoconvert/table_setup_SRI.edl new file mode 100644 index 0000000..2d27f58 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/table_setup_SRI.edl @@ -0,0 +1,3193 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 723 +y 30 +w 700 +h 500 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 125 +y 150 +w 8 +h 10 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 130 +y 150 +w 3 +h 7 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +numPoints 2 { +xPoints { +0 130 +1 132 +} +yPoints { +0 150 +1 156 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 125 +y 157 +w 8 +h 3 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +numPoints 2 { +xPoints { +0 132 +1 125 +} +yPoints { +0 157 +1 159 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 77 +y 161 +w 63 +h 68 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 2 +closePolygon +numPoints 5 { +xPoints { +0 77 +1 108 +2 140 +3 110 +4 77 +} +yPoints { +0 210 +1 161 +2 180 +3 229 +4 210 +} +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 85 +y 204 +w 5 +h 5 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 105 +y 216 +w 5 +h 5 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 118 +y 175 +w 5 +h 5 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 469 +y 241 +w 199 +h 19 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 490 +y 262 +w 8 +h 8 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 640 +y 262 +w 8 +h 8 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 565 +y 262 +w 8 +h 8 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 600 +y 265 +w 88 +h 2 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 601 +1 687 +} +yPoints { +0 266 +1 266 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 484 +y 276 +w 170 +h 20 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 484 +y 276 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M0" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 634 +y 276 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M1" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 559 +y 276 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M2" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 40 +y 316 +w 120 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "(+Y is up)" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 95 +y 63 +w 90 +h 22 +controlPv "$(P)$(T).YANG" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 95 +y 33 +w 90 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Table angle" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 95 +y 48 +w 90 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "(degrees)" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 98 +y 86 +w 81 +h 0 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 0 +numPoints 2 { +xPoints { +0 98 +1 179 +} +yPoints { +0 86 +1 86 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 141 +y 128 +w 33 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 40448 40448 40448 +bgColor index 3 +useDisplayBg +value { + "+Z'" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 36 +y 155 +w 33 +h 15 +font "helvetica-medium-r-12.0" +fgColor rgb 40448 40448 40448 +bgColor index 3 +useDisplayBg +value { + "+X'" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 195 +y 30 +w 3 +h 345 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 3 +numPoints 2 { +xPoints { +0 196 +1 196 +} +yPoints { +0 31 +1 373 +} +endObjectProperties + +# (Arc) +object activeArcClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 65 +y 151 +w 90 +h 90 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 0 +startAngle 61 +totalAngle 29 +fillMode "pie" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 62 +y 168 +w 49 +h 27 +lineColor rgb 40448 40448 40448 +fillColor rgb 40448 40448 40448 +lineWidth 2 +numPoints 2 { +xPoints { +0 110 +1 63 +} +yPoints { +0 194 +1 169 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 120 +y 87 +w 21 +h 65 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 0 +numPoints 2 { +xPoints { +0 141 +1 120 +} +yPoints { +0 87 +1 152 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 142 +w 31 +h 53 +lineColor rgb 40448 40448 40448 +fillColor rgb 40448 40448 40448 +lineWidth 2 +numPoints 2 { +xPoints { +0 140 +1 111 +} +yPoints { +0 143 +1 194 +} +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 114 +y 192 +w 5 +h 5 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 22 +y 96 +w 98 +h 110 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 22 +y 186 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "+X" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 189 +w 14 +h 11 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 3 { +xPoints { +0 63 +1 51 +2 61 +} +yPoints { +0 190 +1 195 +2 199 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 194 +w 62 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 111 +1 51 +} +yPoints { +0 195 +1 195 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 127 +w 2 +h 69 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 111 +1 111 +} +yPoints { +0 195 +1 128 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 102 +y 124 +w 16 +h 16 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 3 { +xPoints { +0 103 +1 110 +2 117 +} +yPoints { +0 139 +1 125 +2 139 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 100 +y 96 +w 32 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "+Z" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 425 +y 351 +w 270 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "You're using the wrong setup display" +} +visPv "CALC\\\{(A)\}($(P)$(Q):geomIsSRI)" +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 425 +y 336 +w 270 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "This display is for the SRI geometry" +} +visPv "CALC\\\{(A)\}($(P)$(Q):geomIsSRI)" +visMin 0 +visMax 1 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 518 +y 219 +w 20 +h 53 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 525 +y 239 +w 2 +h 33 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 526 +1 526 +} +yPoints { +0 271 +1 240 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 518 +y 236 +w 14 +h 14 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 519 +1 525 +2 531 +} +yPoints { +0 249 +1 237 +2 249 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 518 +y 219 +w 33 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "+Y'" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 230 +y 41 +w 199 +h 249 +lineColor rgb 19968 42240 63744 +fill +fillColor rgb 19968 42240 63744 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 251 +y 262 +w 8 +h 8 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 326 +y 57 +w 8 +h 8 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 346 +y 129 +w 8 +h 8 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 264 +y 250 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M0" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 378 +y 258 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M1" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 320 +y 71 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "M2" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 263 +w 15 +h 5 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 263 +w 8 +h 6 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 243 +1 237 +2 242 +} +yPoints { +0 264 +1 266 +2 268 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 237 +y 265 +w 15 +h 2 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 251 +1 238 +} +yPoints { +0 266 +1 266 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 311 +y 58 +w 15 +h 5 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 311 +y 58 +w 8 +h 6 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 318 +1 312 +2 317 +} +yPoints { +0 59 +1 61 +2 63 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 312 +y 60 +w 15 +h 2 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 326 +1 313 +} +yPoints { +0 61 +1 61 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 327 +y 43 +w 5 +h 15 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 329 +y 44 +w 2 +h 15 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 330 +1 330 +} +yPoints { +0 58 +1 45 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 327 +y 43 +w 6 +h 7 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 328 +1 330 +2 332 +} +yPoints { +0 49 +1 44 +2 49 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 254 +y 246 +w 2 +h 39 +lineColor rgb 39168 65280 65280 +fillColor rgb 39168 65280 65280 +lineWidth 2 +lineStyle "dash" +numPoints 2 { +xPoints { +0 255 +1 255 +} +yPoints { +0 247 +1 284 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 256 +y 168 +w 64 +h 57 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 256 +y 211 +w 33 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "+X'" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 300 +y 168 +w 33 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "+Z'" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 307 +y 188 +w 2 +h 33 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 308 +1 308 +} +yPoints { +0 220 +1 189 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 300 +y 185 +w 14 +h 14 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 301 +1 307 +2 313 +} +yPoints { +0 198 +1 186 +2 198 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 277 +y 213 +w 14 +h 11 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 290 +1 278 +2 288 +} +yPoints { +0 214 +1 219 +2 223 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 218 +w 28 +h 2 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 307 +1 281 +} +yPoints { +0 219 +1 219 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 63 +w 30 +h 204 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 204 +y 64 +w 25 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 204 +1 228 +} +yPoints { +0 64 +1 64 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 205 +y 266 +w 25 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 205 +1 229 +} +yPoints { +0 266 +1 266 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 64 +w 20 +h 203 + +beginGroup + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 210 +y 64 +w 1 +h 60 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 210 +1 210 +} +yPoints { +0 123 +1 64 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 200 +y 124 +w 32 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Lz'" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 210 +y 146 +w 1 +h 121 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 210 +1 210 +} +yPoints { +0 266 +1 146 +} +endObjectProperties + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 401 +y 262 +w 8 +h 8 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 639 +y 261 +w 10 +h 11 + +beginGroup + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 639 +y 261 +w 9 +h 9 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 640 +y 266 +w 9 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 640 +1 648 +} +yPoints { +0 266 +1 266 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 644 +y 262 +w 1 +h 10 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 644 +1 644 +} +yPoints { +0 262 +1 271 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 235 +y 126 +w 60 +h 18 +controlPv "$(P)$(T).LZ" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 405 +y 266 +w 26 +h 25 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 3 +numPoints 2 { +xPoints { +0 406 +1 429 +} +yPoints { +0 267 +1 289 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 425 +y 294 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "R" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 349 +y 131 +w 82 +h 160 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 3 +numPoints 2 { +xPoints { +0 429 +1 350 +} +yPoints { +0 289 +1 132 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 360 +y 121 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "S" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 644 +y 239 +w 25 +h 29 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 3 +numPoints 2 { +xPoints { +0 645 +1 667 +} +yPoints { +0 266 +1 240 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 670 +y 231 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "R" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 593 +y 190 +w 76 +h 53 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 3 +numPoints 2 { +xPoints { +0 667 +1 594 +} +yPoints { +0 241 +1 191 +} +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 590 +y 187 +w 8 +h 8 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 574 +y 192 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "S" +} +endObjectProperties + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 461 +y 57 +w 8 +h 8 +lineColor rgb 39168 65280 65280 +fill +fillColor rgb 39168 65280 65280 +lineWidth 0 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 41 +w 10 +h 11 + +beginGroup + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 41 +w 9 +h 9 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 461 +y 46 +w 9 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 461 +1 469 +} +yPoints { +0 46 +1 46 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 465 +y 42 +w 1 +h 10 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 465 +1 465 +} +yPoints { +0 42 +1 51 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Circle) +object activeCircleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 461 +y 72 +w 8 +h 8 +lineColor rgb 64256 62208 18944 +fill +fillColor rgb 64256 62208 18944 +lineWidth 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 480 +y 56 +w 80 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "PIVOT POINTS" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 480 +y 41 +w 80 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "LOCAL ORIGIN" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 480 +y 71 +w 80 +h 10 +font "helvetica-medium-r-8.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "'FIXED' POINT" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 319 +y 301 +w 32 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Lx'" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 345 +y 311 +w 62 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 345 +1 406 +} +yPoints { +0 311 +1 311 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 257 +y 311 +w 59 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 257 +1 315 +} +yPoints { +0 311 +1 311 +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 300 +y 318 +w 60 +h 18 +controlPv "$(P)$(T).LX" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 256 +y 297 +w 1 +h 25 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 256 +1 256 +} +yPoints { +0 297 +1 321 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 406 +y 297 +w 1 +h 25 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 406 +1 406 +} +yPoints { +0 297 +1 321 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 242 +w 2 +h 51 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 2 { +xPoints { +0 111 +1 111 +} +yPoints { +0 292 +1 243 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 104 +y 241 +w 13 +h 13 +lineColor rgb 65280 65280 65280 +fillColor rgb 65280 65280 65280 +lineWidth 2 +numPoints 3 { +xPoints { +0 105 +1 111 +2 116 +} +yPoints { +0 253 +1 242 +2 253 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 87 +y 226 +w 50 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor index 3 +useDisplayBg +value { + "BEAM" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 261 +w 10 +h 11 + +beginGroup + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 261 +w 9 +h 9 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 401 +y 266 +w 9 +h 1 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 401 +1 409 +} +yPoints { +0 266 +1 266 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 405 +y 262 +w 1 +h 10 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +numPoints 2 { +xPoints { +0 405 +1 405 +} +yPoints { +0 262 +1 271 +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 700 +h 30 + +beginGroup + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 1 +w 696 +h 23 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 3 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 27 +w 699 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 697 +} +yPoints { +0 28 +1 28 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 350 +y 5 +w 350 +h 15 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "($(P)$(T))" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 0 +w 350 +h 27 +controlPv "$(P)$(T).DESC" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 60416 60416 60416 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +endGroup + +endObjectProperties + + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 495 +y 116 +w 60 +h 18 +controlPv "$(P)$(T).RX" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 495 +y 135 +w 60 +h 18 +controlPv "$(P)$(T).RY" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 615 +y 115 +w 60 +h 18 +controlPv "$(P)$(T).SX" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 615 +y 155 +w 60 +h 18 +controlPv "$(P)$(T).SZ" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 615 +y 135 +w 60 +h 18 +controlPv "$(P)$(T).SY" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 115 +w 140 +h 60 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 115 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Rx'" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 155 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Rz'" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 460 +y 135 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Ry'" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 580 +y 115 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Sx'" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 580 +y 155 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Sz'" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 580 +y 135 +w 33 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 64256 62208 18944 +bgColor index 3 +useDisplayBg +value { + "Sy'" +} +endObjectProperties + +endGroup + +endObjectProperties + + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 495 +y 155 +w 60 +h 18 +controlPv "$(P)$(T).RZ" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 580 +y 58 +w 95 +h 14 +controlPv "$(P)$(Q)fpSelect.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 371 +w 700 +h 129 + +beginGroup + +# (Embedded Window) +object activePipClass +beginObjectProperties +major 4 +minor 1 +release 0 +x 0 +y 371 +w 700 +h 129 +fgColor rgb 0 0 0 +bgColor rgb 65280 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +displaySource "file" +file "table_limits.edl;P=$(P),T=$(T)" +sizeOfs 5 +numDsps 1 +displayFileName { + 0 "table_limits.edl;P=$(P),T=$(T)" +} +noScroll +endObjectProperties + +endGroup + +visMin "A" +visMax "1" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 450 +y 311 +w 80 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Geometry" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 205 +y 348 +w 80 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Angle units" +} +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 125 +y 150 +w 8 +h 10 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 484 +y 276 +w 170 +h 20 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 22 +y 96 +w 98 +h 110 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 518 +y 219 +w 20 +h 53 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 236 +y 263 +w 15 +h 5 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 311 +y 58 +w 15 +h 5 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 327 +y 43 +w 5 +h 15 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 256 +y 168 +w 64 +h 57 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 63 +w 30 +h 204 + +beginGroup +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 64 +w 20 +h 203 + +beginGroup + +endGroup + +endObjectProperties + + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 639 +y 261 +w 10 +h 11 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 41 +w 10 +h 11 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 400 +y 261 +w 10 +h 11 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 0 +w 700 +h 30 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 460 +y 115 +w 140 +h 60 + +beginGroup + +endGroup + +endObjectProperties + + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 580 +y 75 +w 95 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(Q)fpSelect" +indicatorPv "$(P)$(Q)fpSelect" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 580 +y 35 +w 95 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Fixed points" +numPvs 2 +numDsps 1 +displayFileName { + 0 table_fixedPoints.edl +} +menuLabel { + 0 Fixed points +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 585 +y 95 +w 85 +h 15 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "REFRESH MENU" +numPvs 2 +numDsps 1 +displayFileName { + 0 table_setup_SRI_refresh.edl +} +menuLabel { + 0 +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 540 +y 311 +w 100 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(T).GEOM" +indicatorPv "$(P)$(T).GEOM" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 290 +y 345 +w 120 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(T).AUNIT" +indicatorPv "$(P)$(T).AUNIT" +font "helvetica-medium-r-12.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/table_setup_SRI_refresh.edl b/opticsApp/op/edl/autoconvert/table_setup_SRI_refresh.edl new file mode 100644 index 0000000..f22491a --- /dev/null +++ b/opticsApp/op/edl/autoconvert/table_setup_SRI_refresh.edl @@ -0,0 +1,64 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 36 +y 25 +w 700 +h 120 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 585 +y 95 +w 85 +h 15 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "PRESS AGAIN" +numPvs 2 +numDsps 1 +displayFileName { + 0 table_setup_SRI.edl +} +menuLabel { + 0 +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/table_soft.edl b/opticsApp/op/edl/autoconvert/table_soft.edl new file mode 100644 index 0000000..6bdaa3d --- /dev/null +++ b/opticsApp/op/edl/autoconvert/table_soft.edl @@ -0,0 +1,1752 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 1255 +y 241 +w 230 +h 390 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 0 +w 230 +h 20 +controlPv "$(P)$(T).DESC" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x -1 +y 20 +w 232 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 0 +1 229 +} +yPoints { +0 21 +1 21 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 5 +y 27 +w 85 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Fixed point:" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 262 +w 80 +h 15 +controlPv "$(P)$(Q):z.RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 26 +y 261 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 82 +w 80 +h 15 +controlPv "$(P)$(Q):x.RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 90 +y 63 +w 60 +h 18 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Limit" +} +visPv "CALC\\\{(A)\}($(P)$(T).LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 63 +w 70 +h 15 +controlPv "$(P)$(T).LEGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 102 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "X" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 100 +w 80 +h 22 +controlPv "$(P)$(Q):x.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 26 +y 81 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 79 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 150 +y 63 +w 70 +h 15 +controlPv "$(P)$(T).AEGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 115 +y 102 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "AX" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 100 +w 80 +h 22 +controlPv "$(P)$(Q):ax.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 82 +w 80 +h 15 +controlPv "$(P)$(Q):ax.RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 141 +y 81 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 79 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 193 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 190 +w 80 +h 22 +controlPv "$(P)$(Q):y.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 172 +w 80 +h 15 +controlPv "$(P)$(Q):y.RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 26 +y 171 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 169 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 115 +y 191 +w 34 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "AY" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 190 +w 80 +h 22 +controlPv "$(P)$(Q):ay.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 172 +w 80 +h 15 +controlPv "$(P)$(Q):ay.RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 141 +y 171 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 169 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 120 +y 345 +w 60 +h 20 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 120 +y 345 +w 60 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 60160 61696 46336 +bgColor index 3 +useDisplayBg +value { + "Done" +} +visPv "CALC\\\{(A)\}($(P)$(Q):done.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 119 +y 345 +w 62 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 60160 61696 46336 +bgColor index 3 +useDisplayBg +value { + "Moving" +} +visPv "CALC\\\{(A)\}($(P)$(Q):done.VAL)" +visMin 0 +visMax 1 +endObjectProperties + +endGroup + +endObjectProperties + + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 282 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Z" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 280 +w 80 +h 22 +controlPv "$(P)$(Q):z.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 259 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 115 +y 281 +w 34 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "AZ" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 280 +w 80 +h 22 +controlPv "$(P)$(Q):az.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 262 +w 80 +h 15 +controlPv "$(P)$(Q):az.RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 141 +y 261 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 259 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 45 +y 120 +w 44 +h 18 +controlPv "$(P)$(Q):x.TWV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 160 +y 120 +w 44 +h 18 +controlPv "$(P)$(Q):ax.TWV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 45 +y 210 +w 44 +h 18 +controlPv "$(P)$(Q):y.TWV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 160 +y 210 +w 44 +h 18 +controlPv "$(P)$(Q):ay.TWV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 45 +y 300 +w 44 +h 18 +controlPv "$(P)$(Q):z.TWV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 160 +y 300 +w 44 +h 18 +controlPv "$(P)$(Q):az.TWV" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x -1 +y 58 +w 233 +h 2 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 2 +numPoints 2 { +xPoints { +0 0 +1 231 +} +yPoints { +0 59 +1 59 +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 22 +y 77 +w 88 +h 62 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(Q):x.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 137 +y 77 +w 88 +h 62 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(Q):ax.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 22 +y 167 +w 88 +h 62 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(Q):y.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 137 +y 167 +w 88 +h 62 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(Q):ay.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 21 +y 257 +w 88 +h 62 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(Q):z.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 136 +y 258 +w 88 +h 62 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(Q):az.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 95 +y 43 +w 135 +h 15 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "REFRESH MENU" +numPvs 2 +numDsps 1 +displayFileName { + 0 table_refresh.edl +} +menuLabel { + 0 Refresh fixed-point menu +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Menu Button) +object activeMenuButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 95 +y 23 +w 135 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +inconsistentColor rgb 17920 17920 17920 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(Q)fpSelect" +indicatorPv "$(P)$(Q)fpSelect" +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 350 +w 80 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(T).SET" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 370 +w 50 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):sync" +pressValue "1" +releaseValue +onLabel "Sync" +offLabel "Sync" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 50 +y 370 +w 50 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):init" +pressValue "1" +releaseValue +onLabel "Init" +offLabel "Init" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 80 +y 350 +w 35 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):zero" +pressValue "1" +releaseValue +onLabel "Zero" +offLabel "Zero" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 120 +y 366 +w 60 +h 25 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):stop.VAL" +pressValue "1" +releaseValue +onLabel "Stop" +offLabel "Stop" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 120 +y 345 +w 60 +h 20 + +beginGroup + +endGroup + +endObjectProperties + + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 185 +y 370 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "More" +numPvs 12 +numDsps 6 +displayFileName { + 0 table_full_soft.edl + 1 table_setup_SRI.edl + 2 table_setup_GEOCARS.edl + 3 table_setup_NEWPORT.edl + 4 table_setup_PNC.edl + 5 table_fixedPoints.edl +} +menuLabel { + 0 More + 1 Setup (SRI geometry) + 2 Setup (GEOCARS geometry) + 3 Setup (NEWPORT geometry) + 4 Setup (PNC geometry) + 5 Fixed points +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z)" + 1 "P=$(P),Q=$(Q),T=$(T)" + 2 "P=$(P),Q=$(Q),T=$(T)" + 3 "P=$(P),Q=$(Q),T=$(T)" + 4 "P=$(P),Q=$(Q),T=$(T)" + 5 "P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 + 5 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 185 +y 350 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "Less" +numPvs 2 +numDsps 1 +displayFileName { + 0 table_tiny_soft.edl +} +menuLabel { + 0 Less +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 89 +y 120 +w 20 +h 18 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):x.TWF" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 25 +y 120 +w 20 +h 18 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):x.TWR" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 204 +y 120 +w 20 +h 18 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):ax.TWF" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 120 +w 20 +h 18 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):ax.TWR" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 89 +y 210 +w 20 +h 18 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):y.TWF" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 25 +y 210 +w 20 +h 18 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):y.TWR" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 204 +y 210 +w 20 +h 18 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):ay.TWF" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 210 +w 20 +h 18 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):ay.TWR" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 89 +y 300 +w 20 +h 18 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):z.TWF" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 25 +y 300 +w 20 +h 18 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):z.TWR" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 204 +y 300 +w 20 +h 18 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):az.TWF" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 140 +y 300 +w 20 +h 18 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):az.TWR" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/table_tiny.edl b/opticsApp/op/edl/autoconvert/table_tiny.edl new file mode 100644 index 0000000..fd18bb1 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/table_tiny.edl @@ -0,0 +1,1045 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 103 +y 180 +w 230 +h 250 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 42 +w 80 +h 15 +controlPv "$(P)$(T).EX" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 172 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Z" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 118 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 100 +y 23 +w 50 +h 18 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Limit" +} +visPv "CALC\\\{(A)\}($(P)$(T).LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 23 +w 60 +h 15 +controlPv "$(P)$(T).LEGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 62 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "X" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 0 +w 230 +h 20 +controlPv "$(P)$(T).DESC" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 20 +w 231 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 229 +} +yPoints { +0 21 +1 21 +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 225 +w 60 +h 20 + +beginGroup + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 110 +y 225 +w 60 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 60160 61696 46336 +bgColor index 3 +useDisplayBg +value { + "Done" +} +visPv "CALC\\\{(A)\}($(P)$(Q):done.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 109 +y 225 +w 62 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 60160 61696 46336 +bgColor index 3 +useDisplayBg +value { + "Moving" +} +visPv "CALC\\\{(A)\}($(P)$(Q):done.VAL)" +visMin 0 +visMax 1 +endObjectProperties + +endGroup + +endObjectProperties + + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 60 +w 80 +h 22 +controlPv "$(P)$(T).X" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 97 +w 80 +h 15 +controlPv "$(P)$(T).EY" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 115 +w 80 +h 22 +controlPv "$(P)$(T).Y" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 152 +w 80 +h 15 +controlPv "$(P)$(T).EZ" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 170 +w 80 +h 22 +controlPv "$(P)$(T).Z" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 26 +y 41 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 26 +y 96 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 26 +y 151 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 39 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 94 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 149 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 115 +y 171 +w 34 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "AZ" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 115 +y 116 +w 34 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "AY" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 155 +y 23 +w 60 +h 15 +controlPv "$(P)$(T).AEGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 115 +y 62 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "AX" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 42 +w 80 +h 15 +controlPv "$(P)$(T).EAX" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 60 +w 80 +h 22 +controlPv "$(P)$(T).AX" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 97 +w 80 +h 15 +controlPv "$(P)$(T).EAY" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 115 +w 80 +h 22 +controlPv "$(P)$(T).AY" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 152 +w 80 +h 15 +controlPv "$(P)$(T).EAZ" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 170 +w 80 +h 22 +controlPv "$(P)$(T).AZ" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 141 +y 41 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 141 +y 96 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 141 +y 151 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 39 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 94 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 149 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 180 +y 225 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "More" +numPvs 10 +numDsps 5 +displayFileName { + 0 table.edl + 1 table_setup_SRI.edl + 2 table_setup_GEOCARS.edl + 3 table_setup_NEWPORT.edl + 4 table_setup_PNC.edl +} +menuLabel { + 0 More + 1 Setup (SRI geometry) + 2 Setup (GEOCARS geometry) + 3 Setup (NEWPORT geometry) + 4 Setup (PNC geometry) +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z)" + 1 "P=$(P),Q=$(Q),T=$(T)" + 2 "P=$(P),Q=$(Q),T=$(T)" + 3 "P=$(P),Q=$(Q),T=$(T)" + 4 "P=$(P),Q=$(Q),T=$(T)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 200 +w 80 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(T).SET" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 200 +w 40 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(T).ZERO" +pressValue "1" +releaseValue +onLabel "Zero" +offLabel "Zero" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 225 +w 50 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(T).SYNC" +pressValue "1" +releaseValue +onLabel "Sync" +offLabel "Sync" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 55 +y 225 +w 50 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(T).INIT" +pressValue "1" +releaseValue +onLabel "Init" +offLabel "Init" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 135 +y 200 +w 60 +h 25 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):stop.VAL" +pressValue "1" +releaseValue +onLabel "Stop" +offLabel "Stop" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 110 +y 225 +w 60 +h 20 + +beginGroup + +endGroup + +endObjectProperties + + diff --git a/opticsApp/op/edl/autoconvert/table_tiny_soft.edl b/opticsApp/op/edl/autoconvert/table_tiny_soft.edl new file mode 100644 index 0000000..456aa36 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/table_tiny_soft.edl @@ -0,0 +1,1118 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 1227 +y 699 +w 230 +h 250 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 42 +w 80 +h 15 +controlPv "$(P)$(Q):x.RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 172 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Z" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 118 +w 23 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Y" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 100 +y 23 +w 50 +h 18 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "Limit" +} +visPv "CALC\\\{(A)\}($(P)$(T).LVIO)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 23 +w 60 +h 15 +controlPv "$(P)$(T).LEGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 62 +w 24 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "X" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 0 +y 0 +w 230 +h 20 +controlPv "$(P)$(T).DESC" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 20 +w 231 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 229 +} +yPoints { +0 21 +1 21 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 110 +y 225 +w 60 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 60160 61696 46336 +bgColor index 3 +useDisplayBg +value { + "Done" +} +visPv "CALC\\\{(A)\}($(P)$(Q):done.VAL)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 109 +y 225 +w 62 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 60160 61696 46336 +bgColor index 3 +useDisplayBg +value { + "Moving" +} +visPv "CALC\\\{(A)\}($(P)$(Q):done.VAL)" +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 60 +w 80 +h 22 +controlPv "$(P)$(Q):x.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 97 +w 80 +h 15 +controlPv "$(P)$(Q):y.RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 115 +w 80 +h 22 +controlPv "$(P)$(Q):y.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 152 +w 80 +h 15 +controlPv "$(P)$(Q):z.RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 25 +y 170 +w 80 +h 22 +controlPv "$(P)$(Q):z.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 26 +y 41 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 26 +y 96 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 26 +y 151 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 39 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 94 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 149 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 115 +y 171 +w 34 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "AZ" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 115 +y 116 +w 34 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "AY" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 155 +y 23 +w 60 +h 15 +controlPv "$(P)$(T).AEGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 115 +y 62 +w 35 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "AX" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 42 +w 80 +h 15 +controlPv "$(P)$(Q):ax.RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 60 +w 80 +h 22 +controlPv "$(P)$(Q):ax.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 97 +w 80 +h 15 +controlPv "$(P)$(Q):ay.RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 115 +w 80 +h 22 +controlPv "$(P)$(Q):ay.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 152 +w 80 +h 15 +controlPv "$(P)$(Q):az.RBV" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 170 +w 80 +h 22 +controlPv "$(P)$(Q):az.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 141 +y 41 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 141 +y 96 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 141 +y 151 +w 78 +h 16 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 39 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 94 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 139 +y 149 +w 82 +h 20 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(T).SET)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 23 +y 38 +w 86 +h 45 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(Q):x.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 23 +y 93 +w 86 +h 45 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(Q):y.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 23 +y 148 +w 86 +h 45 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(Q):z.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 137 +y 38 +w 86 +h 45 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(Q):ax.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 137 +y 93 +w 86 +h 45 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(Q):ay.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 137 +y 147 +w 86 +h 45 +lineColor rgb 29440 65280 27392 +fillColor rgb 29440 65280 27392 +lineWidth 2 +visPv "CALC\\\{(A)\}($(P)$(Q):az.DMOV)" +visMin 0 +visMax 1 +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 180 +y 225 +w 40 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "More" +numPvs 10 +numDsps 5 +displayFileName { + 0 table_soft.edl + 1 table_setup_SRI.edl + 2 table_setup_GEOCARS.edl + 3 table_setup_NEWPORT.edl + 4 table_setup_PNC.edl +} +menuLabel { + 0 More + 1 Setup (SRI geometry) + 2 Setup (GEOCARS geometry) + 3 Setup (NEWPORT geometry) + 4 Setup (PNC geometry) +} +symbols { + 0 "P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z)" + 1 "P=$(P),Q=$(Q),T=$(T)" + 2 "P=$(P),Q=$(Q),T=$(T)" + 3 "P=$(P),Q=$(Q),T=$(T)" + 4 "P=$(P),Q=$(Q),T=$(T)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 200 +w 80 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(T).SET" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 90 +y 200 +w 40 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):zero" +pressValue "1" +releaseValue +onLabel "Zero" +offLabel "Zero" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 5 +y 225 +w 50 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):sync" +pressValue "1" +releaseValue +onLabel "Sync" +offLabel "Sync" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 55 +y 225 +w 50 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):init" +pressValue "1" +releaseValue +onLabel "Init" +offLabel "Init" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 135 +y 200 +w 60 +h 25 +fgColor rgb 64256 62208 18944 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(Q):stop.VAL" +pressValue "1" +releaseValue +onLabel "Stop" +offLabel "Stop" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/virtualChannelCutMono.edl b/opticsApp/op/edl/autoconvert/virtualChannelCutMono.edl new file mode 100644 index 0000000..a802238 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/virtualChannelCutMono.edl @@ -0,0 +1,310 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 992 +y 294 +w 400 +h 152 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 55808 55808 55808 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 40 +w 120 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Energy (keV)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 65 +w 120 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Offset (mm)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 90 +w 120 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "deltaD" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 115 +w 120 +h 20 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "d spacing (A)" +} +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 145 +y 40 +w 130 +h 95 + +beginGroup + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 145 +y 40 +w 130 +h 20 +controlPv "$(P)VCCMono:Energy" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 145 +y 65 +w 130 +h 20 +controlPv "$(P)VCCMono:offset" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 145 +y 90 +w 130 +h 20 +controlPv "$(P)VCCMono:deltaD" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 145 +y 115 +w 130 +h 20 +controlPv "$(P)VCCMono:d_spacing" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +endGroup + +endObjectProperties + + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 337 +y 125 +w 45 +h 20 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +buttonLabel "debug" +numPvs 10 +numDsps 5 +displayFileName { + 0 motorx.edl + 1 yyTransform.edl + 2 yyTransform.edl + 3 yyCalcoutRecord.edl + 4 yyCalcoutRecord.edl +} +menuLabel { + 0 Energy + 1 tFwd + 2 tRev + 3 calcDone + 4 closeGate +} +symbols { + 0 "P=$(P),M=VCCMono:Energy" + 1 "P=$(P),T=VCCMono:tFwd" + 2 "P=$(P),T=VCCMono:tRev" + 3 "P=$(P),C=VCCMono:calcDone" + 4 "P=$(P),C=VCCMono:closeGate" +} +replaceSymbols { + 0 1 + 1 1 + 2 1 + 3 1 + 4 1 +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 280 +y 40 +w 100 +h 20 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)VCCMono:set" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 145 +y 40 +w 130 +h 95 + +beginGroup + +endGroup + +endObjectProperties + + diff --git a/opticsApp/op/edl/autoconvert/xia_slit.edl b/opticsApp/op/edl/autoconvert/xia_slit.edl new file mode 100644 index 0000000..e8ff81a --- /dev/null +++ b/opticsApp/op/edl/autoconvert/xia_slit.edl @@ -0,0 +1,2530 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 556 +y 211 +w 300 +h 340 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 1 +w 297 +h 17 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 2 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 20 +w 299 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 297 +} +yPoints { +0 21 +1 21 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 170 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(SLIT)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 170 +y 6 +w 110 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "(Looking upstream)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 204 +y 242 +w 80 +h 10 +controlPv "$(P)$(HSC)v0.DRVH" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 14 +y 242 +w 80 +h 10 +controlPv "$(P)$(HSC)height.DRVH" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 204 +y 37 +w 80 +h 10 +controlPv "$(P)$(HSC)h0.DRVH" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 14 +y 37 +w 80 +h 10 +controlPv "$(P)$(HSC)width.DRVH" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 100 +y 126 +w 97 +h 97 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 99 +y 200 +w 99 +h 99 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 100 +y 201 +w 98 +h 98 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 99 +y 50 +w 99 +h 99 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 100 +y 51 +w 98 +h 98 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 19 +y 125 +w 99 +h 99 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 20 +y 126 +w 98 +h 98 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 44 +y 186 +w 50 +h 16 +controlPv "$(P)$(HSC)l_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 29 +y 135 +w 80 +h 10 +controlPv "$(P)$(HSC)l.DRVH" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 29 +y 143 +w 60 +h 14 +controlPv "$(P)$(HSC)lRB" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 29 +y 156 +w 80 +h 20 +controlPv "$(P)$(HSC)l.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 29 +y 176 +w 80 +h 10 +controlPv "$(P)$(HSC)l.DRVL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 64 +y 206 +w 43 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Scan" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 179 +y 125 +w 99 +h 99 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 180 +y 126 +w 98 +h 98 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 189 +y 156 +w 80 +h 20 +controlPv "$(P)$(HSC)r.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 189 +y 176 +w 80 +h 10 +controlPv "$(P)$(HSC)r.DRVL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 204 +y 186 +w 50 +h 16 +controlPv "$(P)$(HSC)r_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 189 +y 135 +w 80 +h 10 +controlPv "$(P)$(HSC)r.DRVH" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 189 +y 143 +w 60 +h 14 +controlPv "$(P)$(HSC)rRB" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 224 +y 206 +w 43 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Scan" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 109 +y 76 +w 80 +h 20 +controlPv "$(P)$(HSC)t.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 109 +y 96 +w 80 +h 10 +controlPv "$(P)$(HSC)t.DRVL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 109 +y 55 +w 80 +h 10 +controlPv "$(P)$(HSC)t.DRVH" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 109 +y 63 +w 80 +h 14 +controlPv "$(P)$(HSC)tRB" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 109 +y 251 +w 80 +h 20 +controlPv "$(P)$(HSC)b.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 109 +y 271 +w 80 +h 10 +controlPv "$(P)$(HSC)b.DRVL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 124 +y 280 +w 50 +h 16 +controlPv "$(P)$(HSC)b_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 109 +y 230 +w 80 +h 10 +controlPv "$(P)$(HSC)b.DRVH" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 109 +y 238 +w 60 +h 14 +controlPv "$(P)$(HSC)bRB" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 29 +y 88 +w 50 +h 16 +controlPv "$(P)$(HSC)width_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 14 +y 58 +w 80 +h 20 +controlPv "$(P)$(HSC)width.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 14 +y 78 +w 80 +h 10 +controlPv "$(P)$(HSC)width.DRVL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 14 +y 45 +w 60 +h 14 +controlPv "$(P)$(HSC)widthRB" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 14 +y 25 +w 80 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 33280 1024 0 +bgColor index 3 +useDisplayBg +value { + "H SIZE" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 239 +y 106 +w 43 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Scan" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 49 +y 106 +w 43 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Scan" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 219 +y 88 +w 50 +h 16 +controlPv "$(P)$(HSC)h0_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 204 +y 58 +w 80 +h 20 +controlPv "$(P)$(HSC)h0.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 204 +y 78 +w 80 +h 10 +controlPv "$(P)$(HSC)h0.DRVL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 204 +y 45 +w 60 +h 14 +controlPv "$(P)$(HSC)h0RB" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 204 +y 25 +w 80 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 33280 1024 0 +bgColor index 3 +useDisplayBg +value { + "H CENTER" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 219 +y 292 +w 50 +h 16 +controlPv "$(P)$(HSC)v0_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 204 +y 263 +w 80 +h 20 +controlPv "$(P)$(HSC)v0.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 204 +y 283 +w 80 +h 10 +controlPv "$(P)$(HSC)v0.DRVL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 204 +y 250 +w 60 +h 14 +controlPv "$(P)$(HSC)v0RB" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 204 +y 230 +w 80 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 33280 1024 0 +bgColor index 3 +useDisplayBg +value { + "V CENTER" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 29 +y 293 +w 50 +h 16 +controlPv "$(P)$(HSC)height_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 14 +y 263 +w 80 +h 20 +controlPv "$(P)$(HSC)height.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 14 +y 283 +w 80 +h 10 +controlPv "$(P)$(HSC)height.DRVL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 14 +y 250 +w 60 +h 14 +controlPv "$(P)$(HSC)heightRB" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 14 +y 230 +w 80 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 33280 1024 0 +bgColor index 3 +useDisplayBg +value { + "V SIZE" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 144 +y 131 +w 43 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Scan" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 144 +y 206 +w 43 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Scan" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 239 +y 311 +w 43 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Scan" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 49 +y 311 +w 43 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Scan" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 120 +y 155 +w 60 +h 20 +controlPv "$(P)$(HSC)h_Busy" +format "string" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 64256 62208 18944 +bgColor rgb 0 0 0 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 75 +y 45 +w 20 +h 14 +controlPv "$(P)$(HSC)widthRB.EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 90 +y 143 +w 20 +h 14 +controlPv "$(P)$(HSC)lRB.EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 75 +y 250 +w 20 +h 14 +controlPv "$(P)$(HSC)heightRB.EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 170 +y 63 +w 20 +h 14 +controlPv "$(P)$(HSC)tRB.EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 265 +y 45 +w 20 +h 14 +controlPv "$(P)$(HSC)h0RB.EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 250 +y 143 +w 20 +h 14 +controlPv "$(P)$(HSC)rRB.EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 170 +y 238 +w 20 +h 14 +controlPv "$(P)$(HSC)bRB.EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 265 +y 250 +w 20 +h 14 +controlPv "$(P)$(HSC)v0RB.EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 120 +y 181 +w 60 +h 20 +controlPv "$(P)$(HSC)v_Busy" +format "string" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 64256 62208 18944 +bgColor rgb 0 0 0 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 124 +y 105 +w 50 +h 16 +controlPv "$(P)$(HSC)t_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 101 +y 52 +w 96 +h 71 +lineColor rgb 0 55296 0 +fillColor rgb 0 55296 0 +lineWidth 4 +visPv "CALC\\\{(A)\}($(P)$(HSC)v_Busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 101 +y 227 +w 96 +h 71 +lineColor rgb 0 55296 0 +fillColor rgb 0 55296 0 +lineWidth 4 +visPv "CALC\\\{(A)\}($(P)$(HSC)v_Busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 21 +y 127 +w 96 +h 78 +lineColor rgb 0 55296 0 +fillColor rgb 0 55296 0 +lineWidth 4 +visPv "CALC\\\{(A)\}($(P)$(HSC)h_Busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 181 +y 127 +w 96 +h 78 +lineColor rgb 0 55296 0 +fillColor rgb 0 55296 0 +lineWidth 4 +visPv "CALC\\\{(A)\}($(P)$(HSC)h_Busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 250 +y 324 +w 50 +h 16 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "MORE" +numPvs 2 +numDsps 1 +displayFileName { + 0 xia_slit_full.edl +} +menuLabel { + 0 more +} +symbols { + 0 "P=$(P),HSC=$(HSC),SLIT=$(SLIT)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 25 +y 184 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)l_tweak.A" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 93 +y 184 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)l_tweak.B" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 44 +y 205 +w 16 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(HSC)l,NAME=$(HSC)l,DESC=$(HSC)l,EGU=$(HSC)l.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 185 +y 184 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)r_tweak.A" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 253 +y 184 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)r_tweak.B" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 204 +y 205 +w 16 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(HSC)r,NAME=$(HSC)r,DESC=$(HSC)r,EGU=$(HSC)r.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 104 +y 279 +w 20 +h 19 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)b_tweak.A" +pressValue "1" +releaseValue +onLabel "DN" +offLabel "DN" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 174 +y 279 +w 20 +h 19 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)b_tweak.B" +pressValue "1" +releaseValue +onLabel "UP" +offLabel "UP" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 86 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)width_tweak.A" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 78 +y 86 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)width_tweak.B" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 219 +y 105 +w 16 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(HSC)h0,NAME=$(HSC)h0,DESC=$(HSC)h0,EGU=$(HSC)h0.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 29 +y 105 +w 16 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(HSC)width,NAME=$(HSC)width,DESC=$(HSC)width,EGU=$(HSC)width.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 86 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)h0_tweak.A" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 268 +y 86 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)h0_tweak.B" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 291 +w 20 +h 19 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)v0_tweak.A" +pressValue "1" +releaseValue +onLabel "DN" +offLabel "DN" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 268 +y 291 +w 20 +h 19 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)v0_tweak.B" +pressValue "1" +releaseValue +onLabel "UP" +offLabel "UP" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 291 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)height_tweak.A" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 78 +y 291 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)height_tweak.B" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 124 +y 130 +w 16 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(HSC)t,NAME=$(HSC)t,DESC=$(HSC)t,EGU=$(HSC)t.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 124 +y 205 +w 16 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(HSC)b,NAME=$(HSC)b,DESC=$(HSC)b,EGU=$(HSC)b.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 219 +y 310 +w 16 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(HSC)v0,NAME=$(HSC)v0,DESC=$(HSC)v0,EGU=$(HSC)v0.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 29 +y 310 +w 16 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(HSC)height,NAME=$(HSC)height,DESC=$(HSC)height,EGU=$(HSC)height.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 119 +y 303 +w 60 +h 22 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)locate" +pressValue "1" +releaseValue +onLabel "Sync" +offLabel "Sync" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 119 +y 23 +w 60 +h 27 +fgColor rgb 65280 65280 65280 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)stop" +pressValue "1" +releaseValue +onLabel "STOP" +offLabel "STOP" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 174 +y 104 +w 20 +h 19 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)t_tweak.B" +pressValue "1" +releaseValue +onLabel "UP" +offLabel "UP" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 104 +y 104 +w 20 +h 19 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)t_tweak.A" +pressValue "1" +releaseValue +onLabel "DN" +offLabel "DN" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/xia_slit_calib.edl b/opticsApp/op/edl/autoconvert/xia_slit_calib.edl new file mode 100644 index 0000000..78dbded --- /dev/null +++ b/opticsApp/op/edl/autoconvert/xia_slit_calib.edl @@ -0,0 +1,326 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 71 +y 153 +w 400 +h 310 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 47872 49408 34560 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 17 +w 380 +h 22 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Huber Slit Controller $(P)$(HSC)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 4 +w 380 +h 8 +font "helvetica-bold-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "xiahsc.adl edited: 1999-Dec-08 (prj)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 71 +w 380 +h 18 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Instructions" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 44 +w 380 +h 22 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Calibration" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 114 +w 380 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "step 2: unplug power supply from slit cable" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 133 +w 380 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "step 3: manually close the slits to 0" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 152 +w 380 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "step 4: plug the power cable back in" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 95 +w 380 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "step 1: disable slit software" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 171 +w 380 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "step 5: enable slit software" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 236 +w 380 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "step 7: you are done" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 190 +w 380 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "step 6: press the calibrate button below" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 282 +w 147 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "serial port:" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 169 +y 282 +w 221 +h 14 +controlPv "$(P)$(HSC)port" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 47872 49408 34560 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 130 +y 209 +w 140 +h 22 +fgColor rgb 0 0 0 +onColor rgb 39168 65280 65280 +offColor rgb 39168 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)calib" +pressValue "1" +releaseValue +onLabel "calibrate" +offLabel "calibrate" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 301 +y 62 +w 82 +h 38 +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +selectColor rgb 60160 61696 46336 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)enable" +font "helvetica-medium-r-10.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/xia_slit_full.edl b/opticsApp/op/edl/autoconvert/xia_slit_full.edl new file mode 100644 index 0000000..6584fa4 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/xia_slit_full.edl @@ -0,0 +1,3005 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 551 +y 337 +w 300 +h 460 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 1 +y 1 +w 297 +h 17 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 2 +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 0 +y 20 +w 299 +h 3 +lineColor rgb 2560 0 47104 +fillColor rgb 2560 0 47104 +lineWidth 3 +numPoints 2 { +xPoints { +0 1 +1 297 +} +yPoints { +0 21 +1 21 +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 0 +w 170 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(SLIT)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 170 +y 6 +w 110 +h 12 +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "(Looking upstream)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 117 +y 335 +w 170 +h 14 +controlPv "$(P)$(HSC)errMsg" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 22528 13312 3840 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 70 +y 335 +w 40 +h 14 +controlPv "$(P)$(HSC)error" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 22528 13312 3840 +bgColor rgb 55808 55808 55808 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 335 +w 59 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "error:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 11 +y 356 +w 59 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "hor. ID:" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 11 +y 379 +w 59 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "ver. ID:" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 72 +y 354 +w 150 +h 18 +controlPv "$(P)$(HSC)hID" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 72 +y 377 +w 150 +h 18 +controlPv "$(P)$(HSC)vID" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 72 +y 422 +w 170 +h 14 +controlPv "$(P)$(HSC)port" +format "string" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 422 +w 59 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "port:" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 204 +y 242 +w 80 +h 10 +controlPv "$(P)$(HSC)v0.DRVH" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 14 +y 242 +w 80 +h 10 +controlPv "$(P)$(HSC)height.DRVH" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 204 +y 37 +w 80 +h 10 +controlPv "$(P)$(HSC)h0.DRVH" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 14 +y 37 +w 80 +h 10 +controlPv "$(P)$(HSC)width.DRVH" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 100 +y 126 +w 97 +h 97 +lineColor rgb 0 0 0 +fill +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 99 +y 200 +w 100 +h 100 + +beginGroup + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 99 +y 200 +w 99 +h 99 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 100 +y 201 +w 98 +h 98 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +endGroup + +endObjectProperties + + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 99 +y 50 +w 100 +h 100 + +beginGroup + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 99 +y 50 +w 99 +h 99 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 100 +y 51 +w 98 +h 98 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +endGroup + +endObjectProperties + + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 19 +y 125 +w 99 +h 99 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 20 +y 126 +w 98 +h 98 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 44 +y 186 +w 50 +h 16 +controlPv "$(P)$(HSC)l_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 29 +y 135 +w 80 +h 10 +controlPv "$(P)$(HSC)l.DRVH" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 29 +y 143 +w 60 +h 14 +controlPv "$(P)$(HSC)lRB" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 29 +y 156 +w 80 +h 20 +controlPv "$(P)$(HSC)l.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 29 +y 176 +w 80 +h 10 +controlPv "$(P)$(HSC)l.DRVL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 64 +y 206 +w 43 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Scan" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 179 +y 125 +w 99 +h 99 +lineColor rgb 65280 65280 65280 +fill +fillColor rgb 65280 65280 65280 +lineWidth 0 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 180 +y 126 +w 98 +h 98 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 189 +y 156 +w 80 +h 20 +controlPv "$(P)$(HSC)r.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 189 +y 176 +w 80 +h 10 +controlPv "$(P)$(HSC)r.DRVL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 204 +y 186 +w 50 +h 16 +controlPv "$(P)$(HSC)r_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 189 +y 135 +w 80 +h 10 +controlPv "$(P)$(HSC)r.DRVH" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 189 +y 143 +w 60 +h 14 +controlPv "$(P)$(HSC)rRB" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 224 +y 206 +w 43 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Scan" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 109 +y 76 +w 80 +h 20 +controlPv "$(P)$(HSC)t.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 109 +y 96 +w 80 +h 10 +controlPv "$(P)$(HSC)t.DRVL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 124 +y 105 +w 50 +h 16 +controlPv "$(P)$(HSC)t_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 109 +y 55 +w 80 +h 10 +controlPv "$(P)$(HSC)t.DRVH" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 109 +y 63 +w 60 +h 14 +controlPv "$(P)$(HSC)tRB" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 109 +y 251 +w 80 +h 20 +controlPv "$(P)$(HSC)b.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 109 +y 271 +w 80 +h 10 +controlPv "$(P)$(HSC)b.DRVL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 124 +y 280 +w 50 +h 16 +controlPv "$(P)$(HSC)b_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 109 +y 230 +w 80 +h 10 +controlPv "$(P)$(HSC)b.DRVH" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 109 +y 238 +w 60 +h 14 +controlPv "$(P)$(HSC)bRB" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 29 +y 88 +w 50 +h 16 +controlPv "$(P)$(HSC)width_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 14 +y 58 +w 80 +h 20 +controlPv "$(P)$(HSC)width.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 14 +y 78 +w 80 +h 10 +controlPv "$(P)$(HSC)width.DRVL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 14 +y 45 +w 60 +h 14 +controlPv "$(P)$(HSC)widthRB" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 14 +y 25 +w 80 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 33280 1024 0 +bgColor index 3 +useDisplayBg +value { + "H SIZE" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 239 +y 106 +w 43 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Scan" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 49 +y 106 +w 43 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Scan" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 219 +y 88 +w 50 +h 16 +controlPv "$(P)$(HSC)h0_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 204 +y 58 +w 80 +h 20 +controlPv "$(P)$(HSC)h0.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 204 +y 78 +w 80 +h 10 +controlPv "$(P)$(HSC)h0.DRVL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 204 +y 45 +w 60 +h 14 +controlPv "$(P)$(HSC)h0RB" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 204 +y 25 +w 80 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 33280 1024 0 +bgColor index 3 +useDisplayBg +value { + "H CENTER" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 219 +y 292 +w 50 +h 16 +controlPv "$(P)$(HSC)v0_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 204 +y 263 +w 80 +h 20 +controlPv "$(P)$(HSC)v0.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 204 +y 283 +w 80 +h 10 +controlPv "$(P)$(HSC)v0.DRVL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 204 +y 250 +w 60 +h 14 +controlPv "$(P)$(HSC)v0RB" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 204 +y 230 +w 80 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 33280 1024 0 +bgColor index 3 +useDisplayBg +value { + "V CENTER" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 29 +y 293 +w 50 +h 16 +controlPv "$(P)$(HSC)height_tweakVal.VAL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 14 +y 263 +w 80 +h 20 +controlPv "$(P)$(HSC)height.VAL" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 14 +y 283 +w 80 +h 10 +controlPv "$(P)$(HSC)height.DRVL" +format "decimal" +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 14 +y 250 +w 60 +h 14 +controlPv "$(P)$(HSC)heightRB" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 14 +y 230 +w 80 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 33280 1024 0 +bgColor index 3 +useDisplayBg +value { + "V SIZE" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 144 +y 131 +w 43 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Scan" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 144 +y 206 +w 43 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Scan" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 239 +y 311 +w 43 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Scan" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 49 +y 311 +w 43 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Scan" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 75 +y 45 +w 20 +h 14 +controlPv "$(P)$(HSC)widthRB.EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 90 +y 143 +w 20 +h 14 +controlPv "$(P)$(HSC)lRB.EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 75 +y 250 +w 20 +h 14 +controlPv "$(P)$(HSC)heightRB.EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 170 +y 63 +w 20 +h 14 +controlPv "$(P)$(HSC)tRB.EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 265 +y 45 +w 20 +h 14 +controlPv "$(P)$(HSC)h0RB.EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 250 +y 143 +w 20 +h 14 +controlPv "$(P)$(HSC)rRB.EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 170 +y 238 +w 20 +h 14 +controlPv "$(P)$(HSC)bRB.EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 65280 65280 65280 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 265 +y 250 +w 20 +h 14 +controlPv "$(P)$(HSC)v0RB.EGU" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 11 +y 442 +w 59 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "debug:" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 75 +y 440 +w 30 +h 18 +controlPv "$(P)$(HSC)debug" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 101 +y 52 +w 96 +h 71 +lineColor rgb 0 55296 0 +fillColor rgb 0 55296 0 +lineWidth 4 +visPv "CALC\\\{(A)\}($(P)$(HSC)v_Busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 101 +y 227 +w 96 +h 71 +lineColor rgb 0 55296 0 +fillColor rgb 0 55296 0 +lineWidth 4 +visPv "CALC\\\{(A)\}($(P)$(HSC)v_Busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 21 +y 127 +w 96 +h 78 +lineColor rgb 0 55296 0 +fillColor rgb 0 55296 0 +lineWidth 4 +visPv "CALC\\\{(A)\}($(P)$(HSC)h_Busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 181 +y 127 +w 96 +h 78 +lineColor rgb 0 55296 0 +fillColor rgb 0 55296 0 +lineWidth 4 +visPv "CALC\\\{(A)\}($(P)$(HSC)h_Busy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 120 +y 154 +w 60 +h 46 + +beginGroup + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 120 +y 154 +w 60 +h 20 +controlPv "$(P)$(HSC)h_Busy" +format "string" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 64256 62208 18944 +bgColor rgb 0 0 0 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 120 +y 180 +w 60 +h 20 +controlPv "$(P)$(HSC)v_Busy" +format "string" +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 64256 62208 18944 +bgColor rgb 0 0 0 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +endGroup + +endObjectProperties + + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 400 +w 59 +h 18 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)init" +pressValue "1" +releaseValue +onLabel "init" +offLabel "init" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 71 +y 400 +w 140 +h 18 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)enable" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 230 +y 356 +w 60 +h 15 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)hOrient" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 230 +y 379 +w 60 +h 15 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +selectColor rgb 29440 57088 65280 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)vOrient" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 220 +y 400 +w 70 +h 18 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +buttonLabel "CALIBRATE" +numPvs 2 +numDsps 1 +displayFileName { + 0 xia_slit_calib.edl +} +menuLabel { + 0 calibrate +} +symbols { + 0 "P=$(P),HSC=$(HSC)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 250 +y 424 +w 50 +h 16 +fgColor rgb 65280 65280 65280 +bgColor rgb 13056 39168 0 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +buttonLabel "LESS" +numPvs 2 +numDsps 1 +displayFileName { + 0 xia_slit.edl +} +menuLabel { + 0 more +} +symbols { + 0 "P=$(P),HSC=$(HSC),SLIT=$(SLIT)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 99 +y 200 +w 100 +h 100 + +beginGroup + +endGroup + +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 99 +y 50 +w 100 +h 100 + +beginGroup + +endGroup + +endObjectProperties + + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 25 +y 184 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)l_tweak.A" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 93 +y 184 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)l_tweak.B" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 44 +y 205 +w 16 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(HSC)l,NAME=$(HSC)l,DESC=$(HSC)l,EGU=$(HSC)l.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 185 +y 184 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)r_tweak.A" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 253 +y 184 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)r_tweak.B" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 204 +y 205 +w 16 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(HSC)r,NAME=$(HSC)r,DESC=$(HSC)r,EGU=$(HSC)r.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 175 +y 104 +w 20 +h 19 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)t_tweak.B" +pressValue "1" +releaseValue +onLabel "UP" +offLabel "UP" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 104 +y 104 +w 20 +h 19 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)t_tweak.A" +pressValue "1" +releaseValue +onLabel "DN" +offLabel "DN" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 104 +y 279 +w 20 +h 19 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)b_tweak.A" +pressValue "1" +releaseValue +onLabel "DN" +offLabel "DN" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 175 +y 279 +w 20 +h 19 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)b_tweak.B" +pressValue "1" +releaseValue +onLabel "UP" +offLabel "UP" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 86 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)width_tweak.A" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 78 +y 86 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)width_tweak.B" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 29 +y 105 +w 16 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(HSC)width,NAME=$(HSC)width,DESC=$(HSC)width,EGU=$(HSC)width.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 86 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)h0_tweak.A" +pressValue "1" +releaseValue +onLabel "<" +offLabel "<" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 268 +y 86 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)h0_tweak.B" +pressValue "1" +releaseValue +onLabel ">" +offLabel ">" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 200 +y 291 +w 20 +h 19 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)v0_tweak.A" +pressValue "1" +releaseValue +onLabel "DN" +offLabel "DN" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 268 +y 291 +w 20 +h 19 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)v0_tweak.B" +pressValue "1" +releaseValue +onLabel "UP" +offLabel "UP" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 291 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)height_tweak.A" +pressValue "1" +releaseValue +onLabel "-" +offLabel "-" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 78 +y 291 +w 20 +h 20 +fgColor rgb 0 0 0 +onColor rgb 60160 61696 46336 +offColor rgb 60160 61696 46336 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)height_tweak.B" +pressValue "1" +releaseValue +onLabel "+" +offLabel "+" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 124 +y 130 +w 16 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(HSC)t,NAME=$(HSC)t,DESC=$(HSC)t,EGU=$(HSC)t.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 124 +y 205 +w 16 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(HSC)b,NAME=$(HSC)b,DESC=$(HSC)b,EGU=$(HSC)b.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 219 +y 310 +w 16 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(HSC)v0,NAME=$(HSC)v0,DESC=$(HSC)v0,EGU=$(HSC)v0.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 29 +y 310 +w 16 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(HSC)height,NAME=$(HSC)height,DESC=$(HSC)height,EGU=$(HSC)height.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 119 +y 303 +w 60 +h 22 +fgColor rgb 0 0 0 +onColor rgb 29440 57088 65280 +offColor rgb 29440 57088 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)locate" +pressValue "1" +releaseValue +onLabel "Sync" +offLabel "Sync" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 119 +y 23 +w 60 +h 27 +fgColor rgb 65280 65280 65280 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)stop" +pressValue "1" +releaseValue +onLabel "STOP" +offLabel "STOP" +3d +useEnumNumeric +font "helvetica-medium-r-14.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 220 +y 105 +w 16 +h 16 +fgColor rgb 0 0 0 +bgColor rgb 29440 57088 65280 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-bold-r-12.0" +icon +numPvs 2 +numDsps 1 +displayFileName { + 0 scanParmsCustom.edl +} +menuLabel { + 0 Setup scan parameters +} +symbols { + 0 "P=$(P),Q=$(HSC)h0,NAME=$(HSC)h0,DESC=$(HSC)h0,EGU=$(HSC)h0.EGU" +} +replaceSymbols { + 0 1 +} +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 120 +y 154 +w 60 +h 46 + +beginGroup + +endGroup + +endObjectProperties + + diff --git a/opticsApp/op/edl/autoconvert/xia_slit_status.edl b/opticsApp/op/edl/autoconvert/xia_slit_status.edl new file mode 100644 index 0000000..918150a --- /dev/null +++ b/opticsApp/op/edl/autoconvert/xia_slit_status.edl @@ -0,0 +1,958 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 404 +y 24 +w 421 +h 419 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 8 +w 420 +h 26 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "XIA SLIT STATUS" +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 7 +y 69 +w 409 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 8 +1 415 +} +yPoints { +0 70 +1 70 +} +endObjectProperties + +# (Lines) +object activeLineClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 7 +y 280 +w 407 +h 2 +lineColor rgb 0 0 0 +fillColor rgb 0 0 0 +lineWidth 2 +numPoints 2 { +xPoints { +0 8 +1 413 +} +yPoints { +0 281 +1 281 +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 257 +y 76 +w 74 +h 24 +controlPv "$(P)$(HSC)$(BI1)" +format "string" +font "helvetica-medium-r-18.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 257 +y 104 +w 74 +h 24 +controlPv "$(P)$(HSC)$(BI2)" +format "string" +font "helvetica-medium-r-18.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 257 +y 132 +w 74 +h 24 +controlPv "$(P)$(HSC)$(BI3)" +format "string" +font "helvetica-medium-r-18.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 257 +y 160 +w 74 +h 24 +controlPv "$(P)$(HSC)$(BI4)" +format "string" +font "helvetica-medium-r-18.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 257 +y 188 +w 74 +h 24 +controlPv "$(P)$(HSC)$(BI5)" +format "string" +font "helvetica-medium-r-18.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 257 +y 216 +w 74 +h 24 +controlPv "$(P)$(HSC)$(BI6)" +format "string" +font "helvetica-medium-r-18.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 257 +y 244 +w 74 +h 24 +controlPv "$(P)$(HSC)$(BI7)" +format "string" +font "helvetica-medium-r-18.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 0 +y 38 +w 420 +h 26 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "$(SLIT)" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 13 +y 76 +w 220 +h 24 +controlPv "$(P)$(HSC)$(BI1).DESC" +format "string" +font "helvetica-medium-r-18.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 235 +y 76 +w 20 +h 24 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + ":" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 13 +y 104 +w 220 +h 24 +controlPv "$(P)$(HSC)$(BI2).DESC" +format "string" +font "helvetica-medium-r-18.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 235 +y 104 +w 20 +h 24 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + ":" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 13 +y 132 +w 220 +h 24 +controlPv "$(P)$(HSC)$(BI3).DESC" +format "string" +font "helvetica-medium-r-18.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 235 +y 132 +w 20 +h 24 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + ":" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 13 +y 160 +w 220 +h 24 +controlPv "$(P)$(HSC)$(BI4).DESC" +format "string" +font "helvetica-medium-r-18.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 235 +y 160 +w 20 +h 24 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + ":" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 13 +y 188 +w 220 +h 24 +controlPv "$(P)$(HSC)$(BI5).DESC" +format "string" +font "helvetica-medium-r-18.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 235 +y 188 +w 20 +h 24 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + ":" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 13 +y 216 +w 220 +h 24 +controlPv "$(P)$(HSC)$(BI6).DESC" +format "string" +font "helvetica-medium-r-18.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 235 +y 216 +w 20 +h 24 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + ":" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 13 +y 244 +w 220 +h 24 +controlPv "$(P)$(HSC)$(BI7).DESC" +format "string" +font "helvetica-medium-r-18.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 235 +y 244 +w 20 +h 24 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + ":" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 13 +y 293 +w 220 +h 24 +controlPv "$(P)$(HSC)$(OL).DESC" +format "string" +font "helvetica-medium-r-18.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 257 +y 293 +w 74 +h 24 +controlPv "$(P)$(HSC)$(OL)" +format "string" +font "helvetica-medium-r-18.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 257 +y 321 +w 74 +h 24 +controlPv "$(P)$(HSC)$(OR)" +format "string" +font "helvetica-medium-r-18.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 13 +y 321 +w 220 +h 24 +controlPv "$(P)$(HSC)$(OR).DESC" +format "string" +font "helvetica-medium-r-18.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 235 +y 293 +w 20 +h 24 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + ":" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 235 +y 321 +w 20 +h 24 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + ":" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 13 +y 349 +w 220 +h 24 +controlPv "$(P)$(HSC)$(SD).DESC" +format "string" +font "helvetica-medium-r-18.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 235 +y 349 +w 20 +h 24 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + ":" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 257 +y 349 +w 74 +h 24 +controlPv "$(P)$(HSC)$(SD)" +format "string" +font "helvetica-medium-r-18.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 13 +y 377 +w 220 +h 24 +controlPv "$(P)$(HSC)$(GB).DESC" +format "string" +font "helvetica-medium-r-18.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 235 +y 377 +w 20 +h 24 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + ":" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 257 +y 377 +w 74 +h 24 +controlPv "$(P)$(HSC)$(GB)" +format "string" +font "helvetica-medium-r-18.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 339 +y 293 +w 74 +h 24 +controlPv "$(P)$(HSC)$(OL).EGU" +format "string" +font "helvetica-medium-r-18.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 339 +y 321 +w 74 +h 24 +controlPv "$(P)$(HSC)$(OR).EGU" +format "string" +font "helvetica-medium-r-18.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 339 +y 349 +w 74 +h 24 +controlPv "$(P)$(HSC)$(SD).EGU" +format "string" +font "helvetica-medium-r-18.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 339 +y 377 +w 74 +h 24 +controlPv "$(P)$(HSC)$(GB).EGU" +format "string" +font "helvetica-medium-r-18.0" +fontAlign "left" +fgColor rgb 10752 25344 58368 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/xiahsc.edl b/opticsApp/op/edl/autoconvert/xiahsc.edl new file mode 100644 index 0000000..e3ad157 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/xiahsc.edl @@ -0,0 +1,1271 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 85 +y 104 +w 449 +h 426 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 47872 49408 34560 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 17 +w 380 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Huber Slit Controller $(P)$(HSC)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 4 +y 4 +w 363 +h 8 +font "helvetica-bold-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "xiahsc.adl edited: 1999-Sept-25 (prj)" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 181 +y 206 +w 90 +h 50 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 30 +visPv "CALC\\\{(A)\}($(P)$(HSC)error)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 43 +y 186 +w 116 +h 88 +lineColor rgb 34560 37632 57856 +fill +fillColor rgb 34560 37632 57856 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 48 +y 201 +w 106 +h 68 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 3 +visPv "CALC\\\{(A)\}($(P)$(HSC)hBusy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 52 +y 223 +w 100 +h 24 +controlPv "$(P)$(HSC)l" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 52 +y 204 +w 100 +h 20 +controlPv "$(P)$(HSC)lRB" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 54272 56064 40192 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Motif Slider) +object activeMotifSliderClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 52 +y 247 +w 100 +h 20 +fgColor rgb 35584 33280 14592 +bgColor rgb 42496 41984 25088 +2ndBgColor rgb 42496 41984 25088 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(HSC)l" +controlLabelType "pvName" +font "helvetica-bold-r-12.0" +limitsFromDb +increment 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 47 +y 190 +w 110 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "left" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 167 +y 96 +w 116 +h 88 +lineColor rgb 34560 37632 57856 +fill +fillColor rgb 34560 37632 57856 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 172 +y 111 +w 106 +h 68 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 3 +visPv "CALC\\\{(A)\}($(P)$(HSC)vBusy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 176 +y 133 +w 100 +h 24 +controlPv "$(P)$(HSC)t" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 176 +y 114 +w 100 +h 20 +controlPv "$(P)$(HSC)tRB" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 54272 56064 40192 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Motif Slider) +object activeMotifSliderClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 176 +y 157 +w 100 +h 20 +fgColor rgb 35584 33280 14592 +bgColor rgb 42496 41984 25088 +2ndBgColor rgb 42496 41984 25088 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(HSC)t" +controlLabelType "pvName" +font "helvetica-bold-r-12.0" +limitsFromDb +increment 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 171 +y 100 +w 110 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "top" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 167 +y 276 +w 116 +h 88 +lineColor rgb 34560 37632 57856 +fill +fillColor rgb 34560 37632 57856 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 172 +y 291 +w 106 +h 68 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 3 +visPv "CALC\\\{(A)\}($(P)$(HSC)vBusy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 176 +y 313 +w 100 +h 24 +controlPv "$(P)$(HSC)b" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 176 +y 294 +w 100 +h 20 +controlPv "$(P)$(HSC)bRB" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 54272 56064 40192 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Motif Slider) +object activeMotifSliderClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 176 +y 337 +w 100 +h 20 +fgColor rgb 35584 33280 14592 +bgColor rgb 42496 41984 25088 +2ndBgColor rgb 42496 41984 25088 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(HSC)b" +controlLabelType "pvName" +font "helvetica-bold-r-12.0" +limitsFromDb +increment 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 171 +y 280 +w 110 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "bottom" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 291 +y 186 +w 116 +h 88 +lineColor rgb 34560 37632 57856 +fill +fillColor rgb 34560 37632 57856 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 296 +y 201 +w 106 +h 68 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 3 +visPv "CALC\\\{(A)\}($(P)$(HSC)hBusy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 300 +y 223 +w 100 +h 24 +controlPv "$(P)$(HSC)r" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 300 +y 204 +w 100 +h 20 +controlPv "$(P)$(HSC)rRB" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 54272 56064 40192 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Motif Slider) +object activeMotifSliderClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 300 +y 247 +w 100 +h 20 +fgColor rgb 35584 33280 14592 +bgColor rgb 42496 41984 25088 +2ndBgColor rgb 42496 41984 25088 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(HSC)r" +controlLabelType "pvName" +font "helvetica-bold-r-12.0" +limitsFromDb +increment 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 295 +y 190 +w 110 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "right" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 84 +w 116 +h 88 +lineColor rgb 29440 57088 65280 +fill +fillColor rgb 29440 57088 65280 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 29 +y 99 +w 106 +h 68 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 3 +visPv "CALC\\\{(A)\}($(P)$(HSC)hBusy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 33 +y 121 +w 100 +h 24 +controlPv "$(P)$(HSC)width" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 33 +y 102 +w 100 +h 20 +controlPv "$(P)$(HSC)widthRB" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 54272 56064 40192 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Motif Slider) +object activeMotifSliderClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 33 +y 145 +w 100 +h 20 +fgColor rgb 35584 33280 14592 +bgColor rgb 42496 41984 25088 +2ndBgColor rgb 42496 41984 25088 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(HSC)width" +controlLabelType "pvName" +font "helvetica-bold-r-12.0" +limitsFromDb +increment 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 28 +y 88 +w 110 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "width" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 288 +w 116 +h 88 +lineColor rgb 29440 57088 65280 +fill +fillColor rgb 29440 57088 65280 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 29 +y 303 +w 106 +h 68 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 3 +visPv "CALC\\\{(A)\}($(P)$(HSC)hBusy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 33 +y 325 +w 100 +h 24 +controlPv "$(P)$(HSC)h0" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 33 +y 306 +w 100 +h 20 +controlPv "$(P)$(HSC)h0RB" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 54272 56064 40192 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Motif Slider) +object activeMotifSliderClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 33 +y 349 +w 100 +h 20 +fgColor rgb 35584 33280 14592 +bgColor rgb 42496 41984 25088 +2ndBgColor rgb 42496 41984 25088 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(HSC)h0" +controlLabelType "pvName" +font "helvetica-bold-r-12.0" +limitsFromDb +increment 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 28 +y 292 +w 110 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "hor. center" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 310 +y 288 +w 116 +h 88 +lineColor rgb 29440 57088 65280 +fill +fillColor rgb 29440 57088 65280 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 315 +y 303 +w 106 +h 68 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 3 +visPv "CALC\\\{(A)\}($(P)$(HSC)vBusy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 319 +y 325 +w 100 +h 24 +controlPv "$(P)$(HSC)v0" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 319 +y 306 +w 100 +h 20 +controlPv "$(P)$(HSC)v0RB" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 54272 56064 40192 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Motif Slider) +object activeMotifSliderClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 319 +y 349 +w 100 +h 20 +fgColor rgb 35584 33280 14592 +bgColor rgb 42496 41984 25088 +2ndBgColor rgb 42496 41984 25088 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(HSC)v0" +controlLabelType "pvName" +font "helvetica-bold-r-12.0" +limitsFromDb +increment 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 314 +y 292 +w 110 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "ver. center" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 310 +y 84 +w 116 +h 88 +lineColor rgb 29440 57088 65280 +fill +fillColor rgb 29440 57088 65280 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 315 +y 99 +w 106 +h 68 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 3 +visPv "CALC\\\{(A)\}($(P)$(HSC)vBusy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 319 +y 121 +w 100 +h 24 +controlPv "$(P)$(HSC)height" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 319 +y 102 +w 100 +h 20 +controlPv "$(P)$(HSC)heightRB" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 54272 56064 40192 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Motif Slider) +object activeMotifSliderClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 319 +y 145 +w 100 +h 20 +fgColor rgb 35584 33280 14592 +bgColor rgb 42496 41984 25088 +2ndBgColor rgb 42496 41984 25088 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(HSC)height" +controlLabelType "pvName" +font "helvetica-bold-r-12.0" +limitsFromDb +increment 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 314 +y 88 +w 110 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "height" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 176 +y 223 +w 100 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "error!" +} +visPv "CALC\\\{(A)\}($(P)$(HSC)error)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 21 +y 40 +w 410 +h 41 + +beginGroup + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 21 +y 68 +w 410 +h 13 +controlPv "$(P)$(HSC)port.VAL" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor rgb 2560 0 47104 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 21 +y 40 +w 410 +h 24 +controlPv "$(P)$(HSC)port.DESC" +format "decimal" +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +endGroup + +endObjectProperties + + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 21 +y 382 +w 410 +h 30 +fgColor rgb 65280 65280 65280 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)stop" +pressValue "1" +releaseValue +onLabel "STOP" +offLabel "STOP" +3d +useEnumNumeric +font "helvetica-medium-r-18.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 380 +y 3 +w 60 +h 16 +fgColor rgb 60416 60416 60416 +bgColor rgb 32000 22016 9984 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +buttonLabel "more" +numPvs 2 +numDsps 1 +displayFileName { + 0 xiahsc_full.edl +} +menuLabel { + 0 more +} +symbols { + 0 "P=$(P),HSC=$(HSC)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties +# (Group) +object activeGroupClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 21 +y 40 +w 410 +h 41 + +beginGroup + +endGroup + +endObjectProperties + + diff --git a/opticsApp/op/edl/autoconvert/xiahsc_calib.edl b/opticsApp/op/edl/autoconvert/xiahsc_calib.edl new file mode 100644 index 0000000..e690908 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/xiahsc_calib.edl @@ -0,0 +1,365 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 71 +y 153 +w 400 +h 310 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 47872 49408 34560 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 17 +w 380 +h 22 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Huber Slit Controller $(P)$(HSC)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 4 +w 380 +h 8 +font "helvetica-bold-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "xiahsc.adl edited: 1999-Dec-08 (prj)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 71 +w 380 +h 18 +font "helvetica-medium-r-14.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Instructions" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 44 +w 380 +h 22 +font "helvetica-medium-r-18.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Calibration" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 114 +w 380 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "step 2: unplug power supply from slit cable" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 133 +w 380 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "step 3: manually close the slits to 0" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 152 +w 380 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "step 4: plug the power cable back in" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 95 +w 380 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "step 1: disable slit software" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 171 +w 380 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "step 5: enable slit software" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 236 +w 380 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "step 7: you are done" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 190 +w 380 +h 14 +font "helvetica-medium-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "step 6: press the calibrate button below" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 282 +w 147 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "serial port:" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 169 +y 282 +w 221 +h 14 +controlPv "$(P)$(HSC)port" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 47872 49408 34560 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 130 +y 209 +w 140 +h 22 +fgColor rgb 0 0 0 +onColor rgb 39168 65280 65280 +offColor rgb 39168 65280 65280 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)calib" +pressValue "1" +releaseValue +onLabel "calibrate" +offLabel "calibrate" +3d +useEnumNumeric +font "helvetica-medium-r-12.0" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 10 +y 255 +w 380 +h 22 +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-12.0" +icon +buttonLabel "return to slit control screen" +numPvs 2 +numDsps 1 +displayFileName { + 0 xiahsc.edl +} +menuLabel { + 0 slit control +} +symbols { + 0 "P=$(P),HSC=$(HSC)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 301 +y 62 +w 82 +h 38 +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +selectColor rgb 60160 61696 46336 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)enable" +font "helvetica-medium-r-10.0" +endObjectProperties + diff --git a/opticsApp/op/edl/autoconvert/xiahsc_full.edl b/opticsApp/op/edl/autoconvert/xiahsc_full.edl new file mode 100644 index 0000000..0915227 --- /dev/null +++ b/opticsApp/op/edl/autoconvert/xiahsc_full.edl @@ -0,0 +1,1544 @@ +4 0 1 +beginScreenProperties +major 4 +minor 0 +release 1 +x 13 +y 35 +w 449 +h 538 +font "helvetica-medium-r-18.0" +ctlFont "helvetica-bold-r-10.0" +btnFont "helvetica-medium-r-18.0" +fgColor rgb 0 0 0 +bgColor rgb 47872 49408 34560 +textColor rgb 0 0 0 +ctlFgColor1 rgb 64256 62208 18944 +ctlFgColor2 rgb 60928 46592 11008 +ctlBgColor1 rgb 52480 24832 0 +ctlBgColor2 rgb 65280 45056 65280 +topShadowColor rgb 44544 19968 48128 +botShadowColor rgb 13312 13056 34304 +showGrid +snapToGrid +gridSize 4 +endScreenProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 10 +y 17 +w 380 +h 20 +font "helvetica-medium-r-14.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "Huber Slit Controller $(P)$(HSC)" +} +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 4 +y 4 +w 363 +h 8 +font "helvetica-bold-r-12.0" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "xiahsc.adl edited: 1999-Sept-25 (prj)" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 181 +y 206 +w 90 +h 50 +lineColor rgb 64256 62208 18944 +fillColor rgb 64256 62208 18944 +lineWidth 30 +visPv "CALC\\\{(A)\}($(P)$(HSC)error)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 43 +y 186 +w 116 +h 88 +lineColor rgb 34560 37632 57856 +fill +fillColor rgb 34560 37632 57856 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 48 +y 201 +w 106 +h 68 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 3 +visPv "CALC\\\{(A)\}($(P)$(HSC)hBusy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 52 +y 223 +w 100 +h 24 +controlPv "$(P)$(HSC)l" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 52 +y 204 +w 100 +h 20 +controlPv "$(P)$(HSC)lRB" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 54272 56064 40192 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Motif Slider) +object activeMotifSliderClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 52 +y 247 +w 100 +h 20 +fgColor rgb 35584 33280 14592 +bgColor rgb 42496 41984 25088 +2ndBgColor rgb 42496 41984 25088 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(HSC)l" +controlLabelType "pvName" +font "helvetica-bold-r-12.0" +limitsFromDb +increment 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 47 +y 190 +w 110 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "left" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 167 +y 96 +w 116 +h 88 +lineColor rgb 34560 37632 57856 +fill +fillColor rgb 34560 37632 57856 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 172 +y 111 +w 106 +h 68 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 3 +visPv "CALC\\\{(A)\}($(P)$(HSC)vBusy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 176 +y 133 +w 100 +h 24 +controlPv "$(P)$(HSC)t" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 176 +y 114 +w 100 +h 20 +controlPv "$(P)$(HSC)tRB" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 54272 56064 40192 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Motif Slider) +object activeMotifSliderClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 176 +y 157 +w 100 +h 20 +fgColor rgb 35584 33280 14592 +bgColor rgb 42496 41984 25088 +2ndBgColor rgb 42496 41984 25088 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(HSC)t" +controlLabelType "pvName" +font "helvetica-bold-r-12.0" +limitsFromDb +increment 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 171 +y 100 +w 110 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "top" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 167 +y 276 +w 116 +h 88 +lineColor rgb 34560 37632 57856 +fill +fillColor rgb 34560 37632 57856 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 172 +y 291 +w 106 +h 68 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 3 +visPv "CALC\\\{(A)\}($(P)$(HSC)vBusy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 176 +y 313 +w 100 +h 24 +controlPv "$(P)$(HSC)b" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 176 +y 294 +w 100 +h 20 +controlPv "$(P)$(HSC)bRB" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 54272 56064 40192 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Motif Slider) +object activeMotifSliderClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 176 +y 337 +w 100 +h 20 +fgColor rgb 35584 33280 14592 +bgColor rgb 42496 41984 25088 +2ndBgColor rgb 42496 41984 25088 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(HSC)b" +controlLabelType "pvName" +font "helvetica-bold-r-12.0" +limitsFromDb +increment 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 171 +y 280 +w 110 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "bottom" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 291 +y 186 +w 116 +h 88 +lineColor rgb 34560 37632 57856 +fill +fillColor rgb 34560 37632 57856 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 296 +y 201 +w 106 +h 68 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 3 +visPv "CALC\\\{(A)\}($(P)$(HSC)hBusy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 300 +y 223 +w 100 +h 24 +controlPv "$(P)$(HSC)r" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 300 +y 204 +w 100 +h 20 +controlPv "$(P)$(HSC)rRB" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 54272 56064 40192 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Motif Slider) +object activeMotifSliderClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 300 +y 247 +w 100 +h 20 +fgColor rgb 35584 33280 14592 +bgColor rgb 42496 41984 25088 +2ndBgColor rgb 42496 41984 25088 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(HSC)r" +controlLabelType "pvName" +font "helvetica-bold-r-12.0" +limitsFromDb +increment 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 295 +y 190 +w 110 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "right" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 84 +w 116 +h 88 +lineColor rgb 29440 57088 65280 +fill +fillColor rgb 29440 57088 65280 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 29 +y 99 +w 106 +h 68 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 3 +visPv "CALC\\\{(A)\}($(P)$(HSC)hBusy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 33 +y 121 +w 100 +h 24 +controlPv "$(P)$(HSC)width" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 33 +y 102 +w 100 +h 20 +controlPv "$(P)$(HSC)widthRB" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 54272 56064 40192 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Motif Slider) +object activeMotifSliderClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 33 +y 145 +w 100 +h 20 +fgColor rgb 35584 33280 14592 +bgColor rgb 42496 41984 25088 +2ndBgColor rgb 42496 41984 25088 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(HSC)width" +controlLabelType "pvName" +font "helvetica-bold-r-12.0" +limitsFromDb +increment 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 28 +y 88 +w 110 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "width" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 24 +y 288 +w 116 +h 88 +lineColor rgb 29440 57088 65280 +fill +fillColor rgb 29440 57088 65280 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 29 +y 303 +w 106 +h 68 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 3 +visPv "CALC\\\{(A)\}($(P)$(HSC)hBusy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 33 +y 325 +w 100 +h 24 +controlPv "$(P)$(HSC)h0" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 33 +y 306 +w 100 +h 20 +controlPv "$(P)$(HSC)h0RB" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 54272 56064 40192 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Motif Slider) +object activeMotifSliderClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 33 +y 349 +w 100 +h 20 +fgColor rgb 35584 33280 14592 +bgColor rgb 42496 41984 25088 +2ndBgColor rgb 42496 41984 25088 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(HSC)h0" +controlLabelType "pvName" +font "helvetica-bold-r-12.0" +limitsFromDb +increment 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 28 +y 292 +w 110 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "hor. center" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 310 +y 288 +w 116 +h 88 +lineColor rgb 29440 57088 65280 +fill +fillColor rgb 29440 57088 65280 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 315 +y 303 +w 106 +h 68 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 3 +visPv "CALC\\\{(A)\}($(P)$(HSC)vBusy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 319 +y 325 +w 100 +h 24 +controlPv "$(P)$(HSC)v0" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 319 +y 306 +w 100 +h 20 +controlPv "$(P)$(HSC)v0RB" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 54272 56064 40192 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Motif Slider) +object activeMotifSliderClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 319 +y 349 +w 100 +h 20 +fgColor rgb 35584 33280 14592 +bgColor rgb 42496 41984 25088 +2ndBgColor rgb 42496 41984 25088 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(HSC)v0" +controlLabelType "pvName" +font "helvetica-bold-r-12.0" +limitsFromDb +increment 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 314 +y 292 +w 110 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "ver. center" +} +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 310 +y 84 +w 116 +h 88 +lineColor rgb 29440 57088 65280 +fill +fillColor rgb 29440 57088 65280 +endObjectProperties + +# (Rectangle) +object activeRectangleClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 315 +y 99 +w 106 +h 68 +lineColor rgb 0 55296 0 +fill +fillColor rgb 0 55296 0 +lineWidth 3 +visPv "CALC\\\{(A)\}($(P)$(HSC)vBusy)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 319 +y 121 +w 100 +h 24 +controlPv "$(P)$(HSC)height" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 60160 61696 46336 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 319 +y 102 +w 100 +h 20 +controlPv "$(P)$(HSC)heightRB" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 54272 56064 40192 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Motif Slider) +object activeMotifSliderClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 319 +y 145 +w 100 +h 20 +fgColor rgb 35584 33280 14592 +bgColor rgb 42496 41984 25088 +2ndBgColor rgb 42496 41984 25088 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +controlPv "$(P)$(HSC)height" +controlLabelType "pvName" +font "helvetica-bold-r-12.0" +limitsFromDb +increment 0 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 314 +y 88 +w 110 +h 10 +font "helvetica-medium-r-8.0" +fontAlign "center" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "height" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 187 +y 420 +w 240 +h 14 +controlPv "$(P)$(HSC)errMsg" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 22528 13312 3840 +bgColor rgb 42496 41984 25088 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 21 +y 464 +w 112 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "hor. ID:" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 142 +y 462 +w 168 +h 18 +controlPv "$(P)$(HSC)hID" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 54272 56064 40192 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 21 +y 487 +w 112 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "ver. ID:" +} +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 142 +y 485 +w 168 +h 18 +controlPv "$(P)$(HSC)vID" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "left" +fgColor rgb 0 0 0 +bgColor rgb 54272 56064 40192 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 140 +y 420 +w 40 +h 14 +controlPv "$(P)$(HSC)error" +format "decimal" +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 22528 13312 3840 +bgColor rgb 42496 41984 25088 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 176 +y 223 +w 100 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "center" +fgColor rgb 64768 0 0 +bgColor index 3 +useDisplayBg +value { + "error!" +} +visPv "CALC\\\{(A)\}($(P)$(HSC)error)" +visInvert +visMin 0 +visMax 1 +endObjectProperties + +# (Static Text) +object activeXTextClass +beginObjectProperties +major 4 +minor 1 +release 1 +x 20 +y 420 +w 100 +h 14 +font "helvetica-medium-r-12.0" +fontAlign "right" +fgColor rgb 0 0 0 +bgColor index 3 +useDisplayBg +value { + "error:" +} +endObjectProperties + +# (Text Monitor) +object activeXTextDspClass:noedit +beginObjectProperties +major 4 +minor 7 +release 0 +x 21 +y 68 +w 410 +h 13 +controlPv "$(P)$(HSC)port.VAL" +format "decimal" +font "helvetica-medium-r-10.0" +fontAlign "center" +fgColor rgb 65280 65280 65280 +bgColor rgb 2560 0 47104 +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Text Control) +object activeXTextDspClass +beginObjectProperties +major 4 +minor 7 +release 0 +x 21 +y 40 +w 410 +h 28 +controlPv "$(P)$(HSC)port.DESC" +format "decimal" +font "helvetica-medium-r-14.0" +fontAlign "left" +fgColor rgb 2560 0 47104 +bgColor rgb 51200 51200 51200 +editable +motifWidget +limitsFromDb +nullColor rgb 60928 46592 11008 +smartRefresh +fastUpdate +newPos +objType "controls" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 21 +y 382 +w 410 +h 30 +fgColor rgb 65280 65280 65280 +onColor rgb 64768 0 0 +offColor rgb 64768 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)stop" +pressValue "1" +releaseValue +onLabel "STOP" +offLabel "STOP" +3d +useEnumNumeric +font "helvetica-medium-r-18.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 21 +y 439 +w 112 +h 18 +fgColor rgb 0 0 0 +onColor rgb 35584 33280 14592 +offColor rgb 35584 33280 14592 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)init" +pressValue "1" +releaseValue +onLabel "init" +offLabel "init" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Message Button) +object activeMessageButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 319 +y 439 +w 112 +h 18 +fgColor rgb 0 0 0 +onColor rgb 35584 33280 14592 +offColor rgb 35584 33280 14592 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)locate" +pressValue "1" +releaseValue +onLabel "locate" +offLabel "locate" +3d +useEnumNumeric +font "helvetica-medium-r-10.0" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 142 +y 439 +w 168 +h 18 +fgColor rgb 0 0 0 +bgColor rgb 54272 56064 40192 +selectColor rgb 54272 56064 40192 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)enable" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 319 +y 464 +w 112 +h 15 +fgColor rgb 0 0 0 +bgColor rgb 54272 56064 40192 +selectColor rgb 54272 56064 40192 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)hOrient" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Choice Button) +object activeChoiceButtonClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 319 +y 487 +w 112 +h 15 +fgColor rgb 0 0 0 +bgColor rgb 54272 56064 40192 +selectColor rgb 54272 56064 40192 +inconsistentColor rgb 0 0 0 +topShadowColor rgb 65280 65280 65280 +botShadowColor rgb 0 0 0 +controlPv "$(P)$(HSC)vOrient" +font "helvetica-medium-r-10.0" +orientation "horizontal" +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 319 +y 509 +w 112 +h 18 +fgColor rgb 0 0 0 +bgColor rgb 35584 33280 14592 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-10.0" +icon +buttonLabel "calibrate..." +numPvs 2 +numDsps 1 +displayFileName { + 0 xiahsc_calib.edl +} +menuLabel { + 0 calibrate +} +symbols { + 0 "P=$(P),HSC=$(HSC)" +} +replaceSymbols { + 0 1 +} +endObjectProperties + +# (Related Display) +object relatedDisplayClass +beginObjectProperties +major 4 +minor 0 +release 0 +x 384 +y 3 +w 60 +h 16 +fgColor rgb 60416 60416 60416 +bgColor rgb 32000 22016 9984 +topShadowColor rgb 55808 55808 55808 +botShadowColor rgb 17920 17920 17920 +font "helvetica-medium-r-8.0" +icon +buttonLabel "less" +numPvs 2 +numDsps 1 +displayFileName { + 0 xiahsc.edl +} +menuLabel { + 0 less +} +symbols { + 0 "P=$(P),HSC=$(HSC)" +} +closeAction { + 0 1 +} +replaceSymbols { + 0 1 +} +closeDisplay { + 0 1 +} +endObjectProperties + diff --git a/opticsApp/op/opi/Io.opi b/opticsApp/op/opi/Io.opi deleted file mode 100644 index 641052f..0000000 --- a/opticsApp/op/opi/Io.opi +++ /dev/null @@ -1,5176 +0,0 @@ - - false - - true - - 39872d87:13e14015f61:20c8 - 3.1.2.20120830 - - true - 460 - Io - false - false - - - - - - - Display - true - 545 - - true - 5 - - false - -1 - -1 - - - 194 - 366 - - - true - - true - 39872d87:13e14015f61:20cb - - 25 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 246 - 0 - - false - 1 - - - - - 291 - - 10 - - true - true - 1 - false - 39872d87:13e14015f61:20cc - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 4 - true - false - $(P)HePath.DESC - - - - - - - Text Update - true - ###### - false - 0 - - - - 131 - 0 - - - 1 - - - - 0 - - 5 - false - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 25 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:20cd - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)HePath - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 132 - - - true - true - 1 - false - 39872d87:13e14015f61:20ce - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 4 - true - false - $(P)HePath.EGU - - - - - - - Text Update - true - ###### - false - 0 - - - - 50 - 0 - - - 1 - - - - 0 - - 5 - false - $(pv_name) -$(pv_value) - 196 - - - - - true - - true - 39872d87:13e14015f61:20cf - - 25 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 246 - 0 - - false - 1 - - - - - 321 - - 10 - - true - true - 1 - false - 39872d87:13e14015f61:20d0 - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 4 - true - false - $(P)airPath.DESC - - - - - - - Text Update - true - ###### - false - 0 - - - - 131 - 0 - - - 1 - - - - 0 - - 5 - false - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 25 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:20d1 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)airPath - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 132 - - - true - true - 1 - false - 39872d87:13e14015f61:20d2 - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 4 - true - false - $(P)airPath.EGU - - - - - - - Text Update - true - ###### - false - 0 - - - - 50 - 0 - - - 1 - - - - 0 - - 5 - false - $(pv_name) -$(pv_value) - 196 - - - - - true - - true - 39872d87:13e14015f61:20d3 - - 25 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 245 - 0 - - false - 1 - - - - - 291 - - 272 - - true - true - 1 - false - 39872d87:13e14015f61:20d4 - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 4 - true - false - $(P)Be.DESC - - - - - - - Text Update - true - ###### - false - 0 - - - - 131 - 0 - - - 1 - - - - 0 - - 5 - false - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 25 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:20d5 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)Be - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 131 - - - true - true - 1 - false - 39872d87:13e14015f61:20d6 - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 4 - true - false - $(P)Be.EGU - - - - - - - Text Update - true - ###### - false - 0 - - - - 50 - 0 - - - 1 - - - - 0 - - 5 - false - $(pv_name) -$(pv_value) - 195 - - - - - true - - true - 39872d87:13e14015f61:20d7 - - 25 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 246 - 0 - - false - 1 - - - - - 158 - - 265 - - true - true - 1 - false - 39872d87:13e14015f61:20d8 - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 4 - true - false - $(P)v2f.DESC - - - - - - - Text Update - true - ###### - false - 0 - - - - 131 - 0 - - - 1 - - - - 0 - - 5 - false - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 25 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:20d9 - 0.0 - Text Input - - true - true - false - - 2 - false - 0 - $(P)v2f - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 132 - - - true - true - 1 - false - 39872d87:13e14015f61:20da - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 4 - true - false - $(P)v2f.EGU - - - - - - - Text Update - true - ###### - false - 0 - - - - 50 - 0 - - - 1 - - - - 0 - - 5 - false - $(pv_name) -$(pv_value) - 196 - - - - - true - - true - 39872d87:13e14015f61:20db - - 23 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 299 - 0 - - false - 1 - - - - - 30 - - 1 - - true - true - 1 - false - 39872d87:13e14015f61:20dc - false - 0.0 - - 18 - Text Update - false - - true - true - false - - 4 - true - false - $(P)flux.DESC - - - - - - - Text Update - true - ###### - false - 0 - - - - 113 - 0 - - - 1 - - - - 0 - - 2 - false - $(pv_name) -$(pv_value) - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:20dd - false - 0.0 - - 23 - Text Update - false - - true - true - false - - 2 - true - false - $(P)flux - - - - - - - Text Update - true - ###### - false - 0 - - - - 100 - 0 - - - 1 - - - - 0 - - 0 - false - $(pv_name) -$(pv_value) - 114 - - - true - true - 1 - false - 39872d87:13e14015f61:20de - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 4 - true - false - $(P)flux.EGU - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 0 - - 4 - false - $(pv_name) -$(pv_value) - 219 - - - - - true - - true - 39872d87:13e14015f61:20e0 - - 23 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 299 - 0 - - false - 1 - - - - - 58 - - 1 - - true - true - 1 - false - 39872d87:13e14015f61:20e1 - false - 0.0 - - 18 - Text Update - false - - true - true - false - - 4 - true - false - $(P)detector.DESC - - - - - - - Text Update - true - ###### - false - 0 - - - - 113 - 0 - - - 1 - - - - 0 - - 2 - false - $(pv_name) -$(pv_value) - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:20e2 - false - 0.0 - - 23 - Text Update - false - - true - true - false - - 2 - true - false - $(P)detector - - - - - - - Text Update - true - ###### - false - 0 - - - - 100 - 0 - - - 1 - - - - 0 - - 0 - false - $(pv_name) -$(pv_value) - 114 - - - true - true - 1 - false - 39872d87:13e14015f61:20e3 - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 4 - true - false - $(P)detector.EGU - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 0 - - 4 - false - $(pv_name) -$(pv_value) - 219 - - - - - true - - true - 39872d87:13e14015f61:20e4 - - 18 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 299 - 0 - - false - 1 - - - - - 110 - - 1 - - true - true - 1 - false - 39872d87:13e14015f61:20e5 - false - 0.0 - - 18 - Text Update - false - - true - true - false - - 6 - true - false - $(P)ionAbs - - - - - - - Text Update - true - ###### - false - 0 - - - - 100 - 0 - - - 1 - - - - 0 - - 0 - false - $(pv_name) -$(pv_value) - 114 - - - true - true - 1 - false - 39872d87:13e14015f61:20e6 - false - 0.0 - - 16 - Text Update - false - - true - true - false - - 4 - true - false - $(P)ionAbs.DESC - - - - - - - Text Update - true - ###### - false - 0 - - - - 113 - 0 - - - 1 - - - - 0 - - 1 - false - $(pv_name) -$(pv_value) - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:20e7 - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 4 - true - false - $(P)ionAbs.EGU - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 0 - - 2 - false - $(pv_name) -$(pv_value) - 219 - - - - - true - - true - 39872d87:13e14015f61:20e8 - - 18 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 299 - 0 - - false - 1 - - - - - 86 - - 1 - - true - true - 1 - false - 39872d87:13e14015f61:20e9 - false - 0.0 - - 16 - Text Update - false - - true - true - false - - 4 - true - false - $(P)ionPhotons.DESC - - - - - - - Text Update - true - ###### - false - 0 - - - - 113 - 0 - - - 1 - - - - 0 - - 1 - false - $(pv_name) -$(pv_value) - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:20ea - false - 0.0 - - 18 - Text Update - false - - true - true - false - - 2 - true - false - $(P)ionPhotons - - - - - - - Text Update - true - ###### - false - 0 - - - - 100 - 0 - - - 1 - - - - 0 - - 0 - false - $(pv_name) -$(pv_value) - 114 - - - true - true - 1 - false - 39872d87:13e14015f61:20eb - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 4 - true - false - $(P)ionPhotons.EGU - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 0 - - 2 - false - $(pv_name) -$(pv_value) - 219 - - - - - true - - true - 39872d87:13e14015f61:20ec - - 68 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 260 - 0 - - false - 1 - - - - - 37 - - 292 - - true - true - 1 - false - 39872d87:13e14015f61:20ed - false - 0.0 - - 18 - Text Update - false - - true - true - false - - 2 - true - false - $(S).S1 - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 0 - - 25 - false - $(pv_name) -$(pv_value) - 105 - - - true - true - 1 - false - 39872d87:13e14015f61:20ee - false - 0.0 - - 18 - Text Update - false - - true - true - false - - 2 - true - false - $(S).FREQ - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 0 - - 0 - false - $(pv_name) -$(pv_value) - 105 - - - true - 1 - 39872d87:13e14015f61:20ef - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Hz - - - - 70 - 0 - - 1 - - - - 0 - - 2 - true - - 190 - - - true - 1 - 39872d87:13e14015f61:20f0 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - scaler cnts - - - - 70 - 0 - - 1 - - - - 0 - - 27 - true - - 190 - - - true - 1 - 39872d87:13e14015f61:20f1 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - scaler cnts - - - - 70 - 0 - - 1 - - - - 0 - - 52 - true - - 190 - - - true - 1 - 39872d87:13e14015f61:20f2 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - counter clock - - - - 95 - 0 - - 1 - - - - 1 - - 2 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:20f3 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - clock ticks - - - - 95 - 0 - - 1 - - - - 1 - - 27 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:20f4 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Io counts - - - - 95 - 0 - - 1 - - - - 1 - - 52 - true - - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:20f5 - false - 0.0 - - 18 - Text Update - false - - true - true - false - - 1 - true - false - $(S).S5 - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 0 - - 50 - false - $(pv_name) -$(pv_value) - 105 - - - - - true - - true - 39872d87:13e14015f61:20f6 - - 40 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 271 - 0 - - false - 1 - - - - - 321 - - 272 - - true - 1 - 39872d87:13e14015f61:20f7 - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - 2'' proportional cntr - - - - 140 - 0 - - 1 - - - - 1 - - 28 - true - - 105 - - - false - true - 1 - false - false - - 25 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:20f8 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)efficiency - - - - false - 0 - - - false - - - - 0 - - 1 - $(pv_name) -$(pv_value) - 132 - - - false - true - true - 39872d87:13e14015f61:20f9 - - 23 - Menu Button - false - - true - true - false - - false - $(P)ArPcntr - - - - - - - Menu Button - true - false - - Default - - 75 - 6 - - - - 1 - - - - 0 - - $(pv_name) -$(pv_value) - 196 - - - true - true - 1 - false - 39872d87:13e14015f61:20fa - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 4 - true - false - $(P)efficiency.DESC - - - - - - - Text Update - true - ###### - false - 0 - - - - 131 - 0 - - - 1 - - - - 0 - - 6 - false - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:20fc - - 83 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 508 - 0 - - false - 1 - - - - - 375 - - 10 - - - true - - true - 39872d87:13e14015f61:20fd - - 25 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 246 - 0 - - false - 1 - - - - - 29 - - 262 - - true - true - 1 - false - 39872d87:13e14015f61:20fe - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 4 - true - false - $(P)kapton2.DESC - - - - - - - Text Update - true - ###### - false - 0 - - - - 131 - 0 - - - 1 - - - - 0 - - 5 - false - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 25 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:20ff - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)kapton2 - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 132 - - - true - true - 1 - false - 39872d87:13e14015f61:2100 - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 4 - true - false - $(P)kapton2.EGU - - - - - - - Text Update - true - ###### - false - 0 - - - - 50 - 0 - - - 1 - - - - 0 - - 5 - false - $(pv_name) -$(pv_value) - 196 - - - - - true - - true - 39872d87:13e14015f61:2101 - - 25 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 246 - 0 - - false - 1 - - - - - 0 - - 262 - - true - true - 1 - false - 39872d87:13e14015f61:2102 - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 4 - true - false - $(P)kapton1.DESC - - - - - - - Text Update - true - ###### - false - 0 - - - - 131 - 0 - - - 1 - - - - 0 - - 5 - false - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 25 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2103 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)kapton1 - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 132 - - - true - true - 1 - false - 39872d87:13e14015f61:2104 - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 4 - true - false - $(P)kapton1.EGU - - - - - - - Text Update - true - ###### - false - 0 - - - - 50 - 0 - - - 1 - - - - 0 - - 5 - false - $(pv_name) -$(pv_value) - 196 - - - - - true - - true - 39872d87:13e14015f61:2105 - - 25 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 246 - 0 - - false - 1 - - - - - 0 - - 0 - - true - true - 1 - false - 39872d87:13e14015f61:2106 - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 4 - true - false - $(P)activeLen.DESC - - - - - - - Text Update - true - ###### - false - 0 - - - - 131 - 0 - - - 1 - - - - 0 - - 5 - false - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 25 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2107 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)activeLen - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 132 - - - true - true - 1 - false - 39872d87:13e14015f61:2108 - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 4 - true - false - $(P)activeLen.EGU - - - - - - - Text Update - true - ###### - false - 0 - - - - 50 - 0 - - - 1 - - - - 0 - - 5 - false - $(pv_name) -$(pv_value) - 196 - - - - - true - - true - 39872d87:13e14015f61:2109 - - 25 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 246 - 0 - - false - 1 - - - - - 29 - - 0 - - true - true - 1 - false - 39872d87:13e14015f61:210a - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 4 - true - false - $(P)deadFront.DESC - - - - - - - Text Update - true - ###### - false - 0 - - - - 131 - 0 - - - 1 - - - - 0 - - 5 - false - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 25 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:210b - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)deadFront - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 132 - - - true - true - 1 - false - 39872d87:13e14015f61:210c - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 4 - true - false - $(P)deadFront.EGU - - - - - - - Text Update - true - ###### - false - 0 - - - - 50 - 0 - - - 1 - - - - 0 - - 5 - false - $(pv_name) -$(pv_value) - 196 - - - - - true - - true - 39872d87:13e14015f61:210d - - 25 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 246 - 0 - - false - 1 - - - - - 58 - - 0 - - true - true - 1 - false - 39872d87:13e14015f61:210e - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 4 - true - false - $(P)deadRear.DESC - - - - - - - Text Update - true - ###### - false - 0 - - - - 131 - 0 - - - 1 - - - - 0 - - 5 - false - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 25 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:210f - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)deadRear - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 132 - - - true - true - 1 - false - 39872d87:13e14015f61:2110 - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 4 - true - false - $(P)deadRear.EGU - - - - - - - Text Update - true - ###### - false - 0 - - - - 50 - 0 - - - 1 - - - - 0 - - 5 - false - $(pv_name) -$(pv_value) - 196 - - - - - - true - - true - 39872d87:13e14015f61:2111 - - 75 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 400 - 0 - - false - 1 - - - - - 210 - - 104 - - false - true - 0.0 - - - - 39872d87:13e14015f61:2113 - - - - - 75 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 400 - 0 - 0 - - - 1 - 5 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - - true - - true - 39872d87:13e14015f61:2114 - - 40 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 60 - 0 - - false - 1 - - - - - 27 - - 238 - - false - true - 1 - false - false - - 25 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2115 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)xAr - - - - false - 0 - - - false - - - - 0 - - 15 - $(pv_name) -$(pv_value) - 0 - - - true - 1 - 39872d87:13e14015f61:2116 - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - Argon - - - - 60 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - - - true - - true - 39872d87:13e14015f61:2117 - - 40 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 60 - 0 - - false - 1 - - - - - 27 - - 308 - - false - true - 1 - false - false - - 25 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2118 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)xAr - - - - false - 0 - - - false - - - - 0 - - 15 - $(pv_name) -$(pv_value) - 0 - - - true - 1 - 39872d87:13e14015f61:2119 - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - CO2 - - - - 60 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - - - true - - true - 39872d87:13e14015f61:211a - - 40 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 60 - 0 - - false - 1 - - - - - 27 - - 168 - - false - true - 1 - false - false - - 25 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:211b - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)xHe - - - - false - 0 - - - false - - - - 0 - - 15 - $(pv_name) -$(pv_value) - 0 - - - true - 1 - 39872d87:13e14015f61:211c - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - He - - - - 60 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - - - true - - true - 39872d87:13e14015f61:211d - - 40 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 60 - 0 - - false - 1 - - - - - 27 - - 28 - - true - 1 - 39872d87:13e14015f61:211e - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - Air - - - - 60 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - false - true - 1 - false - false - - 25 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:211f - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)xAir - - - - false - 0 - - - false - - - - 0 - - 15 - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:2120 - - 40 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 60 - 0 - - false - 1 - - - - - 27 - - 98 - - true - 1 - 39872d87:13e14015f61:2121 - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - Nitrogen - - - - 60 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - false - true - 1 - false - false - - 25 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2122 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)xN2 - - - - false - 0 - - - false - - - - 0 - - 15 - $(pv_name) -$(pv_value) - 0 - - - - true - 1 - 39872d87:13e14015f61:2112 - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - ion chamber fill gas (atm) - - - - 250 - 0 - - 1 - - - - 1 - - 8 - true - - 72 - - - - - true - - true - 39872d87:13e14015f61:2124 - - 18 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 278 - 0 - - false - 1 - - - - - 132 - - 3 - - true - true - 1 - false - 39872d87:13e14015f61:2125 - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 4 - true - false - $(P)scaler.DESC - - - - - - - Text Update - true - ###### - false - 0 - - - - 110 - 0 - - - 1 - - - - 0 - - 3 - false - $(pv_name) -$(pv_value) - 168 - - - false - true - true - 39872d87:13e14015f61:2126 - - 18 - Menu Button - false - - true - true - false - - false - $(P)scaler - - - - - - - Menu Button - true - false - - Default - - 35 - 6 - - - - 1 - - - - 0 - - $(pv_name) -$(pv_value) - 125 - - - true - 1 - 39872d87:13e14015f61:2127 - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - scaler channel - - - - 120 - 0 - - 1 - - - - 1 - - 3 - true - - 0 - - - - - true - - true - 39872d87:13e14015f61:2128 - - 44 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 240 - 0 - - false - 1 - - - - - 160 - - 24 - - - true - - true - 39872d87:13e14015f61:2129 - - 18 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 236 - 0 - - false - 1 - - - - - 26 - - 4 - - true - 1 - 39872d87:13e14015f61:212a - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - using - - - - 95 - 0 - - 1 - - - - 1 - - 2 - true - - 0 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:212b - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)E_using - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 101 - - - true - true - 1 - false - 39872d87:13e14015f61:212c - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 4 - true - false - $(P)E_using.EGU - - - - - - - Text Update - true - ###### - false - 0 - - - - 50 - 0 - - - 1 - - - - 0 - - 2 - false - $(pv_name) -$(pv_value) - 186 - - - - - true - - true - 39872d87:13e14015f61:212d - - 18 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 240 - 0 - - false - 1 - - - - - 0 - - 0 - - true - 1 - 39872d87:13e14015f61:212e - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - monochromator - - - - 95 - 0 - - 1 - - - - 1 - - 4 - true - - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:212f - false - 0.0 - - 18 - Text Update - false - - true - true - false - - 1 - true - false - $(MONO) - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 0 - - 0 - false - $(pv_name) -$(pv_value) - 105 - - - true - true - 1 - false - 39872d87:13e14015f61:2130 - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 4 - true - false - $(MONO).EGU - - - - - - - Text Update - true - ###### - false - 0 - - - - 50 - 0 - - - 1 - - - - 0 - - 4 - false - $(pv_name) -$(pv_value) - 190 - - - - - - true - - true - 39872d87:13e14015f61:2132 - - 18 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 240 - 0 - - false - 1 - - - - - 110 - - 293 - - true - 1 - 39872d87:13e14015f61:2133 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Current Amp - - - - 95 - 0 - - 1 - - - - 1 - - 2 - true - - 0 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2134 - 0.0 - Text Input - - true - true - false - - 2 - false - 0 - $(P)VperA - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 103 - - - true - true - 1 - false - 39872d87:13e14015f61:2135 - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 4 - true - false - $(P)VperA.EGU - - - - - - - Text Update - true - ###### - false - 0 - - - - 50 - 0 - - - 1 - - - - 0 - - 2 - false - $(pv_name) -$(pv_value) - 190 - - - - true - 1 - 39872d87:13e14015f61:20c9 - false - - 25 - Label - - true - true - false - - true - false - - - - - - - Label - true - Io - - - - 60 - 0 - - 1 - - - - 1 - - 2 - true - - 255 - - - true - 1 - 39872d87:13e14015f61:20ca - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - Io.adl - - - - 80 - 0 - - 1 - - - - 1 - - 2 - true - - 461 - - - false - true - false - 39872d87:13e14015f61:20df - - 23 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 60 - 6 - - - - 1 - - - - 2 - - - Io_small.opi - - true - - 1 - small - - - $(pv_name) -$(pv_value) - 2 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:20fb - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 522 - 0 - 0 - - - 1 - 1 - true - - - - - 369 - $(pv_name) -$(pv_value) - 12 - - - true - 1 - 39872d87:13e14015f61:2123 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - CHESS chamber (17.5, 60, 17.5 mm) - - - - 236 - 0 - - 1 - - - - 1 - - 444 - true - - 306 - - - true - true - 1 - false - 39872d87:13e14015f61:2131 - false - 0.0 - - 18 - Text Update - false - - true - true - false - - 2 - true - false - $(P)VperA - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 0 - - 133 - false - $(pv_name) -$(pv_value) - 396 - - \ No newline at end of file diff --git a/opticsApp/op/opi/SGM_gratings.opi b/opticsApp/op/opi/SGM_gratings.opi deleted file mode 100644 index 814b047..0000000 --- a/opticsApp/op/opi/SGM_gratings.opi +++ /dev/null @@ -1,11351 +0,0 @@ - - false - - true - - 39872d87:13e14015f61:22e5 - 3.1.2.20120830 - - true - 395 - SGM_gratings - false - false - - - - - - - Display - true - 600 - - true - 5 - - false - -1 - -1 - - - 166 - 173 - - - true - - true - 39872d87:13e14015f61:22e6 - - 338 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 25 - 0 - - false - 1 - - - - - 20 - - 0 - - false - true - 0.0 - - - - 39872d87:13e14015f61:22ec - - - - - 20 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 25 - 0 - 0 - - - - true - - - false - - $(P)SGM$(N):sel_exists_1.DO8 - - - - 1 - 2 - true - - - - - 158 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:22ed - - - - - 20 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 25 - 0 - 0 - - - - true - - - false - - $(P)SGM$(N):sel_exists_1.DO7 - - - - 1 - 2 - true - - - - - 138 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:22ee - - - - - 20 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 25 - 0 - 0 - - - - true - - - false - - $(P)SGM$(N):sel_exists_1.DO9 - - - - 1 - 2 - true - - - - - 178 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:22ef - - - - - 20 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 25 - 0 - 0 - - - - true - - - false - - $(P)SGM$(N):sel_exists_1.DOA - - - - 1 - 2 - true - - - - - 198 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:22f5 - - - - - 20 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 25 - 0 - 0 - - - - true - - - false - - $(P)SGM$(N):sel_exists_1.DO3 - - - - 1 - 2 - true - - - - - 58 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:22f6 - - - - - 20 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 25 - 0 - 0 - - - - true - - - false - - $(P)SGM$(N):sel_exists_1.DO2 - - - - 1 - 2 - true - - - - - 38 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:22f7 - - - - - 20 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 25 - 0 - 0 - - - - true - - - false - - $(P)SGM$(N):sel_exists_1.DO1 - - - - 1 - 2 - true - - - - - 18 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:22f8 - - - - - 20 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 25 - 0 - 0 - - - - true - - - false - - $(P)SGM$(N):sel_exists_1.DO4 - - - - 1 - 2 - true - - - - - 78 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:22f9 - - - - - 20 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 25 - 0 - 0 - - - - true - - - false - - $(P)SGM$(N):sel_exists_1.DO5 - - - - 1 - 2 - true - - - - - 98 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:22fb - - - - - 20 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 25 - 0 - 0 - - - - true - - - false - - $(P)SGM$(N):sel_exists_1.DO6 - - - - 1 - 2 - true - - - - - 118 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:2301 - - - - - 20 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 25 - 0 - 0 - - - - true - - - false - - $(P)SGM$(N):sel_exists_2.DO3 - - - - 1 - 2 - true - - - - - 258 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:2302 - - - - - 20 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 25 - 0 - 0 - - - - true - - - false - - $(P)SGM$(N):sel_exists_2.DO2 - - - - 1 - 2 - true - - - - - 238 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:2303 - - - - - 20 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 25 - 0 - 0 - - - - true - - - false - - $(P)SGM$(N):sel_exists_2.DO1 - - - - 1 - 2 - true - - - - - 218 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:2304 - - - - - 20 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 25 - 0 - 0 - - - - true - - - false - - $(P)SGM$(N):sel_exists_2.DO4 - - - - 1 - 2 - true - - - - - 278 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:2305 - - - - - 20 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 25 - 0 - 0 - - - - true - - - false - - $(P)SGM$(N):sel_exists_2.DO5 - - - - 1 - 2 - true - - - - - 298 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:2307 - - - - - 20 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 25 - 0 - 0 - - - - true - - - false - - $(P)SGM$(N):sel_exists_2.DO6 - - - - 1 - 2 - true - - - - - 318 - $(pv_name) -$(pv_value) - 0 - false - - - true - 1 - 39872d87:13e14015f61:22e7 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - USE - - - - 25 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - false - true - 39872d87:13e14015f61:22e8 - - 16 - Action Button - false - - true - true - false - - $(P)SGM$(N):grating - - - - - - - Action Button - true - 7 - false - - Default - - 22 - 0 - 0 - - - - true - 1 - - - - 140 - - - $(P)SGM$(N):grating - 6 - 10 - - - - $(pv_name) -$(pv_value) - 2 - - - false - true - 39872d87:13e14015f61:22e9 - - 16 - Action Button - false - - true - true - false - - $(P)SGM$(N):grating - - - - - - - Action Button - true - 8 - false - - Default - - 22 - 0 - 0 - - - - true - 1 - - - - 160 - - - $(P)SGM$(N):grating - 7 - 10 - - - - $(pv_name) -$(pv_value) - 2 - - - false - true - 39872d87:13e14015f61:22ea - - 16 - Action Button - false - - true - true - false - - $(P)SGM$(N):grating - - - - - - - Action Button - true - 9 - false - - Default - - 22 - 0 - 0 - - - - true - 1 - - - - 180 - - - $(P)SGM$(N):grating - 8 - 10 - - - - $(pv_name) -$(pv_value) - 2 - - - false - true - 39872d87:13e14015f61:22eb - - 16 - Action Button - false - - true - true - false - - $(P)SGM$(N):grating - - - - - - - Action Button - true - 10 - false - - Default - - 22 - 0 - 0 - - - - true - 1 - - - - 200 - - - $(P)SGM$(N):grating - 9 - 10 - - - - $(pv_name) -$(pv_value) - 2 - - - false - true - 39872d87:13e14015f61:22f0 - - 16 - Action Button - false - - true - true - false - - $(P)SGM$(N):grating - - - - - - - Action Button - true - 1 - false - - Default - - 22 - 0 - 0 - - - - true - 1 - - - - 20 - - - $(P)SGM$(N):grating - 0 - 10 - - - - $(pv_name) -$(pv_value) - 2 - - - false - true - 39872d87:13e14015f61:22f1 - - 16 - Action Button - false - - true - true - false - - $(P)SGM$(N):grating - - - - - - - Action Button - true - 2 - false - - Default - - 22 - 0 - 0 - - - - true - 1 - - - - 40 - - - $(P)SGM$(N):grating - 1 - 10 - - - - $(pv_name) -$(pv_value) - 2 - - - false - true - 39872d87:13e14015f61:22f2 - - 16 - Action Button - false - - true - true - false - - $(P)SGM$(N):grating - - - - - - - Action Button - true - 3 - false - - Default - - 22 - 0 - 0 - - - - true - 1 - - - - 60 - - - $(P)SGM$(N):grating - 2 - 10 - - - - $(pv_name) -$(pv_value) - 2 - - - false - true - 39872d87:13e14015f61:22f3 - - 16 - Action Button - false - - true - true - false - - $(P)SGM$(N):grating - - - - - - - Action Button - true - 4 - false - - Default - - 22 - 0 - 0 - - - - true - 1 - - - - 80 - - - $(P)SGM$(N):grating - 3 - 10 - - - - $(pv_name) -$(pv_value) - 2 - - - false - true - 39872d87:13e14015f61:22f4 - - 16 - Action Button - false - - true - true - false - - $(P)SGM$(N):grating - - - - - - - Action Button - true - 5 - false - - Default - - 22 - 0 - 0 - - - - true - 1 - - - - 100 - - - $(P)SGM$(N):grating - 4 - 10 - - - - $(pv_name) -$(pv_value) - 2 - - - false - true - 39872d87:13e14015f61:22fa - - 16 - Action Button - false - - true - true - false - - $(P)SGM$(N):grating - - - - - - - Action Button - true - 6 - false - - Default - - 22 - 0 - 0 - - - - true - 1 - - - - 120 - - - $(P)SGM$(N):grating - 5 - 10 - - - - $(pv_name) -$(pv_value) - 2 - - - false - true - 39872d87:13e14015f61:22fc - - 16 - Action Button - false - - true - true - false - - $(P)SGM$(N):grating - - - - - - - Action Button - true - 11 - false - - Default - - 22 - 0 - 0 - - - - true - 1 - - - - 220 - - - $(P)SGM$(N):grating - 10 - 10 - - - - $(pv_name) -$(pv_value) - 2 - - - false - true - 39872d87:13e14015f61:22fd - - 16 - Action Button - false - - true - true - false - - $(P)SGM$(N):grating - - - - - - - Action Button - true - 12 - false - - Default - - 22 - 0 - 0 - - - - true - 1 - - - - 240 - - - $(P)SGM$(N):grating - 11 - 10 - - - - $(pv_name) -$(pv_value) - 2 - - - false - true - 39872d87:13e14015f61:22fe - - 16 - Action Button - false - - true - true - false - - $(P)SGM$(N):grating - - - - - - - Action Button - true - 13 - false - - Default - - 22 - 0 - 0 - - - - true - 1 - - - - 260 - - - $(P)SGM$(N):grating - 12 - 10 - - - - $(pv_name) -$(pv_value) - 2 - - - false - true - 39872d87:13e14015f61:22ff - - 16 - Action Button - false - - true - true - false - - $(P)SGM$(N):grating - - - - - - - Action Button - true - 14 - false - - Default - - 22 - 0 - 0 - - - - true - 1 - - - - 280 - - - $(P)SGM$(N):grating - 13 - 10 - - - - $(pv_name) -$(pv_value) - 2 - - - false - true - 39872d87:13e14015f61:2300 - - 16 - Action Button - false - - true - true - false - - $(P)SGM$(N):grating - - - - - - - Action Button - true - 15 - false - - Default - - 22 - 0 - 0 - - - - true - 1 - - - - 300 - - - $(P)SGM$(N):grating - 14 - 10 - - - - $(pv_name) -$(pv_value) - 2 - - - false - true - 39872d87:13e14015f61:2306 - - 16 - Action Button - false - - true - true - false - - $(P)SGM$(N):grating - - - - - - - Action Button - true - 16 - false - - Default - - 22 - 0 - 0 - - - - true - 1 - - - - 320 - - - $(P)SGM$(N):grating - 15 - 10 - - - - $(pv_name) -$(pv_value) - 2 - - - - - true - - true - 39872d87:13e14015f61:2308 - - 346 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 565 - 0 - - false - 1 - - - - - 40 - - 30 - - - true - - true - 39872d87:13e14015f61:2399 - - 16 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 155 - 0 - - false - 1 - - - - - 330 - - 315 - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:239a - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):StripeWidth - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 95 - - - true - 1 - 39872d87:13e14015f61:239b - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Stripe width: - - - - 90 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2309 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_exists_1.DO1 - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 525 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:230a - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_exists_1.DO2 - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 525 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:230b - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_exists_1.DO3 - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 525 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:230c - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_exists_1.DO4 - - - - false - 0 - - - false - - - - 0 - - 60 - $(pv_name) -$(pv_value) - 525 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:230d - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_exists_1.DO5 - - - - false - 0 - - - false - - - - 0 - - 80 - $(pv_name) -$(pv_value) - 525 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:230e - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_exists_1.DO6 - - - - false - 0 - - - false - - - - 0 - - 100 - $(pv_name) -$(pv_value) - 525 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:230f - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_exists_1.DO7 - - - - false - 0 - - - false - - - - 0 - - 120 - $(pv_name) -$(pv_value) - 525 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2310 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_exists_1.DO8 - - - - false - 0 - - - false - - - - 0 - - 140 - $(pv_name) -$(pv_value) - 525 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2311 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_exists_1.DO9 - - - - false - 0 - - - false - - - - 0 - - 160 - $(pv_name) -$(pv_value) - 525 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2312 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_exists_1.DOA - - - - false - 0 - - - false - - - - 0 - - 180 - $(pv_name) -$(pv_value) - 525 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2313 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_exists_2.DO1 - - - - false - 0 - - - false - - - - 0 - - 200 - $(pv_name) -$(pv_value) - 525 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2314 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_exists_2.DO2 - - - - false - 0 - - - false - - - - 0 - - 220 - $(pv_name) -$(pv_value) - 525 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2315 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_exists_2.DO3 - - - - false - 0 - - - false - - - - 0 - - 240 - $(pv_name) -$(pv_value) - 525 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2316 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_exists_2.DO4 - - - - false - 0 - - - false - - - - 0 - - 260 - $(pv_name) -$(pv_value) - 525 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2317 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_exists_2.DO5 - - - - false - 0 - - - false - - - - 0 - - 280 - $(pv_name) -$(pv_value) - 525 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2318 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_exists_2.DO6 - - - - false - 0 - - - false - - - - 0 - - 300 - $(pv_name) -$(pv_value) - 525 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2319 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_desc_1.STR1 - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:231a - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_desc_1.STR2 - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:231b - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_desc_1.STR3 - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:231c - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_desc_1.STR4 - - - - false - 0 - - - false - - - - 0 - - 60 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:231d - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_desc_1.STR5 - - - - false - 0 - - - false - - - - 0 - - 80 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:231e - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_desc_1.STR6 - - - - false - 0 - - - false - - - - 0 - - 100 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:231f - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_desc_1.STR7 - - - - false - 0 - - - false - - - - 0 - - 120 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2320 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_desc_1.STR8 - - - - false - 0 - - - false - - - - 0 - - 140 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2321 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_desc_1.STR9 - - - - false - 0 - - - false - - - - 0 - - 160 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2322 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_desc_1.STRA - - - - false - 0 - - - false - - - - 0 - - 180 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2323 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_desc_2.STR1 - - - - false - 0 - - - false - - - - 0 - - 200 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2324 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_desc_2.STR2 - - - - false - 0 - - - false - - - - 0 - - 220 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2325 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_desc_2.STR3 - - - - false - 0 - - - false - - - - 0 - - 240 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2326 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_desc_2.STR4 - - - - false - 0 - - - false - - - - 0 - - 260 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2327 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_desc_2.STR5 - - - - false - 0 - - - false - - - - 0 - - 280 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2328 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_desc_2.STR6 - - - - false - 0 - - - false - - - - 0 - - 300 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2329 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_m_1.DO7 - - - - false - 0 - - - false - - - - 0 - - 120 - $(pv_name) -$(pv_value) - 105 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:232a - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_den_1.DO7 - - - - false - 0 - - - false - - - - 0 - - 120 - $(pv_name) -$(pv_value) - 150 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:232b - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_R_1.DO7 - - - - false - 0 - - - false - - - - 0 - - 120 - $(pv_name) -$(pv_value) - 215 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:232c - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Wlow_1.DO7 - - - - false - 0 - - - false - - - - 0 - - 120 - $(pv_name) -$(pv_value) - 280 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:232d - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Whigh_1.DO7 - - - - false - 0 - - - false - - - - 0 - - 120 - $(pv_name) -$(pv_value) - 345 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:232e - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_loc_1.DO7 - - - - false - 0 - - - false - - - - 0 - - 120 - $(pv_name) -$(pv_value) - 410 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:232f - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_m_1.DO8 - - - - false - 0 - - - false - - - - 0 - - 140 - $(pv_name) -$(pv_value) - 105 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2330 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_den_1.DO8 - - - - false - 0 - - - false - - - - 0 - - 140 - $(pv_name) -$(pv_value) - 150 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2331 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_R_1.DO8 - - - - false - 0 - - - false - - - - 0 - - 140 - $(pv_name) -$(pv_value) - 215 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2332 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Wlow_1.DO8 - - - - false - 0 - - - false - - - - 0 - - 140 - $(pv_name) -$(pv_value) - 280 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2333 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Whigh_1.DO8 - - - - false - 0 - - - false - - - - 0 - - 140 - $(pv_name) -$(pv_value) - 345 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2334 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_loc_1.DO8 - - - - false - 0 - - - false - - - - 0 - - 140 - $(pv_name) -$(pv_value) - 410 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2335 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_m_1.DO9 - - - - false - 0 - - - false - - - - 0 - - 160 - $(pv_name) -$(pv_value) - 105 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2336 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_den_1.DO9 - - - - false - 0 - - - false - - - - 0 - - 160 - $(pv_name) -$(pv_value) - 150 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2337 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_R_1.DO9 - - - - false - 0 - - - false - - - - 0 - - 160 - $(pv_name) -$(pv_value) - 215 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2338 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Wlow_1.DO9 - - - - false - 0 - - - false - - - - 0 - - 160 - $(pv_name) -$(pv_value) - 280 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2339 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Whigh_1.DO9 - - - - false - 0 - - - false - - - - 0 - - 160 - $(pv_name) -$(pv_value) - 345 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:233a - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_loc_1.DO9 - - - - false - 0 - - - false - - - - 0 - - 160 - $(pv_name) -$(pv_value) - 410 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:233b - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_m_1.DOA - - - - false - 0 - - - false - - - - 0 - - 180 - $(pv_name) -$(pv_value) - 105 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:233c - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_den_1.DOA - - - - false - 0 - - - false - - - - 0 - - 180 - $(pv_name) -$(pv_value) - 150 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:233d - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_R_1.DOA - - - - false - 0 - - - false - - - - 0 - - 180 - $(pv_name) -$(pv_value) - 215 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:233e - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Wlow_1.DOA - - - - false - 0 - - - false - - - - 0 - - 180 - $(pv_name) -$(pv_value) - 280 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:233f - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Whigh_1.DOA - - - - false - 0 - - - false - - - - 0 - - 180 - $(pv_name) -$(pv_value) - 345 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2340 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_loc_1.DOA - - - - false - 0 - - - false - - - - 0 - - 180 - $(pv_name) -$(pv_value) - 410 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2341 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_m_1.DO1 - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 105 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2342 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_den_1.DO1 - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 150 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2343 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_R_1.DO1 - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 215 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2344 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Wlow_1.DO1 - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 280 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2345 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Whigh_1.DO1 - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 345 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2346 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_loc_1.DO1 - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 410 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2347 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_m_1.DO2 - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 105 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2348 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_den_1.DO2 - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 150 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2349 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_R_1.DO2 - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 215 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:234a - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Wlow_1.DO2 - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 280 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:234b - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Whigh_1.DO2 - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 345 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:234c - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_loc_1.DO2 - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 410 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:234d - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_m_1.DO3 - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 105 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:234e - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_den_1.DO3 - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 150 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:234f - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_R_1.DO3 - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 215 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2350 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Wlow_1.DO3 - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 280 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2351 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Whigh_1.DO3 - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 345 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2352 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_loc_1.DO3 - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 410 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2353 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_m_1.DO4 - - - - false - 0 - - - false - - - - 0 - - 60 - $(pv_name) -$(pv_value) - 105 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2354 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_den_1.DO4 - - - - false - 0 - - - false - - - - 0 - - 60 - $(pv_name) -$(pv_value) - 150 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2355 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_R_1.DO4 - - - - false - 0 - - - false - - - - 0 - - 60 - $(pv_name) -$(pv_value) - 215 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2356 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Wlow_1.DO4 - - - - false - 0 - - - false - - - - 0 - - 60 - $(pv_name) -$(pv_value) - 280 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2357 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Whigh_1.DO4 - - - - false - 0 - - - false - - - - 0 - - 60 - $(pv_name) -$(pv_value) - 345 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2358 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_loc_1.DO4 - - - - false - 0 - - - false - - - - 0 - - 60 - $(pv_name) -$(pv_value) - 410 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2359 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_m_1.DO5 - - - - false - 0 - - - false - - - - 0 - - 80 - $(pv_name) -$(pv_value) - 105 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:235a - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_den_1.DO5 - - - - false - 0 - - - false - - - - 0 - - 80 - $(pv_name) -$(pv_value) - 150 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:235b - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_R_1.DO5 - - - - false - 0 - - - false - - - - 0 - - 80 - $(pv_name) -$(pv_value) - 215 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:235c - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Wlow_1.DO5 - - - - false - 0 - - - false - - - - 0 - - 80 - $(pv_name) -$(pv_value) - 280 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:235d - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Whigh_1.DO5 - - - - false - 0 - - - false - - - - 0 - - 80 - $(pv_name) -$(pv_value) - 345 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:235e - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_loc_1.DO6 - - - - false - 0 - - - false - - - - 0 - - 80 - $(pv_name) -$(pv_value) - 410 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:235f - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_m_1.DO6 - - - - false - 0 - - - false - - - - 0 - - 100 - $(pv_name) -$(pv_value) - 105 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2360 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_den_1.DO6 - - - - false - 0 - - - false - - - - 0 - - 100 - $(pv_name) -$(pv_value) - 150 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2361 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_R_1.DO6 - - - - false - 0 - - - false - - - - 0 - - 100 - $(pv_name) -$(pv_value) - 215 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2362 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Wlow_1.DO6 - - - - false - 0 - - - false - - - - 0 - - 100 - $(pv_name) -$(pv_value) - 280 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2363 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Whigh_1.DO6 - - - - false - 0 - - - false - - - - 0 - - 100 - $(pv_name) -$(pv_value) - 345 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2364 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_loc_1.DO6 - - - - false - 0 - - - false - - - - 0 - - 100 - $(pv_name) -$(pv_value) - 410 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2365 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_m_2.DO1 - - - - false - 0 - - - false - - - - 0 - - 200 - $(pv_name) -$(pv_value) - 105 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2366 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_den_2.DO1 - - - - false - 0 - - - false - - - - 0 - - 200 - $(pv_name) -$(pv_value) - 150 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2367 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_R_2.DO1 - - - - false - 0 - - - false - - - - 0 - - 200 - $(pv_name) -$(pv_value) - 215 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2368 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Wlow_2.DO1 - - - - false - 0 - - - false - - - - 0 - - 200 - $(pv_name) -$(pv_value) - 280 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2369 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Whigh_2.DO1 - - - - false - 0 - - - false - - - - 0 - - 200 - $(pv_name) -$(pv_value) - 345 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:236a - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_loc_2.DO1 - - - - false - 0 - - - false - - - - 0 - - 200 - $(pv_name) -$(pv_value) - 410 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:236b - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_m_2.DO2 - - - - false - 0 - - - false - - - - 0 - - 220 - $(pv_name) -$(pv_value) - 105 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:236c - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_den_2.DO2 - - - - false - 0 - - - false - - - - 0 - - 220 - $(pv_name) -$(pv_value) - 150 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:236d - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_R_2.DO2 - - - - false - 0 - - - false - - - - 0 - - 220 - $(pv_name) -$(pv_value) - 215 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:236e - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Wlow_2.DO2 - - - - false - 0 - - - false - - - - 0 - - 220 - $(pv_name) -$(pv_value) - 280 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:236f - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Whigh_2.DO2 - - - - false - 0 - - - false - - - - 0 - - 220 - $(pv_name) -$(pv_value) - 345 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2370 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_loc_2.DO2 - - - - false - 0 - - - false - - - - 0 - - 220 - $(pv_name) -$(pv_value) - 410 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2371 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_m_2.DO3 - - - - false - 0 - - - false - - - - 0 - - 240 - $(pv_name) -$(pv_value) - 105 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2372 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_den_2.DO3 - - - - false - 0 - - - false - - - - 0 - - 240 - $(pv_name) -$(pv_value) - 150 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2373 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_R_2.DO3 - - - - false - 0 - - - false - - - - 0 - - 240 - $(pv_name) -$(pv_value) - 215 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2374 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Wlow_2.DO3 - - - - false - 0 - - - false - - - - 0 - - 240 - $(pv_name) -$(pv_value) - 280 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2375 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Whigh_2.DO3 - - - - false - 0 - - - false - - - - 0 - - 240 - $(pv_name) -$(pv_value) - 345 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2376 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_loc_2.DO3 - - - - false - 0 - - - false - - - - 0 - - 240 - $(pv_name) -$(pv_value) - 410 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2377 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_m_2.DO4 - - - - false - 0 - - - false - - - - 0 - - 260 - $(pv_name) -$(pv_value) - 105 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2378 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_den_2.DO4 - - - - false - 0 - - - false - - - - 0 - - 260 - $(pv_name) -$(pv_value) - 150 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2379 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_R_2.DO4 - - - - false - 0 - - - false - - - - 0 - - 260 - $(pv_name) -$(pv_value) - 215 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:237a - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Wlow_2.DO4 - - - - false - 0 - - - false - - - - 0 - - 260 - $(pv_name) -$(pv_value) - 280 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:237b - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Whigh_2.DO4 - - - - false - 0 - - - false - - - - 0 - - 260 - $(pv_name) -$(pv_value) - 345 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:237c - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_loc_2.DO4 - - - - false - 0 - - - false - - - - 0 - - 260 - $(pv_name) -$(pv_value) - 410 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:237d - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_m_2.DO5 - - - - false - 0 - - - false - - - - 0 - - 280 - $(pv_name) -$(pv_value) - 105 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:237e - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_den_2.DO5 - - - - false - 0 - - - false - - - - 0 - - 280 - $(pv_name) -$(pv_value) - 150 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:237f - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_R_2.DO5 - - - - false - 0 - - - false - - - - 0 - - 280 - $(pv_name) -$(pv_value) - 215 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2380 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Wlow_2.DO5 - - - - false - 0 - - - false - - - - 0 - - 280 - $(pv_name) -$(pv_value) - 280 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2381 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Whigh_2.DO5 - - - - false - 0 - - - false - - - - 0 - - 280 - $(pv_name) -$(pv_value) - 345 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2382 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_loc_2.DO6 - - - - false - 0 - - - false - - - - 0 - - 280 - $(pv_name) -$(pv_value) - 410 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2383 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_m_2.DO6 - - - - false - 0 - - - false - - - - 0 - - 300 - $(pv_name) -$(pv_value) - 105 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2384 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_den_2.DO6 - - - - false - 0 - - - false - - - - 0 - - 300 - $(pv_name) -$(pv_value) - 150 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2385 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_R_2.DO6 - - - - false - 0 - - - false - - - - 0 - - 300 - $(pv_name) -$(pv_value) - 215 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2386 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Wlow_2.DO6 - - - - false - 0 - - - false - - - - 0 - - 300 - $(pv_name) -$(pv_value) - 280 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2387 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_Whigh_2.DO6 - - - - false - 0 - - - false - - - - 0 - - 300 - $(pv_name) -$(pv_value) - 345 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2388 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_loc_2.DO6 - - - - false - 0 - - - false - - - - 0 - - 300 - $(pv_name) -$(pv_value) - 410 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2389 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_xOff_1.DO1 - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 475 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:238a - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_xOff_1.DO2 - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 475 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:238b - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_xOff_1.DO3 - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 475 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:238c - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_xOff_1.DO4 - - - - false - 0 - - - false - - - - 0 - - 60 - $(pv_name) -$(pv_value) - 475 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:238d - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_xOff_1.DO5 - - - - false - 0 - - - false - - - - 0 - - 80 - $(pv_name) -$(pv_value) - 475 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:238e - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_xOff_1.DO6 - - - - false - 0 - - - false - - - - 0 - - 100 - $(pv_name) -$(pv_value) - 475 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:238f - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_xOff_1.DO7 - - - - false - 0 - - - false - - - - 0 - - 120 - $(pv_name) -$(pv_value) - 475 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2390 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_xOff_1.DO8 - - - - false - 0 - - - false - - - - 0 - - 140 - $(pv_name) -$(pv_value) - 475 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2391 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_xOff_1.DO9 - - - - false - 0 - - - false - - - - 0 - - 160 - $(pv_name) -$(pv_value) - 475 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2392 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_xOff_1.DOA - - - - false - 0 - - - false - - - - 0 - - 180 - $(pv_name) -$(pv_value) - 475 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2393 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_xOff_2.DO1 - - - - false - 0 - - - false - - - - 0 - - 200 - $(pv_name) -$(pv_value) - 475 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2394 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_xOff_2.DO2 - - - - false - 0 - - - false - - - - 0 - - 220 - $(pv_name) -$(pv_value) - 475 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2395 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_xOff_2.DO3 - - - - false - 0 - - - false - - - - 0 - - 240 - $(pv_name) -$(pv_value) - 475 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2396 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_xOff_2.DO4 - - - - false - 0 - - - false - - - - 0 - - 260 - $(pv_name) -$(pv_value) - 475 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2397 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_xOff_2.DO5 - - - - false - 0 - - - false - - - - 0 - - 280 - $(pv_name) -$(pv_value) - 475 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2398 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)SGM$(N):sel_xOff_2.DO6 - - - - false - 0 - - - false - - - - 0 - - 300 - $(pv_name) -$(pv_value) - 475 - - - - true - 1 - 39872d87:13e14015f61:239c - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - grating - - - - 100 - 0 - - 1 - - - - 1 - - 0 - true - - 30 - - - true - 1 - 39872d87:13e14015f61:239d - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - diffract - - - - 40 - 0 - - 1 - - - - 1 - - 0 - true - - 135 - - - true - 1 - 39872d87:13e14015f61:239e - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - line - - - - 60 - 0 - - 1 - - - - 1 - - 0 - true - - 180 - - - true - 1 - 39872d87:13e14015f61:239f - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - grating - - - - 60 - 0 - - 1 - - - - 1 - - 0 - true - - 245 - - - true - 1 - 39872d87:13e14015f61:23a0 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Wavelen - - - - 60 - 0 - - 1 - - - - 1 - - 0 - true - - 310 - - - true - 1 - 39872d87:13e14015f61:23a1 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Wavelen - - - - 60 - 0 - - 1 - - - - 1 - - 0 - true - - 375 - - - true - 1 - 39872d87:13e14015f61:23a2 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - grating - - - - 60 - 0 - - 1 - - - - 1 - - 0 - true - - 440 - - - true - 1 - 39872d87:13e14015f61:23a3 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - X-motor - - - - 40 - 0 - - 1 - - - - 1 - - 0 - true - - 505 - - - true - 1 - 39872d87:13e14015f61:23a4 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - OK to - - - - 40 - 0 - - 1 - - - - 1 - - 0 - true - - 555 - - - true - 1 - 39872d87:13e14015f61:23a5 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - description - - - - 100 - 0 - - 1 - - - - 1 - - 15 - true - - 30 - - - true - 1 - 39872d87:13e14015f61:23a6 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - order - - - - 40 - 0 - - 1 - - - - 1 - - 15 - true - - 135 - - - true - 1 - 39872d87:13e14015f61:23a7 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - density - - - - 60 - 0 - - 1 - - - - 1 - - 15 - true - - 180 - - - true - 1 - 39872d87:13e14015f61:23a8 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - radius - - - - 60 - 0 - - 1 - - - - 1 - - 15 - true - - 245 - - - true - 1 - 39872d87:13e14015f61:23a9 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Lo Lim - - - - 60 - 0 - - 1 - - - - 1 - - 15 - true - - 310 - - - true - 1 - 39872d87:13e14015f61:23aa - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Hi Lim - - - - 60 - 0 - - 1 - - - - 1 - - 15 - true - - 375 - - - true - 1 - 39872d87:13e14015f61:23ab - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - index - - - - 60 - 0 - - 1 - - - - 1 - - 15 - true - - 440 - - - true - 1 - 39872d87:13e14015f61:23ac - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - offset - - - - 40 - 0 - - 1 - - - - 1 - - 15 - true - - 505 - - - true - 1 - 39872d87:13e14015f61:23ad - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - use? - - - - 40 - 0 - - 1 - - - - 1 - - 15 - true - - 555 - - - true - 1 - 39872d87:13e14015f61:23ae - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - - - - - 100 - 0 - - 1 - - - - 1 - - 30 - true - - 30 - - - true - 1 - 39872d87:13e14015f61:23af - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - - - - - 40 - 0 - - 1 - - - - 1 - - 30 - true - - 135 - - - true - 1 - 39872d87:13e14015f61:23b0 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - [lines/mm] - - - - 60 - 0 - - 1 - - - - 1 - - 30 - true - - 180 - - - true - 1 - 39872d87:13e14015f61:23b1 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - [m] - - - - 60 - 0 - - 1 - - - - 1 - - 30 - true - - 245 - - - true - 1 - 39872d87:13e14015f61:23b2 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - [Angstroms] - - - - 60 - 0 - - 1 - - - - 1 - - 30 - true - - 310 - - - true - 1 - 39872d87:13e14015f61:23b3 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - [Angstroms] - - - - 60 - 0 - - 1 - - - - 1 - - 30 - true - - 375 - - - true - 1 - 39872d87:13e14015f61:23b4 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - (stripe #) - - - - 60 - 0 - - 1 - - - - 1 - - 30 - true - - 440 - - - true - 1 - 39872d87:13e14015f61:23b5 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - [mm] - - - - 40 - 0 - - 1 - - - - 1 - - 30 - true - - 505 - - - true - 1 - 39872d87:13e14015f61:23b6 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - 1==YES - - - - 40 - 0 - - 1 - - - - 1 - - 30 - true - - 555 - - \ No newline at end of file diff --git a/opticsApp/op/opi/2filter.opi b/opticsApp/op/opi/autoconvert/2filter.opi similarity index 83% rename from opticsApp/op/opi/2filter.opi rename to opticsApp/op/opi/autoconvert/2filter.opi index 83f953c..798be25 100644 --- a/opticsApp/op/opi/2filter.opi +++ b/opticsApp/op/opi/autoconvert/2filter.opi @@ -1,357 +1,353 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 200 true - 39872d87:13e14015f61:1580 - 3.1.2.20120830 + 2filter + + true + true + false true - 200 - 2filter false - false - - - - - - Display - true 195 - - true - 5 - - false - -1 - -1 - - - 10 10 - - false - true - 39872d87:13e14015f61:1581 - - 130 - Choice Button - false - - true - true - false - - $(P)$(Q1)select.VAL + 10 + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 90 - 0 - - - - - + false + + + + 130 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 65 - $(pv_name) -$(pv_value) - 5 - - - false - true - 39872d87:13e14015f61:1582 - - 130 Choice Button - false + $(P)$(Q1)select.VAL + + true true false - $(P)$(Q2)select.VAL + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 90 + 5 + 65 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 90 - 0 - - - - - + false + + + + 130 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 65 - $(pv_name) -$(pv_value) - 100 - - - true - 1 - 39872d87:13e14015f61:1583 - false - - 18 - Label + Choice Button + $(P)$(Q2)select.VAL + + true true false - true - false + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 90 + 100 + 65 + + + + false - - - - Label - true - upstream - - - - 90 - 0 - - 1 - 1 - - 46 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:1584 - false - + 0 + 1 + true + + + + + + 18 + 1 Label + true true false - true + false + upstream + + true + 1 + true + Label + 90 + false + 5 + 46 + + + + false - - - - Label - true - downstream - - - - 90 - 0 - - 1 + 0 + 1 + true + + + + + + + 18 1 - - 45 - true - - 100 - - - true - 1 - 39872d87:13e14015f61:1585 - false - - 20 Label + true true false - true + false + downstream + + true + 1 + true + Label + 90 + false + 100 + 45 + + + + false - - - - Label - true - User Filters - - - - 195 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 1 - - 0 - true - - 0 - - - false - true - 39872d87:13e14015f61:1586 - - 15 - Choice Button - false + Label + true true false - $(P)$(LOCK1)lock.VAL + + false + User Filters + + true + 1 + true + Label + 195 + false + 0 + 0 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 90 - 0 - - - - - + false + + + + 15 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 20 - $(pv_name) -$(pv_value) - 5 - - - false - true - 39872d87:13e14015f61:1587 - - 15 Choice Button - false + $(P)$(LOCK1)lock.VAL + + true true false - $(P)$(LOCK2)lock.VAL + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 90 + 5 + 20 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 90 - 0 - - - - - + false + + + + 15 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 20 + Choice Button + $(P)$(LOCK2)lock.VAL + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 90 100 + 20 - \ No newline at end of file + diff --git a/opticsApp/op/opi/2filter_setup.opi b/opticsApp/op/opi/autoconvert/2filter_setup.opi similarity index 73% rename from opticsApp/op/opi/2filter_setup.opi rename to opticsApp/op/opi/autoconvert/2filter_setup.opi index fbc0170..3dfdde5 100644 --- a/opticsApp/op/opi/2filter_setup.opi +++ b/opticsApp/op/opi/autoconvert/2filter_setup.opi @@ -1,636 +1,255 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 310 true - 39872d87:13e14015f61:1591 - 3.1.2.20120830 + 2filter_setup + + true + true + false true - 310 - 2filter_setup false - false - - - - - - Display - true 460 - - true - 5 - - false - -1 - -1 - - - 10 10 - - false - true - 100.0 - - - - 39872d87:13e14015f61:1592 - - - - - 35 - true - Rectangle - false + 10 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 460 + false + + + + false + 35 + true + + + 0 - 0 - - - 1 0 - true - - - - - 275 - $(pv_name) -$(pv_value) - 0 - false - - - - true - - true - 39872d87:13e14015f61:15a0 - - 120 - Grouping Container + Rectangle + + + true true false - true - false + + $(pv_name) +$(pv_value) + false + true + Rectangle + 460 + 0 + 275 + + + + false - + - - - - Grouping Container - true - - Default - - 70 - 0 - - false - 1 - - 125 - - 385 - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:15a1 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(Q2)pos5.VAL - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:15a2 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(Q2)pos4.VAL - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:15a3 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(Q2)pos3.VAL - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:15a4 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(Q2)pos2.VAL - - - - false - 0 - - - false - - - - 0 - - 60 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:15a5 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(Q2)posHome.VAL - - - - false - 0 - - - false - - - - 0 - - 100 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:15a6 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(Q2)pos1.VAL - - - - false - 0 - - - false - - - - 0 - - 80 - $(pv_name) -$(pv_value) - 0 - - - - true - 1 - 39872d87:13e14015f61:1593 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + close and re-open any screen that displays it. + + true + 1 + true + Label + 400 + false + 5 + 292 + + + + false - - - - Label - true - close and re-open any screen that displays it. - - - - 400 - 0 - - 1 - 0 - - 292 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:1594 - false - + 0 + 1 + true + + + + + + 18 + 0 Label + true true false - true + false - - - - - - - Label - true Motor-drive PV - - - - 115 - 0 - - 1 - - - - 0 - - 255 - true + true + 1 + true + Label + 115 + false 5 + 255 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 105 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:1595 - 0.0 - Text Input - + false + + + + 4 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q1)motorOut.OUTN + + false + 0.0 + + true true false - 4 - false + 0 - $(P)$(Q1)motorOut.OUTN - - - - false - 0 - - - false - - - - 0 - - 255 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 105 120 + 255 - - true - 1 - 39872d87:13e14015f61:1596 + + false - - 10 - Label - - true - true - false - - true - false - - - - Label + + + + 0 + 1 true - INVALID - + - 40 - 0 + + + + 10 + 0 + Label @@ -642,579 +261,991 @@ $(pv_value) $(P)$(Q1)motorOut.OUTV - 1 - - - - 0 - - 247 - true + + true + true + false + + + false + INVALID + true + 1 + true + Label + 40 + false 180 + 247 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1597 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q1)pos5.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q1)pos5.VAL - - - - false - 0 - - - false - - - - 0 - - 125 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 155 + 125 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1598 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q1)pos4.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q1)pos4.VAL - - - - false - 0 - - - false - - - - 0 - - 145 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 155 + 145 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1599 - 0.0 + false Text Input - + 0 + false + 0 + true + $(P)$(Q1)pos3.VAL + + false + 0.0 + + true true false - 1 - false + 0 - $(P)$(Q1)pos3.VAL - - - - false - 0 - - - false - - - - 0 - - 165 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 155 + 165 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:159a - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q1)pos2.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q1)pos2.VAL - - - - false - 0 - - - false - - - - 0 - - 185 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 155 + 185 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:159b - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q1)posHome.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q1)posHome.VAL - - - - false - 0 - - - false - - - - 0 - - 225 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 155 + 225 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:159c - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q1)pos1.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q1)pos1.VAL - - - - false - 0 - - - false - - - - 0 - - 205 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 155 + 205 - + + + false + false + + + false - true - 39872d87:13e14015f61:159d - + + + + 0 + 1 + true + + Default + + false + + + 125 + false + + Choice 1 + Choice 2 + Choice 3 + + true Choice Button - false + $(P)$(Q1)select.VAL + + true true false - $(P)$(Q1)select.VAL - - - - - - - Choice Button - true - false - - Default - - 70 - 0 + - - - - Choice 1 - Choice 2 - Choice 3 - - 1 - false - - - - true - - 125 $(pv_name) $(pv_value) + true + Choice Button + 70 80 + 125 - - true - 1 - 39872d87:13e14015f61:159e + + false - + + + + + + + 0 + 1 + true + + + + + + 18 + 0 Label + true true false - true + false + Motor-drive PV + + true + 1 + true + Label + 115 + false + 235 + 255 + + + + false + false + false - + - - - - Label + false + + + + 3 + 1 + true - Motor-drive PV - + - 115 - 0 + false + + + + 4 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q2)motorOut.OUTN + + false + 0.0 - 1 + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 105 + 350 + 255 + + + + false + false + false + + + + false + 3 + 1 + + true + + + + false + + + + 1 + 20 0 - - 255 - true - - 235 - - - false - true - 1 + false + Infinity + -Infinity false - false - - 20 - false + Text Input + 0 + false + 0 true + $(P)$(Q2)pos5.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 385 + 125 + + + + false + false + false - + - Text Input + false + + + + 3 + 1 + true - - + - 105 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:159f - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q2)pos4.VAL + + false + 0.0 + true true false - 4 - false + 0 - $(P)$(Q2)motorOut.OUTN + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 385 + 145 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false - + - false + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false 0 - + true + $(P)$(Q2)pos3.VAL + + false + 0.0 - false + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 385 + 165 + + + + false + false + false + + + + false + 3 + 1 + + true + + + + false + + + + 1 + 20 0 - - 255 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q2)pos2.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + $(pv_name) $(pv_value) - 350 + false + true + Text Input + 70 + 385 + 185 - + + + false + false + false + + + false - true - 39872d87:13e14015f61:15a7 - - 125 - Choice Button + + + + 3 + 1 + + true + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q2)posHome.VAL + + false + 0.0 + true true false - $(P)$(Q2)select.VAL + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 385 + 225 + + + + false + false + false - + - - - - Choice Button + false + + + + 3 + 1 + true - false - Default + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q2)pos1.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input 70 + 385 + 205 + + + + false + false + + + + false + + + 0 + 1 + true + + Default + + false + + + + 125 + false + + Choice 1 + Choice 2 + Choice 3 + + true + Choice Button + $(P)$(Q2)select.VAL + + + + true + true + false + + - - - - Choice 1 - Choice 2 - Choice 3 - - 1 - false - - - - true - - 125 $(pv_name) $(pv_value) + true + Choice Button + 70 310 + 125 - - true - 1 - 39872d87:13e14015f61:15a8 + + false - - 10 - Label - - true - true - false - - true - false - - - - Label + + + + 0 + 1 true - INVALID - + - 40 - 0 + + + + 10 + 0 + Label @@ -1226,1055 +1257,1119 @@ $(pv_value) $(P)$(Q2)motorOut.OUTV - 1 - - - - 0 - - 245 - true + + true + true + false + + + false + INVALID + true + 1 + true + Label + 40 + false 410 + 245 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:15a9 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q1)name5 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q1)name5 - - - - false - 0 - - - false - - - - 0 - - 125 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 5 + 125 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:15aa - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q1)name4 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q1)name4 - - - - false - 0 - - - false - - - - 0 - - 145 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 5 + 145 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:15ab - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q1)name3 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q1)name3 - - - - false - 0 - - - false - - - - 0 - - 165 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 5 + 165 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:15ac - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q1)name2 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q1)name2 - - - - false - 0 - - - false - - - - 0 - - 185 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 5 + 185 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:15ad - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q1)nameHome + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q1)nameHome - - - - false - 0 - - - false - - - - 0 - - 225 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 5 + 225 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:15ae - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q1)name1 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q1)name1 - - - - false - 0 - - - false - - - - 0 - - 205 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 5 + 205 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:15af - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q2)name5 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q2)name5 - - - - false - 0 - - - false - - - - 0 - - 125 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 235 + 125 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:15b0 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q2)name4 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q2)name4 - - - - false - 0 - - - false - - - - 0 - - 145 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 235 + 145 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:15b1 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q2)name3 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q2)name3 - - - - false - 0 - - - false - - - - 0 - - 165 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 235 + 165 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:15b2 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q2)name2 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q2)name2 - - - - false - 0 - - - false - - - - 0 - - 185 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 235 + 185 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:15b3 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q2)nameHome + + false + 0.0 + true true false - 1 - false - 0 - $(P)$(Q2)nameHome - - - - false - 0 - - - false - - - - 0 - - 225 + + 0 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 235 + 225 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:15b4 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q2)name1 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q2)name1 - - - - false - 0 - - - false - - - - 0 - - 205 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 235 + 205 - - true - 1 - 39872d87:13e14015f61:15b5 + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - position - - - - 70 - 0 - - 1 - 1 - - 100 - true - - 155 - - - true - 1 - 39872d87:13e14015f61:15b6 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + position + + true + 1 + true + Label + 70 + false + 155 + 100 + + + + false - - - - Label - true - control - - - - 70 - 0 - - 1 - 1 - - 100 - true - - 80 - - - true - 1 - 39872d87:13e14015f61:15b7 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + control + + true + 1 + true + Label + 70 + false + 80 + 100 + + + + false - - - - Label - true - material - - - - 70 - 0 - - 1 - 1 - - 100 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:15b8 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + material + + true + 1 + true + Label + 70 + false + 5 + 100 + + + + false - - - - Label - true - motor - - - - 70 - 0 - - 1 - 1 - - 85 - true - - 155 - - - true - 1 - 39872d87:13e14015f61:15b9 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + motor + + true + 1 + true + Label + 70 + false + 155 + 85 + + + + false - - - - Label - true - - - - - 70 - 0 - - 1 - 1 - - 85 - true - - 80 - - - true - 1 - 39872d87:13e14015f61:15ba - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + + + true + 1 + true + Label + 70 + false + 80 + 85 + + + + false - - - - Label - true - filter - - - - 70 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 1 - - 85 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:15bb - false - - 18 Label + true true false - true + false + filter + + true + 1 + true + Label + 70 + false + 5 + 85 + + + + false - - - - Label - true - User Filter $(P)$(Q1) - - - - 460 - 0 - - 1 + 0 + 1 + true + + + + + + + 18 1 - - 0 - true - - 0 - - - false - true - 39872d87:13e14015f61:15bc - - 20 - Choice Button - false + Label + true true false - $(P)$(LOCK1)lock.VAL + + false + User Filter $(P)$(Q1) + + true + 1 + true + Label + 460 + false + 0 + 0 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 200 - 0 - - - - - + false + + + + 20 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 20 - $(pv_name) -$(pv_value) - 15 - - - true - 1 - 39872d87:13e14015f61:15bd - false - - 10 - Label + Choice Button + $(P)$(LOCK1)lock.VAL + + true true false - true - false + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 200 + 15 + 20 + + + + false - - - - Label + + + + 0 + 1 true - INVALID - + - 40 - 0 + + + + 10 + 0 + Label @@ -2286,782 +2381,777 @@ $(pv_value) $(P)$(LOCK1)lockOut.OUTV - 1 - - - - 0 - - 45 - true + + true + true + false + + + false + INVALID + true + 1 + true + Label + 40 + false 175 + 45 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 120 - 3 - - 1 + false + + + + 4 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:15be - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(LOCK1)lockOut.OUTN + + false + 0.0 + true true false - 4 - false + 0 - $(P)$(LOCK1)lockOut.OUTN - - - - false - 0 - - - false - - - - 0 - - 40 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 120 55 + 40 - - true - 1 - 39872d87:13e14015f61:15bf + + false - + + + + + + + 0 + 1 + true + + + + + + 18 + 0 Label + true true false - true + false - - - - - - - Label - true Lock_PV - - - - 55 - 0 - - 1 - - - - 0 - - 42 - true + true + 1 + true + Label + 55 + false 0 + 42 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:15c0 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 458 + 0 + 18 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 458 - 0 - 0 - - - 1 - 1 - true + false - - 18 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:15c1 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 458 - 0 - 0 - - 1 - 1 - true - - - - - 62 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 458 0 + 62 - - true - 1 - 39872d87:13e14015f61:15c2 + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - upstream - - - - 220 - 0 - - 1 - 1 - - 65 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:15c3 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + upstream + + true + 1 + true + Label + 220 + false + 5 + 65 + + + + false - - - - Label - true - downstream - - - - 220 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 1 - - 65 - true - - 235 - - - true - 1 - 39872d87:13e14015f61:15c4 - false - - 14 Label + true true false - true + false + downstream + + true + 1 + true + Label + 220 + false + 235 + 65 + + + + false - - - - Label - true - position - - - - 70 - 0 - - 1 - 1 - - 100 - true - - 385 - - - true - 1 - 39872d87:13e14015f61:15c5 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + position + + true + 1 + true + Label + 70 + false + 385 + 100 + + + + false - - - - Label - true - control - - - - 70 - 0 - - 1 - 1 - - 100 - true - - 310 - - - true - 1 - 39872d87:13e14015f61:15c6 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + control + + true + 1 + true + Label + 70 + false + 310 + 100 + + + + false - - - - Label - true - material - - - - 70 - 0 - - 1 - 1 - - 100 - true - - 235 - - - true - 1 - 39872d87:13e14015f61:15c7 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + material + + true + 1 + true + Label + 70 + false + 235 + 100 + + + + false - - - - Label - true - motor - - - - 70 - 0 - - 1 - 1 - - 85 - true - - 385 - - - true - 1 - 39872d87:13e14015f61:15c8 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + motor + + true + 1 + true + Label + 70 + false + 385 + 85 + + + + false - - - - Label - true - - - - - 70 - 0 - - 1 - 1 - - 85 - true - - 310 - - - true - 1 - 39872d87:13e14015f61:15c9 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + + + true + 1 + true + Label + 70 + false + 310 + 85 + + + + false - - - - Label - true - filter - - - - 70 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 1 - - 85 - true + Label + + + true + true + false + + + false + filter + true + 1 + true + Label + 70 + false 235 + 85 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:15ca - 0.0 - - 0 + + Default + + false + + + 211 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - 1 - 1 - true - - - - - 63 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 1 230 + 63 - - true - 1 - 39872d87:13e14015f61:15cb + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true NOTE: After changing filter-material description, you must - - - - 450 - 0 - - 1 - - - - 0 - - 278 - true + true + 1 + true + Label + 450 + false 5 + 278 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:15cc - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - - - - - - - + true Polyline - true - false - - Default - 458 - 0 - 0 - - - 1 - 1 - true - - - - - 276 - $(pv_name) -$(pv_value) 0 + 276 - - false - true - 39872d87:13e14015f61:15cd - - 20 - Choice Button - false - - true - true - false - - $(P)$(LOCK2)lock.VAL + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 200 - 0 - - - - - + false + + + + 20 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 20 - $(pv_name) -$(pv_value) - 245 - - - true - 1 - 39872d87:13e14015f61:15ce - false - - 10 - Label + Choice Button + $(P)$(LOCK2)lock.VAL + + true true false - true - false + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 200 + 245 + 20 + + + + false - - - - Label + + + + 0 + 1 true - INVALID - + - 40 - 0 + + + + 10 + 0 + Label @@ -3073,112 +3163,124 @@ $(pv_value) $(P)$(LOCK2)lockOut.OUTV - 1 - - - - 0 - - 45 - true + + true + true + false + + + false + INVALID + true + 1 + true + Label + 40 + false 405 + 45 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 120 - 3 - - 1 + false + + + + 4 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:15cf - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(LOCK2)lockOut.OUTN + + false + 0.0 + true true false - 4 - false + 0 - $(P)$(LOCK2)lockOut.OUTN - - - - false - 0 - - - false - - - - 0 - - 40 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 120 285 + 40 - - true - 1 - 39872d87:13e14015f61:15d0 + + false - + + + + + + + 0 + 1 + true + + + + + + 18 + 0 Label + true true false - true + false - - - - - - - Label - true Lock_PV - - - - 55 - 0 - - 1 - - - - 0 - - 42 - true + true + 1 + true + Label + 55 + false 230 + 42 - \ No newline at end of file + diff --git a/opticsApp/op/opi/2iddMicroscope.opi b/opticsApp/op/opi/autoconvert/2iddMicroscope.opi similarity index 86% rename from opticsApp/op/opi/2iddMicroscope.opi rename to opticsApp/op/opi/autoconvert/2iddMicroscope.opi index 4cb7ba7..bc1d20d 100644 --- a/opticsApp/op/opi/2iddMicroscope.opi +++ b/opticsApp/op/opi/autoconvert/2iddMicroscope.opi @@ -1,477 +1,475 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 255 true - 39872d87:13e14015f61:1612 - 3.1.2.20120830 + 2iddMicroscope + + true + true + false true - 255 - 2iddMicroscope false - false - - - - - - Display - true 605 - - true - 5 - - false - -1 - -1 - - - 580 149 - + 580 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 19 + true - 39872d87:13e14015f61:1613 - - - - - 19 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 60 + 500 + 21 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 60 - 0 - 0 - - - 1 - 0 - true - - - - - 21 - $(pv_name) -$(pv_value) - 500 + false + + + false - - - false - true - 100.0 + 20 + true - 39872d87:13e14015f61:1614 - - - - - 20 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 605 + 0 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 605 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 100.0 + 110 + true - 39872d87:13e14015f61:1617 - - - - - 110 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 145 + 155 + 140 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 145 + false + + + + false + 80 + true + + + 0 - 0 - - - 1 0 - true - - - - - 140 - $(pv_name) -$(pv_value) - 155 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1622 - - - - - 80 - true Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 145 + 305 + 140 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 145 - 0 - 0 - - - 1 - 0 - true - - - - - 140 - $(pv_name) -$(pv_value) - 305 + false + + + false - - - false - true - 0.0 + 80 + true - + - 39872d87:13e14015f61:1623 - - - - - 80 - true + 0 + 1 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 145 + 305 + 140 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 145 - 0 - 0 - - - 1 - 1 - true - - - - - 140 - $(pv_name) -$(pv_value) - 305 + false + + + false - - - false - true - 100.0 + 80 + true - 39872d87:13e14015f61:1625 - - - - - 80 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 145 + 455 + 140 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 145 - 0 - 0 - - - 1 - 0 - true - - - - - 140 - $(pv_name) -$(pv_value) - 455 + false + + + false - - - false - true - 0.0 + 80 + true - + - 39872d87:13e14015f61:1627 - - - - - 80 - true + 0 + 1 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 145 + 455 + 140 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 145 - 0 - 0 - - - 1 - 1 - true - - - - - 140 - $(pv_name) -$(pv_value) - 455 + false + + + false - - - false - true - 100.0 + 5 + true - 39872d87:13e14015f61:1628 - - - - - 5 - true + 0 + 0 Rectangle - false - 255 - - true - true - false - - false - - - - - - - Rectangle - true - - - - false - - Default - - 10 - 0 - 0 + @@ -483,62 +481,62 @@ $(pv_value) $(P)m20.HLS - - 1 - 0 - true - - - - - 165 - $(pv_name) -$(pv_value) - 190 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1629 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 190 + 165 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -550,62 +548,62 @@ $(pv_value) $(P)m20.LLS - - 1 - 0 - true - - - - - 178 - $(pv_name) -$(pv_value) - 190 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:162e - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 190 + 178 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -617,62 +615,62 @@ $(pv_value) $(P)m20_able.VAL - - 1 - 0 - true - - - - - 165 - $(pv_name) -$(pv_value) - 200 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:162f - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 200 + 165 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -684,62 +682,62 @@ $(pv_value) $(P)m20.LVIO - - 1 - 0 - true - - - - - 170 - $(pv_name) -$(pv_value) - 195 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1630 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 195 + 170 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -751,62 +749,62 @@ $(pv_value) $(P)m20.DMOV - - 1 - 0 - true - - - - - 170 - $(pv_name) -$(pv_value) - 190 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1636 - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 190 + 170 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -818,62 +816,62 @@ $(pv_value) $(P)m19_able.VAL - - 1 - 0 - true - - - - - 195 - $(pv_name) -$(pv_value) - 200 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1637 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 200 + 195 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -885,62 +883,62 @@ $(pv_value) $(P)m19.LLS - - 1 - 0 - true - - - - - 208 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 10 190 - false + 208 - - false - true - 100.0 - - - - 39872d87:13e14015f61:1638 - - - - - 8 - true - Rectangle - false + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -952,62 +950,62 @@ $(pv_value) $(P)m19.LVIO - - 1 - 0 - true - - - - - 200 - $(pv_name) -$(pv_value) - 195 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1639 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 195 + 200 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1019,62 +1017,62 @@ $(pv_value) $(P)m19.DMOV - - 1 - 0 - true - - - - - 200 - $(pv_name) -$(pv_value) - 190 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:163a - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 190 + 200 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1086,64 +1084,64 @@ $(pv_value) $(P)m19.HLS - - 1 - 0 - true - - - - - 195 - $(pv_name) -$(pv_value) - 190 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1642 - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 190 + 195 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 - 0 - 0 - - + false + + + + false + 18 + true + + + + 0 + 0 + Rectangle + + + + true @@ -1153,62 +1151,62 @@ $(pv_value) $(P)m12_able.VAL - - 1 - 0 - true - - - - - 165 - $(pv_name) -$(pv_value) - 350 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1643 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 350 + 165 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1220,62 +1218,62 @@ $(pv_value) $(P)m12.LLS - - 1 - 0 - true - - - - - 178 - $(pv_name) -$(pv_value) - 340 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1644 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 340 + 178 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1287,62 +1285,62 @@ $(pv_value) $(P)m12.LVIO - - 1 - 0 - true - - - - - 170 - $(pv_name) -$(pv_value) - 345 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1645 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 345 + 170 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1354,62 +1352,62 @@ $(pv_value) $(P)m12.DMOV - - 1 - 0 - true - - - - - 170 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 5 340 - false + 170 - - false - true - 100.0 - - - - 39872d87:13e14015f61:1646 - - - - - 5 - true - Rectangle - false + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1421,62 +1419,62 @@ $(pv_value) $(P)m12.HLS - - 1 - 0 - true - - - - - 165 - $(pv_name) -$(pv_value) - 340 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:164e - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 340 + 165 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1488,62 +1486,62 @@ $(pv_value) $(P)m11_able.VAL - - 1 - 0 - true - - - - - 195 - $(pv_name) -$(pv_value) - 350 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:164f - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 350 + 195 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1555,62 +1553,62 @@ $(pv_value) $(P)m11.LLS - - 1 - 0 - true - - - - - 208 - $(pv_name) -$(pv_value) - 340 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1650 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 340 + 208 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 - 0 - 0 + false + + + + false + 8 + true + + + + 0 + 0 + Rectangle + + @@ -1622,62 +1620,62 @@ $(pv_value) $(P)m11.LVIO - - 1 - 0 - true - - - - - 200 - $(pv_name) -$(pv_value) - 345 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1651 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 345 + 200 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1689,62 +1687,62 @@ $(pv_value) $(P)m11.DMOV - - 1 - 0 - true - - - - - 200 - $(pv_name) -$(pv_value) - 340 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1652 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 340 + 200 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1756,62 +1754,62 @@ $(pv_value) $(P)m11.HLS - - 1 - 0 - true - - - - - 195 - $(pv_name) -$(pv_value) - 340 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1654 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 340 + 195 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1823,62 +1821,62 @@ $(pv_value) $(P)m18.HLS - - 1 - 0 - true - - - - - 225 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 10 190 - false + 225 - - false - true - 100.0 - - - - 39872d87:13e14015f61:1655 - - - - - 5 - true - Rectangle - false + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1890,62 +1888,62 @@ $(pv_value) $(P)m18.LLS - - 1 - 0 - true - - - - - 238 - $(pv_name) -$(pv_value) - 190 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1658 - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 190 + 238 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1957,62 +1955,62 @@ $(pv_value) $(P)m18_able.VAL - - 1 - 0 - true - - - - - 225 - $(pv_name) -$(pv_value) - 200 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1659 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 200 + 225 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -2024,62 +2022,62 @@ $(pv_value) $(P)m18.LVIO - - 1 - 0 - true - - - - - 230 - $(pv_name) -$(pv_value) - 195 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:165a - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 195 + 230 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 - 0 - 0 + false + + + + false + 8 + true + + + + 0 + 0 + Rectangle + + @@ -2091,119 +2089,119 @@ $(pv_value) $(P)m18.DMOV - - 1 - 0 - true - - - - - 230 - $(pv_name) -$(pv_value) - 190 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:165e - - - - - 110 - true - Rectangle - false - 255 true true false - true - + + $(pv_name) +$(pv_value) + false + true + Rectangle + 5 + 190 + 230 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 145 - 0 - 0 - - - 1 - 1 - true - - - - - 140 - $(pv_name) -$(pv_value) - 155 + false + + + false - - - false - true - 100.0 + 110 + true - + - 39872d87:13e14015f61:1663 - - - - - 18 - true + 0 + 1 Rectangle - false - 255 + + + true true false - false - + + $(pv_name) +$(pv_value) + true + true + Rectangle + 145 + 155 + 140 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -2215,62 +2213,62 @@ $(pv_value) $(P)m14_able.VAL - - 1 - 0 - true - - - - - 165 - $(pv_name) -$(pv_value) - 500 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1664 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 500 + 165 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -2282,62 +2280,62 @@ $(pv_value) $(P)m14.LLS - - 1 - 0 - true - - - - - 178 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 10 490 - false + 178 - - false - true - 100.0 - - - - 39872d87:13e14015f61:1665 - - - - - 8 - true - Rectangle - false + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -2349,62 +2347,62 @@ $(pv_value) $(P)m14.LVIO - - 1 - 0 - true - - - - - 170 - $(pv_name) -$(pv_value) - 495 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1666 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 495 + 170 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -2416,62 +2414,62 @@ $(pv_value) $(P)m14.DMOV - - 1 - 0 - true - - - - - 170 - $(pv_name) -$(pv_value) - 490 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1667 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 490 + 170 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -2483,66 +2481,66 @@ $(pv_value) $(P)m14.HLS - - 1 - 0 - true - - - - - 165 - $(pv_name) -$(pv_value) - 490 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:166e - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 490 + 165 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 - 0 - 0 - - - - true + false + + + + false + 18 + true + + + + 0 + 0 + Rectangle + + + + + + true false @@ -2550,62 +2548,62 @@ $(pv_value) $(P)m13_able.VAL - - 1 - 0 - true - - - - - 195 - $(pv_name) -$(pv_value) - 500 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:166f - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 500 + 195 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -2617,62 +2615,62 @@ $(pv_value) $(P)m13.LLS - - 1 - 0 - true - - - - - 208 - $(pv_name) -$(pv_value) - 490 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1670 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 490 + 208 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -2684,62 +2682,62 @@ $(pv_value) $(P)m13.LVIO - - 1 - 0 - true - - - - - 200 - $(pv_name) -$(pv_value) - 495 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1671 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 495 + 200 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -2751,62 +2749,62 @@ $(pv_value) $(P)m13.DMOV - - 1 - 0 - true - - - - - 200 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 5 490 - false + 200 - - false - true - 100.0 - - - - 39872d87:13e14015f61:1672 - - - - - 5 - true - Rectangle - false + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -2818,119 +2816,119 @@ $(pv_value) $(P)m13.HLS - - 1 - 0 - true - - - - - 195 - $(pv_name) -$(pv_value) - 490 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:167e - - - - - 110 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 490 + 195 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 145 - 0 - 0 - - - 1 - 0 - true - - - - - 140 - $(pv_name) -$(pv_value) - 5 + false + + + false - - - false - true - 100.0 + 110 + true - 39872d87:13e14015f61:1680 - - - - - 5 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 145 + 5 + 140 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -2942,65 +2940,65 @@ $(pv_value) $(P)m4.HLS - - 1 - 0 - true - - - - - 165 - $(pv_name) -$(pv_value) - 40 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1681 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 40 + 165 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 - 0 - 0 - - - + false + + + + false + 5 + true + + + + 0 + 0 + Rectangle + + + + + true @@ -3009,62 +3007,62 @@ $(pv_value) $(P)m4.LLS - - 1 - 0 - true - - - - - 178 - $(pv_name) -$(pv_value) - 40 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1685 - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 40 + 178 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -3076,62 +3074,62 @@ $(pv_value) $(P)m4_able.VAL - - 1 - 0 - true - - - - - 165 - $(pv_name) -$(pv_value) - 50 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1686 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 50 + 165 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -3143,62 +3141,62 @@ $(pv_value) $(P)m4.LVIO - - 1 - 0 - true - - - - - 170 - $(pv_name) -$(pv_value) - 45 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1687 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 45 + 170 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -3210,62 +3208,62 @@ $(pv_value) $(P)m4.DMOV - - 1 - 0 - true - - - - - 170 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 5 40 - false + 170 - - false - true - 100.0 - - - - 39872d87:13e14015f61:168e - - - - - 18 - true - Rectangle - false + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -3277,62 +3275,62 @@ $(pv_value) $(P)m3_able.VAL - - 1 - 0 - true - - - - - 195 - $(pv_name) -$(pv_value) - 50 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:168f - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 50 + 195 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -3344,62 +3342,62 @@ $(pv_value) $(P)m3.LLS - - 1 - 0 - true - - - - - 208 - $(pv_name) -$(pv_value) - 40 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1690 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 40 + 208 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -3411,62 +3409,62 @@ $(pv_value) $(P)m3.LVIO - - 1 - 0 - true - - - - - 200 - $(pv_name) -$(pv_value) - 45 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1691 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 45 + 200 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 - 0 - 0 + false + + + + false + 8 + true + + + + 0 + 0 + Rectangle + + @@ -3478,62 +3476,62 @@ $(pv_value) $(P)m3.DMOV - - 1 - 0 - true - - - - - 200 - $(pv_name) -$(pv_value) - 40 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1692 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 40 + 200 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -3545,62 +3543,62 @@ $(pv_value) $(P)m3.HLS - - 1 - 0 - true - - - - - 195 - $(pv_name) -$(pv_value) - 40 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1694 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 40 + 195 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -3612,62 +3610,62 @@ $(pv_value) $(P)m22.HLS - - 1 - 0 - true - - - - - 225 - $(pv_name) -$(pv_value) - 40 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1695 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 40 + 225 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -3679,62 +3677,62 @@ $(pv_value) $(P)m22.LLS - - 1 - 0 - true - - - - - 238 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 10 40 - false + 238 - - false - true - 100.0 - - - - 39872d87:13e14015f61:169a - - - - - 18 - true - Rectangle - false + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -3746,62 +3744,62 @@ $(pv_value) $(P)m22_able.VAL - - 1 - 0 - true - - - - - 225 - $(pv_name) -$(pv_value) - 50 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:169b - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 50 + 225 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -3813,62 +3811,62 @@ $(pv_value) $(P)m22.LVIO - - 1 - 0 - true - - - - - 230 - $(pv_name) -$(pv_value) - 45 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:169c - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 45 + 230 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -3880,290 +3878,290 @@ $(pv_value) $(P)m22.DMOV - - 1 - 0 - true - - - - - 230 - $(pv_name) -$(pv_value) - 40 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:169e - - - - - 110 - true - Rectangle - false - 255 true true false - true - + + $(pv_name) +$(pv_value) + false + true + Rectangle + 5 + 40 + 230 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 145 - 0 - 0 - - - 1 - 1 + false + + + + false + 110 true - - - - - 140 + + + + 0 + 1 + Rectangle + + + + + true + true + false + + $(pv_name) $(pv_value) + true + true + Rectangle + 145 5 - false + 140 - + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 100 + true - 39872d87:13e14015f61:16a6 - - - - - 100 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 60 + 235 + 30 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 60 - 0 - 0 - - - 1 - 0 - true - - - - - 30 - $(pv_name) -$(pv_value) - 235 + false + + + false - - - false - true - 0.0 + 19 + true - + - 39872d87:13e14015f61:16c0 - - - - - 19 - true + 0 + 1 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 60 + 500 + 21 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 60 - 0 - 0 - - - 1 - 1 - true - - - - - 21 - $(pv_name) -$(pv_value) - 500 + false + + + false - - - false - true - 100.0 + 80 + true - 39872d87:13e14015f61:16c1 - - - - - 80 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 145 + 455 + 40 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 145 + false + + + + false + 18 + true + + + 0 - 0 - - - 1 0 - true - - - - - 40 - $(pv_name) -$(pv_value) - 455 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:16c6 - - - - - 18 - true Rectangle - false - 255 - - true - true - false - - false - - - - - - - Rectangle - true - - - - false - - Default - - 5 - 0 - 0 + @@ -4175,62 +4173,62 @@ $(pv_value) $(P)m23_able.VAL - - 1 - 0 - true - - - - - 95 - $(pv_name) -$(pv_value) - 500 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:16c7 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 500 + 95 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -4242,62 +4240,62 @@ $(pv_value) $(P)m23.LLS - - 1 - 0 - true - - - - - 108 - $(pv_name) -$(pv_value) - 490 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:16c8 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 490 + 108 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -4309,63 +4307,63 @@ $(pv_value) $(P)m23.LVIO - - 1 - 0 - true - - - - - 100 - $(pv_name) -$(pv_value) - 495 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:16c9 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 495 + 100 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 - + 0 + Rectangle + + + true @@ -4376,62 +4374,62 @@ $(pv_value) $(P)m23.DMOV - - 1 - 0 - true - - - - - 100 - $(pv_name) -$(pv_value) - 490 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:16ca - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 490 + 100 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -4443,119 +4441,119 @@ $(pv_value) $(P)m23.HLS - - 1 - 0 - true - - - - - 95 - $(pv_name) -$(pv_value) - 490 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:16cc - - - - - 80 - true - Rectangle - false - 255 true true false - true - + + $(pv_name) +$(pv_value) + false + true + Rectangle + 10 + 490 + 95 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 145 - 0 - 0 - - - 1 - 1 - true - - - - - 40 - $(pv_name) -$(pv_value) - 455 + false + + + false - - - false - true - 100.0 + 80 + true - + - 39872d87:13e14015f61:16d3 - - - - - 18 - true + 0 + 1 Rectangle - false - 255 + + + true true false - false - + + $(pv_name) +$(pv_value) + true + true + Rectangle + 145 + 455 + 40 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -4567,62 +4565,62 @@ $(pv_value) $(P)m24_able.VAL - - 1 - 0 - true - - - - - 65 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 5 500 - false + 65 - - false - true - 100.0 - - - - 39872d87:13e14015f61:16d4 + + + false + 255 + true + false + + + - - 5 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -4634,62 +4632,62 @@ $(pv_value) $(P)m24.LLS - - 1 - 0 - true - - - - - 78 - $(pv_name) -$(pv_value) - 490 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:16d5 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 490 + 78 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -4701,62 +4699,62 @@ $(pv_value) $(P)m24.LVIO - - 1 - 0 - true - - - - - 70 - $(pv_name) -$(pv_value) - 495 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:16d6 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 495 + 70 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -4768,64 +4766,64 @@ $(pv_value) $(P)m24.DMOV - - 1 - 0 - true - - - - - 70 - $(pv_name) -$(pv_value) - 490 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:16d7 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 490 + 70 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 - - + 0 + Rectangle + + + + true @@ -4835,2306 +4833,2291 @@ $(pv_value) $(P)m24.HLS - - 1 - 0 - true - - - - - 65 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 10 490 - false + 65 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 63 + false true - true - 39872d87:13e14015f61:1619 - - 63 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 68 - 0 - - false - 1 - - - - - 49 - 10 - + 49 + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 63 + false true - true - 39872d87:13e14015f61:161a - - 63 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 68 - 0 - - false - 1 - - - - - 0 - 0 - + 0 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:161b - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 51 + 3 + 55 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 51 - 0 - 0 - - - 1 - 1 - true + false - - 55 - $(pv_name) -$(pv_value) - 3 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:161c - 0.0 - - 0 + + Default + + false + + + 23 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 27 + 3 + 33 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 27 - 0 - 0 - - - 1 - 1 - true + false - - 33 - $(pv_name) -$(pv_value) - 3 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:161d - 0.0 - - 0 + + Default + + false + + + 38 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - 1 - 1 - true - - - - - 17 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 1 3 + 17 - - true - 1 - 39872d87:13e14015f61:161e + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Z + + true + 1 + true + Label + 10 + false + 58 + 49 + + + + false - - - - Label - true - Z - - - - 10 - 0 - - 1 - 0 - - 49 - true - - 58 - - - true - 1 - 39872d87:13e14015f61:161f - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + X + + true + 1 + true + Label + 10 + false + 32 + 19 + + + + false - - - - Label - true - X - - - - 10 - 0 - - 1 - 0 - - 19 - true - - 32 - - - true - 1 - 39872d87:13e14015f61:1620 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true Y - - - - 10 - 0 - - 1 - - - - 0 - - 0 - true + true + 1 + true + Label + 10 + false 0 + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 100 + false true - true - 39872d87:13e14015f61:16aa - - 100 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 50 - 0 - - false - 1 - - - - - 30 - 120 - - false - true - 100.0 - - - - 39872d87:13e14015f61:16ab - - - - - 100 - true - Ellipse - false + 30 + + + false 255 - - true - true - true - - false - + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 50 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 0.0 + 100 + true - + - 39872d87:13e14015f61:16ac - - - - - 80 - true + 0 + 0 Ellipse - false - 255 + + + true true true - true - + + $(pv_name) +$(pv_value) + false + true + Ellipse + 50 + 0 + 0 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 40 - 0 - 0 - - - 1 - 5 - true - - - - - 10 - $(pv_name) -$(pv_value) - 5 + false + + + false - - - false - true - 0.0 + 80 + true - - - 39872d87:13e14015f61:16ad - - - - 50 - true + + 0 + 5 Ellipse - false - 255 + + + true true true + + $(pv_name) +$(pv_value) true - + true + Ellipse + 40 + 5 + 10 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 20 + false + + + + false + 50 + true + + + 0 - 0 - - - 1 5 - true - - - - - 25 + Ellipse + + + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Ellipse + 20 15 - false + 25 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 44 + false true - true - 39872d87:13e14015f61:16ae - - 44 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 48 - 0 - - false - 1 - - - - - 51 - 273 - - false - true - 0.0 - - - - 39872d87:13e14015f61:16af - - - - - 7 - true - Ellipse - false + 51 + + + false 255 - - true - true - true - - true - + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 7 - 0 - 0 - - - 1 - 5 - true - - - - - 12 - $(pv_name) -$(pv_value) - 31 + false + + + false - - - false - true - 0.0 + 7 + true - + - 39872d87:13e14015f61:16b0 - - - - - 10 - true + 0 + 5 Ellipse - false - 255 + + + true true true + + $(pv_name) +$(pv_value) true - + true + Ellipse + 7 + 31 + 12 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 10 - 0 - 0 - - - 1 - 5 - true - - - - - 17 - $(pv_name) -$(pv_value) - 34 + false + + + false - - - false - true - 0.0 + 10 + true - + - 39872d87:13e14015f61:16b1 - - - - - 10 - true + 0 + 5 Ellipse - false - 255 + + + true true true + + $(pv_name) +$(pv_value) true - + true + Ellipse + 10 + 34 + 17 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 10 + false + + + + false + 10 + true + + + 0 - 0 - - - 1 5 - true - - - - - 25 + Ellipse + + + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Ellipse + 10 37 - false + 25 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:16b2 - 0.0 - - 0 + + Default + + false + + + 4 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - 1 - 1 - true - - - - - 24 - $(pv_name) -$(pv_value) - 30 - - - false - true - 65 - 39872d87:13e14015f61:16b3 - 342 - - 20 - true - Arc - false - 255 + 0.0 + true true true - + + $(pv_name) +$(pv_value) + true + true + Polyline + 7 + 30 + 24 + + + + false + 255 + true + false - - - - Arc + false + + + + 0 + 1 true - false + false - Default + Default - 25 + false + + + + 20 0 - false - 0 - - - 1 1 - - - - - 0 - $(pv_name) -$(pv_value) - 12 - - - false - true - 0.0 - - - - 39872d87:13e14015f61:16b4 - - - - - 10 - true - Ellipse - false - 255 + Arc + + + true true true - true - + + 342 + $(pv_name) +$(pv_value) + 65 + true + Arc + 25 + 12 + 0 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 10 + false + + + + false + 10 + true + + + 0 - 0 - - - 1 5 - true - - - - - 34 + Ellipse + + + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Ellipse + 10 38 - false + 34 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:16b5 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 6 - 0 - 0 - - 1 - 1 - true - - - - - 40 - $(pv_name) -$(pv_value) - 35 - - - false - true - 58 - 39872d87:13e14015f61:16b6 - 0 - - 20 - true - Arc - false - 255 + 0.0 + true true true - + + $(pv_name) +$(pv_value) + true + true + Polyline + 6 + 35 + 40 + + + + false + 255 + true + false - - - - Arc + false + + + + 0 + 1 true - false + false - Default + Default - 33 + false + + + + 20 0 - false - 0 - - - 1 1 - - - - - 3 + Arc + + + + + true + true + true + + + 0 $(pv_name) $(pv_value) + 58 + true + Arc + 33 0 + 3 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:16b7 - 0.0 - - 0 + + Default + + false + + + 2 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - 1 - 1 - true - - - - - 32 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 7 33 + 32 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 30 + false true - true - 39872d87:13e14015f61:16ba - - 30 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 50 - 0 - - false - 1 - - - - - 95 - 239 - - true - 1 - 39872d87:13e14015f61:16bb + 95 + + false - - 10 - Label - - true - true - false - - true - false - - - - Label - true - ORDER - - - - 50 - 0 - - 1 - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:16bc - false - + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false + ORDER + + true + 1 + true + Label + 50 + false + 0 + 0 + + + + false - - - - Label - true - SORTING - - - - 50 - 0 - - 1 - 1 - - 10 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:16bd - false - + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false + SORTING + + true + 1 + true + Label + 50 + false + 0 + 10 + + + + false - - - - Label - true - APERTURE - - - - 50 - 0 - - 1 + 0 + 1 + true + + + + + + + 10 1 - - 20 - true + Label + + + true + true + false + + + false + APERTURE + true + 1 + true + Label + 50 + false 0 + 20 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 80 + false true - true - 39872d87:13e14015f61:16dc - - 80 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 32 - 0 - - false - 1 - - - - - 40 - 425 - - false - true - 140 - 39872d87:13e14015f61:16dd - 290 - - 80 - true - Arc - false + 40 + + + false 255 - - true - true - true - - + true + false - - - - Arc + false + + + + 0 + 1 true - false + false - Default + Default - 24 + false + + + + 80 0 - false - 0 - - - 1 1 - - - - - 0 - $(pv_name) -$(pv_value) - 0 - - - false - true - 140 - 39872d87:13e14015f61:16de - 110 - - 80 - true Arc - false - 255 + + + true true true - + + 290 + $(pv_name) +$(pv_value) + 140 + true + Arc + 24 + 0 + 0 + + + + false + 255 + true + false - - - - Arc + false + + + + 0 + 1 true - false + false - Default + Default - 24 + false + + + + 80 0 - false - 0 - - - 1 1 - - - - - 0 + Arc + + + + + true + true + true + + + 110 $(pv_name) $(pv_value) + 140 + true + Arc + 24 8 + 0 - - true - 1 - 39872d87:13e14015f61:1615 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false - - - - - - - Label - true 2IDD X-Ray Microscope - - - - 605 - 0 - - 1 - - - - 1 - - 3 - true + true + 1 + true + Label + 605 + false 0 + 3 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1616 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 604 + 1 + 20 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 604 - 0 - 0 - - - 1 - 1 - true + false - - 20 - $(pv_name) -$(pv_value) - 1 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1618 - 0.0 - - 0 + + Default + + false + + + 56 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 162 - 0 - 0 - - 1 - 1 - true - - - - - 83 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 162 323 + 83 - - true - 1 - 39872d87:13e14015f61:1621 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + Zone Plate 2 + + true + 1 + true + Label + 130 + false + 160 + 140 + + + + false - - - - Label - true - Zone Plate 2 - - - - 130 - 0 - - 1 - 1 - - 140 - true - - 160 - - - true - 1 - 39872d87:13e14015f61:1624 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + OSA + + true + 1 + true + Label + 135 + false + 310 + 140 + + + + false - - - - Label - true - OSA - - - - 135 - 0 - - 1 - 1 - - 140 - true - - 310 - - - true - 1 - 39872d87:13e14015f61:1626 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true Sample - - - - 135 - 0 - - 1 - - - - 1 - - 140 - true + true + 1 + true + Label + 135 + false 460 + 140 - - true - true - 1 - false - 39872d87:13e14015f61:162a + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m20.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)m20.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 160 false - $(pv_name) -$(pv_value) 205 + 160 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:162b - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m20.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)m20.VAL - - - - false - 0 - - - false - - - - 0 - - 169 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 205 + 169 - + + + + $(P)m20.TWF + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:162c - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m20.TWF + + true true false - $(P)m20.TWF - - - - - - - Action Button - true + + + - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 275 160 + + - $(P)m20.TWF + $(P)m20.TWR 1 10 + - $(pv_name) -$(pv_value) - 275 - - + false + false + + + false - true - 39872d87:13e14015f61:162d - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m20.TWR + + true true false - $(P)m20.TWR - - - - - - - Action Button - true + + - - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 160 - - - $(P)m20.TWR - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 255 + 160 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1631 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m20.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m20.TWV - - - - false - 0 - - - false - - - - 0 - - 173 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 255 + 173 - - true - true - 1 - false - 39872d87:13e14015f61:1632 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m19.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)m19.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 190 false - $(pv_name) -$(pv_value) 205 + 190 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1633 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m19.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)m19.VAL - - - - false - 0 - - - false - - - - 0 - - 199 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 205 + 199 - - false - true - 39872d87:13e14015f61:1634 - - 15 - Action Button - false - - true - true - false - - $(P)m19.TWF - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 190 + $(P)m19.TWF 1 10 + - $(pv_name) -$(pv_value) - 275 - - + false + false + + + false - true - 39872d87:13e14015f61:1635 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m19.TWF + + true true false - $(P)m19.TWR - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - + + + + false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 275 190 + + $(P)m19.TWR 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 15 + + Action Button + 0 + $(P)m19.TWR + + + + true + true + false + + + + - + false $(pv_name) $(pv_value) + true + Action Button + 20 255 + 190 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:163b - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m19.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m19.TWV - - - - false - 0 - - - false - - - - 0 - - 203 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 255 + 203 - - true - 1 - 39872d87:13e14015f61:163c + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - Y - - - - 10 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 167 - true - - 330 - - - false - true - false - 39872d87:13e14015f61:163d - - 20 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 164 + + false + Y + + true + 1 + true + Label + 10 + false + 330 + 167 + + motorx.opi @@ -7142,7 +7125,7 @@ $(pv_value) true m12 - 0 + 1 Motor (small) @@ -7151,358 +7134,374 @@ $(pv_value) true m12 - 0 + 1 Motor (medium) - $(pv_name) -$(pv_value) - 310 - - - true - true - 1 - false - 39872d87:13e14015f61:163e - false - 0.0 - - 10 - Text Update + false + false + false + + + + false + + + + 6 + 1 + true + + Default + false + + + + 20 + + Menu Button + + + true true false - 1 - true + + false + $(pv_name) +$(pv_value) false - $(P)m12.RBV + true + Menu Button + 20 + 310 + 164 + + + + false + false + false - + - - - - Text Update - true - ###### - false - 0 - - - - 50 - 0 - - - 1 + true + 0 + 1 + true + + + + false + + + + 1 + 10 1 - - 160 - false + Text Update + 0 + true + $(P)m12.RBV + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 50 + false 355 + 160 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:163f - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m12.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)m12.VAL - - - - false - 0 - - - false - - - - 0 - - 168 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 355 + 168 - - false - true - 39872d87:13e14015f61:1640 - - 15 - Action Button - false - - true - true - false - - $(P)m12.TWF - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 160 + $(P)m12.TWF 1 10 + - $(pv_name) -$(pv_value) - 425 - - + false + false + + + false - true - 39872d87:13e14015f61:1641 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m12.TWF + + true true false - $(P)m12.TWR - - - - - - + + + + + false + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 425 160 + + $(P)m12.TWR 1 10 + - $(pv_name) -$(pv_value) - 405 - - - false - true - 1 - false - false - - 14 - false - true + false + false - + - Text Input + false + + + + 0 + 1 true - - + Default - 40 - 3 + false + + + + 15 + + Action Button + 0 + $(P)m12.TWR - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:1647 - 0.0 - Text Input + true true false - 1 - false - 0 - $(P)m12.TWV - - - - false - 0 - - - false - - - - 0 - - 173 + + + - + false $(pv_name) $(pv_value) + true + Action Button + 20 405 + 160 - - true - 1 - 39872d87:13e14015f61:1648 + + + false false - + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 14 - Label + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)m12.TWV + + false + 0.0 + true true false - true - false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 405 + 173 + + + + false - - - - Label - true - X - - - - 10 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 197 - true - - 330 - - - false - true - false - 39872d87:13e14015f61:1649 - - 20 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 194 + + false + X + + true + 1 + true + Label + 10 + false + 330 + 197 + + motorx.opi @@ -7510,7 +7509,7 @@ $(pv_value) true m11 - 0 + 1 Motor (small) @@ -7519,623 +7518,655 @@ $(pv_value) true m11 - 0 + 1 Motor (medium) + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 20 310 + 194 - - true - true - 1 - false - 39872d87:13e14015f61:164a + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m11.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)m11.RBV + 1 + true + Text Update + 50 + false + 355 + 190 + + + + false + false + false - + - - - - Text Update + false + + + + 3 + 1 + true - ###### - false - 0 - + - 50 - 0 - + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)m11.VAL - 1 - - - - 1 - - 190 - false + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 355 + 198 - - false - true - 1 - false - false - - 16 - false - true + + + + $(P)m11.TWF + 1 + 10 + + + + + false + false - + - Text Input + false + + + + 0 + 1 true - - + Default - 50 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:164b - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)m11.VAL + false - + - false - 0 - - - false - - - - 0 - - 198 - $(pv_name) -$(pv_value) - 355 - - - false - true - 39872d87:13e14015f61:164c - 15 + Action Button - false + 0 + $(P)m11.TWF + + true true false - $(P)m11.TWF - - - - - - - Action Button - true + + + - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 425 190 + + - $(P)m11.TWF + $(P)m11.TWR 1 10 + - $(pv_name) -$(pv_value) - 425 - - + false + false + + + false - true - 39872d87:13e14015f61:164d - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m11.TWR + + true true false - $(P)m11.TWR - - - - - - - Action Button - true + + - - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 190 - - - $(P)m11.TWR - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 405 + 190 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1653 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m11.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m11.TWV - - - - false - 0 - - - false - - - - 0 - - 203 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 405 + 203 - - true - true - 1 - false - 39872d87:13e14015f61:1656 + + + false false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)m18.RBV + false - + - - - - Text Update - true - ###### - false - 0 - - - - 50 - 0 - - - 1 + true + 0 + 1 + true + + + + false + + + + 1 + 10 1 - - 220 - false + Text Update + 0 + true + $(P)m18.RBV + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 50 + false 205 + 220 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1657 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m18.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)m18.VAL - - - - false - 0 - - - false - - - - 0 - - 229 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 205 + 229 - - false - true - 39872d87:13e14015f61:165b - - 15 - Action Button - false - - true - true - false - - $(P)m18.TWF - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 220 + $(P)m18.TWF 1 10 + - $(pv_name) -$(pv_value) - 275 - - + false + false + + + false - true - 39872d87:13e14015f61:165c - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m18.TWF + + true true false - $(P)m18.TWR - - - - - - + + + + + false + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 275 220 + + $(P)m18.TWR 1 10 + - $(pv_name) -$(pv_value) - 255 - - - false - true - 1 - false - false - - 14 - false - true + false + false - + - Text Input + false + + + + 0 + 1 true - - + Default - 40 - 3 + false + + + + 15 + + Action Button + 0 + $(P)m18.TWR - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:165d - 0.0 - Text Input + true true false - 1 - false - 0 - $(P)m18.TWV - - - - false - 0 - - - false - - - - 0 - - 233 + + + - + false $(pv_name) $(pv_value) + true + Action Button + 20 255 + 220 - - true - 1 - 39872d87:13e14015f61:165f + + + false false - + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 14 - Label + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)m18.TWV + + false + 0.0 + true true false - true - false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 255 + 233 + + + + false - - - - Label - true - Y - - - - 10 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 167 - true - - 480 - - - false - true - false - 39872d87:13e14015f61:1660 - - 20 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 164 + + false + Y + + true + 1 + true + Label + 10 + false + 480 + 167 + + motorx.opi @@ -8143,7 +8174,7 @@ $(pv_value) true m14 - 0 + 1 Motor (small) @@ -8152,302 +8183,312 @@ $(pv_value) true m14 - 0 + 1 Motor (medium) - $(pv_name) -$(pv_value) - 460 - - - true - true - 1 - false - 39872d87:13e14015f61:1661 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)m14.RBV + false + false + false - + - - - - Text Update + false + + + + 6 + 1 true - ###### - false - 0 - + Default - 50 - 0 - + false + + + + 20 + + Menu Button + - 1 - - - - 1 - - 160 - false + + + true + true + false + + + false $(pv_name) $(pv_value) - 505 - - - false + false true - 1 - false + Menu Button + 20 + 460 + 164 + + + + false false - - 16 - false - true + false - + - Text Input + true + + + + 0 + 1 true - - + - 50 - 3 + false + + + + 1 + 10 + 1 + Text Update + 0 + true + $(P)m14.RBV - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:1662 0.0 - Text Input + true true false - 1 - false - 0 - $(P)m14.VAL - - - - false - 0 - - - false - - - - 0 - - 168 + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 50 + false 505 + 160 - + + + false + false + false + + + false - true - 39872d87:13e14015f61:1668 - - 15 - Action Button + + + + 3 + 1 + + true + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)m14.VAL + + false + 0.0 + true true false - $(P)m14.TWF - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 160 + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 50 + 505 + 168 + + $(P)m14.TWF 1 10 + - $(pv_name) -$(pv_value) - 575 - - + false + false + + + false - true - 39872d87:13e14015f61:1669 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m14.TWF + + true true false - $(P)m14.TWR - - - - - - + + + + + false + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 575 160 + + $(P)m14.TWR 1 10 + - $(pv_name) -$(pv_value) - 555 - - - true - 1 - 39872d87:13e14015f61:166a - false - - 14 - Label - - true - true - false - - true - false + false + false - + - - - - Label - true - X - - - - 10 - 0 - - 1 + false - 0 - - 197 - true - - 480 - - - false - true - false - 39872d87:13e14015f61:166b - - 20 - Menu Button + 0 + 1 + true + + Default + false + + + + 15 + + Action Button + 0 + $(P)m14.TWR + + true true false - false - + + + - + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 555 + 160 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 20 - 6 - + + + + 14 + 0 + Label - - 1 - - - - 194 + + true + true + false + + + false + X + + true + 1 + true + Label + 10 + false + 480 + 197 + + motorx.opi @@ -8455,7 +8496,7 @@ $(pv_value) true m13 - 0 + 1 Motor (small) @@ -8464,373 +8505,396 @@ $(pv_value) true m13 - 0 + 1 Motor (medium) + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 20 460 + 194 - - true - true - 1 - false - 39872d87:13e14015f61:166c + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m13.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)m13.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 190 false - $(pv_name) -$(pv_value) 505 + 190 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:166d - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m13.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)m13.VAL - - - - false - 0 - - - false - - - - 0 - - 198 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 505 + 198 - + + + + $(P)m13.TWF + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1673 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m13.TWF + + true true false - $(P)m13.TWF - - - - - - - Action Button - true + + + - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 575 190 + + - $(P)m13.TWF + $(P)m13.TWR 1 10 + - $(pv_name) -$(pv_value) - 575 - - + false + false + + + false - true - 39872d87:13e14015f61:1674 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m13.TWR + + true true false - $(P)m13.TWR - - - - - - - Action Button - true + + - - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 190 - - - $(P)m13.TWR - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 555 + 190 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1675 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m14.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m14.TWV - - - - false - 0 - - - false - - - - 0 - - 173 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 555 + 173 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1676 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m13.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m13.TWV - - - - false - 0 - - - false - - - - 0 - - 203 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 555 + 203 - - false - true - false - 39872d87:13e14015f61:1677 - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 50 - 6 - - - - 1 - - - - 229 + 2iddMicroscope_full.opi @@ -8843,52 +8907,54 @@ $(pv_value) m31 m32 - 1 + 0 Microscope (full) - $(pv_name) -$(pv_value) - 552 - - + false + false + + + false - true - false - 39872d87:13e14015f61:1678 - - 20 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 164 + + + More + false + $(pv_name) +$(pv_value) + true + Action Button + 50 + 552 + 229 + + motorx.opi @@ -8896,7 +8962,7 @@ $(pv_value) true m20 - 0 + 1 Motor (small) @@ -8905,52 +8971,53 @@ $(pv_value) true m20 - 0 + 1 Motor (medium) - $(pv_name) -$(pv_value) - 160 - - - false - true false - 39872d87:13e14015f61:1679 - + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + + + true true false + + false + $(pv_name) +$(pv_value) false - - - - - - - + true Menu Button - true - false - - Default - 20 - 6 - - - - 1 - - - - 194 + 160 + 164 + + motorx.opi @@ -8958,7 +9025,7 @@ $(pv_value) true m19 - 0 + 1 Motor (small) @@ -8966,53 +9033,54 @@ $(pv_value) true m19 - - 0 - Motor (medium) - - - $(pv_name) -$(pv_value) - 160 - - - false - true + + 1 + Motor (medium) + + false - 39872d87:13e14015f61:167a - + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + + + true true false + + false + $(pv_name) +$(pv_value) false - - - - - - - + true Menu Button - true - false - - Default - 20 - 6 - - - - 1 - - - - 224 + 160 + 194 + + motorx.opi @@ -9020,7 +9088,7 @@ $(pv_value) true m18 - 0 + 1 Motor (small) @@ -9029,1011 +9097,1056 @@ $(pv_value) true m18 - 0 + 1 Motor (medium) - $(pv_name) -$(pv_value) - 160 - - - true - 1 - 39872d87:13e14015f61:167b - false - - 14 - Label - - true - true - false - - true - false + false + false + false - + - - - - Label + false + + + + 6 + 1 true - Y - + Default - 10 - 0 + false + + + + 20 + + Menu Button + + - 1 - - - - 0 - - 167 - true - - 180 - - - true - 1 - 39872d87:13e14015f61:167c - false - - 14 - Label true true false - true - false + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 20 + 160 + 224 + + + + false - - - - Label - true - X - - - - 10 - 0 - - 1 - 0 - - 197 - true - - 180 - - - true - 1 - 39872d87:13e14015f61:167d - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Y + + true + 1 + true + Label + 10 + false + 180 + 167 + + + + false - - - - Label - true - Z - - - - 10 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 227 - true - - 180 - - - true - 1 - 39872d87:13e14015f61:167f - false - - 20 Label + true true false - true + false + X + + true + 1 + true + Label + 10 + false + 180 + 197 + + + + false - - - - Label + + + + 0 + 1 true - Zone Plate 1 - + - 130 - 0 + + + + 14 + 0 + Label - 1 - - - - 1 - - 140 - true - - 10 - - - true - true - 1 - false - 39872d87:13e14015f61:1682 - false - 0.0 - - 10 - Text Update - false true true false - 1 - true - false - $(P)m4.RBV + + false + Z + + true + 1 + true + Label + 10 + false + 180 + 227 + + + + false - + - - - - Text Update - true - ###### - false - 0 - - - - 50 - 0 - - - 1 + 0 + 1 + true + + + + + + + 20 1 - - 160 - false - $(pv_name) -$(pv_value) - 55 - - - false - true - 39872d87:13e14015f61:1683 - - 15 - Action Button - false + Label + true true false - $(P)m4.TWF + + false + Zone Plate 1 + + true + 1 + true + Label + 130 + false + 10 + 140 + + + + false + false + false - + - - - - Action Button + true + + + + 0 + 1 true - + - false - Default + - 20 - 0 - 0 - - + false + + + + 1 + 10 + 1 + Text Update + 0 + true + $(P)m4.RBV - false - 1 - - - + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 50 + false + 55 160 + + $(P)m4.TWF 1 10 + - $(pv_name) -$(pv_value) - 125 - - + false + false + + + false - true - 39872d87:13e14015f61:1684 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m4.TWF + + true true false - $(P)m4.TWR - - - - - - + + + + + false + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 125 160 + + $(P)m4.TWR 1 10 + - $(pv_name) -$(pv_value) - 105 - - - false - true - 1 - false - false - - 16 - false - true + false + false - + - Text Input + false + + + + 0 + 1 true - - + Default - 50 - 3 + false + + + + 15 + + Action Button + 0 + $(P)m4.TWR - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:1688 - 0.0 - Text Input + true true false - 1 - false - 0 - $(P)m4.VAL - - - + + + - + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 105 + 160 + + + + false + false false - 0 - - - false + + + + false + 3 + 1 + + true + + + + false + + + + 1 + 16 0 - - 169 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)m4.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 55 + 169 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1689 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m4.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m4.TWV - - - - false - 0 - - - false - - - - 0 - - 173 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 105 + 173 - - true - true - 1 - false - 39872d87:13e14015f61:168a + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m3.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)m3.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 190 false - $(pv_name) -$(pv_value) 55 + 190 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:168b - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m3.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)m3.VAL - - - - false - 0 - - - false - - - - 0 - - 199 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 55 + 199 - - false - true - 39872d87:13e14015f61:168c - - 15 - Action Button - false - - true - true - false - - $(P)m3.TWF - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 190 + $(P)m3.TWF 1 10 + - $(pv_name) -$(pv_value) - 125 - - + false + false + + + false - true - 39872d87:13e14015f61:168d - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m3.TWF + + true true false - $(P)m3.TWR - - - - - - + + + + + false + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 125 190 + + $(P)m3.TWR 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 15 + + Action Button + 0 + $(P)m3.TWR + + + + true + true + false + + + + - + false $(pv_name) $(pv_value) + true + Action Button + 20 105 + 190 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1693 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m3.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m3.TWV - - - - false - 0 - - - false - - - - 0 - - 203 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 105 + 203 - - true - true - 1 - false - 39872d87:13e14015f61:1696 + + + false false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)m22.RBV + false - + - - - - Text Update - true - ###### - false - 0 - - - - 50 - 0 - - - 1 + true - 1 - - 220 - false - $(pv_name) -$(pv_value) - 55 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input + 0 + 1 true - - + - 50 - 3 + false + + + + 1 + 10 + 1 + Text Update + 0 + true + $(P)m22.RBV - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:1697 0.0 - Text Input + true true false - 1 - false - 0 - $(P)m22.VAL - - - - false - 0 - - - false - - - - 0 - - 229 + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 50 + false 55 + 220 - + + + false + false + false + + + false - true - 39872d87:13e14015f61:1698 - - 15 - Action Button + + + + 3 + 1 + + true + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)m22.VAL + + false + 0.0 + true true false - $(P)m22.TWF - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 220 + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 50 + 55 + 229 + + $(P)m22.TWF 1 10 + - $(pv_name) -$(pv_value) - 125 - - + false + false + + + false - true - 39872d87:13e14015f61:1699 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m22.TWF + + true true false - $(P)m22.TWR - - - - - - + + + + + false + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 125 220 + + $(P)m22.TWR 1 10 + - $(pv_name) -$(pv_value) - 105 - - - false - true - 1 - false - false - - 14 - false - true + false + false - + - Text Input + false + + + + 0 + 1 true - - + Default - 40 - 3 + false + + + + 15 + + Action Button + 0 + $(P)m22.TWR - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:169d - 0.0 - Text Input + true true false - 1 - false - 0 - $(P)m4.TWV - - - - false - 0 - - - false - - - - 0 - - 233 + + + - + false $(pv_name) $(pv_value) + true + Action Button + 20 105 + 220 - + + + false + false + false + + + false - true - false - 39872d87:13e14015f61:169f - - 20 - Menu Button + + + + 3 + 1 + + true + + + false + + + + 1 + 14 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)m4.TWV + + false + 0.0 + true true false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 164 + true + Text Input + 40 + 105 + 233 + + motorx.opi @@ -10041,7 +10154,7 @@ $(pv_value) true m4 - 0 + 1 Motor (small) @@ -10050,52 +10163,53 @@ $(pv_value) true m4 - 0 + 1 Motor (medium) - $(pv_name) -$(pv_value) - 10 - - - false - true false - 39872d87:13e14015f61:16a0 - + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + + + true true false + + false + $(pv_name) +$(pv_value) false - - - - - - - + true Menu Button - true - false - - Default - 20 - 6 - - - - 1 - - - - 194 + 10 + 164 + + motorx.opi @@ -10103,7 +10217,7 @@ $(pv_value) true m3 - 0 + 1 Motor (small) @@ -10112,52 +10226,53 @@ $(pv_value) true m3 - 0 + 1 Motor (medium) - $(pv_name) -$(pv_value) - 10 - - - false - true false - 39872d87:13e14015f61:16a1 - + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + + + true true false + + false + $(pv_name) +$(pv_value) false - - - - - - - + true Menu Button - true - false - - Default - 20 - 6 - - - - 1 - - - - 224 + 10 + 194 + + motorx.opi @@ -10165,7 +10280,7 @@ $(pv_value) true m22 - 0 + 1 Motor (small) @@ -10174,654 +10289,653 @@ $(pv_value) true m22 - 0 + 1 Motor (medium) + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 20 10 + 224 - - true - 1 - 39872d87:13e14015f61:16a2 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Y + + true + 1 + true + Label + 10 + false + 30 + 167 + + + + false - - - - Label - true - Y - - - - 10 - 0 - - 1 - 0 - - 167 - true - - 30 - - - true - 1 - 39872d87:13e14015f61:16a3 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + X + + true + 1 + true + Label + 10 + false + 30 + 197 + + + + false - - - - Label - true - X - - - - 10 - 0 - - 1 - 0 - - 197 - true - - 30 - - - true - 1 - 39872d87:13e14015f61:16a4 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true Z - - - + + true + 1 + true + Label 10 - 0 - - 1 + false + 30 + 227 + + + + + $(P)allstop.VAL + 1 + 10 + + + + + false + false + + + + false - 0 - - 227 - true - - 30 - - - false - true - 39872d87:13e14015f61:16a5 - + 0 + 1 + true + + Default + + false + + + 30 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)allstop.VAL - - - - - - - Action Button - true + + All Stop - false - - Default - - 100 - 0 - 0 - - - false - 1 - - - - 225 - - - $(P)allstop.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 100 400 + 225 - + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 25 + true - 39872d87:13e14015f61:16a7 - - - - - 25 - true + 0 + 0 Ellipse - false - 255 + + + true true true + + $(pv_name) +$(pv_value) false - + true + Ellipse + 10 + 262 + 68 + + + + false + 255 + true + 20 + 0 + false - - - - Ellipse - true - - - - false - - Default - - 10 - 0 - 0 - - - 1 - 0 - true + false - - 68 - $(pv_name) -$(pv_value) - 262 - false - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:16a8 - 0.0 - - 0 + + Default + + false + + + 101 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 301 - 0 - 0 - - 1 - 1 - true - - - - - 30 - $(pv_name) -$(pv_value) - 145 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:16a9 0.0 - - 0 - 101 - true - Polyline - false - 255 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 301 + 145 + 30 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 301 - 0 - 0 - - - 1 - 1 - true + false - - 30 - $(pv_name) -$(pv_value) - 145 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:16b8 - 0.0 - - 0 - 1 - true - Polyline + + Default + false - 255 + + + + 101 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 301 + 145 + 30 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 126 - 0 - 0 - - - 1 - 1 - true + false - - 30 - $(pv_name) -$(pv_value) - 20 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:16b9 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 126 + 20 + 30 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 126 - 0 - 0 - - - 1 - 1 - true + false - - 130 - $(pv_name) -$(pv_value) - 20 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:16be - 0.0 - - 0 - 89 - true - Polyline + + Default + false - 255 + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 126 + 20 + 130 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 89 - 0 - 0 - - - 1 - 1 - true + false - - 30 - $(pv_name) -$(pv_value) - 145 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:16bf - 0.0 - - 0 + + Default + + false + + + 89 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 89 + 145 + 30 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 89 + false + + + + 89 + true 0 - 0 - - - 1 1 - true - - - - - 41 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 89 146 + 41 - - true - 1 - 39872d87:13e14015f61:16c2 + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - X - - - - 10 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 97 - true - - 480 - - - false - true - false - 39872d87:13e14015f61:16c3 - - 20 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 94 + + false + X + + true + 1 + true + Label + 10 + false + 480 + 97 + + motorx.opi @@ -10829,7 +10943,7 @@ $(pv_value) true m23 - 0 + 1 Motor (small) @@ -10838,343 +10952,352 @@ $(pv_value) true m23 - 0 + 1 Motor (medium) + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 20 460 + 94 - - true - true - 1 - false - 39872d87:13e14015f61:16c4 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m23.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)m23.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 90 false - $(pv_name) -$(pv_value) 505 + 90 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:16c5 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m23.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)m23.VAL - - - - false - 0 - - - false - - - - 0 - - 98 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 505 + 98 - - true - 1 - 39872d87:13e14015f61:16cb + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - Camera - - - - 135 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 1 - - 40 - true - - 460 - - - false - true - 39872d87:13e14015f61:16cd - - 15 - Action Button - false + Label + true true false - $(P)m23.TWF - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 90 + + false + Camera + + true + 1 + true + Label + 135 + false + 460 + 40 + + $(P)m23.TWF 1 10 + - $(pv_name) -$(pv_value) - 575 - - + false + false + + + false - true - 39872d87:13e14015f61:16ce - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m23.TWF + + true true false - $(P)m23.TWR - - - - - - + + + + + false + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 575 90 + + $(P)m23.TWR 1 10 + - $(pv_name) -$(pv_value) - 555 - - - true - 1 - 39872d87:13e14015f61:16cf - false - - 14 - Label - - true - true - false - - true - false + false + false - + - - - - Label - true - Y - - - - 10 - 0 - - 1 + false - 0 - - 67 - true - - 480 - - - false - true - false - 39872d87:13e14015f61:16d0 - - 20 - Menu Button + 0 + 1 + true + + Default + false + + + + 15 + + Action Button + 0 + $(P)m23.TWR + + true true false - false - + + + - + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 555 + 90 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 20 - 6 - + + + + 14 + 0 + Label - - 1 - - - - 64 + + true + true + false + + + false + Y + + true + 1 + true + Label + 10 + false + 480 + 67 + + motorx.opi @@ -11182,7 +11305,7 @@ $(pv_value) true m24 - 0 + 1 Motor (small) @@ -11191,388 +11314,448 @@ $(pv_value) true m24 - 0 + 1 Motor (medium) + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 20 460 + 64 - - true - true - 1 - false - 39872d87:13e14015f61:16d1 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m24.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)m24.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 60 false - $(pv_name) -$(pv_value) 505 + 60 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:16d2 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m24.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)m24.VAL - - - - false - 0 - - - false - - - - 0 - - 68 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 505 + 68 - - false - true - 39872d87:13e14015f61:16d8 - - 15 - Action Button - false - - true - true - false - - $(P)m24.TWF - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 60 + $(P)m24.TWF 1 10 + - $(pv_name) -$(pv_value) - 575 - - - false - true - 39872d87:13e14015f61:16d9 - - 15 - Action Button - false - - true - true - false - - $(P)m24.TWR + false + false - + - - - - Action Button + false + + + + 0 + 1 true - - - false - Default + Default - 20 - 0 - 0 + false + + + + 15 - + Action Button + 0 + $(P)m24.TWF + + + true + true + false + + + + + false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 575 60 + + $(P)m24.TWR 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 15 + + Action Button + 0 + $(P)m24.TWR + + + + true + true + false + + + + - + false $(pv_name) $(pv_value) + true + Action Button + 20 555 + 60 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:16da - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m24.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m24.TWV - - - - false - 0 - - - false - - - - 0 - - 73 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 555 + 73 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:16db - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m23.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m23.TWV - - - - false - 0 - - - false - - - - 0 - - 103 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 555 + 103 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:16df - 0.0 - - 0 + + Default + + false + + + 38 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 26 - 0 - 0 - - 1 - 1 - true - - - - - 102 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 26 295 + 102 - \ No newline at end of file + diff --git a/opticsApp/op/opi/2iddMicroscope_full.opi b/opticsApp/op/opi/autoconvert/2iddMicroscope_full.opi similarity index 86% rename from opticsApp/op/opi/2iddMicroscope_full.opi rename to opticsApp/op/opi/autoconvert/2iddMicroscope_full.opi index de90470..512ebcd 100644 --- a/opticsApp/op/opi/2iddMicroscope_full.opi +++ b/opticsApp/op/opi/autoconvert/2iddMicroscope_full.opi @@ -1,420 +1,418 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 400 true - 39872d87:13e14015f61:17af - 3.1.2.20120830 + 2iddMicroscope_full + + true + true + false true - 400 - 2iddMicroscope_full false - false - - - - - - Display - true 730 - - true - 5 - - false - -1 - -1 - - - 203 18 - + 203 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 20 + true - 39872d87:13e14015f61:17b1 - - - - - 20 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 760 + 0 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 760 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 100.0 + 100 + true - 39872d87:13e14015f61:17b4 - - - - - 100 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 60 + 360 + 30 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 60 - 0 - 0 - - - 1 - 0 - true - - - - - 30 - $(pv_name) -$(pv_value) - 360 + false + + + false - - - false - true - 100.0 + 35 + true - 39872d87:13e14015f61:17d6 - - - - - 35 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 715 + 5 + 360 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 715 + false + + + + false + 35 + true + + + 0 - 0 - + 2 + Rectangle + - 1 - 0 - true - - - - - 360 - $(pv_name) -$(pv_value) - 5 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:17d7 - - - - - 35 - true - Rectangle - false - 255 + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 715 + 5 + 360 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 715 - 0 - 0 - - - 1 - 2 - true - - - - - 360 - $(pv_name) -$(pv_value) - 5 + false + + + false - - - false - true - 100.0 + 200 + true - 39872d87:13e14015f61:17eb - - - - - 200 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 150 + 5 + 140 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 150 - 0 - 0 - - - 1 - 0 - true - - - - - 140 - $(pv_name) -$(pv_value) - 5 + false + + + false - - - false - true - 0.0 + 200 + true - + - 39872d87:13e14015f61:17ec - - - - - 200 - true + 0 + 1 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - - - - - - - + true Rectangle - true - - - - false - - Default - 150 - 0 - 0 - - - 1 - 1 - true - - - - - 140 - $(pv_name) -$(pv_value) 5 - false + 140 - - false - true - 100.0 - - - - 39872d87:13e14015f61:17ee - - - - - 5 - true - Rectangle - false + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -426,62 +424,62 @@ $(pv_value) $(P)m22.HLS - - 1 - 0 - true - - - - - 315 - $(pv_name) -$(pv_value) - 45 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:17ef - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 45 + 315 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -493,62 +491,62 @@ $(pv_value) $(P)m22.LLS - - 1 - 0 - true - - - - - 328 - $(pv_name) -$(pv_value) - 45 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:17f4 - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 45 + 328 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -560,62 +558,62 @@ $(pv_value) $(P)m22_able.VAL - - 1 - 0 - true - - - - - 315 - $(pv_name) -$(pv_value) - 55 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:17f5 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 55 + 315 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -627,62 +625,62 @@ $(pv_value) $(P)m22.LVIO - - 1 - 0 - true - - - - - 320 - $(pv_name) -$(pv_value) - 50 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:17f6 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 50 + 320 + + + + false + 255 + true + false - - - - Rectangle - true - + - - false - - Default + + false + + + + 0 + 1 + true + + + + 100.0 + + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -694,62 +692,62 @@ $(pv_value) $(P)m22.DMOV - - 1 - 0 - true - - - - - 320 - $(pv_name) -$(pv_value) - 45 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:17f8 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 45 + 320 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -761,62 +759,62 @@ $(pv_value) $(P)m4.HLS - - 1 - 0 - true - - - - - 165 - $(pv_name) -$(pv_value) - 45 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:17f9 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 45 + 165 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -828,62 +826,62 @@ $(pv_value) $(P)m4.LLS - - 1 - 0 - true - - - - - 178 - $(pv_name) -$(pv_value) - 45 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:17fd - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 45 + 178 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -895,62 +893,62 @@ $(pv_value) $(P)m4_able.VAL - - 1 - 0 - true - - - - - 165 - $(pv_name) -$(pv_value) - 55 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:17fe - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 55 + 165 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -962,62 +960,62 @@ $(pv_value) $(P)m4.LVIO - - 1 - 0 - true - - - - - 170 - $(pv_name) -$(pv_value) - 50 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:17ff - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 50 + 170 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1029,62 +1027,62 @@ $(pv_value) $(P)m4.DMOV - - 1 - 0 - true - - - - - 170 - $(pv_name) -$(pv_value) - 45 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1806 - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 45 + 170 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1096,62 +1094,62 @@ $(pv_value) $(P)m3_able.VAL - - 1 - 0 - true - - - - - 195 - $(pv_name) -$(pv_value) - 55 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1807 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 55 + 195 + + + + false + 255 + true + false - - - - Rectangle - true - + - - false + + false + + + + 0 + 1 + true + + + + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1163,62 +1161,62 @@ $(pv_value) $(P)m3.LLS - - 1 - 0 - true - - - - - 208 - $(pv_name) -$(pv_value) - 45 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1808 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 45 + 208 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1230,62 +1228,62 @@ $(pv_value) $(P)m3.LVIO - - 1 - 0 - true - - - - - 200 - $(pv_name) -$(pv_value) - 50 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1809 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 50 + 200 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1297,62 +1295,62 @@ $(pv_value) $(P)m3.DMOV - - 1 - 0 - true - - - - - 200 - $(pv_name) -$(pv_value) - 45 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:180a - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 45 + 200 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1364,62 +1362,62 @@ $(pv_value) $(P)m3.HLS - - 1 - 0 - true - - - - - 195 - $(pv_name) -$(pv_value) - 45 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1810 - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 45 + 195 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1431,62 +1429,62 @@ $(pv_value) $(P)m0_able.VAL - - 1 - 0 - true - - - - - 225 - $(pv_name) -$(pv_value) - 55 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1811 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 55 + 225 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1498,62 +1496,62 @@ $(pv_value) $(P)m0.LLS - - 1 - 0 - true - - - - - 238 - $(pv_name) -$(pv_value) - 45 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1812 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 45 + 238 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1565,62 +1563,62 @@ $(pv_value) $(P)m0.LVIO - - 1 - 0 - true - - - - - 230 - $(pv_name) -$(pv_value) - 50 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1813 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 50 + 230 + + + + false + 255 + true + false - - - - Rectangle - true - + + + + false + + + + 0 + 1 + true + - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1632,62 +1630,62 @@ $(pv_value) $(P)m0.DMOV - - 1 - 0 - true - - - - - 230 - $(pv_name) -$(pv_value) - 45 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1814 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 45 + 230 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1699,62 +1697,62 @@ $(pv_value) $(P)m0.HLS - - 1 - 0 - true - - - - - 225 - $(pv_name) -$(pv_value) - 45 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:181a - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 45 + 225 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1766,62 +1764,62 @@ $(pv_value) $(P)m0_able.VAL - - 1 - 0 - true - - - - - 255 - $(pv_name) -$(pv_value) - 55 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:181b - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 55 + 255 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1833,62 +1831,62 @@ $(pv_value) $(P)m0.LLS - - 1 - 0 - true - - - - - 268 - $(pv_name) -$(pv_value) - 45 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:181c - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 45 + 268 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1900,62 +1898,62 @@ $(pv_value) $(P)m0.LVIO - - 1 - 0 - true - - - - - 260 - $(pv_name) -$(pv_value) - 50 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:181d - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 50 + 260 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1967,62 +1965,62 @@ $(pv_value) $(P)m0.DMOV - - 1 - 0 - true - - - - - 260 - $(pv_name) -$(pv_value) - 45 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:181e - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 45 + 260 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -2034,62 +2032,62 @@ $(pv_value) $(P)m0.HLS - - 1 - 0 - true - - - - - 255 - $(pv_name) -$(pv_value) - 45 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1824 - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 45 + 255 + + + + false + 255 + true + false - - - - Rectangle - true - + - - false + + false + + + + 0 + 1 + true + + + + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -2101,62 +2099,62 @@ $(pv_value) $(P)m0_able.VAL - - 1 - 0 - true - - - - - 285 - $(pv_name) -$(pv_value) - 55 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1825 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 55 + 285 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -2168,62 +2166,62 @@ $(pv_value) $(P)m0.LLS - - 1 - 0 - true - - - - - 298 - $(pv_name) -$(pv_value) - 45 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1826 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 45 + 298 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -2235,62 +2233,62 @@ $(pv_value) $(P)m0.LVIO - - 1 - 0 - true - - - - - 290 - $(pv_name) -$(pv_value) - 50 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1827 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 50 + 290 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -2302,62 +2300,62 @@ $(pv_value) $(P)m0.DMOV - - 1 - 0 - true - - - - - 290 - $(pv_name) -$(pv_value) - 45 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1828 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 45 + 290 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -2369,404 +2367,404 @@ $(pv_value) $(P)m0.HLS - - 1 - 0 - true - - - - - 285 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 10 45 - false + 285 - + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 200 + true - 39872d87:13e14015f61:183f - - - - - 200 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 150 + 160 + 140 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 150 - 0 - 0 - - - 1 - 0 - true - - - - - 140 - $(pv_name) -$(pv_value) - 160 + false + + + false - - - false - true - 0.0 + 200 + true - + - 39872d87:13e14015f61:1840 - - - - - 200 - true + 0 + 1 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 150 + 160 + 140 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 150 - 0 - 0 - - - 1 - 1 - true - - - - - 140 - $(pv_name) -$(pv_value) - 160 + false + + + false - - - false - true - 100.0 + 80 + true - 39872d87:13e14015f61:1842 - - - - - 80 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 145 + 315 + 140 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 145 - 0 - 0 - - - 1 - 0 - true - - - - - 140 - $(pv_name) -$(pv_value) - 315 + false + + + false - - - false - true - 0.0 + 80 + true - + - 39872d87:13e14015f61:1843 - - - - - 80 - true + 0 + 1 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 145 + 315 + 140 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 145 - 0 - 0 - - - 1 - 1 - true - - - - - 140 - $(pv_name) -$(pv_value) - 315 + false + + + false - - - false - true - 100.0 + 110 + true - 39872d87:13e14015f61:1845 - - - - - 110 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 145 + 465 + 140 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 145 - 0 - 0 - - - 1 - 0 - true - - - - - 140 - $(pv_name) -$(pv_value) - 465 + false + + + false - - - false - true - 0.0 + 110 + true - + - 39872d87:13e14015f61:1847 - - - - - 110 - true + 0 + 1 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 145 + 465 + 140 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 145 - 0 - 0 - - - 1 - 1 - true - - - - - 140 - $(pv_name) -$(pv_value) - 465 + false + + + false - - - false - true - 100.0 + 18 + true - 39872d87:13e14015f61:184c - - - - - 18 - true + 0 + 0 Rectangle - false - 255 - - true - true - false - - false - - - - - - - Rectangle - true - - - - false - - Default - - 5 - 0 - 0 + @@ -2778,62 +2776,62 @@ $(pv_value) $(P)m14_able.VAL - - 1 - 0 - true - - - - - 195 - $(pv_name) -$(pv_value) - 510 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:184d - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 510 + 195 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -2845,62 +2843,62 @@ $(pv_value) $(P)m14.LLS - - 1 - 0 - true - - - - - 208 - $(pv_name) -$(pv_value) - 500 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:184e - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 500 + 208 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -2912,62 +2910,62 @@ $(pv_value) $(P)m14.LVIO - - 1 - 0 - true - - - - - 200 - $(pv_name) -$(pv_value) - 505 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:184f - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 505 + 200 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -2979,62 +2977,62 @@ $(pv_value) $(P)m14.DMOV - - 1 - 0 - true - - - - - 200 - $(pv_name) -$(pv_value) - 500 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1850 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 500 + 200 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -3046,62 +3044,62 @@ $(pv_value) $(P)m14.HLS - - 1 - 0 - true - - - - - 195 - $(pv_name) -$(pv_value) - 500 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1851 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 500 + 195 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -3113,62 +3111,62 @@ $(pv_value) $(P)m20.HLS - - 1 - 0 - true - - - - - 165 - $(pv_name) -$(pv_value) - 200 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1852 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 200 + 165 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -3180,62 +3178,62 @@ $(pv_value) $(P)m20.LLS - - 1 - 0 - true - - - - - 178 - $(pv_name) -$(pv_value) - 200 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1857 - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 200 + 178 + + + + false + 255 + true + false - - - - Rectangle - true - + + + + false + + + + 0 + 1 + true + - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -3247,62 +3245,62 @@ $(pv_value) $(P)m20_able.VAL - - 1 - 0 - true - - - - - 165 - $(pv_name) -$(pv_value) - 210 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1858 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 210 + 165 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -3314,62 +3312,62 @@ $(pv_value) $(P)m20.LVIO - - 1 - 0 - true - - - - - 170 - $(pv_name) -$(pv_value) - 205 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1859 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 205 + 170 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -3381,62 +3379,62 @@ $(pv_value) $(P)m20.DMOV - - 1 - 0 - true - - - - - 170 - $(pv_name) -$(pv_value) - 200 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:185f - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 200 + 170 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -3448,62 +3446,62 @@ $(pv_value) $(P)m19_able.VAL - - 1 - 0 - true - - - - - 195 - $(pv_name) -$(pv_value) - 210 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1860 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 210 + 195 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -3515,62 +3513,62 @@ $(pv_value) $(P)m19.LLS - - 1 - 0 - true - - - - - 208 - $(pv_name) -$(pv_value) - 200 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1861 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 200 + 208 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -3582,62 +3580,62 @@ $(pv_value) $(P)m19.LVIO - - 1 - 0 - true - - - - - 200 - $(pv_name) -$(pv_value) - 205 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1862 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 205 + 200 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -3649,62 +3647,62 @@ $(pv_value) $(P)m19.DMOV - - 1 - 0 - true - - - - - 200 - $(pv_name) -$(pv_value) - 200 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1863 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 200 + 200 + + + + false + 255 + true + false - - - - Rectangle - true - + - - false + + false + + + + 0 + 1 + true + + + + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -3716,62 +3714,62 @@ $(pv_value) $(P)m19.HLS - - 1 - 0 - true - - - - - 195 - $(pv_name) -$(pv_value) - 200 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1869 - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 200 + 195 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -3783,62 +3781,62 @@ $(pv_value) $(P)m0_able.VAL - - 1 - 0 - true - - - - - 225 - $(pv_name) -$(pv_value) - 210 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:186a - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 210 + 225 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -3850,62 +3848,62 @@ $(pv_value) $(P)m0.LLS - - 1 - 0 - true - - - - - 238 - $(pv_name) -$(pv_value) - 200 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:186b - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 200 + 238 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -3917,62 +3915,62 @@ $(pv_value) $(P)m0.LVIO - - 1 - 0 - true - - - - - 230 - $(pv_name) -$(pv_value) - 205 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:186c - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 205 + 230 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -3984,62 +3982,62 @@ $(pv_value) $(P)m0.DMOV - - 1 - 0 - true - - - - - 230 - $(pv_name) -$(pv_value) - 200 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:186d - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 200 + 230 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -4051,62 +4049,62 @@ $(pv_value) $(P)m0.HLS - - 1 - 0 - true - - - - - 225 - $(pv_name) -$(pv_value) - 200 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:186f - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 200 + 225 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -4118,62 +4116,62 @@ $(pv_value) $(P)m18.HLS - - 1 - 0 - true - - - - - 315 - $(pv_name) -$(pv_value) - 200 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1870 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 200 + 315 + + + + false + 255 + true + false - - - - Rectangle - true - + + + + false + + + + 0 + 1 + true + - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -4185,62 +4183,62 @@ $(pv_value) $(P)m18.LLS - - 1 - 0 - true - - - - - 328 - $(pv_name) -$(pv_value) - 200 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1873 - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 200 + 328 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -4252,62 +4250,62 @@ $(pv_value) $(P)m18_able.VAL - - 1 - 0 - true - - - - - 315 - $(pv_name) -$(pv_value) - 210 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1874 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 210 + 315 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -4319,62 +4317,62 @@ $(pv_value) $(P)m18.LVIO - - 1 - 0 - true - - - - - 320 - $(pv_name) -$(pv_value) - 205 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1875 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 205 + 320 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -4386,62 +4384,62 @@ $(pv_value) $(P)m18.DMOV - - 1 - 0 - true - - - - - 320 - $(pv_name) -$(pv_value) - 200 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:187b - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 200 + 320 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -4453,62 +4451,62 @@ $(pv_value) $(P)m0_able.VAL - - 1 - 0 - true - - - - - 285 - $(pv_name) -$(pv_value) - 210 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:187c - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 210 + 285 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -4520,62 +4518,62 @@ $(pv_value) $(P)m0.LLS - - 1 - 0 - true - - - - - 298 - $(pv_name) -$(pv_value) - 200 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:187d - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 200 + 298 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -4587,62 +4585,62 @@ $(pv_value) $(P)m0.LVIO - - 1 - 0 - true - - - - - 290 - $(pv_name) -$(pv_value) - 205 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:187e - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 205 + 290 + + + + false + 255 + true + false - - - - Rectangle - true - + - - false + + false + + + + 0 + 1 + true + + + + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -4654,62 +4652,62 @@ $(pv_value) $(P)m0.DMOV - - 1 - 0 - true - - - - - 290 - $(pv_name) -$(pv_value) - 200 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:187f - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 200 + 290 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -4721,62 +4719,62 @@ $(pv_value) $(P)m0.HLS - - 1 - 0 - true - - - - - 285 - $(pv_name) -$(pv_value) - 200 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1887 - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 200 + 285 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -4788,62 +4786,62 @@ $(pv_value) $(P)m0_able.VAL - - 1 - 0 - true - - - - - 255 - $(pv_name) -$(pv_value) - 210 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1888 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 210 + 255 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -4855,62 +4853,62 @@ $(pv_value) $(P)m0.LLS - - 1 - 0 - true - - - - - 268 - $(pv_name) -$(pv_value) - 200 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1889 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 200 + 268 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -4922,62 +4920,62 @@ $(pv_value) $(P)m0.LVIO - - 1 - 0 - true - - - - - 260 - $(pv_name) -$(pv_value) - 205 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:188a - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 205 + 260 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -4989,62 +4987,62 @@ $(pv_value) $(P)m0.DMOV - - 1 - 0 - true - - - - - 260 - $(pv_name) -$(pv_value) - 200 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:188b - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 200 + 260 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -5056,62 +5054,62 @@ $(pv_value) $(P)m0.HLS - - 1 - 0 - true - - - - - 255 - $(pv_name) -$(pv_value) - 200 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1893 - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 200 + 255 + + + + false + 255 + true + false - - - - Rectangle - true - + - - false + + false + + + + 0 + 1 + true + + + + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -5123,62 +5121,62 @@ $(pv_value) $(P)m12_able.VAL - - 1 - 0 - true - - - - - 165 - $(pv_name) -$(pv_value) - 360 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1894 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 360 + 165 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -5190,62 +5188,62 @@ $(pv_value) $(P)m12.LLS - - 1 - 0 - true - - - - - 178 - $(pv_name) -$(pv_value) - 350 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1895 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 350 + 178 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -5257,62 +5255,62 @@ $(pv_value) $(P)m12.LVIO - - 1 - 0 - true - - - - - 170 - $(pv_name) -$(pv_value) - 355 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1896 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 355 + 170 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -5324,62 +5322,62 @@ $(pv_value) $(P)m12.DMOV - - 1 - 0 - true - - - - - 170 - $(pv_name) -$(pv_value) - 350 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1897 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 350 + 170 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -5391,62 +5389,62 @@ $(pv_value) $(P)m12.HLS - - 1 - 0 - true - - - - - 165 - $(pv_name) -$(pv_value) - 350 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:189f - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 350 + 165 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -5458,62 +5456,62 @@ $(pv_value) $(P)m11_able.VAL - - 1 - 0 - true - - - - - 195 - $(pv_name) -$(pv_value) - 360 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:18a0 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 360 + 195 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -5525,62 +5523,62 @@ $(pv_value) $(P)m11.LLS - - 1 - 0 - true - - - - - 208 - $(pv_name) -$(pv_value) - 350 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:18a1 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 350 + 208 + + + + false + 255 + true + false - - - - Rectangle - true - + + + + false + + + + 0 + 1 + true + - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -5592,62 +5590,62 @@ $(pv_value) $(P)m11.LVIO - - 1 - 0 - true - - - - - 200 - $(pv_name) -$(pv_value) - 355 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:18a2 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 355 + 200 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -5659,62 +5657,62 @@ $(pv_value) $(P)m11.DMOV - - 1 - 0 - true - - - - - 200 - $(pv_name) -$(pv_value) - 350 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:18a3 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 350 + 200 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -5726,62 +5724,62 @@ $(pv_value) $(P)m11.HLS - - 1 - 0 - true - - - - - 195 - $(pv_name) -$(pv_value) - 350 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:18ab - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 350 + 195 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -5793,62 +5791,62 @@ $(pv_value) $(P)m0_able.VAL - - 1 - 0 - true - - - - - 165 - $(pv_name) -$(pv_value) - 510 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:18ac - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 510 + 165 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -5860,62 +5858,62 @@ $(pv_value) $(P)m0.LLS - - 1 - 0 - true - - - - - 178 - $(pv_name) -$(pv_value) - 500 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:18ad - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 500 + 178 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -5927,62 +5925,62 @@ $(pv_value) $(P)m0.LVIO - - 1 - 0 - true - - - - - 170 - $(pv_name) -$(pv_value) - 505 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:18ae - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 505 + 170 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -5994,62 +5992,62 @@ $(pv_value) $(P)m0.DMOV - - 1 - 0 - true - - - - - 170 - $(pv_name) -$(pv_value) - 500 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:18af - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 500 + 170 + + + + false + 255 + true + false - - - - Rectangle - true - + - - false + + false + + + + 0 + 1 + true + + + + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -6061,62 +6059,62 @@ $(pv_value) $(P)m0.HLS - - 1 - 0 - true - - - - - 165 - $(pv_name) -$(pv_value) - 500 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:18b6 - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 500 + 165 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -6128,62 +6126,62 @@ $(pv_value) $(P)m13_able.VAL - - 1 - 0 - true - - - - - 225 - $(pv_name) -$(pv_value) - 510 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:18b7 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 510 + 225 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -6195,62 +6193,62 @@ $(pv_value) $(P)m13.LLS - - 1 - 0 - true - - - - - 238 - $(pv_name) -$(pv_value) - 500 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:18b8 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 500 + 238 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -6262,62 +6260,62 @@ $(pv_value) $(P)m13.LVIO - - 1 - 0 - true - - - - - 230 - $(pv_name) -$(pv_value) - 505 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:18b9 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 505 + 230 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -6329,62 +6327,62 @@ $(pv_value) $(P)m13.DMOV - - 1 - 0 - true - - - - - 230 - $(pv_name) -$(pv_value) - 500 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:18ba - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 500 + 230 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -6396,290 +6394,290 @@ $(pv_value) $(P)m13.HLS - - 1 - 0 - true - - - - - 225 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 10 500 - false + 225 - + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 19 + true - 39872d87:13e14015f61:18cf - - - - - 19 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 60 + 620 + 21 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 60 + false + + + + false + 19 + true + + + 0 - 0 - + 1 + Rectangle + - 1 - 0 - true - - - - - 21 + + + true + true + false + + $(pv_name) $(pv_value) - 620 - false - - - false + true true - 0.0 - - - - 39872d87:13e14015f61:18d0 - - - - - 19 - true - Rectangle - false + Rectangle + 60 + 620 + 21 + + + + false 255 - - true - true - false - - true - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 60 - 0 - 0 - - - 1 - 1 - true - - - - - 21 - $(pv_name) -$(pv_value) - 620 + false + + + false - - - false - true - 100.0 + 110 + true - 39872d87:13e14015f61:18de - - - - - 110 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 315 + 405 + 250 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 315 - 0 - 0 - - - 1 - 0 - true - - - - - 250 - $(pv_name) -$(pv_value) - 405 + false + + + false - - - false - true - 0.0 + 110 + true - + - 39872d87:13e14015f61:18e0 - - - - - 110 - true + 0 + 1 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - - - - - - - + true Rectangle - true - - - - false - - Default - 315 - 0 - 0 - - - 1 - 1 - true - - - - - 250 - $(pv_name) -$(pv_value) 405 - false + 250 - - false - true - 100.0 - - - - 39872d87:13e14015f61:18e3 - - - - - 18 - true - Rectangle - false + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -6691,62 +6689,62 @@ $(pv_value) $(P)m16_able.VAL - - 1 - 0 - true - - - - - 305 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 5 620 - false + 305 - - false - true - 100.0 - - - - 39872d87:13e14015f61:18e4 - - - - - 5 - true - Rectangle - false + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -6758,62 +6756,62 @@ $(pv_value) $(P)m16.LLS - - 1 - 0 - true - - - - - 318 - $(pv_name) -$(pv_value) - 610 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:18e5 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 610 + 318 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -6825,62 +6823,62 @@ $(pv_value) $(P)m16.LVIO - - 1 - 0 - true - - - - - 310 - $(pv_name) -$(pv_value) - 615 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:18e6 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 615 + 310 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -6892,63 +6890,63 @@ $(pv_value) $(P)m16.DMOV - - 1 - 0 - true - - - - - 310 - $(pv_name) -$(pv_value) - 610 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:18e7 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 610 + 310 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 - 0 - 0 - + false + + + + false + 5 + true + + + + 0 + 0 + Rectangle + + + true @@ -6959,62 +6957,62 @@ $(pv_value) $(P)m16.HLS - - 1 - 0 - true - - - - - 305 - $(pv_name) -$(pv_value) - 610 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:18ec - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 610 + 305 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -7026,62 +7024,62 @@ $(pv_value) $(P)m15_able.VAL - - 1 - 0 - true - - - - - 275 - $(pv_name) -$(pv_value) - 620 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:18ed - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 620 + 275 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -7093,62 +7091,62 @@ $(pv_value) $(P)m15.LLS - - 1 - 0 - true - - - - - 288 - $(pv_name) -$(pv_value) - 610 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:18ee - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 610 + 288 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -7160,62 +7158,62 @@ $(pv_value) $(P)m15.LVIO - - 1 - 0 - true - - - - - 280 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 5 615 - false + 280 - - false - true - 100.0 - - - - 39872d87:13e14015f61:18ef - - - - - 8 - true - Rectangle - false + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -7227,62 +7225,62 @@ $(pv_value) $(P)m15.DMOV - - 1 - 0 - true - - - - - 280 - $(pv_name) -$(pv_value) - 610 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:18f0 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 610 + 280 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -7294,62 +7292,62 @@ $(pv_value) $(P)m15.HLS - - 1 - 0 - true - - - - - 275 - $(pv_name) -$(pv_value) - 610 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:18f5 - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 610 + 275 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -7361,62 +7359,62 @@ $(pv_value) $(P)m10_able.VAL - - 1 - 0 - true - - - - - 335 - $(pv_name) -$(pv_value) - 620 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:18f6 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 620 + 335 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 - 0 - 0 + false + + + + false + 5 + true + + + + 0 + 0 + Rectangle + + @@ -7428,62 +7426,62 @@ $(pv_value) $(P)m10.LLS - - 1 - 0 - true - - - - - 348 - $(pv_name) -$(pv_value) - 610 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:18f7 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 610 + 348 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -7495,62 +7493,62 @@ $(pv_value) $(P)m10.LVIO - - 1 - 0 - true - - - - - 340 - $(pv_name) -$(pv_value) - 615 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:18f8 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 615 + 340 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -7562,62 +7560,62 @@ $(pv_value) $(P)m10.DMOV - - 1 - 0 - true - - - - - 340 - $(pv_name) -$(pv_value) - 610 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:18f9 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 610 + 340 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -7629,62 +7627,62 @@ $(pv_value) $(P)m10.HLS - - 1 - 0 - true - - - - - 335 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 10 610 - false + 335 - - false - true - 100.0 - - - - 39872d87:13e14015f61:190b - - - - - 18 - true - Rectangle - false + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -7696,62 +7694,62 @@ $(pv_value) $(P)m7_able.VAL - - 1 - 0 - true - - - - - 305 - $(pv_name) -$(pv_value) - 455 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:190c - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 455 + 305 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -7763,62 +7761,62 @@ $(pv_value) $(P)m7.LLS - - 1 - 0 - true - - - - - 318 - $(pv_name) -$(pv_value) - 445 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:190d - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 445 + 318 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -7830,63 +7828,63 @@ $(pv_value) $(P)m7.LVIO - - 1 - 0 - true - - - - - 310 - $(pv_name) -$(pv_value) - 450 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:190e - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 450 + 310 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 - 0 - 0 - + false + + + + false + 8 + true + + + + 0 + 0 + Rectangle + + + true @@ -7897,62 +7895,62 @@ $(pv_value) $(P)m7.DMOV - - 1 - 0 - true - - - - - 310 - $(pv_name) -$(pv_value) - 445 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:190f - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 445 + 310 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -7964,62 +7962,62 @@ $(pv_value) $(P)m7.HLS - - 1 - 0 - true - - - - - 305 - $(pv_name) -$(pv_value) - 445 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1914 - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 445 + 305 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -8031,62 +8029,62 @@ $(pv_value) $(P)m9_able.VAL - - 1 - 0 - true - - - - - 275 - $(pv_name) -$(pv_value) - 455 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1915 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 455 + 275 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -8098,62 +8096,62 @@ $(pv_value) $(P)m9.LLS - - 1 - 0 - true - - - - - 288 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 10 445 - false + 288 - - false - true - 100.0 - - - - 39872d87:13e14015f61:1916 - - - - - 8 - true - Rectangle - false + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -8165,62 +8163,62 @@ $(pv_value) $(P)m9.LVIO - - 1 - 0 - true - - - - - 280 - $(pv_name) -$(pv_value) - 450 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1917 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 450 + 280 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -8232,62 +8230,62 @@ $(pv_value) $(P)m9.DMOV - - 1 - 0 - true - - - - - 280 - $(pv_name) -$(pv_value) - 445 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1918 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 445 + 280 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -8299,62 +8297,62 @@ $(pv_value) $(P)m9.HLS - - 1 - 0 - true - - - - - 275 - $(pv_name) -$(pv_value) - 445 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:191d - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 445 + 275 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 - 0 - 0 + false + + + + false + 18 + true + + + + 0 + 0 + Rectangle + + @@ -8366,62 +8364,62 @@ $(pv_value) $(P)m8_able.VAL - - 1 - 0 - true - - - - - 335 - $(pv_name) -$(pv_value) - 455 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:191e - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 455 + 335 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -8433,62 +8431,62 @@ $(pv_value) $(P)m8.LLS - - 1 - 0 - true - - - - - 348 - $(pv_name) -$(pv_value) - 445 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:191f - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 445 + 348 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -8500,62 +8498,62 @@ $(pv_value) $(P)m8.LVIO - - 1 - 0 - true - - - - - 340 - $(pv_name) -$(pv_value) - 450 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1920 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 450 + 340 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -8567,62 +8565,62 @@ $(pv_value) $(P)m8.DMOV - - 1 - 0 - true - - - - - 340 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 5 445 - false + 340 - - false - true - 100.0 - - - - 39872d87:13e14015f61:1921 - - - - - 5 - true - Rectangle - false + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -8634,119 +8632,119 @@ $(pv_value) $(P)m8.HLS - - 1 - 0 - true - - - - - 335 - $(pv_name) -$(pv_value) - 445 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1931 - - - - - 80 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 445 + 335 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 145 - 0 - 0 - - - 1 - 0 - true - - - - - 40 - $(pv_name) -$(pv_value) - 575 + false + + + false - - - false - true - 100.0 + 80 + true - 39872d87:13e14015f61:1936 - - - - - 18 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 145 + 575 + 40 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -8758,62 +8756,62 @@ $(pv_value) $(P)m23_able.VAL - - 1 - 0 - true - - - - - 95 - $(pv_name) -$(pv_value) - 620 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1937 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 620 + 95 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -8825,62 +8823,62 @@ $(pv_value) $(P)m23.LLS - - 1 - 0 - true - - - - - 108 - $(pv_name) -$(pv_value) - 610 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1938 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 610 + 108 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -8892,62 +8890,62 @@ $(pv_value) $(P)m23.LVIO - - 1 - 0 - true - - - - - 100 - $(pv_name) -$(pv_value) - 615 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1939 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 615 + 100 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -8959,62 +8957,62 @@ $(pv_value) $(P)m23.DMOV - - 1 - 0 - true - - - - - 100 - $(pv_name) -$(pv_value) - 610 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:193a - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 610 + 100 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -9026,119 +9024,119 @@ $(pv_value) $(P)m23.HLS - - 1 - 0 - true - - - - - 95 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 10 610 - false + 95 - - false - true - 0.0 - - - - 39872d87:13e14015f61:193c + + + false + 255 + true + false + + + - - 80 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 145 - 0 - 0 - - - 1 - 1 - true - - - - - 40 - $(pv_name) -$(pv_value) - 575 + false + + + false - - - false - true - 100.0 + 80 + true - + - 39872d87:13e14015f61:1943 - - - - - 18 - true + 0 + 1 Rectangle - false - 255 + + + true true false - false - + + $(pv_name) +$(pv_value) + true + true + Rectangle + 145 + 575 + 40 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 18 + true + + + 0 - 0 + 0 + Rectangle + + @@ -9150,62 +9148,62 @@ $(pv_value) $(P)m24_able.VAL - - 1 - 0 - true - - - - - 65 - $(pv_name) -$(pv_value) - 620 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1944 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 620 + 65 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -9217,62 +9215,62 @@ $(pv_value) $(P)m24.LLS - - 1 - 0 - true - - - - - 78 - $(pv_name) -$(pv_value) - 610 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1945 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 610 + 78 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -9284,62 +9282,62 @@ $(pv_value) $(P)m24.LVIO - - 1 - 0 - true - - - - - 70 - $(pv_name) -$(pv_value) - 615 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1946 - - - - - 8 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 615 + 70 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 + false + + + + false + 8 + true + + + 0 - 0 + 0 + Rectangle + + @@ -9351,62 +9349,62 @@ $(pv_value) $(P)m24.DMOV - - 1 - 0 - true - - - - - 70 - $(pv_name) -$(pv_value) - 610 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1947 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 610 + 70 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -9418,1407 +9416,1364 @@ $(pv_value) $(P)m24.HLS - - 1 - 0 - true - - - - - 65 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 10 610 - false + 65 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 100 + false true - true - 39872d87:13e14015f61:17b8 - - 100 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 50 - 0 - - false - 1 - - - - - 30 - 245 - + 30 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 100 + true - 39872d87:13e14015f61:17b9 - - - - - 100 - true + 0 + 0 Ellipse - false - 255 + + + true true true + + $(pv_name) +$(pv_value) false - + true + Ellipse + 50 + 0 + 0 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 50 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 0.0 + 80 + true - - - 39872d87:13e14015f61:17ba - - - - 80 - true + + 0 + 5 Ellipse - false - 255 + + + true true true + + $(pv_name) +$(pv_value) true - + true + Ellipse + 40 + 5 + 10 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 40 - 0 - 0 - - - 1 - 5 - true - - - - - 10 - $(pv_name) -$(pv_value) - 5 + false + + + false - - - false - true - 0.0 + 50 + true - - - 39872d87:13e14015f61:17bb - - - - 50 - true + + 0 + 5 Ellipse - false - 255 + + + true true true + + $(pv_name) +$(pv_value) true - - - - - - - + true Ellipse - true - - - - false - - Default - 20 - 0 - 0 - - - 1 - 5 - true - - - - - 25 - $(pv_name) -$(pv_value) 15 - false + 25 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 44 + false true - true - 39872d87:13e14015f61:17bc - - 44 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 48 - 0 - - false - 1 - - - - - 51 - 398 - - false - true - 0.0 - - - - 39872d87:13e14015f61:17bd - - - - - 7 - true - Ellipse - false + 51 + + + false 255 - - true - true - true - - true - + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 7 - 0 - 0 - - - 1 - 5 - true - - - - - 12 - $(pv_name) -$(pv_value) - 31 + false + + + false - - - false - true - 0.0 + 7 + true - + - 39872d87:13e14015f61:17be - - - - - 10 - true + 0 + 5 Ellipse - false - 255 + + + true true true + + $(pv_name) +$(pv_value) true - + true + Ellipse + 7 + 31 + 12 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 10 - 0 - 0 - - - 1 - 5 - true - - - - - 17 - $(pv_name) -$(pv_value) - 34 + false + + + false - - - false - true - 0.0 + 10 + true - + - 39872d87:13e14015f61:17bf - - - - - 10 - true + 0 + 5 Ellipse - false - 255 + + + true true true + + $(pv_name) +$(pv_value) true - + true + Ellipse + 10 + 34 + 17 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 10 + false + + + + false + 10 + true + + + 0 - 0 - - - 1 5 - true - - - - - 25 + Ellipse + + + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Ellipse + 10 37 - false + 25 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:17c0 - 0.0 - - 0 + + Default + + false + + + 4 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - 1 - 1 - true - - - - - 24 - $(pv_name) -$(pv_value) - 30 - - - false - true - 65 - 39872d87:13e14015f61:17c1 - 342 - - 20 - true - Arc - false - 255 + 0.0 + true true true - + + $(pv_name) +$(pv_value) + true + true + Polyline + 7 + 30 + 24 + + + + false + 255 + true + false - - - - Arc + false + + + + 0 + 1 true - false + false - Default + Default - 25 + false + + + + 20 0 - false - 0 - - - 1 1 - - - - - 0 - $(pv_name) -$(pv_value) - 12 - - - false - true - 0.0 - - - - 39872d87:13e14015f61:17c2 - - - - - 10 - true - Ellipse - false - 255 + Arc + + + true true true - true - + + 342 + $(pv_name) +$(pv_value) + 65 + true + Arc + 25 + 12 + 0 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 10 + false + + + + false + 10 + true + + + 0 - 0 - - - 1 5 - true - - - - - 34 + Ellipse + + + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Ellipse + 10 38 - false + 34 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:17c3 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 6 + 35 + 40 + + + + false + 255 + true + false - - - - Polyline + false + + + + 0 + 1 true - false + false - Default + Default - 6 + false + + + + 20 0 - 0 - - - 1 1 - true - - - - - 40 - $(pv_name) -$(pv_value) - 35 - - - false - true - 58 - 39872d87:13e14015f61:17c4 - 0 - - 20 - true Arc - false - 255 + + + true true true - + + 0 + $(pv_name) +$(pv_value) + 58 + true + Arc + 33 + 0 + 3 + + + + false + 255 + true + 20 + 0 + false - - - - Arc + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 33 + false + + + + 2 + true 0 - false - 0 - - - 1 1 - - - - - 3 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:17c5 - 0.0 - - 0 - 2 - true Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - 1 - 1 - true - - - - - 32 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 7 33 + 32 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 30 + false true - true - 39872d87:13e14015f61:17c8 - - 30 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 50 - 0 - - false - 1 - - - - - 95 - 364 - - true - 1 - 39872d87:13e14015f61:17c9 + 95 + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false + ORDER + + true + 1 + true + Label + 50 + false + 0 + 0 + + + + false - - - - Label - true - ORDER - - - - 50 - 0 - - 1 - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:17ca - false - + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false + SORTING + + true + 1 + true + Label + 50 + false + 0 + 10 + + + + false - - - - Label - true - SORTING - - - - 50 - 0 - - 1 - 1 - - 10 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:17cb - false - + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true APERTURE - - - - 50 - 0 - - 1 - - - - 1 - - 20 - true + true + 1 + true + Label + 50 + false 0 + 20 - - - true - - true - 39872d87:13e14015f61:17ce - - 63 - Grouping Container - - true - true - false - - true - false + + - - - - Grouping Container + + + + 0 + 1 true + false - Default + Default - 68 - 0 - + + + + 63 false - 1 - - - - - 49 + + true + + Grouping Container + + + true + true + false + + + false + true + true + Grouping Container + 68 10 - + 49 + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 63 + false true - true - 39872d87:13e14015f61:17cf - - 63 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 68 - 0 - - false - 1 - - - - - 0 - 0 - + 0 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:17d0 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 51 + 3 + 55 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 51 - 0 - 0 - - - 1 - 1 - true + false - - 55 - $(pv_name) -$(pv_value) - 3 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:17d1 - 0.0 - - 0 + + Default + + false + + + 23 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 27 - 0 - 0 - - 1 - 1 - true - - - - - 33 - $(pv_name) -$(pv_value) - 3 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:17d2 0.0 - - 0 - 38 - true - Polyline - false - 255 + true true true - - - - + + $(pv_name) +$(pv_value) false - - - - - - - + true Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true + 27 + 3 + 33 + + + + false + 255 + true + 20 + 0 + false + + + + false - - 17 + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 38 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 1 3 + 17 - - true - 1 - 39872d87:13e14015f61:17d3 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Z + + true + 1 + true + Label + 10 + false + 58 + 49 + + + + false - - - - Label - true - Z - - - - 10 - 0 - - 1 - 0 - - 49 - true - - 58 - - - true - 1 - 39872d87:13e14015f61:17d4 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + X + + true + 1 + true + Label + 10 + false + 32 + 19 + + + + false - - - - Label - true - X - - - - 10 - 0 - - 1 - 0 - - 19 - true - - 32 - - - true - 1 - 39872d87:13e14015f61:17d5 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true Y - - - - 10 - 0 - - 1 - - - - 0 - - 0 - true + true + 1 + true + Label + 10 + false 0 + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 20 + false true - true - 39872d87:13e14015f61:17df - - 20 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 70 - 0 - - false - 1 - - - - - 364 - 30 - - true - 1 - 39872d87:13e14015f61:17e0 + 364 + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - Table - - - - 50 - 0 - - 1 - 1 - - 0 - true - - 20 - - - false - true - false - 39872d87:13e14015f61:17e1 - + 0 + 1 + true + + + + + + 20 - Menu Button - false + 1 + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - + + false + Table + + true + 1 + true + Label + 50 + false + 20 0 + + table.opi @@ -10831,7 +10786,7 @@ $(pv_value) m31 m32 - 0 + 1 Table 1 (S) @@ -10845,1911 +10800,1944 @@ $(pv_value) m31 m32 - 0 + 1 Table 1 (L) + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 20 0 + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 20 + false true - true - 39872d87:13e14015f61:17e8 - - 20 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 60 - 0 - - false - 1 - - - - - 340 - 45 - + 340 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 20 + true - 39872d87:13e14015f61:17e9 - - - - - 20 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 59 + 1 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 59 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 1 + false + + + false - - - false - true - 0.0 + 20 + true - + - 39872d87:13e14015f61:17ea - - - - - 20 - true + 0 + 1 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - - - - - - - + true Rectangle - true - - - - false - - Default - 59 - 0 - 0 - - - 1 - 1 - true - - - - - 0 - $(pv_name) -$(pv_value) 0 - false + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 140 + false true - true - 39872d87:13e14015f61:1839 - - 140 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 60 - 0 - - false - 1 - - - - - 220 - 330 - + 220 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 140 + true - 39872d87:13e14015f61:183a - - - - - 140 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 60 + 0 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 60 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 0.0 + 140 + true - + - 39872d87:13e14015f61:183b - - - - - 140 - true + 0 + 1 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - - - - - - - + true Rectangle - true - - - - false - - Default - 60 - 0 - 0 - - - 1 - 1 - true - - - - - 0 - $(pv_name) -$(pv_value) 0 - false + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 20 + false true - true - 39872d87:13e14015f61:183c - - 20 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 60 - 0 - - false - 1 - - - - - 340 - 199 - - false - true - 100.0 - - - - 39872d87:13e14015f61:183d - - - - - 20 - true - Rectangle - false + 340 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 59 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 1 + false + + + false - - - false - true - 0.0 + 20 + true - + - 39872d87:13e14015f61:183e - - - - - 20 - true + 0 + 0 Rectangle - false - 255 + + + true true false - true - + + $(pv_name) +$(pv_value) + false + true + Rectangle + 59 + 1 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 59 + false + + + + false + 20 + true + + + 0 - 0 - - - 1 1 - true - - - - - 0 + Rectangle + + + + + true + true + false + + $(pv_name) $(pv_value) + true + true + Rectangle + 59 0 - false + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 65 + false true - true - 39872d87:13e14015f61:18d1 - - 65 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 95 - 0 - - false - 1 - - - - - 140 - 622 - + 140 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 8 + true - 39872d87:13e14015f61:18d7 - - - - - 8 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 5 + 36 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 - 0 - 0 - - - 1 - 0 - true - - - - - 36 - $(pv_name) -$(pv_value) - 5 + false + + + false - - - false - true - 100.0 + 5 + true - 39872d87:13e14015f61:18d9 - - - - - 5 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 5 + 17 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 - 0 - 0 - - - 1 - 0 - true - - - - - 17 - $(pv_name) -$(pv_value) - 5 + false + + + false - - - false - true - 100.0 + 8 + true - 39872d87:13e14015f61:18da - - - - - 8 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 5 + 26 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 5 - 0 - 0 - - - 1 - 0 - true - - - - - 26 - $(pv_name) -$(pv_value) - 5 + false + + + false - - - false - true - 100.0 + 18 + true - 39872d87:13e14015f61:18db - - - - - 18 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 5 + 5 + 46 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 5 - 0 - 0 - - - 1 - 0 - true - - - - - 46 - $(pv_name) -$(pv_value) - 5 + false + + + false - - - false - true - 0.0 + 65 + true - + - 39872d87:13e14015f61:18dc - - - - - 65 - true + 0 + 1 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - - - - - - - + true Rectangle - true - - - - false - - Default - 95 - 0 - 0 - - - 1 - 1 - true - - - - - 0 - $(pv_name) -$(pv_value) 0 - false + 0 - - true - 1 - 39872d87:13e14015f61:18d2 + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 0 Label + true true false - true + false + DISABLED + + true + 1 + true + Label + 75 + false + 20 + 55 + + + + false - - - - Label - true - DISABLED - - - - 75 - 0 - - 1 - 0 - - 55 - true - - 20 - - - true - 1 - 39872d87:13e14015f61:18d3 - false - + 0 + 1 + true + + + + + + 10 + 0 Label + true true false - true + false + MOTOR + + true + 1 + true + Label + 75 + false + 20 + 45 + + + + false - - - - Label - true - MOTOR - - - - 75 - 0 - - 1 - 0 - - 45 - true - - 20 - - - true - 1 - 39872d87:13e14015f61:18d4 - false - + 0 + 1 + true + + + + + + 10 + 0 Label + true true false - true + false + SOFT LIMIT + + true + 1 + true + Label + 75 + false + 20 + 35 + + + + false - - - - Label - true - SOFT LIMIT - - - - 75 - 0 - - 1 - 0 - - 35 - true - - 20 - - - true - 1 - 39872d87:13e14015f61:18d5 - false - + 0 + 1 + true + + + + + + 10 + 0 Label + true true false - true + false + MOVING + + true + 1 + true + Label + 75 + false + 20 + 25 + + + + false - - - - Label - true - MOVING - - - - 75 - 0 - - 1 - 0 - - 25 - true - - 20 - - - true - 1 - 39872d87:13e14015f61:18d6 - false - + 0 + 1 + true + + + + + + 10 + 0 Label + true true false - true + false + LIMIT SWITCH + + true + 1 + true + Label + 75 + false + 20 + 15 + + + + false - - - - Label - true - LIMIT SWITCH - - - - 75 - 0 - - 1 - 0 - - 15 - true - - 20 - - - true - 1 - 39872d87:13e14015f61:18d8 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true Legend: - - - - 90 - 0 - - 1 - - - - 0 - - 0 - true + true + 1 + true + Label + 90 + false 5 + 0 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:17b0 - 0.0 - - 0 + + Default + + false + + + 56 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 41 - 0 - 0 - - 1 - 1 - true - - - - - 94 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 41 443 + 94 - - true - 1 - 39872d87:13e14015f61:17b2 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false - - - - - - - Label - true 2IDD X-Ray Microscope - - - - 760 - 0 - - 1 - - - - 1 - - 3 - true + true + 1 + true + Label + 760 + false 1 + 3 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:17b3 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 752 + 1 + 20 + + + + false + 255 + true + false - - - - Polyline - true - false - - Default - - 752 - 0 - 0 - - - 1 - 1 - true + + + + false - - 20 - $(pv_name) -$(pv_value) - 1 - - - false - true + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 25 + true - 39872d87:13e14015f61:17b5 - - - - - 25 - true + 0 + 0 Ellipse - false - 255 + + + true true true - false - + + $(pv_name) +$(pv_value) + false + true + Ellipse + 10 + 387 + 68 + + + + false + 255 + true + 20 + 0 + false - - - - Ellipse - true - - - - false - - Default - - 10 - 0 - 0 - - - 1 - 0 - true + false - - 68 - $(pv_name) -$(pv_value) - 387 - false - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:17b6 - 0.0 - - 0 + + Default + + false + + + 101 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 301 + 270 + 30 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 301 - 0 - 0 - - - 1 - 1 - true + false - - 30 - $(pv_name) -$(pv_value) - 270 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:17b7 - 0.0 - - 0 + + Default + + false + + + 101 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 301 + 270 + 30 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 301 - 0 - 0 - - - 1 - 1 - true + false - - 30 - $(pv_name) -$(pv_value) - 270 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:17c6 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 126 + 145 + 30 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 126 - 0 - 0 - - - 1 - 1 - true + false - - 30 - $(pv_name) -$(pv_value) - 145 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:17c7 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 126 + 145 + 130 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 126 - 0 - 0 - - - 1 - 1 - true + false - - 130 - $(pv_name) -$(pv_value) - 145 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:17cc - 0.0 - - 0 + + Default + + false + + + 89 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 89 + 270 + 30 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 89 - 0 - 0 - - - 1 - 1 - true + false - - 30 - $(pv_name) -$(pv_value) - 270 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:17cd - 0.0 - - 0 + + Default + + false + + + 89 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 89 - 0 - 0 - - 1 - 1 - true - - - - - 41 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 89 271 + 41 - - true - true - 1 - false - 39872d87:13e14015f61:17d8 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(T).EY + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).EY - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 364 false - $(pv_name) -$(pv_value) 270 + 364 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:17d9 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).Y + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(T).Y - - - - false - 0 - - - false - - - - 0 - - 372 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 270 + 372 - - true - 1 - 39872d87:13e14015f61:17da + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true Y - - - - 10 - 0 - - 1 - - - - 0 - - 371 - true + true + 1 + true + Label + 10 + false 255 + 371 - - true - true - 1 - false - 39872d87:13e14015f61:17db + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(T).EX + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).EX - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 364 false - $(pv_name) -$(pv_value) 150 + 364 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:17dc - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).X + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(T).X - - - - false - 0 - - - false - - - - 0 - - 372 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 150 + 372 - - true - 1 - 39872d87:13e14015f61:17dd + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - X - - - - 10 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 371 - true - - 135 - - - true - 1 - 39872d87:13e14015f61:17de - false - - 10 Label + true true false - true + false + X + + true + 1 + true + Label + 10 + false + 135 + 371 + + + + false - - - - Label + + + + 0 + 1 true - MOTOR LIMIT - + - 70 - 0 + + + + 10 + 1 + Label @@ -12761,2043 +12749,2127 @@ $(pv_value) $(P)$(T).LVIO - 1 - - - - 1 - - 372 - true + + true + true + false + + + false + MOTOR LIMIT + true + 1 + true + Label + 70 + false 368 + 372 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:17e2 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q):x_tweak.D + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q):x_tweak.D - - - - false - 0 - - - false - - - - 0 - - 377 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 200 + 377 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:17e3 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(Q):y_tweak.D - - - - false - 0 - - - false + false - 0 - - 377 - $(pv_name) -$(pv_value) - 320 - - - false - true - 39872d87:13e14015f61:17e4 - - 15 - Action Button + 3 + 1 + + true + + + false + + + + 1 + 14 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):y_tweak.D + + false + 0.0 + true true false - $(P)$(Q):x_dec.VAL - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 364 + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 320 + 377 + + $(P)$(Q):x_dec.VAL 1 10 + - $(pv_name) -$(pv_value) - 200 - - + false + false + + + false - true - 39872d87:13e14015f61:17e5 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)$(Q):x_dec.VAL + + true true false - $(P)$(Q):x_inc.VAL - - - - - - + + + - + false + $(pv_name) +$(pv_value) + true Action Button - true - + - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 200 364 + + $(P)$(Q):x_inc.VAL 1 10 + - $(pv_name) -$(pv_value) - 220 - - + false + false + + + false - true - 39872d87:13e14015f61:17e6 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)$(Q):x_inc.VAL + + true true false - $(P)$(Q):y_dec.VAL - - - - - - + + + + + false + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 220 364 + + $(P)$(Q):y_dec.VAL 1 10 + - $(pv_name) -$(pv_value) - 320 - - + false + false + + + false - true - 39872d87:13e14015f61:17e7 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)$(Q):y_dec.VAL + + true true false - $(P)$(Q):y_inc.VAL - - - - - - + + + - + false + $(pv_name) +$(pv_value) + true Action Button - true - + - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 320 364 + + $(P)$(Q):y_inc.VAL 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 15 + + Action Button + 0 + $(P)$(Q):y_inc.VAL + + + + true + true + false + + + + + + false $(pv_name) $(pv_value) + true + Action Button + 20 340 + 364 - - true - 1 - 39872d87:13e14015f61:17ed + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true Zone Plate 1 - - - - 150 - 0 - - 1 - - - - 1 - - 140 - true + true + 1 + true + Label + 150 + false 5 + 140 - - true - true - 1 - false - 39872d87:13e14015f61:17f0 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m22.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)m22.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 310 false - $(pv_name) -$(pv_value) 60 + 310 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:17f1 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m22.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)m22.VAL - - - - false - 0 - - - false - - - - 0 - - 319 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 60 + 319 - - false - true - 39872d87:13e14015f61:17f2 - - 15 - Action Button - false - - true - true - false - - $(P)m22.TWF - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 310 + $(P)m22.TWF 1 10 + - $(pv_name) -$(pv_value) - 130 - - + false + false + + + false - true - 39872d87:13e14015f61:17f3 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m22.TWF + + true true false - $(P)m22.TWR - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - + + + + false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 130 310 + + $(P)m22.TWR 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 15 + + Action Button + 0 + $(P)m22.TWR + + + + true + true + false + + + + - + false $(pv_name) $(pv_value) + true + Action Button + 20 110 + 310 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:17f7 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m4.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m4.TWV - - - - false - 0 - - - false - - - - 0 - - 323 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 110 + 323 - - true - true - 1 - false - 39872d87:13e14015f61:17fa + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m4.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)m4.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 160 false - $(pv_name) -$(pv_value) 60 + 160 - + + + + $(P)m4.TWF + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:17fb - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m4.TWF + + true true false - $(P)m4.TWF - - - - - - - Action Button - true + + + - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 130 160 + + - $(P)m4.TWF + $(P)m4.TWR 1 10 + - $(pv_name) -$(pv_value) - 130 - - - false - true - 39872d87:13e14015f61:17fc - - 15 - Action Button - false - - true - true - false - - $(P)m4.TWR + false + false - + - - - - Action Button + false + + + + 0 + 1 true - - - false - Default + Default - 20 - 0 - 0 + false + + + + 15 - + Action Button + 0 + $(P)m4.TWR + + + true + true + false + + + + - false - 1 - - - - 160 - - - $(P)m4.TWR - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 110 + 160 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1800 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m4.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)m4.VAL - - - - false - 0 - - - false - - - - 0 - - 169 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 60 + 169 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1801 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m4.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m4.TWV - - - - false - 0 - - - false - - - - 0 - - 173 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 110 + 173 - - true - true - 1 - false - 39872d87:13e14015f61:1802 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m3.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)m3.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 190 false - $(pv_name) -$(pv_value) 60 + 190 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1803 + false + Text Input + 0 + false + 0 + true + $(P)m3.VAL + + false 0.0 - Text Input + true true false - 1 - false + 0 - $(P)m3.VAL - - - - false - 0 - - - false - - - - 0 - - 199 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 60 + 199 - + + + + $(P)m3.TWF + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1804 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m3.TWF + + true true false - $(P)m3.TWF - - - - - - - Action Button - true + + + - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 130 190 + + - $(P)m3.TWF + $(P)m3.TWR 1 10 + - $(pv_name) -$(pv_value) - 130 - - + false + false + + + false - true - 39872d87:13e14015f61:1805 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m3.TWR + + true true false - $(P)m3.TWR - - - - - - - Action Button - true + + - - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 190 - - - $(P)m3.TWR - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 110 + 190 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:180b - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m3.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m3.TWV - - - - false - 0 - - - false - - - - 0 - - 203 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 110 + 203 - - true - true - 1 - false - 39872d87:13e14015f61:180c + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m0.RBV + + 0.0 + true true false - 1 - true - false - $(P)m0.RBV - - - - - - + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 220 false - $(pv_name) -$(pv_value) 60 + 220 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:180d - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m0.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)m0.VAL - - - - false - 0 - - - false - - - - 0 - - 229 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 60 + 229 - - false - true - 39872d87:13e14015f61:180e - - 15 - Action Button - false - - true - true - false - - $(P)m0.TWF - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 220 + $(P)m0.TWF 1 10 + - $(pv_name) -$(pv_value) - 130 - - + false + false + + + false - true - 39872d87:13e14015f61:180f - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m0.TWF + + true true false - $(P)m0.TWR - - - - - - + + + + + false + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 130 220 + + $(P)m0.TWR 1 10 + - $(pv_name) -$(pv_value) - 110 - - - false - true - 1 - false - false - - 14 - false - true + false + false - + - Text Input + false + + + + 0 + 1 true - - + Default - 40 - 3 + false + + + + 15 + + Action Button + 0 + $(P)m0.TWR - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:1815 - 0.0 - Text Input + true true false - 1 - false - 0 - $(P)m0.TWV - - - + + + - + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 110 + 220 + + + + false + false false - 0 - - - false + + + + false + 3 + 1 + + true + + + + false + + + + 1 + 14 0 - - 233 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)m0.TWV + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 110 + 233 - - true - true - 1 - false - 39872d87:13e14015f61:1816 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m0.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)m0.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 250 false - $(pv_name) -$(pv_value) 60 + 250 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1817 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m0.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)m0.VAL - - - - false - 0 - - - false - - - - 0 - - 259 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 60 + 259 - - false - true - 39872d87:13e14015f61:1818 - - 15 - Action Button - false - - true - true - false - - $(P)m0.TWF - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 250 + $(P)m0.TWF 1 10 + - $(pv_name) -$(pv_value) - 130 - - + false + false + + + false - true - 39872d87:13e14015f61:1819 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m0.TWF + + true true false - $(P)m0.TWR - - - - - - + + + + + false + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 130 250 + + $(P)m0.TWR 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 15 + + Action Button + 0 + $(P)m0.TWR + + + + true + true + false + + + + - + false $(pv_name) $(pv_value) + true + Action Button + 20 110 + 250 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:181f - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m0.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m0.TWV - - - - false - 0 - - - false - - - - 0 - - 263 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 110 + 263 - - true - true - 1 - false - 39872d87:13e14015f61:1820 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m0.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)m0.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 280 false - $(pv_name) -$(pv_value) 60 + 280 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1821 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m0.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)m0.VAL - - - - false - 0 - - - false - - - - 0 - - 289 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 60 + 289 - + + + + $(P)m0.TWF + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1822 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m0.TWF + + true true false - $(P)m0.TWF - - - - - - - Action Button - true + + + - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 130 280 + + - $(P)m0.TWF + $(P)m0.TWR 1 10 + - $(pv_name) -$(pv_value) - 130 - - + false + false + + + false - true - 39872d87:13e14015f61:1823 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m0.TWR + + true true false - $(P)m0.TWR - - - - - - - Action Button - true + + - - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 280 - - - $(P)m0.TWR - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 110 + 280 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1829 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m0.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m0.TWV - - - - false - 0 - - - false - - - - 0 - - 293 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 110 + 293 - - true - 1 - 39872d87:13e14015f61:182a + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - Z - - - - 15 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 317 - true - - 30 - - - false - true - false - 39872d87:13e14015f61:182b - - 20 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 314 + + false + Z + + true + 1 + true + Label + 15 + false + 30 + 317 + + motorx.opi @@ -14805,7 +14877,7 @@ $(pv_value) true m22 - 0 + 1 Motor (small) @@ -14814,93 +14886,93 @@ $(pv_value) true m22 - 0 + 1 Motor (medium) - $(pv_name) -$(pv_value) - 10 - - - true - 1 - 39872d87:13e14015f61:182c - false - - 14 - Label - - true - true - false - - true - false + false + false + false - + - - - - Label - true - Y - - - - 15 - 0 - - 1 + false - 0 - - 167 - true - - 30 - - - false - true - false - 39872d87:13e14015f61:182d - + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + + + true true false + + false + $(pv_name) +$(pv_value) false - + true + Menu Button + 20 + 10 + 314 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 20 - 6 - + + + + 14 + 0 + Label - - 1 - - - - 164 + + true + true + false + + + false + Y + + true + 1 + true + Label + 15 + false + 30 + 167 + + motorx.opi @@ -14908,7 +14980,7 @@ $(pv_value) true m4 - 0 + 1 Motor (small) @@ -14917,93 +14989,93 @@ $(pv_value) true m4 - 0 + 1 Motor (medium) - $(pv_name) -$(pv_value) - 10 - - - true - 1 - 39872d87:13e14015f61:182e - false - - 14 - Label - - true - true - false - - true - false + false + false + false - + - - - - Label - true - X - - - - 15 - 0 - - 1 + false - 0 - - 197 - true - - 30 - - - false - true - false - 39872d87:13e14015f61:182f - + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + + + true true false + + false + $(pv_name) +$(pv_value) false - + true + Menu Button + 20 + 10 + 164 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 20 - 6 - + + + + 14 + 0 + Label - - 1 - - - - 194 + + true + true + false + + + false + X + + true + 1 + true + Label + 15 + false + 30 + 197 + + motorx.opi @@ -15011,7 +15083,7 @@ $(pv_value) true m3 - 0 + 1 Motor (small) @@ -15020,591 +15092,453 @@ $(pv_value) true m3 - 0 + 1 Motor (medium) - $(pv_name) -$(pv_value) - 10 - - - true - 1 - 39872d87:13e14015f61:1830 - false - - 14 - Label - - true - true - false - - true - false + false + false + false - + - - - - Label - true - - - - - - 15 - 0 - - 1 + false - 0 - - 227 - true - - 30 - - - false - true - false - 39872d87:13e14015f61:1831 - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button + 6 + 1 true - false - Default + Default - 20 - 6 - - - - 1 - - - - 224 - - $(pv_name) -$(pv_value) - 10 - - - true - 1 - 39872d87:13e14015f61:1832 - false - - 14 - Label + false + + + + 20 + + Menu Button + + + true true false - true - false + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 20 + 10 + 194 + + + + false - - - - Label - true - 0Y - - - - 15 - 0 - - 1 - 0 - - 227 - true - - 30 - - - true - 1 - 39872d87:13e14015f61:1833 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true - - - - - 15 - 0 - - 1 - - - - 0 - - 257 - true + true + 1 + true + Label + 15 + false 30 + 227 - - true - 1 - 39872d87:13e14015f61:1834 + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - 0X - - - - 15 - 0 - - 1 - 0 - - 257 - true - - 30 - - - false - true - false - 39872d87:13e14015f61:1835 - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button + 0 + 1 true - false - Default + - 20 - 6 - - - - 1 - - - - 254 - - $(pv_name) -$(pv_value) - 10 - - - true - 1 - 39872d87:13e14015f61:1836 - false - + + + 14 + 0 Label + true true false - true + false + 0Y + + true + 1 + true + Label + 15 + false + 30 + 227 + + + + false - - - - Label - true - - - - - - 15 - 0 - - 1 - 0 - - 287 - true - - 30 - - - true - 1 - 39872d87:13e14015f61:1837 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + - + + true + 1 + true + Label + 15 + false + 30 + 257 + + + + false - - - - Label - true - 0Z - - - - 15 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 287 - true - - 30 - - - false - true - false - 39872d87:13e14015f61:1838 - - 20 - Menu Button - false + Label + true true false - false - + + false + 0X + + true + 1 + true + Label + 15 + false + 30 + 257 + + + + false - + - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - 284 - - $(pv_name) -$(pv_value) - 10 - - - true - 1 - 39872d87:13e14015f61:1841 - false - - 20 + 0 + 1 + true + + + + + + + 14 + 0 Label + true true false - true + false + - + + true + 1 + true + Label + 15 + false + 30 + 287 + + + + false - - - - Label - true - Zone Plate 2 - - - - 150 - 0 - - 1 - 1 - - 140 - true - - 160 - - - true - 1 - 39872d87:13e14015f61:1844 - false - - 20 + 0 + 1 + true + + + + + + + 14 + 0 Label + true true false - true + false + 0Z + + true + 1 + true + Label + 15 + false + 30 + 287 + + + + false - - - - Label - true - OSA - - - - 135 - 0 - - 1 - 1 - - 140 - true - - 320 - - - true - 1 - 39872d87:13e14015f61:1846 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + Zone Plate 2 + + true + 1 + true + Label + 150 + false + 160 + 140 + + + + false - - - - Label - true - Sample - - - - 135 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 1 - - 140 - true - - 470 - - - true - 1 - 39872d87:13e14015f61:1848 - false - - 14 Label + true true false - true + false + OSA + + true + 1 + true + Label + 135 + false + 320 + 140 + + + + false - - - - Label - true - Y - - - - 10 - 0 - - 1 - 0 - - 197 - true - - 490 - - - false - true - false - 39872d87:13e14015f61:1849 - + 0 + 1 + true + + + + + + 20 - Menu Button - false + 1 + Label + true true false - false - + + false + Sample + + true + 1 + true + Label + 135 + false + 470 + 140 + + + + false - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 + + - 194 + 0 + 1 + true + + + + + + + 14 + 0 + Label + + + true + true + false + + + false + Y + + true + 1 + true + Label + 10 + false + 490 + 197 + + motorx.opi @@ -15612,7 +15546,7 @@ $(pv_value) true m14 - 0 + 1 Motor (small) @@ -15621,1790 +15555,1892 @@ $(pv_value) true m14 - 0 + 1 Motor (medium) + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 20 470 + 194 - - true - true - 1 - false - 39872d87:13e14015f61:184a + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m14.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)m14.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 190 false - $(pv_name) -$(pv_value) 515 + 190 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:184b - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m14.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)m14.VAL - - - - false - 0 - - - false - - - - 0 - - 198 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 515 + 198 - - true - true - 1 - false - 39872d87:13e14015f61:1853 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m20.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)m20.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 160 false - $(pv_name) -$(pv_value) 215 + 160 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1854 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m20.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)m20.VAL - - - - false - 0 - - - false - - - - 0 - - 169 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 215 + 169 - + + + + $(P)m20.TWF + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1855 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m20.TWF + + true true false - $(P)m20.TWF - - - - - - - Action Button - true + + + - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 285 160 + + - $(P)m20.TWF + $(P)m20.TWR 1 10 + - $(pv_name) -$(pv_value) - 285 - - + false + false + + + false - true - 39872d87:13e14015f61:1856 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m20.TWR + + true true false - $(P)m20.TWR - - - - - - - Action Button - true + + - - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 160 - - - $(P)m20.TWR - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 265 + 160 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:185a - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m20.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m20.TWV - - - - false - 0 - - - false - - - - 0 - - 173 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 265 + 173 - - true - true - 1 - false - 39872d87:13e14015f61:185b + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m19.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)m19.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 190 false - $(pv_name) -$(pv_value) 215 + 190 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:185c - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m19.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)m19.VAL - - - - false - 0 - - - false - - - - 0 - - 199 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 215 + 199 - + + + + $(P)m19.TWF + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:185d - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m19.TWF + + true true false - $(P)m19.TWF - - - - - - - Action Button - true + + + - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 285 190 + + - $(P)m19.TWF + $(P)m19.TWR 1 10 + - $(pv_name) -$(pv_value) - 285 - - + false + false + + + false - true - 39872d87:13e14015f61:185e - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m19.TWR + + true true false - $(P)m19.TWR - - - - - - - Action Button - true + + - - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 190 - - - $(P)m19.TWR - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 265 + 190 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1864 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m19.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m19.TWV - - - - false - 0 - - - false - - - - 0 - - 203 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 265 + 203 - - true - true - 1 - false - 39872d87:13e14015f61:1865 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m0.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)m0.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 220 false - $(pv_name) -$(pv_value) 215 + 220 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1866 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m0.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)m0.VAL - - - - false - 0 - - - false - - - - 0 - - 229 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 215 + 229 - - false - true - 39872d87:13e14015f61:1867 - - 15 - Action Button - false - - true - true - false - - $(P)m0.TWF - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 220 + $(P)m0.TWF 1 10 + - $(pv_name) -$(pv_value) - 285 - - + false + false + + + false - true - 39872d87:13e14015f61:1868 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m0.TWF + + true true false - $(P)m0.TWR - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - + + + + false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 285 220 + + $(P)m0.TWR 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 15 + + Action Button + 0 + $(P)m0.TWR + + + + true + true + false + + + + - + false $(pv_name) $(pv_value) + true + Action Button + 20 265 + 220 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:186e - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m0.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m0.TWV - - - - false - 0 - - - false - - - - 0 - - 233 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 265 + 233 - - true - true - 1 - false - 39872d87:13e14015f61:1871 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m18.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)m18.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 310 false - $(pv_name) -$(pv_value) 215 + 310 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1872 - 0.0 + false Text Input - - true - true - false - - 1 - false - 0 - $(P)m18.VAL - - - - false + 0 + false 0 - + true + $(P)m18.VAL + + false + 0.0 - false - - - - 0 - - 319 - $(pv_name) -$(pv_value) - 215 - - - false - true - 39872d87:13e14015f61:1876 - - 15 - Action Button - false true true false - $(P)m18.TWF - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 310 + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 50 + 215 + 319 + + $(P)m18.TWF 1 10 + - $(pv_name) -$(pv_value) - 285 - - + false + false + + + false - true - 39872d87:13e14015f61:1877 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m18.TWF + + true true false - $(P)m18.TWR - - - - - - + + + + + false + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 285 310 + + $(P)m18.TWR 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 15 + + Action Button + 0 + $(P)m18.TWR + + + + true + true + false + + + + - + false $(pv_name) $(pv_value) + true + Action Button + 20 265 + 310 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1878 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m18.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m18.TWV - - - - false - 0 - - - false - - - - 0 - - 323 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 265 + 323 - - true - true - 1 - false - 39872d87:13e14015f61:1879 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m0.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)m0.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 280 false - $(pv_name) -$(pv_value) 215 + 280 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:187a - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m0.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)m0.VAL - - - - false - 0 - - - false - - - - 0 - - 289 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 215 + 289 - + + + + $(P)m0.TWF + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1880 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m0.TWF + + true true false - $(P)m0.TWF - - - - - - - Action Button - true + + + - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 285 280 + + - $(P)m0.TWF + $(P)m0.TWR 1 10 + - $(pv_name) -$(pv_value) - 285 - - + false + false + + + false - true - 39872d87:13e14015f61:1881 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m0.TWR + + true true false - $(P)m0.TWR - - - - - - - Action Button - true + + - - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 280 - - - $(P)m0.TWR - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 265 + 280 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1882 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m0.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m0.TWV - - - - false - 0 - - - false - - - - 0 - - 293 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 265 + 293 - - true - true - 1 - false - 39872d87:13e14015f61:1883 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m0.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)m0.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 250 false - $(pv_name) -$(pv_value) 215 + 250 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1884 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m0.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)m0.VAL - - - - false - 0 - - - false - - - - 0 - - 259 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 215 + 259 - - false - true - 39872d87:13e14015f61:1885 - - 15 - Action Button - false - - true - true - false - - $(P)m0.TWF - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 250 + $(P)m0.TWF 1 10 + - $(pv_name) -$(pv_value) - 285 - - + false + false + + + false - true - 39872d87:13e14015f61:1886 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m0.TWF + + true true false - $(P)m0.TWR - - - - - - + + + + + false + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 285 250 + + $(P)m0.TWR 1 10 + - $(pv_name) -$(pv_value) - 265 - - - false - true - 1 - false - false - - 14 - false - true + false + false - + - Text Input + false + + + + 0 + 1 true - - + Default - 40 - 3 + false + + + + 15 + + Action Button + 0 + $(P)m0.TWR - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:188c - 0.0 - Text Input + true true false - 1 - false - 0 - $(P)m0.TWV - - - - false - 0 - - - false - - - - 0 - - 263 + + + - + false $(pv_name) $(pv_value) + true + Action Button + 20 265 + 250 - - true - 1 - 39872d87:13e14015f61:188d + + + false false - + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 14 - Label + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)m0.TWV + + false + 0.0 + true true false - true - false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 265 + 263 + + + + false - - - - Label - true - Y - - - - 10 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 167 - true - - 340 - - - false - true - false - 39872d87:13e14015f61:188e - - 20 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 164 + + false + Y + + true + 1 + true + Label + 10 + false + 340 + 167 + + motorx.opi @@ -17412,7 +17448,7 @@ $(pv_value) true m12 - 0 + 1 Motor (small) @@ -17421,358 +17457,374 @@ $(pv_value) true m12 - 0 + 1 Motor (medium) - $(pv_name) -$(pv_value) - 320 - - - true - true - 1 - false - 39872d87:13e14015f61:188f - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)m12.RBV + false + false + false - + - - - - Text Update + false + + + + 6 + 1 true - ###### - false - 0 - + Default - 50 - 0 - + false + + + + 20 + + Menu Button + - 1 - - - - 1 - - 160 - false + + + true + true + false + + + false $(pv_name) $(pv_value) - 365 - - - false + false true - 1 - false + Menu Button + 20 + 320 + 164 + + + + false false - - 16 - false - true + false - + - Text Input + true + + + + 0 + 1 true - - + - 50 - 3 + false + + + + 1 + 10 + 1 + Text Update + 0 + true + $(P)m12.RBV - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:1890 0.0 - Text Input + true true false - 1 - false - 0 - $(P)m12.VAL - - - - false - 0 - - - false - - - - 0 - - 168 + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 50 + false 365 + 160 - + + + false + false + false + + + false - true - 39872d87:13e14015f61:1891 - - 15 - Action Button + + + + 3 + 1 + + true + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)m12.VAL + + false + 0.0 + true true false - $(P)m12.TWF - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 160 + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 50 + 365 + 168 + + $(P)m12.TWF 1 10 + - $(pv_name) -$(pv_value) - 435 - - + false + false + + + false - true - 39872d87:13e14015f61:1892 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m12.TWF + + true true false - $(P)m12.TWR - - - - - - + + + + + false + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 435 160 + + $(P)m12.TWR 1 10 + - $(pv_name) -$(pv_value) - 415 - - - false - true - 1 - false - false - - 14 - false - true + false + false - + - Text Input + false + + + + 0 + 1 true - - + Default - 40 - 3 + false + + + + 15 + + Action Button + 0 + $(P)m12.TWR - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:1898 - 0.0 - Text Input + true true false - 1 - false - 0 - $(P)m12.TWV - - - - false - 0 - - - false - - - - 0 - - 173 + + + - + false $(pv_name) $(pv_value) + true + Action Button + 20 415 + 160 - - true - 1 - 39872d87:13e14015f61:1899 + + + false false - - 14 - Label - - true - true - false - - true - false + false - + - - - - Label - true - X - - - - 10 - 0 - - 1 + false - 0 - - 197 - true - - 340 - - - false - true - false - 39872d87:13e14015f61:189a - - 20 - Menu Button + 3 + 1 + + true + + + false + + + + 1 + 14 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)m12.TWV + + false + 0.0 + true true false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - + true + Text Input + 40 + 415 + 173 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 20 - 6 - + + + + 14 + 0 + Label - - 1 - - - - 194 + + true + true + false + + + false + X + + true + 1 + true + Label + 10 + false + 340 + 197 + + motorx.opi @@ -17780,7 +17832,7 @@ $(pv_value) true m11 - 0 + 1 Motor (small) @@ -17789,460 +17841,480 @@ $(pv_value) true m11 - 0 + 1 Motor (medium) + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 20 320 + 194 - - true - true - 1 - false - 39872d87:13e14015f61:189b + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m11.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)m11.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 190 false - $(pv_name) -$(pv_value) 365 + 190 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:189c - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m11.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)m11.VAL - - - - false - 0 - - - false - - - - 0 - - 198 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 365 + 198 - - false - true - 39872d87:13e14015f61:189d - - 15 - Action Button - false - - true - true - false - - $(P)m11.TWF - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 190 + $(P)m11.TWF 1 10 + - $(pv_name) -$(pv_value) - 435 - - - false - true - 39872d87:13e14015f61:189e - - 15 - Action Button - false - - true - true - false - - $(P)m11.TWR + false + false - + - - - - Action Button + false + + + + 0 + 1 true - - - false - Default + Default - 20 - 0 - 0 + false + + + + 15 - + Action Button + 0 + $(P)m11.TWF + + + true + true + false + + + + + false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 435 190 + + $(P)m11.TWR 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 15 + + Action Button + 0 + $(P)m11.TWR + + + + true + true + false + + + + - + false $(pv_name) $(pv_value) + true + Action Button + 20 415 + 190 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:18a4 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m11.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m11.TWV - - - - false - 0 - - - false - - - - 0 - - 203 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 415 + 203 - + + + + $(P)m14.TWF + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:18a5 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m14.TWF + + true true false - $(P)m14.TWF - - - - - - - Action Button - true + + + - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 585 190 + + - $(P)m14.TWF + $(P)m14.TWR 1 10 + - $(pv_name) -$(pv_value) - 585 - - + false + false + + + false - true - 39872d87:13e14015f61:18a6 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m14.TWR + + true true false - $(P)m14.TWR - - - - - - - Action Button - true + + - - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 190 - - - $(P)m14.TWR - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 565 + 190 - - true - 1 - 39872d87:13e14015f61:18a7 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true Z - - - - 10 - 0 - - 1 - - - - 0 - - 167 - true + true + 1 + true + Label + 10 + false 490 + 167 - - false - true - false - 39872d87:13e14015f61:18a8 - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 164 + motorx.opi @@ -18250,7 +18322,7 @@ $(pv_value) true m0 - 0 + 1 Motor (small) @@ -18259,302 +18331,312 @@ $(pv_value) true m0 - 0 + 1 Motor (medium) + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 20 470 + 164 - - true - true - 1 - false - 39872d87:13e14015f61:18a9 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m0.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)m0.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 160 false - $(pv_name) -$(pv_value) 515 + 160 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:18aa - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m0.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)m0.VAL - - - - false - 0 - - - false - - - - 0 - - 168 + false + true + false + false + + $(pv_name) $(pv_value) - 515 - - - false - true - 39872d87:13e14015f61:18b0 - - 15 - Action Button - false - - true - true - false - - $(P)m0.TWF - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 160 + false + true + Text Input + 50 + 515 + 168 + + $(P)m0.TWF 1 10 + - $(pv_name) -$(pv_value) - 585 - - + false + false + + + false - true - 39872d87:13e14015f61:18b1 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m0.TWF + + true true false - $(P)m0.TWR - - - - - - + + + + + false + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 585 160 + + $(P)m0.TWR 1 10 + - $(pv_name) -$(pv_value) - 565 - - - true - 1 - 39872d87:13e14015f61:18b2 - false - - 14 - Label - - true - true - false - - true - false + false + false - + - - - - Label - true - X - - - - 10 - 0 - - 1 + false - 0 - - 227 - true - - 490 - - - false - true - false - 39872d87:13e14015f61:18b3 - - 20 - Menu Button + 0 + 1 + true + + Default + false + + + + 15 + + Action Button + 0 + $(P)m0.TWR + + true true false - false - + + + - + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 565 + 160 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 20 - 6 - + + + + 14 + 0 + Label - - 1 - - - - 224 + + true + true + false + + + false + X + + true + 1 + true + Label + 10 + false + 490 + 227 + + motorx.opi @@ -18562,7 +18644,7 @@ $(pv_value) true m13 - 0 + 1 Motor (small) @@ -18571,470 +18653,498 @@ $(pv_value) true m13 - 0 + 1 Motor (medium) - $(pv_name) -$(pv_value) - 470 - - - true - true - 1 - false - 39872d87:13e14015f61:18b4 - false - 0.0 - - 10 - Text Update + false + false + false + + + + false + + + + 6 + 1 + true + + Default + false + + + + 20 + + Menu Button + + + true true false - 1 - true + + false + $(pv_name) +$(pv_value) false - $(P)m13.RBV + true + Menu Button + 20 + 470 + 224 + + + + false + false + false - + - - - - Text Update - true - ###### - false - 0 - - - - 50 - 0 - - - 1 + true + 0 + 1 + true + + + + false + + + + 1 + 10 1 - - 220 - false + Text Update + 0 + true + $(P)m13.RBV + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 50 + false 515 + 220 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:18b5 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m13.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)m13.VAL - - - - false - 0 - - - false - - - - 0 - - 228 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 515 + 228 - + + + + $(P)m13.TWF + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:18bb - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m13.TWF + + true true false - $(P)m13.TWF - - - - - - - Action Button - true + + + - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 585 220 + + - $(P)m13.TWF + $(P)m13.TWR 1 10 + - $(pv_name) -$(pv_value) - 585 - - + false + false + + + false - true - 39872d87:13e14015f61:18bc - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m13.TWR + + true true false - $(P)m13.TWR - - - - - - - Action Button - true + + - - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 220 - - - $(P)m13.TWR - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 565 + 220 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:18bd - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m0.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m0.TWV - - - - false - 0 - - - false - - - - 0 - - 173 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 565 + 173 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:18be - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m14.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m14.TWV - - - - false - 0 - - - false - - - - 0 - - 203 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 565 + 203 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:18bf - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m13.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m13.TWV - - - - false - 0 - - - false - - - - 0 - - 233 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 565 + 233 - - true - 1 - 39872d87:13e14015f61:18c0 + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - Y - - - - 15 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 167 - true - - 185 - - - false - true - false - 39872d87:13e14015f61:18c1 - - 20 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 164 + + false + Y + + true + 1 + true + Label + 15 + false + 185 + 167 + + motorx.opi @@ -19042,7 +19152,7 @@ $(pv_value) true m20 - 0 + 1 Motor (small) @@ -19051,93 +19161,93 @@ $(pv_value) true m20 - 0 + 1 Motor (medium) - - $(pv_name) -$(pv_value) - 165 - - - true - 1 - 39872d87:13e14015f61:18c2 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - X - - - - 15 - 0 - - 1 - - - - 0 - - 197 - true - - 185 - - - false - true + false - 39872d87:13e14015f61:18c3 - + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + + + true true false + + false + $(pv_name) +$(pv_value) false - + true + Menu Button + 20 + 165 + 164 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 20 - 6 - + + + + 14 + 0 + Label - - 1 - - - - 194 + + true + true + false + + + false + X + + true + 1 + true + Label + 15 + false + 185 + 197 + + motorx.opi @@ -19145,7 +19255,7 @@ $(pv_value) true m19 - 0 + 1 Motor (small) @@ -19154,218 +19264,173 @@ $(pv_value) true m19 - 0 + 1 Motor (medium) - $(pv_name) -$(pv_value) - 165 - - - true - 1 - 39872d87:13e14015f61:18c4 - false - - 14 - Label - - true - true - false - - true - false + false + false + false - + - - - - Label - true - - - - - - 15 - 0 - - 1 + false - 0 - - 227 - true - - 185 - - - false - true - false - 39872d87:13e14015f61:18c5 - + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + + + true true false + + false + $(pv_name) +$(pv_value) false - - - - - - - + true Menu Button - true - false - - Default - 20 - 6 - - - - 1 - - - - 224 - - $(pv_name) -$(pv_value) 165 + 194 - - true - 1 - 39872d87:13e14015f61:18c6 + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - 0Y - - - - 15 - 0 - - 1 - 0 - - 227 - true - - 185 - - - true - 1 - 39872d87:13e14015f61:18c7 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + - + + true + 1 + true + Label + 15 + false + 185 + 227 + + + + false - - - - Label - true - Z - - - - 15 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 317 - true - - 185 - - - false - true - false - 39872d87:13e14015f61:18c8 - - 20 - Menu Button - false + Label + true true false - false - + + false + 0Y + + true + 1 + true + Label + 15 + false + 185 + 227 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 20 - 6 - + + + + 14 + 0 + Label - - 1 - - - - 314 + + true + true + false + + + false + Z + + true + 1 + true + Label + 15 + false + 185 + 317 + + motorx.opi @@ -19373,7 +19438,7 @@ $(pv_value) true m18 - 0 + 1 Motor (small) @@ -19382,1271 +19447,1229 @@ $(pv_value) true m18 - 0 + 1 Motor (medium) - $(pv_name) -$(pv_value) - 165 - - - true - 1 - 39872d87:13e14015f61:18c9 - false - - 14 - Label - - true - true - false - - true - false + false + false + false - + - - - - Label + false + + + + 6 + 1 true - - - + Default - 15 - 0 + false + + + + 20 + + Menu Button + + - 1 - - - - 0 - - 287 - true - - 185 - - - true - 1 - 39872d87:13e14015f61:18ca - false - - 14 - Label true true false - true - false + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 20 + 165 + 314 + + + + false - - - - Label - true - 0Z - - - - 15 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 287 - true - - 185 - - - false - true - false - 39872d87:13e14015f61:18cb - - 20 - Menu Button - false + Label + true true false - false - + + false + - + + true + 1 + true + Label + 15 + false + 185 + 287 + + + + false - + - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - 284 - - $(pv_name) -$(pv_value) - 165 - - - true - 1 - 39872d87:13e14015f61:18cc - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + 0Z + + true + 1 + true + Label + 15 + false + 185 + 287 + + + + false - - - - Label - true - - - - - - 15 - 0 - - 1 - 0 - - 257 - true - - 185 - - - true - 1 - 39872d87:13e14015f61:18cd - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + - + + true + 1 + true + Label + 15 + false + 185 + 257 + + + + false - - - - Label - true - 0X - - - - 15 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 257 - true - - 185 - - - false - true - false - 39872d87:13e14015f61:18ce - - 20 - Menu Button - false + Label + true true false - false - + + false + 0X + + true + 1 + true + Label + 15 + false + 185 + 257 + + + + + $(P)allstop.VAL + 1 + 10 + + + + + false + false - + - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 + false - 254 - - $(pv_name) -$(pv_value) - 165 - - - false - true - 39872d87:13e14015f61:18dd - + 0 + 1 + true + + Default + + false + + + 40 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)allstop.VAL - - - - - - - Action Button - true + + All Stop - false - - Default - - 100 - 0 - 0 - - - false - 1 - - - - 206 - - - $(P)allstop.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 100 620 + 206 - - true - 1 - 39872d87:13e14015f61:18df + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true Huber 430 - - - - 310 - 0 - - 1 - - - - 1 - - 250 - true + true + 1 + true + Label + 310 + false 410 + 250 - - true - true - 1 - false - 39872d87:13e14015f61:18e1 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m16.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)m16.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 300 false - $(pv_name) -$(pv_value) 625 - - - false - true - 1 - false - false - - 16 - false - true + 300 + + + + false + false + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:18e2 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m16.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)m16.VAL - - - - false - 0 - - - false - - - - 0 - - 308 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 625 + 308 - + + + + $(P)m16.TWR + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:18e8 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m16.TWR + + true true false - $(P)m16.TWR - - - - - - - Action Button - true + + - - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 675 300 + + - $(P)m16.TWR + $(P)m16.TWF 1 10 + - $(pv_name) -$(pv_value) - 675 - - + false + false + + + false - true - 39872d87:13e14015f61:18e9 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m16.TWF + + true true false - $(P)m16.TWF - - - - - - - Action Button - true + + + - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 300 - - - $(P)m16.TWF - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 695 + 300 - - true - true - 1 - false - 39872d87:13e14015f61:18ea + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m15.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)m15.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 270 false - $(pv_name) -$(pv_value) 625 + 270 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:18eb - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m15.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)m15.VAL - - - - false - 0 - - - false - - - - 0 - - 278 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 625 + 278 - + + + + $(P)m15.TWR + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:18f1 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m15.TWR + + true true false - $(P)m15.TWR - - - - - - - Action Button - true + + - - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 675 270 + + - $(P)m15.TWR + $(P)m15.TWF 1 10 + - $(pv_name) -$(pv_value) - 675 - - + false + false + + + false - true - 39872d87:13e14015f61:18f2 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m15.TWF + + true true false - $(P)m15.TWF - - - - - - - Action Button - true + + + - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 270 - - - $(P)m15.TWF - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 695 + 270 - - true - true - 1 - false - 39872d87:13e14015f61:18f3 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m10.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)m10.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 330 false - $(pv_name) -$(pv_value) 625 + 330 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:18f4 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m10.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)m10.VAL - - - - false - 0 - - - false - - - - 0 - - 338 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 625 + 338 - + + + + $(P)m10.TWR + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:18fa - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m10.TWR + + true true false - $(P)m10.TWR - - - - - - - Action Button - true + + - - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 675 330 + + - $(P)m10.TWR + $(P)m10.TWF 1 10 + - $(pv_name) -$(pv_value) - 675 - - + false + false + + + false - true - 39872d87:13e14015f61:18fb - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m10.TWF + + true true false - $(P)m10.TWF - - - - - - - Action Button - true + + + - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 330 - - - $(P)m10.TWF - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 695 + 330 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:18fc - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m15.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m15.TWV - - - - false - 0 - - - false - - - - 0 - - 283 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 675 + 283 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 + false + + + + 1 + 14 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)m16.TWV - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:18fd + false 0.0 - Text Input + true true false - 1 - false + 0 - $(P)m16.TWV - - - - false - 0 - - - false - - - - 0 - - 313 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 675 + 313 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:18fe - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m10.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m10.TWV - - - - false - 0 - - - false - - - - 0 - - 343 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 675 + 343 - - true - 1 - 39872d87:13e14015f61:18ff + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - 0X - - - - 15 - 0 - - 1 - 0 - - 307 - true - - 595 - - - true - 1 - 39872d87:13e14015f61:1900 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + 0X + + true + 1 + true + Label + 15 + false + 595 + 307 + + + + false - - - - Label - true - - - - - - 15 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 307 - true - - 595 - - - false - true - false - 39872d87:13e14015f61:1901 - - 20 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 304 + + false + - + + true + 1 + true + Label + 15 + false + 595 + 307 + + motorx.opi @@ -20654,7 +20677,7 @@ $(pv_value) true m16 - 0 + 1 Motor (small) @@ -20663,175 +20686,173 @@ $(pv_value) true m16 - 0 + 1 Motor (medium) - $(pv_name) -$(pv_value) - 575 - - - true - 1 - 39872d87:13e14015f61:1902 - false - - 10 - Label + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + true true false - true - false + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 20 + 575 + 304 + + + + false - - - - Label - true - PHI - - - - 15 - 0 - - 1 + 0 + 1 + true + + + + + + + 10 0 - - 310 - true - - 555 - - - true - 1 - 39872d87:13e14015f61:1903 - false - - 14 Label + true true false - true + false + PHI + + true + 1 + true + Label + 15 + false + 555 + 310 + + + + false - - - - Label - true - - - - - - 15 - 0 - - 1 - 0 - - 277 - true - - 595 - - - true - 1 - 39872d87:13e14015f61:1904 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + - + + true + 1 + true + Label + 15 + false + 595 + 277 + + + + false - - - - Label - true - 0Z - - - - 15 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 277 - true - - 595 - - - false - true - false - 39872d87:13e14015f61:1905 - - 20 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 274 + + false + 0Z + + true + 1 + true + Label + 15 + false + 595 + 277 + + motorx.opi @@ -20839,7 +20860,7 @@ $(pv_value) true m15 - 0 + 1 Motor (small) @@ -20848,134 +20869,133 @@ $(pv_value) true m15 - 0 + 1 Motor (medium) - $(pv_name) -$(pv_value) - 575 - - - true - 1 - 39872d87:13e14015f61:1906 - false - - 10 - Label + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + true true false - true - false + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 20 + 575 + 274 + + + + false - - - - Label - true - CHI - - - - 15 - 0 - - 1 + 0 + 1 + true + + + + + + + 10 0 - - 280 - true - - 555 - - - true - 1 - 39872d87:13e14015f61:1907 - false - - 14 Label + true true false - true + false + CHI + + true + 1 + true + Label + 15 + false + 555 + 280 + + + + false - - - - Label - true - Z - - - - 15 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 337 - true - - 595 - - - false - true - false - 39872d87:13e14015f61:1908 - - 20 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 334 + + false + Z + + true + 1 + true + Label + 15 + false + 595 + 337 + + motorx.opi @@ -20983,7 +21003,7 @@ $(pv_value) true m10 - 0 + 1 Motor (small) @@ -20992,929 +21012,976 @@ $(pv_value) true m10 - 0 + 1 Motor (medium) + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 20 575 + 334 - - true - true - 1 - false - 39872d87:13e14015f61:1909 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m7.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)m7.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 300 false - $(pv_name) -$(pv_value) 460 + 300 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:190a - 0.0 + false Text Input - - true - true - false - - 1 - false - 0 - $(P)m7.VAL - - - - false + 0 + false 0 - + true + $(P)m7.VAL + + false + 0.0 - false - - - - 0 - - 308 - $(pv_name) -$(pv_value) - 460 - - - false - true - 39872d87:13e14015f61:1910 - - 15 - Action Button - false true true false - - $(P)m7.TWR - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 300 + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 50 + 460 + 308 + + $(P)m7.TWR 1 10 + - $(pv_name) -$(pv_value) - 510 - - + false + false + + + false - true - 39872d87:13e14015f61:1911 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m7.TWR + + true true false - $(P)m7.TWF - - - - - - + + + - + false + $(pv_name) +$(pv_value) + true Action Button - true - + - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 510 300 + + $(P)m7.TWF 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 15 + + Action Button + 0 + $(P)m7.TWF + + + + true + true + false + + + + + + false $(pv_name) $(pv_value) + true + Action Button + 20 530 + 300 - - true - true - 1 - false - 39872d87:13e14015f61:1912 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m9.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)m9.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 270 false - $(pv_name) -$(pv_value) 460 + 270 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1913 - 0.0 + false Text Input - - true - true - false - - 1 - false - 0 - $(P)m9.VAL - - - - false + 0 + false 0 - + true + $(P)m9.VAL + + false + 0.0 - false - - - - 0 - - 278 - $(pv_name) -$(pv_value) - 460 - - - false - true - 39872d87:13e14015f61:1919 - - 15 - Action Button - false true true false - $(P)m9.TWR - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 270 + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 50 + 460 + 278 + + $(P)m9.TWR 1 10 + - $(pv_name) -$(pv_value) - 510 - - + false + false + + + false - true - 39872d87:13e14015f61:191a - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m9.TWR + + true true false - $(P)m9.TWF - - - - - - + + + - + false + $(pv_name) +$(pv_value) + true Action Button - true - + - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 510 270 + + $(P)m9.TWF 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 15 + + Action Button + 0 + $(P)m9.TWF + + + + true + true + false + + + + + + false $(pv_name) $(pv_value) + true + Action Button + 20 530 + 270 - - true - true - 1 - false - 39872d87:13e14015f61:191b + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m8.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)m8.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 330 false - $(pv_name) -$(pv_value) 460 + 330 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:191c - 0.0 + false Text Input - - true - true - false - - 1 - false - 0 - $(P)m8.VAL - - - - false + 0 + false 0 - + true + $(P)m8.VAL + + false + 0.0 - false - - - - 0 - - 338 - $(pv_name) -$(pv_value) - 460 - - - false - true - 39872d87:13e14015f61:1922 - - 15 - Action Button - false true true false - $(P)m8.TWR - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 330 + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 50 + 460 + 338 + + $(P)m8.TWR 1 10 + - $(pv_name) -$(pv_value) - 510 - - + false + false + + + false - true - 39872d87:13e14015f61:1923 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m8.TWR + + true true false - $(P)m8.TWF - - - - - - + + + - + false + $(pv_name) +$(pv_value) + true Action Button - true - + - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 510 330 + + $(P)m8.TWF 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 15 + + Action Button + 0 + $(P)m8.TWF + + + + true + true + false + + + + + + false $(pv_name) $(pv_value) + true + Action Button + 20 530 + 330 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1924 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m9.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m9.TWV - - - - false - 0 - - - false - - - - 0 - - 283 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 510 + 283 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1925 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m7.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m7.TWV - - - - false - 0 - - - false - - - - 0 - - 313 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 510 + 313 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1926 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m8.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m8.TWV - - - - false - 0 - - - false - - - - 0 - - 343 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 510 + 343 - - true - 1 - 39872d87:13e14015f61:1927 + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - - - - - - 15 - 0 - - 1 - 0 - - 307 - true - - 430 - - - true - 1 - 39872d87:13e14015f61:1928 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + - + + true + 1 + true + Label + 15 + false + 430 + 307 + + + + false - - - - Label - true - 0 - - - - 15 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 307 - true - - 430 - - - false - true - false - 39872d87:13e14015f61:1929 - - 20 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 304 + + false + 0 + + true + 1 + true + Label + 15 + false + 430 + 307 + + motorx.opi @@ -21922,7 +21989,7 @@ $(pv_value) true m7 - 0 + 1 Motor (small) @@ -21931,93 +21998,93 @@ $(pv_value) true m7 - 0 + 1 Motor (medium) - $(pv_name) -$(pv_value) - 410 - - - true - 1 - 39872d87:13e14015f61:192a - false - - 14 - Label - - true - true - false - - true - false + false + false + false - + - - - - Label - true - X - - - - 15 - 0 - - 1 + false - 0 - - 277 - true - - 430 - - - false - true - false - 39872d87:13e14015f61:192b - + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + + + true true false + + false + $(pv_name) +$(pv_value) false - + true + Menu Button + 20 + 410 + 304 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 20 - 6 - + + + + 14 + 0 + Label - - 1 - - - - 274 + + true + true + false + + + false + X + + true + 1 + true + Label + 15 + false + 430 + 277 + + motorx.opi @@ -22025,7 +22092,7 @@ $(pv_value) true m9 - 0 + 1 Motor (small) @@ -22034,134 +22101,133 @@ $(pv_value) true m9 - 0 + 1 Motor (medium) - $(pv_name) -$(pv_value) - 410 - - - true - 1 - 39872d87:13e14015f61:192c - false - - 14 - Label + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + true true false - true - false + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 20 + 410 + 274 + + + + false - - - - Label - true - - - - - - 15 - 0 - - 1 - 0 - - 337 - true - - 430 - - - true - 1 - 39872d87:13e14015f61:192d - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + - + + true + 1 + true + Label + 15 + false + 430 + 337 + + + + false - - - - Label - true - 20 - - - - 15 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 337 - true - - 430 - - - false - true - false - 39872d87:13e14015f61:192e - - 20 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 334 + + false + 20 + + true + 1 + true + Label + 15 + false + 430 + 337 + + motorx.opi @@ -22169,7 +22235,7 @@ $(pv_value) true m8 - 0 + 1 Motor (small) @@ -22178,187 +22244,187 @@ $(pv_value) true m8 - 0 + 1 Motor (medium) - $(pv_name) -$(pv_value) - 410 - - + false + false + false + + + false - true - 140 - 39872d87:13e14015f61:192f - 290 - - 80 - true - Arc + + + + 6 + 1 + true + + Default + false - 255 + + + + 20 + + Menu Button + + + true true - true + false - + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 20 + 410 + 334 + + + + false + 255 + true + false - - - - Arc - true - false - - Default - - 24 - 0 - false - 0 - - - 1 - 1 + false - - 40 - $(pv_name) -$(pv_value) - 545 - - - false - true - 140 - 39872d87:13e14015f61:1930 - 110 - + 0 + 1 + true + false + + Default + + false + + + 80 - true + 0 + 1 Arc - false - 255 + + + true true true - + + 290 + $(pv_name) +$(pv_value) + 140 + true + Arc + 24 + 545 + 40 + + + + false + 255 + true + false - - - - Arc + false + + + + 0 + 1 true - false + false - Default + Default - 24 + false + + + + 80 0 - false - 0 - - - 1 1 - - - - - 40 + Arc + + + + + true + true + true + + + 110 $(pv_name) $(pv_value) + 140 + true + Arc + 24 553 + 40 - - true - 1 - 39872d87:13e14015f61:1932 + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - X - - - - 10 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 97 - true - - 600 - - - false - true - false - 39872d87:13e14015f61:1933 - - 20 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 94 + + false + X + + true + 1 + true + Label + 10 + false + 600 + 97 + + motorx.opi @@ -22366,7 +22432,7 @@ $(pv_value) true m23 - 0 + 1 Motor (small) @@ -22375,343 +22441,352 @@ $(pv_value) true m23 - 0 + 1 Motor (medium) + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 20 580 + 94 - - true - true - 1 - false - 39872d87:13e14015f61:1934 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m23.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)m23.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 90 false - $(pv_name) -$(pv_value) 625 + 90 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1935 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m23.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)m23.VAL - - - - false - 0 - - - false - - - - 0 - - 98 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 625 + 98 - - true - 1 - 39872d87:13e14015f61:193b + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - Camera - - - - 135 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 1 - - 40 - true - - 580 - - - false - true - 39872d87:13e14015f61:193d - - 15 - Action Button - false + Label + true true false - $(P)m23.TWF - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 90 + + false + Camera + + true + 1 + true + Label + 135 + false + 580 + 40 + + $(P)m23.TWF 1 10 + - $(pv_name) -$(pv_value) - 695 - - + false + false + + + false - true - 39872d87:13e14015f61:193e - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m23.TWF + + true true false - $(P)m23.TWR - - - - - - + + + + + false + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 695 90 + + $(P)m23.TWR 1 10 + - $(pv_name) -$(pv_value) - 675 - - - true - 1 - 39872d87:13e14015f61:193f - false - - 14 - Label - - true - true - false - - true - false + false + false - + - - - - Label - true - Y - - - - 10 - 0 - - 1 + false - 0 - - 67 - true - - 600 - - - false - true - false - 39872d87:13e14015f61:1940 - - 20 - Menu Button + 0 + 1 + true + + Default + false + + + + 15 + + Action Button + 0 + $(P)m23.TWR + + true true false - false - + + + - + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 675 + 90 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 20 - 6 - + + + + 14 + 0 + Label - - 1 - - - - 64 + + true + true + false + + + false + Y + + true + 1 + true + Label + 10 + false + 600 + 67 + + motorx.opi @@ -22719,7 +22794,7 @@ $(pv_value) true m24 - 0 + 1 Motor (small) @@ -22728,373 +22803,396 @@ $(pv_value) true m24 - 0 + 1 Motor (medium) + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 20 580 + 64 - - true - true - 1 - false - 39872d87:13e14015f61:1941 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)m24.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)m24.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 60 false - $(pv_name) -$(pv_value) 625 + 60 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1942 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m24.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)m24.VAL - - - - false - 0 - - - false - - - - 0 - - 68 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 625 + 68 - + + + + $(P)m24.TWF + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1948 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m24.TWF + + true true false - $(P)m24.TWF - - - - - - - Action Button - true + + + - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 695 60 + + - $(P)m24.TWF + $(P)m24.TWR 1 10 + - $(pv_name) -$(pv_value) - 695 - - + false + false + + + false - true - 39872d87:13e14015f61:1949 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)m24.TWR + + true true false - $(P)m24.TWR - - - - - - - Action Button - true + + - - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 60 - - - $(P)m24.TWR - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 675 + 60 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:194a - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m24.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m24.TWV - - - - false - 0 - - - false - - - - 0 - - 73 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 675 + 73 - - false - true - 1 - false + + + false false - - 14 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 14 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:194b - 0.0 + false Text Input + 0 + false + 0 + true + $(P)m23.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)m23.TWV - - - - false - 0 - - - false - - - - 0 - - 103 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 675 + 103 - - false - true - false - 39872d87:13e14015f61:194c - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 50 - 6 - - - - 1 - - - - 367 + 2iddMicroscope.opi @@ -23107,12 +23205,51 @@ $(pv_value) m31 m32 - 1 + 0 Microscope (small) + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + Less + false $(pv_name) $(pv_value) + true + Action Button + 50 532 + 367 - \ No newline at end of file + diff --git a/opticsApp/op/opi/2postMirror.opi b/opticsApp/op/opi/autoconvert/2postMirror.opi similarity index 85% rename from opticsApp/op/opi/2postMirror.opi rename to opticsApp/op/opi/autoconvert/2postMirror.opi index a5d2804..266a7fa 100644 --- a/opticsApp/op/opi/2postMirror.opi +++ b/opticsApp/op/opi/autoconvert/2postMirror.opi @@ -1,5246 +1,5263 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 290 true - 39872d87:13e14015f61:1aec - 3.1.2.20120830 + 2postMirror + + true + true + false true - 290 - 2postMirror false - false - - - - - - Display - true 460 - - true - 5 - - false - -1 - -1 - - - 27 263 - + 27 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 38 + true - 39872d87:13e14015f61:1aed - - - - - 38 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 105 + 350 + 225 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 105 - 0 - 0 - - - 1 - 0 - true - - - - - 225 - $(pv_name) -$(pv_value) - 350 + false + + + false - - - false - true - 100.0 + 38 + true - 39872d87:13e14015f61:1aee - - - - - 38 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 105 + 235 + 225 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 105 - 0 - 0 - - - 1 - 0 - true - - - - - 225 - $(pv_name) -$(pv_value) - 235 + false + + + false - - - false - true - 100.0 + 38 + true - 39872d87:13e14015f61:1aef - - - - - 38 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 105 + 125 + 225 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 105 + false + + + + false + 155 + true + + + 0 - 0 - + 2 + Rectangle + - 1 - 0 - true - - - - - 225 - $(pv_name) -$(pv_value) - 125 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:1af0 - - - - - 155 - true - Rectangle - false - 255 + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 106 + 10 + 110 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 106 - 0 - 0 - - - 1 - 2 - true - - - - - 110 - $(pv_name) -$(pv_value) - 10 + false + + + false - - - false - true - 100.0 + 38 + true - 39872d87:13e14015f61:1b12 - - - - - 38 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 105 + 10 + 225 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 105 - 0 - 0 - - - 1 - 0 - true - - - - - 225 - $(pv_name) -$(pv_value) - 10 + false + + + false - - - false - true - 0.0 + 155 + true - + - 39872d87:13e14015f61:1b51 - - - - - 155 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 106 + 125 + 110 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 106 - 0 - 0 - - - 1 - 2 - true - - - - - 110 - $(pv_name) -$(pv_value) - 125 + false + + + false - - - false - true - 0.0 + 155 + true - + - 39872d87:13e14015f61:1b52 - - - - - 155 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 106 + 235 + 110 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 106 - 0 - 0 - - - 1 - 2 - true - - - - - 110 - $(pv_name) -$(pv_value) - 235 + false + + + false - - - false - true - 0.0 + 155 + true - + - 39872d87:13e14015f61:1b53 - - - - - 155 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 106 + 350 + 110 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 106 - 0 - 0 - - - 1 - 2 - true - - - - - 110 - $(pv_name) -$(pv_value) - 350 + false + + + false - - - false - true - 100.0 + 31 + true - 39872d87:13e14015f61:1b64 - - - - - 31 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle - true - - - - false - - Default - 460 - 0 - 0 - - - 1 - 0 - true + 0 + 0 + + + + + + - - 0 - $(pv_name) -$(pv_value) - 0 - false - - + 0 + 1 + true + false + + Default + + + + + 20 + false true - true - 39872d87:13e14015f61:1af1 - - 20 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 70 - 0 - - false - 1 - - - - - 112 - 140 - - true - 1 - 39872d87:13e14015f61:1af2 + 112 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + Y + + true + 1 + true + Label + 10 + false + 0 + 0 + + + + false - - - - Label - true - Y - - - - 10 - 0 - - 1 - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:1af3 - false - + 0 + 1 + true + + + + + + 12 + 0 Label + true true false - true + false - - - - - - - Label - true AVERAGE - - - + + true + 1 + true + Label 60 - 0 - - 1 - - - - 0 - - 8 - true - + false 10 + 8 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 20 + false true - true - 39872d87:13e14015f61:1b08 - - 20 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 70 - 0 - - false - 1 - - - - - 112 - 15 - - true - 1 - 39872d87:13e14015f61:1b09 + 112 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + Y + + true + 1 + true + Label + 10 + false + 0 + 0 + + + + false - - - - Label - true - Y - - - - 10 - 0 - - 1 - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:1b0a - false - + 0 + 1 + true + + + + + + 12 + 0 Label + true true false - true + false - - - - - - - Label - true DOWNSTREAM - - - - 60 - 0 - - 1 - - - - 0 - - 8 - true + true + 1 + true + Label + 60 + false 10 + 8 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 20 + false true - true - 39872d87:13e14015f61:1b14 - - 20 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 70 - 0 - - false - 1 - - - - - 112 - 360 - - true - 1 - 39872d87:13e14015f61:1b15 + 112 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + Y + + true + 1 + true + Label + 10 + false + 0 + 0 + + + + false - - - - Label - true - Y - - - - 10 - 0 - - 1 - 0 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:1b16 - false - + 0 + 1 + true + + + + + + 12 + 0 Label + true true false - true + false - - - - - - - Label - true UPSTREAM - - - - 60 - 0 - - 1 - - - - 0 - - 8 - true + true + 1 + true + Label + 60 + false 10 + 8 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 71 + false true - true - 39872d87:13e14015f61:1b1c - - 71 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 276 - 0 - - false - 1 - - - - - 35 - 118 - + 35 + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 24 + false true - true - 39872d87:13e14015f61:1b1f - - 24 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 10 - 0 - - false - 1 - - - - - 25 - 17 - + 25 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b20 - 0.0 - - 0 + + Default + + false + + + 25 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 1 + 0 + 0 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true + false - - 0 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b21 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 11 + 0 + 0 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 11 + false + + + + 1 + true 0 - 0 - - - 1 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:1b22 - 0.0 - - 0 - 1 - true Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 6 + 0 + 21 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 6 - 0 - 0 - - - 1 - 1 - true + false - - 21 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b23 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 6 + 0 + 15 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 6 - 0 - 0 - - - 1 - 1 - true + false - - 15 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b24 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 6 + 0 + 18 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 6 - 0 - 0 - - - 1 - 1 - true + false - - 18 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b25 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 6 - 0 - 0 - - 1 - 1 - true - - - - - 3 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:1b26 0.0 - - 0 - 1 - true - Polyline - false - 255 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 6 + 0 + 3 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 6 - 0 - 0 - - - 1 - 1 - true + false - - 6 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b27 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 6 + 0 + 6 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 6 - 0 - 0 - - - 1 - 1 - true + false - - 9 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b28 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 6 + 0 + 9 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 11 - 0 - 0 - - - 1 - 1 - true + false - - 12 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b29 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - - - - - - - + true Polyline - true + 11 + 0 + 12 + + + + false + 255 + true + 20 + 0 false + + + + false + + + + 0 + 1 + true + true + 100.0 - Default + Default - 11 + false + + + + 1 + true 0 - 0 - - - 1 1 - true - - - - - 24 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 11 0 + 24 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 24 + false true - true - 39872d87:13e14015f61:1b2a - - 24 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 10 - 0 - - false - 1 - - - - - 37 - 120 - + 37 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b2b - 0.0 - - 0 + + Default + + false + + + 25 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 1 + 0 + 0 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true + false - - 0 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b2c - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 11 + 0 + 0 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 11 + false + + + + 1 + true 0 - 0 - - - 1 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:1b2d - 0.0 - - 0 - 1 - true Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 6 + 0 + 21 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 6 - 0 - 0 - - - 1 - 1 - true + false - - 21 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b2e - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 6 + 0 + 15 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 6 - 0 - 0 - - - 1 - 1 - true + false - - 15 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b2f - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 6 + 0 + 18 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 6 - 0 - 0 - - - 1 - 1 - true + false - - 18 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b30 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - - - - - - - + true Polyline - true - false - - Default - 6 - 0 - 0 - - - 1 - 1 - true - - - - - 3 - $(pv_name) -$(pv_value) 0 + 3 - - false - true + + + false + 255 + true 20 - true - 100.0 - 39872d87:13e14015f61:1b31 - 0.0 - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - true - + false - - - - Polyline - true - false - - Default - - 6 - 0 - 0 - - - 1 - 1 - true + false - - 6 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b32 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 6 + 0 + 6 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 6 - 0 - 0 - - - 1 - 1 - true + false - - 9 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b33 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 6 + 0 + 9 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 11 - 0 - 0 - - - 1 - 1 - true + false - - 12 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b34 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 11 + 0 + 12 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 11 + false + + + + 1 + true 0 - 0 - - - 1 1 - true - - - - - 24 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 11 0 + 24 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 24 + false true - true - 39872d87:13e14015f61:1b35 - - 24 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 10 - 0 - - false - 1 - - - - - 47 - 210 - + 47 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b36 - 0.0 - - 0 + + Default + + false + + + 25 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 1 + 0 + 0 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true + false - - 0 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b37 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 11 + 0 + 0 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 11 - 0 - 0 - - - 1 - 1 - true + false - - 0 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b38 - 0.0 - - 0 - 1 - true - Polyline + + Default + false - 255 + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 6 + 0 + 21 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 6 - 0 - 0 - - - 1 - 1 - true + false - - 21 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b39 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 6 + 0 + 15 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 6 - 0 - 0 - - - 1 - 1 - true + false - - 15 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b3a - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 6 + 0 + 18 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 6 - 0 - 0 - - - 1 - 1 - true + false - - 18 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b3b - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 6 + 0 + 3 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 6 + false + + + + 1 + true 0 - 0 - - - 1 1 - true - - - - - 3 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:1b3c - 0.0 - - 0 - 1 - true Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 6 + 0 + 6 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 6 - 0 - 0 - - - 1 - 1 - true + false - - 6 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b3d - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 6 + 0 + 9 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 6 - 0 - 0 - - - 1 - 1 - true + false - - 9 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b3e - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 11 + 0 + 12 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 11 - 0 - 0 - - - 1 - 1 - true + false - - 12 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b3f - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 11 - 0 - 0 - - 1 - 1 - true - - - - - 24 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 11 0 + 24 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 10 + false true - true - 39872d87:13e14015f61:1b41 - - 10 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 101 - 0 - - false - 1 - - - - - 14 - 173 - + 14 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b42 - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 101 - 0 - 0 - - 1 - 1 - true - - - - - 5 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 101 0 + 5 - - true - 1 - 39872d87:13e14015f61:1b43 + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 0 Label + true true false - true + false - - - - - - - Label - true INCIDENT BEAM - - - - 80 - 0 - - 1 - - - - 0 - - 0 - true + true + 1 + true + Label + 80 + false 21 + 0 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b1d - 0.0 - - 0 + + Default + + false + + + 27 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 228 + 3 + 20 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 228 - 0 - 0 - - - 1 - 1 - true + false - - 20 - $(pv_name) -$(pv_value) - 3 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b1e - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 155 + 121 + 29 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 155 - 0 - 0 - - - 1 - 1 - true + false - - 29 - $(pv_name) -$(pv_value) - 121 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b40 - 0.0 - - 0 + + Default + + false + + + 28 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 106 + 14 + 1 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 106 - 0 - 0 - - - 1 - 1 - true + false - - 1 - $(pv_name) -$(pv_value) - 14 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b44 - 0.0 - - 0 + + Default + + false + + + 2 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 20 + 14 + 1 + + + + false + 255 + true + false - - - - Polyline + false + + + + 0 + 1 true - false + false - Default + Default - 20 + false + + + + 20 0 - 0 - - - 1 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 14 - - - false - true - 65 - 39872d87:13e14015f61:1b45 - 328 - - 20 - true Arc - false - 255 + + + true true true - - - - - - - - Arc - true - false - - Default - - 20 - 0 - false - 0 - - - 1 - 1 - - - - - 23 + + 328 $(pv_name) $(pv_value) + 65 + true + Arc + 20 172 + 23 - - true - true - 1 - false - 39872d87:13e14015f61:1af4 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)$(Q)t2.D + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(Q)t2.D - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 145 false - $(pv_name) -$(pv_value) 128 + 145 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1af5 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)avg.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)avg.VAL - - - - false - 0 - - - false - - - - 0 - - 165 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 128 + 165 - + + + + $(P)$(Q)avg_tweak.A + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1af6 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(Q)avg_tweak.A + + true true false - $(P)$(Q)avg_tweak.A - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 205 - - - $(P)$(Q)avg_tweak.A - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 128 + 205 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1af7 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)avg_tweakVal + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)avg_tweakVal - - - - false - 0 - - - false - - - - 0 - - 205 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 148 + 205 - + + + + $(P)$(Q)avg_tweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1af8 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(Q)avg_tweak.B + + true true false - $(P)$(Q)avg_tweak.B - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 205 - - - $(P)$(Q)avg_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 208 + 205 - - true - true - 1 - false - 39872d87:13e14015f61:1af9 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(Q)t3.G + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(Q)t3.G - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 190 false - $(pv_name) -$(pv_value) 128 + 190 - - true - true - 1 - false - 39872d87:13e14015f61:1afa + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(Q)t3.H + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(Q)t3.H - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 130 false - $(pv_name) -$(pv_value) 128 + 130 - - true - true - 1 - false - 39872d87:13e14015f61:1afb + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(Q)avg.EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(Q)avg.EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 20 - 0 - - - 1 - - - - 0 - - 115 false - $(pv_name) -$(pv_value) 200 + 115 - - true - 1 - 39872d87:13e14015f61:1afc + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true Angle - - - - 60 - 0 - - 1 - - - - 1 - - 112 - true + true + 1 + true + Label + 60 + false 237 + 112 - - true - true - 1 - false - 39872d87:13e14015f61:1afd + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)$(Q)t2.C + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(Q)t2.C - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 145 false - $(pv_name) -$(pv_value) 237 + 145 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1afe - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)angl.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)angl.VAL - - - - false - 0 - - - false - - - - 0 - - 165 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 237 + 165 - - false - true - 39872d87:13e14015f61:1aff - - 20 - Action Button - false - - true - true - false - - $(P)$(Q)angl_tweak.A - - - - - - - Action Button - true - < - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 205 + $(P)$(Q)angl_tweak.A 1 10 + - $(pv_name) -$(pv_value) - 237 - - - false - true - 1 - false - false - - 20 - false - true + false + false - + - Text Input + false + + + + 0 + 1 true - - + Default - 60 - 3 + false + + + + 20 + + Action Button + 0 + $(P)$(Q)angl_tweak.A - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:1b00 - 0.0 - Text Input + true true false - 1 - false - 0 - $(P)$(Q)angl_tweakVal - - - - false - 0 - - - false - - - - 0 - - 205 + + + < + false $(pv_name) $(pv_value) - 257 + true + Action Button + 20 + 237 + 205 - + + + false + false + false + + + false - true - 39872d87:13e14015f61:1b01 - - 20 - Action Button + + + + 3 + 1 + + true + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q)angl_tweakVal + + false + 0.0 + true true false - $(P)$(Q)angl_tweak.B - - - - - - - Action Button - true - > - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 257 205 + + $(P)$(Q)angl_tweak.B 1 10 + - $(pv_name) -$(pv_value) - 317 - - + false + false + + + false - true - 39872d87:13e14015f61:1b02 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(Q)angl_tweak.B + + true true false - $(P)$(Q)up_tweak.A - - - - - - + + + > + false + $(pv_name) +$(pv_value) + true Action Button - true - < - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 317 205 + + $(P)$(Q)up_tweak.A 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(Q)up_tweak.A + + + + true + true + false + + + + < + false $(pv_name) $(pv_value) + true + Action Button + 20 352 + 205 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1b03 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)up_tweakVal + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)up_tweakVal - - - - false - 0 - - - false - - - - 0 - - 205 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 372 + 205 - + + + + $(P)$(Q)up_tweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1b04 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(Q)up_tweak.B + + true true false - $(P)$(Q)up_tweak.B - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 205 - - - $(P)$(Q)up_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 432 + 205 - - true - true - 1 - false - 39872d87:13e14015f61:1b05 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(Q)t3.E + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(Q)t3.E - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 190 false - $(pv_name) -$(pv_value) 238 + 190 - - true - true - 1 - false - 39872d87:13e14015f61:1b06 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(Q)t3.F + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(Q)t3.F - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 130 false - $(pv_name) -$(pv_value) 238 + 130 - - true - true - 1 - false - 39872d87:13e14015f61:1b07 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(Q)angl.EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(Q)angl.EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 40 - 0 - - - 1 - - - - 0 - - 115 false - $(pv_name) -$(pv_value) 297 + 115 - - true - true - 1 - false - 39872d87:13e14015f61:1b0b + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)$(Q)t2.A + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(Q)t2.A - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 145 false - $(pv_name) -$(pv_value) 13 + 145 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1b0c - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)dn.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)dn.VAL - - - - false - 0 - - - false - - - - 0 - - 165 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 13 + 165 - + + + + $(P)$(Q)dn_tweak.A + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1b0d - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(Q)dn_tweak.A + + true true false - $(P)$(Q)dn_tweak.A - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 205 - - - $(P)$(Q)dn_tweak.A - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 13 + 205 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1b0e - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)dn_tweakVal + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)dn_tweakVal - - - - false - 0 - - - false - - - - 0 - - 205 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 33 + 205 - + + + + $(P)$(Q)dn_tweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1b0f - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(Q)dn_tweak.B + + true true false - $(P)$(Q)dn_tweak.B - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 205 - - - $(P)$(Q)dn_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 93 + 205 - - true - true - 1 - false - 39872d87:13e14015f61:1b10 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(mDn).LLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(mDn).LLM - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 190 false - $(pv_name) -$(pv_value) 13 + 190 - - true - true - 1 - false - 39872d87:13e14015f61:1b11 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(mDn).HLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(mDn).HLM - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 130 false - $(pv_name) -$(pv_value) 13 + 130 - - true - true - 1 - false - 39872d87:13e14015f61:1b13 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(mDn).EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(mDn).EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 20 - 0 - - - 1 - - - - 0 - - 115 false - $(pv_name) -$(pv_value) 90 + 115 - - true - true - 1 - false - 39872d87:13e14015f61:1b17 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)$(Q)t2.B + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(Q)t2.B - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 145 false - $(pv_name) -$(pv_value) 352 + 145 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1b18 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)up.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)up.VAL - - - - false - 0 - - - false - - - - 0 - - 165 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 352 + 165 - - true - true - 1 - false - 39872d87:13e14015f61:1b19 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(mUp).LLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(mUp).LLM - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 190 false - $(pv_name) -$(pv_value) 353 + 190 - - true - true - 1 - false - 39872d87:13e14015f61:1b1a + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(mUp).HLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(mUp).HLM - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 130 false - $(pv_name) -$(pv_value) 353 + 130 - - true - true - 1 - false - 39872d87:13e14015f61:1b1b + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(mUp).EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(mUp).EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 20 - 0 - - - 1 - - - - 0 - - 115 false - $(pv_name) -$(pv_value) 424 + 115 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b46 - 0.0 - - 0 + + Default + + false + + + 39 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 77 - 0 - 0 - - 1 - 1 - true - - - - - 72 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 77 59 + 72 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b47 - 0.0 - - 0 + + Default + + false + + + 27 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 66 - 0 - 0 - - 1 - 1 - true - - - - - 84 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 66 173 + 84 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b48 - 0.0 - - 0 + + Default + + false + + + 19 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 67 - 0 - 0 - - 1 - 1 - true - - - - - 93 - $(pv_name) -$(pv_value) - 337 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:1b49 0.0 - - 0 - 44 - true - Polyline - false - 255 + true true true - - - - - - true - + + $(pv_name) +$(pv_value) + false + true + Polyline + 67 + 337 + 93 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 28 + false + + + + 44 + true 0 - 0 - - - 1 1 - true - - - - - 67 - $(pv_name) -$(pv_value) - 283 - - - false - true - 39872d87:13e14015f61:1b4a - - 21 - Choice Button - false + Polyline + + + + + + + + 0.0 + true true - false + true - $(P)$(Q)set.VAL + + $(pv_name) +$(pv_value) + true + true + Polyline + 28 + 283 + 67 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 78 - 0 - - - - - + false + + + + 21 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 270 + Choice Button + $(P)$(Q)set.VAL + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 78 0 + 270 - - true - 1 - 39872d87:13e14015f61:1b4b + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true length - - - - 60 - 0 - - 1 - - - - 0 - - 270 - true + true + 1 + true + Label + 60 + false 240 + 270 - - true - true - 1 - false - 39872d87:13e14015f61:1b4c + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(Q)length.EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(Q)length.EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 15 - 0 - - - 1 - - - - 0 - - 273 false - $(pv_name) -$(pv_value) 350 + 273 - - false - true - false - 39872d87:13e14015f61:1b4d - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - - 270 + motorx.opi @@ -5248,7 +5265,7 @@ $(pv_value) true $(mUp) - 0 + 1 Up motor @@ -5257,205 +5274,210 @@ $(pv_value) true $(mDn) - 0 + 1 Dn motor + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 40 150 + 270 - + + + + $(P)$(Q)sync.PROC + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1b4e - + + + + 0 + 1 + true + + Default + + false + + + 21 + Action Button - false + 0 + $(P)$(Q)sync.PROC + + true true false - $(P)$(Q)sync.PROC - - - - - - - Action Button - true + + Sync - false - - Default - - 50 - 0 - 0 - - - false - 1 - - - - 270 - - - $(P)$(Q)sync.PROC - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 50 90 + 270 - - true - true - 1 - false - 39872d87:13e14015f61:1b4f + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(Q)length.VAL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(Q)length.VAL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 45 - 0 - - - 1 - - - - 0 - - 273 false - $(pv_name) -$(pv_value) 300 + 273 - - false - true - 39872d87:13e14015f61:1b50 - - 21 - Action Button - false - - true - true - false - - $(P)allstop.VAL - - - - - - - Action Button - true - All Stop - false - - Default - - 79 - 0 - 0 - - - - false - 1 - - - - 270 + $(P)allstop.VAL 1 10 + - $(pv_name) -$(pv_value) - 380 - - + false + false + + + false - true - false - 39872d87:13e14015f61:1b54 - - 16 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 21 + + Action Button + 0 + $(P)allstop.VAL + + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 94 - 6 - - - - 1 - - - - 228 + + + All Stop + false + $(pv_name) +$(pv_value) + true + Action Button + 79 + 380 + 270 + + scanParmsCustom.opi @@ -5466,52 +5488,54 @@ $(pv_value) $(Q)avg $(Q)avg.EGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 131 - - + false + false + + + false - true - false - 39872d87:13e14015f61:1b55 - - 16 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 16 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + SCAN CONTROL + false + $(pv_name) +$(pv_value) + true + Action Button 94 - 6 - - - - 1 - - - + 131 228 + + scanParmsCustom.opi @@ -5522,52 +5546,54 @@ $(pv_value) $(Q)dn $(Q)dn.EGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 16 - - + false + false + + + false - true - false - 39872d87:13e14015f61:1b56 - - 16 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 16 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + SCAN CONTROL + false + $(pv_name) +$(pv_value) + true + Action Button 94 - 6 - - - - 1 - - - + 16 228 + + scanParmsCustom.opi @@ -5578,52 +5604,54 @@ $(pv_value) $(Q)angl $(Q)angl.EGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 239 - - + false + false + + + false - true - false - 39872d87:13e14015f61:1b57 - - 16 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 16 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + SCAN CONTROL + false + $(pv_name) +$(pv_value) + true + Action Button 94 - 6 - - - - 1 - - - + 239 228 + + scanParmsCustom.opi @@ -5634,776 +5662,844 @@ $(pv_value) $(Q)up $(Q)up.EGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 356 - - + false + false + + + false - true - 39872d87:13e14015f61:1b58 - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + + + true true false - $(P)$(Q)avg:scanParms.LOAD - - - - - - - Action Button - true - LD - false - - Default - - 22 - 0 - 0 - - - + + + SCAN CONTROL false - 1 - - - - 245 + $(pv_name) +$(pv_value) + true + Action Button + 94 + 356 + 228 + + $(P)$(Q)avg:scanParms.LOAD 1 10 + - $(pv_name) -$(pv_value) - 131 - - + false + false + + + false - true - 39872d87:13e14015f61:1b59 - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(Q)avg:scanParms.LOAD + + true true false - $(P)$(Q)avg:scanParms.GO - - - - - - + + + LD + false + $(pv_name) +$(pv_value) + true Action Button - true - GO - false - - Default - 22 - 0 - 0 - - - - false - 1 - - - + 131 245 + + $(P)$(Q)avg:scanParms.GO 1 10 - - - - $(pv_name) -$(pv_value) - 158 - - - false - true - 39872d87:13e14015f61:1b5a - - 16 - Action Button - false - - true - true - false - - $(P)allstop.VAL + + + + + false + false - + - - - - Action Button + false + + + + 0 + 1 true - ABORT - false - Default + Default - 40 - 0 - 0 + false + + + + 16 - + Action Button + 0 + $(P)$(Q)avg:scanParms.GO + + + true + true + false + + + + GO false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 22 + 158 245 + + $(P)allstop.VAL 1 10 + - $(pv_name) -$(pv_value) - 185 - - + false + false + + + false - true - 39872d87:13e14015f61:1b5b - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)$(Q)angl:scanParms.LOAD - - - - - - - Action Button - true - LD - false - - Default - - 22 - 0 - 0 - - - + + + ABORT false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 40 + 185 245 + + $(P)$(Q)angl:scanParms.LOAD 1 10 + - $(pv_name) -$(pv_value) - 241 - - + false + false + + + false - true - 39872d87:13e14015f61:1b5c - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(Q)angl:scanParms.LOAD + + true true false - $(P)$(Q)angl:scanParms.GO - - - - - - + + + LD + false + $(pv_name) +$(pv_value) + true Action Button - true - GO - false - - Default - 22 - 0 - 0 - - - - false - 1 - - - + 241 245 + + $(P)$(Q)angl:scanParms.GO 1 10 + - $(pv_name) -$(pv_value) - 268 - - + false + false + + + false - true - 39872d87:13e14015f61:1b5d - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(Q)angl:scanParms.GO + + true true false - $(P)allstop.VAL - - - - - - - Action Button - true - ABORT - false - - Default - - 40 - 0 - 0 - - - + + + GO false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 22 + 268 245 + + $(P)allstop.VAL 1 10 + - $(pv_name) -$(pv_value) - 295 - - + false + false + + + false - true - 39872d87:13e14015f61:1b5e - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)$(Q)up:scanParms.LOAD - - - - - - - Action Button - true - LD - false - - Default - - 22 - 0 - 0 - - - + + + ABORT false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 40 + 295 245 + + $(P)$(Q)up:scanParms.LOAD 1 10 + - $(pv_name) -$(pv_value) - 356 - - + false + false + + + false - true - 39872d87:13e14015f61:1b5f - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(Q)up:scanParms.LOAD + + true true false - $(P)$(Q)up:scanParms.GO - - - - - - + + + LD + false + $(pv_name) +$(pv_value) + true Action Button - true - GO - false - - Default - 22 - 0 - 0 - - - - false - 1 - - - + 356 245 + + $(P)$(Q)up:scanParms.GO 1 10 + - $(pv_name) -$(pv_value) - 383 - - + false + false + + + false - true - 39872d87:13e14015f61:1b60 - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(Q)up:scanParms.GO + + true true false - $(P)allstop.VAL - - - - - - - Action Button - true - ABORT - false - - Default - - 40 - 0 - 0 - - - + + + GO false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 22 + 383 245 + + $(P)allstop.VAL 1 10 + - $(pv_name) -$(pv_value) - 410 - - + false + false + + + false - true - 39872d87:13e14015f61:1b61 - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)allstop.VAL - - - - - - - Action Button - true + + ABORT - false - - Default - - 40 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 40 + 410 245 + + $(P)allstop.VAL 1 10 + - $(pv_name) -$(pv_value) - 70 - - + false + false + + + false - true - 39872d87:13e14015f61:1b62 - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)$(Q)dn:scanParms.GO + + + ABORT + false + $(pv_name) +$(pv_value) + true + Action Button + 40 + 70 + 245 + + + + + $(P)$(Q)dn:scanParms.GO + 1 + 10 + + + + + false + false - + - - - - Action Button + false + + + + 0 + 1 true - GO - false - Default + Default - 22 - 0 - 0 + false + + + + 16 - + Action Button + 0 + $(P)$(Q)dn:scanParms.GO + + + true + true + false + + + + GO false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 22 + 43 245 + + - $(P)$(Q)dn:scanParms.GO + $(P)$(Q)dn:scanParms.LOAD 1 10 + - $(pv_name) -$(pv_value) - 43 - - + false + false + + + false - true - 39872d87:13e14015f61:1b63 - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(Q)dn:scanParms.LOAD + + true true false - $(P)$(Q)dn:scanParms.LOAD - - - - - - - Action Button - true + + LD - false - - Default - - 22 - 0 - 0 - - - false - 1 - - - - 245 - - - $(P)$(Q)dn:scanParms.LOAD - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 22 16 + 245 - - false - true - 1 - false + + + false false - - 30 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 350 - 3 - - 1 + false + + + + 1 + 30 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1b65 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)mirror-$(Q).DESC + + false + 0.0 + true true false - 1 - false + 0 - $(P)mirror-$(Q).DESC - - - - false - 0 - - - false - - - - 0 - - 0 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 350 2 + 0 - - true - 1 - 39872d87:13e14015f61:1b66 + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true Mirror $(Q) - - - - 100 - 0 - - 1 - - - - 1 - - 4 - true + true + 1 + true + Label + 100 + false 355 + 4 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1b67 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 459 - 0 - 0 - - 1 - 1 - true - - - - - 32 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 459 1 + 32 - \ No newline at end of file + diff --git a/opticsApp/op/opi/2slit.opi b/opticsApp/op/opi/autoconvert/2slit.opi similarity index 83% rename from opticsApp/op/opi/2slit.opi rename to opticsApp/op/opi/autoconvert/2slit.opi index 9cc2f91..684c16e 100644 --- a/opticsApp/op/opi/2slit.opi +++ b/opticsApp/op/opi/autoconvert/2slit.opi @@ -1,521 +1,515 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 205 true - 39872d87:13e14015f61:1be5 - 3.1.2.20120830 + 2slit + + true + true + false true - 205 - 2slit false - false - - - - - - Display - true 435 - - true - 5 - - false - -1 - -1 - - - 34 44 - + 34 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 20 + true - 39872d87:13e14015f61:1be6 - - - - - 20 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 102 + 7 + 42 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 102 - 0 - 0 - - - 1 - 0 - true - - - - - 42 - $(pv_name) -$(pv_value) - 7 + false + + + false - - - false - true - 100.0 + 20 + true - 39872d87:13e14015f61:1be7 - - - - - 20 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 102 + 111 + 42 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 102 - 0 - 0 - - - 1 - 0 - true - - - - - 42 - $(pv_name) -$(pv_value) - 111 + false + + + false - - - false - true - 100.0 + 20 + true - 39872d87:13e14015f61:1be8 - - - - - 20 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 102 + 222 + 42 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 102 + false + + + + false + 20 + true + + + 0 - 0 - - - 1 0 - true - - - - - 42 - $(pv_name) -$(pv_value) - 222 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1be9 - - - - - 20 - true Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 102 + 326 + 42 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 102 - 0 - 0 - - - 1 - 0 - true - - - - - 42 - $(pv_name) -$(pv_value) - 326 + false + + + false - - - false - true - 0.0 + 145 + true - + - 39872d87:13e14015f61:1bec - - - - - 145 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 106 + 324 + 40 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 106 - 0 - 0 - - - 1 - 2 - true - - - - - 40 - $(pv_name) -$(pv_value) - 324 + false + + + false - - - false - true - 0.0 + 145 + true - + - 39872d87:13e14015f61:1bf4 - - - - - 145 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 106 + 220 + 40 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 106 - 0 - 0 - - - 1 - 2 - true - - - - - 40 - $(pv_name) -$(pv_value) - 220 + false + + + false - - - false - true - 0.0 + 145 + true - + - 39872d87:13e14015f61:1bfd - - - - - 145 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 106 + 109 + 40 + + + + false + 255 + true + false - - - - Rectangle - true - + - - false - - Default - - 106 - 0 - 0 - - - 1 - 2 - true + + false - - 40 - $(pv_name) -$(pv_value) - 109 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:1c06 - - - - - 145 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle + 0 + 1 true - false + 0.0 - Default + Default - 106 + false + + + + false + 145 + true + + + 0 - 0 - - - 1 2 - true - - - - - 40 - $(pv_name) -$(pv_value) - 5 - false - - - - true - - true - 39872d87:13e14015f61:1c1a - - 10 - Grouping Container + Rectangle + + + true true false + + $(pv_name) +$(pv_value) true - false + true + Rectangle + 106 + 5 + 40 + + + - - - - Grouping Container + + + + 0 + 1 true + false - Default + Default - 420 - 0 + + + + 10 + false + + true + + Grouping Container @@ -527,125 +521,126 @@ $(pv_value) $(P)$(SLIT)CoordSys - false - 1 - - - - - 13 + + true + true + false + + + false + true + true + Grouping Container + 420 10 - - 20.0 + 13 + + + false + false + + + true - true + + + + 0 + 1 + + + - true - - 10 - 50 - false - - - + + + + + + + true true - Tank - true + + + + false - Default + Default - 420 - true - 0 - true - - false - true - 100.0 - 1 + false + + + + 10 + 80.0 + 90.0 + 20.0 + 10.0 + true false + 50 + 100.0 0.0 - 39872d87:13e14015f61:1c1b - true - - false - - - Tank + + + + + Default + + true true false - - - - - - - - false - 80.0 - - Default - - 90.0 - - - - - - - - true - true - - - - 10.0 - 0 - - 0 + + true + true + true + true + false + true + false $(pv_name) $(pv_value) + true + true + Tank + 420 + 0 + 0 - - - true - - true - 39872d87:13e14015f61:1c1c - - 10 - Grouping Container - - true - true - false - - true - false + + - - - - Grouping Container + + + + 0 + 1 true + false - Default + Default - 420 - 0 + + + + 10 + false + + true + + Grouping Container @@ -657,1760 +652,1783 @@ $(pv_value) $(P)$(SLIT)CoordSys - false - 1 - - - - - 13 + + true + true + false + + + false + true + true + Grouping Container + 420 10 - - 20.0 + 13 + + + false + false + + + true - true + + + + 0 + 1 + + + - true - - 10 - 50 - false - - - + + + + + + + true true - Tank - true + + + + false - Default + Default - 420 - true - 0 - true - - false - true - 100.0 - 1 + false + + + + 10 + 80.0 + 90.0 + 20.0 + 10.0 + true false + 50 + 100.0 0.0 - 39872d87:13e14015f61:1c1d - true - - false - - - Tank + + + + + Default + + true true false - - - - - - - - false - 80.0 - - Default - - 90.0 - - - - - - - - true - true - - - - 10.0 - 0 - - 0 + + true + true + true + true + false + true + false $(pv_name) $(pv_value) + true + true + Tank + 420 + 0 + 0 - - true - 1 - 39872d87:13e14015f61:1bea + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true $(SLIT) - - - - - 106 - 0 - - 1 - - - - 1 - - 42 - true + true + 1 + true + Label + 106 + false 5 + 42 - + + + false + false + + + false - true - 39872d87:13e14015f61:1beb - + + + + 0 + 1 + true + + Default + + false + + + 21 + true + + Choice 1 + Choice 2 + Choice 3 + + true Choice Button - false + $(P)$(SLIT)set.VAL + + true true false - $(P)$(SLIT)set.VAL + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 78 + 0 + 185 + + + + false - + - - - - Choice Button + + + + 0 + 1 true - false - Default + - 78 - 0 - - - - - - - Choice 1 - Choice 2 - Choice 3 - - 1 - true - - - - true - - 185 - $(pv_name) -$(pv_value) - 0 - - - true - 1 - 39872d87:13e14015f61:1bed - false - + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true Center - - - - 106 - 0 - - 1 - - - - 1 - - 42 - true + true + 1 + true + Label + 106 + false 326 + 42 - - true - true - 1 - false - 39872d87:13e14015f61:1bee + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)$(SLIT)t2.D + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(SLIT)t2.D - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 90 - 0 - - - 1 - - - - 0 - - 75 false - $(pv_name) -$(pv_value) 332 + 75 - + + + + $(P)$(SLIT)center_tweak.A + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1bef - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(SLIT)center_tweak.A + + true true false - $(P)$(SLIT)center_tweak.A - - - - - - - Action Button - true + + - - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 135 - - - $(P)$(SLIT)center_tweak.A - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 327 + 135 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1bf0 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(SLIT)center_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(SLIT)center_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 135 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 347 + 135 - - false - true - 39872d87:13e14015f61:1bf1 - + + + + $(P)$(SLIT)center_tweak.B + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(SLIT)center_tweak.B + + true true false - $(P)$(SLIT)center_tweak.B - - - - - - - Action Button - true + + + - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 135 - - - $(P)$(SLIT)center_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 407 + 135 - - true - true - 1 - false - 39872d87:13e14015f61:1bf2 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)$(SLIT)center.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(SLIT)center.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 120 false - $(pv_name) -$(pv_value) 327 + 120 - - true - true - 1 - false - 39872d87:13e14015f61:1bf3 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)$(SLIT)center.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(SLIT)center.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 60 false - $(pv_name) -$(pv_value) 327 + 60 - - true - 1 - 39872d87:13e14015f61:1bf5 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true Size - - - - 106 - 0 - - 1 - - - - 1 - - 42 - true + true + 1 + true + Label + 106 + false 220 + 42 - - true - true - 1 - false - 39872d87:13e14015f61:1bf6 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)$(SLIT)t2.C + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(SLIT)t2.C - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 90 - 0 - - - 1 - - - - 0 - - 75 false - $(pv_name) -$(pv_value) 227 + 75 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1bf7 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(SLIT)size.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(SLIT)size.VAL - - - - false - 0 - - - false - - - - 0 - - 95 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 222 + 95 - + + + + $(P)$(SLIT)size_tweak.A + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1bf8 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(SLIT)size_tweak.A + + true true false - $(P)$(SLIT)size_tweak.A - - - - - - - Action Button - true + + - - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 136 - - - $(P)$(SLIT)size_tweak.A - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 222 + 136 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(SLIT)size_tweakVal.VAL - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:1bf9 + false 0.0 - Text Input + true true false - 1 - false + 0 - $(P)$(SLIT)size_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 136 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 242 + 136 - + + + + $(P)$(SLIT)size_tweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1bfa - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(SLIT)size_tweak.B + + true true false - $(P)$(SLIT)size_tweak.B - - - - - - - Action Button - true + + + - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 136 - - - $(P)$(SLIT)size_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 302 + 136 - - true - true - 1 - false - 39872d87:13e14015f61:1bfb + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)$(SLIT)size.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(SLIT)size.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 120 false - $(pv_name) -$(pv_value) 223 + 120 - - true - true - 1 - false - 39872d87:13e14015f61:1bfc + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)$(SLIT)size.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(SLIT)size.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 + false + 223 + 60 + + + + false + + + + 0 + 1 + true + + + + + + + 20 1 - - 60 + Label + + + true + true + false + + + false + $(SLIT) + + + true + 1 + true + Label + 106 false - $(pv_name) -$(pv_value) - 223 + 109 + 42 - - true - 1 - 39872d87:13e14015f61:1bfe + + + false false - - 20 - Label - - true - true - false - - true - false + false - + - - - - Label - true - $(SLIT) + - - - - 106 - 0 - - 1 + true - 1 - - 42 - true - - 109 - - - true - true - 1 - false - 39872d87:13e14015f61:1bff - false - 0.0 - + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)$(SLIT)t2.A + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(SLIT)t2.A - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 90 - 0 - - - 1 - - - - 0 - - 75 false - $(pv_name) -$(pv_value) 117 + 75 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1c00 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(SLIT)xp.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(SLIT)xp.VAL - - - - false - 0 - - - false - - - - 0 - - 95 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 112 + 95 - + + + + $(P)$(SLIT)xp_tweak.A + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1c01 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(SLIT)xp_tweak.A + + true true false - $(P)$(SLIT)xp_tweak.A - - - - - - - Action Button - true + + - - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 135 - - - $(P)$(SLIT)xp_tweak.A - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 112 + 135 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(SLIT)xp_tweakVal.VAL - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:1c02 + false 0.0 - Text Input + true true false - 1 - false + 0 - $(P)$(SLIT)xp_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 135 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 132 + 135 - + + + + $(P)$(SLIT)xp_tweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1c03 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(SLIT)xp_tweak.B + + true true false - $(P)$(SLIT)xp_tweak.B - - - - - - - Action Button - true + + + - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 135 - - - $(P)$(SLIT)xp_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 192 + 135 - - true - true - 1 - false - 39872d87:13e14015f61:1c04 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)$(SLIT)xp.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(SLIT)xp.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 120 false - $(pv_name) -$(pv_value) 112 + 120 - - true - true - 1 - false - 39872d87:13e14015f61:1c05 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)$(SLIT)xp.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(SLIT)xp.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 60 false - $(pv_name) -$(pv_value) 112 + 60 - - true - true - 1 - false - 39872d87:13e14015f61:1c07 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)$(SLIT)t2.B + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(SLIT)t2.B - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 90 - 0 - - - 1 - - - - 0 - - 75 false - $(pv_name) -$(pv_value) 12 + 75 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1c08 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(SLIT)xn.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(SLIT)xn.VAL - - - - false - 0 - - - false - - - - 0 - - 95 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 7 + 95 - - false - true - 39872d87:13e14015f61:1c09 - - 20 - Action Button - false - - true - true - false - - $(P)$(SLIT)xn_tweak.A - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 136 + $(P)$(SLIT)xn_tweak.A 1 10 + - $(pv_name) -$(pv_value) - 7 - - - false - true - 1 - false - false - - 20 - false - true + false + false - + - Text Input + false + + + + 0 + 1 true - - + Default - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:1c0a - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(SLIT)xn_tweakVal.VAL + false - + - false - 0 - - - false - - - - 0 - - 136 - $(pv_name) -$(pv_value) - 27 - - - false - true - 39872d87:13e14015f61:1c0b - 20 + Action Button - false + 0 + $(P)$(SLIT)xn_tweak.A + + true true false - $(P)$(SLIT)xn_tweak.B + + + - + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 7 + 136 + + + + false + false + false - + - - - - Action Button + false + + + + 3 + 1 + true - + - false - Default + - 20 - 0 - 0 - - + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(SLIT)xn_tweakVal.VAL - false - 1 - - - + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 27 136 + + $(P)$(SLIT)xn_tweak.B 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(SLIT)xn_tweak.B + + + + true + true + false + + + + + + false $(pv_name) $(pv_value) + true + Action Button + 20 87 + 136 - - true - true - 1 - false - 39872d87:13e14015f61:1c0c + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)$(SLIT)xn.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(SLIT)xn.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 120 false - $(pv_name) -$(pv_value) 8 + 120 - - true - true - 1 - false - 39872d87:13e14015f61:1c0d + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)$(SLIT)xn.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(SLIT)xn.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 60 false - $(pv_name) -$(pv_value) 8 + 60 - - false - true - false - 39872d87:13e14015f61:1c0e - - 16 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 60 - 6 - - - - 1 - - - - 160 + scanParmsCustom.opi @@ -2421,195 +2439,200 @@ $(pv_value) $(SLIT)n $(SLIT)xn.EGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 27 - - - false - true - 39872d87:13e14015f61:1c0f - - 21 - Action Button - false - - true - true - false - - $(P)allstop.VAL + false + false - + - - - - Action Button + false + + + + 0 + 1 true - All Stop - false - Default + Default - 79 - 0 - 0 + false + + + + 16 - + Action Button + 0 + + + + true + true + false + + + + ScanParms false - 1 - - - - 185 + $(pv_name) +$(pv_value) + true + Action Button + 60 + 27 + 160 + + $(P)allstop.VAL 1 10 + - $(pv_name) -$(pv_value) - 350 - - + false + false + + + false - true - 39872d87:13e14015f61:1c10 - + + + + 0 + 1 + true + + Default + + false + + + 21 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)$(SLIT)sync.PROC - - - - - - - Action Button - true - Sync to motors - false - - Default - - 110 - 0 - 0 - - - + + + All Stop false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 79 + 350 185 + + $(P)$(SLIT)sync.PROC 1 10 + - $(pv_name) -$(pv_value) - 85 - - - true - 1 - 39872d87:13e14015f61:1c11 - false - + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + 21 - Label + + Action Button + 0 + $(P)$(SLIT)sync.PROC + + true true false - true - false + + + Sync to motors + false + $(pv_name) +$(pv_value) + true + Action Button + 110 + 85 + 185 + + + + false - - - - Label - true - - - - - - 5 - 0 - - 1 - 0 - - 7 - true - - 0 - - - false - true - false - 39872d87:13e14015f61:1c12 - + 0 + 1 + true + + + + + + 21 - Menu Button - false + 0 + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - - 185 + + false + - + + true + 1 + true + Label + 5 + false + 0 + 7 + + motorx_more.opi @@ -2617,7 +2640,7 @@ $(pv_value) true $(mXn) - 0 + 1 X- motor @@ -2626,52 +2649,53 @@ $(pv_value) true $(mXp) - 0 + 1 X+ motor - $(pv_name) -$(pv_value) - 305 - - - false - true false - 39872d87:13e14015f61:1c13 - - 16 - Menu Button + false + false + + + + false + + + + 6 + 1 + true + + Default + false + + + + 21 + + Menu Button + + + true true false + + false + $(pv_name) +$(pv_value) false - - - - - - - + true Menu Button - true - false - - Default - - 60 - 6 - - - - 1 - - - - 160 + 40 + 305 + 185 + + scanParmsCustom.opi @@ -2682,52 +2706,54 @@ $(pv_value) $(SLIT)center $(SLIT)center.EGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 347 - - + false + false + + + false - true - false - 39872d87:13e14015f61:1c14 - - 16 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 16 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + ScanParms + false + $(pv_name) +$(pv_value) + true + Action Button 60 - 6 - - - - 1 - - - + 347 160 + + scanParmsCustom.opi @@ -2738,52 +2764,54 @@ $(pv_value) $(SLIT)size $(SLIT)size.EGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 242 - - + false + false + + + false - true - false - 39872d87:13e14015f61:1c15 - - 16 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 16 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + ScanParms + false + $(pv_name) +$(pv_value) + true + Action Button 60 - 6 - - - - 1 - - - + 242 160 + + scanParmsCustom.opi @@ -2794,322 +2822,365 @@ $(pv_value) $(SLIT)p $(SLIT)xp.EGU - 0 + 1 Setup scan parameters + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + + + + + true + true + false + + + + ScanParms + false $(pv_name) $(pv_value) + true + Action Button + 60 132 + 160 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1c16 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(SLIT)center.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(SLIT)center.VAL - - - - false - 0 - - - false - - - - 0 - - 95 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 327 + 95 - - true - 1 - 39872d87:13e14015f61:1c17 + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false + LOOKING UPSTREAM + + true + 1 + true + Label + 100 + false + 10 + 25 + + + + false - - - - Label - true - LOOKING UPSTREAM - - - - 100 - 0 - - 1 - 1 - - 25 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:1c18 - false - + 0 + 1 + true + + + + + + 21 + 0 Label + true true false - true + false - - - - - - - Label - true + - - - - 5 - 0 - - 1 - - - - 0 - - -3 - true + true + 1 + true + Label + 5 + false -1 + -3 - - 20.0 + + + false + false + + + true - true + + + + 0 + 1 + + + - true - - 10 - 50 - false - - - + + + + + + + true true - Tank - true + + + + false - Default + Default - 420 - true - 0 - true - - false - true - 100.0 - 1 + false + + + + 10 + 80.0 + 90.0 + 20.0 + 10.0 + true false + 50 + 100.0 0.0 - 39872d87:13e14015f61:1c19 - true - - false - - - Tank + + + + + Default + + true true false - - - - - - - - false - 80.0 - - Default - - 90.0 - - - - - - - - true - true - - - - 10.0 - 3 - - 10 + + true + true + true + true + false + true + false $(pv_name) $(pv_value) - - - true + true true - 1 - false - 39872d87:13e14015f61:1c1e + Tank + 420 + 10 + 3 + + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 0 Text Update - false + 0 + true + $(P)$(SLIT)CoordSys + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(SLIT)CoordSys - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 25 false - $(pv_name) -$(pv_value) 245 + 25 - - true - 1 - 39872d87:13e14015f61:1c1f + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true COORDINATE SYSTEM: - - - - 110 - 0 - - 1 - - - - 1 - - 25 - true + true + 1 + true + Label + 110 + false 130 + 25 - \ No newline at end of file + diff --git a/opticsApp/op/opi/2slit_soft.opi b/opticsApp/op/opi/autoconvert/2slit_soft.opi similarity index 85% rename from opticsApp/op/opi/2slit_soft.opi rename to opticsApp/op/opi/autoconvert/2slit_soft.opi index 15d2798..ee0e29f 100644 --- a/opticsApp/op/opi/2slit_soft.opi +++ b/opticsApp/op/opi/autoconvert/2slit_soft.opi @@ -1,78 +1,76 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 260 true - 39872d87:13e14015f61:1c5c - 3.1.2.20120830 + 2slit_soft + + true + true + false true - 260 - 2slit_soft false - false - - - - - - Display - true 500 - - true - 5 - - false - -1 - -1 - - - 302 103 - - false - true - 100.0 - - - - 39872d87:13e14015f61:1c60 - - - - - 31 - true - Rectangle - false + 302 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 104 + false + + + + false + 31 + true + + + 0 - 0 + 0 + Rectangle + + @@ -84,62 +82,62 @@ $(P)$(SLIT)xn.DMOV - - 1 - 0 - true - - - - - 91 - $(pv_name) -$(pv_value) - 6 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1c61 - - - - - 31 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 104 + 6 + 91 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 104 + false + + + + false + 31 + true + + + 0 - 0 + 0 + Rectangle + + @@ -151,176 +149,176 @@ $(pv_value) $(P)$(SLIT)xn.LVIO - - 1 - 0 - true - - - - - 91 - $(pv_name) -$(pv_value) - 6 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1c62 - - - - - 40 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 104 + 6 + 91 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 116 - 0 - 0 - - - 1 - 0 - true - - - - - 122 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 100.0 + 40 + true - 39872d87:13e14015f61:1c67 - - - - - 24 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 116 + 0 + 122 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 116 - 0 - 0 - - - 1 - 0 - true - - - - - 201 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 100.0 + 24 + true - 39872d87:13e14015f61:1c70 - - - - - 50 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 116 + 0 + 201 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 6 + false + + + + false + 50 + true + + + 0 - 0 + 0 + Rectangle + + @@ -332,62 +330,62 @@ $(pv_value) $(P)$(SLIT)xn.LLS - - 1 - 0 - true - - - - - 70 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1c71 - - - - - 50 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 6 + 0 + 70 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 6 + false + + + + false + 50 + true + + + 0 - 0 + 0 + Rectangle + + @@ -399,119 +397,119 @@ $(pv_value) $(P)$(SLIT)xn.HLS - - 1 - 0 - true - - - - - 70 - $(pv_name) -$(pv_value) - 110 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1c73 - - - - - 12 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 6 + 110 + 70 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 116 + false + + + + false + 12 + true + + + 0 - 0 - - - 1 0 - true - - - - - 45 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:1c75 - - - - - 26 - true Rectangle - false - 255 + + + true true false - true - + + $(pv_name) +$(pv_value) + false + true + Rectangle + 116 + 0 + 45 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 102 + false + + + + false + 26 + true + + + 0 - 0 + 2 + Rectangle + + @@ -523,62 +521,62 @@ $(pv_value) $(P)$(SLIT)xn.SET - - 1 - 2 - true - - - - - 66 - $(pv_name) -$(pv_value) - 7 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:1c76 - - - - - 21 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 102 + 7 + 66 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 98 + false + + + + false + 21 + true + + + 0 - 0 + 2 + Rectangle + + @@ -590,62 +588,62 @@ $(pv_value) $(P)$(SLIT)xn.SET - - 1 - 2 - true - - - - - 68 - $(pv_name) -$(pv_value) - 9 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1c7d - - - - - 31 - true - Rectangle - false - 255 true true false - false - + + $(pv_name) +$(pv_value) + true + true + Rectangle + 98 + 9 + 68 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 104 + false + + + + false + 31 + true + + + 0 - 0 + 0 + Rectangle + + @@ -657,62 +655,62 @@ $(pv_value) $(P)$(SLIT)xp.DMOV - - 1 - 0 - true - - - - - 91 - $(pv_name) -$(pv_value) - 131 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1c7e - - - - - 31 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 104 + 131 + 91 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 104 + false + + + + false + 31 + true + + + 0 - 0 + 0 + Rectangle + + @@ -724,176 +722,176 @@ $(pv_value) $(P)$(SLIT)xp.LVIO - - 1 - 0 - true - - - - - 91 - $(pv_name) -$(pv_value) - 131 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1c7f - - - - - 40 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 104 + 131 + 91 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 116 - 0 - 0 - - - 1 - 0 - true - - - - - 122 - $(pv_name) -$(pv_value) - 125 + false + + + false - - - false - true - 100.0 + 40 + true - 39872d87:13e14015f61:1c84 - - - - - 24 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 116 + 125 + 122 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 116 - 0 - 0 - - - 1 - 0 - true - - - - - 201 - $(pv_name) -$(pv_value) - 125 + false + + + false - - - false - true - 100.0 + 24 + true - 39872d87:13e14015f61:1c8d - - - - - 50 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 116 + 125 + 201 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 6 + false + + + + false + 50 + true + + + 0 - 0 + 0 + Rectangle + + @@ -905,62 +903,62 @@ $(pv_value) $(P)$(SLIT)xp.LLS - - 1 - 0 - true - - - - - 70 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 6 125 - false + 70 - - false - true - 100.0 - - - - 39872d87:13e14015f61:1c8e - - - - - 50 - true - Rectangle - false + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 6 + false + + + + false + 50 + true + + + 0 - 0 + 0 + Rectangle + + @@ -972,119 +970,119 @@ $(pv_value) $(P)$(SLIT)xp.HLS - - 1 - 0 - true - - - - - 70 - $(pv_name) -$(pv_value) - 235 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1c90 - - - - - 12 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 6 + 235 + 70 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 116 - 0 - 0 - - - 1 - 0 - true - - - - - 45 - $(pv_name) -$(pv_value) - 125 + false + + + false - - - false - true - 0.0 + 12 + true - + - 39872d87:13e14015f61:1c92 - - - - - 26 - true + 0 + 0 Rectangle - false - 255 + + + true true false - true - + + $(pv_name) +$(pv_value) + false + true + Rectangle + 116 + 125 + 45 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 102 + false + + + + false + 26 + true + + + 0 - 0 + 2 + Rectangle + + @@ -1096,63 +1094,63 @@ $(pv_value) $(P)$(SLIT)xp.SET - - 1 - 2 - true - - - - - 66 - $(pv_name) -$(pv_value) - 132 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:1c93 - - - - - 21 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 102 + 132 + 66 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 98 + false + + + + false + 21 + true + + + 0 - 0 - + 2 + Rectangle + + + true @@ -1163,62 +1161,62 @@ $(pv_value) $(P)$(SLIT)xp.SET - - 1 - 2 - true - - - - - 68 - $(pv_name) -$(pv_value) - 134 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1c9a - - - - - 31 - true - Rectangle - false - 255 true true false - false - + + $(pv_name) +$(pv_value) + true + true + Rectangle + 98 + 134 + 68 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 104 + false + + + + false + 31 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1230,62 +1228,62 @@ $(pv_value) $(P)$(SLIT)size.DMOV - - 1 - 0 - true - - - - - 91 - $(pv_name) -$(pv_value) - 261 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1c9b - - - - - 31 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 104 + 261 + 91 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 104 + false + + + + false + 31 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1297,176 +1295,176 @@ $(pv_value) $(P)$(SLIT)size.LVIO - - 1 - 0 - true - - - - - 91 - $(pv_name) -$(pv_value) - 261 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1c9c - - - - - 40 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 104 + 261 + 91 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 116 - 0 - 0 - - - 1 - 0 - true - - - - - 122 - $(pv_name) -$(pv_value) - 255 + false + + + false - - - false - true - 100.0 + 40 + true - 39872d87:13e14015f61:1ca1 - - - - - 24 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle + 116 + 255 + 122 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 116 - 0 - 0 - - - 1 - 0 - true - - - - - 201 - $(pv_name) -$(pv_value) - 255 + false + + + false - - - false - true - 100.0 + 24 + true - 39872d87:13e14015f61:1caa - - - - - 50 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 116 + 255 + 201 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 6 + false + + + + false + 50 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1478,62 +1476,62 @@ $(pv_value) $(P)$(SLIT)size.LLS - - 1 - 0 - true - - - - - 70 - $(pv_name) -$(pv_value) - 255 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1cab - - - - - 50 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 6 + 255 + 70 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 6 + false + + + + false + 50 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1545,119 +1543,119 @@ $(pv_value) $(P)$(SLIT)size.HLS - - 1 - 0 - true - - - - - 70 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 6 365 - false + 70 - + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 12 + true - 39872d87:13e14015f61:1cad - - - - - 12 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 116 + 255 + 45 + + + + false + 255 + true + false - - - - Rectangle - true - + - - false - - Default - - 116 - 0 - 0 - - - 1 - 0 - true + + false - - 45 - $(pv_name) -$(pv_value) - 255 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:1caf - - - - - 26 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle + 0 + 1 true - false + 0.0 - Default + Default - 102 + false + + + + false + 26 + true + + + 0 - 0 + 2 + Rectangle + + @@ -1669,62 +1667,62 @@ $(pv_value) $(P)$(SLIT)size.SET - - 1 - 2 - true - - - - - 66 - $(pv_name) -$(pv_value) - 262 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:1cb0 - - - - - 21 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 102 + 262 + 66 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 98 + false + + + + false + 21 + true + + + 0 - 0 + 2 + Rectangle + + @@ -1736,62 +1734,62 @@ $(pv_value) $(P)$(SLIT)size.SET - - 1 - 2 - true - - - - - 68 - $(pv_name) -$(pv_value) - 264 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1cb7 - - - - - 31 - true - Rectangle - false - 255 true true false - false - + + $(pv_name) +$(pv_value) + true + true + Rectangle + 98 + 264 + 68 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 104 + false + + + + false + 31 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1803,62 +1801,62 @@ $(pv_value) $(P)$(SLIT)center.DMOV - - 1 - 0 - true - - - - - 91 - $(pv_name) -$(pv_value) - 386 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1cb8 - - - - - 31 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 104 + 386 + 91 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 104 + false + + + + false + 31 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1870,176 +1868,176 @@ $(pv_value) $(P)$(SLIT)center.LVIO - - 1 - 0 - true - - - - - 91 - $(pv_name) -$(pv_value) - 386 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1cb9 - - - - - 40 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 104 + 386 + 91 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 116 - 0 - 0 - - - 1 - 0 - true - - - - - 122 - $(pv_name) -$(pv_value) - 380 + false + + + false - - - false - true - 100.0 + 40 + true - 39872d87:13e14015f61:1cbe - - - - - 24 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 116 + 380 + 122 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 116 - 0 - 0 - - - 1 - 0 - true - - - - - 201 - $(pv_name) -$(pv_value) - 380 + false + + + false - - - false - true - 100.0 + 24 + true - 39872d87:13e14015f61:1cc7 - - - - - 50 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 116 + 380 + 201 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 6 + false + + + + false + 50 + true + + + 0 - 0 + 0 + Rectangle + + @@ -2051,62 +2049,62 @@ $(pv_value) $(P)$(SLIT)center.LLS - - 1 - 0 - true - - - - - 70 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 6 380 - false + 70 - - false - true - 100.0 - - - - 39872d87:13e14015f61:1cc8 - - - - - 50 - true - Rectangle - false + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 6 + false + + + + false + 50 + true + + + 0 - 0 + 0 + Rectangle + + @@ -2118,119 +2116,119 @@ $(pv_value) $(P)$(SLIT)center.HLS - - 1 - 0 - true - - - - - 70 - $(pv_name) -$(pv_value) - 490 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1cca - - - - - 12 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 6 + 490 + 70 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 116 - 0 - 0 - - - 1 - 0 - true - - - - - 45 - $(pv_name) -$(pv_value) - 380 + false + + + false - - - false - true - 0.0 + 12 + true - + - 39872d87:13e14015f61:1ccc - - - - - 26 - true + 0 + 0 Rectangle - false - 255 + + + true true false - true - + + $(pv_name) +$(pv_value) + false + true + Rectangle + 116 + 380 + 45 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 102 + false + + + + false + 26 + true + + + 0 - 0 + 2 + Rectangle + + @@ -2242,63 +2240,63 @@ $(pv_value) $(P)$(SLIT)center.SET - - 1 - 2 - true - - - - - 66 - $(pv_name) -$(pv_value) - 387 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:1ccd - - - - - 21 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 102 + 387 + 66 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 98 + false + + + + false + 21 + true + + + 0 - 0 - + 2 + Rectangle + + + true @@ -2309,147 +2307,139 @@ $(pv_value) $(P)$(SLIT)center.SET - - 1 - 2 - true - - - - - 68 - $(pv_name) -$(pv_value) - 389 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:1cd5 - - - - - 25 - true - Rectangle - false - 255 true true false - false - + + $(pv_name) +$(pv_value) + true + true + Rectangle + 98 + 389 + 68 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 500 + false + + + + false + 25 + true + + + 0 - 0 - - - 1 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - true - 1 - 39872d87:13e14015f61:1c5d - false - - 16 - Label + Rectangle + + + true true false - true - false + + $(pv_name) +$(pv_value) + false + true + Rectangle + 500 + 0 + 0 + + + + false - - - - Label - true - Calib: - - - - 45 - 0 - - 1 - 0 - - 164 - true - - 1 - - - true - 1 - 39872d87:13e14015f61:1c5e - false - + 0 + 1 + true + + + + + + 16 + 0 Label + true true false - true + false + Calib: + + true + 1 + true + Label + 45 + false + 1 + 164 + + + + false - - - - Label + + + + 0 + 1 true - Calib: - + - 45 - 0 + + + + 16 + 0 + Label @@ -2461,97 +2451,96 @@ $(pv_value) $(P)$(SLIT)xn.SET - 1 - - - - 0 - - 163 - true + + true + true + false + + + false + Calib: + true + 1 + true + Label + 45 + false 0 + 163 - - true - true - 1 - false - 39872d87:13e14015f61:1c5f + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 1 Text Update - false + 0 + true + $(P)$(SLIT)xn.DESC + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(SLIT)xn.DESC + 1 + true + Text Update + 116 + false + 0 + 25 + + + + false - + + + + + 0 + 1 + true + + + - + - Text Update - true - ###### - false - 0 - - - - 116 - 0 - - - 1 - - - - 1 - - 25 - false - $(pv_name) -$(pv_value) - 0 - - - true - 1 - 39872d87:13e14015f61:1c63 - false - 15 + 1 Label - - true - true - false - - true - false - - - - - - - Label - true - Moving - - - - 60 - 0 @@ -2563,46 +2552,45 @@ $(pv_value) $(P)$(SLIT)xn.DMOV - 1 - - - - 1 - - 146 - true - - 28 - - - true - 1 - 39872d87:13e14015f61:1c64 - false - - 10 - Label true true false - true + false + Moving + + true + 1 + true + Label + 60 + false + 28 + 146 + + + + false - - - - Label + + + + 0 + 1 true - Calibrate - + - 60 - 0 + + + + 10 + 1 + Label @@ -2614,300 +2602,277 @@ $(pv_value) $(P)$(SLIT)xn.SET - 1 - - - - 1 - - 152 - true - - 28 - - - false - true - 39872d87:13e14015f61:1c65 - - 20 - Action Button - false true true false - $(P)allstop.VAL - - - - - - - Action Button - true - Abort - false - - Default - - 40 - 0 - 0 - - - - false - 1 - - - - 203 + + false + Calibrate + + true + 1 + true + Label + 60 + false + 28 + 152 + + $(P)allstop.VAL 1 10 + - $(pv_name) -$(pv_value) - 74 - - + false + false + + + false - true - 39872d87:13e14015f61:1c66 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)$(SLIT)xn:scanParms.GO - - - - - - - Action Button - true - Go - false - - Default - - 21 - 0 - 0 - - - + + + Abort false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 40 + 74 203 + + $(P)$(SLIT)xn:scanParms.GO 1 10 + - $(pv_name) -$(pv_value) - 52 - - - true - 1 - 39872d87:13e14015f61:1c68 - false - - 13 - Label - - true - true - false - - true - false + false + false - + - - - - Label - true - Scan - - - - 30 - 0 - - 1 + false - 1 - - 207 - true - - 0 - - - false - true - 39872d87:13e14015f61:1c69 - + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(SLIT)xn:scanParms.GO + + true true false - $(P)$(SLIT)xn:scanParms.LOAD + + + Go + false + $(pv_name) +$(pv_value) + true + Action Button + 21 + 52 + 203 + + + + false - + - - - - Action Button + + + + 0 + 1 true - Ld - false - Default + - 21 - 0 - 0 - + + + + 13 + 1 + Label - - false - 1 - - - - 203 + + true + true + false + + + false + Scan + + true + 1 + true + Label + 30 + false + 0 + 207 + + $(P)$(SLIT)xn:scanParms.LOAD 1 10 + - $(pv_name) -$(pv_value) - 30 - - + false + false + + + false - true - 39872d87:13e14015f61:1c6a - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(SLIT)xn:scanParms.LOAD + + true true false - $(P)$(SLIT)xn.STOP - - - - - - - Action Button - true - STOP - false - - Default - - 53 - 0 - 0 - - - + + + Ld false - 1 - - - - 181 + $(pv_name) +$(pv_value) + true + Action Button + 21 + 30 + 203 + + $(P)$(SLIT)xn.STOP 1 10 + - $(pv_name) -$(pv_value) - 60 - - + false + false + + + false - true - false - 39872d87:13e14015f61:1c6b - - 20 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + $(P)$(SLIT)xn.STOP + + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - + + + STOP + false + $(pv_name) +$(pv_value) + true + Action Button + 53 + 60 181 + + motorx_tiny.opi @@ -2915,7 +2880,7 @@ $(pv_value) true $(SLIT)xn - 1 + 1 $(SLIT)xn (Tiny) @@ -2924,7 +2889,7 @@ $(pv_value) true $(SLIT)xn - 0 + 1 $(SLIT)xn (Help) @@ -2933,7 +2898,7 @@ $(pv_value) true $(SLIT)xn - 0 + 1 $(SLIT)xn (Medium) @@ -2942,7 +2907,7 @@ $(pv_value) true $(SLIT)xn - 0 + 1 $(SLIT)xn (Setup) @@ -2952,7 +2917,7 @@ $(pv_value) $(SLIT)xn $(SLIT)xn - 0 + 1 Scan Parameters @@ -2961,400 +2926,445 @@ $(pv_value) true $(SLIT)xn - 0 + 1 $(SLIT)xn (Debug) - $(pv_name) -$(pv_value) - 5 - - + false + false + false + + + false - true - 39872d87:13e14015f61:1c6c - - 36 - Action Button + + + + 6 + 1 + true + + Default + false + + + + 20 + + Menu Button + + + true true false - $(P)$(SLIT)xn.TWR - - - - - - - Action Button - true - < - false - - Default - - 25 - 0 - 0 - - - - false - 1 - - - - 124 + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 40 + 5 + 181 + + $(P)$(SLIT)xn.TWR 1 10 + - $(pv_name) -$(pv_value) - 2 - - - false - true - 1 - false - false - - 20 - false - true + false + false - + - Text Input - true - - - + false + + + + 0 + 1 + true + + Default - 60 - 3 + false + + + + 36 + + Action Button + 0 + $(P)$(SLIT)xn.TWR - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:1c6d - 0.0 - Text Input + true true false - 1 - false - 0 - $(P)$(SLIT)xn.TWV - - - - false - 0 - - - false - - - - 0 - - 124 + + + < + false $(pv_name) $(pv_value) - 28 + true + Action Button + 25 + 2 + 124 - + + + false + false + false + + + false - true - 39872d87:13e14015f61:1c6e - - 36 - Action Button + + + + 3 + 1 + + true + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(SLIT)xn.TWV + + false + 0.0 + true true false - $(P)$(SLIT)xn.TWF - - - - - - - Action Button - true - > - false - - Default - - 25 - 0 - 0 - - - - false - 1 - - - + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 28 124 + + $(P)$(SLIT)xn.TWF 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 36 + + Action Button + 0 + $(P)$(SLIT)xn.TWF + + + + true + true + false + + + + > + false $(pv_name) $(pv_value) + true + Action Button + 25 89 + 124 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 98 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1c6f - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(SLIT)xn.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(SLIT)xn.VAL - - - - false - 0 - - - false - - - - 0 - - 94 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 98 9 + 94 - - true - true - 1 - false - 39872d87:13e14015f61:1c72 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 1 Text Update - false + 0 + true + $(P)$(SLIT)xn.EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(SLIT)xn.EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 116 - 0 - - - 1 - - - - 1 - - 57 false - $(pv_name) -$(pv_value) 0 + 57 - - true - 1 - 39872d87:13e14015f61:1c74 + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true ($(P)$(SLIT)xn) - - - - 116 - 0 - - 1 - - - - 1 - - 46 - true + true + 1 + true + Label + 116 + false 0 + 46 - - true - true - 1 - false - 39872d87:13e14015f61:1c77 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 17 + 1 Text Update - false + 0 + true + $(P)$(SLIT)xn.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(SLIT)xn.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 94 - 0 - - - 1 - - - - 1 - - 70 false - $(pv_name) -$(pv_value) 11 + 70 - - true - 1 - 39872d87:13e14015f61:1c78 + + false - - 10 - Label - - true - true - false - - true - false - - - - Label + + + + 0 + 1 true - Soft limit - + - 60 - 0 + + + + 10 + 1 + Label @@ -3366,137 +3376,135 @@ $(pv_value) $(P)$(SLIT)xn.LVIO - 1 - - - - 1 - - 144 - true - - 28 - - - false - true - 39872d87:13e14015f61:1c79 - - 20 - Choice Button - false true true false - $(P)$(SLIT)xn.SET + + false + Soft limit + + true + 1 + true + Label + 60 + false + 28 + 144 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 71 - 0 - - - - - + false + + + + 20 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 162 - $(pv_name) -$(pv_value) - 45 - - - true - 1 - 39872d87:13e14015f61:1c7a - false - - 16 - Label + Choice Button + $(P)$(SLIT)xn.SET + + true true false - true - false + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 71 + 45 + 162 + + + + false - - - - Label - true - Calib: - - - - 45 - 0 - - 1 - 0 - - 164 - true - - 126 - - - true - 1 - 39872d87:13e14015f61:1c7b - false - + 0 + 1 + true + + + + + + 16 + 0 Label + true true false - true + false + Calib: + + true + 1 + true + Label + 45 + false + 126 + 164 + + + + false - - - - Label + + + + 0 + 1 true - Calib: - + - 45 - 0 + + + + 16 + 0 + Label @@ -3508,97 +3516,96 @@ $(pv_value) $(P)$(SLIT)xp.SET - 1 - - - - 0 - - 163 - true + + true + true + false + + + false + Calib: + true + 1 + true + Label + 45 + false 125 + 163 - - true - true - 1 - false - 39872d87:13e14015f61:1c7c + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 1 Text Update - false + 0 + true + $(P)$(SLIT)xp.DESC + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(SLIT)xp.DESC - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 116 - 0 - - - 1 - - - - 1 - - 25 false - $(pv_name) -$(pv_value) 125 + 25 - - true - 1 - 39872d87:13e14015f61:1c80 + + false - - 15 - Label - - true - true - false - - true - false - - - - Label + + + + 0 + 1 true - Moving - + - 60 - 0 + + + + 15 + 1 + Label @@ -3610,46 +3617,45 @@ $(pv_value) $(P)$(SLIT)xp.DMOV - 1 - - - - 1 - - 146 - true - - 153 - - - true - 1 - 39872d87:13e14015f61:1c81 - false - - 10 - Label true true false - true + false + Moving + + true + 1 + true + Label + 60 + false + 153 + 146 + + + + false - - - - Label + + + + 0 + 1 true - Calibrate - + - 60 - 0 + + + + 10 + 1 + Label @@ -3661,300 +3667,277 @@ $(pv_value) $(P)$(SLIT)xp.SET - 1 - - - - 1 - - 152 - true - - 153 - - - false - true - 39872d87:13e14015f61:1c82 - - 20 - Action Button - false true true false - $(P)allstop.VAL - - - - - - - Action Button - true - Abort - false - - Default - - 40 - 0 - 0 - - - - false - 1 - - - - 203 + + false + Calibrate + + true + 1 + true + Label + 60 + false + 153 + 152 + + $(P)allstop.VAL 1 10 + - $(pv_name) -$(pv_value) - 199 - - + false + false + + + false - true - 39872d87:13e14015f61:1c83 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)$(SLIT)xp:scanParms.GO - - - - - - - Action Button - true - Go - false - - Default - - 21 - 0 - 0 - - - + + + Abort false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 40 + 199 203 + + $(P)$(SLIT)xp:scanParms.GO 1 10 + - $(pv_name) -$(pv_value) - 177 - - - true - 1 - 39872d87:13e14015f61:1c85 - false - - 13 - Label - - true - true - false - - true - false + false + false - + - - - - Label - true - Scan - - - - 30 - 0 - - 1 + false - 1 - - 207 - true - - 125 - - - false - true - 39872d87:13e14015f61:1c86 - + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(SLIT)xp:scanParms.GO + + true true false - $(P)$(SLIT)xp:scanParms.LOAD + + + Go + false + $(pv_name) +$(pv_value) + true + Action Button + 21 + 177 + 203 + + + + false - + - - - - Action Button + + + + 0 + 1 true - Ld - false - Default + - 21 - 0 - 0 - + + + + 13 + 1 + Label - - false - 1 - - - - 203 + + true + true + false + + + false + Scan + + true + 1 + true + Label + 30 + false + 125 + 207 + + $(P)$(SLIT)xp:scanParms.LOAD 1 10 + - $(pv_name) -$(pv_value) - 155 - - + false + false + + + false - true - 39872d87:13e14015f61:1c87 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(SLIT)xp:scanParms.LOAD + + true true false - $(P)$(SLIT)xp.STOP - - - - - - - Action Button - true - STOP - false - - Default - - 53 - 0 - 0 - - - + + + Ld false - 1 - - - - 181 + $(pv_name) +$(pv_value) + true + Action Button + 21 + 155 + 203 + + $(P)$(SLIT)xp.STOP 1 10 + - $(pv_name) -$(pv_value) - 185 - - + false + false + + + false - true - false - 39872d87:13e14015f61:1c88 - - 20 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + $(P)$(SLIT)xp.STOP + + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - + + + STOP + false + $(pv_name) +$(pv_value) + true + Action Button + 53 + 185 181 + + motorx_tiny.opi @@ -3962,7 +3945,7 @@ $(pv_value) true $(SLIT)xp - 1 + 1 $(SLIT)xp (Tiny) @@ -3971,7 +3954,7 @@ $(pv_value) true $(SLIT)xp - 0 + 1 $(SLIT)xp (Help) @@ -3980,7 +3963,7 @@ $(pv_value) true $(SLIT)xp - 0 + 1 $(SLIT)xp (Medium) @@ -3989,7 +3972,7 @@ $(pv_value) true $(SLIT)xp - 0 + 1 $(SLIT)xp (Setup) @@ -3999,7 +3982,7 @@ $(pv_value) $(SLIT)xp $(SLIT)xp - 0 + 1 Scan Parameters @@ -4008,400 +3991,445 @@ $(pv_value) true $(SLIT)xp - 0 + 1 $(SLIT)xp (Debug) - $(pv_name) -$(pv_value) - 130 - - + false + false + false + + + false - true - 39872d87:13e14015f61:1c89 - - 36 - Action Button + + + + 6 + 1 + true + + Default + false + + + + 20 + + Menu Button + + + true true false - $(P)$(SLIT)xp.TWR - - - - - - - Action Button - true - < - false - - Default - - 25 - 0 - 0 - - - - false - 1 - - - - 124 + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 40 + 130 + 181 + + $(P)$(SLIT)xp.TWR 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 36 + + Action Button + 0 + $(P)$(SLIT)xp.TWR + + + + true + true + false + + + + < + false $(pv_name) $(pv_value) + true + Action Button + 25 127 + 124 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1c8a - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(SLIT)xp.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(SLIT)xp.TWV - - - - false - 0 - - - false - - - - 0 - - 124 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 153 + 124 - + + + + $(P)$(SLIT)xp.TWF + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1c8b - + + + + 0 + 1 + true + + Default + + false + + + 36 + Action Button - false + 0 + $(P)$(SLIT)xp.TWF + + true true false - $(P)$(SLIT)xp.TWF - - - - - - - Action Button - true + + > - false - - Default - - 25 - 0 - 0 - - - false - 1 - - - - 124 - - - $(P)$(SLIT)xp.TWF - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 25 214 + 124 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 98 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1c8c - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(SLIT)xp.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(SLIT)xp.VAL - - - - false - 0 - - - false - - - - 0 - - 94 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 98 134 + 94 - - true - true - 1 - false - 39872d87:13e14015f61:1c8f + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 1 Text Update - false + 0 + true + $(P)$(SLIT)xp.EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(SLIT)xp.EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 116 - 0 - - - 1 - - - - 1 - - 57 false - $(pv_name) -$(pv_value) 125 + 57 - - true - 1 - 39872d87:13e14015f61:1c91 + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true ($(P)$(SLIT)xp) - - - - 116 - 0 - - 1 - - - - 1 - - 46 - true + true + 1 + true + Label + 116 + false 125 + 46 - - true - true - 1 - false - 39872d87:13e14015f61:1c94 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 17 + 1 Text Update - false + 0 + true + $(P)$(SLIT)xp.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(SLIT)xp.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 94 - 0 - - - 1 - - - - 1 - - 70 false - $(pv_name) -$(pv_value) 136 + 70 - - true - 1 - 39872d87:13e14015f61:1c95 + + false - - 10 - Label - - true - true - false - - true - false - - - - Label + + + + 0 + 1 true - Soft limit - + - 60 - 0 + + + + 10 + 1 + Label @@ -4413,137 +4441,135 @@ $(pv_value) $(P)$(SLIT)xp.LVIO - 1 - - - - 1 - - 144 - true - - 153 - - - false - true - 39872d87:13e14015f61:1c96 - - 20 - Choice Button - false true true false - $(P)$(SLIT)xp.SET + + false + Soft limit + + true + 1 + true + Label + 60 + false + 153 + 144 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 71 - 0 - - - - - + false + + + + 20 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 162 - $(pv_name) -$(pv_value) - 170 - - - true - 1 - 39872d87:13e14015f61:1c97 - false - - 16 - Label + Choice Button + $(P)$(SLIT)xp.SET + + true true false - true - false + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 71 + 170 + 162 + + + + false - - - - Label - true - Calib: - - - - 45 - 0 - - 1 - 0 - - 164 - true - - 256 - - - true - 1 - 39872d87:13e14015f61:1c98 - false - + 0 + 1 + true + + + + + + 16 + 0 Label + true true false - true + false + Calib: + + true + 1 + true + Label + 45 + false + 256 + 164 + + + + false - - - - Label + + + + 0 + 1 true - Calib: - + - 45 - 0 + + + + 16 + 0 + Label @@ -4555,97 +4581,96 @@ $(pv_value) $(P)$(SLIT)size.SET - 1 - - - - 0 - - 163 - true + + true + true + false + + + false + Calib: + true + 1 + true + Label + 45 + false 255 + 163 - - true - true - 1 - false - 39872d87:13e14015f61:1c99 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 1 Text Update - false + 0 + true + $(P)$(SLIT)size.DESC + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(SLIT)size.DESC - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 116 - 0 - - - 1 - - - - 1 - - 25 false - $(pv_name) -$(pv_value) 255 + 25 - - true - 1 - 39872d87:13e14015f61:1c9d + + false - - 15 - Label - - true - true - false - - true - false - - - - Label + + + + 0 + 1 true - Moving - + - 60 - 0 + + + + 15 + 1 + Label @@ -4657,46 +4682,45 @@ $(pv_value) $(P)$(SLIT)size.DMOV - 1 - - - - 1 - - 146 - true - - 283 - - - true - 1 - 39872d87:13e14015f61:1c9e - false - - 10 - Label true true false - true + false + Moving + + true + 1 + true + Label + 60 + false + 283 + 146 + + + + false - - - - Label + + + + 0 + 1 true - Calibrate - + - 60 - 0 + + + + 10 + 1 + Label @@ -4708,300 +4732,277 @@ $(pv_value) $(P)$(SLIT)size.SET - 1 - - - - 1 - - 152 - true - - 283 - - - false - true - 39872d87:13e14015f61:1c9f - - 20 - Action Button - false true true false - $(P)allstop.VAL - - - - - - - Action Button - true - Abort - false - - Default - - 40 - 0 - 0 - - - - false - 1 - - - - 203 + + false + Calibrate + + true + 1 + true + Label + 60 + false + 283 + 152 + + $(P)allstop.VAL 1 10 + - $(pv_name) -$(pv_value) - 329 - - + false + false + + + false - true - 39872d87:13e14015f61:1ca0 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)$(SLIT)size:scanParms.GO - - - - - - - Action Button - true - Go - false - - Default - - 21 - 0 - 0 - - - + + + Abort false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 40 + 329 203 + + $(P)$(SLIT)size:scanParms.GO 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(SLIT)size:scanParms.GO + + + + true + true + false + + + + Go + false $(pv_name) $(pv_value) + true + Action Button + 21 307 + 203 - - true - 1 - 39872d87:13e14015f61:1ca2 + + false - + + + + + + + 0 + 1 + true + + + + + + 13 + 1 Label + true true false - true + false - - - - - - - Label - true Scan - - - - 30 - 0 - - 1 - - - - 1 - - 207 - true + true + 1 + true + Label + 30 + false 255 + 207 - - false - true - 39872d87:13e14015f61:1ca3 - - 20 - Action Button - false - - true - true - false - - $(P)$(SLIT)size:scanParms.LOAD - - - - - - - Action Button - true - Ld - false - - Default - - 21 - 0 - 0 - - - - false - 1 - - - - 203 + $(P)$(SLIT)size:scanParms.LOAD 1 10 + - $(pv_name) -$(pv_value) - 285 - - + false + false + + + false - true - 39872d87:13e14015f61:1ca4 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(SLIT)size:scanParms.LOAD + + true true false - $(P)$(SLIT)size.STOP - - - - - - - Action Button - true - STOP - false - - Default - - 53 - 0 - 0 - - - + + + Ld false - 1 - - - - 181 + $(pv_name) +$(pv_value) + true + Action Button + 21 + 285 + 203 + + $(P)$(SLIT)size.STOP 1 10 + - $(pv_name) -$(pv_value) - 315 - - + false + false + + + false - true - false - 39872d87:13e14015f61:1ca5 - - 20 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + $(P)$(SLIT)size.STOP + + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - + + + STOP + false + $(pv_name) +$(pv_value) + true + Action Button + 53 + 315 181 + + motorx_tiny.opi @@ -5009,7 +5010,7 @@ $(pv_value) true $(SLIT)size - 1 + 1 $(SLIT)size (Tiny) @@ -5018,7 +5019,7 @@ $(pv_value) true $(SLIT)size - 0 + 1 $(SLIT)size (Help) @@ -5027,7 +5028,7 @@ $(pv_value) true $(SLIT)size - 0 + 1 $(SLIT)size (Medium) @@ -5036,7 +5037,7 @@ $(pv_value) true $(SLIT)size - 0 + 1 $(SLIT)size (Setup) @@ -5046,7 +5047,7 @@ $(pv_value) $(SLIT)size $(SLIT)size - 0 + 1 Scan Parameters @@ -5055,400 +5056,445 @@ $(pv_value) true $(SLIT)size - 0 + 1 $(SLIT)size (Debug) - $(pv_name) -$(pv_value) - 260 - - + false + false + false + + + false - true - 39872d87:13e14015f61:1ca6 - - 36 - Action Button + + + + 6 + 1 + true + + Default + false + + + + 20 + + Menu Button + + + true true false - $(P)$(SLIT)size.TWR - - - - - - - Action Button - true - < - false - - Default - - 25 - 0 - 0 - - - - false - 1 - - - - 124 + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 40 + 260 + 181 + + $(P)$(SLIT)size.TWR 1 10 + - $(pv_name) -$(pv_value) - 257 - - - false - true - 1 - false - false - - 20 - false - true + false + false - + - Text Input + false + + + + 0 + 1 true - - + Default - 60 - 3 + false + + + + 36 + + Action Button + 0 + $(P)$(SLIT)size.TWR - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:1ca7 - 0.0 - Text Input + true true false - 1 - false - 0 - $(P)$(SLIT)size.TWV - - - - false - 0 - - - false - - - - 0 - - 124 + + + < + false $(pv_name) $(pv_value) - 283 + true + Action Button + 25 + 257 + 124 - + + + false + false + false + + + false - true - 39872d87:13e14015f61:1ca8 - - 36 - Action Button + + + + 3 + 1 + + true + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(SLIT)size.TWV + + false + 0.0 + true true false - $(P)$(SLIT)size.TWF - - - - - - - Action Button - true - > - false - - Default - - 25 - 0 - 0 - - - - false - 1 - - - + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 283 124 + + $(P)$(SLIT)size.TWF 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 36 + + Action Button + 0 + $(P)$(SLIT)size.TWF + + + + true + true + false + + + + > + false $(pv_name) $(pv_value) + true + Action Button + 25 344 + 124 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 98 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1ca9 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(SLIT)size.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(SLIT)size.VAL - - - - false - 0 - - - false - - - - 0 - - 94 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 98 264 + 94 - - true - true - 1 - false - 39872d87:13e14015f61:1cac + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 1 Text Update - false + 0 + true + $(P)$(SLIT)size.EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(SLIT)size.EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 116 - 0 - - - 1 - - - - 1 - - 57 false - $(pv_name) -$(pv_value) 255 + 57 - - true - 1 - 39872d87:13e14015f61:1cae + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true ($(P)$(SLIT)size) - - - - 116 - 0 - - 1 - - - - 1 - - 46 - true + true + 1 + true + Label + 116 + false 255 + 46 - - true - true - 1 - false - 39872d87:13e14015f61:1cb1 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 17 + 1 Text Update - false + 0 + true + $(P)$(SLIT)size.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(SLIT)size.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 94 - 0 - - - 1 - - - - 1 - - 70 false - $(pv_name) -$(pv_value) 266 + 70 - - true - 1 - 39872d87:13e14015f61:1cb2 + + false - - 10 - Label - - true - true - false - - true - false - - - - Label + + + + 0 + 1 true - Soft limit - + - 60 - 0 + + + + 10 + 1 + Label @@ -5460,137 +5506,135 @@ $(pv_value) $(P)$(SLIT)size.LVIO - 1 - - - - 1 - - 144 - true - - 283 - - - false - true - 39872d87:13e14015f61:1cb3 - - 20 - Choice Button - false true true false - $(P)$(SLIT)size.SET + + false + Soft limit + + true + 1 + true + Label + 60 + false + 283 + 144 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 71 - 0 - - - - - + false + + + + 20 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 162 + Choice Button + $(P)$(SLIT)size.SET + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 71 300 + 162 - - true - 1 - 39872d87:13e14015f61:1cb4 + + false - + + + + + + + 0 + 1 + true + + + + + + 16 + 0 Label + true true false - true + false - - - - - - - Label - true Calib: - - - - 45 - 0 - - 1 - - - - 0 - - 164 - true + true + 1 + true + Label + 45 + false 381 + 164 - - true - 1 - 39872d87:13e14015f61:1cb5 + + false - - 16 - Label - - true - true - false - - true - false - - - - Label + + + + 0 + 1 true - Calib: - + - 45 - 0 + + + + 16 + 0 + Label @@ -5602,97 +5646,96 @@ $(pv_value) $(P)$(SLIT)center.SET - 1 - - - - 0 - - 163 - true + + true + true + false + + + false + Calib: + true + 1 + true + Label + 45 + false 380 + 163 - - true - true - 1 - false - 39872d87:13e14015f61:1cb6 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 1 Text Update - false + 0 + true + $(P)$(SLIT)center.DESC + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(SLIT)center.DESC - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 116 - 0 - - - 1 - - - - 1 - - 25 false - $(pv_name) -$(pv_value) 380 + 25 - - true - 1 - 39872d87:13e14015f61:1cba + + false - - 15 - Label - - true - true - false - - true - false - - - - Label + + + + 0 + 1 true - Moving - + - 60 - 0 + + + + 15 + 1 + Label @@ -5704,46 +5747,45 @@ $(pv_value) $(P)$(SLIT)center.DMOV - 1 - - - - 1 - - 146 - true - - 408 - - - true - 1 - 39872d87:13e14015f61:1cbb - false - - 10 - Label true true false - true + false + Moving + + true + 1 + true + Label + 60 + false + 408 + 146 + + + + false - - - - Label + + + + 0 + 1 true - Calibrate - + - 60 - 0 + + + + 10 + 1 + Label @@ -5755,300 +5797,277 @@ $(pv_value) $(P)$(SLIT)center.SET - 1 - - - - 1 - - 152 - true - - 408 - - - false - true - 39872d87:13e14015f61:1cbc - - 20 - Action Button - false true true false - $(P)allstop.VAL - - - - - - - Action Button - true - Abort - false - - Default - - 40 - 0 - 0 - - - - false - 1 - - - - 203 + + false + Calibrate + + true + 1 + true + Label + 60 + false + 408 + 152 + + $(P)allstop.VAL 1 10 + - $(pv_name) -$(pv_value) - 454 - - + false + false + + + false - true - 39872d87:13e14015f61:1cbd - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)$(SLIT)center:scanParms.GO - - - - - - - Action Button - true - Go - false - - Default - - 21 - 0 - 0 - - - + + + Abort false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 40 + 454 203 + + $(P)$(SLIT)center:scanParms.GO 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(SLIT)center:scanParms.GO + + + + true + true + false + + + + Go + false $(pv_name) $(pv_value) + true + Action Button + 21 432 + 203 - - true - 1 - 39872d87:13e14015f61:1cbf + + false - + + + + + + + 0 + 1 + true + + + + + + 13 + 1 Label + true true false - true + false - - - - - - - Label - true Scan - - - - 30 - 0 - - 1 - - - - 1 - - 207 - true + true + 1 + true + Label + 30 + false 380 + 207 - + + + + $(P)$(SLIT)center:scanParms.LOAD + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1cc0 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(SLIT)center:scanParms.LOAD + + true true false - $(P)$(SLIT)center:scanParms.LOAD - - - - - - - Action Button - true + + Ld - false - - Default - - 21 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 21 + 410 203 + + - $(P)$(SLIT)center:scanParms.LOAD + $(P)$(SLIT)center.STOP 1 10 + - $(pv_name) -$(pv_value) - 410 - - + false + false + + + false - true - 39872d87:13e14015f61:1cc1 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(SLIT)center.STOP + + true true false - $(P)$(SLIT)center.STOP - - - - - - - Action Button - true + + STOP - false - - Default - - 53 - 0 - 0 - - - false - 1 - - - - 181 - - - $(P)$(SLIT)center.STOP - 1 - 10 - - - $(pv_name) $(pv_value) - 440 - - - false true - false - 39872d87:13e14015f61:1cc2 - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - + Action Button + 53 + 440 181 + + motorx_tiny.opi @@ -6056,7 +6075,7 @@ $(pv_value) true $(SLIT)center - 1 + 1 $(SLIT)center (Tiny) @@ -6065,7 +6084,7 @@ $(pv_value) true $(SLIT)center - 0 + 1 $(SLIT)center (Help) @@ -6074,7 +6093,7 @@ $(pv_value) true $(SLIT)center - 0 + 1 $(SLIT)center (Medium) @@ -6083,7 +6102,7 @@ $(pv_value) true $(SLIT)center - 0 + 1 $(SLIT)center (Setup) @@ -6093,7 +6112,7 @@ $(pv_value) $(SLIT)center $(SLIT)center - 0 + 1 Scan Parameters @@ -6102,400 +6121,445 @@ $(pv_value) true $(SLIT)center - 0 + 1 $(SLIT)center (Debug) - $(pv_name) -$(pv_value) - 385 - - + false + false + false + + + false - true - 39872d87:13e14015f61:1cc3 - - 36 - Action Button + + + + 6 + 1 + true + + Default + false + + + + 20 + + Menu Button + + + true true false - $(P)$(SLIT)center.TWR - - - - - - - Action Button - true - < - false - - Default - - 25 - 0 - 0 - - - - false - 1 - - - - 124 + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 40 + 385 + 181 + + $(P)$(SLIT)center.TWR 1 10 + - $(pv_name) -$(pv_value) - 382 - - - false - true - 1 - false - false - - 20 - false - true + false + false - + - Text Input + false + + + + 0 + 1 true - - + Default - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:1cc4 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(SLIT)center.TWV + false - + - false - 0 - - - false - - - - 0 - - 124 - $(pv_name) -$(pv_value) - 408 - - - false - true - 39872d87:13e14015f61:1cc5 - 36 + Action Button - false + 0 + $(P)$(SLIT)center.TWR + + true true false - $(P)$(SLIT)center.TWF - - - - - - - Action Button - true - > - false - - Default - - 25 - 0 - 0 - - - + + + < false - 1 - - - - 124 - - - $(P)$(SLIT)center.TWF - 1 - 10 - - - $(pv_name) $(pv_value) - 469 - - - false true - 1 - false + Action Button + 25 + 382 + 124 + + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 98 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1cc6 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(SLIT)center.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(SLIT)center.VAL - - - + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 408 + 124 + + + + + $(P)$(SLIT)center.TWF + 1 + 10 + + + + + false false - 0 - - - false + + + + false - 0 - - 94 + 0 + 1 + true + + Default + + false + + + + 36 + + Action Button + 0 + $(P)$(SLIT)center.TWF + + + + true + true + false + + + + > + false $(pv_name) $(pv_value) - 389 - - - true true - 1 - false - 39872d87:13e14015f61:1cc9 + Action Button + 25 + 469 + 124 + + + + false false - 0.0 - - 12 - Text Update + false + + + + false + + + + 3 + 1 + + true + + + false + + + + 1 + 25 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(SLIT)center.VAL + + false + 0.0 + true true false - 1 - true + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - $(P)$(SLIT)center.EGU + true + Text Input + 98 + 389 + 94 + + + + false + false + false - + - - - - Text Update - true - ###### - false - 0 - - - - 116 - 0 - - - 1 + true + 0 + 1 + true + + + + false + + + + 1 + 12 1 - - 57 - false + Text Update + 0 + true + $(P)$(SLIT)center.EGU + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 116 + false 380 + 57 - - true - 1 - 39872d87:13e14015f61:1ccb + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true ($(P)$(SLIT)center) - - - - 116 - 0 - - 1 - - - - 1 - - 46 - true + true + 1 + true + Label + 116 + false 380 + 46 - - true - true - 1 - false - 39872d87:13e14015f61:1cce + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 17 + 1 Text Update - false + 0 + true + $(P)$(SLIT)center.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(SLIT)center.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 94 - 0 - - - 1 - - - - 1 - - 70 false - $(pv_name) -$(pv_value) 391 + 70 - - true - 1 - 39872d87:13e14015f61:1ccf + + false - - 10 - Label - - true - true - false - - true - false - - - - Label + + + + 0 + 1 true - Soft limit - + - 60 - 0 + + + + 10 + 1 + Label @@ -6507,559 +6571,525 @@ $(pv_value) $(P)$(SLIT)center.LVIO - 1 - - - - 1 - - 144 - true - - 408 - - - false - true - 39872d87:13e14015f61:1cd0 - - 20 - Choice Button - false true true false - $(P)$(SLIT)center.SET + + false + Soft limit + + true + 1 + true + Label + 60 + false + 408 + 144 + + + + false + false - + - - - - Choice Button - true - false - - Default - - 71 - 0 - - - - - - - Choice 1 - Choice 2 - Choice 3 - - 1 - true + false - true - - 162 - $(pv_name) -$(pv_value) - 425 - - - false - true - 39872d87:13e14015f61:1cd1 - - 20 - Choice Button - false - - true - true - false - - $(P)$(SLIT)set.VAL - - - - - - - Choice Button + 0 + 1 true - false - Default + Default - 78 - 0 - - - - - - - Choice 1 - Choice 2 - Choice 3 - - 1 - true - - - - true - - 240 - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:1cd2 - - 27 - Action Button false - - true - true - false - - $(P)$(SLIT)stop.PROC - - - - + - Action Button - true - Stop - false - - Default - - 60 - 0 - 0 - - - - false - 1 - - - - 234 - - - $(P)$(SLIT)stop.PROC - 1 - 10 - - - - $(pv_name) -$(pv_value) - 260 - - - false - true - 39872d87:13e14015f61:1cd3 - 20 - Action Button - false + true + + Choice 1 + Choice 2 + Choice 3 + + true + Choice Button + $(P)$(SLIT)center.SET + + true true false - $(P)$(SLIT)sync.PROC + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 71 + 425 + 162 + + + + false + false - + - - - - Action Button - true - Sync to motors - false - - Default - - 110 - 0 - 0 - - - - false - 1 + false - 240 - - - $(P)$(SLIT)sync.PROC - 1 - 10 - - - - $(pv_name) -$(pv_value) - 85 - - - false - true - false - 39872d87:13e14015f61:1cd4 - - 20 - Menu Button + 0 + 1 + true + + Default + false + + + + 20 + true + + Choice 1 + Choice 2 + Choice 3 + + true + Choice Button + $(P)$(SLIT)set.VAL + + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 50 - 6 - - - - 1 - - - + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 78 + 0 240 + + yyTransform_full.opi true - $(SLIT)t1 + $(SLIT)tFwd - 0 + 1 drive transform yyTransform_full.opi true - $(SLIT)t2 + $(SLIT)tRev - 0 + 1 readback transform + + yyTransform_full.opi + + true + $(SLIT)tLimits + + 1 + limits transform + + + yyCalcoutRecord.opi + + true + $(SLIT)calcDone + + 1 + calcDone + + + yyTransform_full.opi + + true + $(SLIT)monitorStop + + 1 + monitorStop + + + yySeq_full.opi + + true + $(SLIT)doStop + + 1 + doStop + + + yyTransform.opi + + true + $(SLIT)spectator + + 1 + spectator + + + yyTransform.opi + + true + $(SLIT)tSyncCalc + + 1 + syncCalc + + + yyTransform.opi + + true + $(SLIT)tSync + + 1 + sync + - $(pv_name) -$(pv_value) - 200 - - + false + false + false + + + false - true - 20 - true - 100.0 - 39872d87:13e14015f61:1cd6 - 0.0 - - 0 - 1 - true - Polyline + + + + 6 + 1 + true + + Default + false - 255 + + + + 20 + + Menu Button + + + true true - true + false - - - - + + false + $(pv_name) +$(pv_value) false - + true + Menu Button + 50 + 200 + 240 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 499 + false + + + + 1 + true 0 - 0 - - - 1 1 - true - - - - - 23 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 499 1 + 23 - - true - 1 - 39872d87:13e14015f61:1cd7 + + false - + + + + + + + 0 + 1 + true + + + + + + 22 + 1 Label + true true false - true + false + Slit $(SLIT) + + true + 1 + true + Label + 500 + false + 0 + 0 + + + + false - - - - Label - true - Slit $(SLIT) - - - - 500 - 0 - - 1 - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:1cd8 - false - + 0 + 1 + true + + + + + + 10 + 2 Label + true true false - true + false + X+ MOTOR: + + true + 1 + true + Label + 50 + false + 355 + 250 + + + + false - - - - Label - true - X+ MOTOR: - - - - 50 - 0 - - 1 - 1 - - 250 - true - - 355 - - - true - 1 - 39872d87:13e14015f61:1cd9 - false - + 0 + 1 + true + + + + + + 10 + 2 Label + true true false - true + false - - - - - - - Label - true X- MOTOR: - - - - 50 - 0 - - 1 - - - - 1 - - 235 - true + true + 1 + true + Label + 50 + false 355 + 235 - - true - true - 1 - false - 39872d87:13e14015f61:1cda + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 12 + 0 Text Update - false + 0 + true + $(P)$(SLIT)mXp_nameCalc.SVAL + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(SLIT)mXp_nameCalc.SVAL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 0 - - 250 false - $(pv_name) -$(pv_value) 410 + 250 - - true - true - 1 - false - 39872d87:13e14015f61:1cdb + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 12 + 0 Text Update - false + 0 + true + $(P)$(SLIT)mXn_nameCalc.SVAL + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(SLIT)mXn_nameCalc.SVAL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 0 - - 235 false - $(pv_name) -$(pv_value) 410 + 235 - \ No newline at end of file + diff --git a/opticsApp/op/opi/4filter.opi b/opticsApp/op/opi/autoconvert/4filter.opi similarity index 83% rename from opticsApp/op/opi/4filter.opi rename to opticsApp/op/opi/autoconvert/4filter.opi index b652fdb..62715f8 100644 --- a/opticsApp/op/opi/4filter.opi +++ b/opticsApp/op/opi/autoconvert/4filter.opi @@ -1,557 +1,553 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 200 true - 39872d87:13e14015f61:1d5d - 3.1.2.20120830 + 4filter + + true + true + false true - 200 - 4filter false - false - - - - - - Display - true 385 - - true - 5 - - false - -1 - -1 - - - 10 10 - - false - true - 39872d87:13e14015f61:1d5e - - 130 - Choice Button - false - - true - true - false - - $(P)$(Q1)select.VAL + 10 + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 90 - 0 - - - - - + false + + + + 130 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 65 - $(pv_name) -$(pv_value) - 5 - - - false - true - 39872d87:13e14015f61:1d5f - - 130 Choice Button - false + $(P)$(Q1)select.VAL + + true true false - $(P)$(Q2)select.VAL + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 90 + 5 + 65 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 90 - 0 - - - - - + false + + + + 130 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 65 - $(pv_name) -$(pv_value) - 100 - - - false - true - 39872d87:13e14015f61:1d60 - - 15 Choice Button - false + $(P)$(Q2)select.VAL + + true true false - $(P)$(LOCK2)lock.VAL + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 90 + 100 + 65 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 90 - 0 - - - - - + false + + + + 15 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 20 - $(pv_name) -$(pv_value) - 100 - - - true - 1 - 39872d87:13e14015f61:1d61 - false - - 18 - Label + Choice Button + $(P)$(LOCK2)lock.VAL + + true true false - true - false + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 90 + 100 + 20 + + + + false - - - - Label - true - upstream - - - - 90 - 0 - - 1 + 0 + 1 + true + + + + + + + 18 1 - - 46 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:1d62 - false - - 20 Label + true true false - true + false + upstream + + true + 1 + true + Label + 90 + false + 5 + 46 + + + + false - - - - Label - true - User Filters - - - - 390 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 1 - - 0 - true - - 0 - - - false - true - 39872d87:13e14015f61:1d63 - - 15 - Choice Button - false + Label + true true false - $(P)$(LOCK1)lock.VAL + + false + User Filters + + true + 1 + true + Label + 390 + false + 0 + 0 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 90 - 0 - - - - - + false + + + + 15 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 20 - $(pv_name) -$(pv_value) - 5 - - - false - true - 39872d87:13e14015f61:1d64 - - 130 Choice Button - false + $(P)$(LOCK1)lock.VAL + + true true false - $(P)$(Q3)select.VAL + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 90 + 5 + 20 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 90 - 0 - - - - - + false + + + + 130 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 65 - $(pv_name) -$(pv_value) - 195 - - - false - true - 39872d87:13e14015f61:1d65 - - 15 Choice Button - false + $(P)$(Q3)select.VAL + + true true false - $(P)$(LOCK3)lock.VAL + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 90 + 195 + 65 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 90 - 0 - - - - - + false + + + + 15 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 20 - $(pv_name) -$(pv_value) - 195 - - - false - true - 39872d87:13e14015f61:1d66 - - 130 Choice Button - false + $(P)$(LOCK3)lock.VAL + + true true false - $(P)$(Q4)select.VAL + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 90 + 195 + 20 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 90 - 0 - - - - - + false + + + + 130 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 65 - $(pv_name) -$(pv_value) - 290 - - - true - 1 - 39872d87:13e14015f61:1d67 - false - - 18 - Label + Choice Button + $(P)$(Q4)select.VAL + + true true false - true - false + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 90 + 290 + 65 + + + + false - - - - Label - true - downstream - - - - 90 - 0 - - 1 + 0 + 1 + true + + + + + + + 18 1 - - 45 - true - - 290 - - - false - true - 39872d87:13e14015f61:1d68 - - 15 - Choice Button - false + Label + true true false - $(P)$(LOCK4)lock.VAL + + false + downstream + + true + 1 + true + Label + 90 + false + 290 + 45 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 90 - 0 - - - - - + false + + + + 15 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 20 + Choice Button + $(P)$(LOCK4)lock.VAL + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 90 290 + 20 - \ No newline at end of file + diff --git a/opticsApp/op/opi/4filter_setup.opi b/opticsApp/op/opi/autoconvert/4filter_setup.opi similarity index 77% rename from opticsApp/op/opi/4filter_setup.opi rename to opticsApp/op/opi/autoconvert/4filter_setup.opi index 9bf1fcd..c6dfcfa 100644 --- a/opticsApp/op/opi/4filter_setup.opi +++ b/opticsApp/op/opi/autoconvert/4filter_setup.opi @@ -1,636 +1,255 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 295 true - 39872d87:13e14015f61:1d76 - 3.1.2.20120830 + 4filter_setup + + true + true + false true - 295 - 4filter_setup false - false - - - - - - Display - true 920 - - true - 5 - - false - -1 - -1 - - - 10 10 - - false - true - 100.0 - - - - 39872d87:13e14015f61:1d77 - - - - - 17 - true - Rectangle - false + 10 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 920 + false + + + + false + 17 + true + + + 0 - 0 - - - 1 0 - true - - - - - 275 - $(pv_name) -$(pv_value) - 0 - false - - - - true - - true - 39872d87:13e14015f61:1d88 - - 120 - Grouping Container + Rectangle + + + true true false - true - false + + $(pv_name) +$(pv_value) + false + true + Rectangle + 920 + 0 + 275 + + + + false - + - - - - Grouping Container - true - - Default - - 70 - 0 - - false - 1 - - 125 - - 385 - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:1d89 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(Q2)pos5.VAL - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:1d8a - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(Q2)pos4.VAL - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:1d8b - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(Q2)pos3.VAL - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:1d8c - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(Q2)pos2.VAL - - - - false - 0 - - - false - - - - 0 - - 60 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:1d8d - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(Q2)posHome.VAL - - - - false - 0 - - - false - - - - 0 - - 100 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:1d8e - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(Q2)pos1.VAL - - - - false - 0 - - - false - - - - 0 - - 80 - $(pv_name) -$(pv_value) - 0 - - - - true - 1 - 39872d87:13e14015f61:1d78 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + NOTE: After changing filter-material description, you must close and reopen any screen that displays it. + + true + 1 + true + Label + 920 + false + 5 + 278 + + + + false - - - - Label - true - NOTE: After changing filter-material description, you must close and reopen any screen that displays it. - - - - 920 - 0 - - 1 - 1 - - 278 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:1d79 - false - + 0 + 1 + true + + + + + + 18 + 0 Label + true true false - true + false - - - - - - - Label - true Motor-drive PV - - - - 115 - 0 - - 1 - - - - 0 - - 255 - true + true + 1 + true + Label + 115 + false 5 + 255 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 105 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:1d7a - 0.0 - Text Input - + false + + + + 4 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q1)motorOut.OUTN + + false + 0.0 + + true true false - 4 - false + 0 - $(P)$(Q1)motorOut.OUTN - - - - false - 0 - - - false - - - - 0 - - 255 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 105 120 + 255 - - true - 1 - 39872d87:13e14015f61:1d7b + + false - - 10 - Label - - true - true - false - - true - false - - - - Label + + + + 0 + 1 true - INVALID - + - 40 - 0 + + + + 10 + 0 + Label @@ -642,1417 +261,1858 @@ $(pv_value) $(P)$(Q1)motorOut.OUTV - 1 - - - - 0 - - 247 - true + + true + true + false + + + false + INVALID + true + 1 + true + Label + 40 + false 180 + 247 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1d7c - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q1)pos5.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q1)pos5.VAL - - - - false - 0 - - - false - - - - 0 - - 125 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 155 + 125 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1d7d - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q1)pos4.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q1)pos4.VAL - - - - false - 0 - - - false - - - - 0 - - 145 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 155 + 145 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1d7e - 0.0 + false Text Input - + 0 + false + 0 + true + $(P)$(Q1)pos3.VAL + + false + 0.0 + + true true false - 1 - false + 0 - $(P)$(Q1)pos3.VAL - - - - false - 0 - - - false - - - - 0 - - 165 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 155 + 165 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1d7f - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q1)pos2.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q1)pos2.VAL - - - - false - 0 - - - false - - - - 0 - - 185 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 155 + 185 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1d80 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q1)posHome.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q1)posHome.VAL - - - - false - 0 - - - false - - - - 0 - - 225 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 155 + 225 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1d81 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q1)pos1.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q1)pos1.VAL - - - - false - 0 - - - false - - - - 0 - - 205 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 155 + 205 - + + + false + false + + + false - true - 39872d87:13e14015f61:1d82 - + + + + 0 + 1 + true + + Default + + false + + + 125 + false + + Choice 1 + Choice 2 + Choice 3 + + true Choice Button - false + $(P)$(Q4)select.VAL + + true true false - $(P)$(Q4)select.VAL - - - - - - + + + + + $(pv_name) +$(pv_value) + true Choice Button - true + 70 + 770 + 125 + + + + false false + + + + false + + + + 0 + 1 + true - Default + Default - 70 - 0 - - - - - + false + + + + 125 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 125 - $(pv_name) -$(pv_value) - 770 - - - false - true - 39872d87:13e14015f61:1d83 - - 125 Choice Button - false + $(P)$(Q3)select.VAL + + true true false - $(P)$(Q3)select.VAL + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 70 + 540 + 125 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 70 - 0 - - - - - + false + + + + 125 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 125 - $(pv_name) -$(pv_value) - 540 - - - false - true - 39872d87:13e14015f61:1d84 - - 125 Choice Button - false + $(P)$(Q2)select.VAL + + true true false - $(P)$(Q2)select.VAL + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 70 + 310 + 125 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 70 - 0 - - - - - + false + + + + 125 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 125 - $(pv_name) -$(pv_value) - 310 - - - false - true - 39872d87:13e14015f61:1d85 - - 125 Choice Button - false + $(P)$(Q1)select.VAL + + true true false - $(P)$(Q1)select.VAL - - - - - - - Choice Button - true - false - - Default - - 70 - 0 + - - - - Choice 1 - Choice 2 - Choice 3 - - 1 - false - - - - true - - 125 $(pv_name) $(pv_value) + true + Choice Button + 70 80 + 125 - - true - 1 - 39872d87:13e14015f61:1d86 + + false - + + + + + + + 0 + 1 + true + + + + + + 18 + 0 Label + true true false - true + false - - - - - - - Label - true Motor-drive PV - - - - 115 - 0 - - 1 - - - - 0 - - 255 - true + true + 1 + true + Label + 115 + false 235 + 255 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 105 - 3 - - 1 + false + + + + 4 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1d87 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q2)motorOut.OUTN + + false + 0.0 + true true false - 4 - false + 0 - $(P)$(Q2)motorOut.OUTN - - - - false - 0 - - - false - - - - 0 - - 255 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 105 350 + 255 - - true - 1 - 39872d87:13e14015f61:1d8f + + + false false - - 10 - Label - - true - true - false - - true - false + false - + - - - - Label - true - INVALID - - - - 40 - 0 - - - - true - - - false - - $(P)$(Q2)motorOut.OUTV - - - 1 + false - 0 - - 245 - true - - 410 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1d90 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q2)pos5.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q2)name5 - - - - false - 0 - - - false - - - - 0 - - 125 + false + true + false + false + + $(pv_name) $(pv_value) - 235 - - - false + false true - 1 - false + Text Input + 70 + 385 + 125 + + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1d91 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q2)pos4.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q2)name4 - - - - false - 0 - - - false - - - - 0 - - 145 + false + true + false + false + + $(pv_name) $(pv_value) - 235 - - - false + false true - 1 - false + Text Input + 70 + 385 + 145 + + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:1d92 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(Q2)name3 + false - + - false + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false 0 - + true + $(P)$(Q2)pos3.VAL + + false + 0.0 - false - - - - 0 - - 165 + + true + true + false + + + 0 + false + true + false + false + + $(pv_name) $(pv_value) - 235 - - - false + false true - 1 - false + Text Input + 70 + 385 + 165 + + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1d93 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q2)pos2.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q2)name2 - - - - false - 0 - - - false - - - - 0 - - 185 + false + true + false + false + + $(pv_name) $(pv_value) - 235 - - - false + false true - 1 - false + Text Input + 70 + 385 + 185 + + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1d94 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q2)posHome.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q2)nameHome - - - - false - 0 - - - false - - - - 0 - - 225 + false + true + false + false + + $(pv_name) $(pv_value) - 235 - - - false + false true - 1 - false + Text Input + 70 + 385 + 225 + + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1d95 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q2)pos1.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q2)name1 - - - - false - 0 - - - false - - - - 0 - - 205 + false + true + false + false + + $(pv_name) $(pv_value) - 235 - - + false true - 1 - 39872d87:13e14015f61:1d96 + Text Input + 70 + 385 + 205 + + + false - - 14 - Label - - true - true - false - - true - false - - - - Label + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + + true + + + false + + $(P)$(Q2)motorOut.OUTV + + + + true + true + false + + + false + INVALID + + true + 1 + true + Label + 40 + false + 410 + 245 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q2)name5 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 235 + 125 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q2)name4 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 235 + 145 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q2)name3 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 235 + 165 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q2)name2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 235 + 185 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q2)nameHome + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 235 + 225 + + + + false + false + false + + + + false + + + + 3 + 1 + true - position - + - 70 - 0 + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q2)name1 + + false + 0.0 - 1 + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 235 + 205 + + + + false + + + - 1 - - 100 - true - - 385 - - - true - 1 - 39872d87:13e14015f61:1d97 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + position + + true + 1 + true + Label + 70 + false + 385 + 100 + + + + false - - - - Label - true - control - - - - 70 - 0 - - 1 - 1 - - 100 - true - - 310 - - - true - 1 - 39872d87:13e14015f61:1d98 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + control + + true + 1 + true + Label + 70 + false + 310 + 100 + + + + false - - - - Label - true - material - - - - 70 - 0 - - 1 - 1 - - 100 - true - - 235 - - - true - 1 - 39872d87:13e14015f61:1d99 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + material + + true + 1 + true + Label + 70 + false + 235 + 100 + + + + false - - - - Label - true - motor - - - - 70 - 0 - - 1 - 1 - - 85 - true - - 385 - - - true - 1 - 39872d87:13e14015f61:1d9a - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false - - - - - - + motor + + true + 1 + true Label - true - - - - 70 - 0 - - 1 - - - - 1 - + false + 385 85 - true - - 310 - - true - 1 - 39872d87:13e14015f61:1d9b + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + + + true + 1 + true + Label + 70 + false + 310 + 85 + + + + false - - - - Label - true - filter - - - - 70 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 1 - - 85 - true + Label + + + true + true + false + + + false + filter + true + 1 + true + Label + 70 + false 235 + 85 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1d9c - 0.0 - - 0 + + Default + + false + + + 211 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - 1 - 1 - true - - - - - 63 - $(pv_name) -$(pv_value) - 230 - - - false - true - 39872d87:13e14015f61:1d9d - - 20 - Choice Button - false + 0.0 + true true - false + true - $(P)$(LOCK2)lock.VAL + + $(pv_name) +$(pv_value) + false + true + Polyline + 1 + 230 + 63 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 200 - 0 - - - - - + false + + + + 20 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 20 - $(pv_name) -$(pv_value) - 245 - - - true - 1 - 39872d87:13e14015f61:1d9e - false - - 10 - Label + Choice Button + $(P)$(LOCK2)lock.VAL + + true true false - true - false + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 200 + 245 + 20 + + + + false - - - - Label + + + + 0 + 1 true - INVALID - + - 40 - 0 + + + + 10 + 0 + Label @@ -2064,816 +2124,849 @@ $(pv_value) $(P)$(LOCK2)lockOut.OUTV - 1 - - - - 0 - - 45 - true + + true + true + false + + + false + INVALID + true + 1 + true + Label + 40 + false 405 + 45 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 120 - 3 - - 1 + false + + + + 4 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1d9f - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(LOCK2)lockOut.OUTN + + false + 0.0 + true true false - 4 - false + 0 - $(P)$(LOCK2)lockOut.OUTN - - - - false - 0 - - - false - - - - 0 - - 40 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 120 285 + 40 - - true - 1 - 39872d87:13e14015f61:1da0 + + false - + + + + + + + 0 + 1 + true + + + + + + 18 + 0 Label + true true false - true + false - - - - - - - Label - true Lock_PV - - - - 55 - 0 - - 1 - - - - 0 - - 42 - true + true + 1 + true + Label + 55 + false 230 + 42 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1da1 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q1)name5 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q1)name5 - - - - false - 0 - - - false - - - - 0 - - 125 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 5 + 125 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1da2 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q1)name4 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q1)name4 - - - - false - 0 - - - false - - - - 0 - - 145 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 5 + 145 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1da3 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q1)name3 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q1)name3 - - - - false - 0 - - - false - - - - 0 - - 165 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 5 + 165 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1da4 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q1)name2 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q1)name2 - - - - false - 0 - - - false - - - - 0 - - 185 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 5 + 185 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1da5 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q1)nameHome + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q1)nameHome - - - - false - 0 - - - false - - - - 0 - - 225 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 5 + 225 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1da6 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q1)name1 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q1)name1 - - - - false - 0 - - - false - - - - 0 - - 205 + false + true + false + false + + $(pv_name) $(pv_value) - 5 - - + false true - 1 - 39872d87:13e14015f61:1da7 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - position - - - + Text Input 70 - 0 - - 1 + 5 + 205 + + + + false + + + - 1 - - 100 - true - - 155 - - - true - 1 - 39872d87:13e14015f61:1da8 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + position + + true + 1 + true + Label + 70 + false + 155 + 100 + + + + false - - - - Label - true - control - - - - 70 - 0 - - 1 - 1 - - 100 - true - - 80 - - - true - 1 - 39872d87:13e14015f61:1da9 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + control + + true + 1 + true + Label + 70 + false + 80 + 100 + + + + false - - - - Label - true - material - - - - 70 - 0 - - 1 - 1 - - 100 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:1daa - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + material + + true + 1 + true + Label + 70 + false + 5 + 100 + + + + false - - - - Label - true - motor - - - - 70 - 0 - - 1 - 1 - - 85 - true - - 155 - - - true - 1 - 39872d87:13e14015f61:1dab - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + motor + + true + 1 + true + Label + 70 + false + 155 + 85 + + + + false - - - - Label - true - - - - - 70 - 0 - - 1 - 1 - - 85 - true - - 80 - - - true - 1 - 39872d87:13e14015f61:1dac - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + + + true + 1 + true + Label + 70 + false + 80 + 85 + + + + false - - - - Label - true - filter - - - - 70 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 1 - - 85 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:1dad - false - - 18 Label + true true false - true + false + filter + + true + 1 + true + Label + 70 + false + 5 + 85 + + + + false - - - - Label - true - User Filter $(P)$(Q1) - - - - 920 - 0 - - 1 + 0 + 1 + true + + + + + + + 18 1 - - 0 - true - - 0 - - - false - true - 39872d87:13e14015f61:1dae - - 20 - Choice Button - false + Label + true true false - $(P)$(LOCK1)lock.VAL + + false + User Filter $(P)$(Q1) + + true + 1 + true + Label + 920 + false + 0 + 0 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 200 - 0 - - - - - + false + + + + 20 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 20 - $(pv_name) -$(pv_value) - 15 - - - true - 1 - 39872d87:13e14015f61:1daf - false - - 10 - Label + Choice Button + $(P)$(LOCK1)lock.VAL + + true true false - true - false + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 200 + 15 + 20 + + + + false - - - - Label + + + + 0 + 1 true - INVALID - + - 40 - 0 + + + + 10 + 0 + Label @@ -2885,782 +2978,826 @@ $(pv_value) $(P)$(LOCK1)lockOut.OUTV - 1 - - - - 0 - - 45 - true + + true + true + false + + + false + INVALID + true + 1 + true + Label + 40 + false 175 + 45 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 120 - 3 - - 1 + false + + + + 4 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1db0 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(LOCK1)lockOut.OUTN + + false + 0.0 + true true false - 4 - false + 0 - $(P)$(LOCK1)lockOut.OUTN - - - - false - 0 - - - false - - - - 0 - - 40 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 120 55 + 40 - - true - 1 - 39872d87:13e14015f61:1db1 + + false - + + + + + + + 0 + 1 + true + + + + + + 18 + 0 Label + true true false - true + false + Lock_PV + + true + 1 + true + Label + 55 + false + 0 + 42 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label - true - Lock_PV - - - - 55 - 0 - - 1 + false - 0 - - 42 - true - - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1db2 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 916 + 1 + 18 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 916 - 0 - 0 - - - 1 - 1 - true + false - - 18 - $(pv_name) -$(pv_value) - 1 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1db3 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 916 - 0 - 0 - - 1 - 1 - true - - - - - 62 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 916 1 + 62 - - true - 1 - 39872d87:13e14015f61:1db4 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true upstream - - - - 220 - 0 - - 1 - - - - 1 - - 65 - true + true + 1 + true + Label + 220 + false 5 + 65 - - false - true + + + false + 255 + true 20 - true - 100.0 - 39872d87:13e14015f61:1db5 - 0.0 - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 916 + false + + + + 1 + true 0 - 0 - - - 1 1 - true - - - - - 276 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 916 1 + 276 - - true - 1 - 39872d87:13e14015f61:1db6 + + false - + + + + + + + 0 + 1 + true + + + + + + 18 + 0 Label + true true false - true + false - - - - - - - Label - true Motor-drive PV - - - - 115 - 0 - - 1 - - - - 0 - - 255 - true + true + 1 + true + Label + 115 + false 465 + 255 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 105 - 3 - - 1 + false + + + + 4 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1db7 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q3)motorOut.OUTN + + false + 0.0 + true true false - 4 - false + 0 - $(P)$(Q3)motorOut.OUTN - - - - false - 0 - - - false - - - - 0 - - 255 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 105 580 + 255 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1db8 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q3)pos5.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q3)pos5.VAL - - - - false - 0 - - - false - - - - 0 - - 125 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 615 + 125 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1db9 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q3)pos4.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q3)pos4.VAL - - - - false - 0 - - - false - - - - 0 - - 145 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 615 + 145 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1dba - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q3)pos3.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q3)pos3.VAL - - - - false - 0 - - - false - - - - 0 - - 165 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 615 + 165 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1dbb - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q3)pos2.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q3)pos2.VAL - - - - false - 0 - - - false - - - - 0 - - 185 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 615 + 185 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1dbc - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q3)posHome.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q3)posHome.VAL - - - - false - 0 - - - false - - - - 0 - - 225 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 615 + 225 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1dbd - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q3)pos1.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q3)pos1.VAL - - - - false - 0 - - - false - - - - 0 - - 205 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 615 + 205 - - true - 1 - 39872d87:13e14015f61:1dbe + + false - - 10 - Label - - true - true - false - - true - false - - - - Label + + + + 0 + 1 true - INVALID - + - 40 - 0 + + + + 10 + 0 + Label @@ -3672,733 +3809,762 @@ $(pv_value) $(P)$(Q3)motorOut.OUTV - 1 - - - - 0 - - 245 - true + + true + true + false + + + false + INVALID + true + 1 + true + Label + 40 + false 640 + 245 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1dbf - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q3)name5 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q3)name5 - - - - false - 0 - - - false - - - - 0 - - 125 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 465 + 125 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1dc0 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q3)name4 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q3)name4 - - - - false - 0 - - - false - - - - 0 - - 145 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 465 + 145 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1dc1 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q3)name3 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q3)name3 - - - - false - 0 - - - false - - - - 0 - - 165 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 465 + 165 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1dc2 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q3)name2 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q3)name2 - - - - false - 0 - - - false - - - - 0 - - 185 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 465 + 185 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1dc3 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q3)nameHome + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q3)nameHome - - - - false - 0 - - - false - - - - 0 - - 225 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 465 + 225 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1dc4 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q3)name1 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q3)name1 - - - - false - 0 - - - false - - - - 0 - - 205 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 465 + 205 - - true - 1 - 39872d87:13e14015f61:1dc5 + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - position - - - - 70 - 0 - - 1 - 1 - - 100 - true - - 615 - - - true - 1 - 39872d87:13e14015f61:1dc6 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false - - - - - - + position + + true + 1 + true Label - true - control - - - 70 - 0 - - 1 - - - - 1 - + false + 615 100 - true - - 540 - - true - 1 - 39872d87:13e14015f61:1dc7 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + control + + true + 1 + true + Label + 70 + false + 540 + 100 + + + + false - - - - Label - true - material - - - - 70 - 0 - - 1 - 1 - - 100 - true - - 465 - - - true - 1 - 39872d87:13e14015f61:1dc8 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + material + + true + 1 + true + Label + 70 + false + 465 + 100 + + + + false - - - - Label - true - motor - - - - 70 - 0 - - 1 - 1 - - 85 - true - - 615 - - - true - 1 - 39872d87:13e14015f61:1dc9 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + motor + + true + 1 + true + Label + 70 + false + 615 + 85 + + + + false - - - - Label - true - - - - - 70 - 0 - - 1 - 1 - - 85 - true - - 540 - - - true - 1 - 39872d87:13e14015f61:1dca - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + + + true + 1 + true + Label + 70 + false + 540 + 85 + + + + false - - - - Label - true - filter - - - - 70 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 1 - - 85 - true + Label + + + true + true + false + + + false + filter + true + 1 + true + Label + 70 + false 465 + 85 - - false - true + + + false + 255 + true 20 - true - 100.0 - 39872d87:13e14015f61:1dcb - 0.0 - 0 - 211 - true - Polyline - false - 255 - - true - true - true - - - - - - false - + false - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true - - - - - 63 - $(pv_name) -$(pv_value) - 460 - - false - true - 39872d87:13e14015f61:1dcc - - 20 - Choice Button + + + + 0 + 1 + true + true + 100.0 + + Default + false + + + + 211 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true - false + true - $(P)$(LOCK3)lock.VAL + + $(pv_name) +$(pv_value) + false + true + Polyline + 1 + 460 + 63 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 200 - 0 - - - - - + false + + + + 20 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 20 - $(pv_name) -$(pv_value) - 475 - - - true - 1 - 39872d87:13e14015f61:1dcd - false - - 10 - Label + Choice Button + $(P)$(LOCK3)lock.VAL + + true true false - true - false + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 200 + 475 + 20 + + + + false - - - - Label + + + + 0 + 1 true - INVALID - + - 40 - 0 + + + + 10 + 0 + Label @@ -4410,576 +4576,621 @@ $(pv_value) $(P)$(LOCK3)lockOut.OUTV - 1 - - - - 0 - - 45 - true + + true + true + false + + + false + INVALID + true + 1 + true + Label + 40 + false 635 + 45 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 120 - 3 - - 1 + false + + + + 4 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1dce - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(LOCK3)lockOut.OUTN + + false + 0.0 + true true false - 4 - false + 0 - $(P)$(LOCK3)lockOut.OUTN - - - - false - 0 - - - false - - - - 0 - - 40 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 120 515 + 40 - - true - 1 - 39872d87:13e14015f61:1dcf + + false - + + + + + + + 0 + 1 + true + + + + + + 18 + 0 Label + true true false - true + false - - - - - - - Label - true Lock_PV - - - - 55 - 0 - - 1 - - - - 0 - - 42 - true + true + 1 + true + Label + 55 + false 460 + 42 - - true - 1 - 39872d87:13e14015f61:1dd0 + + false - + + + + + + + 0 + 1 + true + + + + + + 18 + 0 Label + true true false - true + false - - - - - - - Label - true Motor-drive PV - - - - 115 - 0 - - 1 - - - - 0 - - 255 - true + true + 1 + true + Label + 115 + false 695 + 255 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 105 - 3 - - 1 + false + + + + 4 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1dd1 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q4)motorOut.OUTN + + false + 0.0 + true true false - 4 - false + 0 - $(P)$(Q4)motorOut.OUTN - - - - false - 0 - - - false - - - - 0 - - 255 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 105 810 + 255 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1dd2 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q4)pos5.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q4)pos5.VAL - - - - false - 0 - - - false - - - - 0 - - 125 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 845 + 125 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1dd3 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q4)pos4.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q4)pos4.VAL - - - - false - 0 - - - false - - - - 0 - - 145 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 845 + 145 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input - true - - - - - 70 + false + + + 3 - 1 + + true + + + + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1dd4 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q4)pos3.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q4)pos3.VAL - - - - false - 0 - - - false - - - - 0 - - 165 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 845 + 165 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1dd5 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q4)pos2.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q4)pos2.VAL - - - - false - 0 - - - false - - - - 0 - - 185 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 845 + 185 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1dd6 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q4)posHome.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q4)posHome.VAL - - - - false - 0 - - - false - - - - 0 - - 225 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 845 + 225 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1dd7 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q4)pos1.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q4)pos1.VAL - - - - false - 0 - - - false - - - - 0 - - 205 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 845 + 205 - - true - 1 - 39872d87:13e14015f61:1dd8 + + false - - 10 - Label - - true - true - false - - true - false - - - - Label + + + + 0 + 1 true - INVALID - + - 40 - 0 + + + + 10 + 0 + Label @@ -4991,774 +5202,802 @@ $(pv_value) $(P)$(Q4)motorOut.OUTV - 1 - - - - 0 - - 245 - true + + true + true + false + + + false + INVALID + true + 1 + true + Label + 40 + false 870 + 245 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1dd9 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q4)name5 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q4)name5 - - - - false - 0 - - - false - - - - 0 - - 125 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 695 + 125 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1dda - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q4)name4 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q4)name4 - - - - false - 0 - - - false - - - - 0 - - 145 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 695 + 145 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1ddb - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q4)name3 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q4)name3 - - - - false - 0 - - - false - - - - 0 - - 165 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 695 + 165 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1ddc + false + Text Input + 0 + false + 0 + true + $(P)$(Q4)name2 + + false 0.0 - Text Input + true true false - 1 - false + 0 - $(P)$(Q4)name2 - - - - false - 0 - - - false - - - - 0 - - 185 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 695 + 185 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1ddd - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q4)nameHome + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q4)nameHome - - - - false - 0 - - - false - - - - 0 - - 225 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 695 + 225 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1dde - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q4)name1 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q4)name1 - - - - false - 0 - - - false - - - - 0 - - 205 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 70 695 + 205 - - true - 1 - 39872d87:13e14015f61:1ddf + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + downstream + + true + 1 + true + Label + 220 + false + 695 + 65 + + + + false - - - - Label - true - downstream - - - - 220 - 0 - - 1 - 1 - - 65 - true - - 695 - - - true - 1 - 39872d87:13e14015f61:1de0 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + position + + true + 1 + true + Label + 70 + false + 845 + 100 + + + + false - - - - Label - true - position - - - - 70 - 0 - - 1 - 1 - - 100 - true - - 845 - - - true - 1 - 39872d87:13e14015f61:1de1 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + control + + true + 1 + true + Label + 70 + false + 770 + 100 + + + + false - - - - Label - true - control - - - - 70 - 0 - - 1 - 1 - - 100 - true - - 770 - - - true - 1 - 39872d87:13e14015f61:1de2 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + material + + true + 1 + true + Label + 70 + false + 695 + 100 + + + + false - - - - Label - true - material - - - - 70 - 0 - - 1 - 1 - - 100 - true - - 695 - - - true - 1 - 39872d87:13e14015f61:1de3 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + motor + + true + 1 + true + Label + 70 + false + 845 + 85 + + + + false - - - - Label - true - motor - - - - 70 - 0 - - 1 - 1 - - 85 - true - - 845 - - - true - 1 - 39872d87:13e14015f61:1de4 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + + + true + 1 + true + Label + 70 + false + 770 + 85 + + + + false - - - - Label - true - - - - - 70 - 0 - - 1 - 1 - - 85 - true - - 770 - - - true - 1 - 39872d87:13e14015f61:1de5 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false - - - - - - - Label - true filter - - - - 70 - 0 - - 1 - - - - 1 - - 85 - true + true + 1 + true + Label + 70 + false 695 + 85 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1de6 - 0.0 - - 0 + + Default + + false + + + 211 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - - - - - - - + true Polyline - true - false - - Default - 1 - 0 - 0 - - - 1 - 1 - true - - - - - 63 - $(pv_name) -$(pv_value) 690 + 63 - - false - true - 39872d87:13e14015f61:1de7 - - 20 - Choice Button - false - - true - true - false - - $(P)$(LOCK4)lock.VAL + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 200 - 0 - - - - - + false + + + + 20 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 20 - $(pv_name) -$(pv_value) - 705 - - - true - 1 - 39872d87:13e14015f61:1de8 - false - - 10 - Label + Choice Button + $(P)$(LOCK4)lock.VAL + + true true false - true - false + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 200 + 705 + 20 + + + + false - - - - Label + + + + 0 + 1 true - INVALID - + - 40 - 0 + + + + 10 + 0 + Label @@ -5770,112 +6009,124 @@ $(pv_value) $(P)$(LOCK4)lockOut.OUTV - 1 - - - - 0 - - 45 - true + + true + true + false + + + false + INVALID + true + 1 + true + Label + 40 + false 865 + 45 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 120 - 3 - - 1 + false + + + + 4 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1de9 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(LOCK4)lockOut.OUTN + + false + 0.0 + true true false - 4 - false + 0 - $(P)$(LOCK4)lockOut.OUTN - - - - false - 0 - - - false - - - - 0 - - 40 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 120 745 + 40 - - true - 1 - 39872d87:13e14015f61:1dea + + false - + + + + + + + 0 + 1 + true + + + + + + 18 + 0 Label + true true false - true + false - - - - - - - Label - true Lock_PV - - - - 55 - 0 - - 1 - - - - 0 - - 42 - true + true + 1 + true + Label + 55 + false 690 + 42 - \ No newline at end of file + diff --git a/opticsApp/op/opi/4slitGraphic.opi b/opticsApp/op/opi/autoconvert/4slitGraphic.opi similarity index 83% rename from opticsApp/op/opi/4slitGraphic.opi rename to opticsApp/op/opi/autoconvert/4slitGraphic.opi index 8baaa5e..5d6104d 100644 --- a/opticsApp/op/opi/4slitGraphic.opi +++ b/opticsApp/op/opi/autoconvert/4slitGraphic.opi @@ -1,866 +1,860 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 325 true - 39872d87:13e14015f61:1e61 - 3.1.2.20120830 + 4slitGraphic + + true + true + false true - 325 - 4slitGraphic false - false - - - - - - Display - true 280 - - true - 5 - - false - -1 - -1 - - - 543 1120 - + 543 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 100 + true - 39872d87:13e14015f61:1e62 - - - - - 100 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 100 + 90 + 125 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 100 - 0 - 0 - - - 1 - 0 - true - - - - - 125 - $(pv_name) -$(pv_value) - 90 + false + + + false - - - false - true - 100.0 + 20 + true - 39872d87:13e14015f61:1e63 - - - - - 20 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 280 + 0 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 280 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 100.0 + 100 + true - 39872d87:13e14015f61:1e70 - - - - - 100 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 100 + 10 + 125 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 + false + + + + false + 100 + true + + + 0 - 0 - + 2 + Rectangle + - 1 - 0 - true - - - - - 125 - $(pv_name) -$(pv_value) - 10 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:1e71 - - - - - 100 - true - Rectangle - false - 255 + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 100 + 10 + 125 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 100 - 0 - 0 - - - 1 - 2 - true - - - - - 125 - $(pv_name) -$(pv_value) - 10 + false + + + false - - - false - true - 100.0 + 100 + true - 39872d87:13e14015f61:1e7b - - - - - 100 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 100 + 170 + 125 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 - 0 - 0 - - - 1 - 0 - true - - - - - 125 - $(pv_name) -$(pv_value) - 170 + false + + + false - - - false - true - 0.0 + 100 + true - + - 39872d87:13e14015f61:1e7c - - - - - 100 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - - - - - - - + true Rectangle - true - - - - false - - Default - 100 - 0 - 0 - - - 1 - 2 - true + 170 + 125 + + + + + + - - 125 - $(pv_name) -$(pv_value) - 170 - false - - + 0 + 1 + true + false + + Default + + + + + 100 + false true - true - 39872d87:13e14015f61:1e6a - - 100 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 100 - 0 - - false - 1 - - - - - 200 - 90 - - false - true - 100.0 - - - - 39872d87:13e14015f61:1e6b + 200 + + + false + 255 + true + false + + + - - 100 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 100 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 0.0 + 100 + true - + - 39872d87:13e14015f61:1e6c - - - - - 100 - true + 0 + 0 Rectangle - false - 255 + + + true true false - true - + + $(pv_name) +$(pv_value) + false + true + Rectangle + 100 + 0 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 + false + + + + false + 100 + true + + + 0 - 0 - - - 1 2 - true - - - - - 0 + Rectangle + + + + + true + true + false + + $(pv_name) $(pv_value) + true + true + Rectangle + 100 0 - false + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 100 + false true - true - 39872d87:13e14015f61:1e6d - - 100 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 100 - 0 - - false - 1 - - - - - 50 - 90 - + 50 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 100 + true - 39872d87:13e14015f61:1e6e - - - - - 100 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 100 + 0 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 + false + + + + false + 100 + true + + + 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:1e6f - - - - - 100 - true + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - - - - - - - + true Rectangle - true - - - - false - - Default - 100 - 0 - 0 - - - 1 - 2 - true - - - - - 0 - $(pv_name) -$(pv_value) 0 - false + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 11 + false true - true - 39872d87:13e14015f61:1ec0 - - 11 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 16 - 0 - - false - 1 - - - - - 171 - 146 - + 171 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1ec1 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 14 + 0 + 6 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 14 - 0 - 0 - - - 1 - 1 - true + false - - 6 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1ec2 - 0.0 - - 0 + + Default + + false + + + 10 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 10 - 0 - 0 - - 1 - 1 - true - - - - - 1 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 10 6 + 1 - - - true - - true - 39872d87:13e14015f61:1ec3 - - 11 - Grouping Container - - true - true - false - - true - false + + - - - - Grouping Container + + + + 0 + 1 true + false - Default + Default - 16 - 0 + + + + 11 + false + + true + + Grouping Container @@ -872,307 +866,307 @@ $(pv_value) $(P)$(H)CoordSys - false - 1 - - - - - 171 + + true + true + false + + + false + true + true + Grouping Container + 16 114 - + 171 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1ec4 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 14 + 0 + 6 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 14 - 0 - 0 - - - 1 - 1 - true + false - - 6 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1ec5 - 0.0 - - 0 + + Default + + false + + + 10 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 10 - 0 - 0 - - 1 - 1 - true - - - - - 1 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 10 6 + 1 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 16 + false true - true - 39872d87:13e14015f61:1ec6 - - 16 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 11 - 0 - - false - 1 - - - - - 153 - 132 - - false - true + 153 + + + false + 255 + true 20 - true - 100.0 - 39872d87:13e14015f61:1ec7 - 0.0 - 0 - 14 - true - Polyline - false - 255 - - true - true - true - - - - - - false - + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 1 + false + + + + 14 + true 0 - 0 - - - 1 1 - true - - - - - 3 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 1 6 + 3 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1ec8 - 0.0 - - 0 + + Default + + false + + + 10 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 10 - 0 - 0 - - 1 - 1 - true - - - - - 1 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 10 1 + 1 - - - true - - true - 39872d87:13e14015f61:1ec9 - - 16 - Grouping Container - - true - true - false - - true - false + + - - - - Grouping Container + + + + 0 + 1 true + false - Default + Default - 11 - 0 + + + + 16 + false + + true + + Grouping Container @@ -1184,156 +1178,156 @@ $(pv_value) $(P)$(V)CoordSys - false - 1 - - - - - 184 + + true + true + false + + + false + true + true + Grouping Container + 11 133 - + 184 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1eca - 0.0 - - 0 + + Default + + false + + + 14 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 1 + 6 + 3 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true + false - - 3 - $(pv_name) -$(pv_value) - 6 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1ecb - 0.0 - - 0 + + Default + + false + + + 10 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 10 - 0 - 0 - - 1 - 1 - true - - - - - 1 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 10 1 + 1 - - - true - - true - 39872d87:13e14015f61:1ecc - - 16 - Grouping Container - - true - true - false - - true - false + + - - - - Grouping Container + + + + 0 + 1 true + false - Default + Default - 11 - 0 + + + + 16 + false + + true + + Grouping Container @@ -1345,156 +1339,156 @@ $(pv_value) $(P)$(V)CoordSys - false - 1 - - - - - 184 + + true + true + false + + + false + true + true + Grouping Container + 11 133 - + 184 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1ecd - 0.0 - - 0 + + Default + + false + + + 14 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 1 + 5 + 0 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true + false - - 0 - $(pv_name) -$(pv_value) - 5 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1ece - 0.0 - - 0 + + Default + + false + + + 10 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 10 - 0 - 0 - - 1 - 1 - true - - - - - 6 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 10 1 + 6 - - - true - - true - 39872d87:13e14015f61:1ecf - - 11 - Grouping Container - - true - true - false - - true - false + + - - - - Grouping Container + + + + 0 + 1 true + false - Default + Default - 16 - 0 + + + + 11 + false + + true + + Grouping Container @@ -1506,832 +1500,815 @@ $(pv_value) $(P)$(H)CoordSys - false - 1 - - - - - 171 + + true + true + false + + + false + true + true + Grouping Container + 16 114 - + 171 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1ed0 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 14 + 3 + 6 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 14 - 0 - 0 - - - 1 - 1 - true + false - - 6 - $(pv_name) -$(pv_value) - 3 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1ed1 - 0.0 - - 0 + + Default + + false + + + 10 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 10 - 0 - 0 - - 1 - 1 - true - - - - - 1 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 10 1 + 1 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1e64 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 279 - 0 - 0 - - 1 - 1 - true - - - - - 21 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 279 1 + 21 - - true - 1 - 39872d87:13e14015f61:1e65 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true $(SLIT) - - - - 170 - 0 - - 1 - - - - 1 - - 0 - true + true + 1 + true + Label + 170 + false 0 + 0 - - true - true - 1 - false - 39872d87:13e14015f61:1e66 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(V)center.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(V)center.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 242 false - $(pv_name) -$(pv_value) 195 + 242 - - true - true - 1 - false - 39872d87:13e14015f61:1e67 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(V)size.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(V)size.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 242 false - $(pv_name) -$(pv_value) 5 + 242 - - true - true - 1 - false - 39872d87:13e14015f61:1e68 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(H)center.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)center.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 37 false - $(pv_name) -$(pv_value) 195 + 37 - - true - true - 1 - false - 39872d87:13e14015f61:1e69 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(H)size.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)size.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 37 false - $(pv_name) -$(pv_value) 5 + 37 - + + + + $(P)$(H)xn_tweak.A + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1e72 - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(H)xn_tweak.A + + true true false - $(P)$(H)xn_tweak.A - - - - - - - Action Button - true + + - - false - - Default - - 16 - 0 - 0 - - - false - 1 - - - - 184 - - - $(P)$(H)xn_tweak.A - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 16 20 + 184 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1e73 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(H)xn_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(H)xn_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 184 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 35 + 184 - + + + + $(P)$(H)xn_tweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1e74 - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(H)xn_tweak.B + + true true false - $(P)$(H)xn_tweak.B - - - - - - - Action Button - true + + + - false - - Default - - 16 - 0 - 0 - - - false - 1 - - - - 184 - - - $(P)$(H)xn_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 16 84 + 184 - - true - true - 1 - false - 39872d87:13e14015f61:1e75 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(H)xn.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)xn.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 135 false - $(pv_name) -$(pv_value) 20 + 135 - - true - true - 1 - false - 39872d87:13e14015f61:1e76 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(H)t2.B + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)t2.B - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 0 - - 143 false - $(pv_name) -$(pv_value) 20 + 143 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1e77 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(H)xn.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(H)xn.VAL - - - - false - 0 - - - false - - - - 0 - - 156 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 20 + 156 - - true - true - 1 - false - 39872d87:13e14015f61:1e78 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(H)xn.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)xn.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 176 false - $(pv_name) -$(pv_value) 20 + 176 - - false - true - false - 39872d87:13e14015f61:1e79 - - 16 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 16 - 6 - - - - 1 - - - - 205 + scanParmsCustom.opi @@ -2342,501 +2319,517 @@ $(pv_value) $(H)n $(H)xn.EGU - 0 + 1 Setup scan parameters + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + + + + + true + true + false + + + + + false $(pv_name) $(pv_value) + true + Action Button + 16 35 + 205 - - true - 1 - 39872d87:13e14015f61:1e7a + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true Scan - - - - 30 - 0 - - 1 - - - - 0 - - 206 - true + true + 1 + true + Label + 30 + false 55 + 206 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1e7d - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(H)xp.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(H)xp.VAL - - - - false - 0 - - - false - - - - 0 - - 156 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 180 + 156 - - true - true - 1 - false - 39872d87:13e14015f61:1e7e + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(H)xp.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)xp.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 176 false - $(pv_name) -$(pv_value) 180 + 176 - + + + + $(P)$(H)xp_tweak.A + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1e7f - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(H)xp_tweak.A + + true true false - $(P)$(H)xp_tweak.A - - - - - - - Action Button - true + + - - false - - Default - - 16 - 0 - 0 - - - false - 1 - - - - 184 - - - $(P)$(H)xp_tweak.A - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 16 180 + 184 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1e80 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(H)xp_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(H)xp_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 184 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 195 + 184 - + + + + $(P)$(H)xp_tweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1e81 - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(H)xp_tweak.B + + true true false - $(P)$(H)xp_tweak.B - - - - - - - Action Button - true + + + - false - - Default - - 16 - 0 - 0 - - - false - 1 - - - - 184 - - - $(P)$(H)xp_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 16 244 + 184 - - true - true - 1 - false - 39872d87:13e14015f61:1e82 + + + false false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(H)xp.DRVH + false - + - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 + true + 0 + 1 + true + + + + false + + + + 1 + 10 1 - - 135 - false - $(pv_name) -$(pv_value) - 180 - - - true - true - 1 - false - 39872d87:13e14015f61:1e83 - false - 0.0 - - 14 Text Update - false + 0 + true + $(P)$(H)xp.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)t2.A - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 0 - - 143 false - $(pv_name) -$(pv_value) 180 + 135 - - true - 1 - 39872d87:13e14015f61:1e84 + + + false false - - 14 - Label - - true - true - false - - true - false + false - - - - Label - true - Scan - - - - 30 - 0 - - 1 + true - 0 - - 206 - true - - 215 - - - false - true - false - 39872d87:13e14015f61:1e85 - - 16 - Menu Button + 0 + 1 + true + + + false + + + + 1 + 14 + 0 + Text Update + 0 + true + $(P)$(H)t2.A + + 0.0 + true true false + + false + ###### + $(pv_name) +$(pv_value) false - + 1 + true + Text Update + 80 + false + 180 + 143 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 16 - 6 - + + + + 14 + 0 + Label - - 1 - - - - 205 + + true + true + false + + + false + Scan + + true + 1 + true + Label + 30 + false + 215 + 206 + + scanParmsCustom.opi @@ -2847,1184 +2840,1232 @@ $(pv_value) $(H)p $(H)xp.EGU - 0 + 1 Setup scan parameters + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + + + + + true + true + false + + + + + false $(pv_name) $(pv_value) + true + Action Button + 16 195 + 205 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1e86 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(V)xp.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(V)xp.VAL - - - - false - 0 - - - false - - - - 0 - - 76 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 100 + 76 - - true - true - 1 - false - 39872d87:13e14015f61:1e87 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(V)xp.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(V)xp.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 96 false - $(pv_name) -$(pv_value) 100 + 96 - + + + + $(P)$(V)xp_tweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1e88 - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(V)xp_tweak.B + + true true false - $(P)$(V)xp_tweak.B - - - - - - - Action Button - true + + + - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 104 - - - $(P)$(V)xp_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 166 + 104 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1e89 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(V)xp_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(V)xp_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 104 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 115 + 104 - + + + + $(P)$(V)xp_tweak.A + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1e8a - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(V)xp_tweak.A + + true true false - $(P)$(V)xp_tweak.A - - - - - - - Action Button - true + + - - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 104 - - - $(P)$(V)xp_tweak.A - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 95 + 104 - - true - true - 1 - false - 39872d87:13e14015f61:1e8b + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(V)xp.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(V)xp.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 55 false - $(pv_name) -$(pv_value) 100 + 55 - - true - true - 1 - false - 39872d87:13e14015f61:1e8c + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(V)t2.A + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(V)t2.A - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 0 - - 63 false - $(pv_name) -$(pv_value) 100 + 63 - - false - true - 1 - false - false - - 20 - false - true + + + false + false + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1e8d - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(V)xn.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(V)xn.VAL - - - - false - 0 - - - false - - - - 0 - - 251 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 100 + 251 - - true - true - 1 - false - 39872d87:13e14015f61:1e8e + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(V)xn.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(V)xn.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 271 false - $(pv_name) -$(pv_value) 100 + 271 - + + + + $(P)$(V)xn_tweak.A + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1e8f - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(V)xn_tweak.A + + true true false - $(P)$(V)xn_tweak.A - - - - - - - Action Button - true + + - - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 279 - - - $(P)$(V)xn_tweak.A - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 95 + 279 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1e90 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(V)xn_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(V)xn_tweakVal.VAL - - - + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 50 + 115 + 279 + + + + + $(P)$(V)xn_tweak.B + 1 + 10 + + + + + false false - 0 - - - false + + + + false - 0 - - 279 - $(pv_name) -$(pv_value) - 115 - - - false - true - 39872d87:13e14015f61:1e91 - + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(V)xn_tweak.B + + true true false - $(P)$(V)xn_tweak.B - - - - - - - Action Button - true + + + - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 279 - - - $(P)$(V)xn_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 166 + 279 - - true - true - 1 - false - 39872d87:13e14015f61:1e92 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(V)xn.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(V)xn.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 230 false - $(pv_name) -$(pv_value) 100 + 230 - - true - true - 1 - false - 39872d87:13e14015f61:1e93 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(V)t2.B + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(V)t2.B - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 0 - - 238 false - $(pv_name) -$(pv_value) 100 + 238 - + + + + $(P)$(H)size_tweak.A + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1e94 - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(H)size_tweak.A + + true true false - $(P)$(H)size_tweak.A - - - - - - - Action Button - true + + - - false - - Default - - 16 - 0 - 0 - - - false - 1 - - - - 86 - - - $(P)$(H)size_tweak.A - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 16 5 + 86 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1e95 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(H)size_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(H)size_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 86 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 20 + 86 - + + + + $(P)$(H)size_tweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1e96 - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(H)size_tweak.B + + true true false - $(P)$(H)size_tweak.B - - - - - - - Action Button - true + + + - false - - Default - - 16 - 0 - 0 - - - false - 1 - - - - 86 - - - $(P)$(H)size_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 16 69 + 86 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1e97 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(H)size.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(H)size.VAL - - - - false - 0 - - - false - - - - 0 - - 58 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 5 + 58 - - true - true - 1 - false - 39872d87:13e14015f61:1e98 + + + false false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(H)size.DRVL + false - + - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 + true - 1 - - 78 - false - $(pv_name) -$(pv_value) - 5 - - - true - true - 1 - false - 39872d87:13e14015f61:1e99 - false - 0.0 - - 14 + 0 + 1 + true + + + + false + + + + 1 + 10 + 1 Text Update - false + 0 + true + $(P)$(H)size.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)t2.C - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 0 - - 45 false - $(pv_name) -$(pv_value) 5 + 78 - - true - 1 - 39872d87:13e14015f61:1e9a + + + false false - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 - Label + 0 + Text Update + 0 + true + $(P)$(H)t2.C + + 0.0 + true true false - true - false + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 5 + 45 + + + + false - - - - Label - true - H SIZE - - - - 80 - 0 - - 1 - 1 - - 25 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:1e9b - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + H SIZE + + true + 1 + true + Label + 80 + false + 5 + 25 + + + + false - - - - Label - true - Scan - - - - 30 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 106 - true - - 230 - - - false - true - false - 39872d87:13e14015f61:1e9c - - 16 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 16 - 6 - - - - 1 - - - - 105 + + false + Scan + + true + 1 + true + Label + 30 + false + 230 + 106 + + scanParmsCustom.opi @@ -4035,93 +4076,94 @@ $(pv_value) $(H)center $(H)center.EGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 210 - - - true - 1 - 39872d87:13e14015f61:1e9d - false - - 14 - Label + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + + + true true false - true - false + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 16 + 210 + 105 + + + + false - - - - Label - true - Scan - - - - 30 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 106 - true - - 40 - - - false - true - false - 39872d87:13e14015f61:1e9e - - 16 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 16 - 6 - - - - 1 - - - - 105 + + false + Scan + + true + 1 + true + Label + 30 + false + 40 + 106 + + scanParmsCustom.opi @@ -4132,1164 +4174,1210 @@ $(pv_value) $(H)size $(H)size.EGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 20 - - + false + false + + + false - true - 39872d87:13e14015f61:1e9f - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + + + true true false - $(P)$(H)center_tweak.A - - - - - - + + + + false + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 16 - 0 - 0 - - - - false - 1 - - - - 86 + 20 + 105 + + $(P)$(H)center_tweak.A 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)$(H)center_tweak.A + + + + true + true + false + + + + - + false $(pv_name) $(pv_value) + true + Action Button + 16 195 + 86 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1ea0 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(H)center_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(H)center_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 86 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 210 + 86 - + + + + $(P)$(H)center_tweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1ea1 - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(H)center_tweak.B + + true true false - $(P)$(H)center_tweak.B - - - - - - - Action Button - true - + - false - - Default - - 16 - 0 - 0 - - - + + + + false - 1 - - - - 86 - - - $(P)$(H)center_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 16 259 + 86 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1ea2 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(H)center.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(H)center.VAL - - - - false - 0 - - - false - - - - 0 - - 58 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 195 + 58 - - true - true - 1 - false - 39872d87:13e14015f61:1ea3 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(H)center.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)center.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 78 false - $(pv_name) -$(pv_value) 195 + 78 - - true - true - 1 - false - 39872d87:13e14015f61:1ea4 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(H)t2.D + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)t2.D - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 0 - - 45 false - $(pv_name) -$(pv_value) 195 + 45 - - true - 1 - 39872d87:13e14015f61:1ea5 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false - - - - - - - Label - true H CENTER - - - - 80 - 0 - - 1 - - - - 1 - - 25 - true + true + 1 + true + Label + 80 + false 195 + 25 - + + + + $(P)$(V)center_tweak.A + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1ea6 - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(V)center_tweak.A + + true true false - $(P)$(V)center_tweak.A - - - - - - - Action Button - true + + - - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 291 - - - $(P)$(V)center_tweak.A - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 191 + 291 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1ea7 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(V)center_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(V)center_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 291 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 210 + 291 - + + + + $(P)$(V)center_tweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1ea8 - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(V)center_tweak.B + + true true false - $(P)$(V)center_tweak.B - - - - - - - Action Button - true + + + - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 291 - - - $(P)$(V)center_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 259 + 291 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1ea9 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(V)center.VAL + + false + 0.0 + true true false - - 1 - false - 0 - $(P)$(V)center.VAL - - - - false - 0 - - - false - - - - 0 - - 263 + + + 0 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 195 + 263 - - true - true - 1 - false - 39872d87:13e14015f61:1eaa + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(V)center.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(V)center.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 283 false - $(pv_name) -$(pv_value) 195 + 283 - - true - true - 1 - false - 39872d87:13e14015f61:1eab + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(V)t2.D + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(V)t2.D - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 0 - - 250 false - $(pv_name) -$(pv_value) 195 + 250 - - true - 1 - 39872d87:13e14015f61:1eac + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false - - - - - - - Label - true V CENTER - - - - 80 - 0 - - 1 - - - - 1 - - 230 - true + true + 1 + true + Label + 80 + false 195 + 230 - + + + + $(P)$(V)size_tweak.A + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1ead - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(V)size_tweak.A + + true true false - $(P)$(V)size_tweak.A - - - - - - - Action Button - true + + - - false - - Default - - 16 - 0 - 0 - - - false - 1 - - - - 291 - - - $(P)$(V)size_tweak.A - 1 - 10 - - - $(pv_name) $(pv_value) - 4 - - - false true - 1 - false + Action Button + 16 + 4 + 291 + + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1eae - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(V)size_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(V)size_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 291 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 20 + 291 - + + + + $(P)$(V)size_tweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1eaf - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(V)size_tweak.B + + true true false - $(P)$(V)size_tweak.B - - - - - - - Action Button - true + + + - false - - Default - - 16 - 0 - 0 - - - false - 1 - - - - 291 - - - $(P)$(V)size_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 16 69 + 291 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1eb0 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(V)size.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(V)size.VAL - - - - false - 0 - - - false - - - - 0 - - 263 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 5 + 263 - - true - true - 1 - false - 39872d87:13e14015f61:1eb1 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(V)size.DRVL + + 0.0 + true true false - 1 - true - false - $(P)$(V)size.DRVL - - - - - - - Text Update - true + + false ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 283 - false $(pv_name) $(pv_value) + false + 1 + true + Text Update + 80 + false 5 + 283 - - true - true - 1 - false - 39872d87:13e14015f61:1eb2 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(V)t2.C + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(V)t2.C - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 0 - - 250 false - $(pv_name) -$(pv_value) 5 + 250 - - true - 1 - 39872d87:13e14015f61:1eb3 + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - V SIZE - - - - 80 - 0 - - 1 - 1 - - 230 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:1eb4 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + V SIZE + + true + 1 + true + Label + 80 + false + 5 + 230 + + + + false - - - - Label - true - Scan - - - - 30 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 131 - true - - 135 - - - false - true - false - 39872d87:13e14015f61:1eb5 - - 16 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 16 - 6 - - - - 1 - - - - 130 + + false + Scan + + true + 1 + true + Label + 30 + false + 135 + 131 + + scanParmsCustom.opi @@ -5300,93 +5388,94 @@ $(pv_value) $(V)p $(V)xp.EGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 115 - - - true - 1 - 39872d87:13e14015f61:1eb6 - false - - 14 - Label - - true - true - false - - true - false + false + false - + - - - - Label - true - Scan - - - - 30 - 0 - - 1 + false - 0 - - 206 - true - - 135 - - - false - true - false - 39872d87:13e14015f61:1eb7 - - 16 - Menu Button + 0 + 1 + true + + Default + false + + + + 16 + + Action Button + 0 + + + true true false - false - + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 16 + 115 + 130 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 16 - 6 - + + + + 14 + 0 + Label - - 1 - - - - 205 + + true + true + false + + + false + Scan + + true + 1 + true + Label + 30 + false + 135 + 206 + + scanParmsCustom.opi @@ -5397,93 +5486,94 @@ $(pv_value) $(V)n $(V)xn.EGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 115 - - - true - 1 - 39872d87:13e14015f61:1eb8 - false - - 14 - Label - - true - true - false - - true - false + false + false - + - - - - Label - true - Scan - - - - 30 - 0 - - 1 + false - 0 - - 311 - true - - 230 - - - false - true - false - 39872d87:13e14015f61:1eb9 - - 16 - Menu Button + 0 + 1 + true + + Default + false + + + + 16 + + Action Button + 0 + + + true true false - false - + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 16 + 115 + 205 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 16 - 6 - + + + + 14 + 0 + Label - - 1 - - - - 310 + + true + true + false + + + false + Scan + + true + 1 + true + Label + 30 + false + 230 + 311 + + scanParmsCustom.opi @@ -5494,93 +5584,94 @@ $(pv_value) $(V)center $(V)center.EGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 210 - - - true - 1 - 39872d87:13e14015f61:1eba - false - - 14 - Label - - true - true - false - - true - false + false + false - + - - - - Label - true - Scan - - - - 30 - 0 - - 1 + false - 0 - - 311 - true - - 40 - - - false - true - false - 39872d87:13e14015f61:1ebb - - 16 - Menu Button + 0 + 1 + true + + Default + false + + + + 16 + + Action Button + 0 + + + true true false - false - + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 16 + 210 + 310 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 16 - 6 - + + + + 14 + 0 + Label - - 1 - - - - 310 + + true + true + false + + + false + Scan + + true + 1 + true + Label + 30 + false + 40 + 311 + + scanParmsCustom.opi @@ -5591,196 +5682,237 @@ $(pv_value) $(V)size $(V)size.EGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 20 - - - false - true - 39872d87:13e14015f61:1ebc - - 22 - Action Button - false - - true - true - false - - $(P)$(H)sync.PROC + false + false - + - - - - Action Button + false + + + + 0 + 1 true - Sync H - false - Default + Default - 60 - 0 - 0 + false + + + + 16 - + Action Button + 0 + + + + true + true + false + + + + false - 1 - - - - 25 + $(pv_name) +$(pv_value) + true + Action Button + 16 + 20 + 310 + + $(P)$(H)sync.PROC 1 10 + - $(pv_name) -$(pv_value) - 110 - - + false + false + + + false - true - 39872d87:13e14015f61:1ebd - + + + + 0 + 1 + true + + Default + + false + + + 22 + Action Button - false + 0 + $(P)$(H)sync.PROC + + true true false - $(P)$(V)sync.PROC - - - - - - + + + Sync H + false + $(pv_name) +$(pv_value) + true Action Button - true - Sync V - false - - Default - 60 - 0 - 0 - - - - false - 1 - - - - 303 + 110 + 25 + + $(P)$(V)sync.PROC 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 22 + + Action Button + 0 + $(P)$(V)sync.PROC + + + + true + true + false + + + + Sync V + false $(pv_name) $(pv_value) + true + Action Button + 60 110 + 303 - - true - 1 - 39872d87:13e14015f61:1ebe + + false - + + + + + + + 0 + 1 + true + + + + + + 12 + 1 Label + true true false - true + false + (Looking upstream) + + true + 1 + true + Label + 110 + false + 170 + 6 + + + + false - - - - Label - true - (Looking upstream) - - - - 110 - 0 - - 1 - 1 - - 6 - true - - 170 - - - true - 1 - 39872d87:13e14015f61:1ebf - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true + - - - - 7 - 0 - - 1 - - - - 0 - - 170 - true + true + 1 + true + Label + 7 + false 135 + 170 - \ No newline at end of file + diff --git a/opticsApp/op/opi/4slitGraphic_soft.opi b/opticsApp/op/opi/autoconvert/4slitGraphic_soft.opi similarity index 82% rename from opticsApp/op/opi/4slitGraphic_soft.opi rename to opticsApp/op/opi/autoconvert/4slitGraphic_soft.opi index 3bf560f..2ffefae 100644 --- a/opticsApp/op/opi/4slitGraphic_soft.opi +++ b/opticsApp/op/opi/autoconvert/4slitGraphic_soft.opi @@ -1,1391 +1,1368 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 325 true - 39872d87:13e14015f61:1f44 - 3.1.2.20120830 + 4slitGraphic_soft + + true + true + false true - 325 - 4slitGraphic_soft false - false - - - - - - Display - true 280 - - true - 5 - - false - -1 - -1 - - - 66 212 - + 66 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 20 + true - 39872d87:13e14015f61:1f45 - - - - - 20 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 280 + 0 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 280 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 100.0 + 100 + true - 39872d87:13e14015f61:1f4c - - - - - 100 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 100 + 90 + 125 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 100 - 0 - 0 - - - 1 - 0 - true - - - - - 125 - $(pv_name) -$(pv_value) - 90 + false + + + false - - - false - true - 100.0 + 100 + true - 39872d87:13e14015f61:1f53 - - - - - 100 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 100 + 10 + 125 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 + false + + + + false + 100 + true + + + 0 - 0 - + 2 + Rectangle + - 1 - 0 - true - - - - - 125 - $(pv_name) -$(pv_value) - 10 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:1f54 - - - - - 100 - true - Rectangle - false - 255 + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 100 + 10 + 125 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 100 - 0 - 0 - - - 1 - 2 - true - - - - - 125 - $(pv_name) -$(pv_value) - 10 + false + + + false - - - false - true - 100.0 + 100 + true - 39872d87:13e14015f61:1f5d - - - - - 100 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 100 + 170 + 125 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 - 0 - 0 - - - 1 - 0 - true - - - - - 125 - $(pv_name) -$(pv_value) - 170 + false + + + false - - - false - true - 0.0 + 100 + true - + - 39872d87:13e14015f61:1f5e - - - - - 100 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - - - - - - - + true Rectangle - true - - - - false - - Default - 100 - 0 - 0 - - - 1 - 2 - true + 170 + 125 + + + + + + - - 125 - $(pv_name) -$(pv_value) - 170 - false - - + 0 + 1 + true + false + + Default + + + + + 100 + false true - true - 39872d87:13e14015f61:1f4d - - 100 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 100 - 0 - - false - 1 - - - - - 200 - 90 - - false - true - 100.0 - - - - 39872d87:13e14015f61:1f4e + 200 + + + false + 255 + true + false + + + - - 100 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 100 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 0.0 + 100 + true - + - 39872d87:13e14015f61:1f4f - - - - - 100 - true + 0 + 0 Rectangle - false - 255 + + + true true false - true - + + $(pv_name) +$(pv_value) + false + true + Rectangle + 100 + 0 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 + false + + + + false + 100 + true + + + 0 - 0 - - - 1 2 - true - - - - - 0 + Rectangle + + + + + true + true + false + + $(pv_name) $(pv_value) + true + true + Rectangle + 100 0 - false + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 100 + false true - true - 39872d87:13e14015f61:1f50 - - 100 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 100 - 0 - - false - 1 - - - - - 50 - 90 - + 50 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 100 + true - 39872d87:13e14015f61:1f51 - - - - - 100 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 100 + 0 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 + false + + + + false + 100 + true + + + 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:1f52 - - - - - 100 - true + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - - - - - - - + true Rectangle - true - - - - false - - Default - 100 - 0 - 0 - - - 1 - 2 - true - - - - - 0 - $(pv_name) -$(pv_value) 0 - false + 0 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1f46 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 279 - 0 - 0 - - 1 - 1 - true - - - - - 21 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 279 1 + 21 - - true - 1 - 39872d87:13e14015f61:1f47 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true $(SLIT) (Looking upstream) - - - - 280 - 0 - - 1 - - - - 1 - - 0 - true + true + 1 + true + Label + 280 + false 0 + 0 - - true - true - 1 - false - 39872d87:13e14015f61:1f48 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(V)center.HLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(V)center.HLM - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 242 false - $(pv_name) -$(pv_value) 195 + 242 - - true - true - 1 - false - 39872d87:13e14015f61:1f49 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(V)size.HLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(V)size.HLM - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 242 false - $(pv_name) -$(pv_value) 5 + 242 - - true - true - 1 - false - 39872d87:13e14015f61:1f4a + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(H)center.HLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)center.HLM - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 37 false - $(pv_name) -$(pv_value) 195 + 37 - - true - true - 1 - false - 39872d87:13e14015f61:1f4b + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(H)size.HLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)size.HLM - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 37 false - $(pv_name) -$(pv_value) 5 + 37 - - false - true - 39872d87:13e14015f61:1f55 - - 16 - Action Button - false - - true - true - false - - $(P)$(H)xn.TWR - - - - - - - Action Button - true - < - false - - Default - - 16 - 0 - 0 - - - - false - 1 - - - - 184 + $(P)$(H)xn.TWR 1 10 + - $(pv_name) -$(pv_value) - 20 - - - false - true - 1 - false - false - - 16 - false - true + false + false - + - Text Input + false + + + + 0 + 1 true - - + Default - 50 - 3 + false + + + + 16 + + Action Button + 0 + $(P)$(H)xn.TWR - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:1f56 - 0.0 - Text Input + true true false - 1 - false - 0 - $(P)$(H)xn.TWV - - - - false - 0 - - - false - - - - 0 - - 184 + + + < + false $(pv_name) $(pv_value) - 35 + true + Action Button + 16 + 20 + 184 - + + + false + false + false + + + false - true - 39872d87:13e14015f61:1f57 - - 16 - Action Button + + + + 3 + 1 + + true + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(H)xn.TWV + + false + 0.0 + true true false - $(P)$(H)xn.TWF - - - - - - - Action Button - true - > - false - - Default - - 16 - 0 - 0 - - - - false - 1 - - - + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 50 + 35 184 + + $(P)$(H)xn.TWF 1 10 + - $(pv_name) -$(pv_value) - 84 - - - true - true - 1 - false - 39872d87:13e14015f61:1f58 - false - 0.0 - - 10 - Text Update + false + false + + + + false + + + + 0 + 1 + true + + Default + false + + + + 16 + + Action Button + 0 + $(P)$(H)xn.TWF + + true true false - 1 - true - false - $(P)$(H)xn.HLM + + + > + false + $(pv_name) +$(pv_value) + true + Action Button + 16 + 84 + 184 + + + + false + false + false - + - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 + true + 0 + 1 + true + + + + false + + + + 1 + 10 1 - - 135 - false - $(pv_name) -$(pv_value) - 20 - - - true - true - 1 - false - 39872d87:13e14015f61:1f59 - false - 0.0 - - 14 Text Update - false + 0 + true + $(P)$(H)xn.HLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)xn.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 0 - - 143 false - $(pv_name) -$(pv_value) 20 + 135 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + true + + + + 0 + 1 true - - + - 80 - 3 + false + + + + 1 + 14 + 0 + Text Update + 0 + true + $(P)$(H)xn.RBV - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:1f5a 0.0 - Text Input + true true false - 1 + + false + ###### + $(pv_name) +$(pv_value) false - 0 - $(P)$(H)xn.VAL - - - + 1 + true + Text Update + 80 + false + 20 + 143 + + + + false + false false - 0 - - - false + + + + false + 3 + 1 + + true + + + + false + + + + 1 + 20 0 - - 156 - $(pv_name) -$(pv_value) - 20 - - - true - true - 1 - false - 39872d87:13e14015f61:1f5b - false + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(H)xn.VAL + + false 0.0 - - 10 - Text Update - false + true true false - 1 - true + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - $(P)$(H)xn.LLM + true + Text Input + 80 + 20 + 156 + + + + false + false + false - + - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 + true - 1 - - 176 - false - $(pv_name) -$(pv_value) - 20 - - - false - true - false - 39872d87:13e14015f61:1f5c - - 16 - Menu Button + 0 + 1 + true + + + false + + + + 1 + 10 + 1 + Text Update + 0 + true + $(P)$(H)xn.LLM + + 0.0 + true true false + + false + ###### + $(pv_name) +$(pv_value) false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - - 205 + 1 + true + Text Update + 80 + false + 20 + 176 + + scanParms.opi @@ -1394,419 +1371,437 @@ $(pv_value) $(H)xn $(H)xn - 0 + 1 Setup scan parameters + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + + + + + true + true + false + + + + SCAN + false $(pv_name) $(pv_value) + true + Action Button + 40 40 + 205 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1f5f - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(H)xp.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(H)xp.VAL - - - - false - 0 - - - false - - - - 0 - - 156 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 180 + 156 - - true - true - 1 - false - 39872d87:13e14015f61:1f60 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(H)xp.LLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)xp.LLM - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 176 false - $(pv_name) -$(pv_value) 180 + 176 - + + + + $(P)$(H)xp.TWR + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1f61 - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(H)xp.TWR + + true true false - $(P)$(H)xp.TWR - - - - - - - Action Button - true + + < - false - - Default - - 16 - 0 - 0 - - - false - 1 - - - - 184 - - - $(P)$(H)xp.TWR - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 16 180 + 184 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1f62 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(H)xp.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(H)xp.TWV - - - - false - 0 - - - false - - - - 0 - - 184 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 195 + 184 - + + + + $(P)$(H)xp.TWF + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1f63 - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(H)xp.TWF + + true true false - $(P)$(H)xp.TWF - - - - - - - Action Button - true + + > - false - - Default - + false + $(pv_name) +$(pv_value) + true + Action Button 16 - 0 - 0 - - - - false - 1 - - - - 184 - - - $(P)$(H)xp.TWF - 1 - 10 - - - - $(pv_name) -$(pv_value) 244 + 184 - - true - true - 1 - false - 39872d87:13e14015f61:1f64 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(H)xp.HLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)xp.HLM - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 135 false - $(pv_name) -$(pv_value) 180 + 135 - - true - true - 1 - false - 39872d87:13e14015f61:1f65 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(H)xp.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)xp.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 0 - - 143 false - $(pv_name) -$(pv_value) 180 + 143 - - false - true - false - 39872d87:13e14015f61:1f66 - - 16 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - - 205 + scanParms.opi @@ -1815,1143 +1810,1192 @@ $(pv_value) $(H)xp $(H)xp - 0 + 1 Setup scan parameters + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + + + + + true + true + false + + + + SCAN + false $(pv_name) $(pv_value) + true + Action Button + 40 200 + 205 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1f67 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(V)xp.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(V)xp.VAL - - - - false - 0 - - - false - - - - 0 - - 76 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 100 + 76 - - true - true - 1 - false - 39872d87:13e14015f61:1f68 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(V)xp.LLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(V)xp.LLM - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 96 false - $(pv_name) -$(pv_value) 100 + 96 - + + + + $(P)$(V)xp.TWF + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1f69 - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(V)xp.TWF + + true true false - $(P)$(V)xp.TWF - - - - - - - Action Button - true + + UP - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 104 - - - $(P)$(V)xp.TWF - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 166 + 104 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1f6a - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(V)xp.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(V)xp.TWV - - - - false - 0 - - - false - - - - 0 - - 104 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 115 + 104 - + + + + $(P)$(V)xp.TWR + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1f6b - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(V)xp.TWR + + true true false - $(P)$(V)xp.TWR - - - - - - - Action Button - true + + DN - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 104 - - - $(P)$(V)xp.TWR - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 95 + 104 - - true - true - 1 - false - 39872d87:13e14015f61:1f6c + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(V)xp.HLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(V)xp.HLM - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 55 false - $(pv_name) -$(pv_value) 100 + 55 - - true - true - 1 - false - 39872d87:13e14015f61:1f6d + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(V)xp.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(V)xp.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 0 - - 63 false - $(pv_name) -$(pv_value) 100 + 63 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1f6e - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(V)xn.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(V)xn.VAL - - - - false - 0 - - - false - - - - 0 - - 251 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 100 + 251 - - true - true - 1 - false - 39872d87:13e14015f61:1f6f + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(V)xn.LLM + + 0.0 + true true false - 1 - true - false - $(P)$(V)xn.LLM - - - - - - - Text Update - true + + false ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 271 - false $(pv_name) $(pv_value) + false + 1 + true + Text Update + 80 + false 100 + 271 - + + + + $(P)$(V)xn.TWR + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1f70 - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(V)xn.TWR + + true true false - $(P)$(V)xn.TWR - - - - - - - Action Button - true + + DN - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 279 - - - $(P)$(V)xn.TWR - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 95 + 279 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1f71 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(V)xn.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(V)xn.TWV - - - - false - 0 - - - false - - - - 0 - - 279 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 115 + 279 - + + + + $(P)$(V)xn.TWF + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1f72 - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(V)xn.TWF + + true true false - $(P)$(V)xn.TWF - - - - - - - Action Button - true + + UP - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 279 - - - $(P)$(V)xn.TWF - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 166 + 279 - - true - true - 1 - false - 39872d87:13e14015f61:1f73 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(V)xn.HLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(V)xn.HLM - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 230 false - $(pv_name) -$(pv_value) 100 + 230 - - true - true - 1 - false - 39872d87:13e14015f61:1f74 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(V)xn.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(V)xn.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 0 - - 238 false - $(pv_name) -$(pv_value) 100 + 238 - - false - true - 39872d87:13e14015f61:1f75 - - 16 - Action Button - false - - true - true - false - - $(P)$(H)size.TWR - - - - - - - Action Button - true - - - false - - Default - - 16 - 0 - 0 - - - - false - 1 - - - - 86 + $(P)$(H)size.TWR 1 10 + - $(pv_name) -$(pv_value) - 5 - - - false - true - 1 - false - false - - 16 - false - true + false + false - + - Text Input + false + + + + 0 + 1 true - - + Default - 50 - 3 + false + + + + 16 + + Action Button + 0 + $(P)$(H)size.TWR - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:1f76 - 0.0 - Text Input + true true false - 1 - false - 0 - $(P)$(H)size.TWV - - - - false - 0 - - - false - - - - 0 - - 86 + + + - + false $(pv_name) $(pv_value) - 20 + true + Action Button + 16 + 5 + 86 - + + + false + false + false + + + false - true - 39872d87:13e14015f61:1f77 - - 16 - Action Button + + + + 3 + 1 + + true + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(H)size.TWV + + false + 0.0 + true true false - $(P)$(H)size.TWF - - - - - - - Action Button - true - + - false - - Default - - 16 - 0 - 0 - - - - false - 1 - - - + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 50 + 20 86 + + $(P)$(H)size.TWF 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)$(H)size.TWF + + + + true + true + false + + + + + + false $(pv_name) $(pv_value) + true + Action Button + 16 69 + 86 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1f78 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(H)size.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(H)size.VAL - - - - false - 0 - - - false - - - - 0 - - 58 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 5 + 58 - - true - true - 1 - false - 39872d87:13e14015f61:1f79 + + + false false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(H)size.LLM + false - + - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 + true + 0 + 1 + true + + + + false + + + + 1 + 10 1 - - 78 - false - $(pv_name) -$(pv_value) - 5 - - - true - true - 1 - false - 39872d87:13e14015f61:1f7a - false - 0.0 - - 14 Text Update - false + 0 + true + $(P)$(H)size.LLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)size.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 0 - - 45 false - $(pv_name) -$(pv_value) 5 + 78 - - true - 1 - 39872d87:13e14015f61:1f7b + + + false false - - 14 - Label - - true - true - false - - true - false + false - + - - - - Label - true - H SIZE - - - - 80 - 0 - - 1 + true - 1 - - 25 - true - - 5 - - - false - true - false - 39872d87:13e14015f61:1f7c - - 16 - Menu Button + 0 + 1 + true + + + false + + + + 1 + 14 + 0 + Text Update + 0 + true + $(P)$(H)size.RBV + + 0.0 + true true false + + false + ###### + $(pv_name) +$(pv_value) false - + 1 + true + Text Update + 80 + false + 5 + 45 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 40 - 6 - + + + + 14 + 1 + Label - - 1 - - - - 105 + + true + true + false + + + false + H SIZE + + true + 1 + true + Label + 80 + false + 5 + 25 + + scanParms.opi @@ -2960,52 +3004,54 @@ $(pv_value) $(H)center $(H)center - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 215 - - + false + false + + + false - true - false - 39872d87:13e14015f61:1f7d - - 16 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 16 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + SCAN + false + $(pv_name) +$(pv_value) + true + Action Button 40 - 6 - - - - 1 - - - + 215 105 + + scanParms.opi @@ -3014,1123 +3060,1170 @@ $(pv_value) $(H)size $(H)size - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 25 - - + false + false + + + false - true - 39872d87:13e14015f61:1f7e - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + + + true true false - $(P)$(H)center.TWR - - - - - - - Action Button - true - < - false - - Default - - 16 - 0 - 0 - - - + + + SCAN false - 1 - - - - 86 + $(pv_name) +$(pv_value) + true + Action Button + 40 + 25 + 105 + + $(P)$(H)center.TWR 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)$(H)center.TWR + + + + true + true + false + + + + < + false $(pv_name) $(pv_value) + true + Action Button + 16 195 + 86 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1f7f - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(H)center.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(H)center.TWV - - - - false - 0 - - - false - - - - 0 - - 86 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 210 + 86 - + + + + $(P)$(H)center.TWF + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1f80 - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(H)center.TWF + + true true false - $(P)$(H)center.TWF - - - - - - - Action Button - true + + > - false - - Default - - 16 - 0 - 0 - - - false - 1 - - - - 86 - - - $(P)$(H)center.TWF - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 16 259 + 86 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1f81 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(H)center.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(H)center.VAL - - - - false - 0 - - - false - - - - 0 - - 58 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 195 + 58 - - true - true - 1 - false - 39872d87:13e14015f61:1f82 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(H)center.LLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)center.LLM - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 78 false - $(pv_name) -$(pv_value) 195 + 78 - - true - true - 1 - false - 39872d87:13e14015f61:1f83 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(H)center.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)center.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 0 - - 45 false - $(pv_name) -$(pv_value) 195 + 45 - - true - 1 - 39872d87:13e14015f61:1f84 + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - H CENTER - - - - 80 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 1 - - 25 - true - - 195 - - - false - true - 39872d87:13e14015f61:1f85 - - 16 - Action Button - false + Label + true true false - $(P)$(V)center.TWR - - - - - - - Action Button - true - DN - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 291 + + false + H CENTER + + true + 1 + true + Label + 80 + false + 195 + 25 + + $(P)$(V)center.TWR 1 10 + - $(pv_name) -$(pv_value) - 191 - - - false - true - 1 - false - false - - 16 - false - true + false + false - + - Text Input + false + + + + 0 + 1 true - - + Default - 50 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:1f86 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(V)center.TWV + false - + - false - 0 - - - false - - - - 0 - - 291 - $(pv_name) -$(pv_value) - 210 - - - false - true - 39872d87:13e14015f61:1f87 - 16 + Action Button - false + 0 + $(P)$(V)center.TWR + + true true false - $(P)$(V)center.TWF + + + DN + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 191 + 291 + + + + false + false + false - + - - - - Action Button + false + + + + 3 + 1 + true - UP - false - Default + - 20 - 0 - 0 - - + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(V)center.TWV - false - 1 - - - + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 50 + 210 291 + + $(P)$(V)center.TWF 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)$(V)center.TWF + + + + true + true + false + + + + UP + false $(pv_name) $(pv_value) + true + Action Button + 20 259 + 291 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1f88 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(V)center.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(V)center.VAL - - - - false - 0 - - - false - - - - 0 - - 263 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 195 + 263 - - true - true - 1 - false - 39872d87:13e14015f61:1f89 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(V)center.LLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(V)center.LLM - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 283 false - $(pv_name) -$(pv_value) 195 + 283 - - true - true - 1 - false - 39872d87:13e14015f61:1f8a + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(V)center.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(V)center.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 0 - - 250 false - $(pv_name) -$(pv_value) 195 + 250 - - true - 1 - 39872d87:13e14015f61:1f8b + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false - - - - - - - Label - true V CENTER - - - - 80 - 0 - - 1 - - - - 1 - - 230 - true + true + 1 + true + Label + 80 + false 195 + 230 - + + + + $(P)$(V)size.TWR + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1f8c - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(V)size.TWR + + true true false - $(P)$(V)size.TWR - - - - - - - Action Button - true + + - - false - - Default - - 16 - 0 - 0 - - - false - 1 - - - - 291 - - - $(P)$(V)size.TWR - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 16 4 + 291 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1f8d - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(V)size.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(V)size.TWV - - - - false - 0 - - - false - - - - 0 - - 291 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 20 + 291 - + + + + $(P)$(V)size.TWF + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:1f8e - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(V)size.TWF + + true true false - $(P)$(V)size.TWF - - - - - - - Action Button - true + + + - false - - Default - - 16 - 0 - 0 - - - false - 1 - - - - 291 - - - $(P)$(V)size.TWF - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 16 69 + 291 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1f8f - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(V)size.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(V)size.VAL - - - - false - 0 - - - false - - - - 0 - - 263 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 5 + 263 - - true - true - 1 - false - 39872d87:13e14015f61:1f90 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(V)size.LLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(V)size.LLM - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 283 false - $(pv_name) -$(pv_value) 5 + 283 - - true - true - 1 - false - 39872d87:13e14015f61:1f91 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(V)size.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(V)size.RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 0 - - 250 false - $(pv_name) -$(pv_value) 5 + 250 - - true - 1 - 39872d87:13e14015f61:1f92 + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - V SIZE - - - - 80 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 1 - - 230 - true - - 5 - - - false - true - false - 39872d87:13e14015f61:1f93 - - 16 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - - 130 + + false + V SIZE + + true + 1 + true + Label + 80 + false + 5 + 230 + + scanParms.opi @@ -4139,52 +4232,54 @@ $(pv_value) $(V)xp $(V)xp - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 120 - - + false + false + + + false - true - false - 39872d87:13e14015f61:1f94 - - 16 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 16 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + SCAN + false + $(pv_name) +$(pv_value) + true + Action Button 40 - 6 - - - - 1 - - - - 205 + 120 + 130 + + scanParms.opi @@ -4193,52 +4288,54 @@ $(pv_value) $(V)xn $(V)xn - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 120 - - + false + false + + + false - true - false - 39872d87:13e14015f61:1f95 - - 16 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 16 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + SCAN + false + $(pv_name) +$(pv_value) + true + Action Button 40 - 6 - - - - 1 - - - - 310 + 120 + 205 + + scanParms.opi @@ -4247,52 +4344,54 @@ $(pv_value) $(V)center $(V)center - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 215 - - + false + false + + + false - true - false - 39872d87:13e14015f61:1f96 - - 16 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 16 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + SCAN + false + $(pv_name) +$(pv_value) + true + Action Button 40 - 6 - - - - 1 - - - + 215 310 + + scanParms.opi @@ -4301,114 +4400,104 @@ $(pv_value) $(V)size $(V)size - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 25 - - - false - true - 39872d87:13e14015f61:1f97 - - 22 - Action Button - false - - true - true - false - - $(P)$(H)sync.PROC + false + false - + - - - - Action Button + false + + + + 0 + 1 true - Sync H - false - Default + Default - 60 - 0 - 0 + false + + + + 16 - + Action Button + 0 + + + + true + true + false + + + + SCAN false - 1 - - - - 25 + $(pv_name) +$(pv_value) + true + Action Button + 40 + 25 + 310 + + - $(P)$(H)sync.PROC + $(P)$(H)xn.STOP 1 10 + - $(pv_name) -$(pv_value) - 110 - - - false - true - 39872d87:13e14015f61:1f98 - - 22 - Action Button - false - - true - true - false - - $(P)$(V)sync.PROC + false + false - + - - - - Action Button + false + + + + 0 + 1 true - Sync V - false - Default + Default - 60 - 0 - 0 + false + + + + 20 - + Action Button + 0 + $(P)$(H)xn.STOP + + + true + true + false + + + + STOP false - 1 - - - - 303 - - - $(P)$(V)sync.PROC - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 53 110 + 305 - \ No newline at end of file + diff --git a/opticsApp/op/opi/ASRPmirrorTable.opi b/opticsApp/op/opi/autoconvert/ASRPmirrorTable.opi similarity index 86% rename from opticsApp/op/opi/ASRPmirrorTable.opi rename to opticsApp/op/opi/autoconvert/ASRPmirrorTable.opi index 66dcc4c..89d3fec 100644 --- a/opticsApp/op/opi/ASRPmirrorTable.opi +++ b/opticsApp/op/opi/autoconvert/ASRPmirrorTable.opi @@ -1,1022 +1,989 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 185 true - 39872d87:13e14015f61:1fef - 3.1.2.20120830 + ASRPmirrorTable + + true + true + false true - 185 - ASRPmirrorTable false - false - - - - - - Display - true 520 - - true - 5 - - false - -1 - -1 - - - 396 471 - + 396 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 63 + true - 39872d87:13e14015f61:1ff0 - - - - - 63 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 161 + 332 + 98 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 161 - 0 - 0 - - - 1 - 0 - true - - - - - 98 - $(pv_name) -$(pv_value) - 332 + false + + + false - - - false - true - 0.0 + 10 + true - + - 39872d87:13e14015f61:1ff5 - - - - - 10 - true + 0 + 1 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 204 + 86 + 61 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 204 - 0 - 0 - - - 1 - 1 - true - - - - - 61 - $(pv_name) -$(pv_value) - 86 + false + + + false - - - false - true - 0.0 + 10 + true - + - 39872d87:13e14015f61:1ffb - - - - - 10 - true + 0 + 1 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 204 + 86 + 113 + + + - + - - - - Rectangle + + + + 0 + 1 true - - - - false + false - Default + Default - 204 - 0 - 0 + + + + 40 + false + + true + + Grouping Container - - 1 - 1 - true - - - - - 113 - $(pv_name) -$(pv_value) - 86 - false - - - - true - - true - 39872d87:13e14015f61:1ff7 - - 40 - Grouping Container true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 10 - 0 - - false - 1 - - - - - 73 - 256 - + 73 + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 100.0 + + Default + + false + + + + 11 + true - 39872d87:13e14015f61:1ff8 - 0.0 - - 11 - true + 0 + 0 Polygon - false - 255 - - true - true - true - - false - - - - - - - Polygon - true - false - - Default - - 11 - 0 - 0 - - 1 - 0 - true - - - - - 0 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polygon + 11 0 + 0 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 100.0 + + Default + + false + + + + 11 + true - 39872d87:13e14015f61:1ff9 - 0.0 - - 11 - true + 0 + 0 Polygon - false - 255 - - true - true - true - - false - - - - - - - Polygon - true - false - - Default - - 11 - 0 - 0 - - 1 - 0 - true - - - - - 30 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:1ffa 0.0 - - 0 - 24 - true - Polyline - false - 255 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polygon + 11 + 0 + 30 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 1 + false + + + + 24 + true 0 - 0 - - - 1 1 - true - - - - - 10 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 1 5 + 10 - - - true - - true - 39872d87:13e14015f61:1ffc - + + + + + + + + + 0 + 1 + true + false + + Default + + + + 40 + false + + true + Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 10 - 0 - - false - 1 - - - - - 123 - 173 - + 123 + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 100.0 + + Default + + false + + + + 11 + true - 39872d87:13e14015f61:1ffd - 0.0 - - 11 - true + 0 + 0 Polygon - false - 255 - - true - true - true - - false - - - - - - - Polygon - true - false - - Default - - 11 - 0 - 0 - - 1 - 0 - true - - - - - 0 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polygon + 11 0 + 0 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 100.0 + + Default + + false + + + + 11 + true - 39872d87:13e14015f61:1ffe - 0.0 - - 11 - true + 0 + 0 Polygon - false - 255 - - true - true - true - - false - - - - - - - Polygon - true - false - - Default - - 11 - 0 - 0 - - 1 - 0 - true - - - - - 30 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polygon + 11 0 + 30 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:1fff - 0.0 - - 0 + + Default + + false + + + 24 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - - - - - - - + true Polyline - true - false - - Default - 1 - 0 - 0 - - - 1 - 1 - true - - - - + 5 10 - $(pv_name) -$(pv_value) - 5 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 11 + false true - true - 39872d87:13e14015f61:200e - - 11 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 87 - 0 - - false - 1 - - - - - 45 - 64 - + 45 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:200f - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 39 + 3 + 6 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 39 - 0 - 0 - - - 1 - 1 - true + false - - 6 - $(pv_name) -$(pv_value) - 3 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2010 - 0.0 - - 0 + + Default + + false + + + 10 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 10 - 0 - 0 - - 1 - 1 - true - - - - - 1 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 10 1 + 1 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2011 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 39 + 46 + 6 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 39 - 0 - 0 - - - 1 - 1 - true + false - - 6 - $(pv_name) -$(pv_value) - 46 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2012 - 0.0 - - 0 + + Default + + false + + + 10 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 10 - 0 - 0 - - 1 - 1 - true - - - - - 1 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 10 77 + 1 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:1ff1 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(TBL):tran.F + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(TBL):tran.F - - - - false - 0 - - - false - - - - 0 - - 131 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 357 + 131 - - true - 1 - 39872d87:13e14015f61:1ff2 + + false - - 10 - Label - - true - true - false - - true - false - - - - Label - true - COUPLED PITCH - - - - 100 - 0 - - 1 + 0 + 1 + true + + + + + + + 10 1 - - 107 - true - - 357 - - - false - true - false - 39872d87:13e14015f61:1ff3 - - 20 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - - 165 + + false + COUPLED PITCH + + true + 1 + true + Label + 100 + false + 357 + 107 + + yyTransform_full.opi @@ -1025,7 +992,7 @@ $(pv_value)

xxx:

$(TBL):tran - 0 + 1 tran
@@ -1035,1313 +1002,1329 @@ $(pv_value)

xxx:

$(TBL):autosync - 0 + 1 autosync
- $(pv_name) -$(pv_value) - 480 -
- - true - 1 - 39872d87:13e14015f61:1ff4 - false - - 10 - Label - - true - true - false - - true - false + false + false + false - + - - - - Label - true - (DRIVES PITCH & VERT) - - - - 100 - 0 - - 1 + false - 1 - - 120 - true + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 40 + 480 + 165 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + true + true + false + + + false + (DRIVES PITCH & VERT) + true + 1 + true + Label + 100 + false 357 + 120 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 100.0 + + Default + + false + + + + 41 + true - 39872d87:13e14015f61:1ff6 - 0.0 - - 41 - true + 0 + 0 Polygon - false - 255 - - true - true - true - - false - - - - - - - Polygon - true - false - - Default - - 16 - 0 - 0 - - 1 - 0 - true - - - - - 73 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polygon + 16 101 + 73 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2000 - 0.0 + false Text Input + 0 + false + 0 + true + $(VERT).VAL + + false + 0.0 + true true false - 1 - false + 0 - $(VERT).VAL - - - - false - 0 - - - false - - - - 0 - - 153 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 187 + 153 - - true - 1 - 39872d87:13e14015f61:2001 + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true VERT MOTOR - - - - 60 - 0 - - 1 - - - - 1 - - 127 - true + true + 1 + true + Label + 60 + false 187 + 127 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input - true - - - - - 60 + false + + + 3 - 1 + + true + + + + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2002 - 0.0 + false Text Input + 0 + false + 0 + true + $(PITCH).VAL + + false + 0.0 + true true false - 1 - false + 0 - $(PITCH).VAL - - - - false - 0 - - - false - - - - 0 - - 55 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 337 + 55 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2003 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(TBL):pitchArmLen + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(TBL):pitchArmLen - - - - false - 0 - - - false - - - - 0 - - 88 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 152 + 88 - - true - 1 - 39872d87:13e14015f61:2004 + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true PITCH ARM - - - - 60 - 0 - - 1 - - - - 1 - - 77 - true + true + 1 + true + Label + 60 + false 152 + 77 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2005 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 39 + 210 + 80 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 39 - 0 - 0 - - - 1 - 1 - true + false - - 80 - $(pv_name) -$(pv_value) - 210 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2006 - 0.0 - - 0 + + Default + + false + + + 10 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 10 - 0 - 0 - - 1 - 1 - true - - - - - 75 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 10 244 + 75 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2007 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 39 + 113 + 80 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 39 - 0 - 0 - - - 1 - 1 - true + false - - 80 - $(pv_name) -$(pv_value) - 113 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2008 - 0.0 - - 0 + + Default + + false + + + 10 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 10 - 0 - 0 - - 1 - 1 - true - - - - - 75 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 10 111 + 75 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2009 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(TBL):fixedPointZ + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(TBL):fixedPointZ - - - - false - 0 - - - false - - - - 0 - - 16 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 75 + 16 - - true - 1 - 39872d87:13e14015f61:200a + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true FIXED POINT - - - - 60 - 0 - - 1 - - - - 1 - - 5 - true + true + 1 + true + Label + 60 + false 75 + 5 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:200b - 0.0 - - 0 + + Default + + false + + + 20 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - 1 - 1 - true - - - - - 42 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 1 107 + 42 - - true - 1 - 39872d87:13e14015f61:200c + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + - + + true + 1 + true + Label + 10 + false + 86 + 34 + + + + false - - - - Label - true - - - - - - 10 - 0 - - 1 - 1 - - 34 - true - - 86 - - - true - 1 - 39872d87:13e14015f61:200d - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true + - - - - 10 - 0 - - 1 - - - - 1 - - 34 - true + true + 1 + true + Label + 10 + false 112 + 34 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2013 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 35 + 294 + 66 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 35 - 0 - 0 - - - 1 - 1 - true + false - - 66 - $(pv_name) -$(pv_value) - 294 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2014 - 0.0 - - 0 + + Default + + false + + + 45 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 1 + 309 + 42 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true + false - - 42 - $(pv_name) -$(pv_value) - 309 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2015 - 0.0 - - 0 + + Default + + false + + + 10 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 10 - 0 - 0 - - 1 - 1 - true - - - - - 80 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 10 305 + 80 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2016 - 0.0 - - 0 + + Default + + false + + + 10 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 10 - 0 - 0 - - 1 - 1 - true - - - - - 37 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 10 305 + 37 - - true - 1 - 39872d87:13e14015f61:2017 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + + + + true + 1 + true + Label + 10 + false + 315 + 46 + + + + false - - - - Label - true - + - - - - 10 - 0 - - 1 - 1 - - 46 - true - - 315 - - - true - 1 - 39872d87:13e14015f61:2018 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + - + + true + 1 + true + Label + 10 + false + 315 + 65 + + + + false - - - - Label - true - - - - - - 10 - 0 - - 1 - 1 - - 65 - true - - 315 - - - true - 1 - 39872d87:13e14015f61:2019 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false - - - - - - - Label - true (mR) - - - - 20 - 0 - - 1 - - - - 1 - - 133 - true + true + 1 + true + Label + 20 + false 460 + 133 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:201a - 0.0 - - 0 + + Default + + false + + + 62 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 160 - 0 - 0 - - 1 - 1 - true - - - - - 99 - $(pv_name) -$(pv_value) - 333 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:201b 0.0 - - 0 - 59 - true - Polyline - false - 255 + true true true - - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 160 + 333 + 99 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 159 - 0 - 0 - - - 1 - 1 - true + false - - 99 - $(pv_name) -$(pv_value) - 333 - - - false - true - false - 39872d87:13e14015f61:201c - - 20 - Menu Button + 0 + 1 + true + true + 100.0 + + Default + false + + + + 59 + true + 0 + 1 + Polyline + + + + + + + + 0.0 + true true - false + true - false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - - 165 + + $(pv_name) +$(pv_value) + true + true + Polyline + 159 + 333 + 99 + + ASRPmirrorTable_small.opi @@ -2349,155 +2332,193 @@ $(pv_value) true

xxx:

- 1 + 0 small
+ false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + Less + false $(pv_name) $(pv_value) + true + Action Button + 40 440 + 165
- - true - true - 1 - false - 39872d87:13e14015f61:201d + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 16 + 1 Text Update - false + 0 + true + $(PITCH).RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(PITCH).RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 1 - - 39 false - $(pv_name) -$(pv_value) 337 + 39 - - true - 1 - 39872d87:13e14015f61:201e + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true PITCH MOTOR - - - - 60 - 0 - - 1 - - - - 1 - - 30 - true + true + 1 + true + Label + 60 + false 337 + 30 - - true - true - 1 - false - 39872d87:13e14015f61:201f + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 16 + 1 Text Update - false + 0 + true + $(VERT).RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(VERT).RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 1 - - 137 false - $(pv_name) -$(pv_value) 187 + 137 -
\ No newline at end of file +
diff --git a/opticsApp/op/opi/ASRPmirrorTable_small.opi b/opticsApp/op/opi/autoconvert/ASRPmirrorTable_small.opi similarity index 51% rename from opticsApp/op/opi/ASRPmirrorTable_small.opi rename to opticsApp/op/opi/autoconvert/ASRPmirrorTable_small.opi index 8f74622..facdff3 100644 --- a/opticsApp/op/opi/ASRPmirrorTable_small.opi +++ b/opticsApp/op/opi/autoconvert/ASRPmirrorTable_small.opi @@ -1,309 +1,93 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 95 true - 39872d87:13e14015f61:2052 - 3.1.2.20120830 + ASRPmirrorTable_small + + true + true + false true - 95 - ASRPmirrorTable_small false - false - - - - - - Display - true 180 - - true - 5 - - false - -1 - -1 - - - 511 640 - - false - true - 100.0 - - - - 39872d87:13e14015f61:2053 - - - - - 20 - true - Rectangle - false + 511 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 180 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - - true - - true - 39872d87:13e14015f61:2057 - - 44 - Grouping Container - - true - true - false - - true - false - - - + false - + - Grouping Container - true - - Default - - 123 - 0 - - false - 1 - - - - - 28 - - 27 - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2058 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(TBL):tran.F - - - - false - 0 - - - false - - - - 0 - - 24 - $(pv_name) -$(pv_value) - 0 - - - true - 1 - 39872d87:13e14015f61:2059 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - PITCH - - - - 100 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:205a - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - (mR) - - - - 20 - 0 - - 1 - - - - 1 - - 26 - true - - 103 - - - - false - true - false - 39872d87:13e14015f61:2054 - + false 20 - Menu Button - false + true + + + + 0 + 0 + Rectangle + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - - 75 + true + Rectangle + 180 + 0 + 0 + + ASRPmirrorTable.opi @@ -311,108 +95,288 @@ $(pv_value) true

xxx:

- 1 + 0 small
+ false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + More + false $(pv_name) $(pv_value) + true + Action Button + 40 140 + 75
- - true - 1 - 39872d87:13e14015f61:2055 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true ASRP Mirror Table - - - - 180 - 0 - - 1 - - - - 1 - - 0 - true + true + 1 + true + Label + 180 + false 0 + 0 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2056 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 179 + 1 + 21 + + + + false + false + false - + + false + + + + 3 + 1 + + true + + + + false - + - Polyline + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(TBL):tran.F + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 27 + 52 + + + + false + + + + + + + 0 + 1 true - false - Default + - 179 - 0 - 0 + + + + 20 + 1 + Label - - 1 - 1 - true + + true + true + false + + + false + PITCH + + true + 1 + true + Label + 100 + false + 27 + 28 + + + + false + + + - - 21 - $(pv_name) -$(pv_value) - 1 + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + (mR) + + true + 1 + true + Label + 20 + false + 130 + 54 -
\ No newline at end of file +
diff --git a/opticsApp/op/opi/CoarseFineMotor.opi b/opticsApp/op/opi/autoconvert/CoarseFineMotor.opi similarity index 56% rename from opticsApp/op/opi/CoarseFineMotor.opi rename to opticsApp/op/opi/autoconvert/CoarseFineMotor.opi index 41f0dff..c05d592 100644 --- a/opticsApp/op/opi/CoarseFineMotor.opi +++ b/opticsApp/op/opi/autoconvert/CoarseFineMotor.opi @@ -1,425 +1,388 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 100 true - 39872d87:13e14015f61:2065 - 3.1.2.20120830 + CoarseFineMotor + + true + true + false true - 100 - CoarseFineMotor false - false - - - - - - Display - true 130 - - true - 5 - - false - -1 - -1 - - - 130 371 - - false - true - 100.0 - - - - 39872d87:13e14015f61:2068 - - - - - 23 - true - Rectangle - false + 130 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 130 + false + + + + false + 23 + true + + + 0 - 0 - - - 1 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - - true - - true - 39872d87:13e14015f61:206b - - 20 - Grouping Container + Rectangle + + + true true false - true - false + + $(pv_name) +$(pv_value) + false + true + Rectangle + 130 + 0 + 0 + + + + true + false + false - + - - - - Grouping Container - true - - Default - - 125 - 0 - - false - 1 + false - - 75 - - 5 - - false - true - false - 39872d87:13e14015f61:206c - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - - 0 - - - CoarseFineMotorShow.opi - - true - MOT - - 1 - Graphic of stage - - - $(pv_name) -$(pv_value) - 85 - - - false - true - false - 39872d87:13e14015f61:206d - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 55 - 6 - - - - 1 - - - - 0 - - - motorx.opi - - true - MOT - - 0 - Combined (soft) motor - - - motor2x.opi - - true -

$(PM)

- $(CM) - $(FM) -
- 0 - Actual motors -
-
- $(pv_name) -$(pv_value) - 0 -
-
- - false - true - true - 39872d87:13e14015f61:2066 - + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + $(P)mode + + true true false + + false + $(pv_name) +$(pv_value) false - $(P)mode - - - - - - + true Menu Button - true - false - - Default - 95 - 6 - - - - 1 - - - - 45 - - $(pv_name) -$(pv_value) 5 + 45 - - true - 1 - 39872d87:13e14015f61:2067 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + Mode + + true + 1 + true + Label + 100 + false + 5 + 25 + + + + false - - - - Label - true - Mode - - - - 100 - 0 - - 1 - 1 - - 25 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:2069 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true Coarse/Fine - - - - 130 - 0 - - 1 - - - - 1 - - 0 - true + true + 1 + true + Label + 130 + false 0 + 0 - + + + + CoarseFineMotorHelp.opi + + true + + 1 + mode descriptions + + + false + false + + + false - true - false - 39872d87:13e14015f61:206a - - 30 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 30 + + Action Button + 0 + + + true true false - false - + + + ? + false + $(pv_name) +$(pv_value) + true + Action Button + 25 + 102 + 35 + + + + + CoarseFineMotorShow.opi + + true + MOT + + 0 + Graphic of stage + + + false + false - + - - - - Menu Button + false + + + + 0 + 1 true - false - Default + Default - 25 - 6 - - + false + + + + 20 + + Action Button + 0 + - 1 - - - - 35 + + + true + true + false + + + + More + false + $(pv_name) +$(pv_value) + true + Action Button + 40 + 90 + 75 + + - CoarseFineMotorHelp.opi + motorx.opi true + MOT - 0 - mode descriptions + 1 + Combined (soft) motor + + + motor2x.opi + + true +

$(PM)

+ $(CM) + $(FM) +
+ 1 + Actual motors
+ false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false $(pv_name) $(pv_value) - 102 + false + true + Menu Button + 55 + 5 + 75
-
\ No newline at end of file +
diff --git a/opticsApp/op/opi/CoarseFineMotorHelp.opi b/opticsApp/op/opi/autoconvert/CoarseFineMotorHelp.opi similarity index 86% rename from opticsApp/op/opi/CoarseFineMotorHelp.opi rename to opticsApp/op/opi/autoconvert/CoarseFineMotorHelp.opi index 8479a80..dae304b 100644 --- a/opticsApp/op/opi/CoarseFineMotorHelp.opi +++ b/opticsApp/op/opi/autoconvert/CoarseFineMotorHelp.opi @@ -1,1159 +1,1142 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 225 true - 39872d87:13e14015f61:2078 - 3.1.2.20120830 + CoarseFineMotorHelp + + true + true + false true - 225 - CoarseFineMotorHelp false - false - - - - - - Display - true 400 - - true - 5 - - false - -1 - -1 - - - 507 327 - + 507 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 23 + true - 39872d87:13e14015f61:2079 - - - - - 23 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 400 + 0 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 400 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 0.0 + 158 + true - + - 39872d87:13e14015f61:2080 - - - - - 158 - true + 0 + 1 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - - - - - - - + true Rectangle - true - - - - false - - Default - 390 - 0 - 0 - - - 1 - 1 - true + 5 + 23 + + + + + + - - 23 - $(pv_name) -$(pv_value) - 5 - false - - + 0 + 1 + true + false + + Default + + + + + 14 + false true - true - 39872d87:13e14015f61:2086 - - 14 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 395 - 0 - - false - 1 - - - - - 145 - 5 - - true - 1 - 39872d87:13e14015f61:2087 + 145 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + FINE SCAN- + + true + 1 + true + Label + 80 + false + 0 + 0 + + + + false - - - - Label - true - FINE SCAN- - - - - 80 - 0 - - 1 - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:2088 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true ...high limit - - - - 300 - 0 - - 1 - - - - 0 - - 0 - true + true + 1 + true + Label + 300 + false 95 + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 14 + false true - true - 39872d87:13e14015f61:2089 - - 14 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 395 - 0 - - false - 1 - - - - - 165 - 5 - - true - 1 - 39872d87:13e14015f61:208a + 165 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + FINE WANDER + + true + 1 + true + Label + 80 + false + 0 + 0 + + + + false - - - - Label - true - FINE WANDER - - - - 80 - 0 - - 1 - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:208b - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true ...midpoint - - - - 300 - 0 - - 1 - - - - 0 - - 0 - true + true + 1 + true + Label + 300 + false 95 + 0 - - true - 1 - 39872d87:13e14015f61:207a + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - Coarse/Fine Mode choices - - - - 400 - 0 - - 1 - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:207b - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + Coarse/Fine Mode choices + + true + 1 + true + Label + 400 + false + 0 + 0 + + + + false - - - - Label - true - Mode - - - - 80 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 1 - - 25 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:207c - false - - 14 Label + true true false - true + false + Mode + + true + 1 + true + Label + 80 + false + 5 + 25 + + + + false - - - - Label - true - AUTO - - - - 80 - 0 - - 1 - 1 - - 45 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:207d - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + AUTO + + true + 1 + true + Label + 80 + false + 5 + 45 + + + + false - - - - Label - true - FINE SCAN+ or FINE SCAN-, depending on - - - - 300 - 0 - - 1 - 0 - - 45 - true - - 100 - - - true - 1 - 39872d87:13e14015f61:207e - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + FINE SCAN+ or FINE SCAN-, depending on + + true + 1 + true + Label + 300 + false + 100 + 45 + + + + false - - - - Label - true - the preferred direction (BDST field) of - - - - 300 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 60 - true + Label + + + true + true + false + + + false + the preferred direction (BDST field) of + true + 1 + true + Label + 300 + false 100 + 60 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:207f - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 391 + 5 + 43 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 391 - 0 - 0 - - - 1 - 1 - true + false - - 43 - $(pv_name) -$(pv_value) - 5 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2081 - 0.0 - - 0 + + Default + + false + + + 139 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - 1 - 1 - true - - - - - 43 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 1 89 + 43 - - true - 1 - 39872d87:13e14015f61:2082 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + FINE SCAN+ + + true + 1 + true + Label + 80 + false + 5 + 95 + + + + false - - - - Label - true - FINE SCAN+ - - - - 80 - 0 - - 1 - 1 - - 95 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:2083 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Move fine motor only, if possible. + + true + 1 + true + Label + 300 + false + 100 + 95 + + + + false - - - - Label - true - Move fine motor only, if possible. - - - - 300 - 0 - - 1 - 0 - - 95 - true - - 100 - - - true - 1 - 39872d87:13e14015f61:2084 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + If coarse motor must move, position it so + + true + 1 + true + Label + 300 + false + 100 + 110 + + + + false - - - - Label - true - If coarse motor must move, position it so - - - - 300 - 0 - - 1 - 0 - - 110 - true - - 100 - - - true - 1 - 39872d87:13e14015f61:2085 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + that fine motor is at it's low limit. + + true + 1 + true + Label + 300 + false + 100 + 125 + + + + false - - - - Label - true - that fine motor is at it's low limit. - - - - 300 - 0 - - 1 - 0 - - 125 - true - - 100 - - - true - 1 - 39872d87:13e14015f61:208c - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true For coarse-only, or fine-only motions, use the coarse - - - - 390 - 0 - - 1 - - - - 0 - - 185 - true + true + 1 + true + Label + 390 + false 5 + 185 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:208d - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 391 + 5 + 92 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 391 - 0 - 0 - - - 1 - 1 - true + false - - 92 - $(pv_name) -$(pv_value) - 5 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:208e - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 391 + 5 + 142 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 391 - 0 - 0 - - - 1 - 1 - true + false - - 142 - $(pv_name) -$(pv_value) - 5 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:208f - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 391 - 0 - 0 - - 1 - 1 - true - - - - - 162 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 391 5 + 162 - - true - 1 - 39872d87:13e14015f61:2090 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + the fine motor + + true + 1 + true + Label + 300 + false + 100 + 75 + + + + false - - - - Label - true - the fine motor - - - - 300 - 0 - - 1 - 0 - - 75 - true - - 100 - - - true - 1 - 39872d87:13e14015f61:2091 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true or fine motor directly. This software will cooperate. - - - - 390 - 0 - - 1 - - - - 0 - - 200 - true + true + 1 + true + Label + 390 + false 5 + 200 - \ No newline at end of file + diff --git a/opticsApp/op/opi/CoarseFineMotorShow.opi b/opticsApp/op/opi/autoconvert/CoarseFineMotorShow.opi similarity index 54% rename from opticsApp/op/opi/CoarseFineMotorShow.opi rename to opticsApp/op/opi/autoconvert/CoarseFineMotorShow.opi index 350ef47..0adb98a 100644 --- a/opticsApp/op/opi/CoarseFineMotorShow.opi +++ b/opticsApp/op/opi/autoconvert/CoarseFineMotorShow.opi @@ -1,587 +1,351 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 100 true - 39872d87:13e14015f61:20ad - 3.1.2.20120830 + CoarseFineMotorShow + + true + true + false true - 100 - CoarseFineMotorShow false - false - - - - - - Display - true 470 - - true - 5 - - false - -1 - -1 - - - 268 375 - - false - true - 100.0 - - - - 39872d87:13e14015f61:20b0 - - - - - 23 - true - Rectangle - false + 268 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 130 + false + + + + false + 23 + true + + + 0 - 0 - - - 1 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - - true - - true - 39872d87:13e14015f61:20b3 - - 53 - Grouping Container + Rectangle + + + true true false - true - false + + $(pv_name) +$(pv_value) + false + true + Rectangle + 130 + 0 + 0 + + + + true + false + false - + - - - - Grouping Container - true - - Default - - 265 - 0 - - false - 1 + false - - 24 - - 163 - - true - 1 - 39872d87:13e14015f61:20b4 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - F - - - - 10 - 0 - - 1 - - - - 1 - - 3 - true - - 50 - - - true - 1 - 39872d87:13e14015f61:20b5 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - C - - - - 10 - 0 - - 1 - - - - 1 - - 33 - true - - 0 - - - - - true - - true - 39872d87:13e14015f61:20b7 - - 20 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container + 6 + 1 true - Default + Default - 125 - 0 - - false - 1 - - - - - 75 - - 5 - - false - true - false - 39872d87:13e14015f61:20b8 - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 55 - 6 - - - - 1 - - - - 0 - - - motorx.opi - - true - MOT - - 0 - Combined (soft) motor - - - motor2x.opi - - true -

$(PM)

- $(CM) - $(FM) -
- 0 - Actual motors -
-
- $(pv_name) -$(pv_value) - 0 -
- - false - true - false - 39872d87:13e14015f61:20b9 - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - - 0 - - - CoarseFineMotor.opi - - true - MOT - - 1 - Small display - - - $(pv_name) -$(pv_value) - 85 - -
- - false - true - true - 39872d87:13e14015f61:20ae - + false + + + 20 + Menu Button - false + $(P)mode + + true true false + + false + $(pv_name) +$(pv_value) false - $(P)mode - - - - - - + true Menu Button - true - false - - Default - 95 - 6 - - - - 1 - - - - 45 - - $(pv_name) -$(pv_value) 5 + 45 - - true - 1 - 39872d87:13e14015f61:20af + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - Mode - - - - 100 - 0 - - 1 - 1 - - 25 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:20b1 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true - Coarse/Fine - - - - 130 - 0 - - 1 - - - - 1 - - 0 - true + Mode - 0 - - - false + true + 1 true - false - 39872d87:13e14015f61:20b2 - - 30 - Menu Button - false - - true - true - false - - false - + Label + 100 + false + 5 + 25 + + + + false - + - - - - Menu Button - true - false - - Default - - 25 - 6 - - - - 1 - 35 + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + Coarse/Fine + + true + 1 + true + Label + 130 + false + 0 + 0 + + CoarseFineMotorHelp.opi true - 0 + 1 help - $(pv_name) -$(pv_value) - 102 - - + false + false + + + false - true - false - 39872d87:13e14015f61:20b6 - - 15 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 30 + + Action Button + 0 + + + true true false - false - + + + ? + false + $(pv_name) +$(pv_value) + true + Action Button + 25 + 102 + 35 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 40 - 6 - + + + + 20 + 1 + Label - - 1 + + true + true + false + + + false + F + + true + 1 + true + Label + 10 + false + 213 + 27 + + + + false + + + - 85 + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + C + + true + 1 + true + Label + 10 + false + 163 + 57 + + yyTransform_full.opi @@ -589,7 +353,7 @@ $(pv_value) true limitProc - 0 + 1 limitProc @@ -598,7 +362,7 @@ $(pv_value) true moveCF - 0 + 1 moveCF @@ -607,7 +371,7 @@ $(pv_value) true closeGate - 0 + 1 closeGate calc @@ -616,7 +380,7 @@ $(pv_value) true fineModeCalc - 0 + 1 fineModeCalc @@ -625,7 +389,7 @@ $(pv_value) true doneCalc - 0 + 1 done calc @@ -634,12 +398,170 @@ $(pv_value) true RBV - 0 + 1 RBV calc + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 15 + + Menu Button + + + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 40 430 + 85 + + + + + motorx.opi + + true + MOT + + 1 + Combined (soft) motor + + + motor2x.opi + + true +

$(PM)

+ $(CM) + $(FM) +
+ 1 + Actual motors +
+
+ false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 55 + 5 + 75 +
+ + + + CoarseFineMotor.opi + + true + MOT + + 0 + Small display + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + Less + false + $(pv_name) +$(pv_value) + true + Action Button + 40 + 90 + 75 -
\ No newline at end of file +
diff --git a/opticsApp/op/opi/autoconvert/Io.opi b/opticsApp/op/opi/autoconvert/Io.opi new file mode 100644 index 0000000..7027a2c --- /dev/null +++ b/opticsApp/op/opi/autoconvert/Io.opi @@ -0,0 +1,4181 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 460 + + true + + Io + + + true + true + false + true + false + Display + 545 + 366 + 194 + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 75 + true + + + + 0 + 5 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 400 + 104 + 210 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 25 + 1 + Label + + + true + true + false + + + false + Io + + true + 1 + true + Label + 60 + false + 255 + 2 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 2 + Label + + + true + true + false + + + false + Io.adl + + true + 1 + true + Label + 80 + false + 461 + 2 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 15 + 2 + Text Update + 0 + true + $(P)HePath.DESC + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 131 + false + 10 + 296 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 25 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)HePath + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 142 + 291 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 15 + 0 + Text Update + 0 + true + $(P)HePath.EGU + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 50 + false + 206 + 296 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 15 + 2 + Text Update + 0 + true + $(P)airPath.DESC + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 131 + false + 10 + 326 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 25 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)airPath + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 142 + 321 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 15 + 0 + Text Update + 0 + true + $(P)airPath.EGU + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 50 + false + 206 + 326 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 15 + 2 + Text Update + 0 + true + $(P)Be.DESC + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 131 + false + 272 + 296 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 25 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)Be + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 403 + 291 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 15 + 0 + Text Update + 0 + true + $(P)Be.EGU + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 50 + false + 467 + 296 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 15 + 2 + Text Update + 0 + true + $(P)v2f.DESC + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 131 + false + 265 + 163 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 2 + 25 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)v2f + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 397 + 158 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 15 + 0 + Text Update + 0 + true + $(P)v2f.EGU + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 50 + false + 461 + 163 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 18 + 2 + Text Update + 0 + true + $(P)flux.DESC + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 113 + false + 1 + 32 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 + 23 + 2 + Text Update + 0 + true + $(P)flux + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 100 + false + 115 + 30 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 15 + 0 + Text Update + 0 + true + $(P)flux.EGU + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 220 + 34 + + + + + Io_small.opi + + true + + 0 + small + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 23 + + Action Button + 0 + + + + + true + true + false + + + + small + false + $(pv_name) +$(pv_value) + true + Action Button + 60 + 2 + 2 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 18 + 2 + Text Update + 0 + true + $(P)detector.DESC + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 113 + false + 1 + 60 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 + 23 + 2 + Text Update + 0 + true + $(P)detector + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 100 + false + 115 + 58 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 15 + 0 + Text Update + 0 + true + $(P)detector.EGU + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 220 + 62 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 6 + 18 + 2 + Text Update + 0 + true + $(P)ionAbs + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 100 + false + 115 + 110 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 16 + 2 + Text Update + 0 + true + $(P)ionAbs.DESC + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 113 + false + 1 + 111 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 15 + 0 + Text Update + 0 + true + $(P)ionAbs.EGU + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 220 + 112 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 16 + 2 + Text Update + 0 + true + $(P)ionPhotons.DESC + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 113 + false + 1 + 87 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 + 18 + 2 + Text Update + 0 + true + $(P)ionPhotons + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 100 + false + 115 + 86 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 15 + 0 + Text Update + 0 + true + $(P)ionPhotons.EGU + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 220 + 88 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 + 18 + 0 + Text Update + 0 + true + $(S).S1 + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 397 + 62 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 + 18 + 0 + Text Update + 0 + true + $(S).FREQ + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 397 + 37 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 0 + Label + + + true + true + false + + + false + Hz + + true + 1 + true + Label + 70 + false + 482 + 39 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 0 + Label + + + true + true + false + + + false + scaler cnts + + true + 1 + true + Label + 70 + false + 482 + 64 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 0 + Label + + + true + true + false + + + false + scaler cnts + + true + 1 + true + Label + 70 + false + 482 + 89 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 2 + Label + + + true + true + false + + + false + counter clock + + true + 1 + true + Label + 95 + false + 292 + 39 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 2 + Label + + + true + true + false + + + false + clock ticks + + true + 1 + true + Label + 95 + false + 292 + 64 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 2 + Label + + + true + true + false + + + false + Io counts + + true + 1 + true + Label + 95 + false + 292 + 89 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 18 + 0 + Text Update + 0 + true + $(S).S5 + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 397 + 87 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 2 + Label + + + true + true + false + + + false + 2'' proportional cntr + + true + 1 + true + Label + 140 + false + 377 + 349 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 25 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)efficiency + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 404 + 322 + + + + true + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 23 + + Menu Button + $(P)ArPcntr + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 75 + 468 + 321 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 15 + 2 + Text Update + 0 + true + $(P)efficiency.DESC + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 131 + false + 272 + 327 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 522 + 12 + 369 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 15 + 2 + Text Update + 0 + true + $(P)kapton2.DESC + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 131 + false + 272 + 409 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 25 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)kapton2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 404 + 404 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 15 + 0 + Text Update + 0 + true + $(P)kapton2.EGU + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 50 + false + 468 + 409 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 15 + 2 + Text Update + 0 + true + $(P)kapton1.DESC + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 131 + false + 272 + 380 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 25 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)kapton1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 404 + 375 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 15 + 0 + Text Update + 0 + true + $(P)kapton1.EGU + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 50 + false + 468 + 380 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 15 + 2 + Text Update + 0 + true + $(P)activeLen.DESC + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 131 + false + 10 + 380 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 25 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)activeLen + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 142 + 375 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 15 + 0 + Text Update + 0 + true + $(P)activeLen.EGU + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 50 + false + 206 + 380 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 15 + 2 + Text Update + 0 + true + $(P)deadFront.DESC + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 131 + false + 10 + 409 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 25 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)deadFront + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 142 + 404 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 15 + 0 + Text Update + 0 + true + $(P)deadFront.EGU + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 50 + false + 206 + 409 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 15 + 2 + Text Update + 0 + true + $(P)deadRear.DESC + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 131 + false + 10 + 438 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 25 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)deadRear + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 142 + 433 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 15 + 0 + Text Update + 0 + true + $(P)deadRear.EGU + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 50 + false + 206 + 438 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 15 + 1 + Label + + + true + true + false + + + false + ion chamber fill gas (atm) + + true + 1 + true + Label + 250 + false + 176 + 218 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 25 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)xAr + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 342 + 252 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 15 + 1 + Label + + + true + true + false + + + false + Argon + + true + 1 + true + Label + 60 + false + 342 + 237 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 25 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)xAr + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 412 + 252 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 15 + 1 + Label + + + true + true + false + + + false + CO2 + + true + 1 + true + Label + 60 + false + 412 + 237 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 25 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)xHe + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 272 + 252 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 15 + 1 + Label + + + true + true + false + + + false + He + + true + 1 + true + Label + 60 + false + 272 + 237 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 15 + 1 + Label + + + true + true + false + + + false + Air + + true + 1 + true + Label + 60 + false + 132 + 237 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 25 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)xAir + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 132 + 252 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 15 + 1 + Label + + + true + true + false + + + false + Nitrogen + + true + 1 + true + Label + 60 + false + 202 + 237 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 25 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)xN2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 202 + 252 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 2 + Label + + + true + true + false + + + false + CHESS chamber (17.5, 60, 17.5 mm) + + true + 1 + true + Label + 236 + false + 306 + 444 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 15 + 0 + Text Update + 0 + true + $(P)scaler.DESC + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 110 + false + 171 + 135 + + + + true + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 18 + + Menu Button + $(P)scaler + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 35 + 128 + 132 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 15 + 2 + Label + + + true + true + false + + + false + scaler channel + + true + 1 + true + Label + 120 + false + 3 + 135 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 2 + Label + + + true + true + false + + + false + using + + true + 1 + true + Label + 95 + false + 28 + 188 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)E_using + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 129 + 186 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 14 + 0 + Text Update + 0 + true + $(P)E_using.EGU + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 50 + false + 214 + 188 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 2 + Label + + + true + true + false + + + false + monochromator + + true + 1 + true + Label + 95 + false + 24 + 164 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 18 + 0 + Text Update + 0 + true + $(MONO) + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 129 + 160 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 14 + 0 + Text Update + 0 + true + $(MONO).EGU + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 50 + false + 214 + 164 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 + 18 + 0 + Text Update + 0 + true + $(P)VperA + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 396 + 133 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 2 + Label + + + true + true + false + + + false + Current Amp + + true + 1 + true + Label + 95 + false + 293 + 112 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 2 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)VperA + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 396 + 110 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 14 + 0 + Text Update + 0 + true + $(P)VperA.EGU + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 50 + false + 483 + 112 + + diff --git a/opticsApp/op/opi/autoconvert/Io_small.opi b/opticsApp/op/opi/autoconvert/Io_small.opi new file mode 100644 index 0000000..8918167 --- /dev/null +++ b/opticsApp/op/opi/autoconvert/Io_small.opi @@ -0,0 +1,608 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 118 + + true + + Io_small + + + true + true + false + true + false + Display + 300 + 698 + 154 + + + false + + + + + + + 0 + 1 + true + + + + + + + 25 + 1 + Label + + + true + true + false + + + false + Io + + true + 1 + true + Label + 40 + false + 136 + 2 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 2 + Label + + + true + true + false + + + false + Io_small.adl + + true + 1 + true + Label + 80 + false + 215 + 2 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 18 + 2 + Text Update + 0 + true + $(P)flux.DESC + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 113 + false + 1 + 35 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 + 23 + 2 + Text Update + 0 + true + $(P)flux + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 100 + false + 115 + 33 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 15 + 0 + Text Update + 0 + true + $(P)flux.EGU + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 220 + 37 + + + + + Io.opi + + true + + 0 + all + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 23 + + Action Button + 0 + + + + + true + true + false + + + + all + false + $(pv_name) +$(pv_value) + true + Action Button + 60 + 2 + 2 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 18 + 2 + Text Update + 0 + true + $(P)detector.DESC + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 113 + false + 1 + 63 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 + 23 + 2 + Text Update + 0 + true + $(P)detector + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 100 + false + 115 + 61 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 15 + 0 + Text Update + 0 + true + $(P)detector.EGU + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 220 + 65 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 18 + 2 + Label + + + true + true + false + + + false + scaler channel + + true + 1 + true + Label + 113 + false + 18 + 94 + + + + true + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 21 + + Menu Button + $(P)scaler + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 35 + 140 + 90 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 18 + 0 + Text Update + 0 + true + $(P)scaler.DESC + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 110 + false + 186 + 94 + + diff --git a/opticsApp/op/opi/autoconvert/MLLH.opi b/opticsApp/op/opi/autoconvert/MLLH.opi new file mode 100644 index 0000000..f3d13e6 --- /dev/null +++ b/opticsApp/op/opi/autoconvert/MLLH.opi @@ -0,0 +1,349 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 250 + + true + + MLLH + + + true + true + false + true + false + Display + 390 + 503 + 49 + + + + + + + + + 0 + 1 + true + + Default + + + + + + 206 + + true + + Linking Container + MLLH_bare.opi + 2 + + + true + true + false + + + + true + Linking Container + 390 + 0 + 0 + + + + + motorx.opi + + true + $(Q)th + + 1 + th + + + motorx.opi + + true + $(Q)z + + 1 + z + + + motorx.opi + + true + $(Q)x + + 1 + x + + + yyTransform.opi + + true + $(Q)t1 + + 1 + t1 + + + yyTransform.opi + + true + $(Q)t2 + + 1 + t2 + + + yyTransform.opi + + true + $(Q)t3 + + 1 + t3 + + + yyCalcoutRecord.opi + + true + $(Q)calcDone + + 1 + calcDone + + + yySeq.opi + + true + $(Q)softPut + + 1 + softPut + + + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 45 + 290 + 215 + + + + + MLLH_more.opi + + true + + 0 + more + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + More + false + $(pv_name) +$(pv_value) + true + Action Button + 40 + 340 + 215 + + + + + $(P)$(Q)sync + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(Q)sync + + + + true + true + false + + + + Sync to Motors + false + $(pv_name) +$(pv_value) + true + Action Button + 110 + 20 + 215 + + + + + $(P)$(Q)stop + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 30 + + Action Button + 0 + $(P)$(Q)stop + + + + true + true + false + + + + Stop MLLH + false + $(pv_name) +$(pv_value) + true + Action Button + 100 + 160 + 215 + + diff --git a/opticsApp/op/opi/autoconvert/MLLH_bare.opi b/opticsApp/op/opi/autoconvert/MLLH_bare.opi new file mode 100644 index 0000000..96cf00a --- /dev/null +++ b/opticsApp/op/opi/autoconvert/MLLH_bare.opi @@ -0,0 +1,305 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 210 + + true + + MLLH_bare + + + true + true + false + true + false + Display + 390 + 945 + 281 + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 25 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 390 + 0 + 0 + + + + + + + + + + 0 + 1 + true + + Default + + + + + + 176 + + true + $(Q)th + + Linking Container + motorx_bare.opi + 2 + + + true + true + false + + + + true + Linking Container + 116 + 10 + 30 + + + + + + + + + + 0 + 1 + true + + Default + + + + + + 176 + + true + $(Q)z + + Linking Container + motorx_bare.opi + 2 + + + true + true + false + + + + true + Linking Container + 116 + 135 + 30 + + + + + + + + + + 0 + 1 + true + + Default + + + + + + 176 + + true + $(Q)x + + Linking Container + motorx_bare.opi + 2 + + + true + true + false + + + + true + Linking Container + 116 + 260 + 30 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 22 + 1 + Label + + + true + true + false + + + false + MLL H stage + + true + 1 + true + Label + 370 + false + 10 + 0 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 387 + 1 + 23 + + diff --git a/opticsApp/op/opi/autoconvert/MLLH_more.opi b/opticsApp/op/opi/autoconvert/MLLH_more.opi new file mode 100644 index 0000000..50ed567 --- /dev/null +++ b/opticsApp/op/opi/autoconvert/MLLH_more.opi @@ -0,0 +1,1582 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 420 + + true + + MLLH_more + + + true + true + false + true + false + Display + 390 + 993 + 401 + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 33 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 237 + 104 + 347 + + + + + + + + + + 0 + 1 + true + + Default + + + + + + 206 + + true + + Linking Container + MLLH_bare.opi + 2 + + + true + true + false + + + + true + Linking Container + 390 + 0 + 0 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 12 + true + + + + 0 + 1 + Ellipse + + + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Ellipse + 12 + 115 + 357 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 12 + true + + + + 0 + 1 + Ellipse + + + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Ellipse + 12 + 318 + 357 + + + + false + 255 + true + false + + + + false + + + + 0 + 1 + true + false + + Default + + false + + + + 21 + 0 + 1 + Arc + + + + + true + true + true + + + 120 + $(pv_name) +$(pv_value) + 125 + true + Arc + 23 + 120 + 290 + + + + false + 255 + true + false + + + + false + + + + 0 + 1 + true + false + + Default + + false + + + + 21 + 0 + 1 + Arc + + + + + true + true + true + + + 295 + $(pv_name) +$(pv_value) + 125 + true + Arc + 23 + 91 + 291 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 37 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 1 + 107 + 311 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 37 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 1 + 128 + 311 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 21 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 1 + 107 + 271 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 21 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 1 + 128 + 271 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 21 + 108 + 270 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q)xLen + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 191 + 306 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q)zBendLen + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 28 + 324 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 61 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 1 + 92 + 303 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 17 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 1 + 215 + 384 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q)zNoseLen + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 233 + 391 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 203 + 119 + 331 + + + + false + 255 + true + false + + + + false + + + + 0 + 1 + true + 100.0 + + Default + + false + + + + 11 + true + + + + 0 + 0 + Polygon + + + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polygon + 11 + 210 + 381 + + + + false + 255 + true + false + + + + false + + + + 0 + 1 + true + 100.0 + + Default + + false + + + + 11 + true + + + + 0 + 0 + Polygon + + + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polygon + 11 + 312 + 326 + + + + false + 255 + true + false + + + + false + + + + 0 + 1 + true + 100.0 + + Default + + false + + + + 11 + true + + + + 0 + 0 + Polygon + + + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polygon + 11 + 120 + 326 + + + + false + 255 + true + false + + + + false + + + + 0 + 1 + true + 100.0 + + Default + + false + + + + 11 + true + + + + 0 + 0 + Polygon + + + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polygon + 11 + 210 + 393 + + + + false + 255 + true + false + + + + false + + + + 0 + 1 + true + 100.0 + + Default + + false + + + + 11 + true + + + + 0 + 0 + Polygon + + + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polygon + 11 + 86 + 354 + + + + false + 255 + true + false + + + + false + + + + 0 + 1 + true + 100.0 + + Default + + false + + + + 11 + true + + + + 0 + 0 + Polygon + + + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polygon + 11 + 87 + 301 + + + + + motorx.opi + + true + $(Q)th + + 1 + th + + + motorx.opi + + true + $(Q)z + + 1 + z + + + motorx.opi + + true + $(Q)x + + 1 + x + + + yyTransform.opi + + true + $(Q)t1 + + 1 + t1 + + + yyTransform.opi + + true + $(Q)t2 + + 1 + t2 + + + yyTransform.opi + + true + $(Q)t3 + + 1 + t3 + + + yyCalcoutRecord.opi + + true + $(Q)calcDone + + 1 + calcDone + + + yySeq.opi + + true + $(Q)softPut + + 1 + softPut + + + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 45 + 290 + 230 + + + + + MLLH.opi + + true + + 0 + more + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + Less + false + $(pv_name) +$(pv_value) + true + Action Button + 40 + 340 + 230 + + + + + $(P)$(Q)sync + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(Q)sync + + + + true + true + false + + + + Sync + false + $(pv_name) +$(pv_value) + true + Action Button + 40 + 10 + 230 + + + + + $(P)$(Q)stop + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 30 + + Action Button + 0 + $(P)$(Q)stop + + + + true + true + false + + + + Stop MLLH + false + $(pv_name) +$(pv_value) + true + Action Button + 100 + 160 + 215 + + diff --git a/opticsApp/op/opi/autoconvert/MLLV.opi b/opticsApp/op/opi/autoconvert/MLLV.opi new file mode 100644 index 0000000..c53abae --- /dev/null +++ b/opticsApp/op/opi/autoconvert/MLLV.opi @@ -0,0 +1,393 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 250 + + true + + MLLV + + + true + true + false + true + false + Display + 640 + 261 + 346 + + + + + + + + + 0 + 1 + true + + Default + + + + + + 206 + + true + + Linking Container + MLLV_bare.opi + 2 + + + true + true + false + + + + true + Linking Container + 640 + 0 + 0 + + + + + motorx.opi + + true + $(Q)th + + 1 + th + + + motorx.opi + + true + $(Q)z + + 1 + z + + + motorx.opi + + true + $(Q)y + + 1 + y + + + motorx.opi + + true + $(Q)chi + + 1 + chi + + + motorx.opi + + true + $(Q)x + + 1 + x + + + yyTransform.opi + + true + $(Q)tFwd + + 1 + tFwd + + + yyTransform.opi + + true + $(Q)tRev + + 1 + tRev + + + yyTransform.opi + + true + $(Q)tLimits + + 1 + tLimits + + + yyTransform.opi + + true + $(Q)tLimits1 + + 1 + tLimits1 + + + yyCalcoutRecord.opi + + true + $(Q)calcDone + + 1 + calcDone + + + yyCalcoutRecord.opi + + true + $(Q)closeGate + + 1 + closeGate + + + MLLV_misc.opi + + true + + 1 + misc + + + yySeq.opi + + true + $(Q)softPut + + 1 + softPut + + + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 70 + 480 + 215 + + + + + MLLV_more.opi + + true + + 0 + more + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + More + false + $(pv_name) +$(pv_value) + true + Action Button + 70 + 555 + 215 + + + + + $(P)$(Q)sync + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(Q)sync + + + + true + true + false + + + + Sync to motors + false + $(pv_name) +$(pv_value) + true + Action Button + 110 + 20 + 215 + + + + + $(P)$(Q)stop + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 30 + + Action Button + 0 + $(P)$(Q)stop + + + + true + true + false + + + + Stop MLLV + false + $(pv_name) +$(pv_value) + true + Action Button + 100 + 270 + 215 + + diff --git a/opticsApp/op/opi/autoconvert/MLLV_bare.opi b/opticsApp/op/opi/autoconvert/MLLV_bare.opi new file mode 100644 index 0000000..9f0a693 --- /dev/null +++ b/opticsApp/op/opi/autoconvert/MLLV_bare.opi @@ -0,0 +1,385 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 210 + + true + + MLLV_bare + + + true + true + false + true + false + Display + 640 + 600 + 268 + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 25 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 640 + 0 + 0 + + + + + + + + + + 0 + 1 + true + + Default + + + + + + 176 + + true + $(Q)th + + Linking Container + motorx_bare.opi + 2 + + + true + true + false + + + + true + Linking Container + 116 + 10 + 30 + + + + + + + + + + 0 + 1 + true + + Default + + + + + + 176 + + true + $(Q)z + + Linking Container + motorx_bare.opi + 2 + + + true + true + false + + + + true + Linking Container + 116 + 135 + 30 + + + + + + + + + + 0 + 1 + true + + Default + + + + + + 176 + + true + $(Q)y + + Linking Container + motorx_bare.opi + 2 + + + true + true + false + + + + true + Linking Container + 116 + 260 + 30 + + + + + + + + + + 0 + 1 + true + + Default + + + + + + 176 + + true + $(Q)chi + + Linking Container + motorx_bare.opi + 2 + + + true + true + false + + + + true + Linking Container + 116 + 385 + 30 + + + + + + + + + + 0 + 1 + true + + Default + + + + + + 176 + + true + $(Q)x + + Linking Container + motorx_bare.opi + 2 + + + true + true + false + + + + true + Linking Container + 116 + 510 + 30 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 22 + 1 + Label + + + true + true + false + + + false + MLL V stage + + true + 1 + true + Label + 620 + false + 10 + 0 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 636 + 1 + 23 + + diff --git a/opticsApp/op/opi/autoconvert/MLLV_more.opi b/opticsApp/op/opi/autoconvert/MLLV_more.opi new file mode 100644 index 0000000..5279621 --- /dev/null +++ b/opticsApp/op/opi/autoconvert/MLLV_more.opi @@ -0,0 +1,393 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 250 + + true + + MLLV_more + + + true + true + false + true + false + Display + 640 + 905 + 346 + + + + + + + + + 0 + 1 + true + + Default + + + + + + 206 + + true + + Linking Container + MLLV_bare.opi + 2 + + + true + true + false + + + + true + Linking Container + 640 + 0 + 0 + + + + + MLLV.opi + + true + + 0 + more + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + Less + false + $(pv_name) +$(pv_value) + true + Action Button + 70 + 555 + 215 + + + + + $(P)$(Q)sync + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(Q)sync + + + + true + true + false + + + + Sync to motors + false + $(pv_name) +$(pv_value) + true + Action Button + 110 + 20 + 215 + + + + + $(P)$(Q)stop + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 30 + + Action Button + 0 + $(P)$(Q)stop + + + + true + true + false + + + + Stop MLLV + false + $(pv_name) +$(pv_value) + true + Action Button + 100 + 270 + 215 + + + + + motorx.opi + + true + $(Q)th + + 1 + th + + + motorx.opi + + true + $(Q)z + + 1 + z + + + motorx.opi + + true + $(Q)y + + 1 + y + + + motorx.opi + + true + $(Q)chi + + 1 + chi + + + motorx.opi + + true + $(Q)x + + 1 + x + + + yyTransform.opi + + true + $(Q)tFwd + + 1 + tFwd + + + yyTransform.opi + + true + $(Q)tRev + + 1 + tRev + + + yyTransform.opi + + true + $(Q)tLimits + + 1 + tLimits + + + yyTransform.opi + + true + $(Q)tLimits1 + + 1 + tLimits1 + + + yyCalcoutRecord.opi + + true + $(Q)calcDone + + 1 + calcDone + + + yyCalcoutRecord.opi + + true + $(Q)closeGate + + 1 + closeGate + + + MLLV_misc.opi + + true + + 1 + misc + + + yySeq.opi + + true + $(Q)softPut + + 1 + softPut + + + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 70 + 480 + 215 + + diff --git a/opticsApp/op/opi/SGM.opi b/opticsApp/op/opi/autoconvert/SGM.opi similarity index 78% rename from opticsApp/op/opi/SGM.opi rename to opticsApp/op/opi/autoconvert/SGM.opi index 7b347f9..9bf6789 100644 --- a/opticsApp/op/opi/SGM.opi +++ b/opticsApp/op/opi/autoconvert/SGM.opi @@ -1,249 +1,247 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 290 true - 39872d87:13e14015f61:21c4 - 3.1.2.20120830 + SGM + + true + true + false true - 290 - SGM false - false - - - - - - Display - true 592 - - true - 5 - - false - -1 - -1 - - - 44 - 381 - + 812 + 582 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 20 + true - 39872d87:13e14015f61:21c5 - - - - - 20 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 205 + 390 + 25 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 205 - 0 - 0 - - - 1 - 0 - true - - - - - 25 - $(pv_name) -$(pv_value) - 390 + false + + + false - - - false - true - 100.0 + 125 + true - 39872d87:13e14015f61:21c6 - - - - - 125 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 200 + 392 + 165 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 200 - 0 - 0 - - - 1 - 0 - true - - - - - 165 - $(pv_name) -$(pv_value) - 392 + false + + + false - - - false - true - 100.0 + 25 + true - 39872d87:13e14015f61:21d3 - - - - - 25 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 595 + 0 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 595 + false + + + + false + 5 + true + + + 0 - 0 - - - 1 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:21d6 - - - - - 5 - true Rectangle - false - 255 - - true - true - false - - false - - - - - - - Rectangle - true - - - - false - - Default - - 15 - 0 - 0 + @@ -255,233 +253,233 @@ $(pv_value) $(P)SGM$(N):auto - - 1 - 0 - true - - - - - 82 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 15 320 - false + 82 - + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 32 + true - 39872d87:13e14015f61:21dc - - - - - 32 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 100 + 5 + 130 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 100 - 0 - 0 - - - 1 - 0 - true - - - - - 130 - $(pv_name) -$(pv_value) - 5 + false + + + false - - - false - true - 100.0 + 32 + true - 39872d87:13e14015f61:21f3 - - - - - 32 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 100 + 110 + 130 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 100 - 0 - 0 - - - 1 - 0 - true - - - - - 130 - $(pv_name) -$(pv_value) - 110 + false + + + false - - - false - true - 100.0 + 32 + true - 39872d87:13e14015f61:21fc - - - - - 32 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 100 + 215 + 130 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 100 - 0 - 0 - - - 1 - 0 - true - - - - - 130 - $(pv_name) -$(pv_value) - 215 + false + + + false - - - false - true - 100.0 + 5 + true - 39872d87:13e14015f61:2211 - - - - - 5 - true + 0 + 0 Rectangle - false - 255 - - true - true - false - - false - - - - - - - Rectangle - true - - - - false - - Default - - 5 - 0 - 0 + @@ -493,62 +491,119 @@ $(pv_value) $(P)SGM$(N):auto - - 1 - 0 - true - - - - - 82 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 5 375 - false + 82 - - false - true - 0.0 - - - - 39872d87:13e14015f61:222a + + + false + 255 + true + false + + + - - 37 - true - Rectangle + false + + + + 0 + 1 + true + + + + 100.0 + + Default + false - 255 + + + + false + 38 + true + + + + 0 + 0 + Rectangle + + + true true false - true - + + $(pv_name) +$(pv_value) + false + true + Rectangle + 65 + 462 + 120 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 60 + false + + + + false + 37 + true + + + 0 - 0 + 2 + Rectangle + + @@ -560,62 +615,62 @@ $(pv_value) $(P)$(M_x).DMOV - - 1 - 2 - true - - - - - 72 - $(pv_name) -$(pv_value) - 465 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:222f - - - - - 37 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 60 + 465 + 72 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 60 + false + + + + false + 37 + true + + + 0 - 0 + 2 + Rectangle + + @@ -627,62 +682,62 @@ $(pv_value) $(P)$(M_rIn).DMOV - - 1 - 2 - true - - - - - 72 - $(pv_name) -$(pv_value) - 400 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:2235 - - - - - 37 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 60 + 400 + 72 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 60 + false + + + + false + 37 + true + + + 0 - 0 + 2 + Rectangle + + @@ -694,1356 +749,679 @@ $(pv_value) $(P)$(M_rOut).DMOV - - 1 - 2 - true - - - - - 72 - $(pv_name) -$(pv_value) - 530 - false - - - - true - - true - 39872d87:13e14015f61:2223 - - 38 - Grouping Container true true false + + $(pv_name) +$(pv_value) true - false + true + Rectangle + 60 + 530 + 72 + + + + false + 255 + true + false - + - - - - Grouping Container - true - - Default - - 65 - 0 - - false - 1 + false - - 120 - - 462 - - false - true - 100.0 - - - - 39872d87:13e14015f61:2224 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 65 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - true - true - 1 - false - 39872d87:13e14015f61:2225 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(M_x).RRBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 56 - 0 - - - 1 - - - - 1 - - 2 - false - $(pv_name) -$(pv_value) - 5 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 56 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2226 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(M_x).RVAL - - - - false - 0 - - - false - - - - 0 - - 10 - $(pv_name) -$(pv_value) - 5 - - - true - 1 - 39872d87:13e14015f61:2227 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - steps - - - - 65 - 0 - - 1 - - - - 1 - - 28 - true - - 0 - - - - - true - - true - 39872d87:13e14015f61:224a - - 74 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container + 0 + 1 true + false - Default + Default - 65 - 0 + false + + + + 200 + 0 + 1 + Arc + + - false - 1 - - - - - 209 - - 320 - - - true - - true - 39872d87:13e14015f61:224b - - 34 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 65 - 0 - - false - 1 - - - - - 40 - - 0 - - true - true - 1 - false - 39872d87:13e14015f61:224c - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(P)SGM$(N):2Theta.EGU - - - - - - - Text Update - true - ###### - false - 0 - - - - 65 - 0 - - - 1 - - - - 0 - - 20 - false - $(pv_name) -$(pv_value) - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:224d - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(P)SGM$(N):len.EGU - - - - - - - Text Update - true - ###### - false - 0 - - - - 65 - 0 - - - 1 - - - - 0 - - 0 - false - $(pv_name) -$(pv_value) - 0 - - - - true - true - 1 - false - 39872d87:13e14015f61:224e - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(P)SGM$(N):gDensity.EGU - - - - - - - Text Update - true - ###### - false - 0 - - - - 65 - 0 - - - 1 - - - - 0 - - 0 - false - $(pv_name) -$(pv_value) - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:224f - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(P)SGM$(N):R.EGU - - - - - - - Text Update - true - ###### - false - 0 - - - - 65 - 0 - - - 1 - - - - 0 - - 20 - false - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:2250 - - 14 - Grouping Container true true - false + true - true - false + + 238 + $(pv_name) +$(pv_value) + 47 + true + Arc + 200 + 410 + 36 + + + + false + 255 + true + false - + - - - - Grouping Container - true - - Default - - 130 - 0 - - false - 1 + false - - 189 - - 255 - - true - true - 1 - false - 39872d87:13e14015f61:2251 - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(P)SGM$(N):m.EGU - - - - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 - - - - 0 - - 0 - false - $(pv_name) -$(pv_value) - 70 - - - true - true - 1 - false - 39872d87:13e14015f61:2252 - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(P)SGM$(N):m - - - - - - - Text Update - true - ###### - false - 0 - - - - 65 - 0 - - - 1 - - - - 0 - - 0 - false - $(pv_name) -$(pv_value) - 0 - - - - false - true - 47 - 39872d87:13e14015f61:21c7 - 238 - + 0 + 1 + true + false + + Default + + false + + + 200 - true + 0 + 1 Arc - false - 255 + + + true true true - + + 238 + $(pv_name) +$(pv_value) + 47 + true + Arc + 200 + 410 + 34 + + + + false + 255 + true + 20 + 0 + false - - - - Arc + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 200 + false + + + + 1 + true 0 - false - 0 - - - 1 1 - - - - - 36 - $(pv_name) -$(pv_value) - 410 - - - false - true - 47 - 39872d87:13e14015f61:21c8 - 238 - - 200 - true - Arc - false - 255 + Polyline + + + + + + + 0.0 + true true true - - - - - - - - Arc - true - false - - Default - - 200 - 0 - false - 0 - - - 1 - 1 - - - - - 34 + $(pv_name) $(pv_value) - 410 + true + true + Polyline + 61 + 325 + 110 - - false - true + + + false + 255 + true 20 - true - 100.0 - 39872d87:13e14015f61:21c9 - 0.0 - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - true - + false - - - - Polyline - true - false - - Default - - 61 - 0 - 0 - - - 1 - 1 - true + false - - 110 - $(pv_name) -$(pv_value) - 325 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:21ca - 0.0 - - 0 + + Default + + false + + + 17 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 398 + 175 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 175 - $(pv_name) -$(pv_value) - 398 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:21cb - 0.0 - - 0 + + Default + + false + + + 17 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 10 - 0 - 0 - - 1 - 1 - true - - - - - 176 - $(pv_name) -$(pv_value) - 576 - - - true - 1 - 39872d87:13e14015f61:21cc - false - - 20 - Label + 0.0 + true true - false + true + + $(pv_name) +$(pv_value) true - false + true + Polyline + 10 + 576 + 176 + + + + false - - - - Label - true - r' - - - - 20 - 0 - - 1 - 1 - - 205 - true - - 549 - - - true - 1 - 39872d87:13e14015f61:21cd - false - + 0 + 1 + true + + + + + + 20 + 2 Label + true true false - true + false + r' + + true + 1 + true + Label + 20 + false + 549 + 205 + + + + false - - - - Label + + + + 0 + 1 true - r - + - 10 - 0 + + + + 20 + 2 + Label - 1 - - - - 1 - - 205 - true + + true + true + false + + + false + r + true + 1 + true + Label + 10 + false 428 + 205 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:21ce - 0.0 - - 0 + + Default + + false + + + 90 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - 1 - 1 - true - - - - - 182 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 1 494 + 182 - - true - 1 - 39872d87:13e14015f61:21cf + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 2 Label + true true false - true + false - - - - - - - Label - true x - - - - 10 - 0 - - 1 - - - - 1 - - 266 - true + true + 1 + true + Label + 10 + false 484 + 266 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:21d0 - 0.0 - - 0 + + Default + + false + + + 39 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 10 - 0 - 0 - - 1 - 1 - true - - - - - 231 - $(pv_name) -$(pv_value) - 484 - - - false - true - 58 - 39872d87:13e14015f61:21d1 - 223 - - 20 - true - Arc - false - 255 + 0.0 + true true true - + + $(pv_name) +$(pv_value) + true + true + Polyline + 10 + 484 + 231 + + + + false + 255 + true + false - - - - Arc + false + + + + 0 + 1 true - false + false - Default + Default - 20 + false + + + + 20 0 - false - 0 - - - 1 1 - - - - - 238 + Arc + + + + + true + true + true + + + 223 $(pv_name) $(pv_value) + 58 + true + Arc + 20 483 + 238 - - true - 1 - 39872d87:13e14015f61:21d2 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 2 Label + true true false - true + false + phi + + true + 1 + true + Label + 30 + false + 429 + 256 + + + + false - - - - Label - true - phi - - - - 30 - 0 - - 1 - 1 - - 256 - true - - 429 - - - true - 1 - 39872d87:13e14015f61:21d4 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true Spherical Grating Monochromator - - - - 595 - 0 - - 1 - - - - 1 - - 0 - true + true + 1 + true + Label + 595 + false 0 + 0 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 100.0 + + Default + + false + + + + 16 + true - 39872d87:13e14015f61:21d5 - 0.0 - - 16 - true + 0 + 0 Polygon - false - 255 - - true - true - true - - false - - - - - - - Polygon - true - false - - Default - - 11 - 0 - 0 + + 0.0 @@ -2055,491 +1433,463 @@ $(pv_value) $(P)SGM$(N):auto - - 1 - 0 - true - - - - - 77 + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polygon + 11 380 + 77 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:21d7 - 0.0 - - 0 + + Default + + false + + + 286 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - 1 - 1 - true - - - - - 24 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 1 391 + 24 - - true - 1 - 39872d87:13e14015f61:21d8 + + false - - 10 - Label - - true - true - false - - true - false - - - - Label - true - Calib: - - - - 60 - 0 - - 1 + 0 + 1 + true + + + + + + + 10 0 - - 125 - true - - 325 - - - false - true - 39872d87:13e14015f61:21d9 - - 45 - Choice Button - false + Label + true true false - $(P)SGM$(N):auto + + false + Calib: + + true + 1 + true + Label + 60 + false + 325 + 125 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 60 - 0 - - - - - + false + + + + 45 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 28 + Choice Button + $(P)SGM$(N):auto + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 60 325 + 28 - + + + + $(P)SGM$(N):move.PROC + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:21da - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)SGM$(N):move.PROC + + true true false - $(P)SGM$(N):move.PROC - - - - - - - Action Button - true + + Move - false - - Default - - 40 - 0 - 0 - - - false - 1 - - - - 75 - - - $(P)SGM$(N):move.PROC - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 40 335 + 75 - - false - true + + true - 39872d87:13e14015f61:21db - + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + $(P)SGM$(N):set + + true true false + + false + $(pv_name) +$(pv_value) false - $(P)SGM$(N):set - - - - - - + true Menu Button - true - false - - Default - 60 - 6 - - - - 1 - - - - 135 - - $(pv_name) -$(pv_value) 325 + 135 - - true - 1 - 39872d87:13e14015f61:21dd + + false - - 10 - Label - - true - true - false - - true - false - - - - Label - true - SCAN CONTROL - - - - 100 - 0 - - 1 + 0 + 1 + true + + + + + + + 10 1 - - 130 - true - - 5 - - - false - true - 39872d87:13e14015f61:21de - - 20 - Action Button - false + Label + true true false - $(P)allstop.VAL - - - - - - - Action Button - true - Stop - false - - Default - - 35 - 0 - 0 - - - - false - 1 - - - - 140 + + false + SCAN CONTROL + + true + 1 + true + Label + 100 + false + 5 + 130 + + $(P)allstop.VAL 1 10 + - $(pv_name) -$(pv_value) - 69 - - + false + false + + + false - true - 39872d87:13e14015f61:21df - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)SGM$(N):Energy:scanParms.GO - - - - - - - Action Button - true - Go - false - - Default - - 20 - 0 - 0 - - - + + + Stop false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 35 + 69 140 + + $(P)SGM$(N):Energy:scanParms.GO 1 10 + - $(pv_name) -$(pv_value) - 48 - - + false + false + + + false - true - 39872d87:13e14015f61:21e0 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)SGM$(N):Energy:scanParms.GO + + true true false - $(P)SGM$(N):Energy:scanParms.LOAD - - - - - - + + + Go + false + $(pv_name) +$(pv_value) + true Action Button - true - Ld - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 48 140 + + $(P)SGM$(N):Energy:scanParms.LOAD 1 10 + - $(pv_name) -$(pv_value) - 27 - - + false + false + + + false - true - false - 39872d87:13e14015f61:21e1 - - 20 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + $(P)SGM$(N):Energy:scanParms.LOAD + + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - + + + Ld + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 27 140 + + scanParms.opi @@ -2548,1106 +1898,1134 @@ $(pv_value) SGM$(N):Energy SGM$(N):Energy - 0 + 1 Energy-scan parameters + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + + false $(pv_name) $(pv_value) + true + Action Button + 20 6 + 140 - - true - true - 1 - false - 39872d87:13e14015f61:21e2 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)SGM$(N):EnergyRBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)SGM$(N):EnergyRBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 57 false - $(pv_name) -$(pv_value) 5 + 57 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:21e3 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)SGM$(N):Energy + + false + 0.0 + true true false - 1 - false + 0 - $(P)SGM$(N):Energy - - - - false - 0 - - - false - - - - 0 - - 73 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 5 + 73 - - false - true - 39872d87:13e14015f61:21e4 - - 20 - Action Button - false - - true - true - false - - $(P)SGM$(N):EnergyTweak.A - - - - - - - Action Button - true - > - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 109 + $(P)SGM$(N):EnergyTweak.A 1 10 + - $(pv_name) -$(pv_value) - 85 - - - false - true - 1 - false - false - - 20 - false - true + false + false - + - Text Input + false + + + + 0 + 1 true - - + Default - 60 - 3 + false + + + + 20 + + Action Button + 0 + $(P)SGM$(N):EnergyTweak.A - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:21e5 - 0.0 - Text Input + true true false - 1 - false - 0 - $(P)SGM$(N):EnergyTweak.C - - - - false - 0 - - - false - - - - 0 - - 109 + + + > + false $(pv_name) $(pv_value) - 25 + true + Action Button + 20 + 85 + 109 - + + + false + false + false + + + false - true - 39872d87:13e14015f61:21e6 - - 20 - Action Button + + + + 3 + 1 + + true + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):EnergyTweak.C + + false + 0.0 + true true false - $(P)SGM$(N):EnergyTweak.B - - - - - - - Action Button - true - < - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 25 109 + + $(P)SGM$(N):EnergyTweak.B 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)SGM$(N):EnergyTweak.B + + + + true + true + false + + + + < + false $(pv_name) $(pv_value) + true + Action Button + 20 5 + 109 - - true - true - 1 - false - 39872d87:13e14015f61:21e7 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)SGM$(N):Energy.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)SGM$(N):Energy.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 96 false - $(pv_name) -$(pv_value) 5 + 96 - - true - true - 1 - false - 39872d87:13e14015f61:21e8 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)SGM$(N):Energy.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)SGM$(N):Energy.DRVH + 1 + true + Text Update + 100 + false + 5 + 44 + + + + false - + + + + + 0 + 1 + true + + + - + - Text Update - true - ###### - false - 0 - - - - 100 - 0 - - - 1 - - - - 1 - - 44 - false - $(pv_name) -$(pv_value) - 5 - - - true - 1 - 39872d87:13e14015f61:21e9 - false - 20 + 1 Label + true true false - true + false + Energy(eV) + + true + 1 + true + Label + 100 + false + 5 + 25 + + + + false - - - - Label - true - Energy(eV) - - - - 100 - 0 - - 1 - 1 - - 25 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:21ea - false - + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true SGM Motors - - - - 200 - 0 - - 1 - - - - 1 - - 25 - true + true + 1 + true + Label + 200 + false 390 + 25 - + + + + $(P)allstop.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:21eb - + + + + 0 + 1 + true + + Default + + false + + + 27 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)allstop.VAL - - - - - - - Action Button - true + + Stop - false - - Default - - 60 - 0 - 0 - - - false - 1 - - - - 135 - - - $(P)allstop.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 60 393 + 135 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:21ec - 0.0 - - 0 + + Default + + false + + + 140 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 1 + 321 + 24 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true + false - - 24 - $(pv_name) -$(pv_value) - 321 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:21ed - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 593 - 0 - 0 - - 1 - 1 - true - - - - - 164 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 593 1 + 164 - - true - 1 - 39872d87:13e14015f61:21ee + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true Wavelen(A) - - - - 100 - 0 - - 1 - - - - 1 - - 25 - true + true + 1 + true + Label + 100 + false 110 + 25 - - true - true - 1 - false - 39872d87:13e14015f61:21ef + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)SGM$(N):LambdaRBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)SGM$(N):LambdaRBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 57 false - $(pv_name) -$(pv_value) 110 + 57 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:21f0 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)SGM$(N):Lambda + + false + 0.0 + true true false - 1 - false + 0 - $(P)SGM$(N):Lambda - - - - false - 0 - - - false - - - - 0 - - 73 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 110 + 73 - - true - true - 1 - false - 39872d87:13e14015f61:21f1 + + + false false - 0.0 - - 15 - Text Update - false - - true - true - false - - 1 - true - false - $(P)SGM$(N):Lambda.DRVH + false - + - - - - Text Update - true - ###### - false - 0 - - - - 100 - 0 - - - 1 + true + 0 + 1 + true + + + + false + + + + 1 + 15 1 - - 44 - false + Text Update + 0 + true + $(P)SGM$(N):Lambda.DRVH + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 100 + false 110 + 44 - - true - true - 1 - false - 39872d87:13e14015f61:21f2 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)SGM$(N):Lambda.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)SGM$(N):Lambda.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 96 false - $(pv_name) -$(pv_value) 110 + 96 - - true - 1 - 39872d87:13e14015f61:21f4 + + false - - 10 - Label - - true - true - false - - true - false - - - - Label - true - SCAN CONTROL - - - - 100 - 0 - - 1 + 0 + 1 + true + + + + + + + 10 1 - - 130 - true - - 110 - - - false - true - 39872d87:13e14015f61:21f5 - - 20 - Action Button - false + Label + true true false - $(P)allstop.VAL - - - - - - - Action Button - true - Stop - false - - Default - - 35 - 0 - 0 - - - - false - 1 - - - - 140 + + false + SCAN CONTROL + + true + 1 + true + Label + 100 + false + 110 + 130 + + $(P)allstop.VAL 1 10 + - $(pv_name) -$(pv_value) - 174 - - + false + false + + + false - true - 39872d87:13e14015f61:21f6 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)SGM$(N):Lambda:scanParms.GO - - - - - - - Action Button - true - Go - false - - Default - - 20 - 0 - 0 - - - + + + Stop false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 35 + 174 140 + + $(P)SGM$(N):Lambda:scanParms.GO 1 10 + - $(pv_name) -$(pv_value) - 153 - - + false + false + + + false - true - 39872d87:13e14015f61:21f7 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)SGM$(N):Lambda:scanParms.GO + + true true false - $(P)SGM$(N):Lambda:scanParms.LOAD - - - - - - + + + Go + false + $(pv_name) +$(pv_value) + true Action Button - true - Ld - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 153 140 + + $(P)SGM$(N):Lambda:scanParms.LOAD 1 10 + - $(pv_name) -$(pv_value) - 132 - - + false + false + + + false - true - false - 39872d87:13e14015f61:21f8 - - 20 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + $(P)SGM$(N):Lambda:scanParms.LOAD + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + Ld + false + $(pv_name) +$(pv_value) + true + Action Button 20 - 6 - - - - 1 - - - + 132 140 + + scanParms.opi @@ -3656,404 +3034,421 @@ $(pv_value) SGM$(N):Lambda SGM$(N):Lambda - 0 + 1 Wavelength-scan parameters - $(pv_name) -$(pv_value) - 111 - - + false + false + + + false - true - 39872d87:13e14015f61:21f9 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + + + true true false - $(P)SGM$(N):LambdaTweak.A - - - - - - + + + + false + $(pv_name) +$(pv_value) + true Action Button - true - > - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - - 109 + 111 + 140 + + $(P)SGM$(N):LambdaTweak.A 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)SGM$(N):LambdaTweak.A + + + + true + true + false + + + + > + false $(pv_name) $(pv_value) + true + Action Button + 20 190 + 109 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:21fa - 0.0 + false Text Input + 0 + false + 0 + true + $(P)SGM$(N):LambdaTweak.C + + false + 0.0 + true true false - 1 - false + 0 - $(P)SGM$(N):LambdaTweak.C - - - - false - 0 - - - false - - - - 0 - - 109 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 130 + 109 - + + + + $(P)SGM$(N):LambdaTweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:21fb - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)SGM$(N):LambdaTweak.B + + true true false - $(P)SGM$(N):LambdaTweak.B - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 109 - - - $(P)SGM$(N):LambdaTweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 110 + 109 - - true - 1 - 39872d87:13e14015f61:21fd + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true SCAN CONTROL - - - - 100 - 0 - - 1 - - - - 1 - - 130 - true + true + 1 + true + Label + 100 + false 215 + 130 - + + + + $(P)allstop.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:21fe - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)allstop.VAL - - - - - - - Action Button - true + + Stop - false - - Default - - 35 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 35 + 279 140 + + - $(P)allstop.VAL + $(P)SGM$(N):phi:scanParms.GO 1 10 + - $(pv_name) -$(pv_value) - 279 - - + false + false + + + false - true - 39872d87:13e14015f61:21ff - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)SGM$(N):phi:scanParms.GO + + true true false - $(P)SGM$(N):phi:scanParms.GO - - - - - - - Action Button - true + + Go - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 258 140 + + - $(P)SGM$(N):phi:scanParms.GO + $(P)SGM$(N):phi:scanParms.LOAD 1 10 + - $(pv_name) -$(pv_value) - 258 - - + false + false + + + false - true - 39872d87:13e14015f61:2200 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)SGM$(N):phi:scanParms.LOAD + + true true false - $(P)SGM$(N):phi:scanParms.LOAD - - - - - - - Action Button - true + + Ld - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 140 - - - $(P)SGM$(N):phi:scanParms.LOAD - 1 - 10 - - - $(pv_name) $(pv_value) - 237 - - - false true - false - 39872d87:13e14015f61:2201 - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - + Action Button 20 - 6 - - - - 1 - - - + 237 140 + + scanParms.opi @@ -4062,791 +3457,810 @@ $(pv_value) SGM$(N):phi SGM$(N):phi - 0 + 1 Grating angle scan parameters + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + + false $(pv_name) $(pv_value) + true + Action Button + 20 216 + 140 - - true - true - 1 - false - 39872d87:13e14015f61:2202 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)SGM$(N):phiRBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)SGM$(N):phiRBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 57 false - $(pv_name) -$(pv_value) 215 + 57 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2203 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)SGM$(N):phi + + false + 0.0 + true true false - 1 - false + 0 - $(P)SGM$(N):phi - - - - false - 0 - - - false - - - - 0 - - 73 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 215 + 73 - - false - true - 39872d87:13e14015f61:2204 - - 20 - Action Button - false - - true - true - false - - $(P)SGM$(N):phiTweak.A + + + + $(P)SGM$(N):phiTweak.A + 1 + 10 + + + + + false + false - + - - - - Action Button + false + + + + 0 + 1 true - > - false - Default + Default - 20 - 0 - 0 + false + + + + 20 - + Action Button + 0 + $(P)SGM$(N):phiTweak.A + + + true + true + false + + + + > false - 1 - - - - 109 - - - $(P)SGM$(N):phiTweak.A - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 295 + 109 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2205 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)SGM$(N):phiTweak.C + + false + 0.0 + true true false - 1 - false + 0 - $(P)SGM$(N):phiTweak.C - - - - false - 0 - - - false - - - - 0 - - 109 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 235 + 109 - + + + + $(P)SGM$(N):phiTweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:2206 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)SGM$(N):phiTweak.B + + true true false - $(P)SGM$(N):phiTweak.B - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 109 - - - $(P)SGM$(N):phiTweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 215 + 109 - - true - true - 1 - false - 39872d87:13e14015f61:2207 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)SGM$(N):phi.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)SGM$(N):phi.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 96 false - $(pv_name) -$(pv_value) 215 + 96 - - true - true - 1 - false - 39872d87:13e14015f61:2208 + + + false false - 0.0 - - 15 - Text Update - false - - true - true - false - - 1 - true - false - $(P)SGM$(N):phi.DRVH + false - + - - - - Text Update - true - ###### - false - 0 - - - - 100 - 0 - - - 1 + true + 0 + 1 + true + + + + false + + + + 1 + 15 1 - - 44 - false + Text Update + 0 + true + $(P)SGM$(N):phi.DRVH + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 100 + false 215 + 44 - - true - 1 - 39872d87:13e14015f61:2209 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true Phi(deg) - - - - 100 - 0 - - 1 - - - - 1 - - 25 - true + true + 1 + true + Label + 100 + false 215 + 25 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:220a - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 595 - 0 - 0 - - 1 - 1 - true - - - - - 23 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 595 1 + 23 - + + + + $(P)SGM$(N):sync.PROC + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:220b - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)SGM$(N):sync.PROC + + true true false - $(P)SGM$(N):sync.PROC - - - - - - - Action Button - true + + Sync - false - - Default - - 40 - 0 - 0 - - - false - 1 - - - - 100 - - - $(P)SGM$(N):sync.PROC - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 40 335 + 100 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 100.0 - + + Default + + false + + + + 52 + true + - 39872d87:13e14015f61:220c - 0.0 - - 52 - true + 0 + 0 Polygon - false - 255 - - true - true - true - - false - - - - - - - Polygon - true - false - - Default - - 113 - 0 - 0 - - 1 - 0 - true - - - - - 177 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polygon + 113 392 + 177 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 100.0 + + Default + + false + + + + 53 + true - 39872d87:13e14015f61:220d - 0.0 - - 53 - true + 0 + 0 Polygon - false - 255 - - true - true - true - - false - - - - - - - Polygon - true - false - - Default - - 103 - 0 - 0 - - 1 - 0 - true - - - - - 178 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polygon + 103 488 + 178 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:220e - 0.0 - - 0 + + Default + + false + + + 8 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 25 + 457 + 258 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 25 - 0 - 0 - - - 1 - 1 - true + false - - 258 - $(pv_name) -$(pv_value) - 457 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:220f - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 6 - 0 - 0 - - 1 - 1 - true - - - - - 107 - $(pv_name) -$(pv_value) - 324 - - - false - true - false - 39872d87:13e14015f61:2210 - - 20 - Menu Button - false + 0.0 + true true - false + true - false - - - - - - - - Menu Button - true - false - - Default - - 45 - 6 - - - - 1 - - - - 245 + + $(pv_name) +$(pv_value) + true + true + Polyline + 6 + 324 + 107 + + yyTransform_full.opi @@ -4854,7 +4268,7 @@ $(pv_value) true SGM$(N):T1 - 0 + 1 T1 calcs (debug) @@ -4863,7 +4277,7 @@ $(pv_value) true SGM$(N):T2 - 0 + 1 T2 calcs (debug) @@ -4872,7 +4286,7 @@ $(pv_value) true SGM$(N):T3 - 0 + 1 T3 calcs (debug) @@ -4881,7 +4295,7 @@ $(pv_value) true SGM$(N):delta - 0 + 1 delta calcs (debug) @@ -4890,7 +4304,7 @@ $(pv_value) true SGM$(N):EnergyTweak - 0 + 1 Energy tweak calcs (debug) @@ -4899,7 +4313,7 @@ $(pv_value) true SGM$(N):LambdaTweak - 0 + 1 Lambda tweak calcs (debug) @@ -4908,7 +4322,7 @@ $(pv_value) true SGM$(N):phiTweak - 0 + 1 phi tweak calcs (debug) @@ -4917,7 +4331,7 @@ $(pv_value) true SGM$(N):limits - 0 + 1 limit calcs (debug) @@ -4926,7 +4340,7 @@ $(pv_value) true SGM$(N):init - 0 + 1 init @@ -4935,194 +4349,227 @@ $(pv_value) true SGM$(N):init1 - 0 + 1 init1 + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 45 3 + 245 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2212 - 0.0 - - 0 + + Default + + false + + + 24 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 47 - 0 - 0 - - 1 - 1 - true - - - - - 183 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 47 519 + 183 - - false - true + + true - 39872d87:13e14015f61:2213 - - 20 - Menu Button - false - - true - true - false - - false - $(P)SGM$(N):grating + false + false - + - - - - Menu Button - true - false - - Default - - 90 - 6 - - - - 1 + false - 190 - - $(pv_name) -$(pv_value) - 5 - - - false - true - false - 39872d87:13e14015f61:2214 - + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + $(P)SGM$(N):grating + + true true false + + false + $(pv_name) +$(pv_value) false - - - - - - - + true Menu Button - true - false - - Default - - 70 - 6 - - - - 1 - - - - 170 + 90 + 5 + 190 + + SGM_gratings.opi true - 0 + 1 display/modify grating table - $(pv_name) -$(pv_value) - 5 - - - true - 1 - 39872d87:13e14015f61:2215 - false - - 10 - Label - - true - true - false - - true - false + false + false - + - - - - Label + false + + + + 0 + 1 true - THAT GRATING IS - + Default - 100 + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + Gratings + false + $(pv_name) +$(pv_value) + true + Action Button + 70 + 5 + 170 + + + + false + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label @@ -5134,46 +4581,45 @@ $(pv_value) $(P)SGM$(N):exists - 1 - - - - 0 - - 212 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:2216 - false - - 10 - Label true true false - true + false + THAT GRATING IS + + true + 1 + true + Label + 100 + false + 5 + 212 + + + + false - - - - Label + + + + 0 + 1 true - NOT INSTALLED. - + - 100 - 0 + + + + 10 + 0 + Label @@ -5185,46 +4631,45 @@ $(pv_value) $(P)SGM$(N):exists - 1 - - - - 0 - - 222 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:2217 - false - - 10 - Label true true false - true + false + NOT INSTALLED. + + true + 1 + true + Label + 100 + false + 5 + 222 + + + + false - - - - Label + + + + 0 + 1 true - (NOTHING DONE) - + - 100 - 0 + + + + 10 + 1 + Label @@ -5236,62 +4681,32 @@ $(pv_value) $(P)SGM$(N):exists - 1 - - - - 1 - - 232 - true - - 5 - - - false - true - false - 39872d87:13e14015f61:2218 - - 20 - Menu Button - false true true false - false - - - - - - - - Menu Button - true - false - - Default - - 45 - 6 - - - - 1 - - - - 265 + + false + (NOTHING DONE) + + true + 1 + true + Label + 100 + false + 5 + 232 + + SGM_tiny.opi true - 1 + 1 SGM (less) @@ -5299,7 +4714,7 @@ $(pv_value) true - 0 + 1 Gratings @@ -5308,7 +4723,7 @@ $(pv_value) true $(M_rIn) - 0 + 1 r motor (entrance slit) @@ -5317,7 +4732,7 @@ $(pv_value) true $(M_x) - 0 + 1 x motor (grating drive) @@ -5326,7 +4741,7 @@ $(pv_value) true $(M_rOut) - 0 + 1 r' motor (exit slit) @@ -5335,45 +4750,75 @@ $(pv_value) true $(M_g) - 0 + 1 index motor (grating index) - $(pv_name) -$(pv_value) - 4 - - - true - 1 - 39872d87:13e14015f61:2219 - false - - 10 - Label + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + true true false - true - false + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 45 + 4 + 265 + + + + false - - - - Label + + + + 0 + 1 true - Soft limit - + - 60 - 0 - - + + + + 10 + 1 + Label + + true @@ -5383,46 +4828,45 @@ $(pv_value) $(P)$(M_rIn).LVIO - 1 - - - - 1 - - 35 - true - - 400 - - - true - 1 - 39872d87:13e14015f61:221a - false - - 10 - Label true true false - true + false + Soft limit + + true + 1 + true + Label + 60 + false + 400 + 35 + + + + false - - - - Label + + + + 0 + 1 true - Soft limit - + - 60 - 0 + + + + 10 + 1 + Label @@ -5434,46 +4878,45 @@ $(pv_value) $(P)$(M_rOut).LVIO - 1 - - - - 1 - - 35 - true - - 530 - - - true - 1 - 39872d87:13e14015f61:221b - false - - 10 - Label true true false - true + false + Soft limit + + true + 1 + true + Label + 60 + false + 530 + 35 + + + + false - - - - Label + + + + 0 + 1 true - Soft limit - + - 60 - 0 + + + + 10 + 1 + Label @@ -5485,46 +4928,45 @@ $(pv_value) $(P)$(M_x).LVIO - 1 - - - - 1 - - 35 - true - - 465 - - - true - 1 - 39872d87:13e14015f61:221c - false - - 10 - Label true true false - true + false + Soft limit + + true + 1 + true + Label + 60 + false + 465 + 35 + + + + false - - - - Label + + + + 0 + 1 true - Low limit - + - 60 - 0 + + + + 10 + 1 + Label @@ -5536,46 +4978,45 @@ $(pv_value) $(P)$(M_rIn).LLS - 1 - - - - 1 - - 35 - true - - 400 - - - true - 1 - 39872d87:13e14015f61:221d - false - - 10 - Label true true false - true + false + Low limit + + true + 1 + true + Label + 60 + false + 400 + 35 + + + + false - - - - Label + + + + 0 + 1 true - High limit - + - 60 - 0 + + + + 10 + 1 + Label @@ -5587,46 +5028,45 @@ $(pv_value) $(P)$(M_rIn).HLS - 1 - - - - 1 - - 35 - true - - 400 - - - true - 1 - 39872d87:13e14015f61:221e - false - - 10 - Label true true false - true + false + High limit + + true + 1 + true + Label + 60 + false + 400 + 35 + + + + false - - - - Label + + + + 0 + 1 true - High limit - + - 60 - 0 + + + + 10 + 1 + Label @@ -5638,46 +5078,45 @@ $(pv_value) $(P)$(M_x).HLS - 1 - - - - 1 - - 35 - true - - 465 - - - true - 1 - 39872d87:13e14015f61:221f - false - - 10 - Label true true false - true + false + High limit + + true + 1 + true + Label + 60 + false + 465 + 35 + + + + false - - - - Label + + + + 0 + 1 true - Low limit - + - 60 - 0 + + + + 10 + 1 + Label @@ -5689,46 +5128,45 @@ $(pv_value) $(P)$(M_x).LLS - 1 - - - - 1 - - 35 - true - - 465 - - - true - 1 - 39872d87:13e14015f61:2220 - false - - 10 - Label true true false - true + false + Low limit + + true + 1 + true + Label + 60 + false + 465 + 35 + + + + false - - - - Label + + + + 0 + 1 true - Low limit - + - 60 - 0 + + + + 10 + 1 + Label @@ -5740,46 +5178,45 @@ $(pv_value) $(P)$(M_rOut).LLS - 1 - - - - 1 - - 35 - true - - 530 - - - true - 1 - 39872d87:13e14015f61:2221 - false - - 10 - Label true true false - true + false + Low limit + + true + 1 + true + Label + 60 + false + 530 + 35 + + + + false - - - - Label + + + + 0 + 1 true - High limit - + - 60 - 0 + + + + 10 + 1 + Label @@ -5791,46 +5228,45 @@ $(pv_value) $(P)$(M_rOut).HLS - 1 - - - - 1 - - 35 - true - - 530 - - - true - 1 - 39872d87:13e14015f61:2222 - false - - 10 - Label true true false - true + false + High limit + + true + 1 + true + Label + 60 + false + 530 + 35 + + + + false - - - - Label + + + + 0 + 1 true - AT LIMIT - + - 56 - 0 + + + + 10 + 1 + Label @@ -5842,1512 +5278,1993 @@ $(pv_value) $(P)SGM$(N):T2.M - 1 - - - - 1 - - 35 - true + + true + true + false + + + false + AT LIMIT + true + 1 + true + Label + 56 + false 531 + 35 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + true + + + + 0 + 1 true - - + - 56 - 3 + false + + + + 1 + 10 + 1 + Text Update + 0 + true + $(P)$(M_x).RRBV - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2228 0.0 - Text Input + true true false - 1 - false - 0 - $(P)$(M_x).VAL - - - - false - 0 - - - false - - - - 0 - - 87 + + false + ###### $(pv_name) $(pv_value) - 467 - - - true - true + false 1 - false - 39872d87:13e14015f61:2229 - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(M_x).RBV - - - - - - + true Text Update - true - ###### - false - 0 - - - 56 - 0 - - - 1 - - - - 1 - - 74 false - $(pv_name) -$(pv_value) 467 + 122 - - true - 1 - 39872d87:13e14015f61:222b + + + false false - - 10 - Label - - true - true - false - - true - false + false - + - - - - Label - true - $(P)$(M_x) - - - - 60 - 0 - - 1 + false - 1 - - 62 - true - - 465 - - - true - true - 1 - false - 39872d87:13e14015f61:222c - false - 0.0 - - 14 - Text Update + 3 + 1 + + true + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(M_x).RVAL + + false + 0.0 + true true false - 1 - true + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - $(P)$(M_rOut).RBV + true + Text Input + 56 + 467 + 130 + + + + false - + - - - - Text Update - true - ###### - false - 0 - - - - 56 - 0 - - - 1 - 1 - - 74 - false - $(pv_name) -$(pv_value) - 531 - - - true - 1 - 39872d87:13e14015f61:222d - false - + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true - $(P)$(M_rOut) - - - - 60 - 0 - - 1 - - - - 1 - - 62 - true + steps - 530 - - - false - true + true 1 - false + true + Label + 65 + false + 462 + 148 + + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 56 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:222e - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(M_x).VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(M_rOut).VAL - - - + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 56 + 467 + 87 + + + + false + false false - 0 - - - false + + + + true - 0 - - 87 - $(pv_name) -$(pv_value) - 531 - - - true - true - 1 - false - 39872d87:13e14015f61:2230 - false - 0.0 - + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)$(M_x).RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(M_rIn).RBV + 1 + true + Text Update + 56 + false + 467 + 74 + + + + false - + - - - - Text Update + + + + 0 + 1 true - ###### - false - 0 - + - 56 - 0 + + + + 10 + 1 + Label - - 1 + + true + true + false + + + false + $(P)$(M_x) + + true + 1 + true + Label + 60 + false + 465 + 62 + + + + false + false + false + + + + true + 0 + 1 + true + + + + false + + + + 1 + 14 1 - - 74 - false + Text Update + 0 + true + $(P)$(M_rOut).RBV + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) - 402 - - - true + false 1 - 39872d87:13e14015f61:2231 + true + Text Update + 56 + false + 531 + 74 + + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - + $(P)$(M_rOut) + + true + 1 + true Label - true - $(P)$(M_rIn) - - - 60 - 0 - - 1 - - - - 1 - + false + 530 62 - true - - 400 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 56 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2232 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(M_rOut).VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(M_rIn).VAL - - - + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 56 + 531 + 87 + + + + false + false false - 0 - - - false + + + + true - 0 - - 87 - $(pv_name) -$(pv_value) - 402 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2233 + 0 + 1 + true + + + + false + + + + 1 + 14 + 1 + Text Update + 0 + true + $(P)$(M_rIn).RBV + 0.0 + + + true + true + false + - 0 - 108 - true - Polyline + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 56 + false + 402 + 74 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + true + true + false + + + false + $(P)$(M_rIn) + + true + 1 + true + Label + 60 + false + 400 + 62 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + false - 255 + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(M_rIn).VAL + + false + 0.0 + true true - true + false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 56 + 402 + 87 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 108 + true + 0 + 1 + Polyline - true + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 1 + 527 + 50 + + + + false + 255 + true + 20 + 0 + false + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false - + + 108 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true Polyline - true + 1 + 462 + 50 + + + + false + false false + + + + true + + + + 0 + 1 + true - Default + - 1 - 0 - 0 - + false + + + + 1 + 10 + 1 + Text Update + 0 + true + $(P)SGM$(N):T2.H - 1 - 1 - true + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 465 + 110 + + + + false + false + false + + + + true - - 50 + 0 + 1 + true + + + + false + + + + 1 + 10 + 1 + Text Update + 0 + true + $(P)SGM$(N):T2.G + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) - 527 + false + 1 + true + Text Update + 60 + false + 530 + 110 - + + + true + false + false + + + false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2234 - 0.0 - - 0 - 108 - true - Polyline + + + + 6 + 1 + true + + Default + false - 255 + + + + 16 + + Menu Button + $(P)SGM$(N):rTrack + + true true - true + false - - - - + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 60 + 530 + 120 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + true + true + false + + + false + (m) + true - + 1 + true + Label + 30 + false + 430 + 52 + + + + false - + - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true - - 50 - $(pv_name) -$(pv_value) - 462 - - - true - true - 1 - false - 39872d87:13e14015f61:2236 - false - 0.0 - + 0 + 1 + true + + + + + + 10 - Text Update - false + 1 + Label + true true false - 1 - true - false - $(P)SGM$(N):T2.H + + false + (mm) + + true + 1 + true + Label + 30 + false + 495 + 52 + + + + false - + - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 - 1 - - 110 - false - $(pv_name) -$(pv_value) - 465 - - - true - true - 1 - false - 39872d87:13e14015f61:2237 - false - 0.0 - + 0 + 1 + true + + + + + + 10 - Text Update - false + 1 + Label + true true false - 1 - true - false - $(P)SGM$(N):T2.G + + false + (m) + + true + 1 + true + Label + 30 + false + 560 + 52 + + + + false - + - - - - Text Update + + + + 0 + 1 true - ###### - false - 0 - + - 60 - 0 + + + + 20 + 2 + Label - - 1 - - - - 1 - - 110 - false - $(pv_name) -$(pv_value) - 530 - - - false - true - true - 39872d87:13e14015f61:2238 - - 16 - Menu Button - false true true false - false - $(P)SGM$(N):rTrack + + false + r + + true + 1 + true + Label + 30 + false + 400 + 45 + + + + false - + - - - - Menu Button - true - false - - Default - - 60 - 6 - - - - 1 - 120 - - $(pv_name) -$(pv_value) - 530 - - - true - 1 - 39872d87:13e14015f61:2239 - false - - 10 + 0 + 1 + true + + + + + + + 20 + 2 Label + true true false - true + false + x + + true + 1 + true + Label + 30 + false + 465 + 45 + + + + false - - - - Label - true - (m) - - - - 30 - 0 - - 1 - 1 - - 52 - true - - 430 - - - true - 1 - 39872d87:13e14015f61:223a - false - - 10 + 0 + 1 + true + + + + + + + 20 + 2 Label + true true false - true + false + r' + + true + 1 + true + Label + 30 + false + 530 + 45 + + + + false - - - - Label - true - (mm) - - - - 30 - 0 - - 1 - 1 - - 52 - true - - 495 - - - true - 1 - 39872d87:13e14015f61:223b - false - - 10 + 0 + 1 + true + + + + + + + 8 + 0 Label + true true false - true + false + V1.8 + + true + 1 + true + Label + 20 + false + 0 + 0 + + + + false - - - - Label - true - (m) - - - - 30 - 0 - - 1 - 1 - - 52 - true - - 560 - - - true - 1 - 39872d87:13e14015f61:223c - false - - 20 + 0 + 1 + true + + + + + + + 18 + 0 Label + true true false - true + false + Description: + + true + 1 + true + Label + 95 + false + 100 + 169 + + + + false - - - - Label - true - r - - - - 30 - 0 - - 1 - 1 - - 45 - true - - 400 - - - true - 1 - 39872d87:13e14015f61:223d - false - - 20 + 0 + 1 + true + + + + + + + 14 + 2 Label + true true false - true + false + tangent-arm length: + + true + 1 + true + Label + 150 + false + 100 + 249 + + + + false - - - - Label - true - x - - - - 30 - 0 - - 1 - 1 - - 45 - true - - 465 - - - true - 1 - 39872d87:13e14015f61:223e - false - - 20 + 0 + 1 + true + + + + + + + 14 + 2 Label + true true false - true + false + included angle: + + true + 1 + true + Label + 150 + false + 100 + 269 + + + + false - - - - Label + + + + 0 + 1 true - r' - + - 30 - 0 + + + + 14 + 2 + Label - 1 - - - - 1 - - 45 - true + + true + true + false + + + false + radius of curvature: - 530 - - - true + true 1 - 39872d87:13e14015f61:223f + true + Label + 150 + false + 100 + 229 + + + false - - 8 + + + + + + + 0 + 1 + true + + + + + + + 14 + 2 Label + true true false - true + false + diffraction order: + + true + 1 + true + Label + 150 + false + 100 + 189 + + + + false - - - - Label - true - V1.8 - - - - 20 - 0 - - 1 - 0 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:2240 - false - - 18 + 0 + 1 + true + + + + + + + 14 + 2 Label + true true false - true + false + grating line density: + + true + 1 + true + Label + 150 + false + 100 + 209 + + + + false + false + false - + - - - - Label - true - Description: - - - - 95 - 0 - - 1 + false + 3 + 1 + + true + + + + false + + + + 1 + 16 0 - - 169 - true - - 100 - - - true - 1 - 39872d87:13e14015f61:2241 - false - - 14 - Label + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):len + + false + 0.0 + true true false - true - false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 255 + 249 + + + + false + false + false - + - - - - Label + false + + + + 3 + 1 + true - tangent-arm length: - + - 150 - 0 + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):2Theta + + false + 0.0 - 1 - - - - 1 - - 249 - true - - 100 - - - true - 1 - 39872d87:13e14015f61:2242 - false - - 14 - Label true true false - true - false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 255 + 269 + + + + false + false + false - + - - - - Label + true + + + + 0 + 1 true - included angle: - + - 150 - 0 + false + + + + 1 + 14 + 0 + Text Update + 0 + true + $(P)SGM$(N):R + + 0.0 - 1 + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 255 + 229 + + + + false + false + false + + + + true - 1 - - 269 - true - - 100 - - - true - 1 - 39872d87:13e14015f61:2243 - false - + 0 + 1 + true + + + + false + + + + 1 14 - Label + 0 + Text Update + 0 + true + $(P)SGM$(N):gDensity + + 0.0 + true true false - true - false + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 255 + 209 + + + + false + false + false - + - - - - Label - true - radius of curvature: - - - - 150 - 0 - - 1 + true - 1 - - 229 - true - - 100 - - - true - 1 - 39872d87:13e14015f61:2244 - false - + 0 + 1 + true + + + + false + + + + 1 14 - Label + 0 + Text Update + 0 + true + $(P)SGM$(N):2Theta.EGU + + 0.0 + true true false - true - false + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 65 + false + 320 + 269 + + + + false + false + false - + - - - - Label - true - diffraction order: - - - - 150 - 0 - - 1 + true - 1 - - 189 - true - - 100 - - - true - 1 - 39872d87:13e14015f61:2245 - false - + 0 + 1 + true + + + + false + + + + 1 14 - Label + 0 + Text Update + 0 + true + $(P)SGM$(N):len.EGU + + 0.0 + true true false - true - false + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 65 + false + 320 + 249 + + + + false + false + false - + - - - - Label - true - grating line density: - - - - 150 - 0 - - 1 + true - 1 - - 209 - true - - 100 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input + 0 + 1 true - - + - 60 - 3 + false + + + + 1 + 14 + 0 + Text Update + 0 + true + $(P)SGM$(N):gDensity.EGU - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2246 0.0 - Text Input + true true false - 1 - false - 0 - $(P)SGM$(N):len - - - - false - 0 - - - false - - - - 0 - - 249 + + false + ###### $(pv_name) $(pv_value) - 255 - - - false - true + false 1 - false + true + Text Update + 65 + false + 320 + 209 + + + + false false - - 16 - false - true + false - + - Text Input + true + + + + 0 + 1 true - - + - 60 - 3 + false + + + + 1 + 14 + 0 + Text Update + 0 + true + $(P)SGM$(N):R.EGU - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2247 0.0 - Text Input + true true false - 1 + + false + ###### + $(pv_name) +$(pv_value) false - 0 - $(P)SGM$(N):2Theta - - - + 1 + true + Text Update + 65 + false + 320 + 229 + + + + false + false false - 0 - - - false + + + + true - 0 - - 269 - $(pv_name) -$(pv_value) - 255 - - - true - true - 1 - false - 39872d87:13e14015f61:2248 - false - 0.0 - + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)SGM$(N):m.EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)SGM$(N):R - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 0 - - 229 false - $(pv_name) -$(pv_value) - 255 + 325 + 189 - - true - true - 1 - false - 39872d87:13e14015f61:2249 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)SGM$(N):m + + 0.0 + true true false - 1 - true - false - $(P)SGM$(N):gDensity - - - - - - - Text Update - true + + false ###### - false - 0 - - - - 60 - 0 - - - 1 - - - - 0 - - 209 - false $(pv_name) $(pv_value) + false + 1 + true + Text Update + 65 + false 255 + 189 - - true - true - 1 - false - 39872d87:13e14015f61:2253 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 18 + 0 Text Update - false + 0 + true + $(P)SGM$(N):stripeDesc + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)SGM$(N):stripeDesc - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 190 - 0 - - - 1 - - - - 0 - - 169 false - $(pv_name) -$(pv_value) 195 + 169 - \ No newline at end of file + diff --git a/opticsApp/op/opi/autoconvert/SGM_gratings.opi b/opticsApp/op/opi/autoconvert/SGM_gratings.opi new file mode 100644 index 0000000..02617d2 --- /dev/null +++ b/opticsApp/op/opi/autoconvert/SGM_gratings.opi @@ -0,0 +1,12103 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 395 + + true + + SGM_gratings + + + true + true + false + true + false + Display + 600 + 173 + 166 + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 20 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)SGM$(N):sel_exists_1.DO8 + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 25 + 0 + 178 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 20 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)SGM$(N):sel_exists_1.DO7 + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 25 + 0 + 158 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 20 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)SGM$(N):sel_exists_1.DO9 + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 25 + 0 + 198 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 20 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)SGM$(N):sel_exists_1.DOA + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 25 + 0 + 218 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 20 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)SGM$(N):sel_exists_1.DO3 + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 25 + 0 + 78 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 20 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)SGM$(N):sel_exists_1.DO2 + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 25 + 0 + 58 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 20 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)SGM$(N):sel_exists_1.DO1 + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 25 + 0 + 38 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 20 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)SGM$(N):sel_exists_1.DO4 + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 25 + 0 + 98 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 20 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)SGM$(N):sel_exists_1.DO5 + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 25 + 0 + 118 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 20 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)SGM$(N):sel_exists_1.DO6 + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 25 + 0 + 138 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 20 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)SGM$(N):sel_exists_2.DO3 + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 25 + 0 + 278 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 20 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)SGM$(N):sel_exists_2.DO2 + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 25 + 0 + 258 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 20 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)SGM$(N):sel_exists_2.DO1 + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 25 + 0 + 238 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 20 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)SGM$(N):sel_exists_2.DO4 + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 25 + 0 + 298 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 20 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)SGM$(N):sel_exists_2.DO5 + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 25 + 0 + 318 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 20 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)SGM$(N):sel_exists_2.DO6 + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 25 + 0 + 338 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + USE + + true + 1 + true + Label + 25 + false + 0 + 20 + + + + + $(P)SGM$(N):grating + 6 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)SGM$(N):grating + + + + true + true + false + + + + 7 + true + $(pv_name) +$(pv_value) + true + Action Button + 22 + 2 + 160 + + + + + $(P)SGM$(N):grating + 7 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)SGM$(N):grating + + + + true + true + false + + + + 8 + true + $(pv_name) +$(pv_value) + true + Action Button + 22 + 2 + 180 + + + + + $(P)SGM$(N):grating + 8 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)SGM$(N):grating + + + + true + true + false + + + + 9 + true + $(pv_name) +$(pv_value) + true + Action Button + 22 + 2 + 200 + + + + + $(P)SGM$(N):grating + 9 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)SGM$(N):grating + + + + true + true + false + + + + 10 + true + $(pv_name) +$(pv_value) + true + Action Button + 22 + 2 + 220 + + + + + $(P)SGM$(N):grating + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)SGM$(N):grating + + + + true + true + false + + + + 1 + true + $(pv_name) +$(pv_value) + true + Action Button + 22 + 2 + 40 + + + + + $(P)SGM$(N):grating + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)SGM$(N):grating + + + + true + true + false + + + + 2 + true + $(pv_name) +$(pv_value) + true + Action Button + 22 + 2 + 60 + + + + + $(P)SGM$(N):grating + 2 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)SGM$(N):grating + + + + true + true + false + + + + 3 + true + $(pv_name) +$(pv_value) + true + Action Button + 22 + 2 + 80 + + + + + $(P)SGM$(N):grating + 3 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)SGM$(N):grating + + + + true + true + false + + + + 4 + true + $(pv_name) +$(pv_value) + true + Action Button + 22 + 2 + 100 + + + + + $(P)SGM$(N):grating + 4 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)SGM$(N):grating + + + + true + true + false + + + + 5 + true + $(pv_name) +$(pv_value) + true + Action Button + 22 + 2 + 120 + + + + + $(P)SGM$(N):grating + 5 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)SGM$(N):grating + + + + true + true + false + + + + 6 + true + $(pv_name) +$(pv_value) + true + Action Button + 22 + 2 + 140 + + + + + $(P)SGM$(N):grating + 10 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)SGM$(N):grating + + + + true + true + false + + + + 11 + true + $(pv_name) +$(pv_value) + true + Action Button + 22 + 2 + 240 + + + + + $(P)SGM$(N):grating + 11 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)SGM$(N):grating + + + + true + true + false + + + + 12 + true + $(pv_name) +$(pv_value) + true + Action Button + 22 + 2 + 260 + + + + + $(P)SGM$(N):grating + 12 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)SGM$(N):grating + + + + true + true + false + + + + 13 + true + $(pv_name) +$(pv_value) + true + Action Button + 22 + 2 + 280 + + + + + $(P)SGM$(N):grating + 13 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)SGM$(N):grating + + + + true + true + false + + + + 14 + true + $(pv_name) +$(pv_value) + true + Action Button + 22 + 2 + 300 + + + + + $(P)SGM$(N):grating + 14 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)SGM$(N):grating + + + + true + true + false + + + + 15 + true + $(pv_name) +$(pv_value) + true + Action Button + 22 + 2 + 320 + + + + + $(P)SGM$(N):grating + 15 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)SGM$(N):grating + + + + true + true + false + + + + 16 + true + $(pv_name) +$(pv_value) + true + Action Button + 22 + 2 + 340 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_exists_1.DO1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 555 + 40 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_exists_1.DO2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 555 + 60 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_exists_1.DO3 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 555 + 80 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_exists_1.DO4 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 555 + 100 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_exists_1.DO5 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 555 + 120 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_exists_1.DO6 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 555 + 140 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_exists_1.DO7 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 555 + 160 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_exists_1.DO8 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 555 + 180 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_exists_1.DO9 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 555 + 200 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_exists_1.DOA + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 555 + 220 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_exists_2.DO1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 555 + 240 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_exists_2.DO2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 555 + 260 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_exists_2.DO3 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 555 + 280 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_exists_2.DO4 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 555 + 300 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_exists_2.DO5 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 555 + 320 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_exists_2.DO6 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 555 + 340 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_desc_1.STR1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 30 + 40 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_desc_1.STR2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 30 + 60 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_desc_1.STR3 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 30 + 80 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_desc_1.STR4 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 30 + 100 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_desc_1.STR5 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 30 + 120 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_desc_1.STR6 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 30 + 140 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_desc_1.STR7 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 30 + 160 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_desc_1.STR8 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 30 + 180 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_desc_1.STR9 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 30 + 200 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_desc_1.STRA + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 30 + 220 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_desc_2.STR1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 30 + 240 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_desc_2.STR2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 30 + 260 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_desc_2.STR3 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 30 + 280 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_desc_2.STR4 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 30 + 300 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_desc_2.STR5 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 30 + 320 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_desc_2.STR6 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 30 + 340 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_m_1.DO7 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 135 + 160 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_den_1.DO7 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 180 + 160 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_R_1.DO7 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 245 + 160 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Wlow_1.DO7 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 310 + 160 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Whigh_1.DO7 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 375 + 160 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_loc_1.DO7 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 440 + 160 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_m_1.DO8 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 135 + 180 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_den_1.DO8 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 180 + 180 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_R_1.DO8 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 245 + 180 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Wlow_1.DO8 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 310 + 180 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Whigh_1.DO8 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 375 + 180 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_loc_1.DO8 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 440 + 180 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_m_1.DO9 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 135 + 200 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_den_1.DO9 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 180 + 200 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_R_1.DO9 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 245 + 200 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Wlow_1.DO9 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 310 + 200 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Whigh_1.DO9 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 375 + 200 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_loc_1.DO9 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 440 + 200 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_m_1.DOA + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 135 + 220 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_den_1.DOA + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 180 + 220 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_R_1.DOA + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 245 + 220 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Wlow_1.DOA + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 310 + 220 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Whigh_1.DOA + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 375 + 220 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_loc_1.DOA + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 440 + 220 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_m_1.DO1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 135 + 40 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_den_1.DO1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 180 + 40 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_R_1.DO1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 245 + 40 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Wlow_1.DO1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 310 + 40 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Whigh_1.DO1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 375 + 40 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_loc_1.DO1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 440 + 40 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_m_1.DO2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 135 + 60 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_den_1.DO2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 180 + 60 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_R_1.DO2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 245 + 60 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Wlow_1.DO2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 310 + 60 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Whigh_1.DO2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 375 + 60 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_loc_1.DO2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 440 + 60 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_m_1.DO3 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 135 + 80 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_den_1.DO3 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 180 + 80 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_R_1.DO3 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 245 + 80 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Wlow_1.DO3 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 310 + 80 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Whigh_1.DO3 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 375 + 80 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_loc_1.DO3 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 440 + 80 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_m_1.DO4 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 135 + 100 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_den_1.DO4 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 180 + 100 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_R_1.DO4 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 245 + 100 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Wlow_1.DO4 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 310 + 100 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Whigh_1.DO4 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 375 + 100 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_loc_1.DO4 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 440 + 100 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_m_1.DO5 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 135 + 120 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_den_1.DO5 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 180 + 120 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_R_1.DO5 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 245 + 120 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Wlow_1.DO5 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 310 + 120 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Whigh_1.DO5 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 375 + 120 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_loc_1.DO6 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 440 + 120 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_m_1.DO6 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 135 + 140 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_den_1.DO6 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 180 + 140 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_R_1.DO6 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 245 + 140 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Wlow_1.DO6 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 310 + 140 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Whigh_1.DO6 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 375 + 140 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_loc_1.DO6 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 440 + 140 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_m_2.DO1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 135 + 240 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_den_2.DO1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 180 + 240 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_R_2.DO1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 245 + 240 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Wlow_2.DO1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 310 + 240 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Whigh_2.DO1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 375 + 240 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_loc_2.DO1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 440 + 240 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_m_2.DO2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 135 + 260 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_den_2.DO2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 180 + 260 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_R_2.DO2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 245 + 260 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Wlow_2.DO2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 310 + 260 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Whigh_2.DO2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 375 + 260 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_loc_2.DO2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 440 + 260 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_m_2.DO3 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 135 + 280 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_den_2.DO3 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 180 + 280 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_R_2.DO3 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 245 + 280 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Wlow_2.DO3 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 310 + 280 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Whigh_2.DO3 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 375 + 280 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_loc_2.DO3 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 440 + 280 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_m_2.DO4 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 135 + 300 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_den_2.DO4 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 180 + 300 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_R_2.DO4 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 245 + 300 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Wlow_2.DO4 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 310 + 300 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Whigh_2.DO4 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 375 + 300 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_loc_2.DO4 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 440 + 300 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_m_2.DO5 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 135 + 320 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_den_2.DO5 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 180 + 320 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_R_2.DO5 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 245 + 320 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Wlow_2.DO5 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 310 + 320 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Whigh_2.DO5 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 375 + 320 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_loc_2.DO6 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 440 + 320 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_m_2.DO6 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 135 + 340 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_den_2.DO6 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 180 + 340 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_R_2.DO6 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 245 + 340 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Wlow_2.DO6 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 310 + 340 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_Whigh_2.DO6 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 375 + 340 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_loc_2.DO6 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 440 + 340 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_xOff_1.DO1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 505 + 40 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_xOff_1.DO2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 505 + 60 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_xOff_1.DO3 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 505 + 80 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_xOff_1.DO4 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 505 + 100 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_xOff_1.DO5 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 505 + 120 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_xOff_1.DO6 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 505 + 140 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_xOff_1.DO7 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 505 + 160 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_xOff_1.DO8 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 505 + 180 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_xOff_1.DO9 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 505 + 200 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_xOff_1.DOA + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 505 + 220 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_xOff_2.DO1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 505 + 240 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_xOff_2.DO2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 505 + 260 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_xOff_2.DO3 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 505 + 280 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_xOff_2.DO4 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 505 + 300 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_xOff_2.DO5 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 505 + 320 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):sel_xOff_2.DO6 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 505 + 340 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)SGM$(N):StripeWidth + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 440 + 370 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 2 + Label + + + true + true + false + + + false + Stripe width: + + true + 1 + true + Label + 90 + false + 345 + 370 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + grating + + true + 1 + true + Label + 100 + false + 30 + 0 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + diffract + + true + 1 + true + Label + 40 + false + 135 + 0 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + line + + true + 1 + true + Label + 60 + false + 180 + 0 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + grating + + true + 1 + true + Label + 60 + false + 245 + 0 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Wavelen + + true + 1 + true + Label + 60 + false + 310 + 0 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Wavelen + + true + 1 + true + Label + 60 + false + 375 + 0 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + grating + + true + 1 + true + Label + 60 + false + 440 + 0 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + X-motor + + true + 1 + true + Label + 40 + false + 505 + 0 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + OK to + + true + 1 + true + Label + 40 + false + 555 + 0 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + description + + true + 1 + true + Label + 100 + false + 30 + 15 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + order + + true + 1 + true + Label + 40 + false + 135 + 15 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + density + + true + 1 + true + Label + 60 + false + 180 + 15 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + radius + + true + 1 + true + Label + 60 + false + 245 + 15 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Lo Lim + + true + 1 + true + Label + 60 + false + 310 + 15 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Hi Lim + + true + 1 + true + Label + 60 + false + 375 + 15 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + index + + true + 1 + true + Label + 60 + false + 440 + 15 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + offset + + true + 1 + true + Label + 40 + false + 505 + 15 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + use? + + true + 1 + true + Label + 40 + false + 555 + 15 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + true + true + false + + + false + + + true + 1 + true + Label + 100 + false + 30 + 30 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + true + true + false + + + false + + + true + 1 + true + Label + 40 + false + 135 + 30 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + true + true + false + + + false + [lines/mm] + + true + 1 + true + Label + 60 + false + 180 + 30 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + true + true + false + + + false + [m] + + true + 1 + true + Label + 60 + false + 245 + 30 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + true + true + false + + + false + [Angstroms] + + true + 1 + true + Label + 60 + false + 310 + 30 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + true + true + false + + + false + [Angstroms] + + true + 1 + true + Label + 60 + false + 375 + 30 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + true + true + false + + + false + (stripe #) + + true + 1 + true + Label + 60 + false + 440 + 30 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + true + true + false + + + false + [mm] + + true + 1 + true + Label + 40 + false + 505 + 30 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + true + true + false + + + false + 1==YES + + true + 1 + true + Label + 40 + false + 555 + 30 + + diff --git a/opticsApp/op/opi/SGM_tiny.opi b/opticsApp/op/opi/autoconvert/SGM_tiny.opi similarity index 81% rename from opticsApp/op/opi/SGM_tiny.opi rename to opticsApp/op/opi/autoconvert/SGM_tiny.opi index 843ebab..423daf2 100644 --- a/opticsApp/op/opi/SGM_tiny.opi +++ b/opticsApp/op/opi/autoconvert/SGM_tiny.opi @@ -1,435 +1,284 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 173 true - 39872d87:13e14015f61:248a - 3.1.2.20120830 + SGM_tiny + + true + true + false true - 173 - SGM_tiny false - false - - - - - - Display - true 320 - - true - 5 - - false - -1 - -1 - - - 76 118 - + 76 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 32 + true - 39872d87:13e14015f61:2498 - - - - - 32 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 100 + 5 + 107 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 100 - 0 - 0 - - - 1 - 0 - true - - - - - 107 - $(pv_name) -$(pv_value) - 5 + false + + + false - - - false - true - 100.0 + 32 + true - 39872d87:13e14015f61:24a3 - - - - - 32 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 100 + 110 + 107 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 100 - 0 - 0 - - - 1 - 0 - true - - - - - 107 - $(pv_name) -$(pv_value) - 110 + false + + + false - - - false - true - 100.0 + 32 + true - 39872d87:13e14015f61:24ac - - - - - 32 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 100 + 215 + 107 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 100 + false + + + + false + 25 + true + + + 0 - 0 - - - 1 0 - true - - - - - 107 - $(pv_name) -$(pv_value) - 215 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:24be - - - - - 25 - true Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle - true - - - - false - - Default - 320 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) 0 - false + 0 - - - true - - true - 39872d87:13e14015f61:2495 - - 20 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 75 - 0 - - false - 1 - - - + - 144 - - 80 - - false - true - 39872d87:13e14015f61:2496 - - 20 - Action Button - false - - true - true - false - - $(P)SGM$(N):move.PROC - - - - - - - Action Button - true - Move - false - - Default - - 35 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)SGM$(N):move.PROC - 1 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:2497 - - 20 - Action Button - false - - true - true - false - - $(P)SGM$(N):sync.PROC - - - - - - - Action Button - true - Sync - false - - Default - - 35 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)SGM$(N):sync.PROC - 1 - 10 - - - - $(pv_name) -$(pv_value) - 40 - - - - true - 1 - 39872d87:13e14015f61:248b false - - 10 - Label - - true - true - false - - true - false - - - - Label + + + + 0 + 1 true - Motor limit - + - 75 - 0 + + + + 10 + 1 + Label @@ -441,46 +290,45 @@ $(pv_value) $(P)$(M_rOut).LLS - 1 - - - - 1 - - 164 - true - - 80 - - - true - 1 - 39872d87:13e14015f61:248c - false - - 10 - Label true true false - true + false + Motor limit + + true + 1 + true + Label + 75 + false + 80 + 164 + + + + false - - - - Label + + + + 0 + 1 true - Motor limit - + - 75 - 0 + + + + 10 + 1 + Label @@ -492,46 +340,45 @@ $(pv_value) $(P)$(M_rOut).HLS - 1 - - - - 1 - - 164 - true - - 80 - - - true - 1 - 39872d87:13e14015f61:248d - false - - 10 - Label true true false - true + false + Motor limit + + true + 1 + true + Label + 75 + false + 80 + 164 + + + + false - - - - Label + + + + 0 + 1 true - Motor limit - + - 75 - 0 + + + + 10 + 1 + Label @@ -543,46 +390,45 @@ $(pv_value) $(P)$(M_rOut).LVIO - 1 - - - - 1 - - 164 - true - - 80 - - - true - 1 - 39872d87:13e14015f61:248e - false - - 10 - Label true true false - true + false + Motor limit + + true + 1 + true + Label + 75 + false + 80 + 164 + + + + false - - - - Label + + + + 0 + 1 true - Motor limit - + - 75 - 0 + + + + 10 + 1 + Label @@ -594,46 +440,45 @@ $(pv_value) $(P)$(M_rIn).LVIO - 1 - - - - 1 - - 164 - true - - 80 - - - true - 1 - 39872d87:13e14015f61:248f - false - - 10 - Label true true false - true + false + Motor limit + + true + 1 + true + Label + 75 + false + 80 + 164 + + + + false - - - - Label + + + + 0 + 1 true - Motor limit - + - 75 - 0 + + + + 10 + 1 + Label @@ -645,46 +490,45 @@ $(pv_value) $(P)$(M_x).LVIO - 1 - - - - 1 - - 164 - true - - 80 - - - true - 1 - 39872d87:13e14015f61:2490 - false - - 10 - Label true true false - true + false + Motor limit + + true + 1 + true + Label + 75 + false + 80 + 164 + + + + false - - - - Label + + + + 0 + 1 true - Motor limit - + - 75 - 0 + + + + 10 + 1 + Label @@ -696,46 +540,45 @@ $(pv_value) $(P)$(M_x).HLS - 1 - - - - 1 - - 164 - true - - 80 - - - true - 1 - 39872d87:13e14015f61:2491 - false - - 10 - Label true true false - true + false + Motor limit + + true + 1 + true + Label + 75 + false + 80 + 164 + + + + false - - - - Label + + + + 0 + 1 true - Motor limit - + - 75 - 0 + + + + 10 + 1 + Label @@ -747,46 +590,45 @@ $(pv_value) $(P)$(M_rIn).HLS - 1 - - - - 1 - - 164 - true - - 80 - - - true - 1 - 39872d87:13e14015f61:2492 - false - - 10 - Label true true false - true + false + Motor limit + + true + 1 + true + Label + 75 + false + 80 + 164 + + + + false - - - - Label + + + + 0 + 1 true - Motor limit - + - 75 - 0 + + + + 10 + 1 + Label @@ -798,46 +640,45 @@ $(pv_value) $(P)$(M_rIn).LLS - 1 - - - - 1 - - 164 - true - - 80 - - - true - 1 - 39872d87:13e14015f61:2493 - false - - 10 - Label true true false - true + false + Motor limit + + true + 1 + true + Label + 75 + false + 80 + 164 + + + + false - - - - Label + + + + 0 + 1 true - Motor limit - + - 75 - 0 + + + + 10 + 1 + Label @@ -849,292 +690,374 @@ $(pv_value) $(P)$(M_x).LLS - 1 - - - - 1 - - 164 - true + + true + true + false + + + false + Motor limit - 80 - - - false + true + 1 true + Label + 75 + false + 80 + 164 + + + true - 39872d87:13e14015f61:2494 - + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + 16 + Menu Button - false + $(P)SGM$(N):rTrack + + true true false + + false + $(pv_name) +$(pv_value) false - $(P)SGM$(N):rTrack + true + Menu Button + 55 + 200 + 144 + + + + + $(P)SGM$(N):move.PROC + 1 + 10 + + + + + false + false - + - - - - Menu Button + false + + + + 0 + 1 true - false - Default + Default - 55 - 6 - - + false + + + + 20 + + Action Button + 0 + $(P)SGM$(N):move.PROC - 1 - - - - 144 - - $(pv_name) -$(pv_value) - 200 - - - true - 1 - 39872d87:13e14015f61:2499 - false - - 10 - Label + true true false - true - false + + + Move + false + $(pv_name) +$(pv_value) + true + Action Button + 35 + 80 + 144 + + + + + $(P)SGM$(N):sync.PROC + 1 + 10 + + + + + false + false - + - - - - Label - true - SCAN CONTROL - - - - 100 - 0 - - 1 + false - 1 - - 107 - true - - 5 - - - false - true - 39872d87:13e14015f61:249a - + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)SGM$(N):sync.PROC + + true true false - $(P)allstop.VAL + + + Sync + false + $(pv_name) +$(pv_value) + true + Action Button + 35 + 120 + 144 + + + + false - + - - - - Action Button + + + + 0 + 1 true - Stop - false - Default + - 35 - 0 - 0 - + + + + 10 + 1 + Label - - false - 1 - - - - 117 + + true + true + false + + + false + SCAN CONTROL + + true + 1 + true + Label + 100 + false + 5 + 107 + + $(P)allstop.VAL 1 10 + - $(pv_name) -$(pv_value) - 69 - - + false + false + + + false - true - 39872d87:13e14015f61:249b - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)SGM$(N):Energy:scanParms.GO - - - - - - - Action Button - true - Go - false - - Default - - 20 - 0 - 0 - - - + + + Stop false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 35 + 69 117 + + $(P)SGM$(N):Energy:scanParms.GO 1 10 + - $(pv_name) -$(pv_value) - 48 - - + false + false + + + false - true - 39872d87:13e14015f61:249c - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)SGM$(N):Energy:scanParms.GO + + true true false - $(P)SGM$(N):Energy:scanParms.LOAD - - - - - - + + + Go + false + $(pv_name) +$(pv_value) + true Action Button - true - Ld - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 48 117 + + $(P)SGM$(N):Energy:scanParms.LOAD 1 10 + - $(pv_name) -$(pv_value) - 27 - - + false + false + + + false - true - false - 39872d87:13e14015f61:249d - - 20 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + $(P)SGM$(N):Energy:scanParms.LOAD + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + Ld + false + $(pv_name) +$(pv_value) + true + Action Button 20 - 6 - - - - 1 - - - + 27 117 + + scanParms.opi @@ -1143,272 +1066,284 @@ $(pv_value) SGM$(N):Energy SGM$(N):Energy - 0 + 1 Energy-scan parameters - $(pv_name) -$(pv_value) - 6 - - + false + false + + + false - true - 39872d87:13e14015f61:249e - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + + + true true false - $(P)SGM$(N):EnergyTweak.A - - - - - - + + + + false + $(pv_name) +$(pv_value) + true Action Button - true - > - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - - 86 + 6 + 117 + + $(P)SGM$(N):EnergyTweak.A 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)SGM$(N):EnergyTweak.A + + + + true + true + false + + + + > + false $(pv_name) $(pv_value) + true + Action Button + 20 85 + 86 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:249f - 0.0 + false Text Input + 0 + false + 0 + true + $(P)SGM$(N):EnergyTweak.C + + false + 0.0 + true true false - 1 - false + 0 - $(P)SGM$(N):EnergyTweak.C - - - - false - 0 - - - false + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 25 + 86 + + + + + $(P)SGM$(N):EnergyTweak.B + 1 + 10 + + + + + false + false + + + + false - 0 - - 86 - $(pv_name) -$(pv_value) - 25 - - - false - true - 39872d87:13e14015f61:24a0 - + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)SGM$(N):EnergyTweak.B + + true true false - $(P)SGM$(N):EnergyTweak.B - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 86 - - - $(P)SGM$(N):EnergyTweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 5 + 86 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:24a1 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 320 - 0 - 0 - - 1 - 1 - true - - - - - 141 - $(pv_name) -$(pv_value) - 0 - - - false - true - false - 39872d87:13e14015f61:24a2 - - 20 - Menu Button - false + 0.0 + true true - false + true - false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - - 152 + + $(pv_name) +$(pv_value) + true + true + Polyline + 320 + 0 + 141 + + SGM.opi true - 1 + 1 SGM (more) @@ -1416,7 +1351,7 @@ $(pv_value) true - 0 + 1 Gratings @@ -1425,7 +1360,7 @@ $(pv_value) true $(M_rIn) - 0 + 1 r motor (entrance slit) @@ -1434,7 +1369,7 @@ $(pv_value) true $(M_x) - 0 + 1 x motor (grating drive) @@ -1443,7 +1378,7 @@ $(pv_value) true $(M_rOut) - 0 + 1 r' motor (exit slit) @@ -1452,246 +1387,252 @@ $(pv_value) true $(M_g) - 0 + 1 index motor (grating index) - $(pv_name) -$(pv_value) - 279 - - - true - 1 - 39872d87:13e14015f61:24a4 - false - - 10 - Label - - true - true - false - - true - false + false + false + false - + - - - - Label - true - SCAN CONTROL - - - - 100 - 0 - - 1 + false - 1 - - 107 - true - - 110 - - - false - true - 39872d87:13e14015f61:24a5 - - 20 - Action Button + 6 + 1 + true + + Default + false + + + + 20 + + Menu Button + + + true true false - $(P)AbortScans.VAL + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 40 + 279 + 152 + + + + false - + - - - - Action Button + + + + 0 + 1 true - Stop - false - Default + - 35 - 0 - 0 - + + + + 10 + 1 + Label - - false - 1 - - - - 117 + + true + true + false + + + false + SCAN CONTROL + + true + 1 + true + Label + 100 + false + 110 + 107 + + $(P)AbortScans.VAL 1 10 + - $(pv_name) -$(pv_value) - 174 - - + false + false + + + false - true - 39872d87:13e14015f61:24a6 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)AbortScans.VAL + + true true false - $(P)SGM$(N):Lambda:scanParms.GO - - - - - - - Action Button - true - Go - false - - Default - - 20 - 0 - 0 - - - + + + Stop false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 35 + 174 117 + + $(P)SGM$(N):Lambda:scanParms.GO 1 10 + - $(pv_name) -$(pv_value) - 153 - - + false + false + + + false - true - 39872d87:13e14015f61:24a7 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)SGM$(N):Lambda:scanParms.GO + + true true false - $(P)SGM$(N):Lambda:scanParms.LOAD - - - - - - + + + Go + false + $(pv_name) +$(pv_value) + true Action Button - true - Ld - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 153 117 + + $(P)SGM$(N):Lambda:scanParms.LOAD 1 10 + - $(pv_name) -$(pv_value) - 132 - - + false + false + + + false - true - false - 39872d87:13e14015f61:24a8 - - 20 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + $(P)SGM$(N):Lambda:scanParms.LOAD + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + Ld + false + $(pv_name) +$(pv_value) + true + Action Button 20 - 6 - - - - 1 - - - + 132 117 + + scanParms.opi @@ -1700,404 +1641,421 @@ $(pv_value) SGM$(N):Lambda SGM$(N):Lambda - 0 + 1 Wavelength-scan parameters + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + + false $(pv_name) $(pv_value) + true + Action Button + 20 111 + 117 - + + + + $(P)SGM$(N):LambdaTweak.A + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:24a9 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)SGM$(N):LambdaTweak.A + + true true false - $(P)SGM$(N):LambdaTweak.A - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 86 - - - $(P)SGM$(N):LambdaTweak.A - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 190 + 86 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:24aa - 0.0 + false Text Input + 0 + false + 0 + true + $(P)SGM$(N):LambdaTweak.C + + false + 0.0 + true true false - 1 - false + 0 - $(P)SGM$(N):LambdaTweak.C - - - - false - 0 - - - false - - - - 0 - - 86 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 130 + 86 - + + + + $(P)SGM$(N):LambdaTweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:24ab - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)SGM$(N):LambdaTweak.B + + true true false - $(P)SGM$(N):LambdaTweak.B - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 86 - - - $(P)SGM$(N):LambdaTweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 110 + 86 - - true - 1 - 39872d87:13e14015f61:24ad + + false - - 10 - Label - - true - true - false - - true - false - - - - Label - true - SCAN CONTROL - - - - 100 - 0 - - 1 + 0 + 1 + true + + + + + + + 10 1 - - 107 - true - - 215 - - - false - true - 39872d87:13e14015f61:24ae - - 20 - Action Button - false + Label + true true false - $(P)allstop.VAL - - - - - - - Action Button - true - Stop - false - - Default - - 35 - 0 - 0 - - - - false - 1 - - - - 117 + + false + SCAN CONTROL + + true + 1 + true + Label + 100 + false + 215 + 107 + + $(P)allstop.VAL 1 10 + - - $(pv_name) -$(pv_value) - 279 - - + + false + false + + + false - true - 39872d87:13e14015f61:24af - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)SGM$(N):phi:scanParms.GO - - - - - - - Action Button - true - Go - false - - Default - - 20 - 0 - 0 - - - + + + Stop false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 35 + 279 117 +
+ $(P)SGM$(N):phi:scanParms.GO 1 10 + - $(pv_name) -$(pv_value) - 258 - - + false + false + + + false - true - 39872d87:13e14015f61:24b0 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)SGM$(N):phi:scanParms.GO + + true true false - $(P)SGM$(N):phi:scanParms.LOAD - - - - - - + + + Go + false + $(pv_name) +$(pv_value) + true Action Button - true - Ld - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 258 117 + + $(P)SGM$(N):phi:scanParms.LOAD 1 10 + - $(pv_name) -$(pv_value) - 237 - - + false + false + + + false - true - false - 39872d87:13e14015f61:24b1 - - 20 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + $(P)SGM$(N):phi:scanParms.LOAD + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + Ld + false + $(pv_name) +$(pv_value) + true + Action Button 20 - 6 - - - - 1 - - - + 237 117 + + scanParms.opi @@ -2106,866 +2064,920 @@ $(pv_value) SGM$(N):phi SGM$(N):phi - 0 + 1 Grating angle scan parameters - $(pv_name) -$(pv_value) - 216 - - + false + false + + + false - true - 39872d87:13e14015f61:24b2 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + + + true true false - $(P)SGM$(N):phiTweak.A - - - - - - + + + + false + $(pv_name) +$(pv_value) + true Action Button - true - > - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - - 86 + 216 + 117 + + $(P)SGM$(N):phiTweak.A 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)SGM$(N):phiTweak.A + + + + true + true + false + + + + > + false $(pv_name) $(pv_value) + true + Action Button + 20 295 + 86 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:24b3 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)SGM$(N):phiTweak.C + + false + 0.0 + true true false - 1 - false + 0 - $(P)SGM$(N):phiTweak.C - - - - false - 0 - - - false - - - - 0 - - 86 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 235 + 86 - + + + + $(P)SGM$(N):phiTweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:24b4 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)SGM$(N):phiTweak.B + + true true false - $(P)SGM$(N):phiTweak.B - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 86 - - - $(P)SGM$(N):phiTweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 215 + 86 - - true - 1 - 39872d87:13e14015f61:24b5 + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false + EXIT + + true + 1 + true + Label + 25 + false + 175 + 144 + + + + false - - - - Label - true - EXIT - - - - 25 - 0 - - 1 - 1 - - 144 - true - - 175 - - - true - 1 - 39872d87:13e14015f61:24b6 - false - + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true SLIT - - - - 25 - 0 - - 1 - - - - 1 - - 154 - true + true + 1 + true + Label + 25 + false 175 + 154 - - false - true + + true - 39872d87:13e14015f61:24b7 - - 16 - Menu Button - false - - true - true - false - - false - $(P)SGM$(N):auto + false + false - + - - - - Menu Button + false + + + + 6 + 1 true - false - Default + Default - 75 - 6 + false + + + + 16 - + Menu Button + $(P)SGM$(N):auto - 1 - - - - 144 - + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 75 2 + 144 - - true - true - 1 - false - 39872d87:13e14015f61:24b8 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)SGM$(N):EnergyRBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)SGM$(N):EnergyRBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 45 false - $(pv_name) -$(pv_value) 5 + 45 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:24b9 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)SGM$(N):Energy + + false + 0.0 + true true false - 1 - false + 0 - $(P)SGM$(N):Energy - - - - false - 0 - - - false - - - - 0 - - 61 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 5 + 61 - - true - true - 1 - false - 39872d87:13e14015f61:24ba + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)SGM$(N):LambdaRBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)SGM$(N):LambdaRBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 45 false - $(pv_name) -$(pv_value) 110 + 45 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:24bb - 0.0 + false Text Input + 0 + false + 0 + true + $(P)SGM$(N):Lambda + + false + 0.0 + true true false - 1 - false + 0 - $(P)SGM$(N):Lambda - - - - false - 0 - - - false - - - - 0 - - 61 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 110 + 61 - - true - true - 1 - false - 39872d87:13e14015f61:24bc + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)SGM$(N):phiRBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)SGM$(N):phiRBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 45 false - $(pv_name) -$(pv_value) 215 + 45 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:24bd - 0.0 + false Text Input + 0 + false + 0 + true + $(P)SGM$(N):phi + + false + 0.0 + true true false - 1 - false + 0 - $(P)SGM$(N):phi - - - - false - 0 - - - false - - - - 0 - - 61 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 215 + 61 - - true - 1 - 39872d87:13e14015f61:24bf + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + Spherical Grating Monochromator + + true + 1 + true + Label + 320 + false + 0 + 3 + + + + false - - - - Label - true - Spherical Grating Monochromator - - - - 320 - 0 - - 1 - 1 - - 3 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:24c0 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true Energy(eV) - - - - 100 - 0 - - 1 - - - - 1 - - 25 - true + true + 1 + true + Label + 100 + false 5 + 25 - - true - 1 - 39872d87:13e14015f61:24c1 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + Wavelen(A) + + true + 1 + true + Label + 100 + false + 110 + 25 + + + + false - - - - Label - true - Wavelen(A) - - - - 100 - 0 - - 1 - 1 - - 25 - true - - 110 - - - true - 1 - 39872d87:13e14015f61:24c2 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true Phi(deg) - - - - 100 - 0 - - 1 - - - - 1 - - 25 - true + true + 1 + true + Label + 100 + false 215 + 25 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:24c3 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 319 - 0 - 0 - - 1 - 1 - true - - - - - 23 - $(pv_name) -$(pv_value) - 1 - - - true - 1 - 39872d87:13e14015f61:24c4 - false - - 10 - Label + 0.0 + true true - false + true + + $(pv_name) +$(pv_value) true - false + true + Polyline + 319 + 1 + 23 + + + + false - - - - Label + + + + 0 + 1 true - r' AT LIMIT - + - 75 - 0 + + + + 10 + 1 + Label @@ -2977,56 +2989,62 @@ $(pv_value) $(P)SGM$(N):T2.M - 1 - - - - 1 - - 164 - true - - 175 - - - true - 1 - 39872d87:13e14015f61:24c5 - false - - 8 - Label true true false - true + false + r' AT LIMIT + + true + 1 + true + Label + 75 + false + 175 + 164 + + + + false - - - - Label - true - V1.4 - - - - 20 - 0 - - 1 + 0 + 1 + true + + + + + + + 8 0 - - 165 - true + Label + + + true + true + false + + + false + V1.4 + true + 1 + true + Label + 20 + false 1 + 165 -
\ No newline at end of file +
diff --git a/opticsApp/op/opi/TheBox_Bragg.opi b/opticsApp/op/opi/autoconvert/TheBox_Bragg.opi similarity index 85% rename from opticsApp/op/opi/TheBox_Bragg.opi rename to opticsApp/op/opi/autoconvert/TheBox_Bragg.opi index 7c28beb..69c98f5 100644 --- a/opticsApp/op/opi/TheBox_Bragg.opi +++ b/opticsApp/op/opi/autoconvert/TheBox_Bragg.opi @@ -1,78 +1,76 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 285 true - 39872d87:13e14015f61:2503 - 3.1.2.20120830 + TheBox_Bragg + + true + true + false true - 285 - TheBox_Bragg false - false - - - - - - Display - true 535 - - true - 5 - - false - -1 - -1 - - - 10 10 - - false - true - 100.0 - - - - 39872d87:13e14015f61:2504 - - - - - 15 - true - Rectangle - false + 10 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 6 + false + + + + false + 15 + true + + + 0 - 0 + 0 + Rectangle + + @@ -84,62 +82,62 @@ $(P)$(mTH1).HLS - - 1 - 0 - true - - - - - 125 - $(pv_name) -$(pv_value) - 194 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:2505 - - - - - 15 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 6 + 194 + 125 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 6 + false + + + + false + 15 + true + + + 0 - 0 + 0 + Rectangle + + @@ -151,62 +149,62 @@ $(pv_value) $(P)$(mTH1).LVIO - - 1 - 0 - true - - - - - 125 - $(pv_name) -$(pv_value) - 187 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:2506 - - - - - 15 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 6 + 187 + 125 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 6 + false + + + + false + 15 + true + + + 0 - 0 + 0 + Rectangle + + @@ -218,62 +216,62 @@ $(pv_value) $(P)$(mTH1).LLS - - 1 - 0 - true - - - - - 125 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 6 120 - false + 125 - - false - true - 100.0 - - - - 39872d87:13e14015f61:2507 - - - - - 15 - true - Rectangle - false + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 6 + false + + + + false + 15 + true + + + 0 - 0 + 0 + Rectangle + + @@ -285,518 +283,518 @@ $(pv_value) $(P)$(mTH1).LVIO - - 1 - 0 - true - - - - - 125 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 6 127 - false + 125 - + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 19 + true - 39872d87:13e14015f61:2508 - - - - - 19 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 394 + 0 + 244 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 394 - 0 - 0 - - - 1 - 0 - true - - - - - 244 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 100.0 + 88 + true - 39872d87:13e14015f61:2509 - - - - - 88 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 116 + 0 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 116 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 0.0 + 117 + true - + - 39872d87:13e14015f61:2542 - - - - - 117 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - - - - - - - + true Rectangle + 105 + 345 + 0 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 105 - 0 - 0 - - - 1 - 2 - true - - - - - 0 - $(pv_name) -$(pv_value) - 345 + false + + + false - - - false - true - 0.0 + 117 + true - + - 39872d87:13e14015f61:2544 - - - - - 117 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 105 + 235 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 105 - 0 - 0 - - - 1 - 2 - true - - - - - 0 - $(pv_name) -$(pv_value) - 235 + false + + + false - - - false - true - 0.0 + 117 + true - + - 39872d87:13e14015f61:2546 - - - - - 117 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 105 + 125 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 105 - 0 - 0 - - - 1 - 2 - true - - - - - 0 - $(pv_name) -$(pv_value) - 125 + false + + + false - - - false - true - 0.0 + 90 + true - + - 39872d87:13e14015f61:2558 - - - - - 90 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 118 + 0 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 118 - 0 - 0 - - - 1 - 2 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 100.0 + 99 + true - 39872d87:13e14015f61:2560 - - - - - 99 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 82 + 0 + 145 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 82 - 0 - 0 - - - 1 - 0 - true - - - - - 145 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 100.0 + 19 + true - 39872d87:13e14015f61:2561 - - - - - 19 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle - true - - - - false - - Default - 394 - 0 - 0 - - - 1 - 0 - true - - - - - 225 - $(pv_name) -$(pv_value) 0 - false + 225 - - false - true - 0.0 - - - - 39872d87:13e14015f61:2562 - - - - - 37 - true - Rectangle - false + + + false 255 - - true - true - false - - true - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 83 + false + + + + false + 37 + true + + + 0 - 0 + 1 + Rectangle + + @@ -808,62 +806,62 @@ $(pv_value) $(P)$(mZ2)_able.VAL - - 1 - 1 - true - - - - - 154 - $(pv_name) -$(pv_value) - 308 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:2563 - - - - - 37 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 83 + 308 + 154 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 83 + false + + + + false + 37 + true + + + 0 - 0 + 1 + Rectangle + + @@ -875,62 +873,62 @@ $(pv_value) $(P)$(mTH2)_able.VAL - - 1 - 1 - true - - - - - 154 + + true + true + false + + $(pv_name) $(pv_value) + true + true + Rectangle + 83 213 - false + 154 - - false - true - 100.0 - - - - 39872d87:13e14015f61:2567 - - - - - 15 - true - Rectangle - false + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 6 + false + + + + false + 15 + true + + + 0 - 0 + 0 + Rectangle + + @@ -942,62 +940,62 @@ $(pv_value) $(P)$(mTH2).HLS - - 1 - 0 - true - - - - - 124 - $(pv_name) -$(pv_value) - 289 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:2568 - - - - - 15 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 6 + 289 + 124 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 6 + false + + + + false + 15 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1009,62 +1007,62 @@ $(pv_value) $(P)$(mTH2).LVIO - - 1 - 0 - true - - - - - 124 - $(pv_name) -$(pv_value) - 282 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:2569 - - - - - 15 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 6 + 282 + 124 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 6 + false + + + + false + 15 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1076,129 +1074,129 @@ $(pv_value) $(P)$(mTH2).LLS - - 1 - 0 - true - - - - - 124 - $(pv_name) -$(pv_value) - 215 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:256a - - - - - 15 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 6 + 215 + 124 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 6 - 0 - 0 - - - - true - + false + + + + false + 15 + true + + + + 0 + 0 + Rectangle + + + + + + true + false $(P)$(mTH2).LVIO - - 1 - 0 - true - - - - - 124 - $(pv_name) -$(pv_value) - 222 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:256b - - - - - 15 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 6 + 222 + 124 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 6 + false + + + + false + 15 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1210,62 +1208,62 @@ $(pv_value) $(P)$(mZ2).HLS - - 1 - 0 - true - - - - - 124 - $(pv_name) -$(pv_value) - 384 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:256c - - - - - 15 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 6 + 384 + 124 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 6 + false + + + + false + 15 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1277,62 +1275,62 @@ $(pv_value) $(P)$(mZ2).LVIO - - 1 - 0 - true - - - - - 124 - $(pv_name) -$(pv_value) - 377 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:256d - - - - - 15 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 6 + 377 + 124 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 6 + false + + + + false + 15 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1344,62 +1342,62 @@ $(pv_value) $(P)$(mZ2).LLS - - 1 - 0 - true - - - - - 124 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 6 310 - false + 124 - - false - true - 100.0 - - - - 39872d87:13e14015f61:256e - - - - - 15 - true - Rectangle - false + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 6 + false + + + + false + 15 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1411,3422 +1409,3515 @@ $(pv_value) $(P)$(mZ2).LVIO - - 1 - 0 - true - - - - - 124 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 6 317 - false + 124 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 15 + false true - true - 39872d87:13e14015f61:2532 - - 15 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 320 - 0 - - false - 1 - - - - - 80 - 127 - - true - true - 1 - false - 39872d87:13e14015f61:2533 + 80 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)Bragg_limits.B + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)Bragg_limits.B - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 0 false - $(pv_name) -$(pv_value) 220 + 0 - - true - true - 1 - false - 39872d87:13e14015f61:2534 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)Bragg_limits.F + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)Bragg_limits.F - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 0 false - $(pv_name) -$(pv_value) 110 + 0 - - true - true - 1 - false - 39872d87:13e14015f61:2535 + + + false false - 0.0 - - 15 - Text Update + false + + + + true + + + + 0 + 1 + true + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)Bragg_limits.H + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)Bragg_limits.H - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 0 false - $(pv_name) -$(pv_value) 0 + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 21 + false true - true - 39872d87:13e14015f61:255c - - 21 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 25 - 0 - - false - 1 - - - - - 177 - 100 - - false - true - 180 - 39872d87:13e14015f61:255d - 90 - - 18 - true - Arc - false + 177 + + + false 255 - - true - true - true - - + true + false - - - - Arc + false + + + + 0 + 1 true - false + false - Default + Default - 25 + false + + + + 18 0 - false - 0 - - - 1 1 - - - - - 3 + Arc + + + + + true + true + true + + + 90 $(pv_name) $(pv_value) + 180 + true + Arc + 25 0 + 3 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:255e - 0.0 - - 0 + + Default + + false + + + 9 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - 1 - 1 - true - - - - - 1 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 7 8 + 1 - - true - 1 - 39872d87:13e14015f61:250a + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true H - - - - 10 - 0 - - 1 - - - - 0 - - 5 - true + true + 1 + true + Label + 10 + false 5 + 5 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 20 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:250b - 0.0 + false Text Input + 0 + false + 0 + true + $(P)Bragg_H.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)Bragg_H.VAL - - - - false - 0 - - - false - - - - 0 - - 5 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 20 15 + 5 - - true - 1 - 39872d87:13e14015f61:250c + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true K - - - - 10 - 0 - - 1 - - - - 0 - - 5 - true + true + 1 + true + Label + 10 + false 43 + 5 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 20 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:250d - 0.0 + false Text Input + 0 + false + 0 + true + $(P)Bragg_K.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)Bragg_K.VAL - - - - false - 0 - - - false - - - - 0 - - 5 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 20 53 + 5 - - true - 1 - 39872d87:13e14015f61:250e + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true L - - - + + true + 1 + true + Label 10 - 0 - - 1 + false + 81 + 5 + + + + false + false + false + + + + false - 0 - - 5 - true - - 81 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input + 3 + 1 + true - - + - 20 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:250f - 0.0 + false Text Input + 0 + false + 0 + true + $(P)Bragg_L.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)Bragg_L.VAL - - - - false - 0 - - - false - - - - 0 - - 5 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 20 91 + 5 - - true - 1 - 39872d87:13e14015f61:2510 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true a - - - - 20 - 0 - - 1 - - - - 0 - - 25 - true + true + 1 + true + Label + 20 + false 5 + 25 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2511 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)Bragg_a.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)Bragg_a.VAL - - - - false - 0 - - - false - - - - 0 - - 25 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 25 + 25 - - true - 1 - 39872d87:13e14015f61:2512 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true 2d - - - - 20 - 0 - - 1 - - - - 0 - - 45 - true + true + 1 + true + Label + 20 + false 5 + 45 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2513 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)Bragg_2d_spacing.G + + false + 0.0 + true true false - 1 - false + 0 - $(P)Bragg_2d_spacing.G - - - - false - 0 - - - false - - - - 0 - - 45 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 25 + 45 - - false - true - false - 39872d87:13e14015f61:2514 - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 128 + TheBox_graphic.opi true - 0 + 1 TheBox Graphic + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + + false $(pv_name) $(pv_value) + true + Action Button + 20 465 + 128 - - true - 1 - 39872d87:13e14015f61:2515 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true More - - - - 40 - 0 - - 1 - - - - 0 - - 128 - true + true + 1 + true + Label + 40 + false 490 + 128 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2516 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(mTH2).VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(mTH2).VAL - - - - false - 0 - - - false - - - - 0 - - 170 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 215 + 170 - - false - true - 1 - false + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2517 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(mZ2).VELO + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(mZ2).VELO - - - - false - 0 - - - false - - - - 0 - - 205 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 310 + 205 - - false - true - 1 - false + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2518 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(mTH1).VELO + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(mTH1).VELO - - - - false - 0 - - - false - - - - 0 - - 205 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 120 + 205 - - false - true - 1 - false + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2519 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(mTH2).VELO + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(mTH2).VELO - - - - false - 0 - - - false - - - - 0 - - 205 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 215 + 205 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:251a - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(mZ2).VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(mZ2).VAL - - - - false - 0 - - - false - - - - 0 - - 170 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 310 + 170 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:251b - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(mTH1).VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(mTH1).VAL - - - - false - 0 - - - false - - - - 0 - - 170 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 120 + 170 - - false - true - 39872d87:13e14015f61:251c - - 15 - Choice Button - false - - true - true - false - - $(P)$(mTH2)_able.VAL + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 90 - 0 - - - - - + false + + + + 15 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 227 - $(pv_name) -$(pv_value) - 205 - - - false - true - 39872d87:13e14015f61:251d - - 15 Choice Button - false + $(P)$(mTH2)_able.VAL + + true true false - $(P)$(mZ2)_able.VAL + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 90 + 205 + 227 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 90 - 0 - - - - - + false + + + + 15 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 227 - $(pv_name) -$(pv_value) - 300 - - - false - true - 39872d87:13e14015f61:251e - - 15 Choice Button - false + $(P)$(mZ2)_able.VAL + + true true false - $(P)$(mTH1)_able.VAL + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 90 + 300 + 227 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 90 - 0 - - - - - + false + + + + 15 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 227 - $(pv_name) -$(pv_value) - 110 - - - false - true - 39872d87:13e14015f61:251f - - 15 Choice Button - false + $(P)$(mTH1)_able.VAL + + true true false - $(P)$(mZ2).SET + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 90 + 110 + 227 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 90 - 0 - - - - - + false + + + + 15 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 245 - $(pv_name) -$(pv_value) - 300 - - - false - true - 39872d87:13e14015f61:2520 - - 15 Choice Button - false + $(P)$(mZ2).SET + + true true false - $(P)$(mTH2).SET - - - - - - - Choice Button - true - false - - Default - - 90 - 0 + - - + $(pv_name) +$(pv_value) + true + Choice Button + 90 + 300 + 245 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 15 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 245 - $(pv_name) -$(pv_value) - 205 - - - false - true - 39872d87:13e14015f61:2521 - - 15 Choice Button - false + $(P)$(mTH2).SET + + true true false - $(P)$(mTH1).SET + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 90 + 205 + 245 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 90 - 0 - - - - - + false + + + + 15 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 245 + Choice Button + $(P)$(mTH1).SET + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 90 110 + 245 - - true - 1 - 39872d87:13e14015f61:2522 + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false + Calibration + + true + 1 + true + Label + 100 + false + 5 + 245 + + + + false - - - - Label - true - Calibration - - - - 100 - 0 - - 1 - 0 - - 245 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:2523 - false - + 0 + 1 + true + + + + + + 15 + 1 Label + true true false - true + false + ($(P)$(mTH2)) + + true + 1 + true + Label + 90 + false + 205 + 140 + + + + false - - - - Label - true - ($(P)$(mTH2)) - - - - 90 - 0 - - 1 - 1 - - 140 - true - - 205 - - - true - 1 - 39872d87:13e14015f61:2524 - false - + 0 + 1 + true + + + + + + 15 + 1 Label + true true false - true + false + ($(P)$(mTH1)) + + true + 1 + true + Label + 90 + false + 110 + 140 + + + + false - - - - Label + + + + 0 + 1 true - ($(P)$(mTH1)) - + - 90 - 0 + + + + 15 + 1 + Label - 1 - - - - 1 - - 140 - true - - 110 - - - true - 1 - 39872d87:13e14015f61:2525 - false - - 15 - Label true true false - true + false + ($(P)$(mZ2)) + + true + 1 + true + Label + 90 + false + 300 + 140 + + + + false - - - - Label - true - ($(P)$(mZ2)) - - - - 90 - 0 - - 1 - 1 - - 140 - true - - 300 - - - true - 1 - 39872d87:13e14015f61:2526 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + Theta2 + + true + 1 + true + Label + 80 + false + 215 + 125 + + + + false - - - - Label - true - Theta2 - - - - 80 - 0 - - 1 - 1 - - 125 - true - - 215 - - - true - 1 - 39872d87:13e14015f61:2527 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + Theta1 + + true + 1 + true + Label + 80 + false + 120 + 125 + + + + false - - - - Label - true - Theta1 - - - - 80 - 0 - - 1 - 1 - - 125 - true - - 120 - - - true - 1 - 39872d87:13e14015f61:2528 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true Z2 - - - - 80 - 0 - - 1 - - - - 1 - - 125 - true + true + 1 + true + Label + 80 + false 310 + 125 - - false - true - 39872d87:13e14015f61:2529 - - 45 - Choice Button - false - - true - true - false - - $(P)TheBox_run.VAL + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 75 - 0 - - - - - + false + + + + 45 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 150 - $(pv_name) -$(pv_value) - 2 - - - false - true - 39872d87:13e14015f61:252a - - 25 - Action Button - false + Choice Button + $(P)TheBox_run.VAL + + true true false - $(P)TheBox_put.PROC - - - - - - - Action Button - true - Move - false - - Default - - 75 - 0 - 0 - - - - false - 1 - - - - 198 + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 75 + 2 + 150 + + $(P)TheBox_put.PROC 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 25 + + Action Button + 0 + $(P)TheBox_put.PROC + + + + true + true + false + + + + Move + false $(pv_name) $(pv_value) + true + Action Button + 75 2 + 198 - - true - 1 - 39872d87:13e14015f61:252b + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true TH (deg.) - - - - 100 - 0 - - 1 - - - - 1 - - 1 - true + true + 1 + true + Label + 100 + false 347 + 1 - - true - true - 1 - false - 39872d87:13e14015f61:252c + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)Bragg_readback.A + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)Bragg_readback.A - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 35 false - $(pv_name) -$(pv_value) 347 + 35 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:252d - 0.0 + false Text Input + 0 + false + 0 + true + $(P)Bragg_theta.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)Bragg_theta.VAL - - - - false - 0 - - - false - - - - 0 - - 55 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 347 + 55 - + + + + $(P)Bragg_theta_inc.VAL + 1 + 10 + + + + + $(P)Bragg_theta_inc.VAL + 0 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:252e - - 20 - Action Button - false - - true - true - false - - $(P)Bragg_theta_inc.VAL - - - - - - - Action Button + + + + 0 + 1 true - > - false - Default + Default - 20 - 0 - 0 + false + + + + 20 - + Action Button + 0 + $(P)Bragg_theta_inc.VAL + + + true + true + false + + + + > true - 1 - - - - 95 - - - $(P)Bragg_theta_inc.VAL - 1 - 10 - - - - $(P)Bragg_theta_inc.VAL - 0 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 427 + 95 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:252f - 0.0 + false Text Input + 0 + false + 0 + true + $(P)Bragg_theta_tweak.D + + false + 0.0 + true true false - 1 - false + 0 - $(P)Bragg_theta_tweak.D - - - - false - 0 - - - false - - - - 0 - - 95 + false + true + false + false + + $(pv_name) $(pv_value) - 367 - - - false + false true - 39872d87:13e14015f61:2530 - - 20 - Action Button - false - - true - true - false - - $(P)Bragg_theta_dec.VAL - - - - - - - Action Button - true - < - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - + Text Input + 60 + 367 95 + + $(P)Bragg_theta_dec.VAL 1 10 + $(P)Bragg_theta_dec.VAL 0 10 + - $(pv_name) -$(pv_value) - 347 - - - true - true - 1 - false - 39872d87:13e14015f61:2531 - false - 0.0 - - 15 - Text Update + false + false + + + + false + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + $(P)Bragg_theta_dec.VAL + + true true false - 1 - true - false - $(P)Bragg_limits.A + + + < + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 347 + 95 + + + + false + false + false - + - - - - Text Update - true - ###### - false - 0 - - - - 100 - 0 - - - 1 + true + 0 + 1 + true + + + + false + + + + 1 + 15 1 - - 20 - false - $(pv_name) -$(pv_value) - 347 - - - true - true - 1 - false - 39872d87:13e14015f61:2536 - false - 0.0 - - 20 Text Update - false + 0 + true + $(P)Bragg_limits.A + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)Bragg_readback.C - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 + false + 347 + 20 + + + + false + false + false + + + + true + 0 + 1 + true + + + + false + + + + 1 + 20 0 - - 35 - false + Text Update + 0 + true + $(P)Bragg_readback.C + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 100 + false 237 + 35 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2537 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)Bragg_lambda.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)Bragg_lambda.VAL - - - - false - 0 - - - false - - - - 0 - - 55 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 237 + 55 - - false - true - 39872d87:13e14015f61:2538 - - 20 - Action Button - false - - true - true - false - - $(P)Bragg_lambda_inc.VAL - - - - - - - Action Button - true - > - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - - 95 + $(P)Bragg_lambda_inc.VAL 1 10 + $(P)Bragg_lambda_inc.VAL 0 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)Bragg_lambda_inc.VAL + + + + true + true + false + + + + > + true $(pv_name) $(pv_value) + true + Action Button + 20 317 + 95 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2539 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)Bragg_lambda_tweak.D + + false + 0.0 + true true false - 1 - false + 0 - $(P)Bragg_lambda_tweak.D - - - - false - 0 - - - false - - - - 0 - - 95 + false + true + false + false + + $(pv_name) $(pv_value) - 257 - - - false + false true - 39872d87:13e14015f61:253a - - 20 - Action Button - false - - true - true - false - - $(P)Bragg_lambda_dec.VAL - - - - - - - Action Button - true - < - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - + Text Input + 60 + 257 95 + + $(P)Bragg_lambda_dec.VAL 1 10 + $(P)Bragg_lambda_dec.VAL 0 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)Bragg_lambda_dec.VAL + + + + true + true + false + + + + < + true $(pv_name) $(pv_value) + true + Action Button + 20 237 + 95 - - true - true - 1 - false - 39872d87:13e14015f61:253b + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 0 Text Update - false + 0 + true + $(P)Bragg_limits.E + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)Bragg_limits.E - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 20 false - $(pv_name) -$(pv_value) 237 + 20 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:253c - 0.0 + false Text Input + 0 + false + 0 + true + $(P)Bragg_E.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)Bragg_E.VAL - - - - false - 0 - - - false - - - - 0 - - 55 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 127 + 55 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:253d - 0.0 + false Text Input + 0 + false + 0 + true + $(P)Bragg_E_tweak.D + + false + 0.0 + true true false - 1 - false + 0 - $(P)Bragg_E_tweak.D - - - - false - 0 - - - false - - - - 0 - - 95 + false + true + false + false + + $(pv_name) $(pv_value) - 147 - - - false + false true - 39872d87:13e14015f61:253e - - 20 - Action Button - false - - true - true - false - - $(P)Bragg_E_dec.VAL - - - - - - - Action Button - true - < - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - + Text Input + 60 + 147 95 + + $(P)Bragg_E_dec.VAL 1 10 + $(P)Bragg_E_dec.VAL 0 10 + - $(pv_name) -$(pv_value) - 127 - - + false + false + + + false - true - 39872d87:13e14015f61:253f - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)Bragg_E_dec.VAL + + true true false - $(P)Bragg_E_inc.VAL - - - - - - + + + < + true + $(pv_name) +$(pv_value) + true Action Button - true - > - false - - Default - 20 - 0 - 0 - - - - true - 1 - - - + 127 95 + + $(P)Bragg_E_inc.VAL 1 10 + $(P)Bragg_E_inc.VAL 0 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)Bragg_E_inc.VAL + + + + true + true + false + + + + > + true $(pv_name) $(pv_value) + true + Action Button + 20 207 + 95 - - true - true - 1 - false - 39872d87:13e14015f61:2540 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)Bragg_limits.G + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)Bragg_limits.G - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 20 false - $(pv_name) -$(pv_value) 127 + 20 - - true - true - 1 - false - 39872d87:13e14015f61:2541 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)Bragg_readback.E + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)Bragg_readback.E - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 35 false - $(pv_name) -$(pv_value) 127 + 35 - - true - 1 - 39872d87:13e14015f61:2543 + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - lambda (A) - - - - 100 - 0 - - 1 - 1 - - 1 - true - - 237 - - - true - 1 - 39872d87:13e14015f61:2545 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + lambda (A) + + true + 1 + true + Label + 100 + false + 237 + 1 + + + + false - - - - Label - true - E (keV) - - - - 100 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 1 - - 1 - true - - 127 - - - true - 1 - 39872d87:13e14015f61:2547 - false - - 14 Label + true true false - true + false + E (keV) + + true + 1 + true + Label + 100 + false + 127 + 1 + + + + false - - - - Label - true - Speed - - - - 50 - 0 - - 1 - 0 - - 205 - true - - 400 - - - true - 1 - 39872d87:13e14015f61:2548 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Speed + + true + 1 + true + Label + 50 + false + 400 + 205 + + + + false - - - - Label - true - Ideal - - - - 50 - 0 - - 1 - 0 - - 190 - true - - 400 - - - true - 1 - 39872d87:13e14015f61:2549 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Ideal + + true + 1 + true + Label + 50 + false + 400 + 190 + + + + false - - - - Label - true - Actual - - - - 50 - 0 - - 1 - 0 - - 155 - true - - 400 - - - true - 1 - 39872d87:13e14015f61:254a - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Actual + + true + 1 + true + Label + 50 + false + 400 + 155 + + + + false - - - - Label - true - Desired - - - - 50 - 0 - - 1 - 0 - - 173 - true - - 400 - - - true - 1 - 39872d87:13e14015f61:254b - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Desired + + true + 1 + true + Label + 50 + false + 400 + 173 + + + + false - - - - Label - true - Low Limit - - - - 75 - 0 - - 1 - 0 - - 80 - true - - 460 - - - true - 1 - 39872d87:13e14015f61:254c - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Low Limit + + true + 1 + true + Label + 75 + false + 460 + 80 + + + + false - - - - Label - true - Desired - - - - 75 - 0 - - 1 - 0 - - 60 - true - - 460 - - - true - 1 - 39872d87:13e14015f61:254d - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Desired + + true + 1 + true + Label + 75 + false + 460 + 60 + + + + false - - - - Label - true - Actual - - - - 75 - 0 - - 1 - 0 - - 38 - true - - 460 - - - true - 1 - 39872d87:13e14015f61:254e - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Actual + + true + 1 + true + Label + 75 + false + 460 + 38 + + + + false - - - - Label - true - High Limit - - - - 75 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 20 - true - - 460 - - - true - 1 - 39872d87:13e14015f61:254f - false - - 25 Label + true true false - true + false + High Limit + + true + 1 + true + Label + 75 + false + 460 + 20 + + + + false - - - - Label + + + + 0 + 1 true - Moving - + - 80 - 0 + + + + 25 + 1 + Label @@ -4838,46 +4929,45 @@ $(pv_value) $(P)alldone.VAL - 1 - - - - 1 - - 195 - true - - 455 - - - true - 1 - 39872d87:13e14015f61:2550 - false - - 25 - Label true true false - true + false + Moving + + true + 1 + true + Label + 80 + false + 455 + 195 + + + + false - - - - Label + + + + 0 + 1 true - Done - + - 80 - 0 + + + + 25 + 1 + Label @@ -4889,624 +4979,600 @@ $(pv_value) $(P)alldone.VAL - 1 - - - - 1 - - 195 - true - - 455 - - - false - true - 39872d87:13e14015f61:2551 - - 20 - Action Button - false true true false - $(P)BraggBackProp.PROC - - - - - - - Action Button - true - SyncToMotor - false - - Default - - 110 - 0 - 0 - - - - false - 1 - - - - 95 + + false + Done + + true + 1 + true + Label + 80 + false + 455 + 195 + + $(P)BraggBackProp.PROC 1 10 + - $(pv_name) -$(pv_value) - 2 - - + false + false + + + false - true - 39872d87:13e14015f61:2552 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)BraggBackProp.PROC + + true true false - $(P)Bragg_2d_put.PROC - - - - - - + + + SyncToMotor + false + $(pv_name) +$(pv_value) + true Action Button - true - Use 2d spacing - false - - Default - 110 - 0 - 0 - - - - false - 1 - - - - 66 + 2 + 95 + + $(P)Bragg_2d_put.PROC 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)Bragg_2d_put.PROC + + + + true + true + false + + + + Use 2d spacing + false $(pv_name) $(pv_value) + true + Action Button + 110 2 + 66 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2553 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 535 - 0 - 0 - - 1 - 1 - true - - - - - 121 - $(pv_name) -$(pv_value) - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:2554 - false 0.0 - - 15 - Text Update - false + true true - false + true - 1 - true - false - $(P)$(mTH1).RBV - - - - - - - Text Update - true - ###### + + $(pv_name) +$(pv_value) + true + true + Polyline + 535 + 0 + 121 + + + + false + false false - 0 - - - - 80 - 0 - - - 1 + + + + true + 0 + 1 + true + + + + false + + + + 1 + 15 0 - - 155 - false + Text Update + 0 + true + $(P)$(mTH1).RBV + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 80 + false 120 + 155 - - true - true - 1 - false - 39872d87:13e14015f61:2555 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 0 Text Update - false + 0 + true + $(P)$(mTH2).RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(mTH2).RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 0 - - 154 false - $(pv_name) -$(pv_value) 215 + 154 - - true - true - 1 - false - 39872d87:13e14015f61:2556 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 0 Text Update - false + 0 + true + $(P)$(mZ2).RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(mZ2).RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 0 - - 155 false - $(pv_name) -$(pv_value) 310 + 155 - + + + + $(P)allstop.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:2557 - + + + + 0 + 1 + true + + Default + + false + + + 40 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)allstop.VAL - - - - - - - Action Button - true + + All Stop - false - - Default - - 115 - 0 - 0 - - - false - 1 - - - - 220 - - - $(P)allstop.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 115 420 + 220 - - true - true - 1 - false - 39872d87:13e14015f61:2559 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 0 Text Update - false + 0 + true + $(P)TheBox_TH2Z2.C + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)TheBox_TH2Z2.C - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 0 - - 190 false - $(pv_name) -$(pv_value) 310 + 190 - - true - true - 1 - false - 39872d87:13e14015f61:255a + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 0 Text Update - false + 0 + true + $(P)TheBox_TH2Z2.D + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)TheBox_TH2Z2.D - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 0 - - 190 false - $(pv_name) -$(pv_value) 215 + 190 - - true - true - 1 - false - 39872d87:13e14015f61:255b + + + false false - 0.0 - - 15 - Text Update - false - - true - true - false - - 1 - true - false - $(P)TheBox_TH2Z2.A + false - + - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 + true + 0 + 1 + true + + + + false + + + + 1 + 15 0 - - 190 - false + Text Update + 0 + true + $(P)TheBox_TH2Z2.A + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 80 + false 120 + 190 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:255f - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 19 - 0 - 0 - - 1 - 1 - true - - - - - 189 - $(pv_name) -$(pv_value) - 79 - - - false - true - false - 39872d87:13e14015f61:2564 - - 20 - Menu Button - false + 0.0 + true true - false + true - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 264 + + $(pv_name) +$(pv_value) + true + true + Polyline + 19 + 79 + 189 + + motorx.opi @@ -5514,7 +5580,7 @@ $(pv_value) true $(mTH1) - 0 + 1 Theta motor (S) @@ -5523,7 +5589,7 @@ $(pv_value) true $(mTH1) - 0 + 1 Theta motor (M) @@ -5532,52 +5598,53 @@ $(pv_value) true $(mTH1) - 0 + 1 Theta motor (L) - $(pv_name) -$(pv_value) - 120 - - - false - true false - 39872d87:13e14015f61:2565 - + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + + + true true false + + false + $(pv_name) +$(pv_value) false - - - - - - - + true Menu Button - true - false - - Default - 20 - 6 - - - - 1 - - - + 120 264 + + motorx.opi @@ -5585,7 +5652,7 @@ $(pv_value) true $(mTH2) - 0 + 1 TH2 motor (S) @@ -5594,7 +5661,7 @@ $(pv_value) true $(mTH2) - 0 + 1 TH2 motor (M) @@ -5603,52 +5670,53 @@ $(pv_value) true $(mTH2) - 0 + 1 TH2 motor (L) - $(pv_name) -$(pv_value) - 217 - - - false - true false - 39872d87:13e14015f61:2566 - + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + + + true true false + + false + $(pv_name) +$(pv_value) false - - - - - - - + true Menu Button - true - false - - Default - 20 - 6 - - - - 1 - - - + 217 264 + + motorx.opi @@ -5656,7 +5724,7 @@ $(pv_value) true $(mZ2) - 0 + 1 Z2 motor (S) @@ -5665,7 +5733,7 @@ $(pv_value) true $(mZ2) - 0 + 1 Z2 motor (M) @@ -5674,12 +5742,50 @@ $(pv_value) true $(mZ2) - 0 + 1 Z2 motor (L) + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 20 312 + 264 - \ No newline at end of file + diff --git a/opticsApp/op/opi/TheBox_calc.opi b/opticsApp/op/opi/autoconvert/TheBox_calc.opi similarity index 80% rename from opticsApp/op/opi/TheBox_calc.opi rename to opticsApp/op/opi/autoconvert/TheBox_calc.opi index 373ecdf..63a8d03 100644 --- a/opticsApp/op/opi/TheBox_calc.opi +++ b/opticsApp/op/opi/autoconvert/TheBox_calc.opi @@ -1,3941 +1,4187 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 220 true - 39872d87:13e14015f61:25dc - 3.1.2.20120830 + TheBox_calc + + true + true + false true - 220 - TheBox_calc false - false - - - - - - Display - true 560 - - true - 5 - - false - -1 - -1 - - - 10 10 - + 10 + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 200 + false true - true - 39872d87:13e14015f61:260a - - 200 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 20 - 0 - - false - 1 - - - - - 20 - 240 - - true - 1 - 39872d87:13e14015f61:260b + 20 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + a + + true + 1 + true + Label + 20 + false + 0 + 0 + + + + false - - - - Label - true - a - - - - 20 - 0 - - 1 - 0 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:260c - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + b + + true + 1 + true + Label + 20 + false + 0 + 20 + + + + false - - - - Label - true - b - - - - 20 - 0 - - 1 - 0 - - 20 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:260d - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + c + + true + 1 + true + Label + 20 + false + 0 + 40 + + + + false - - - - Label - true - c - - - - 20 - 0 - - 1 - 0 - - 40 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:260e - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + d + + true + 1 + true + Label + 20 + false + 0 + 60 + + + + false - - - - Label + + + + 0 + 1 true - d - + - 20 - 0 - - 1 - - - - 0 - - 60 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:260f - false - + + + 20 + 0 Label + true true false - true + false + e + + true + 1 + true + Label + 20 + false + 0 + 80 + + + + false - - - - Label - true - e - - - - 20 - 0 - - 1 - 0 - - 80 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:2610 - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + f + + true + 1 + true + Label + 20 + false + 0 + 100 + + + + false - - - - Label - true - f - - - - 20 - 0 - - 1 - 0 - - 100 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:2611 - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + g + + true + 1 + true + Label + 20 + false + 0 + 120 + + + + false - - - - Label - true - g - - - - 20 - 0 - - 1 - 0 - - 120 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:2612 - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + h + + true + 1 + true + Label + 20 + false + 0 + 140 + + + + false - - - - Label - true - h - - - - 20 - 0 - - 1 - 0 - - 140 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:2613 - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + i + + true + 1 + true + Label + 20 + false + 0 + 160 + + + + false - - - - Label - true - i - - - - 20 - 0 - - 1 - 0 - - 160 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:2614 - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true j - - - - 20 - 0 - - 1 - - - - 0 - - 180 - true + true + 1 + true + Label + 20 + false 0 + 180 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:25dd - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(mZ2).VELO + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(mZ2).VELO - - - - false - 0 - - - false - - - - 0 - - 180 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 495 + 180 - - true - 1 - 39872d87:13e14015f61:25de + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + v + + true + 1 + true + Label + 20 + false + 480 + 180 + + + + false - - - - Label - true - v - - - - 20 - 0 - - 1 - 0 - - 180 - true - - 480 - - - true - 1 - 39872d87:13e14015f61:25df - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + v + + true + 1 + true + Label + 20 + false + 480 + 110 + + + + false - - - - Label - true - v - - - - 20 - 0 - - 1 - 0 - - 110 - true - - 480 - - - true - 1 - 39872d87:13e14015f61:25e0 - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + p + + true + 1 + true + Label + 20 + false + 480 + 90 + + + + false - - - - Label - true - p - - - - 20 - 0 - - 1 - 0 - - 90 - true - - 480 - - - true - 1 - 39872d87:13e14015f61:25e1 - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + p + + true + 1 + true + Label + 20 + false + 480 + 160 + + + + false - - - - Label - true - p - - - - 20 - 0 - - 1 - 0 - - 160 - true - - 480 - - - true - 1 - 39872d87:13e14015f61:25e2 - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + v + + true + 1 + true + Label + 20 + false + 480 + 40 + + + + false - - - - Label - true - v - - - - 20 - 0 - - 1 - 0 - - 40 - true - - 480 - - - true - 1 - 39872d87:13e14015f61:25e3 - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true p - - - - 20 - 0 - - 1 - - - - 0 - - 20 - true + true + 1 + true + Label + 20 + false 480 + 20 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:25e4 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(mTH2).VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(mTH2).VAL - - - - false - 0 - - - false - - - - 0 - - 90 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 495 + 90 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:25e5 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(mTH2).VELO + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(mTH2).VELO - - - - false - 0 - - - false - - - - 0 - - 110 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 495 + 110 - - true - 1 - 39872d87:13e14015f61:25e6 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true ($(mTH2)) - - - - 60 - 0 - - 1 - - - - 0 - - 70 - true + true + 1 + true + Label + 60 + false 495 + 70 - - true - 1 - 39872d87:13e14015f61:25e7 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true ($(mTH1)) - - - - 60 - 0 - - 1 - - - - 0 - - 4 - true + true + 1 + true + Label + 60 + false 495 + 4 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:25e8 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(mTH1).VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(mTH1).VAL - - - - false - 0 - - - false - - - - 0 - - 20 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 495 + 20 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:25e9 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(mZ2).VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(mZ2).VAL - - - - false - 0 - - - false - - - - 0 - - 160 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 495 + 160 - - true - 1 - 39872d87:13e14015f61:25ea + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true ($(mZ2)) - - - - 60 - 0 - - 1 - - - - 0 - - 140 - true + true + 1 + true + Label + 60 + false 495 + 140 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input - true - - - - - 60 + false + + + 3 - 1 + + true + + + + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:25eb - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(mTH1).VELO + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(mTH1).VELO - - - - false - 0 - - - false - - - - 0 - - 40 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 495 + 40 - - true - 1 - 39872d87:13e14015f61:25ec + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + b + + true + 1 + true + Label + 20 + false + 2 + 40 + + + + false - - - - Label - true - b - - - - 20 - 0 - - 1 - 0 - - 40 - true - - 2 - - - true - 1 - 39872d87:13e14015f61:25ed - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + a + + true + 1 + true + Label + 20 + false + 2 + 20 + + + + false - - - - Label - true - a - - - - 20 - 0 - - 1 - 0 - - 20 - true - - 2 - - - true - 1 - 39872d87:13e14015f61:25ee - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + c + + true + 1 + true + Label + 20 + false + 2 + 60 + + + + false - - - - Label - true - c - - - - 20 - 0 - - 1 - 0 - - 60 - true - - 2 - - - true - 1 - 39872d87:13e14015f61:25ef - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + d + + true + 1 + true + Label + 20 + false + 2 + 80 + + + + false - - - - Label - true - d - - - - 20 - 0 - - 1 - 0 - - 80 - true - - 2 - - - true - 1 - 39872d87:13e14015f61:25f0 - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + e + + true + 1 + true + Label + 20 + false + 2 + 100 + + + + false - - - - Label - true - e - - - - 20 - 0 - - 1 - 0 - - 100 - true - - 2 - - - true - 1 - 39872d87:13e14015f61:25f1 - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + f + + true + 1 + true + Label + 20 + false + 2 + 120 + + + + false - - - - Label - true - f - - - - 20 - 0 - - 1 - 0 - - 120 - true - - 2 - - - true - 1 - 39872d87:13e14015f61:25f2 - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + g + + true + 1 + true + Label + 20 + false + 2 + 140 + + + + false - - - - Label - true - g - - - - 20 - 0 - - 1 - 0 - - 140 - true - - 2 - - - true - 1 - 39872d87:13e14015f61:25f3 - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + h + + true + 1 + true + Label + 20 + false + 2 + 160 + + + + false - - - - Label - true - h - - - - 20 - 0 - - 1 - 0 - - 160 - true - - 2 - - - true - 1 - 39872d87:13e14015f61:25f4 - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + i + + true + 1 + true + Label + 20 + false + 2 + 180 + + + + false - - - - Label - true - i - - - - 20 - 0 - - 1 - 0 - - 180 - true - - 2 - - - true - 1 - 39872d87:13e14015f61:25f5 - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true j - - - - 20 - 0 - - 1 - - - - 0 - - 200 - true - 2 - - - false - true + true 1 - false + true + Label + 20 + false + 2 + 200 + + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 150 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:25f6 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_TH2Z2.CLCB + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_TH2Z2.CLCB - - - - false - 0 - - - false - - - - 0 - - 40 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 150 80 + 40 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 150 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:25f7 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_TH2Z2.CLCA + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_TH2Z2.CLCA - - - - false - 0 - - - false - - - - 0 - - 20 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 150 80 + 20 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 150 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:25f8 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_TH2Z2.CLCC + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_TH2Z2.CLCC - - - - false - 0 - - - false - - - - 0 - - 60 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 150 80 + 60 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 150 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:25f9 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_TH2Z2.CLCD + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_TH2Z2.CLCD - - - - false - 0 - - - false - - - - 0 - - 80 + false + true + false + false + + $(pv_name) $(pv_value) - 80 - - - false + false true - 1 - false + Text Input + 150 + 80 + 80 + + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 150 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:25fa - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_TH2Z2.CLCE + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_TH2Z2.CLCE - - - - false - 0 - - - false - - - - 0 - - 100 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 150 80 + 100 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 150 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:25fb - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_TH2Z2.CLCF + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_TH2Z2.CLCF - - - - false - 0 - - - false - - - - 0 - - 120 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 150 80 + 120 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 150 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:25fc - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_TH2Z2.CLCG + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_TH2Z2.CLCG - - - - false - 0 - - - false - - - - 0 - - 140 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 150 80 + 140 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 150 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:25fd - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_TH2Z2.CLCH + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_TH2Z2.CLCH - - - - false - 0 - - - false - - - - 0 - - 160 - $(pv_name) + false + true + false + false + + + $(pv_name) $(pv_value) + false + true + Text Input + 150 80 + 160 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 150 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:25fe - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_TH2Z2.CLCI + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_TH2Z2.CLCI - - - - false - 0 - - - false - - - - 0 - - 180 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 150 80 + 180 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 150 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:25ff - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_TH2Z2.CLCJ + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_TH2Z2.CLCJ - - - - false - 0 - - - false - - - - 0 - - 200 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 150 80 + 200 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2600 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_TH2Z2.B + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_TH2Z2.B - - - - false - 0 - - - false - - - - 0 - - 40 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 20 + 40 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2601 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_TH2Z2.A + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_TH2Z2.A - - - - false - 0 - - - false - - - - 0 - - 20 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 20 + 20 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2602 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_TH2Z2.C + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_TH2Z2.C - - - - false - 0 - - - false - - - - 0 - - 60 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 20 + 60 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2603 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_TH2Z2.D + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_TH2Z2.D - - - - false - 0 - - - false - - - - 0 - - 80 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 20 + 80 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2604 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_TH2Z2.E + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_TH2Z2.E - - - - false - 0 - - - false - - - - 0 - - 100 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 20 + 100 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2605 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_TH2Z2.F + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_TH2Z2.F - - - - false - 0 - - - false - - - - 0 - - 120 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 20 + 120 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2606 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_TH2Z2.G + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_TH2Z2.G - - - - false - 0 - - - false - - - - 0 - - 140 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 20 + 140 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2607 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_TH2Z2.H + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_TH2Z2.H - - - - false - 0 - - - false - - - - 0 - - 160 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 20 + 160 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2608 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_TH2Z2.I + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_TH2Z2.I - - - - false - 0 - - - false - - - - 0 - - 180 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 20 + 180 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2609 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_TH2Z2.J + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_TH2Z2.J - - - - false - 0 - - - false - - - - 0 - - 200 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 20 + 200 - - false - true - 1 - false + + + false false - - 19 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 150 - 3 - - 1 + false + + + + 1 + 19 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2615 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_put.CLCA + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_put.CLCA - - - - false - 0 - - - false - - - - 0 - - 20 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 150 315 + 20 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 150 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2616 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_put.CLCB + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_put.CLCB - - - - false - 0 - - - false - - - - 0 - - 40 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 150 315 + 40 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 150 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2617 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_put.CLCC + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_put.CLCC - - - - false - 0 - - - false - - - - 0 - - 60 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 150 315 + 60 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 150 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2618 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_put.CLCD + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_put.CLCD - - - - false - 0 - - - false - - - - 0 - - 80 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 150 315 + 80 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 150 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2619 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_put.CLCE + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_put.CLCE - - - - false - 0 - - - false - - - - 0 - - 100 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 150 315 + 100 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 150 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:261a - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_put.CLCF + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_put.CLCF - - - - false - 0 - - - false - - - - 0 - - 120 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 150 315 + 120 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 150 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:261b - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_put.CLCG + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_put.CLCG - - - - false - 0 - - - false - - - - 0 - - 140 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 150 315 + 140 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 150 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:261c - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_put.CLCH + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_put.CLCH - - - - false - 0 - - - false - - - - 0 - - 160 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 150 315 + 160 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 150 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:261d - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_put.CLCI + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_put.CLCI - - - - false - 0 - - - false - - - - 0 - - 180 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 150 315 + 180 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 150 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:261e - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_put.CLCJ + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_put.CLCJ - - - - false - 0 - - - false - - - - 0 - - 200 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 150 315 + 200 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:261f - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_put.A + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_put.A - - - - false - 0 - - - false - - - - 0 - - 20 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 255 + 20 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2620 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_put.B + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_put.B - - - - false - 0 - - - false - - - - 0 - - 40 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 255 + 40 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2621 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_put.C + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_put.C - - - - false - 0 - - - false - - - - 0 - - 60 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 255 + 60 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2622 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_put.D + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_put.D - - - - false - 0 - - - false - - - - 0 - - 80 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 255 + 80 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2623 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_put.E + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_put.E - - - - false - 0 - - - false - - - - 0 - - 100 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 255 + 100 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2624 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_put.F + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_put.F - - - - false - 0 - - - false - - - - 0 - - 120 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 255 + 120 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2625 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_put.G + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_put.G - - - - false - 0 - - - false - - - - 0 - - 140 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 255 + 140 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2626 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_put.H + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_put.H - - - - false - 0 - - - false - - - - 0 - - 160 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 255 + 160 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2627 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_put.I + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_put.I - - - - false - 0 - - - false - - - - 0 - - 180 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 255 + 180 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2628 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)TheBox_put.J + + false + 0.0 + true true false - 1 - false + 0 - $(P)TheBox_put.J - - - - false - 0 - - - false - - - - 0 - - 200 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 255 + 200 - - true - true - 1 - false - 39872d87:13e14015f61:2629 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)TheBox_TH2Z2.DESC + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)TheBox_TH2Z2.DESC - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 225 - 0 - - - 1 - - - - 0 - - 2 false - $(pv_name) -$(pv_value) 2 + 2 - - true - true - 1 - false - 39872d87:13e14015f61:262a + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)TheBox_put.DESC + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)TheBox_put.DESC - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 225 - 0 - - - 1 - - - - 0 - - 2 false - $(pv_name) -$(pv_value) 240 + 2 - \ No newline at end of file + diff --git a/opticsApp/op/opi/TheBox_graphic.opi b/opticsApp/op/opi/autoconvert/TheBox_graphic.opi similarity index 87% rename from opticsApp/op/opi/TheBox_graphic.opi rename to opticsApp/op/opi/autoconvert/TheBox_graphic.opi index 0098b1d..8f2da9b 100644 --- a/opticsApp/op/opi/TheBox_graphic.opi +++ b/opticsApp/op/opi/autoconvert/TheBox_graphic.opi @@ -1,4039 +1,3999 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 350 true - 39872d87:13e14015f61:267b - 3.1.2.20120830 + TheBox_graphic + + true + true + false true - 350 - TheBox_graphic false - false - - - - - - Display - true 525 - - true - 5 - - false - -1 - -1 - - - 10 10 - + 10 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 320 + true - 39872d87:13e14015f61:267c - - - - - 320 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 500 + 10 + 25 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 500 - 0 - 0 - - - 1 - 0 - true - - - - - 25 - $(pv_name) -$(pv_value) - 10 + false + + + false - - - false - true - 100.0 + 169 + true - 39872d87:13e14015f61:267d - - - - - 169 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 100 + 368 + 92 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 - 0 - 0 - - - 1 - 0 - true - - - - - 92 - $(pv_name) -$(pv_value) - 368 + false + + + false - - - false - true - 0.0 + 169 + true - + - 39872d87:13e14015f61:267e - - - - - 169 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 100 + 368 + 92 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 100 + false + + + + false + 203 + true + + + 0 - 0 - + 0 + Rectangle + - 1 - 2 - true - - - - - 92 - $(pv_name) -$(pv_value) - 368 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:2692 - - - - - 203 - true - Rectangle - false - 255 + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 100 + 73 + 90 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 - 0 - 0 - - - 1 - 0 - true - - - - - 90 - $(pv_name) -$(pv_value) - 73 + false + + + false - - - false - true - 0.0 + 203 + true - + - 39872d87:13e14015f61:2693 - - - - - 203 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 100 + 73 + 90 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 100 - 0 - 0 - - - 1 - 2 - true - - - - - 90 - $(pv_name) -$(pv_value) - 73 + false + + + false - - - false - true - 100.0 + 75 + true - 39872d87:13e14015f61:26a7 - - - - - 75 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 175 + 76 + 178 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 175 - 0 - 0 - - - 1 - 0 - true - - - - - 178 - $(pv_name) -$(pv_value) - 76 + false + + + false - - - false - true - 100.0 + 75 + true - 39872d87:13e14015f61:26a8 - - - - - 75 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 175 + 290 + 97 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 175 - 0 - 0 - - - 1 - 0 - true - - - - - 97 - $(pv_name) -$(pv_value) - 290 + false + + + false - - - false - true - 0.0 + 75 + true - + - 39872d87:13e14015f61:26a9 - - - - - 75 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 175 + 76 + 178 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 175 - 0 - 0 - - - 1 - 2 - true - - - - - 178 - $(pv_name) -$(pv_value) - 76 + false + + + false - - - false - true - 0.0 + 320 + true - + - 39872d87:13e14015f61:26c0 - - - - - 320 - true + 0 + 3 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 500 + 10 + 25 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 500 - 0 - 0 - - - 1 - 3 - true - - - - - 25 - $(pv_name) -$(pv_value) - 10 + false + + + false - - - false - true - 0.0 + 30 + true - + - 39872d87:13e14015f61:26c1 - - - - - 30 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 100 + 73 + 295 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 - 0 - 0 - - - 1 - 2 - true - - - - - 295 - $(pv_name) -$(pv_value) - 73 + false + + + false - - - false - true - 0.0 + 30 + true - + - 39872d87:13e14015f61:26c6 - - - - - 30 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 250 + 236 + 295 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 250 - 0 - 0 - - - 1 - 2 - true - - - - - 295 - $(pv_name) -$(pv_value) - 236 + false + + + false - - - false - true - 100.0 + 20 + true - 39872d87:13e14015f61:26c7 - - - - - 20 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 30 + 205 + 300 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 30 - 0 - 0 - - - 1 - 0 - true - - - - - 300 - $(pv_name) -$(pv_value) - 205 + false + + + false - - - false - true - 0.0 + 30 + true - + - 39872d87:13e14015f61:26ca - - - - - 30 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 100 + 368 + 263 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 100 - 0 - 0 - - - 1 - 2 - true - - - - - 263 - $(pv_name) -$(pv_value) - 368 + false + + + false - - - false - true - 100.0 + 30 + true - 39872d87:13e14015f61:26cf - - - - - 30 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 25 + 404 + 61 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 25 - 0 - 0 - - - 1 - 0 - true - - - - - 61 - $(pv_name) -$(pv_value) - 404 + false + + + false - - - false - true - 100.0 + 30 + true - 39872d87:13e14015f61:26d2 - - - - - 30 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle + 25 + 114 + 59 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 25 - 0 - 0 - - - 1 - 0 - true - - - - - 59 - $(pv_name) -$(pv_value) - 114 + false + + + false - - - false - true - 0.0 + 75 + true - + - 39872d87:13e14015f61:26d5 - - - - - 75 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 175 + 290 + 97 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 175 - 0 - 0 - - - 1 - 2 - true - - - - - 97 - $(pv_name) -$(pv_value) - 290 + false + + + false - - - false - true - 100.0 + 30 + true - 39872d87:13e14015f61:26d8 - - - - - 30 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle - true - - - - false - - Default - 25 - 0 - 0 - - - 1 - 0 - true + 288 + 66 + + + + + + - - 66 - $(pv_name) -$(pv_value) - 288 - false - - + 0 + 1 + true + false + + Default + + + + + 102 + false true - true - 39872d87:13e14015f61:267f - - 102 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 9 - 0 - - false - 1 - - - - - 94 - 411 - - false - true - 0.0 - - - - 39872d87:13e14015f61:2691 - - - - - 102 - true - Rectangle - false + 94 + + + false 255 - - true - true - false - - true - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 9 + false + + + + false + 102 + true + + + 0 - 0 - - - 1 1 - true - - - - - 0 + Rectangle + + + + + true + true + false + + $(pv_name) $(pv_value) + true + true + Rectangle + 9 0 - false + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 100 + false true - true - 39872d87:13e14015f61:2680 - - 100 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 8 - 0 - - false - 1 - - - - - 0 - 1 - + 0 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2681 - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 0 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 0 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2682 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 6 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 6 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2683 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - 1 - 1 - true - - - - - 12 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 9 0 + 12 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2684 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 18 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 18 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2685 - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 25 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 25 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2686 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 31 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 31 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2687 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 37 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 37 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2688 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 43 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 43 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2689 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 50 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 50 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:268a - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 56 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 56 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:268b - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 63 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 63 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:268c - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 69 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 69 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:268d - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 75 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 75 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:268e - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - 1 - 1 - true - - - - - 81 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:268f 0.0 - - 0 - 7 - true - Polyline - false - 255 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 81 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 87 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2690 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 87 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 9 + false + + + + 7 + true 0 - 0 - - - 1 1 - true - - - - - 94 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 9 0 + 94 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 102 + false true - true - 39872d87:13e14015f61:2694 - - 102 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 9 - 0 - - false - 1 - - - - - 92 - 121 - - false - true - 0.0 - - - - 39872d87:13e14015f61:26a6 - - - - - 102 - true - Rectangle - false + 92 + + + false 255 - - true - true - false - - true - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 9 + false + + + + false + 102 + true + + + 0 - 0 - - - 1 1 - true - - - - - 0 + Rectangle + + + + + true + true + false + + $(pv_name) $(pv_value) + true + true + Rectangle + 9 0 - false + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 100 + false true - true - 39872d87:13e14015f61:2695 - - 100 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 8 - 0 - - false - 1 - - - - - 0 - 1 - + 0 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2696 - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - 1 - 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2697 0.0 - - 0 - 7 - true - Polyline - false - 255 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 0 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 6 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2698 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 6 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 12 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2699 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 12 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 9 + false + + + + 7 + true 0 - 0 - - - 1 1 - true - - - - - 18 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 9 0 + 18 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:269a - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 25 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 25 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:269b - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 31 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 9 - 0 - 0 - - - 1 - 1 - true - - - - - 31 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:269c - 0.0 - - 0 + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 37 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 37 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:269d - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 43 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 43 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:269e - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 50 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 50 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:269f - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 56 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 56 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:26a0 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - 1 - 1 - true - - - - - 63 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:26a1 0.0 - - 0 - 7 - true - Polyline - false - 255 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 63 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 69 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:26a2 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 69 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 75 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:26a3 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - - - - - - - + true Polyline - true - false - - Default - 9 - 0 - 0 - - - 1 - 1 - true - - - - - 81 - $(pv_name) -$(pv_value) 0 + 75 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:26a4 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 81 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 87 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:26a5 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 87 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 9 + false + + + + 7 + true 0 - 0 - - - 1 1 - true - - - - - 94 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 9 0 + 94 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 30 + false true - true - 39872d87:13e14015f61:26aa - - 30 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 25 - 0 - - false - 1 - - - - - 145 - 226 - - false - true - 100.0 - - - - 39872d87:13e14015f61:26ab + 145 + + + false + 255 + true + false + + + - - 30 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 25 + false + + + + false + 30 + true + + + 0 - 0 - - - 1 0 - true - - - - - 0 + Rectangle + + + + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 25 0 - false + 0 - - true - 1 - 39872d87:13e14015f61:26ac + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false - - - - - - - Label - true TH1 - - - - 20 - 0 - - 1 - - - - 1 - - 8 - true + true + 1 + true + Label + 20 + false 3 + 8 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 50 + false true - true - 39872d87:13e14015f61:26af - - 50 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 6 - 0 - - false - 1 - - - - - 176 - 236 - - false - true - 0.0 - - - - 39872d87:13e14015f61:26bb - - - - - 50 - true - Rectangle - false + 176 + + + false 255 - - true - true - false - - true - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 6 + false + + + + false + 50 + true + + + 0 - 0 - - - 1 1 - true - - - - - 0 + Rectangle + + + + + true + true + false + + $(pv_name) $(pv_value) + true + true + Rectangle + 6 0 - false + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 49 + false true - true - 39872d87:13e14015f61:26b0 - - 49 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 5 - 0 - - false - 1 - - - - - 0 - 0 - + 0 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:26b1 - 0.0 - - 0 + + Default + + false + + + 5 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 0 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true + false - - 0 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:26b2 - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 5 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true + false - - 5 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:26b3 - 0.0 - - 0 + + Default + + false + + + 5 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - 1 - 1 - true - - - - - 10 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:26b4 0.0 - - 0 - 6 - true - Polyline - false - 255 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 10 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 7 + false + + + + 6 + true 0 - 0 - - - 1 1 - true - - - - - 14 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 7 0 + 14 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:26b5 - 0.0 - - 0 + + Default + + false + + + 5 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 20 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true + false - - 20 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:26b6 - 0.0 - - 0 + + Default + + false + + + 5 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 25 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true + false - - 25 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:26b7 - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 29 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 7 + false + + + + 6 + true 0 - 0 - - - 1 1 - true - - - - - 29 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:26b8 - 0.0 - - 0 - 6 - true Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 34 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true + false - - 34 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:26b9 - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 39 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true + false - - 39 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:26ba - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - 1 - 1 - true - - - - - 44 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 7 0 + 44 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 20 + false true - true - 39872d87:13e14015f61:26c2 - - 20 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 42 - 0 - - false - 1 - - - - - 300 - 115 - - false - true - 100.0 - - - - 39872d87:13e14015f61:26c3 - - - - - 20 - true - Ellipse - false + 300 + + + false 255 - - true - true - true - - false - + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 20 + false + + + + false + 20 + true + + + 0 - 0 - - - 1 0 - true - - - - - 0 + Ellipse + + + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Ellipse + 20 0 - false + 0 - - true - 1 - 39872d87:13e14015f61:26c4 + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - X1 - - - - 15 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 1 - - 3 - true - - 3 - - - false - true - false - 39872d87:13e14015f61:26c5 - - 20 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 0 + + false + X1 + + true + 1 + true + Label + 15 + false + 3 + 3 + + motorx.opi @@ -4041,7 +4001,7 @@ $(pv_value) true $(mX1) - 0 + 1 mX1 (S) @@ -4050,7 +4010,7 @@ $(pv_value) true $(mX1) - 0 + 1 mX1 (M) @@ -4059,1006 +4019,1013 @@ $(pv_value) true $(mX1) - 0 + 1 mX1 (L) + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 20 22 + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 50 + false true - true - 39872d87:13e14015f61:26e5 - - 50 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 6 - 0 - - false - 1 - - - - - 98 - 298 - - false - true - 0.0 - - - - 39872d87:13e14015f61:26f1 + 98 + + + false + 255 + true + false + + + - - 50 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 6 + false + + + + false + 50 + true + + + 0 - 0 - - - 1 1 - true - - - - - 0 + Rectangle + + + + + true + true + false + + $(pv_name) $(pv_value) + true + true + Rectangle + 6 0 - false + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 49 + false true - true - 39872d87:13e14015f61:26e6 - - 49 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 5 - 0 - - false - 1 - - - - - 0 - 0 - + 0 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:26e7 - 0.0 - - 0 + + Default + + false + + + 5 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 0 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true + false - - 0 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:26e8 - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 5 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 7 + false + + + + 5 + true 0 - 0 - - - 1 1 - true - - - - - 5 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:26e9 - 0.0 - - 0 - 5 - true Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 10 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true + false - - 10 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:26ea - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 14 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true + false - - 14 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:26eb - 0.0 - - 0 + + Default + + false + + + 5 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 20 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true + false - - 20 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:26ec - 0.0 - - 0 + + Default + + false + + + 5 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - - - - - - - + true Polyline - true - false - - Default - 7 - 0 - 0 - - - 1 - 1 - true - - - - - 25 - $(pv_name) -$(pv_value) 0 + 25 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:26ed - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 29 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true + false - - 29 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:26ee - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 34 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true + false - - 34 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:26ef - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 39 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true + false - - 39 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:26f0 - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - 1 - 1 - true - - - - - 44 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 7 0 + 44 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 20 + false true - true - 39872d87:13e14015f61:26f2 - - 20 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 40 - 0 - - false - 1 - - - - - 40 - 280 - - false - true - 39872d87:13e14015f61:26f3 - - 20 - Action Button - false - - true - true - false - - $(P)$(mTH2).TWR - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - - 0 + 40 + $(P)$(mTH2).TWR 1 10 + $(P)$(mTH2).TWR 0 10 + - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:26f4 - - 20 - Action Button - false - - true - true - false - - $(P)$(mTH2).TWF + false + false - + - - - - Action Button + false + + + + 0 + 1 true - + - false - Default + Default - 20 - 0 + false + + + + 20 + + Action Button 0 - - + $(P)$(mTH2).TWR + + + true + true + false + + + + - true - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 0 0 + + $(P)$(mTH2).TWF 1 10 + $(P)$(mTH2).TWF 0 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(mTH2).TWF + + + + true + true + false + + + + + + true $(pv_name) $(pv_value) + true + Action Button + 20 20 + 0 - + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 60 + true - 39872d87:13e14015f61:26ad - - - - - 60 - true + 0 + 0 Ellipse - false - 255 + + + true true true + + $(pv_name) +$(pv_value) false - + true + Ellipse + 60 + 180 + 185 + + + + false + 255 + true + 20 + 0 + false - - - - Ellipse - true - - - - false - - Default - - 60 - 0 - 0 - - - 1 - 0 - true + false - - 185 - $(pv_name) -$(pv_value) - 180 - false - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:26ae - 0.0 - - 0 + + Default + + false + + + 10 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 27 - 0 - 0 - - 1 - 1 - true - - - - - 210 - $(pv_name) -$(pv_value) - 198 - - - false - true - false - 39872d87:13e14015f61:26bc - - 20 - Menu Button - false + 0.0 + true true - false + true - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 150 + + $(pv_name) +$(pv_value) + true + true + Polyline + 27 + 198 + 210 + + motorx.opi @@ -5066,7 +5033,7 @@ $(pv_value) true $(mTH1) - 0 + 1 mTheta1 (S) @@ -5075,7 +5042,7 @@ $(pv_value) true $(mTH1) - 0 + 1 mTheta1 (M) @@ -5084,248 +5051,253 @@ $(pv_value) true $(mTH1) - 0 + 1 mTheta1 (L) - $(pv_name) -$(pv_value) - 203 - - + false + false + false + + + false - true - 39872d87:13e14015f61:26bd - + + + + 6 + 1 + true + + Default + + false + + + 20 - Action Button - false + + Menu Button + + + true true false - $(P)$(mY1).TWF - - - - - - - Action Button - true - + - false - - Default - + + false + $(pv_name) +$(pv_value) + false + true + Menu Button 20 - 0 - 0 - - - - true - 1 - - - - 40 + 203 + 150 + + $(P)$(mY1).TWF 1 10 + $(P)$(mY1).TWF 0 10 + - $(pv_name) -$(pv_value) - 125 - - + false + false + + + false - true - 39872d87:13e14015f61:26be - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(mY1).TWF + + true true false - $(P)$(mY1).TWR - - - - - - + + + + + true + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 20 - 0 - 0 - - - - true - 1 - - - + 125 40 + + $(P)$(mY1).TWR 1 10 + $(P)$(mY1).TWR 0 10 + - $(pv_name) -$(pv_value) - 105 - - - true - 1 - 39872d87:13e14015f61:26bf - false - - 12 - Label + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(mY1).TWR + + true true false - true - false + + + - + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 105 + 40 + + + + false - - - - Label - true - $(mY1) - - - - 50 - 0 - - 1 + 0 + 1 + true + + + + + + + 12 1 - - 30 - true - - 100 - - - true - 1 - 39872d87:13e14015f61:26c8 - false - - 14 Label + true true false - true + false + $(mY1) + + true + 1 + true + Label + 50 + false + 100 + 30 + + + + false - - - - Label - true - Z2 - - - - 15 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 1 - - 303 - true - - 212 - - - false - true - false - 39872d87:13e14015f61:26c9 - - 20 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 300 + + false + Z2 + + true + 1 + true + Label + 15 + false + 212 + 303 + + motorx.opi @@ -5333,7 +5305,7 @@ $(pv_value) true $(mZ2) - 0 + 1 mZ2 (S) @@ -5342,7 +5314,7 @@ $(pv_value) true $(mZ2) - 0 + 1 mZ2 (M) @@ -5351,191 +5323,190 @@ $(pv_value) true $(mZ2) - 0 + 1 mZ2 (L) + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 20 184 + 300 - - true - 1 - 39872d87:13e14015f61:26cb + + false - + + + + + + + 0 + 1 + true + + + + + + 12 + 1 Label + true true false - true + false - - - - - - - Label - true $(mX2) - - - - 50 - 0 - - 1 - - - - 1 - - 298 - true + true + 1 + true + Label + 50 + false 368 + 298 - - false - true - 100.0 - - - - 39872d87:13e14015f61:26cc - - - - - 20 - true - Ellipse - false + + + false 255 - - true - true - true - - false - + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 20 + false + + + + false + 20 + true + + + 0 - 0 - - - 1 0 - true - - - - - 268 + Ellipse + + + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Ellipse + 20 409 - false + 268 - - true - 1 - 39872d87:13e14015f61:26cd + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - X2 - - - - 15 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 1 - - 271 - true - - 412 - - - false - true - false - 39872d87:13e14015f61:26ce - - 20 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 268 + + false + X2 + + true + 1 + true + Label + 15 + false + 412 + 271 + + motorx.opi @@ -5543,7 +5514,7 @@ $(pv_value) true $(mX2) - 0 + 1 mX2 (S) @@ -5552,7 +5523,7 @@ $(pv_value) true $(mX2) - 0 + 1 mX2 (M) @@ -5561,93 +5532,93 @@ $(pv_value) true $(mX2) - 0 - mX2 (L) - - - $(pv_name) -$(pv_value) - 431 - - - true - 1 - 39872d87:13e14015f61:26d0 - false - - 14 - Label - - true - true - false - - true - false + 1 + mX2 (L) + + + false + false + false - + - - - - Label - true - Y2 - - - - 15 - 0 - - 1 + false - 1 - - 69 - true - - 409 - - - false - true - false - 39872d87:13e14015f61:26d1 - + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + + + true true false + + false + $(pv_name) +$(pv_value) false - + true + Menu Button + 20 + 431 + 268 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 20 - 6 - + + + + 14 + 1 + Label - - 1 - - - - 67 + + true + true + false + + + false + Y2 + + true + 1 + true + Label + 15 + false + 409 + 69 + + motorx.opi @@ -5655,7 +5626,7 @@ $(pv_value) true $(mY2) - 0 + 1 mY2 (S) @@ -5664,7 +5635,7 @@ $(pv_value) true $(mY2) - 0 + 1 mY2 (M) @@ -5673,93 +5644,93 @@ $(pv_value) true $(mY2) - 0 + 1 mY2 (L) - $(pv_name) -$(pv_value) - 432 - - - true - 1 - 39872d87:13e14015f61:26d3 - false - - 14 - Label - - true - true - false - - true - false + false + false + false - + - - - - Label - true - Y1 - - - - 15 - 0 - - 1 + false - 1 - - 67 - true - - 119 - - - false - true - false - 39872d87:13e14015f61:26d4 - + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + + + true true false + + false + $(pv_name) +$(pv_value) false - + true + Menu Button + 20 + 432 + 67 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 20 - 6 - + + + + 14 + 1 + Label - - 1 - - - - 61 + + true + true + false + + + false + Y1 + + true + 1 + true + Label + 15 + false + 119 + 67 + + motorx.opi @@ -5767,7 +5738,7 @@ $(pv_value) true $(mY1) - 0 + 1 mY1 (S) @@ -5776,7 +5747,7 @@ $(pv_value) true $(mY1) - 0 + 1 mY1 (M) @@ -5785,205 +5756,205 @@ $(pv_value) true $(mY1) - 0 + 1 mY1 (L) + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 20 141 + 61 - + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 60 + true - 39872d87:13e14015f61:26d6 - - - - - 60 - true + 0 + 0 Ellipse - false - 255 + + + true true true + + $(pv_name) +$(pv_value) false - + true + Ellipse + 60 + 300 + 105 + + + + false + 255 + true + 20 + 0 + false - - - - Ellipse - true - - - - false - - Default - - 60 - 0 - 0 - - - 1 - 0 - true + false - - 105 - $(pv_name) -$(pv_value) - 300 - false - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:26d7 - 0.0 - - 0 + + Default + + false + + + 10 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 27 - 0 - 0 - - 1 - 1 - true - - - - - 130 - $(pv_name) -$(pv_value) - 318 - - - true - 1 - 39872d87:13e14015f61:26d9 - false - - 14 - Label + 0.0 + true true - false + true + + $(pv_name) +$(pv_value) true - false + true + Polyline + 27 + 318 + 130 + + + + false - - - - Label - true - TH2 - - - - 20 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 1 - - 74 - true - - 291 - - - false - true - false - 39872d87:13e14015f61:26da - - 20 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + false + TH2 + + true + 1 + true + Label 20 - 6 - - - - 1 - - - - 71 + false + 291 + 74 + + motorx.opi @@ -5991,7 +5962,7 @@ $(pv_value) true $(mTH2) - 0 + 1 mTheta2 (S) @@ -6000,7 +5971,7 @@ $(pv_value) true $(mTH2) - 0 + 1 mTheta2 (M) @@ -6009,1776 +5980,1839 @@ $(pv_value) true $(mTH2) - 0 + 1 mTheta2 (L) + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 20 315 + 71 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:26db - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 211 + 0 + 213 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 211 - 0 - 0 - - - 1 - 1 - true + false - - 213 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:26dc - 0.0 - - 0 + + Default + + false + + + 80 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 123 + 209 + 135 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 123 - 0 - 0 - - - 1 - 1 - true + false - - 135 - $(pv_name) -$(pv_value) - 209 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:26dd - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 190 - 0 - 0 - - 1 - 1 - true - - - - - 135 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 190 331 + 135 - - true - 1 - 39872d87:13e14015f61:26de + + false - + + + + + + + 0 + 1 + true + + + + + + 12 + 1 Label + true true false - true + false - - - - - - - Label - true $(mTH1) - - - - 50 - 0 - - 1 - - - - 1 - - 112 - true + true + 1 + true + Label + 50 + false 212 + 112 - - true - 1 - 39872d87:13e14015f61:26df + + false - + + + + + + + 0 + 1 + true + + + + + + 12 + 1 Label + true true false - true + false + $(mX1) + + true + 1 + true + Label + 40 + false + 73 + 325 + + + + false - - - - Label - true - $(mX1) - - - - 40 - 0 - - 1 - 1 - - 325 - true - - 73 - - - true - 1 - 39872d87:13e14015f61:26e0 - false - + 0 + 1 + true + + + + + + 12 + 1 Label + true true false - true + false + $(mZ2) + + true + 1 + true + Label + 50 + false + 189 + 266 + + + + false - - - - Label - true - $(mZ2) - - - - 50 - 0 - - 1 - 1 - - 266 - true - - 189 - - - true - 1 - 39872d87:13e14015f61:26e1 - false - + 0 + 1 + true + + + + + + 12 + 1 Label + true true false - true + false + $(mTH2) + + true + 1 + true + Label + 50 + false + 275 + 30 + + + + false - - - - Label - true - $(mTH2) - - - - 50 - 0 - - 1 - 1 - - 30 - true - - 275 - - - true - 1 - 39872d87:13e14015f61:26e2 - false - + 0 + 1 + true + + + + + + 12 + 1 Label + true true false - true + false - - - - - - - Label - true $(mY2) - - - - 50 - 0 - - 1 - - - - 1 - - 30 - true + true + 1 + true + Label + 50 + false 391 + 30 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:26e3 - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 49 - 0 - 0 - - 1 - 1 - true - - - - - 203 - $(pv_name) -$(pv_value) - 17 - - - true - 1 - 39872d87:13e14015f61:26e4 - false - - 20 - Label + 0.0 + true true - false + true + + $(pv_name) +$(pv_value) true - false + true + Polyline + 49 + 17 + 203 + + + + false - - - - Label - true - > - - - - 13 - 0 - - 1 - 1 - - 127 - true - - 509 - - - false - true - 39872d87:13e14015f61:26f5 - + 0 + 1 + true + + + + + + 20 - Action Button - false + 2 + Label + true true false - $(P)$(mY2).TWR - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - - 41 + + false + > + + true + 1 + true + Label + 13 + false + 509 + 127 + + $(P)$(mY2).TWR 1 10 + $(P)$(mY2).TWR 0 10 + - $(pv_name) -$(pv_value) - 395 - - + false + false + + + false - true - 39872d87:13e14015f61:26f6 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(mY2).TWR + + true true false - $(P)$(mY2).TWF - - - - - - + + + - + true + $(pv_name) +$(pv_value) + true Action Button - true - + - false - - Default - 20 - 0 - 0 - - - - true - 1 - - - + 395 41 + + $(P)$(mY2).TWF 1 10 + $(P)$(mY2).TWF 0 10 + - $(pv_name) -$(pv_value) - 415 - - + false + false + + + false - true - 39872d87:13e14015f61:26f7 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(mY2).TWF + + true true false - $(P)$(mTH1).TWR - - - - - - + + + + + true + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 20 - 0 - 0 - - - - true - 1 - - - - 125 + 415 + 41 + + $(P)$(mTH1).TWR 1 10 + $(P)$(mTH1).TWR 0 10 + - $(pv_name) -$(pv_value) - 218 - - + false + false + + + false - true - 39872d87:13e14015f61:26f8 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(mTH1).TWR + + true true false - $(P)$(mTH1).TWF - - - - - - + + + - + true + $(pv_name) +$(pv_value) + true Action Button - true - + - false - - Default - 20 - 0 - 0 - - - - true - 1 - - - + 218 125 + + $(P)$(mTH1).TWF 1 10 + $(P)$(mTH1).TWF 0 10 + - $(pv_name) -$(pv_value) - 238 - - + false + false + + + false - true - 39872d87:13e14015f61:26f9 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(mTH1).TWF + + true true false - $(P)$(mZ2).TWR - - - - - - + + + + + true + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 20 - 0 - 0 - - - - true - 1 - - - - 279 + 238 + 125 + + $(P)$(mZ2).TWR 1 10 + $(P)$(mZ2).TWR 0 10 + - $(pv_name) -$(pv_value) - 195 - - + false + false + + + false - true - 39872d87:13e14015f61:26fa - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(mZ2).TWR + + true true false - $(P)$(mZ2).TWF - - - - - - + + + - + true + $(pv_name) +$(pv_value) + true Action Button - true - + - false - - Default - 20 - 0 - 0 - - - - true - 1 - - - + 195 279 + + $(P)$(mZ2).TWF 1 10 + $(P)$(mZ2).TWF 0 10 + - $(pv_name) -$(pv_value) - 215 - - + false + false + + + false - true - 39872d87:13e14015f61:26fb - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(mZ2).TWF + + true true false - $(P)$(mX1).TWR - - - - - - + + + + + true + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 20 - 0 - 0 - - - - true - 1 - - - - 301 + 215 + 279 + + $(P)$(mX1).TWR 1 10 + $(P)$(mX1).TWR 0 10 + - $(pv_name) -$(pv_value) - 75 - - + false + false + + + false - true - 39872d87:13e14015f61:26fc - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(mX1).TWR + + true true false - $(P)$(mX1).TWF - - - - - - + + + - + true + $(pv_name) +$(pv_value) + true Action Button - true - + - false - - Default - 20 - 0 - 0 - - - - true - 1 - - - + 75 301 + + $(P)$(mX1).TWF 1 10 + $(P)$(mX1).TWF 0 10 + - $(pv_name) -$(pv_value) - 95 - - - false - true - 39872d87:13e14015f61:26fd - - 20 - Action Button - false - - true - true - false - - $(P)$(mX2).TWR + false + false - + - - - - Action Button + false + + + + 0 + 1 true - - - false - Default + Default - 20 - 0 - 0 + false + + + + 20 - + Action Button + 0 + $(P)$(mX1).TWF + + + true + true + false + + + + + true - 1 - - - - 269 + $(pv_name) +$(pv_value) + true + Action Button + 20 + 95 + 301 + + $(P)$(mX2).TWR 1 10 + $(P)$(mX2).TWR 0 10 + - $(pv_name) -$(pv_value) - 370 - - + false + false + + + false - true - 39872d87:13e14015f61:26fe - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(mX2).TWR + + true true false - $(P)$(mX2).TWF - - - - - - + + + - + true + $(pv_name) +$(pv_value) + true Action Button - true - + - false - - Default - 20 - 0 - 0 - - - - true - 1 - - - + 370 269 + + $(P)$(mX2).TWF 1 10 + $(P)$(mX2).TWF 0 10 + - $(pv_name) -$(pv_value) - 390 - - + false + false + + + false - true - 0.0 - - - - 39872d87:13e14015f61:26ff - - - - - 60 - true - Ellipse + + + + 0 + 1 + true + + Default + false - 255 + + + + 20 + + Action Button + 0 + $(P)$(mX2).TWF + + true true - true + false - true - + + + + + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 390 + 269 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 60 - 0 - 0 - - - 1 - 2 - true - - - - - 185 - $(pv_name) -$(pv_value) - 180 + false + + + false - - - false - true - 0.0 + 60 + true - + - 39872d87:13e14015f61:2700 - - - - - 60 - true + 0 + 2 Ellipse - false - 255 + + + true true true + + $(pv_name) +$(pv_value) true - + true + Ellipse + 60 + 180 + 185 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 60 + false + + + + false + 60 + true + + + 0 - 0 - - - 1 2 - true + Ellipse + + + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Ellipse + 60 + 300 + 105 + + + + + $(P)allstop.VAL + 1 + 10 + + + + + false + false + + + + false - - 105 - $(pv_name) -$(pv_value) - 300 - false - - - false - true - 39872d87:13e14015f61:2701 - + 0 + 1 + true + + Default + + false + + + 40 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)allstop.VAL - - - - - - - Action Button - true + + All Stop - false - - Default - - 100 - 0 - 0 - - - false - 1 - - - - 195 - - - $(P)allstop.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 100 262 + 195 - - true - true - 1 - false - 39872d87:13e14015f61:2702 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 0 Text Update - false + 0 + true + $(P)$(mY1).RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(mY1).RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 0 - - 42 false - $(pv_name) -$(pv_value) 150 + 42 - - true - true - 1 - false - 39872d87:13e14015f61:2703 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 0 Text Update - false + 0 + true + $(P)$(mX1).RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(mX1).RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 0 - - 325 false - $(pv_name) -$(pv_value) 121 + 325 - - true - true - 1 - false - 39872d87:13e14015f61:2704 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 0 Text Update - false + 0 + true + $(P)$(mZ2).RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(mZ2).RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 0 - - 281 false - $(pv_name) -$(pv_value) 236 + 281 - - true - true - 1 - false - 39872d87:13e14015f61:2705 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 0 Text Update - false + 0 + true + $(P)$(mTH1).RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(mTH1).RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 0 - - 131 false - $(pv_name) -$(pv_value) 172 + 131 - - true - true - 1 - false - 39872d87:13e14015f61:2706 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 0 Text Update - false + 0 + true + $(P)$(mTH2).RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(mTH2).RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 0 - - 49 false - $(pv_name) -$(pv_value) 322 + 49 - - true - true - 1 - false - 39872d87:13e14015f61:2707 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 0 Text Update - false + 0 + true + $(P)$(mY2).RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(mY2).RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 0 - - 45 false - $(pv_name) -$(pv_value) 437 + 45 - - true - true - 1 - false - 39872d87:13e14015f61:2708 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 0 Text Update - false + 0 + true + $(P)$(mX2).RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(mX2).RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 0 - - 298 false - $(pv_name) -$(pv_value) 415 - - - true - true - 1 - false - 39872d87:13e14015f61:2709 + 298 + + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 0 Text Update - false + 0 + true + $(P)$(mY1).DESC + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(mY1).DESC - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 0 - - 30 false - $(pv_name) -$(pv_value) 150 + 30 - - true - 1 - 39872d87:13e14015f61:270a + + false - + + + + + + + 0 + 1 + true + + + + + + 25 + 1 Label + true true false - true + false - - - - - - - Label - true Prototype Monochromator - - - - 500 - 0 - - 1 - - - - 1 - - 0 - true + true + 1 + true + Label + 500 + false 10 + 0 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:270b - 0.0 - - 0 + + Default + + false + + + 17 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - 1 - 1 - true - - - - - 224 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 9 175 + 224 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:270c - 0.0 - - 0 + + Default + + false + + + 17 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 12 - 0 - 0 - - 1 - 1 - true - - - - - 190 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 12 174 + 190 - \ No newline at end of file + diff --git a/opticsApp/op/opi/TheBox_graphic_try.opi b/opticsApp/op/opi/autoconvert/TheBox_graphic_try.opi similarity index 87% rename from opticsApp/op/opi/TheBox_graphic_try.opi rename to opticsApp/op/opi/autoconvert/TheBox_graphic_try.opi index a68dbb4..ecfb586 100644 --- a/opticsApp/op/opi/TheBox_graphic_try.opi +++ b/opticsApp/op/opi/autoconvert/TheBox_graphic_try.opi @@ -1,4039 +1,3999 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 350 true - 39872d87:13e14015f61:27a0 - 3.1.2.20120830 + TheBox_graphic_try + + true + true + false true - 350 - TheBox_graphic_try false - false - - - - - - Display - true 525 - - true - 5 - - false - -1 - -1 - - - 10 10 - + 10 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 320 + true - 39872d87:13e14015f61:27a1 - - - - - 320 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 500 + 10 + 25 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 500 - 0 - 0 - - - 1 - 0 - true - - - - - 25 - $(pv_name) -$(pv_value) - 10 + false + + + false - - - false - true - 0.0 + 320 + true - + - 39872d87:13e14015f61:27a2 - - - - - 320 - true + 0 + 3 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 500 + 10 + 25 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 500 - 0 - 0 - - - 1 - 3 - true - - - - - 25 - $(pv_name) -$(pv_value) - 10 + false + + + false - - - false - true - 100.0 + 203 + true - 39872d87:13e14015f61:27a3 - - - - - 203 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 100 + 73 + 90 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 + false + + + + false + 203 + true + + + 0 - 0 - + 2 + Rectangle + - 1 - 0 - true - - - - - 90 - $(pv_name) -$(pv_value) - 73 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:27a4 - - - - - 203 - true - Rectangle - false - 255 + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 100 + 73 + 90 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 100 - 0 - 0 - - - 1 - 2 - true - - - - - 90 - $(pv_name) -$(pv_value) - 73 + false + + + false - - - false - true - 100.0 + 75 + true - 39872d87:13e14015f61:27a5 - - - - - 75 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 175 + 76 + 178 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 175 - 0 - 0 - - - 1 - 0 - true - - - - - 178 - $(pv_name) -$(pv_value) - 76 + false + + + false - - - false - true - 0.0 + 75 + true - + - 39872d87:13e14015f61:27a6 - - - - - 75 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 175 + 76 + 178 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 175 - 0 - 0 - - - 1 - 2 - true - - - - - 178 - $(pv_name) -$(pv_value) - 76 + false + + + false - - - false - true - 100.0 + 169 + true - 39872d87:13e14015f61:27a9 - - - - - 169 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 100 + 368 + 92 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 - 0 - 0 - - - 1 - 0 - true - - - - - 92 - $(pv_name) -$(pv_value) - 368 + false + + + false - - - false - true - 0.0 + 169 + true - + - 39872d87:13e14015f61:27aa - - - - - 169 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 100 + 368 + 92 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 100 - 0 - 0 - - - 1 - 2 - true - - - - - 92 - $(pv_name) -$(pv_value) - 368 + false + + + false - - - false - true - 100.0 + 75 + true - 39872d87:13e14015f61:27d1 - - - - - 75 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 175 + 290 + 97 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 175 - 0 - 0 - - - 1 - 0 - true - - - - - 97 - $(pv_name) -$(pv_value) - 290 + false + + + false - - - false - true - 0.0 + 30 + true - + - 39872d87:13e14015f61:27e4 - - - - - 30 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 100 + 73 + 295 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 - 0 - 0 - - - 1 - 2 - true - - - - - 295 - $(pv_name) -$(pv_value) - 73 + false + + + false - - - false - true - 0.0 + 30 + true - + - 39872d87:13e14015f61:27e9 - - - - - 30 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 250 + 236 + 295 + + + + false + 255 + true + false - - - - Rectangle - true - + - - false - - Default - - 250 - 0 - 0 - - - 1 - 2 - true + + false - - 295 - $(pv_name) -$(pv_value) - 236 - false - - - false - true + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 20 + true - 39872d87:13e14015f61:27ea - - - - - 20 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 30 + 205 + 300 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 30 - 0 - 0 - - - 1 - 0 - true - - - - - 300 - $(pv_name) -$(pv_value) - 205 + false + + + false - - - false - true - 0.0 + 30 + true - + - 39872d87:13e14015f61:27ed - - - - - 30 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 100 + 368 + 263 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 100 - 0 - 0 - - - 1 - 2 - true - - - - - 263 - $(pv_name) -$(pv_value) - 368 + false + + + false - - - false - true - 100.0 + 30 + true - 39872d87:13e14015f61:27f1 - - - - - 30 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 25 + 404 + 61 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 25 - 0 - 0 - - - 1 - 0 - true - - - - - 61 - $(pv_name) -$(pv_value) - 404 + false + + + false - - - false - true - 100.0 + 30 + true - 39872d87:13e14015f61:27f4 - - - - - 30 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - + true + Rectangle + 25 + 114 + 59 + + + + false + 255 + true + false + - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 25 - 0 - 0 - - - 1 - 0 - true - - - - - 59 - $(pv_name) -$(pv_value) - 114 + false + + + false - - - false - true - 0.0 + 75 + true - + - 39872d87:13e14015f61:27f7 - - - - - 75 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 175 + 290 + 97 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 175 - 0 - 0 - - - 1 - 2 - true - - - - - 97 - $(pv_name) -$(pv_value) - 290 + false + + + false - - - false - true - 100.0 + 30 + true - 39872d87:13e14015f61:27fa - - - - - 30 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle - true - - - - false - - Default - 25 - 0 - 0 - - - 1 - 0 - true + 288 + 66 + + + + + + - - 66 - $(pv_name) -$(pv_value) - 288 - false - - + 0 + 1 + true + false + + Default + + + + + 102 + false true - true - 39872d87:13e14015f61:27ab - - 102 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 9 - 0 - - false - 1 - - - - - 94 - 411 - - false - true - 0.0 - - - - 39872d87:13e14015f61:27bd - - - - - 102 - true - Rectangle - false + 94 + + + false 255 - - true - true - false - - true - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 9 + false + + + + false + 102 + true + + + 0 - 0 - - - 1 1 - true - - - - - 0 + Rectangle + + + + + true + true + false + + $(pv_name) $(pv_value) + true + true + Rectangle + 9 0 - false + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 100 + false true - true - 39872d87:13e14015f61:27ac - - 100 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 8 - 0 - - false - 1 - - - - - 0 - 1 - + 0 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27ad - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 0 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 0 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27ae - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 6 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 6 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27af - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - 1 - 1 - true - - - - - 12 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 9 0 + 12 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27b0 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 18 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 18 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27b1 - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 25 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 25 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27b2 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 31 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 31 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27b3 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 37 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 37 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27b4 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 43 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 43 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27b5 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 50 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 50 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27b6 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 56 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 56 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27b7 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 63 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 63 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27b8 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 69 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 69 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27b9 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 75 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 75 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27ba - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - 1 - 1 - true - - - - - 81 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:27bb 0.0 - - 0 - 7 - true - Polyline - false - 255 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 81 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 87 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27bc - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 87 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 9 + false + + + + 7 + true 0 - 0 - - - 1 1 - true - - - - - 94 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 9 0 + 94 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 102 + false true - true - 39872d87:13e14015f61:27be - - 102 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 9 - 0 - - false - 1 - - - - - 92 - 121 - - false - true - 0.0 - - - - 39872d87:13e14015f61:27d0 - - - - - 102 - true - Rectangle - false + 92 + + + false 255 - - true - true - false - - true - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 9 + false + + + + false + 102 + true + + + 0 - 0 - - - 1 1 - true - - - - - 0 + Rectangle + + + + + true + true + false + + $(pv_name) $(pv_value) + true + true + Rectangle + 9 0 - false + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 100 + false true - true - 39872d87:13e14015f61:27bf - - 100 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 8 - 0 - - false - 1 - - - - - 0 - 1 - + 0 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27c0 - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - 1 - 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:27c1 0.0 - - 0 - 7 - true - Polyline - false - 255 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 0 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 6 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27c2 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 6 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 12 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27c3 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 12 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 9 + false + + + + 7 + true 0 - 0 - - - 1 1 - true - - - - - 18 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 9 0 + 18 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27c4 - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 25 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 25 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27c5 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 31 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 9 - 0 - 0 - - - 1 - 1 - true - - - - - 31 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:27c6 - 0.0 - - 0 + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 37 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 37 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27c7 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 43 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 43 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27c8 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 50 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 50 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27c9 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 56 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 56 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27ca - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - 1 - 1 - true - - - - - 63 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:27cb 0.0 - - 0 - 7 - true - Polyline - false - 255 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 63 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 69 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27cc - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 69 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 75 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27cd - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - - - - - - - + true Polyline - true - false - - Default - 9 - 0 - 0 - - - 1 - 1 - true - - - - - 81 - $(pv_name) -$(pv_value) 0 + 75 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27ce - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 81 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 87 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27cf - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 0 + 87 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 9 + false + + + + 7 + true 0 - 0 - - - 1 1 - true - - - - - 94 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 9 0 + 94 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 30 + false true - true - 39872d87:13e14015f61:27d2 - - 30 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 25 - 0 - - false - 1 - - - - - 145 - 226 - - false - true - 100.0 - - - - 39872d87:13e14015f61:27d3 + 145 + + + false + 255 + true + false + + + - - 30 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 25 + false + + + + false + 30 + true + + + 0 - 0 - - - 1 0 - true - - - - - 0 + Rectangle + + + + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 25 0 - false + 0 - - true - 1 - 39872d87:13e14015f61:27d4 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false - - - - - - - Label - true TH1 - - - - 20 - 0 - - 1 - - - - 1 - - 8 - true + true + 1 + true + Label + 20 + false 3 + 8 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 50 + false true - true - 39872d87:13e14015f61:27d6 - - 50 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 6 - 0 - - false - 1 - - - - - 176 - 236 - - false - true - 0.0 - - - - 39872d87:13e14015f61:27e2 - - - - - 50 - true - Rectangle - false + 176 + + + false 255 - - true - true - false - - true - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 6 + false + + + + false + 50 + true + + + 0 - 0 - - - 1 1 - true - - - - - 0 + Rectangle + + + + + true + true + false + + $(pv_name) $(pv_value) + true + true + Rectangle + 6 0 - false + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 49 + false true - true - 39872d87:13e14015f61:27d7 - - 49 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 5 - 0 - - false - 1 - - - - - 0 - 0 - + 0 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27d8 - 0.0 - - 0 + + Default + + false + + + 5 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 0 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true + false - - 0 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27d9 - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 5 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true + false - - 5 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27da - 0.0 - - 0 + + Default + + false + + + 5 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - 1 - 1 - true - - - - - 10 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:27db 0.0 - - 0 - 6 - true - Polyline - false - 255 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 10 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 7 + false + + + + 6 + true 0 - 0 - - - 1 1 - true - - - - - 14 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 7 0 + 14 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27dc - 0.0 - - 0 + + Default + + false + + + 5 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 20 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true + false - - 20 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27dd - 0.0 - - 0 + + Default + + false + + + 5 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 25 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true + false - - 25 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27de - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 29 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true - - - - - 29 - $(pv_name) -$(pv_value) - 0 - - - false true - 20 - true 100.0 - 39872d87:13e14015f61:27df - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 34 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true + false - - 34 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27e0 - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 39 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true + false - - 39 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27e1 - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - 1 - 1 - true - - - - - 44 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 7 0 + 44 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 20 + false true - true - 39872d87:13e14015f61:27e5 - - 20 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 42 - 0 - - false - 1 - - - - - 300 - 115 - - false - true - 100.0 - - - - 39872d87:13e14015f61:27e6 - - - - - 20 - true - Ellipse - false + 300 + + + false 255 - - true - true - true - - false - + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 20 + false + + + + false + 20 + true + + + 0 - 0 - - - 1 0 - true - - - - - 0 + Ellipse + + + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Ellipse + 20 0 - false + 0 - - true - 1 - 39872d87:13e14015f61:27e7 + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - X1 - - - - 15 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 1 - - 3 - true - - 3 - - - false - true - false - 39872d87:13e14015f61:27e8 - - 20 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 0 + + false + X1 + + true + 1 + true + Label + 15 + false + 3 + 3 + + motorx.opi @@ -4041,7 +4001,7 @@ $(pv_value) true $(mX1) - 0 + 1 mX1 (S) @@ -4050,7 +4010,7 @@ $(pv_value) true $(mX1) - 0 + 1 mX1 (M) @@ -4059,1062 +4019,1124 @@ $(pv_value) true $(mX1) - 0 + 1 mX1 (L) + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 20 22 + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 50 + false true - true - 39872d87:13e14015f61:2802 - - 50 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 6 - 0 - - false - 1 - - - - - 98 - 298 - - false - true - 0.0 - - - - 39872d87:13e14015f61:280e + 98 + + + false + 255 + true + false + + + - - 50 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 6 + false + + + + false + 50 + true + + + 0 - 0 - - - 1 1 - true - - - - - 0 + Rectangle + + + + + true + true + false + + $(pv_name) $(pv_value) + true + true + Rectangle + 6 0 - false + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 49 + false true - true - 39872d87:13e14015f61:2803 - - 49 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 5 - 0 - - false - 1 - - - - - 0 - 0 - + 0 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2804 - 0.0 - - 0 + + Default + + false + + + 5 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 0 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true + false - - 0 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2805 - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 5 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 7 + false + + + + 5 + true 0 - 0 - - - 1 1 - true - - - - - 5 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2806 - 0.0 - - 0 - 5 - true Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 10 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true + false - - 10 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2807 - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 14 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true + false - - 14 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2808 - 0.0 - - 0 + + Default + + false + + + 5 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 20 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true + false - - 20 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2809 - 0.0 - - 0 + + Default + + false + + + 5 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - - - - - - - + true Polyline - true - false - - Default - 7 - 0 - 0 - - - 1 - 1 - true - - - - - 25 - $(pv_name) -$(pv_value) 0 + 25 - - false - true + + + false + 255 + true 20 - true - 100.0 - 39872d87:13e14015f61:280a - 0.0 - 0 - 6 - true - Polyline - false - 255 - - true - true - true - - - - - - true - + false - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true + false - - 29 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:280b - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 29 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true + false - - 34 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:280c - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 34 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true + false - - 39 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:280d - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 0 + 39 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 7 + false + + + + 6 + true 0 - 0 - - - 1 1 - true - - - - - 44 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 7 0 + 44 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 68 + false true - true - 39872d87:13e14015f61:2811 - - 68 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 20 - 0 - - false - 1 - - - - - 100 - 425 - - false - true - 39872d87:13e14015f61:2812 - - 20 - Action Button - false - - true - true - false - - $(P)$(mY2).TWR - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - - 48 + 100 + $(P)$(mY2).TWR 1 10 + $(P)$(mY2).TWR 0 10 + - $(pv_name) -$(pv_value) - 0 - - + false + false + + + false - true - 39872d87:13e14015f61:2813 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(mY2).TWR + + true true false - $(P)$(mY2).TWF - - - - - - + + + - + true + $(pv_name) +$(pv_value) + true Action Button - true - + - false - - Default - 20 - 0 - 0 - - - - true - 1 - - - - 0 + 0 + 48 + + $(P)$(mY2).TWF 1 10 + $(P)$(mY2).TWF 0 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(mY2).TWF + + + + true + true + false + + + + + + true $(pv_name) $(pv_value) + true + Action Button + 20 0 + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 25 + false true - true - 39872d87:13e14015f61:281e - - 25 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 50 - 0 - - false - 1 - - - - - 297 - 21 - - false - true - 1 - false + 297 + + + false false - - 15 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 15 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:281f - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(mX1).VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(mX1).VAL - - - - false - 0 - - - false - - - - 0 - - 10 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 0 + 10 - - true - true - 1 - false - 39872d87:13e14015f61:2820 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 0 Text Update - false + 0 + true + $(P)$(mX1).RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(mX1).RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 0 - - 0 false - $(pv_name) -$(pv_value) 0 + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 67 + false true - true - 39872d87:13e14015f61:2827 - - 67 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 6 - 0 - - false - 1 - - - - - 101 - 447 - + 101 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2828 - 0.0 - - 0 + + Default + + false + + + 24 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - @@ -5122,856 +5144,831 @@ $(pv_value) - false - - - - - - - Polyline - true - false - - Default - - 4 - 0 - 0 - - 1 - 1 - true - - - - - 1 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 4 1 + 1 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2829 - 0.0 - - 0 + + Default + + false + + + 26 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 5 - 0 - 0 - - 1 - 1 - true - - - - - 41 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 5 1 + 41 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 25 + false true - true - 39872d87:13e14015f61:282c - - 25 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 50 - 0 - - false - 1 - - - - - 222 - 393 - - false - true - 1 - false + 222 + + + false false - - 15 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 15 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:282d - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(mZ2).VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(mZ2).VAL - - - - false - 0 - - - false - - - - 0 - - 10 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 0 + 10 - - true - true - 1 - false - 39872d87:13e14015f61:282e + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 0 Text Update - false + 0 + true + $(P)$(mZ2).RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(mZ2).RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 0 - - 0 false - $(pv_name) -$(pv_value) 0 + 0 - - - true - - true - 39872d87:13e14015f61:2834 - - 25 - Grouping Container - - true - true - false - - true - false + + - - - - Grouping Container + + + + 0 + 1 true + false - Default + Default - 50 - 0 - + + + + 25 false - 1 - - - - - 121 + + true + + Grouping Container + + + true + true + false + + + false + true + true + Grouping Container + 50 410 - - false - true - 1 - false + 121 + + + false false - - 15 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 15 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2835 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(mY2).VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(mY2).VAL - - - - false - 0 - - - false - - - - 0 - - 10 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 0 + 10 - - true - true - 1 - false - 39872d87:13e14015f61:2836 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 0 Text Update - false + 0 + true + $(P)$(mY2).RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(mY2).RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 0 - - 0 false - $(pv_name) -$(pv_value) 0 + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 68 + false true - true - 39872d87:13e14015f61:2837 - - 68 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 50 - 0 - - false - 1 - - - - - 181 - 80 - - false - true - 39872d87:13e14015f61:2838 - - 20 - Action Button - false - - true - true - false - - $(P)$(mY1).TWR - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - - 48 + 181 + $(P)$(mY1).TWR 1 10 + $(P)$(mY1).TWR 0 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(mY1).TWR + + + + true + true + false + + + + - + true $(pv_name) $(pv_value) + true + Action Button + 20 15 + 48 - - false - true - 1 - false + + + false false - - 15 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 15 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2839 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(mY1).VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(mY1).VAL - - - - false - 0 - - - false - - - - 0 - - 32 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 0 + 32 - - true - true - 1 - false - 39872d87:13e14015f61:283a + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 0 Text Update - false + 0 + true + $(P)$(mY1).RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(mY1).RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 0 - - 22 false - $(pv_name) -$(pv_value) 0 + 22 - - false - true - 39872d87:13e14015f61:283b - - 20 - Action Button - false - - true - true - false - - $(P)$(mY1).TWF - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - - 0 + $(P)$(mY1).TWF 1 10 + $(P)$(mY1).TWF 0 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(mY1).TWF + + + + true + true + false + + + + + + true $(pv_name) $(pv_value) + true + Action Button + 20 15 + 0 - - false - true - 100.0 - - - - 39872d87:13e14015f61:27a7 + + + false + 255 + true + false + + + - - 60 - true - Ellipse - false - 255 - - true - true - true - - false - - - - - - - - Ellipse + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 60 - 0 - 0 - - - 1 - 0 - true - - - - - 185 - $(pv_name) -$(pv_value) - 180 + false + + + false - - - false - true - 0.0 + 60 + true - + - 39872d87:13e14015f61:27a8 - - - - - 60 - true + 0 + 0 Ellipse - false - 255 + + + true true true - true - + + $(pv_name) +$(pv_value) + false + true + Ellipse + 60 + 180 + 185 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 60 + false + + + + false + 60 + true + + + 0 - 0 - - - 1 2 - true - - - - - 185 + Ellipse + + + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Ellipse + 60 180 - false + 185 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27d5 - 0.0 - - 0 + + Default + + false + + + 10 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 27 - 0 - 0 - - 1 - 1 - true - - - - - 210 - $(pv_name) -$(pv_value) - 198 - - - false - true - false - 39872d87:13e14015f61:27e3 - - 20 - Menu Button - false + 0.0 + true true - false + true - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 145 + + $(pv_name) +$(pv_value) + true + true + Polyline + 27 + 198 + 210 + + motorx.opi @@ -5979,7 +5976,7 @@ $(pv_value) true $(mTH1) - 0 + 1 mTheta1 (S) @@ -5988,7 +5985,7 @@ $(pv_value) true $(mTH1) - 0 + 1 mTheta1 (M) @@ -5997,93 +5994,93 @@ $(pv_value) true $(mTH1) - 0 + 1 mTheta1 (L) - $(pv_name) -$(pv_value) - 250 - - - true - 1 - 39872d87:13e14015f61:27eb - false - - 14 - Label - - true - true - false - - true - false + false + false + false - + - - - - Label - true - Z2 - - - - 15 - 0 - - 1 + false - 1 - - 303 - true - - 212 - - - false - true - false - 39872d87:13e14015f61:27ec - + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + + + true true false + + false + $(pv_name) +$(pv_value) false - + true + Menu Button + 20 + 250 + 145 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 20 - 6 - + + + + 14 + 1 + Label - - 1 - - - - 279 + + true + true + false + + + false + Z2 + + true + 1 + true + Label + 15 + false + 212 + 303 + + motorx.opi @@ -6091,7 +6088,7 @@ $(pv_value) true $(mZ2) - 0 + 1 mZ2 (S) @@ -6100,7 +6097,7 @@ $(pv_value) true $(mZ2) - 0 + 1 mZ2 (M) @@ -6109,158 +6106,158 @@ $(pv_value) true $(mZ2) - 0 + 1 mZ2 (L) - $(pv_name) -$(pv_value) - 205 - - + false + false + false + + + false - true - 100.0 - - - - 39872d87:13e14015f61:27ee - - - - - 20 - true - Ellipse + + + + 6 + 1 + true + + Default + false - 255 + + + + 20 + + Menu Button + + + true true - true + false + + false + $(pv_name) +$(pv_value) false - + true + Menu Button + 20 + 205 + 279 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 20 + false + + + + false + 20 + true + + + 0 - 0 - - - 1 0 - true - - - - - 268 + Ellipse + + + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Ellipse + 20 409 - false + 268 - - true - 1 - 39872d87:13e14015f61:27ef + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - X2 - - - - 15 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 1 - - 271 - true - - 412 - - - false - true - false - 39872d87:13e14015f61:27f0 - - 20 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 268 - + + false + X2 + + true + 1 + true + Label + 15 + false + 412 + 271 + + + motorx.opi true $(mX2) - 0 + 1 mX2 (S) @@ -6269,7 +6266,7 @@ $(pv_value) true $(mX2) - 0 + 1 mX2 (M) @@ -6278,93 +6275,93 @@ $(pv_value) true $(mX2) - 0 + 1 mX2 (L) - $(pv_name) -$(pv_value) - 431 - - - true - 1 - 39872d87:13e14015f61:27f2 - false - - 14 - Label - - true - true - false - - true - false + false + false + false - + - - - - Label - true - Y2 - - - - 15 - 0 - - 1 + false - 1 - - 69 - true - - 409 - - - false - true - false - 39872d87:13e14015f61:27f3 - + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + + + true true false + + false + $(pv_name) +$(pv_value) false - + true + Menu Button + 20 + 431 + 268 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 20 - 6 - + + + + 14 + 1 + Label - - 1 - - - - 61 + + true + true + false + + + false + Y2 + + true + 1 + true + Label + 15 + false + 409 + 69 + + motorx.opi @@ -6372,7 +6369,7 @@ $(pv_value) true $(mY2) - 0 + 1 mY2 (S) @@ -6381,7 +6378,7 @@ $(pv_value) true $(mY2) - 0 + 1 mY2 (M) @@ -6390,93 +6387,93 @@ $(pv_value) true $(mY2) - 0 + 1 mY2 (L) - $(pv_name) -$(pv_value) - 430 - - - true - 1 - 39872d87:13e14015f61:27f5 - false - - 14 - Label - - true - true - false - - true - false + false + false + false - + - - - - Label - true - Y1 - - - - 15 - 0 - - 1 + false - 1 - - 67 - true - - 119 - - - false - true - false - 39872d87:13e14015f61:27f6 - + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + + + true true false + + false + $(pv_name) +$(pv_value) false - + true + Menu Button + 20 + 430 + 61 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 20 - 6 - + + + + 14 + 1 + Label - - 1 - - - - 59 + + true + true + false + + + false + Y1 + + true + 1 + true + Label + 15 + false + 119 + 67 + + motorx.opi @@ -6484,7 +6481,7 @@ $(pv_value) true $(mY1) - 0 + 1 mY1 (S) @@ -6493,7 +6490,7 @@ $(pv_value) true $(mY1) - 0 + 1 mY1 (M) @@ -6502,205 +6499,205 @@ $(pv_value) true $(mY1) - 0 + 1 mY1 (L) - $(pv_name) -$(pv_value) - 138 - - + false + false + false + + + false - true - 100.0 - - - - 39872d87:13e14015f61:27f8 - - - - - 60 - true - Ellipse + + + + 6 + 1 + true + + Default + false - 255 + + + + 20 + + Menu Button + + + true true - true + false + + false + $(pv_name) +$(pv_value) false - + true + Menu Button + 20 + 138 + 59 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 60 + false + + + + false + 60 + true + + + 0 - 0 - - - 1 0 - true - - - - - 105 + Ellipse + + + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Ellipse + 60 300 - false + 105 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27f9 - 0.0 - - 0 + + Default + + false + + + 10 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 27 - 0 - 0 - - 1 - 1 - true - - - - - 130 - $(pv_name) -$(pv_value) - 318 - - - true - 1 - 39872d87:13e14015f61:27fb - false - - 14 - Label + 0.0 + true true - false + true + + $(pv_name) +$(pv_value) true - false + true + Polyline + 27 + 318 + 130 + + + + false - - - - Label - true - TH2 - - - - 20 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 1 - - 74 - true - - 291 - - - false - true - false - 39872d87:13e14015f61:27fc - - 20 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + false + TH2 + + true + 1 + true + Label 20 - 6 - - - - 1 - - - - 66 + false + 291 + 74 + + motorx.opi @@ -6708,7 +6705,7 @@ $(pv_value) true $(mTH2) - 0 + 1 mTheta2 (S) @@ -6717,7 +6714,7 @@ $(pv_value) true $(mTH2) - 0 + 1 mTheta2 (M) @@ -6726,2050 +6723,2129 @@ $(pv_value) true $(mTH2) - 0 + 1 mTheta2 (L) - $(pv_name) -$(pv_value) - 313 - - + false + false + false + + + false - true - 20 - true - 100.0 - 39872d87:13e14015f61:27fd - 0.0 - - 0 - 1 - true - Polyline - false - 255 - + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + true true - true + false - - - - - true - + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 20 + 313 + 66 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 211 + false + + + + 1 + true 0 - 0 - - - 1 1 - true - - - - - 213 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 211 0 + 213 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27fe - 0.0 - - 0 + + Default + + false + + + 80 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 123 + 209 + 135 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 123 - 0 - 0 - - - 1 - 1 - true + false - - 135 - $(pv_name) -$(pv_value) - 209 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:27ff - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 190 + 331 + 135 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 190 - 0 - 0 - - - 1 - 1 - true + false - - 135 - $(pv_name) -$(pv_value) - 331 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2800 - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 40 - 0 - 0 - - 1 - 1 - true - - - - - 203 - $(pv_name) -$(pv_value) - 17 - - - true - 1 - 39872d87:13e14015f61:2801 - false - - 20 - Label + 0.0 + true true - false + true + + $(pv_name) +$(pv_value) true - false + true + Polyline + 40 + 17 + 203 + + + + false - - - - Label - true - > - - - - 13 - 0 - - 1 - 1 - - 127 - true - - 509 - - - false - true - 39872d87:13e14015f61:280f - - 20 - Action Button - false - - true - true - false - - $(P)$(mTH2).TWR - - - - - - - Action Button + 0 + 1 true - - - false - Default + - 20 - 0 - 0 - + + + + 20 + 2 + Label - - true - 1 - - - - 148 + + true + true + false + + + false + > + + true + 1 + true + Label + 13 + false + 509 + 127 + + $(P)$(mTH2).TWR 1 10 + $(P)$(mTH2).TWR 0 10 + - $(pv_name) -$(pv_value) - 366 - - + false + false + + + false - true - 39872d87:13e14015f61:2810 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(mTH2).TWR + + true true false - $(P)$(mTH2).TWF - - - - - - + + + - + true + $(pv_name) +$(pv_value) + true Action Button - true - + - false - - Default - 20 - 0 - 0 - - - - true - 1 - - - - 100 + 366 + 148 + + $(P)$(mTH2).TWF 1 10 + $(P)$(mTH2).TWF 0 10 + - $(pv_name) -$(pv_value) - 366 - - + false + false + + + false - true - 39872d87:13e14015f61:2814 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(mTH2).TWF + + true true false - $(P)$(mTH1).TWR - - - - - - + + + + + true + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 20 - 0 - 0 - - - - true - 1 - - - - 181 + 366 + 100 + + $(P)$(mTH1).TWR 1 10 + $(P)$(mTH1).TWR 0 10 + - $(pv_name) -$(pv_value) - 155 - - + false + false + + + false - true - 39872d87:13e14015f61:2815 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(mTH1).TWR + + true true false - $(P)$(mTH1).TWF - - - - - - + + + - + true + $(pv_name) +$(pv_value) + true Action Button - true - + - false - - Default - 20 - 0 - 0 - - - - true - 1 - - - - 229 + 155 + 181 + + $(P)$(mTH1).TWF 1 10 + $(P)$(mTH1).TWF 0 10 + - $(pv_name) -$(pv_value) - 155 - - + false + false + + + false - true - 39872d87:13e14015f61:2816 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(mTH1).TWF + + true true false - $(P)$(mZ2).TWR - - - - - - + + + + + true + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 20 - 0 - 0 - - - - true - 1 - - - - 236 + 155 + 229 + + $(P)$(mZ2).TWR 1 10 + $(P)$(mZ2).TWR 0 10 + - $(pv_name) -$(pv_value) - 372 - - + false + false + + + false - true - 39872d87:13e14015f61:2817 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(mZ2).TWR + + true true false - $(P)$(mZ2).TWF - - - - - - + + + - + true + $(pv_name) +$(pv_value) + true Action Button - true - + - false - - Default - 20 - 0 - 0 - - - - true - 1 - - - + 372 236 + + $(P)$(mZ2).TWF 1 10 + $(P)$(mZ2).TWF 0 10 + - $(pv_name) -$(pv_value) - 443 - - + false + false + + + false - true - 39872d87:13e14015f61:2818 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(mZ2).TWF + + true true false - $(P)$(mX1).TWR - - - - - - + + + + + true + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 20 - 0 - 0 - - - - true - 1 - - - - 301 + 443 + 236 + + $(P)$(mX1).TWR 1 10 + $(P)$(mX1).TWR 0 10 + - $(pv_name) -$(pv_value) - 75 - - + false + false + + + false - true - 39872d87:13e14015f61:2819 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(mX1).TWR + + true true false - $(P)$(mX1).TWF - - - - - - + + + - + true + $(pv_name) +$(pv_value) + true Action Button - true - + - false - - Default - 20 - 0 - 0 - - - - true - 1 - - - + 75 301 + + $(P)$(mX1).TWF 1 10 + $(P)$(mX1).TWF 0 10 + - $(pv_name) -$(pv_value) - 95 - - + false + false + + + false - true - 39872d87:13e14015f61:281a - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(mX1).TWF + + true true false - $(P)$(mX2).TWR - - - - - - + + + + + true + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 20 - 0 - 0 - - - - true - 1 - - - - 269 + 95 + 301 + + $(P)$(mX2).TWR 1 10 + $(P)$(mX2).TWR 0 10 + - $(pv_name) -$(pv_value) - 370 - - - false - true - 39872d87:13e14015f61:281b - - 20 - Action Button - false - - true - true - false - - $(P)$(mX2).TWF + false + false - + - - - - Action Button + false + + + + 0 + 1 true - + - false - Default + Default - 20 - 0 - 0 + false + + + + 20 - + Action Button + 0 + $(P)$(mX2).TWR + + + true + true + false + + + + - true - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 370 269 + + $(P)$(mX2).TWF 1 10 + $(P)$(mX2).TWF 0 10 + - $(pv_name) -$(pv_value) - 390 - - + false + false + + + false - true - 0.0 - - - - 39872d87:13e14015f61:281c - - - - - 60 - true - Ellipse + + + + 0 + 1 + true + + Default + false - 255 + + + + 20 + + Action Button + 0 + $(P)$(mX2).TWF + + true true - true + false - true - + + + + + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 390 + 269 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 60 + false + + + + false + 60 + true + + + 0 - 0 - - - 1 2 - true - - - - - 105 + Ellipse + + + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Ellipse + 60 300 - false + 105 - + + + + $(P)allstop.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:281d - + + + + 0 + 1 + true + + Default + + false + + + 40 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)allstop.VAL - - - - - - - Action Button - true + + All Stop - false - - Default - - 100 - 0 - 0 - - - false - 1 - - - - 195 - - - $(P)allstop.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 100 262 + 195 - - true - true - 1 - false - 39872d87:13e14015f61:2821 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 0 Text Update - false + 0 + true + $(P)$(mX2).RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(mX2).RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 0 - - 265 false - $(pv_name) -$(pv_value) 315 + 265 - - true - 1 - 39872d87:13e14015f61:2822 + + false - + + + + + + + 0 + 1 + true + + + + + + 25 + 1 Label + true true false - true + false - - - - - - - Label - true Prototype Monochromator - - - - 500 - 0 - - 1 - - - - 1 - - 0 - true + true + 1 + true + Label + 500 + false 10 + 0 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2823 - 0.0 - - 0 + + Default + + false + + + 17 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - 1 - 1 - true - - - - - 229 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 9 179 + 229 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2824 - 0.0 - - 0 + + Default + + false + + + 17 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 12 - 0 - 0 - - 1 - 1 - true - - - - - 184 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 12 180 + 184 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2825 - 0.0 - - 0 + + Default + + false + + + 24 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 18 - 0 - 0 - - 1 - 1 - true - - - - - 105 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 18 349 + 105 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2826 - 0.0 - - 0 + + Default + + false + + + 21 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 17 - 0 - 0 - - 1 - 1 - true - - - - - 143 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 17 350 + 143 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:282a - 0.0 - - 0 + + Default + + false + + + 5 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 34 - 0 - 0 - - 1 - 1 - true - - - - - 226 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 34 429 + 226 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:282b - 0.0 - - 0 + + Default + + false + + + 5 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 36 - 0 - 0 - - 1 - 1 - true - - - - - 226 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 36 372 + 226 - - true - true - 1 - false - 39872d87:13e14015f61:282f + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 0 Text Update - false + 0 + true + $(P)$(mTH1).RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(mTH1).RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 0 - - 203 false - $(pv_name) -$(pv_value) 140 + 203 - - false - true - 1 - false + + + false false - - 15 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 15 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2830 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(mTH1).VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(mTH1).VAL - - - - false - 0 - - - false - - - - 0 - - 213 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 140 + 213 - - false - true - 1 - false + + + false false - - 15 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 15 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2831 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(mX2).VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(mX2).VAL - - - - false - 0 - - - false - - - - 0 - - 275 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 315 + 275 - - false - true - 1 - false + + + false false - - 15 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 15 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2832 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(mTH2).VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(mTH2).VAL - - - - false - 0 - - - false - - - - 0 - - 131 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 350 + 131 - - true - true - 1 - false - 39872d87:13e14015f61:2833 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 0 Text Update - false + 0 + true + $(P)$(mTH2).RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(mTH2).RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 0 - - 121 false - $(pv_name) -$(pv_value) 351 + 121 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:283c - 0.0 - - 0 + + Default + + false + + + 21 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 6 - 0 - 0 - - 1 - 1 - true - - - - - 182 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 6 87 + 182 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:283d - 0.0 - - 0 + + Default + + false + + + 23 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 6 - 0 - 0 - - 1 - 1 - true - - - - - 227 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 6 87 + 227 - - true - 1 - 39872d87:13e14015f61:283e + + false - + + + + + + + 0 + 1 + true + + + + + + 12 + 1 Label + true true false - true + false + $(mY1) + + true + 1 + true + Label + 50 + false + 99 + 46 + + + + false - - - - Label - true - $(mY1) - - - - 50 - 0 - - 1 + 0 + 1 + true + + + + + + + 12 1 - - 46 - true + Label + + + true + true + false + + + false + $(mX1) - 99 + true + 1 + true + Label + 50 + false + 21 + 284 - - true - 1 - 39872d87:13e14015f61:283f + + false - - 12 - Label - - true - true - false - - true - false - - - - Label - true - $(mX1) - - - - 50 - 0 - - 1 - 1 - - 284 - true - - 21 - - - true - 1 - 39872d87:13e14015f61:2840 - false - + 0 + 1 + true + + + + + + 12 + 1 Label + true true false - true + false + $(mZ2) + + true + 1 + true + Label + 50 + false + 191 + 267 + + + + false - - - - Label - true - $(mZ2) - - - - 50 - 0 - - 1 - 1 - - 267 - true - - 191 - - - true - 1 - 39872d87:13e14015f61:2841 - false - + 0 + 1 + true + + + + + + 12 + 1 Label + true true false - true + false + $(mTH1) + + true + 1 + true + Label + 50 + false + 213 + 132 + + + + false - - - - Label - true - $(mTH1) - - - - 50 - 0 - - 1 - 1 - - 132 - true - - 213 - - - true - 1 - 39872d87:13e14015f61:2842 - false - + 0 + 1 + true + + + + + + 12 + 1 Label + true true false - true + false + $(mTH2) + + true + 1 + true + Label + 50 + false + 276 + 53 + + + + false - - - - Label - true - $(mTH2) - - - - 50 - 0 - - 1 - 1 - - 53 - true - - 276 - - - true - 1 - 39872d87:13e14015f61:2843 - false - + 0 + 1 + true + + + + + + 12 + 1 Label + true true false - true + false + $(mY2) + + true + 1 + true + Label + 50 + false + 390 + 48 + + + + false - - - - Label - true - $(mY2) - - - - 50 - 0 - - 1 - 1 - - 48 - true - - 390 - - - true - 1 - 39872d87:13e14015f61:2844 - false - + 0 + 1 + true + + + + + + 12 + 1 Label + true true false - true + false - - - - - - - Label - true $(mX2) - - - - 50 - 0 - - 1 - - - - 1 - - 252 - true + true + 1 + true + Label + 50 + false 315 + 252 - \ No newline at end of file + diff --git a/opticsApp/op/opi/XIA_filter.opi b/opticsApp/op/opi/autoconvert/XIA_filter.opi similarity index 84% rename from opticsApp/op/opi/XIA_filter.opi rename to opticsApp/op/opi/autoconvert/XIA_filter.opi index 6581b6a..b3b601a 100644 --- a/opticsApp/op/opi/XIA_filter.opi +++ b/opticsApp/op/opi/autoconvert/XIA_filter.opi @@ -1,122 +1,113 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 622 true - 39872d87:13e14015f61:28eb - 3.1.2.20120830 + XIA_filter + + true + true + false true - 622 - XIA_filter false - false - - - - - - Display - true 325 - - true - 5 - - false - -1 - -1 - - - 338 135 - - false - true - 100.0 - - - - 39872d87:13e14015f61:28ed - - - - - 25 - true - Rectangle - false + 338 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 325 + false + + + + false + 25 + true + + + 0 - 0 - - - 1 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - true - 1 - 39872d87:13e14015f61:28ec - false - - 15 - Label + Rectangle + + + true true false - true - false + + $(pv_name) +$(pv_value) + false + true + Rectangle + 325 + 0 + 0 + + + + false - - - - Label + + + + 0 + 1 true - In - + - 35 - 0 + + + + 15 + 0 + Label @@ -128,285 +119,286 @@ $(pv_value) $(P)$(S)Status1 - 1 - - - - 0 - - 35 - true + + true + true + false + + + false + In + true + 1 + true + Label + 35 + false 250 + 35 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:28ee - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 322 - 0 - 0 - - 1 - 1 - true - - - - - 26 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 322 1 + 26 - - true - 1 - 39872d87:13e14015f61:28ef + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true XIA Filters - - - - 325 - 0 - - 1 - - - - 1 - - 5 - true + true + 1 + true + Label + 325 + false 0 + 5 - - true - 1 - 39872d87:13e14015f61:28f0 + + false - - 15 - Label - - true - true - false - - true - false - - - - Label - true - F1 - - - - 30 - 0 - - 1 - 0 - - 35 - true - - 5 - - - false - true - 39872d87:13e14015f61:28f1 - + 0 + 1 + true + + + + + + 15 - Action Button - false + 0 + Label + true true false - $(P)$(S)sendCommand.VAL - - - - - - - Action Button - true - In - false - - Default - - 25 - 0 - 0 - - - - false - 1 - - - + + false + F1 + + true + 1 + true + Label + 30 + false + 5 35 + + $(P)$(S)sendCommand.VAL I1 10 + - $(pv_name) -$(pv_value) - 140 - - + false + false + + + false - true - 39872d87:13e14015f61:28f2 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - + + + In + false + $(pv_name) +$(pv_value) + true Action Button - true - Out - false - - Default - 25 - 0 - 0 - - - - false - 1 - - - + 140 35 + + $(P)$(S)sendCommand.VAL R1 10 + - $(pv_name) -$(pv_value) - 170 - - - true - 1 - 39872d87:13e14015f61:28f3 - false - + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + 15 - Label + + Action Button + 0 + $(P)$(S)sendCommand.VAL + + true true false - true - false + + + Out + false + $(pv_name) +$(pv_value) + true + Action Button + 25 + 170 + 35 + + + + false - - - - Label + + + + 0 + 1 true - Out - + - 35 - 0 + + + + 15 + 0 + Label @@ -418,46 +410,45 @@ $(pv_value) $(P)$(S)Status1 - 1 - - - - 0 - - 35 - true - - 250 - - - true - 1 - 39872d87:13e14015f61:28f4 - false - - 15 - Label true true false - true + false + Out + + true + 1 + true + Label + 35 + false + 250 + 35 + + + + false - - - - Label - true - In - - - - 35 + + + 0 + 1 + true + + + + + + + 15 + 0 + Label @@ -469,189 +460,191 @@ $(pv_value) $(P)$(S)Status2 - 1 - - - - 0 - - 55 - true - - 250 - - - true - 1 - 39872d87:13e14015f61:28f5 - false - - 15 - Label true true false - true + false + In + + true + 1 + true + Label + 35 + false + 250 + 55 + + + + false - - - - Label - true - F2 - - - - 30 - 0 - - 1 - 0 - - 55 - true - - 5 - - - false - true - 39872d87:13e14015f61:28f6 - + 0 + 1 + true + + + + + + 15 - Action Button - false + 0 + Label + true true false - $(P)$(S)sendCommand.VAL - - - - - - - Action Button - true - In - false - - Default - - 25 - 0 - 0 - - - - false - 1 - - - + + false + F2 + + true + 1 + true + Label + 30 + false + 5 55 + + $(P)$(S)sendCommand.VAL I2 10 + - $(pv_name) -$(pv_value) - 140 - - + false + false + + + false - true - 39872d87:13e14015f61:28f7 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - + + + In + false + $(pv_name) +$(pv_value) + true Action Button - true - Out - false - - Default - 25 - 0 - 0 - - - - false - 1 - - - + 140 55 + + $(P)$(S)sendCommand.VAL R2 10 + - $(pv_name) -$(pv_value) - 170 - - - true - 1 - 39872d87:13e14015f61:28f8 - false - + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + 15 - Label + + Action Button + 0 + $(P)$(S)sendCommand.VAL + + true true false - true - false + + + Out + false + $(pv_name) +$(pv_value) + true + Action Button + 25 + 170 + 55 + + + + false - - - - Label + + + + 0 + 1 true - Out - + - 35 - 0 + + + + 15 + 0 + Label @@ -663,46 +656,45 @@ $(pv_value) $(P)$(S)Status2 - 1 - - - - 0 - - 55 - true - - 250 - - - true - 1 - 39872d87:13e14015f61:28f9 - false - - 15 - Label true true false - true + false - - - - - - + Out + + true + 1 + true Label - true - In - - - 35 + false + 250 + 55 + + + + false + + + + + + 0 + 1 + true + + + + + + + 15 + 0 + Label @@ -714,189 +706,191 @@ $(pv_value) $(P)$(S)Status3 - 1 - - - - 0 - - 75 - true - - 250 - - - true - 1 - 39872d87:13e14015f61:28fa - false - - 15 - Label true true false - true + false + In + + true + 1 + true + Label + 35 + false + 250 + 75 + + + + false - - - - Label - true - F3 - - - - 30 - 0 - - 1 - 0 - - 75 - true - - 5 - - - false - true - 39872d87:13e14015f61:28fb - + 0 + 1 + true + + + + + + 15 - Action Button - false + 0 + Label + true true false - $(P)$(S)sendCommand.VAL - - - - - - - Action Button - true - In - false - - Default - - 25 - 0 - 0 - - - - false - 1 - - - + + false + F3 + + true + 1 + true + Label + 30 + false + 5 75 + + $(P)$(S)sendCommand.VAL I3 10 + - $(pv_name) -$(pv_value) - 140 - - + false + false + + + false - true - 39872d87:13e14015f61:28fc - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - + + + In + false + $(pv_name) +$(pv_value) + true Action Button - true - Out - false - - Default - 25 - 0 - 0 - - - - false - 1 - - - + 140 75 + + $(P)$(S)sendCommand.VAL R3 10 + - $(pv_name) -$(pv_value) - 170 - - - true - 1 - 39872d87:13e14015f61:28fd - false - + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + 15 - Label + + Action Button + 0 + $(P)$(S)sendCommand.VAL + + true true false - true - false + + + Out + false + $(pv_name) +$(pv_value) + true + Action Button + 25 + 170 + 75 + + + + false - - - - Label + + + + 0 + 1 true - Out - + - 35 - 0 + + + + 15 + 0 + Label @@ -908,46 +902,45 @@ $(pv_value) $(P)$(S)Status3 - 1 - - - - 0 - - 75 - true - - 250 - - - true - 1 - 39872d87:13e14015f61:28fe - false - - 15 - Label true true false - true + false - - - - - - + Out + + true + 1 + true Label + 35 + false + 250 + 75 + + + + false + + + + + + + 0 + 1 true - In - + - 35 - 0 + + + + 15 + 0 + Label @@ -959,189 +952,191 @@ $(pv_value) $(P)$(S)Status4 - 1 - - - - 0 - - 95 - true - - 250 - - - true - 1 - 39872d87:13e14015f61:28ff - false - - 15 - Label true true false - true + false + In + + true + 1 + true + Label + 35 + false + 250 + 95 + + + + false - - - - Label - true - F4 - - - - 30 - 0 - - 1 - 0 - - 95 - true - - 5 - - - false - true - 39872d87:13e14015f61:2900 - + 0 + 1 + true + + + + + + 15 - Action Button - false + 0 + Label + true true false - $(P)$(S)sendCommand.VAL - - - - - - - Action Button - true - In - false - - Default - - 25 - 0 - 0 - - - - false - 1 - - - + + false + F4 + + true + 1 + true + Label + 30 + false + 5 95 + + $(P)$(S)sendCommand.VAL I4 10 + - $(pv_name) -$(pv_value) - 140 - - + false + false + + + false - true - 39872d87:13e14015f61:2901 - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - + + + In + false + $(pv_name) +$(pv_value) + true Action Button - true - Out - false - - Default - 25 - 0 - 0 - - - - false - 1 - - - + 140 95 + + $(P)$(S)sendCommand.VAL R4 10 + - $(pv_name) -$(pv_value) - 170 - - - true - 1 - 39872d87:13e14015f61:2902 - false - + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + 15 - Label + + Action Button + 0 + $(P)$(S)sendCommand.VAL + + true true false - true - false + + + Out + false + $(pv_name) +$(pv_value) + true + Action Button + 25 + 170 + 95 + + + + false - - - - Label + + + + 0 + 1 true - Out - + - 35 - 0 + + + + 15 + 0 + Label @@ -1153,1152 +1148,1185 @@ $(pv_value) $(P)$(S)Status4 - 1 - - - - 0 - - 95 - true - - 250 - - - true - true - 1 - false - 39872d87:13e14015f61:2903 - false - 0.0 - - 14 - Text Update - false true true false - 1 - true - false - $(P)$(S)writeRead.AINP + + false + Out + + true + 1 + true + Label + 35 + false + 250 + 95 + + + + false + false + false - + - - - - Text Update - true - ###### - false - 0 - - - - 255 - 0 - - - 1 + true + 0 + 1 + true + + + + false + + + + 1 + 14 0 - - 145 - false + Text Update + 0 + true + $(P)$(S)writeRead.AINP + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 255 + false 5 + 145 - + + + + $(P)$(S)sendCommand.VAL + F + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:2904 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - - Action Button - true + + Filter Status - false - - Default - - 120 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 120 + 5 120 + + $(P)$(S)sendCommand.VAL - F + Z 10 + - $(pv_name) -$(pv_value) - 5 - - + false + false + + + false - true - 39872d87:13e14015f61:2905 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - - Action Button - true + + Clear Short Error - false - - Default - - 130 - 0 - 0 - - - false - 1 - - - - 120 - - - $(P)$(S)sendCommand.VAL - Z - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 130 130 + 120 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2906 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 280 - 0 - 0 - - 1 - 1 - true - - - - - 165 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 280 5 + 165 - - true - 1 - 39872d87:13e14015f61:2907 + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - Attenuation Control - - - - 205 - 0 - - 1 - 1 - - 170 - true - - 45 - - - false - true - 39872d87:13e14015f61:2908 - + 0 + 1 + true + + + + + + 20 - Action Button - false + 1 + Label + true true false - $(P)$(S)sendCommand.VAL - - - - - - - Action Button - true - Att0 (0000) - false - - Default - - 190 - 0 - 0 - - - - false - 1 - - - - 220 + + false + Attenuation Control + + true + 1 + true + Label + 205 + false + 45 + 170 + + $(P)$(S)sendCommand.VAL W0000 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:2909 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - + + + Att0 (0000) + false + $(pv_name) +$(pv_value) + true Action Button - true - Att1 (0001) - false - - Default - 190 - 0 - 0 - - - - false - 1 - - - - 245 + 50 + 220 + + $(P)$(S)sendCommand.VAL W0001 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:290a - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - + + + Att1 (0001) + false + $(pv_name) +$(pv_value) + true Action Button - true - Att2 (0010) - false - - Default - 190 - 0 - 0 - - - - false - 1 - - - - 270 + 50 + 245 + + $(P)$(S)sendCommand.VAL W0010 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:290b - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - + + + Att2 (0010) + false + $(pv_name) +$(pv_value) + true Action Button - true - Att3 (0011) - false - - Default - 190 - 0 - 0 - - - - false - 1 - - - - 295 + 50 + 270 + + $(P)$(S)sendCommand.VAL W0011 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:290c - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - + + + Att3 (0011) + false + $(pv_name) +$(pv_value) + true Action Button - true - Att4 (0100) - false - - Default - 190 - 0 - 0 - - - - false - 1 - - - - 320 + 50 + 295 + + $(P)$(S)sendCommand.VAL W0100 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:290d - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - - Action Button - true - Att5 (0101) - false - - Default - - 190 - 0 - 0 - - - - false - 1 - - - - 345 + + + Att4 (0100) + false + $(pv_name) +$(pv_value) + true + Action Button + 190 + 50 + 320 + + $(P)$(S)sendCommand.VAL W0101 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:290e - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - + + + Att5 (0101) + false + $(pv_name) +$(pv_value) + true Action Button - true - Att6 (0110) - false - - Default - 190 - 0 - 0 - - - - false - 1 - - - - 370 + 50 + 345 + + $(P)$(S)sendCommand.VAL W0110 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:290f - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - + + + Att6 (0110) + false + $(pv_name) +$(pv_value) + true Action Button - true - Att7 (0111) - false - - Default - 190 - 0 - 0 - - - - false - 1 - - - - 395 + 50 + 370 + + $(P)$(S)sendCommand.VAL W0111 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:2910 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - + + + Att7 (0111) + false + $(pv_name) +$(pv_value) + true Action Button - true - Att8 (1000) - false - - Default - 190 - 0 - 0 - - - - false - 1 - - - - 421 + 50 + 395 + + $(P)$(S)sendCommand.VAL W1000 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:2911 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - + + + Att8 (1000) + false + $(pv_name) +$(pv_value) + true Action Button - true - Att9 (1001) - false - - Default - 190 - 0 - 0 - - - - false - 1 - - - - 446 + 50 + 421 + + $(P)$(S)sendCommand.VAL W1001 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:2912 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - + + + Att9 (1001) + false + $(pv_name) +$(pv_value) + true Action Button - true - Att10 (1010) - false - - Default - 190 - 0 - 0 - - - - false - 1 - - - - 471 + 50 + 446 + + $(P)$(S)sendCommand.VAL W1010 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:2913 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - + + + Att10 (1010) + false + $(pv_name) +$(pv_value) + true Action Button - true - Att11 (1011) - false - - Default - 190 - 0 - 0 - - - - false - 1 - - - - 497 + 50 + 471 + + $(P)$(S)sendCommand.VAL W1011 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:2914 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - + + + Att11 (1011) + false + $(pv_name) +$(pv_value) + true Action Button - true - Att12 (1100) - false - - Default - 190 - 0 - 0 - - - - false - 1 - - - - 522 + 50 + 497 + + $(P)$(S)sendCommand.VAL W1100 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:2915 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - + + + Att12 (1100) + false + $(pv_name) +$(pv_value) + true Action Button - true - Att13 (1101) - false - - Default - 190 - 0 - 0 - - - - false - 1 - - - - 547 + 50 + 522 + + $(P)$(S)sendCommand.VAL W1101 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:2916 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - + + + Att13 (1101) + false + $(pv_name) +$(pv_value) + true Action Button - true - Att14 (1110) - false - - Default - 190 - 0 - 0 - - - - false - 1 - - - - 572 + 50 + 547 + + $(P)$(S)sendCommand.VAL W1110 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:2917 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - + + + Att14 (1110) + false + $(pv_name) +$(pv_value) + true Action Button - true - Att15 (1111) - false - - Default - 190 - 0 - 0 - - - - false - 1 - - - - 597 + 50 + 572 + + $(P)$(S)sendCommand.VAL W1111 10 + - $(pv_name) -$(pv_value) - 50 - - - true - 1 - 39872d87:13e14015f61:2918 - false - - 12 - Label + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(S)sendCommand.VAL + + true true false - true - false + + + Att15 (1111) + false + $(pv_name) +$(pv_value) + true + Action Button + 190 + 50 + 597 + + + + false - - - - Label - true - Bit Status: F1 F2 F3 F4 - - - - 155 - 0 - - 1 + 0 + 1 + true + + + + + + + 12 1 - - 190 - true - - 50 - - - true - 1 - 39872d87:13e14015f61:2919 - false - - 15 Label + true true false - true + false + Bit Status: F1 F2 F3 F4 + + true + 1 + true + Label + 155 + false + 50 + 190 + + + + false - - - - Label + + + + 0 + 1 true - 0 - + - 10 - 0 + + + + 15 + 0 + Label @@ -2310,46 +2338,45 @@ $(pv_value) $(P)$(S)Status1 - 1 - - - - 0 - - 200 - true - - 130 - - - true - 1 - 39872d87:13e14015f61:291a - false - - 15 - Label true true false - true + false + 0 + + true + 1 + true + Label + 10 + false + 130 + 200 + + + + false - - - - Label + + + + 0 + 1 true - 0 - + - 10 - 0 + + + + 15 + 0 + Label @@ -2361,46 +2388,45 @@ $(pv_value) $(P)$(S)Status2 - 1 - - - - 0 - - 200 - true - - 150 - - - true - 1 - 39872d87:13e14015f61:291b - false - - 15 - Label true true false - true + false + 0 + + true + 1 + true + Label + 10 + false + 150 + 200 + + + + false - - - - Label + + + + 0 + 1 true - 0 - + - 10 - 0 + + + + 15 + 0 + Label @@ -2412,46 +2438,45 @@ $(pv_value) $(P)$(S)Status3 - 1 - - - - 0 - - 200 - true - - 170 - - - true - 1 - 39872d87:13e14015f61:291c - false - - 15 - Label true true false - true + false + 0 + + true + 1 + true + Label + 10 + false + 170 + 200 + + + + false - - - - Label + + + + 0 + 1 true - 0 - + - 10 - 0 + + + + 15 + 0 + Label @@ -2463,46 +2488,45 @@ $(pv_value) $(P)$(S)Status4 - 1 - - - - 0 - - 200 - true - - 190 - - - true - 1 - 39872d87:13e14015f61:291d - false - - 15 - Label true true false - true + false + 0 + + true + 1 + true + Label + 10 + false + 190 + 200 + + + + false - - - - Label + + + + 0 + 1 true - 1 - + - 10 - 0 + + + + 15 + 0 + Label @@ -2514,46 +2538,45 @@ $(pv_value) $(P)$(S)Status1 - 1 - - - - 0 - - 200 - true - - 130 - - - true - 1 - 39872d87:13e14015f61:291e - false - - 15 - Label true true false - true + false + 1 + + true + 1 + true + Label + 10 + false + 130 + 200 + + + + false - - - - Label + + + + 0 + 1 true - 1 - + - 10 - 0 + + + + 15 + 0 + Label @@ -2565,46 +2588,45 @@ $(pv_value) $(P)$(S)Status2 - 1 - - - - 0 - - 200 - true - - 150 - - - true - 1 - 39872d87:13e14015f61:291f - false - - 15 - Label true true false - true + false + 1 + + true + 1 + true + Label + 10 + false + 150 + 200 + + + + false - - - - Label + + + + 0 + 1 true - 1 - + - 10 - 0 + + + + 15 + 0 + Label @@ -2616,46 +2638,45 @@ $(pv_value) $(P)$(S)Status3 - 1 - - - - 0 - - 200 - true - - 170 - - - true - 1 - 39872d87:13e14015f61:2920 - false - - 15 - Label true true false - true + false + 1 + + true + 1 + true + Label + 10 + false + 170 + 200 + + + + false - - - - Label + + + + 0 + 1 true - 1 - + - 10 - 0 + + + + 15 + 0 + Label @@ -2667,239 +2688,270 @@ $(pv_value) $(P)$(S)Status4 - 1 - - - - 0 - - 200 - true + + true + true + false + + + false + 1 + true + 1 + true + Label + 10 + false 190 + 200 - - false - true - 1 - false + + + false false - - 15 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 15 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2921 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(S)Status1.DESC + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(S)Status1.DESC - - - - false - 0 - - - false - - - - 0 - - 35 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 30 + 35 - - false - true - 1 - false + + + false false - - 15 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 15 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2922 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(S)Status2.DESC + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(S)Status2.DESC - - - - false - 0 - - - false - - - - 0 - - 55 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 30 + 55 - - false - true - 1 - false + + + false false - - 15 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 15 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2923 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(S)Status3.DESC + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(S)Status3.DESC - - - - false - 0 - - - false - - - - 0 - - 75 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 30 + 75 - - false - true - 1 - false + + + false false - - 15 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 15 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2924 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(S)Status4.DESC + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(S)Status4.DESC - - - - false - 0 - - - false - - - - 0 - - 95 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 30 + 95 - \ No newline at end of file + diff --git a/opticsApp/op/opi/XIA_shutter.opi b/opticsApp/op/opi/autoconvert/XIA_shutter.opi similarity index 84% rename from opticsApp/op/opi/XIA_shutter.opi rename to opticsApp/op/opi/autoconvert/XIA_shutter.opi index 686bef6..f0f7047 100644 --- a/opticsApp/op/opi/XIA_shutter.opi +++ b/opticsApp/op/opi/autoconvert/XIA_shutter.opi @@ -1,161 +1,152 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 346 true - 39872d87:13e14015f61:2960 - 3.1.2.20120830 + XIA_shutter + + true + true + false true - 346 - XIA_shutter false - false - - - - - - Display - true 325 - - true - 5 - - false - -1 - -1 - - - 39 114 - + 39 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 25 + true - 39872d87:13e14015f61:2964 - - - - - 25 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle - true - - - - false - - Default - 325 - 0 - 0 - - - 1 - 0 - true + 0 + 0 + + + + + + - - 0 - $(pv_name) -$(pv_value) - 0 - false - - + 0 + 1 + true + false + + Default + + + + + 10 + false true - true - 39872d87:13e14015f61:2969 - - 10 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 50 - 0 - - false - 1 - - - - - 30 - 15 - - true - 1 - 39872d87:13e14015f61:296a + 30 + + false - - 10 - Label - - true - true - false - - true - false - - - - Label + + + + 0 + 1 true - BUSY - + - 50 - 0 + + + + 10 + 1 + Label @@ -167,46 +158,45 @@ $(pv_value) $(P)$(S)busy - 1 - - - - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:296b - false - - 10 - Label true true false - true + false + BUSY + + true + 1 + true + Label + 50 + false + 0 + 0 + + + + false - - - - Label + + + + 0 + 1 true - DONE - + - 50 - 0 + + + + 10 + 1 + Label @@ -218,86 +208,85 @@ $(pv_value) $(P)$(S)busy - 1 - - - - 1 - - 0 - true + + true + true + false + + + false + DONE + true + 1 + true + Label + 50 + false 0 + 0 - - - true - - true - 39872d87:13e14015f61:2984 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + 20 + false + + true + Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 35 - 0 - - false - 1 - - - - - 125 - 275 - - true - 1 - 39872d87:13e14015f61:2985 + 125 + + false - - 20 - Label - - true - true - false - - true - false - - - - Label + + + + 0 + 1 true - Out - + - 35 - 0 + + + + 20 + 0 + Label @@ -309,46 +298,45 @@ $(pv_value) $(P)$(S)Status1 - 1 - - - - 0 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:2986 - false - - 20 - Label true true false - true + false + Out + + true + 1 + true + Label + 35 + false + 0 + 0 + + + + false - - - - Label + + + + 0 + 1 true - In - + - 35 - 0 + + + + 20 + 0 + Label @@ -360,47 +348,46 @@ $(pv_value) $(P)$(S)Status1 - 1 - - - - 0 - - 0 - true + + true + true + false + + + false + In + true + 1 + true + Label + 35 + false 0 + 0 - - true - 1 - 39872d87:13e14015f61:2961 + + false - - 20 - Label - - true - true - false - - true - false - - - - Label + + + + 0 + 1 true - In - + - 35 - 0 + + + + 20 + 0 + Label @@ -412,46 +399,45 @@ $(pv_value) $(P)$(S)Status4 - 1 - - - - 0 - - 185 - true - - 275 - - - true - 1 - 39872d87:13e14015f61:2962 - false - - 20 - Label true true false - true + false + In + + true + 1 + true + Label + 35 + false + 275 + 185 + + + + false - - - - Label + + + + 0 + 1 true - In - + - 35 - 0 + + + + 20 + 0 + Label @@ -463,46 +449,45 @@ $(pv_value) $(P)$(S)Status3 - 1 - - - - 0 - - 165 - true - - 275 - - - true - 1 - 39872d87:13e14015f61:2963 - false - - 20 - Label true true false - true + false + In + + true + 1 + true + Label + 35 + false + 275 + 165 + + + + false + + + + 0 + 1 + true + + + - + - Label - true - In - - - - 35 - 0 + 20 + 0 + Label @@ -514,1469 +499,1514 @@ $(pv_value) $(P)$(S)Status2 - 1 - - - - 0 - - 145 - true - - 275 - - - false - true - 39872d87:13e14015f61:2965 - - 20 - Action Button - false true true false - $(P)$(S)openShutter.PROC - - - - - - - Action Button - true - Open shutter - false - - Default - - 130 - 0 - 0 - - - - false - 1 - - - - 105 + + false + In + + true + 1 + true + Label + 35 + false + 275 + 145 + + $(P)$(S)openShutter.PROC 1 10 + - $(pv_name) -$(pv_value) - 140 - - + false + false + + + false - true - 39872d87:13e14015f61:2966 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)openShutter.PROC + + true true false - $(P)$(S)closeShutter.PROC - - - - - - - Action Button - true - Close shutter - false - - Default - - 120 - 0 - 0 - - - + + + Open shutter false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 130 + 140 105 + + $(P)$(S)closeShutter.PROC 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(S)closeShutter.PROC + + + + true + true + false + + + + Close shutter + false $(pv_name) $(pv_value) + true + Action Button + 120 10 + 105 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2967 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 322 - 0 - 0 - - 1 - 1 - true - - - - - 26 - $(pv_name) -$(pv_value) - 1 - - - true - true - 1 - false - 39872d87:13e14015f61:2968 - false 0.0 - - 14 - Text Update - false + true true - false + true - 1 - true + + $(pv_name) +$(pv_value) false - $(P)$(S)writeRead.AINP + true + Polyline + 322 + 1 + 26 + + + + false + false + false - + - - - - Text Update + true + + + + 0 + 1 true - ###### - false - 0 - + - 255 - 0 - - - 1 - - - + false + + + + 1 + 14 0 - - 301 - false + Text Update + 0 + true + $(P)$(S)writeRead.AINP + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 255 + false 10 + 301 - + + + + $(P)$(S)expose.PROC + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:296c - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)expose.PROC + + true true false - $(P)$(S)expose.PROC - - - - - - - Action Button - true + + Expose - false - - Default - - 50 - 0 - 0 - - - false - 1 - - - - 40 - - - $(P)$(S)expose.PROC - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 50 15 + 40 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:296d - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(S)exposeTime + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(S)exposeTime - - - - false - 0 - - - false - - - - 0 - - 40 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 65 + 40 - - true - 1 - 39872d87:13e14015f61:296e + + false - + + + + + + + 0 + 1 + true + + + + + + 16 + 0 Label + true true false - true + false - - - - - - - Label - true (s) - - - - 10 - 0 - - 1 - - - - 0 - - 42 - true + true + 1 + true + Label + 10 + false 115 + 42 - + + + + $(P)$(S)serial.PROC + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:296f - + + + + 0 + 1 + true + + Default + + false + + + 15 + Action Button - false + 0 + $(P)$(S)serial.PROC + + true true false - $(P)$(S)serial.PROC - - - - - - - Action Button - true + + READ - false - - Default - - 30 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 30 + 235 80 + + - $(P)$(S)serial.PROC - 1 + $(P)$(S)sendCommand.VAL + H 10 + - $(pv_name) -$(pv_value) - 235 - - + false + false + + + false - true - 39872d87:13e14015f61:2970 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - + + + Shutter status + false + $(pv_name) +$(pv_value) + true Action Button - true - Shutter status - false - - Default - 120 - 0 - 0 - - - - false - 1 - - - + 10 215 + + $(P)$(S)sendCommand.VAL - H + L 10 + - $(pv_name) -$(pv_value) - 10 - - + false + false + + + false - true - 39872d87:13e14015f61:2971 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - - Action Button - true + + Forbid Local Ctrl - false - - Default - - 130 - 0 - 0 - - - false - 1 - - - - 215 - - - $(P)$(S)sendCommand.VAL - L - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 130 140 + 215 - - true - true - 1 - false - 39872d87:13e14015f61:2972 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(S)getAck.VAL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(S)getAck.VAL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 255 - 0 - - - 1 - - - - 0 - - 65 false - $(pv_name) -$(pv_value) 10 + 65 - - true - true - 1 - false - 39872d87:13e14015f61:2973 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(S)serial.AINP + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(S)serial.AINP - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 225 - 0 - - - 1 - - - - 0 - - 80 false - $(pv_name) -$(pv_value) 10 + 80 - - false - true - 39872d87:13e14015f61:2974 - - 20 - Action Button - false - - true - true - false - - $(P)$(S)sendCommand.VAL - - - - - - - Action Button - true - Insert Filter 1 - false - - Default - - 120 - 0 - 0 - - - - false - 1 - - - - 125 + $(P)$(S)sendCommand.VAL I1 10 + - $(pv_name) -$(pv_value) - 10 - - + false + false + + + false - true - 39872d87:13e14015f61:2975 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - + + + Insert Filter 1 + false + $(pv_name) +$(pv_value) + true Action Button - true - Insert Filter 2 - false - - Default - 120 - 0 - 0 - - - - false - 1 - - - - 145 + 10 + 125 + + $(P)$(S)sendCommand.VAL I2 10 + - $(pv_name) -$(pv_value) - 10 - - + false + false + + + false - true - 39872d87:13e14015f61:2976 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - - Action Button - true - Remove Filter 1 - false - - Default - - 130 - 0 - 0 - - - + + + Insert Filter 2 false - 1 - - - - 125 + $(pv_name) +$(pv_value) + true + Action Button + 120 + 10 + 145 + + $(P)$(S)sendCommand.VAL R1 10 + - $(pv_name) -$(pv_value) - 140 - - + false + false + + + false - true - 39872d87:13e14015f61:2977 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - + + + Remove Filter 1 + false + $(pv_name) +$(pv_value) + true Action Button - true - Remove Filter 2 - false - - Default - 130 - 0 - 0 - - - - false - 1 - - - - 145 + 140 + 125 + + $(P)$(S)sendCommand.VAL R2 10 + - $(pv_name) -$(pv_value) - 140 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2978 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - + false + false - + - - - - Polyline - true - false - - Default - - 280 - 0 - 0 - - - 1 - 1 - true + false - - 99 - $(pv_name) -$(pv_value) - -4 - - - false - true - 39872d87:13e14015f61:2979 - + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL + + + Remove Filter 2 + false + $(pv_name) +$(pv_value) + true + Action Button + 130 + 140 + 145 + + + + false + 255 + true + 20 + 0 + false - + - - - - Action Button + false + + + + 0 + 1 true - Enable shutter - false + true + 100.0 - Default + Default - 120 - 0 - 0 - - + false + + + + 1 + true + 0 + 1 + Polyline + + + + + - false - 1 - - - - 235 + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 280 + -4 + 99 + + $(P)$(S)sendCommand.VAL 2 10 + - $(pv_name) -$(pv_value) - 10 - - + false + false + + + false - true - 39872d87:13e14015f61:297a - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - + + + Enable shutter + false + $(pv_name) +$(pv_value) + true Action Button - true - Disable shutter - false - - Default - 120 - 0 - 0 - - - - false - 1 - - - - 255 + 10 + 235 + + $(P)$(S)sendCommand.VAL 4 10 + - $(pv_name) -$(pv_value) - 10 - - + false + false + + + false - true - 39872d87:13e14015f61:297b - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - + + + Disable shutter + false + $(pv_name) +$(pv_value) + true Action Button - true - Filter Status - false - - Default - 120 - 0 - 0 - - - - false - 1 - - - - 275 + 10 + 255 + + $(P)$(S)sendCommand.VAL F 10 + - $(pv_name) -$(pv_value) - 10 - - + false + false + + + false - true - 39872d87:13e14015f61:297c - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - - Action Button - true - Position Query - false - - Default - - 130 - 0 - 0 - - - + + + Filter Status false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 120 + 10 275 + + $(P)$(S)sendCommand.VAL P 10 + - $(pv_name) -$(pv_value) - 140 - - - false - true - 39872d87:13e14015f61:297d - - 20 - Action Button - false - - true - true - false - - $(P)$(S)sendCommand.VAL + false + false - + - - - - Action Button + false + + + + 0 + 1 true - Allow Local Ctrl - false - Default + Default - 130 - 0 - 0 + false + + + + 20 - + Action Button + 0 + $(P)$(S)sendCommand.VAL + + + true + true + false + + + + Position Query false - 1 - - - - 235 + $(pv_name) +$(pv_value) + true + Action Button + 130 + 140 + 275 + + $(P)$(S)sendCommand.VAL U 10 + - $(pv_name) -$(pv_value) - 140 - - + false + false + + + false - true - 39872d87:13e14015f61:297e - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - + + + Allow Local Ctrl + false + $(pv_name) +$(pv_value) + true Action Button - true - Clear Short Error - false - - Default - 130 - 0 - 0 - - - - false - 1 - - - - 255 + 140 + 235 + + $(P)$(S)sendCommand.VAL Z 10 + - $(pv_name) -$(pv_value) - 140 - - + false + false + + + false - true - 39872d87:13e14015f61:297f - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - - Action Button - true - Insert Filter 3 - false - - Default - - 120 - 0 - 0 - - - + + + Clear Short Error false - 1 - - - - 165 + $(pv_name) +$(pv_value) + true + Action Button + 130 + 140 + 255 + + $(P)$(S)sendCommand.VAL I3 10 + - $(pv_name) -$(pv_value) - 10 - - + false + false + + + false - true - 39872d87:13e14015f61:2980 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - + + + Insert Filter 3 + false + $(pv_name) +$(pv_value) + true Action Button - true - Insert Filter 4 - false - - Default - 120 - 0 - 0 - - - - false - 1 - - - - 185 + 10 + 165 + + $(P)$(S)sendCommand.VAL I4 10 + - $(pv_name) -$(pv_value) - 10 - - + false + false + + + false - true - 39872d87:13e14015f61:2981 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - - Action Button - true - Remove Filter 3 - false - - Default - - 130 - 0 - 0 - - - + + + Insert Filter 4 false - 1 - - - - 165 + $(pv_name) +$(pv_value) + true + Action Button + 120 + 10 + 185 + + $(P)$(S)sendCommand.VAL R3 10 + - $(pv_name) -$(pv_value) - 140 - - + false + false + + + false - true - 39872d87:13e14015f61:2982 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - + + + Remove Filter 3 + false + $(pv_name) +$(pv_value) + true Action Button - true - Remove Filter 4 - false - - Default - 130 - 0 - 0 - - - - false - 1 - - - - 185 + 140 + 165 + + $(P)$(S)sendCommand.VAL R4 10 + - $(pv_name) -$(pv_value) - 140 - - + false + false + + + false - true - true - 39872d87:13e14015f61:2983 - - 20 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + $(P)$(S)sendCommand.VAL + + true true false - false - $(P)$(S)poll.SCAN + + + Remove Filter 4 + false + $(pv_name) +$(pv_value) + true + Action Button + 130 + 140 + 185 + + + + true + false + false - + - - - - Menu Button + false + + + + 6 + 1 true - false - Default + Default - 80 - 6 + false + + + + 20 - + Menu Button + $(P)$(S)poll.SCAN - 1 - - - - 42 - - $(pv_name) -$(pv_value) - 238 - - - true - 1 - 39872d87:13e14015f61:2987 - false - - 20 - Label + true true false - true - false + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 80 + 238 + 42 + + + + false - - - - Label + + + + 0 + 1 true - Out - + - 35 - 0 + + + + 20 + 0 + Label @@ -1988,46 +2018,45 @@ $(pv_value) $(P)$(S)Status2 - 1 - - - - 0 - - 145 - true - - 275 - - - true - 1 - 39872d87:13e14015f61:2988 - false - - 20 - Label true true false - true + false + Out + + true + 1 + true + Label + 35 + false + 275 + 145 + + + + false - - - - Label + + + + 0 + 1 true - Out - + - 35 - 0 + + + + 20 + 0 + Label @@ -2039,46 +2068,45 @@ $(pv_value) $(P)$(S)Status3 - 1 - - - - 0 - - 165 - true - - 275 - - - true - 1 - 39872d87:13e14015f61:2989 - false - - 20 - Label true true false - true + false + Out + + true + 1 + true + Label + 35 + false + 275 + 165 + + + + false - - - - Label + + + + 0 + 1 true - Out - + - 35 - 0 + + + + 20 + 0 + Label @@ -2090,200 +2118,207 @@ $(pv_value) $(P)$(S)Status4 - 1 - - - - 0 - - 185 - true - - 275 - - - true - 1 - 39872d87:13e14015f61:298a - false - - 12 - Label true true false - true + false + Out + + true + 1 + true + Label + 35 + false + 275 + 185 + + + + false - - - - Label - true - Status poll - - - - 66 - 0 - - 1 + 0 + 1 + true + + + + + + + 12 0 - - 30 - true - - 244 - - - true - 1 - 39872d87:13e14015f61:298b - false - - 20 Label + true true false - true + false + Status poll + + true + 1 + true + Label + 66 + false + 244 + 30 + + + + false - - - - Label - true - XIA Shutter - - - - 325 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 1 - - 5 - true - - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:298c - false - 0.0 - - 14 - Text Update - false + Label + true true false - 1 - true - false - $(P)$(S)Status.AINP + + false + XIA Shutter + + true + 1 + true + Label + 325 + false + 0 + 5 + + + + false + false + false - + - - - - Text Update - true - ###### - false - 0 - - - - 255 - 0 - - - 1 + true - 0 - - 320 - false - $(pv_name) -$(pv_value) - 10 - - - false - true - false - 39872d87:13e14015f61:298d - - 20 - Menu Button + 0 + 1 + true + + + false + + + + 1 + 14 + 0 + Text Update + 0 + true + $(P)$(S)Status.AINP + + 0.0 + true true false + + false + ###### + $(pv_name) +$(pv_value) false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - - 315 + 1 + true + Text Update + 255 + false + 10 + 320 + + XIA_shutter_more.opi true - 1 + 0 XIA shutter (small) + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + Less + false $(pv_name) $(pv_value) + true + Action Button + 40 275 + 315 - \ No newline at end of file + diff --git a/opticsApp/op/opi/XIA_shutterTry.opi b/opticsApp/op/opi/autoconvert/XIA_shutterTry.opi similarity index 76% rename from opticsApp/op/opi/XIA_shutterTry.opi rename to opticsApp/op/opi/autoconvert/XIA_shutterTry.opi index 60b2e9e..0a00404 100644 --- a/opticsApp/op/opi/XIA_shutterTry.opi +++ b/opticsApp/op/opi/autoconvert/XIA_shutterTry.opi @@ -1,1447 +1,1240 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 340 true - 39872d87:13e14015f61:29bd - 3.1.2.20120830 + XIA_shutterTry + + true + true + false true - 340 - XIA_shutterTry false - false - - - - - - Display - true 325 - - true - 5 - - false - -1 - -1 - - - 98 74 - + 98 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 25 + true - 39872d87:13e14015f61:29be - - - - - 25 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle - true - - - - false - - Default - 325 - 0 - 0 - - - 1 - 0 - true + 0 + 0 + + + + + + - - 0 - $(pv_name) -$(pv_value) - 0 - false - - + 0 + 1 + true + false + + Default + + + + + 20 + false true - true - 39872d87:13e14015f61:29d4 - - 20 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - - 205 - 0 - - false - 1 - - - - + 80 + 140 40 - - 15 - - - true - - true - 39872d87:13e14015f61:29d8 - - 20 - Grouping Container - - true - true - false - - true - false + + + false - + - - - - Grouping Container - true - - Default - - 80 - 0 - - false - 1 - - 0 - - 125 - - true - 1 - 39872d87:13e14015f61:29d9 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - EXPOSING - - - - 80 - 0 - - - - true - - - false - - $(P)$(S):busy - - - 1 - - - - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:29da - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - DONE - - - - 80 - 0 - - - - true - - - false - - $(P)$(S):busy - - - 1 - - - - 1 - - 0 - true - - 0 - - - - false - true - 39872d87:13e14015f61:29d5 - + 0 + 1 + true + + + + + + 20 - Action Button - false + 1 + Label + + + + true + + + false + + $(P)$(S):busy + + true true false - $(P)$(S):expose.PROC - - - - - - - Action Button - true - Expose - false - - Default - - 50 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)$(S):expose.PROC - 1 - 10 - - - - $(pv_name) -$(pv_value) + + false + EXPOSING + + true + 1 + true + Label + 80 + false 0 + 0 - - false - true - 1 - false + + false - - 20 - false - true - + - Text Input + + + + 0 + 1 true - - + - 50 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:29d6 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(S):exposeTime - + - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 50 - - - true - 1 - 39872d87:13e14015f61:29d7 - false - - 16 + 20 + 1 Label + + + + true + + + false + + $(P)$(S):busy + + true true false - true + false - - - - - - + DONE + + true + 1 + true Label - true - (s) - - - - 10 - 0 - - 1 - - - - 0 - - 2 - true - - 100 + 80 + false + 0 + 0 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:29bf - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 322 - 0 - 0 - - 1 - 1 - true - - - - - 26 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 322 1 + 26 - - true - true - 1 - false - 39872d87:13e14015f61:29c0 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(S):UserCmd_IO.AINP + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(S):UserCmd_IO.AINP - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 255 - 0 - - - 1 - - - - 0 - - 300 false - $(pv_name) -$(pv_value) 10 + 300 - + + + + $(P)$(S):sendCommand.VAL + H + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:29c1 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S):sendCommand.VAL + + true true false - $(P)$(S):sendCommand.VAL - - - - - - - Action Button - true + + Shutter status - false - - Default - - 120 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 120 + 10 215 + + $(P)$(S):sendCommand.VAL - H + L 10 + - $(pv_name) -$(pv_value) - 10 - - + false + false + + + false - true - 39872d87:13e14015f61:29c2 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S):sendCommand.VAL + + true true false - $(P)$(S):sendCommand.VAL - - - - - - - Action Button - true + + Forbid Local Ctrl - false - - Default - - 130 - 0 - 0 - - - false - 1 - - - - 215 - - - $(P)$(S):sendCommand.VAL - L - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 130 140 + 215 - - true - true - 1 - false - 39872d87:13e14015f61:29c3 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(S):expose_IO.AINP + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(S):expose_IO.AINP - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 255 - 0 - - - 1 - - - - 0 - - 65 false - $(pv_name) -$(pv_value) 10 + 65 - - true - true - 1 - false - 39872d87:13e14015f61:29c4 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(S):exposeDone_IO.AINP + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(S):exposeDone_IO.AINP - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 255 - 0 - - - 1 - - - - 0 - - 80 false - $(pv_name) -$(pv_value) 10 + 80 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:29c5 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 280 - 0 - 0 - - 1 - 1 - true - - - - - 99 - $(pv_name) -$(pv_value) - -4 - - - false - true - 39872d87:13e14015f61:29c6 - - 20 - Action Button - false + 0.0 + true true - false + true - $(P)$(S):sendCommand.VAL - - - - - - - Action Button - true - Enable shutter - false - - Default - - 120 - 0 - 0 - - - - false - 1 - - - - 235 + + $(pv_name) +$(pv_value) + false + true + Polyline + 280 + -4 + 99 + + $(P)$(S):sendCommand.VAL 2 10 + - $(pv_name) -$(pv_value) - 10 - - + false + false + + + false - true - 39872d87:13e14015f61:29c7 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S):sendCommand.VAL + + true true false - $(P)$(S):sendCommand.VAL - - - - - - - Action Button - true - Disable shutter - false - - Default - - 120 - 0 - 0 - - - + + + Enable shutter false - 1 - - - - 255 + $(pv_name) +$(pv_value) + true + Action Button + 120 + 10 + 235 + + $(P)$(S):sendCommand.VAL 4 10 + - $(pv_name) -$(pv_value) - 10 - - + false + false + + + false - true - 39872d87:13e14015f61:29c8 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S):sendCommand.VAL + + true true false - $(P)$(S):sendCommand.VAL - - - - - - + + + Disable shutter + false + $(pv_name) +$(pv_value) + true Action Button - true - Filter Status - false - - Default - 120 - 0 - 0 - - - - false - 1 - - - - 275 + 10 + 255 + + $(P)$(S):sendCommand.VAL F 10 + - $(pv_name) -$(pv_value) - 10 - - + false + false + + + false - true - 39872d87:13e14015f61:29c9 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S):sendCommand.VAL + + true true false - $(P)$(S):sendCommand.VAL - - - - - - - Action Button - true - Position Query - false - - Default - - 130 - 0 - 0 - - - + + + Filter Status false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 120 + 10 275 + + $(P)$(S):sendCommand.VAL P 10 + - $(pv_name) -$(pv_value) - 140 - - + false + false + + + false - true - 39872d87:13e14015f61:29ca - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S):sendCommand.VAL + + true true false - $(P)$(S):sendCommand.VAL - - - - - - + + + Position Query + false + $(pv_name) +$(pv_value) + true Action Button - true - Allow Local Ctrl - false - - Default - 130 - 0 - 0 - - - - false - 1 - - - - 235 + 140 + 275 + + $(P)$(S):sendCommand.VAL U 10 + - $(pv_name) -$(pv_value) - 140 - - + false + false + + + false - true - 39872d87:13e14015f61:29cb - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S):sendCommand.VAL + + true true false - $(P)$(S):sendCommand.VAL - - - - - - - Action Button - true - Clear Short Error - false - - Default - - 130 - 0 - 0 - - - + + + Allow Local Ctrl false - 1 - - - - 255 - - - $(P)$(S):sendCommand.VAL - Z - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 130 140 + 235 - - false - true - false - 39872d87:13e14015f61:29cc - - 20 - Menu Button - false - - true - true - false - - false - + + + + $(P)$(S):sendCommand.VAL + Z + 10 + + + + + false + false - + - - - - Menu Button + false + + + + 0 + 1 true - false - Default + Default - 40 - 6 - - + false + + + + 20 + + Action Button + 0 + $(P)$(S):sendCommand.VAL - 1 - - - - 300 + + + true + true + false + + + + Clear Short Error + false + $(pv_name) +$(pv_value) + true + Action Button + 130 + 140 + 255 + + XIA_shutterTry_more.opi true - 1 + 0 XIA shutter (small) - $(pv_name) -$(pv_value) - 285 - - + false + false + + + false - true - true - 39872d87:13e14015f61:29cd - - 20 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + + + true true false - false - $(P)$(S):poll.SCAN + + + Less + false + $(pv_name) +$(pv_value) + true + Action Button + 40 + 285 + 300 + + + + true + false + false - + - - - - Menu Button + false + + + + 6 + 1 true - false - Default + Default - 80 - 6 + false + + + + 20 - + Menu Button + $(P)$(S):poll.SCAN - 1 - - - - 42 - + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 80 238 + 42 - - true - 1 - 39872d87:13e14015f61:29ce + + false - + + + + + + + 0 + 1 + true + + + + + + 12 + 0 Label + true true false - true + false + Status poll + + true + 1 + true + Label + 66 + false + 244 + 30 + + + + false - - - - Label - true - Status poll - - - - 66 - 0 - - 1 - 0 - - 30 - true - - 244 - - - true - 1 - 39872d87:13e14015f61:29cf - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true XIA Shutter - - - - 325 - 0 - - 1 - - - - 1 - - 5 - true + true + 1 + true + Label + 325 + false 0 + 5 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:29d0 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(S):address + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(S):address - - - - false - 0 - - - false - - - - 0 - - 320 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 70 + 320 - - true - 1 - 39872d87:13e14015f61:29d1 + + false - - 10 - Label - - true - true - false - - true - false - - - - Label - true - MODULE - - - - 50 - 0 - - 1 - 1 - - 320 - true - - 15 - - - true - 1 - 39872d87:13e14015f61:29d2 - false - + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false + MODULE + + true + 1 + true + Label + 50 + false + 15 + 320 + + + + false - - - - Label - true - ADDRESS - - - - 50 - 0 - - 1 + 0 + 1 + true + + + + + + + 10 1 - - 330 - true - - 15 - - - false - true - false - 39872d87:13e14015f61:29d3 - - 20 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - - 320 + + false + ADDRESS + + true + 1 + true + Label + 50 + false + 15 + 330 + + asynOctet.opi @@ -1449,7 +1242,7 @@ $(pv_value) true $(S):writeRead - 0 + 1 filterStatus asyn @@ -1458,7 +1251,7 @@ $(pv_value) true $(S):expose_IO - 0 + 1 exposeCmd asyn @@ -1467,7 +1260,7 @@ $(pv_value) true $(S):UserCmd_IO - 0 + 1 UserCmd_IO @@ -1476,43 +1269,228 @@ $(pv_value) true $(S):exposeDone_IO - 0 + 1 exposeDone asyn + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 40 + 285 + 320 + + + + + $(P)$(S):expose.PROC + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(S):expose.PROC + + + + true + true + false + + + + Expose + false + $(pv_name) +$(pv_value) + true + Action Button + 50 + 15 + 40 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(S):exposeTime + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + $(pv_name) $(pv_value) - 285 - - + false true - 1 - 39872d87:13e14015f61:29db + Text Input + 50 + 65 + 40 + + + false - - 20 + + + + + + + 0 + 1 + true + + + + + + + 16 + 0 Label + true true false - true + false + (s) + + true + 1 + true + Label + 10 + false + 115 + 42 + + + + false - - - - Label + + + + 0 + 1 true - In - + - 35 - 0 + + + + 20 + 0 + Label @@ -1524,46 +1502,45 @@ $(pv_value) $(P)$(S):Status4 - 1 - - - - 0 - - 185 - true - - 275 - - - true - 1 - 39872d87:13e14015f61:29dc - false - - 20 - Label true true false - true + false + In + + true + 1 + true + Label + 35 + false + 275 + 185 + + + + false - - - - Label + + + + 0 + 1 true - In - + - 35 - 0 + + + + 20 + 0 + Label @@ -1575,46 +1552,45 @@ $(pv_value) $(P)$(S):Status3 - 1 - - - - 0 - - 165 - true - - 275 - - - true - 1 - 39872d87:13e14015f61:29dd - false - - 20 - Label true true false - true + false + In + + true + 1 + true + Label + 35 + false + 275 + 165 + + + + false - - - - Label + + + + 0 + 1 true - In - + - 35 - 0 + + + + 20 + 0 + Label @@ -1626,556 +1602,575 @@ $(pv_value) $(P)$(S):Status2 - 1 - - - - 0 - - 145 - true - - 275 - - - false - true - 39872d87:13e14015f61:29de - - 20 - Action Button - false true true false - $(P)$(S):openShutter.PROC - - - - - - - Action Button - true - Open shutter - false - - Default - - 130 - 0 - 0 - - - - false - 1 - - - - 105 + + false + In + + true + 1 + true + Label + 35 + false + 275 + 145 + + $(P)$(S):openShutter.PROC 1 10 + - $(pv_name) -$(pv_value) - 140 - - + false + false + + + false - true - 39872d87:13e14015f61:29df - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S):openShutter.PROC + + true true false - $(P)$(S):closeShutter.PROC - - - - - - - Action Button - true - Close shutter - false - - Default - - 120 - 0 - 0 - - - + + + Open shutter false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 130 + 140 105 + + $(P)$(S):closeShutter.PROC 1 10 + - $(pv_name) -$(pv_value) - 10 - - + false + false + + + false - true - 39872d87:13e14015f61:29e0 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S):closeShutter.PROC + + true true false - $(P)$(S):sendCommand.VAL - - - - - - + + + Close shutter + false + $(pv_name) +$(pv_value) + true Action Button - true - Insert Filter 1 - false - - Default - 120 - 0 - 0 - - - - false - 1 - - - - 125 + 10 + 105 + + $(P)$(S):sendCommand.VAL I1 10 + - $(pv_name) -$(pv_value) - 10 - - + false + false + + + false - true - 39872d87:13e14015f61:29e1 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S):sendCommand.VAL + + true true false - $(P)$(S):sendCommand.VAL - - - - - - + + + Insert Filter 1 + false + $(pv_name) +$(pv_value) + true Action Button - true - Insert Filter 2 - false - - Default - 120 - 0 - 0 - - - - false - 1 - - - - 145 + 10 + 125 + + $(P)$(S):sendCommand.VAL I2 10 + - $(pv_name) -$(pv_value) - 10 - - + false + false + + + false - true - 39872d87:13e14015f61:29e2 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S):sendCommand.VAL + + true true false - $(P)$(S):sendCommand.VAL - - - - - - - Action Button - true - Remove Filter 1 - false - - Default - - 130 - 0 - 0 - - - + + + Insert Filter 2 false - 1 - - - - 125 + $(pv_name) +$(pv_value) + true + Action Button + 120 + 10 + 145 + + $(P)$(S):sendCommand.VAL R1 10 + - $(pv_name) -$(pv_value) - 140 - - + false + false + + + false - true - 39872d87:13e14015f61:29e3 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S):sendCommand.VAL + + true true false - $(P)$(S):sendCommand.VAL - - - - - - - Action Button - true - Remove Filter 2 - false - - Default - - 130 - 0 - 0 - - - + + + Remove Filter 1 false - 1 - - - - 145 + $(pv_name) +$(pv_value) + true + Action Button + 130 + 140 + 125 + + $(P)$(S):sendCommand.VAL R2 10 + - $(pv_name) -$(pv_value) - 140 - - + false + false + + + false - true - 39872d87:13e14015f61:29e4 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S):sendCommand.VAL + + true true false - $(P)$(S):sendCommand.VAL - - - - - - - Action Button - true - Insert Filter 3 - false - - Default - - 120 - 0 - 0 - - - + + + Remove Filter 2 false - 1 - - - - 165 + $(pv_name) +$(pv_value) + true + Action Button + 130 + 140 + 145 + + $(P)$(S):sendCommand.VAL I3 10 + - $(pv_name) -$(pv_value) - 10 - - + false + false + + + false - true - 39872d87:13e14015f61:29e5 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S):sendCommand.VAL + + true true false - $(P)$(S):sendCommand.VAL - - - - - - + + + Insert Filter 3 + false + $(pv_name) +$(pv_value) + true Action Button - true - Insert Filter 4 - false - - Default - 120 - 0 - 0 - - - - false - 1 - - - - 185 + 10 + 165 + + $(P)$(S):sendCommand.VAL I4 10 + - $(pv_name) -$(pv_value) - 10 - - + false + false + + + false - true - 39872d87:13e14015f61:29e6 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S):sendCommand.VAL + + true true false - $(P)$(S):sendCommand.VAL - - - - - - - Action Button - true - Remove Filter 3 - false - - Default - - 130 - 0 - 0 - - - + + + Insert Filter 4 false - 1 - - - - 165 + $(pv_name) +$(pv_value) + true + Action Button + 120 + 10 + 185 + + $(P)$(S):sendCommand.VAL R3 10 + - $(pv_name) -$(pv_value) - 140 - - + false + false + + + false - true - 39872d87:13e14015f61:29e7 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S):sendCommand.VAL + + true true false - $(P)$(S):sendCommand.VAL - - - - - - + + + Remove Filter 3 + false + $(pv_name) +$(pv_value) + true Action Button - true - Remove Filter 4 - false - - Default - 130 - 0 - 0 - - - - false - 1 - - - - 185 + 140 + 165 + + $(P)$(S):sendCommand.VAL R4 10 + - $(pv_name) -$(pv_value) - 140 - - - true - 1 - 39872d87:13e14015f61:29e8 - false - + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + 20 - Label + + Action Button + 0 + $(P)$(S):sendCommand.VAL + + true true false - true - false + + + Remove Filter 4 + false + $(pv_name) +$(pv_value) + true + Action Button + 130 + 140 + 185 + + + + false - - - - Label + + + + 0 + 1 true - Out - + - 35 - 0 + + + + 20 + 0 + Label @@ -2187,46 +2182,45 @@ $(pv_value) $(P)$(S):Status1 - 1 - - - - 0 - - 125 - true - - 275 - - - true - 1 - 39872d87:13e14015f61:29e9 - false - - 20 - Label true true false - true + false + Out + + true + 1 + true + Label + 35 + false + 275 + 125 + + + + false - - - - Label + + + + 0 + 1 true - In - + - 35 - 0 + + + + 20 + 0 + Label @@ -2238,46 +2232,45 @@ $(pv_value) $(P)$(S):Status1 - 1 - - - - 0 - - 125 - true - - 275 - - - true - 1 - 39872d87:13e14015f61:29ea - false - - 20 - Label true true false - true + false + In + + true + 1 + true + Label + 35 + false + 275 + 125 + + + + false - - - - Label + + + + 0 + 1 true - Out - + - 35 - 0 + + + + 20 + 0 + Label @@ -2289,46 +2282,45 @@ $(pv_value) $(P)$(S):Status2 - 1 - - - - 0 - - 145 - true - - 275 - - - true - 1 - 39872d87:13e14015f61:29eb - false - - 20 - Label true true false - true + false + Out + + true + 1 + true + Label + 35 + false + 275 + 145 + + + + false - - - - Label + + + + 0 + 1 true - Out - + - 35 - 0 + + + + 20 + 0 + Label @@ -2340,46 +2332,45 @@ $(pv_value) $(P)$(S):Status3 - 1 - - - - 0 - - 165 - true - - 275 - - - true - 1 - 39872d87:13e14015f61:29ec - false - - 20 - Label true true false - true + false + Out + + true + 1 + true + Label + 35 + false + 275 + 165 + + + + false - - - - Label + + + + 0 + 1 true - Out - + - 35 - 0 + + + + 20 + 0 + Label @@ -2391,15 +2382,22 @@ $(pv_value) $(P)$(S):Status4 - 1 - - - - 0 - - 185 - true + + true + true + false + + + false + Out + true + 1 + true + Label + 35 + false 275 + 185 - \ No newline at end of file + diff --git a/opticsApp/op/opi/XIA_shutterTry_more.opi b/opticsApp/op/opi/autoconvert/XIA_shutterTry_more.opi similarity index 72% rename from opticsApp/op/opi/XIA_shutterTry_more.opi rename to opticsApp/op/opi/autoconvert/XIA_shutterTry_more.opi index 79c8f71..72dc570 100644 --- a/opticsApp/op/opi/XIA_shutterTry_more.opi +++ b/opticsApp/op/opi/autoconvert/XIA_shutterTry_more.opi @@ -1,790 +1,753 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 190 true - 39872d87:13e14015f61:2a1e - 3.1.2.20120830 + XIA_shutterTry_more + + true + true + false true - 190 - XIA_shutterTry_more false - false - - - - - - Display - true 310 - - true - 5 - - false - -1 - -1 - - - 477 75 - + 477 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 25 + true - 39872d87:13e14015f61:2a1f - - - - - 25 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle - true - - - - false - - Default - 310 - 0 - 0 - - - 1 - 0 - true + 0 + 0 + + + + + + - - 0 - $(pv_name) -$(pv_value) - 0 - false - - + 0 + 1 + true + false + + Default + + + + + 20 + false true - true - 39872d87:13e14015f61:2a27 - - 20 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - - 205 - 0 - - false - 1 - - - - + 80 + 140 40 - - 15 - - - true - - true - 39872d87:13e14015f61:2a2b - - 20 - Grouping Container - - true - true - false - - true - false + + + false - + - - - - Grouping Container - true - - Default - - 80 - 0 - - false - 1 - - 0 - - 125 - - true - 1 - 39872d87:13e14015f61:2a2c - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - EXPOSING - - - - 80 - 0 - - - - true - - - false - - $(P)$(S):busy - - - 1 - - - - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:2a2d - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - DONE - - - - 80 - 0 - - - - true - - - false - - $(P)$(S):busy - - - 1 - - - - 1 - - 0 - true - - 0 - - - - false - true - 39872d87:13e14015f61:2a28 - + 0 + 1 + true + + + + + + 20 - Action Button - false + 1 + Label + + + + true + + + false + + $(P)$(S):busy + + true true false - $(P)$(S):expose.PROC - - - - - - - Action Button - true - Expose - false - - Default - - 50 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)$(S):expose.PROC - 1 - 10 - - - - $(pv_name) -$(pv_value) + + false + EXPOSING + + true + 1 + true + Label + 80 + false 0 + 0 - - false - true - 1 - false + + false - - 20 - false - true - + - Text Input + + + + 0 + 1 true - - + - 50 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2a29 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(S):exposeTime - + - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 50 - - - true - 1 - 39872d87:13e14015f61:2a2a - false - - 16 + 20 + 1 Label + + + + true + + + false + + $(P)$(S):busy + + true true false - true + false - - - - - - + DONE + + true + 1 + true Label - true - (s) - - - - 10 - 0 - - 1 - - - - 0 - - 2 - true - - 100 + 80 + false + 0 + 0 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2a20 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 308 - 0 - 0 - - 1 - 1 - true - - - - - 26 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 308 1 + 26 - - true - 1 - 39872d87:13e14015f61:2a21 + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - XIA Shutter - - - - 310 - 0 - - 1 - 1 - - 4 - true - - 0 - - - false - true - false - 39872d87:13e14015f61:2a22 - + 0 + 1 + true + + + + + + 20 - Menu Button - false + 1 + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - - 170 + + false + XIA Shutter + + true + 1 + true + Label + 310 + false + 0 + 4 + + XIA_shutterTry_small.opi true - 1 + 0 XIA shutter (small) - $(pv_name) -$(pv_value) - 230 - - + false + false + + + false - true - false - 39872d87:13e14015f61:2a23 - - 20 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + Less + false + $(pv_name) +$(pv_value) + true + Action Button 40 - 6 - - - - 1 - - - + 230 170 + + XIA_shutterTry.opi true - 1 + 0 XIA shutter (small) + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + More + false $(pv_name) $(pv_value) + true + Action Button + 40 270 + 170 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2a24 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(S):address + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(S):address - - - - false - 0 - - - false - - - - 0 - - 170 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 65 + 170 - - true - 1 - 39872d87:13e14015f61:2a25 + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false + MODULE + + true + 1 + true + Label + 50 + false + 10 + 170 + + + + false + + + + 0 + 1 + true + + + - + + 10 + 1 + Label + + + true + true + false + + + false + ADDRESS + + true + 1 + true Label + 50 + false + 10 + 180 + + + + + $(P)$(S):expose.PROC + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 true - MODULE - + Default + false + + + + 20 + + Action Button + 0 + $(P)$(S):expose.PROC + + + + true + true + false + + + + Expose + false + $(pv_name) +$(pv_value) + true + Action Button 50 - 0 + 15 + 40 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(S):exposeTime + + false + 0.0 - 1 - - - - 1 - - 170 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:2a26 - false - - 10 - Label true true false - true - false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 50 + 65 + 40 + + + + false - - - - Label - true - ADDRESS - - - - 50 - 0 - - 1 - 1 - - 180 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:2a2e - false - - 20 + 0 + 1 + true + + + + + + + 16 + 0 Label + true true false - true + false + (s) + + true + 1 + true + Label + 10 + false + 115 + 42 + + + + false - - - - Label + + + + 0 + 1 true - In - + - 35 - 0 + + + + 20 + 0 + Label @@ -796,46 +759,45 @@ $(pv_value) $(P)$(S):Status4 - 1 - - - - 0 - - 145 - true - - 275 - - - true - 1 - 39872d87:13e14015f61:2a2f - false - - 20 - Label true true false - true + false + In + + true + 1 + true + Label + 35 + false + 275 + 145 + + + + false - - - - Label + + + + 0 + 1 true - In - + - 35 - 0 + + + + 20 + 0 + Label @@ -847,46 +809,45 @@ $(pv_value) $(P)$(S):Status3 - 1 - - - - 0 - - 125 - true - - 275 - - - true - 1 - 39872d87:13e14015f61:2a30 - false - - 20 - Label true true false - true + false + In + + true + 1 + true + Label + 35 + false + 275 + 125 + + + + false - - - - Label + + + + 0 + 1 true - In - + - 35 - 0 + + + + 20 + 0 + Label @@ -898,556 +859,575 @@ $(pv_value) $(P)$(S):Status2 - 1 - - - - 0 - - 105 - true - - 275 - - - false - true - 39872d87:13e14015f61:2a31 - - 20 - Action Button - false true true false - $(P)$(S):openShutter.PROC - - - - - - - Action Button - true - Open shutter - false - - Default - - 130 - 0 - 0 - - - - false - 1 - - - - 65 + + false + In + + true + 1 + true + Label + 35 + false + 275 + 105 + + $(P)$(S):openShutter.PROC 1 10 + - $(pv_name) -$(pv_value) - 140 - - + false + false + + + false - true - 39872d87:13e14015f61:2a32 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S):openShutter.PROC + + true true false - $(P)$(S):closeShutter.PROC - - - - - - - Action Button - true - Close shutter - false - - Default - - 120 - 0 - 0 - - - + + + Open shutter false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 130 + 140 65 + + $(P)$(S):closeShutter.PROC 1 10 + - $(pv_name) -$(pv_value) - 10 - - + false + false + + + false - true - 39872d87:13e14015f61:2a33 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S):closeShutter.PROC + + true true false - $(P)$(S):sendCommand.VAL - - - - - - + + + Close shutter + false + $(pv_name) +$(pv_value) + true Action Button - true - Insert Filter 1 - false - - Default - 120 - 0 - 0 - - - - false - 1 - - - - 85 + 10 + 65 + + $(P)$(S):sendCommand.VAL I1 10 + - $(pv_name) -$(pv_value) - 10 - - + false + false + + + false - true - 39872d87:13e14015f61:2a34 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S):sendCommand.VAL + + true true false - $(P)$(S):sendCommand.VAL - - - - - - + + + Insert Filter 1 + false + $(pv_name) +$(pv_value) + true Action Button - true - Insert Filter 2 - false - - Default - 120 - 0 - 0 - - - - false - 1 - - - - 105 + 10 + 85 + + $(P)$(S):sendCommand.VAL I2 10 + - $(pv_name) -$(pv_value) - 10 - - + false + false + + + false - true - 39872d87:13e14015f61:2a35 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S):sendCommand.VAL + + true true false - $(P)$(S):sendCommand.VAL - - - - - - - Action Button - true - Remove Filter 1 - false - - Default - - 130 - 0 - 0 - - - + + + Insert Filter 2 false - 1 - - - - 85 + $(pv_name) +$(pv_value) + true + Action Button + 120 + 10 + 105 + + $(P)$(S):sendCommand.VAL R1 10 + - $(pv_name) -$(pv_value) - 140 - - + false + false + + + false - true - 39872d87:13e14015f61:2a36 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S):sendCommand.VAL + + true true false - $(P)$(S):sendCommand.VAL - - - - - - - Action Button - true - Remove Filter 2 - false - - Default - - 130 - 0 - 0 - - - + + + Remove Filter 1 false - 1 - - - - 105 + $(pv_name) +$(pv_value) + true + Action Button + 130 + 140 + 85 + + $(P)$(S):sendCommand.VAL R2 10 + - $(pv_name) -$(pv_value) - 140 - - + false + false + + + false - true - 39872d87:13e14015f61:2a37 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S):sendCommand.VAL + + true true false - $(P)$(S):sendCommand.VAL - - - - - - - Action Button - true - Insert Filter 3 - false - - Default - - 120 - 0 - 0 - - - + + + Remove Filter 2 false - 1 - - - - 125 + $(pv_name) +$(pv_value) + true + Action Button + 130 + 140 + 105 + + $(P)$(S):sendCommand.VAL I3 10 + - $(pv_name) -$(pv_value) - 10 - - + false + false + + + false - true - 39872d87:13e14015f61:2a38 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S):sendCommand.VAL + + true true false - $(P)$(S):sendCommand.VAL - - - - - - + + + Insert Filter 3 + false + $(pv_name) +$(pv_value) + true Action Button - true - Insert Filter 4 - false - - Default - 120 - 0 - 0 - - - - false - 1 - - - - 145 + 10 + 125 + + $(P)$(S):sendCommand.VAL I4 10 + - $(pv_name) -$(pv_value) - 10 - - + false + false + + + false - true - 39872d87:13e14015f61:2a39 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S):sendCommand.VAL + + true true false - $(P)$(S):sendCommand.VAL - - - - - - - Action Button - true - Remove Filter 3 - false - - Default - - 130 - 0 - 0 - - - + + + Insert Filter 4 false - 1 - - - - 125 + $(pv_name) +$(pv_value) + true + Action Button + 120 + 10 + 145 + + $(P)$(S):sendCommand.VAL R3 10 + - $(pv_name) -$(pv_value) - 140 - - + false + false + + + false - true - 39872d87:13e14015f61:2a3a - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S):sendCommand.VAL + + true true false - $(P)$(S):sendCommand.VAL - - - - - - + + + Remove Filter 3 + false + $(pv_name) +$(pv_value) + true Action Button - true - Remove Filter 4 - false - - Default - 130 - 0 - 0 - - - - false - 1 - - - - 145 + 140 + 125 + + $(P)$(S):sendCommand.VAL R4 10 + - $(pv_name) -$(pv_value) - 140 - - - true - 1 - 39872d87:13e14015f61:2a3b - false - + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + 20 - Label + + Action Button + 0 + $(P)$(S):sendCommand.VAL + + true true false - true - false + + + Remove Filter 4 + false + $(pv_name) +$(pv_value) + true + Action Button + 130 + 140 + 145 + + + + false - - - - Label + + + + 0 + 1 true - Out - + - 35 - 0 + + + + 20 + 0 + Label @@ -1459,46 +1439,45 @@ $(pv_value) $(P)$(S):Status1 - 1 - - - - 0 - - 85 - true - - 275 - - - true - 1 - 39872d87:13e14015f61:2a3c - false - - 20 - Label true true false - true + false + Out + + true + 1 + true + Label + 35 + false + 275 + 85 + + + + false - - - - Label + + + + 0 + 1 true - In - + - 35 - 0 + + + + 20 + 0 + Label @@ -1510,46 +1489,45 @@ $(pv_value) $(P)$(S):Status1 - 1 - - - - 0 - - 85 - true - - 275 - - - true - 1 - 39872d87:13e14015f61:2a3d - false - - 20 - Label true true false - true + false + In + + true + 1 + true + Label + 35 + false + 275 + 85 + + + + false - - - - Label + + + + 0 + 1 true - Out - + - 35 - 0 + + + + 20 + 0 + Label @@ -1561,46 +1539,45 @@ $(pv_value) $(P)$(S):Status2 - 1 - - - - 0 - - 105 - true - - 275 - - - true - 1 - 39872d87:13e14015f61:2a3e - false - - 20 - Label true true false - true + false + Out + + true + 1 + true + Label + 35 + false + 275 + 105 + + + + false - - - - Label + + + + 0 + 1 true - Out - + - 35 - 0 + + + + 20 + 0 + Label @@ -1612,46 +1589,45 @@ $(pv_value) $(P)$(S):Status3 - 1 - - - - 0 - - 125 - true - - 275 - - - true - 1 - 39872d87:13e14015f61:2a3f - false - - 20 - Label true true false - true + false + Out + + true + 1 + true + Label + 35 + false + 275 + 125 + + + + false - - - - Label + + + + 0 + 1 true - Out - + - 35 - 0 + + + + 20 + 0 + Label @@ -1663,15 +1639,22 @@ $(pv_value) $(P)$(S):Status4 - 1 - - - - 0 - - 145 - true + + true + true + false + + + false + Out + true + 1 + true + Label + 35 + false 275 + 145 - \ No newline at end of file + diff --git a/opticsApp/op/opi/XIA_shutterTry_small.opi b/opticsApp/op/opi/autoconvert/XIA_shutterTry_small.opi similarity index 54% rename from opticsApp/op/opi/XIA_shutterTry_small.opi rename to opticsApp/op/opi/autoconvert/XIA_shutterTry_small.opi index 70aa70c..0959d70 100644 --- a/opticsApp/op/opi/XIA_shutterTry_small.opi +++ b/opticsApp/op/opi/autoconvert/XIA_shutterTry_small.opi @@ -1,671 +1,640 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 90 true - 39872d87:13e14015f61:2a63 - 3.1.2.20120830 + XIA_shutterTry_small + + true + true + false true - 90 - XIA_shutterTry_small false - false - - - - - - Display - true 280 - - true - 5 - - false - -1 - -1 - - - 707 420 - + 707 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 25 + true - 39872d87:13e14015f61:2a64 - - - - - 25 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle - true - - - - false - - Default - 280 - 0 - 0 - - - 1 - 0 - true + 0 + 0 + + + + + + - - 0 - $(pv_name) -$(pv_value) - 0 - false - - + 0 + 1 + true + false + + Default + + + + + 20 + false true - true - 39872d87:13e14015f61:2a6a - - 20 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - - 205 - 0 - - false - 1 - - - - + 80 + 140 40 - - 15 - - - true - - true - 39872d87:13e14015f61:2a6e - - 20 - Grouping Container - - true - true - false - - true - false + + + false - + - - - - Grouping Container - true - - Default - - 80 - 0 - - false - 1 - - 0 - - 125 - - true - 1 - 39872d87:13e14015f61:2a6f - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - EXPOSING - - - - 80 - 0 - - - - true - - - false - - $(P)$(S):busy - - - 1 - - - - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:2a70 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - DONE - - - - 80 - 0 - - - - true - - - false - - $(P)$(S):busy - - - 1 - - - - 1 - - 0 - true - - 0 - - - - false - true - 39872d87:13e14015f61:2a6b - + 0 + 1 + true + + + + + + 20 - Action Button - false + 1 + Label + + + + true + + + false + + $(P)$(S):busy + + true true false - $(P)$(S):expose.PROC - - - - - - - Action Button - true - Expose - false - - Default - - 50 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)$(S):expose.PROC - 1 - 10 - - - - $(pv_name) -$(pv_value) + + false + EXPOSING + + true + 1 + true + Label + 80 + false 0 + 0 - - false - true - 1 - false + + false - - 20 - false - true - + - Text Input + + + + 0 + 1 true - - + - 50 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2a6c - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(S):exposeTime - + - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 50 - - - true - 1 - 39872d87:13e14015f61:2a6d - false - - 16 + 20 + 1 Label + + + + true + + + false + + $(P)$(S):busy + + true true false - true + false - - - - - - + DONE + + true + 1 + true Label - true - (s) - - - - 10 - 0 - - 1 - - - - 0 - - 2 - true - - 100 + 80 + false + 0 + 0 - + + + + $(P)$(S):openShutter.PROC + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:2a65 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S):openShutter.PROC + + true true false - $(P)$(S):openShutter.PROC - - - - - - - Action Button - true + + Open shutter - false - - Default - - 130 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 130 + 140 65 + + - $(P)$(S):openShutter.PROC + $(P)$(S):closeShutter.PROC 1 10 + - $(pv_name) -$(pv_value) - 140 - - + false + false + + + false - true - 39872d87:13e14015f61:2a66 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S):closeShutter.PROC + + true true false - $(P)$(S):closeShutter.PROC - - - - - - - Action Button - true + + Close shutter - false - - Default - - 120 - 0 - 0 - - - false - 1 - - - - 65 - - - $(P)$(S):closeShutter.PROC - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 120 10 + 65 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2a67 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 279 - 0 - 0 - - 1 - 1 - true - - - - - 26 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 279 1 + 26 - - true - 1 - 39872d87:13e14015f61:2a68 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + XIA Shutter + + true + 1 + true + Label + 280 + false + 0 + 5 + + + + + XIA_shutterTry_more.opi + + true + + 0 + XIA shutter (all) + + + false + false - + - - - - Label + false + + + + 0 + 1 true - XIA Shutter - + Default - 280 - 0 + false + + + + 20 + + Action Button + 0 + + - 1 + + true + true + false + + + + More + false + $(pv_name) +$(pv_value) + true + Action Button + 40 + 230 + 30 + + + + + $(P)$(S):expose.PROC + 1 + 10 + + + + + false + false + + + + false - 1 - - 5 - true - - 0 - - - false - true - false - 39872d87:13e14015f61:2a69 - - 20 - Menu Button + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + $(P)$(S):expose.PROC + + true true false - false - + + + Expose + false + $(pv_name) +$(pv_value) + true + Action Button + 50 + 15 + 40 + + + + false + false + false - + - - - - Menu Button + false + + + + 3 + 1 + true - false - Default + - 40 - 6 - - + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(S):exposeTime - 1 + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 50 + 65 + 40 + + + + false + + + - 30 - - - XIA_shutterTry_more.opi - - true - - 1 - XIA shutter (all) - - - $(pv_name) -$(pv_value) - 230 + 0 + 1 + true + + + + + + + 16 + 0 + Label + + + true + true + false + + + false + (s) + + true + 1 + true + Label + 10 + false + 115 + 42 - \ No newline at end of file + diff --git a/opticsApp/op/opi/XIA_shutter_more.opi b/opticsApp/op/opi/autoconvert/XIA_shutter_more.opi similarity index 82% rename from opticsApp/op/opi/XIA_shutter_more.opi rename to opticsApp/op/opi/autoconvert/XIA_shutter_more.opi index 644ceaf..636ab52 100644 --- a/opticsApp/op/opi/XIA_shutter_more.opi +++ b/opticsApp/op/opi/autoconvert/XIA_shutter_more.opi @@ -1,161 +1,152 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 170 true - 39872d87:13e14015f61:2a80 - 3.1.2.20120830 + XIA_shutter_more + + true + true + false true - 170 - XIA_shutter_more false - false - - - - - - Display - true 280 - - true - 5 - - false - -1 - -1 - - - 160 192 - + 160 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 25 + true - 39872d87:13e14015f61:2a81 - - - - - 25 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle - true - - - - false - - Default - 280 - 0 - 0 - - - 1 - 0 - true + 0 + 0 + + + + + + - - 0 - $(pv_name) -$(pv_value) - 0 - false - - + 0 + 1 + true + false + + Default + + + + + 10 + false true - true - 39872d87:13e14015f61:2a85 - - 10 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 50 - 0 - - false - 1 - - - - - 30 - 15 - - true - 1 - 39872d87:13e14015f61:2a86 + 30 + + false - - 10 - Label - - true - true - false - - true - false - - - - Label + + + + 0 + 1 true - BUSY - + - 50 - 0 + + + + 10 + 1 + Label @@ -167,46 +158,45 @@ $(pv_value) $(P)$(S)busy - 1 - - - - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:2a87 - false - - 10 - Label true true false - true + false + BUSY + + true + 1 + true + Label + 50 + false + 0 + 0 + + + + false - - - - Label + + + + 0 + 1 true - DONE - + - 50 - 0 + + + + 10 + 1 + Label @@ -218,874 +208,911 @@ $(pv_value) $(P)$(S)busy - 1 - - - - 1 - - 0 - true + + true + true + false + + + false + DONE + true + 1 + true + Label + 50 + false 0 + 0 - - false - true - 39872d87:13e14015f61:2a82 - - 20 - Action Button - false - - true - true - false - - $(P)$(S)openShutter.PROC - - - - - - - Action Button - true - Open shutter - false - - Default - - 130 - 0 - 0 - - - - false - 1 - - - - 65 + $(P)$(S)openShutter.PROC 1 10 + - $(pv_name) -$(pv_value) - 140 - - + false + false + + + false - true - 39872d87:13e14015f61:2a83 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)openShutter.PROC + + true true false - $(P)$(S)closeShutter.PROC - - - - - - - Action Button - true - Close shutter - false - - Default - - 120 - 0 - 0 - - - + + + Open shutter false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 130 + 140 65 + + $(P)$(S)closeShutter.PROC 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(S)closeShutter.PROC + + + + true + true + false + + + + Close shutter + false $(pv_name) $(pv_value) + true + Action Button + 120 10 + 65 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2a84 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 279 - 0 - 0 - - 1 - 1 - true - - - - - 26 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 279 1 + 26 - + + + + $(P)$(S)expose.PROC + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:2a88 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)expose.PROC + + true true false - $(P)$(S)expose.PROC - - - - - - - Action Button - true + + Expose - false - - Default - - 50 - 0 - 0 - - - false - 1 - - - - 40 - - - $(P)$(S)expose.PROC - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 50 15 + 40 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2a89 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(S)exposeTime + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(S)exposeTime - - - - false - 0 - - - false - - - - 0 - - 40 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 65 + 40 - - true - 1 - 39872d87:13e14015f61:2a8a + + false - + + + + + + + 0 + 1 + true + + + + + + 16 + 0 Label + true true false - true + false - - - - - - - Label - true (s) - - - - 10 - 0 - - 1 - - - - 0 - - 42 - true + true + 1 + true + Label + 10 + false 115 + 42 - + + + + $(P)$(S)sendCommand.VAL + I1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:2a8b - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - - Action Button - true + + Insert Filter 1 - false - - Default - - 120 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 120 + 10 85 + + $(P)$(S)sendCommand.VAL - I1 + I2 10 + - $(pv_name) -$(pv_value) - 10 - - + false + false + + + false - true - 39872d87:13e14015f61:2a8c - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - - Action Button - true + + Insert Filter 2 - false - - Default - - 120 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 120 + 10 105 + + $(P)$(S)sendCommand.VAL - I2 + R1 10 + - $(pv_name) -$(pv_value) - 10 - - + false + false + + + false - true - 39872d87:13e14015f61:2a8d - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - - Action Button - true + + Remove Filter 1 - false - - Default - - 130 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 130 + 140 85 + + $(P)$(S)sendCommand.VAL - R1 + R2 10 + - $(pv_name) -$(pv_value) - 140 - - + false + false + + + false - true - 39872d87:13e14015f61:2a8e - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - - Action Button - true + + Remove Filter 2 - false - - Default - - 130 - 0 - 0 - - - false - 1 - - - - 105 - - - $(P)$(S)sendCommand.VAL - R2 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 130 140 + 105 - - true - 1 - 39872d87:13e14015f61:2a8f + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true XIA Shutter - - - - 280 - 0 - - 1 - - - - 1 - - 5 - true + true + 1 + true + Label + 280 + false 0 + 5 - + + + + $(P)$(S)sendCommand.VAL + I3 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:2a90 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - - Action Button - true + + Insert Filter 3 - false - - Default - - 120 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 120 + 10 125 + + $(P)$(S)sendCommand.VAL - I3 + I4 10 + - $(pv_name) -$(pv_value) - 10 - - - false - true - 39872d87:13e14015f61:2a91 - - 20 - Action Button - false - - true - true - false - - $(P)$(S)sendCommand.VAL + false + false - + - - - - Action Button + false + + + + 0 + 1 true - Insert Filter 4 - false - Default + Default - 120 - 0 + false + + + + 20 + + Action Button 0 - - + $(P)$(S)sendCommand.VAL + + + true + true + false + + + + Insert Filter 4 false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 120 + 10 145 + + $(P)$(S)sendCommand.VAL - I4 + R3 10 + - $(pv_name) -$(pv_value) - 10 - - + false + false + + + false - true - 39872d87:13e14015f61:2a92 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - - Action Button - true + + Remove Filter 3 - false - - Default - - 130 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 130 + 140 125 + + $(P)$(S)sendCommand.VAL - R3 + R4 10 + - $(pv_name) -$(pv_value) - 140 - - + false + false + + + false - true - 39872d87:13e14015f61:2a93 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)sendCommand.VAL + + true true false - $(P)$(S)sendCommand.VAL - - - - - - - Action Button - true + + Remove Filter 4 - false - - Default - - 130 - 0 - 0 - - - false - 1 - - - - 145 - - - $(P)$(S)sendCommand.VAL - R4 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 130 140 + 145 - - false - true - false - 39872d87:13e14015f61:2a94 - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - - 30 + XIA_shutter_small.opi true - 1 + 0 XIA shutter (small) - $(pv_name) -$(pv_value) - 190 - - + false + false + + + false - true - false - 39872d87:13e14015f61:2a95 - - 20 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + Less + false + $(pv_name) +$(pv_value) + true + Action Button 40 - 6 - - - - 1 - - - + 190 30 + + XIA_shutter.opi true - 1 + 0 XIA shutter (small) + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + More + false $(pv_name) $(pv_value) + true + Action Button + 40 230 + 30 - \ No newline at end of file + diff --git a/opticsApp/op/opi/XIA_shutter_small.opi b/opticsApp/op/opi/autoconvert/XIA_shutter_small.opi similarity index 83% rename from opticsApp/op/opi/XIA_shutter_small.opi rename to opticsApp/op/opi/autoconvert/XIA_shutter_small.opi index d4e9262..1064073 100644 --- a/opticsApp/op/opi/XIA_shutter_small.opi +++ b/opticsApp/op/opi/autoconvert/XIA_shutter_small.opi @@ -1,161 +1,152 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 90 true - 39872d87:13e14015f61:2aad - 3.1.2.20120830 + XIA_shutter_small + + true + true + false true - 90 - XIA_shutter_small false - false - - - - - - Display - true 280 - - true - 5 - - false - -1 - -1 - - - 31 192 - + 31 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 25 + true - 39872d87:13e14015f61:2aae - - - - - 25 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle - true - - - - false - - Default - 280 - 0 - 0 - - - 1 - 0 - true + 0 + 0 + + + + + + - - 0 - $(pv_name) -$(pv_value) - 0 - false - - + 0 + 1 + true + false + + Default + + + + + 10 + false true - true - 39872d87:13e14015f61:2ab2 - - 10 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 50 - 0 - - false - 1 - - - - - 30 - 15 - - true - 1 - 39872d87:13e14015f61:2ab3 + 30 + + false - - 10 - Label - - true - true - false - - true - false - - - - Label + + + + 0 + 1 true - BUSY - + - 50 - 0 + + + + 10 + 1 + Label @@ -167,46 +158,45 @@ $(pv_value) $(P)$(S)busy - 1 - - - - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:2ab4 - false - - 10 - Label true true false - true + false + BUSY + + true + 1 + true + Label + 50 + false + 0 + 0 + + + + false - - - - Label + + + + 0 + 1 true - DONE - + - 50 - 0 + + + + 10 + 1 + Label @@ -218,414 +208,433 @@ $(pv_value) $(P)$(S)busy - 1 - - - - 1 - - 0 - true + + true + true + false + + + false + DONE + true + 1 + true + Label + 50 + false 0 + 0 - - false - true - 39872d87:13e14015f61:2aaf - - 20 - Action Button - false - - true - true - false - - $(P)$(S)openShutter.PROC - - - - - - - Action Button - true - Open shutter - false - - Default - - 130 - 0 - 0 - - - - false - 1 - - - - 65 + $(P)$(S)openShutter.PROC 1 10 + - $(pv_name) -$(pv_value) - 140 - - + false + false + + + false - true - 39872d87:13e14015f61:2ab0 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)openShutter.PROC + + true true false - $(P)$(S)closeShutter.PROC - - - - - - - Action Button - true - Close shutter - false - - Default - - 120 - 0 - 0 - - - + + + Open shutter false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 130 + 140 65 + + $(P)$(S)closeShutter.PROC 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(S)closeShutter.PROC + + + + true + true + false + + + + Close shutter + false $(pv_name) $(pv_value) + true + Action Button + 120 10 + 65 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2ab1 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 279 - 0 - 0 - - 1 - 1 - true - - - - - 26 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 279 1 + 26 - + + + + $(P)$(S)expose.PROC + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:2ab5 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(S)expose.PROC + + true true false - $(P)$(S)expose.PROC - - - - - - - Action Button - true + + Expose - false - - Default - - 50 - 0 - 0 - - - false - 1 - - - - 40 - - - $(P)$(S)expose.PROC - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 50 15 + 40 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2ab6 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(S)exposeTime + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(S)exposeTime - - - - false - 0 - - - false - - - - 0 - - 40 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 65 + 40 - - true - 1 - 39872d87:13e14015f61:2ab7 + + false - - 16 - Label - - true - true - false - - true - false - - - - Label - true - (s) - - - - 10 - 0 - - 1 + 0 + 1 + true + + + + + + + 16 0 - - 42 - true - - 115 - - - true - 1 - 39872d87:13e14015f61:2ab8 - false - - 20 Label + true true false - true + false + (s) + + true + 1 + true + Label + 10 + false + 115 + 42 + + + + false - - - - Label - true - XIA Shutter - - - - 280 - 0 - - 1 - 1 - - 5 - true - - 0 - - - false - true - false - 39872d87:13e14015f61:2ab9 - + 0 + 1 + true + + + + + + 20 - Menu Button - false + 1 + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - - 30 + + false + XIA Shutter + + true + 1 + true + Label + 280 + false + 0 + 5 + + XIA_shutter_more.opi true - 1 + 0 XIA shutter (all) + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + More + false $(pv_name) $(pv_value) + true + Action Button + 40 230 + 30 - \ No newline at end of file + diff --git a/opticsApp/op/opi/bProtect.opi b/opticsApp/op/opi/autoconvert/bProtect.opi similarity index 81% rename from opticsApp/op/opi/bProtect.opi rename to opticsApp/op/opi/autoconvert/bProtect.opi index cb11771..89670a2 100644 --- a/opticsApp/op/opi/bProtect.opi +++ b/opticsApp/op/opi/autoconvert/bProtect.opi @@ -1,125 +1,123 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 70 true - 39872d87:13e14015f61:2ac8 - 3.1.2.20120830 + bProtect + + true + true + false true - 70 - bProtect false - false - - - - - - Display - true 100 - - true - 5 - - false - -1 - -1 - - - 10 10 - - false - true - 39872d87:13e14015f61:2ac9 - - 50 - Choice Button - false - - true - true - false - - $(P)bProtect.VAL + 10 + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 100 - 0 - - - - - + false + + + + 50 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 20 + Choice Button + $(P)bProtect.VAL + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 100 0 + 20 - - true - 1 - 39872d87:13e14015f61:2aca + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true bProtect - - - - 100 - 0 - - 1 - - - - 1 - - 0 - true + true + 1 + true + Label + 100 + false 0 + 0 - \ No newline at end of file + diff --git a/opticsApp/op/opi/fb_epid.opi b/opticsApp/op/opi/autoconvert/fb_epid.opi similarity index 71% rename from opticsApp/op/opi/fb_epid.opi rename to opticsApp/op/opi/autoconvert/fb_epid.opi index d8531be..369663c 100644 --- a/opticsApp/op/opi/fb_epid.opi +++ b/opticsApp/op/opi/autoconvert/fb_epid.opi @@ -1,1549 +1,985 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 330 true - 39872d87:13e14015f61:2acf - 3.1.2.20120830 + fb_epid + + true + true + false true - 330 - fb_epid false - false - - - - - - Display - true 518 - - true - 5 - - false - -1 - -1 - - - 59 26 - - false - true - 0.0 - - - - 39872d87:13e14015f61:2ad8 + 59 + + + false + 255 + true + false + + + - + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false 92 - true + true + + + + 0 + 4 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 500 + 8 + 62 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 500 - 0 - 0 - - - 1 - 4 - true - - - - - 62 - $(pv_name) -$(pv_value) - 8 + false + + + false - - - false - true - 100.0 + 14 + true - 39872d87:13e14015f61:2ad9 - - - - - 14 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 140 + 37 + 57 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 140 - 0 - 0 - - - 1 - 0 - true - - - - - 57 - $(pv_name) -$(pv_value) - 37 + false + + + false - - - false - true - 0.0 + 130 + true - + - 39872d87:13e14015f61:2ae2 - - - - - 130 - true + 0 + 4 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 500 + 8 + 164 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 500 - 0 - 0 - - - 1 - 4 + false + + + + false + 14 true - - - - - 164 - $(pv_name) -$(pv_value) - 8 - false - - - false - true - 100.0 - 39872d87:13e14015f61:2ae3 - - - - - 14 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle - true - - - - false - - Default - 140 - 0 - 0 - - - 1 - 0 - true - - - - - 159 - $(pv_name) -$(pv_value) 37 - false + 159 - - - true - - true - 39872d87:13e14015f61:2b04 - - 52 - Grouping Container - - true - true - false - - true - false + + + false - + - - - - Grouping Container - true - - Default - - 338 - 0 - - - - true - - - false - - $(P).FMOD - - - false - 1 - - 200 - - 164 - - true - true - 1 - false - 39872d87:13e14015f61:2b05 - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 6 - true - false - $(P).D - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 38 - false - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2b06 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P).I - - - - false - 0 - - - false - - - - 0 - - 17 - $(pv_name) -$(pv_value) - 0 - - - true - 1 - 39872d87:13e14015f61:2b07 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - I = KP * KI * sum(FE*DT) - - - - 220 - 0 - - 1 - - - - 0 - - 20 - true - - 118 - - - true - 1 - 39872d87:13e14015f61:2b08 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - P = KP * FE - - - - 220 - 0 - - 1 - - - - 0 - - 0 - true - - 118 - - - true - 1 - 39872d87:13e14015f61:2b09 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - D = KP * KD * (FE[i] - FE[i-1])/DT - - - - 220 - 0 - - 1 - - - - 0 - - 41 - true - - 118 - - - - - true - - true - 39872d87:13e14015f61:2b0a - - 52 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container + 0 + 1 true - Default + - 303 - 0 - - - - true - - - false - - $(P).FMOD - - - false - 1 - - - - - 200 - - 199 - - true - 1 - 39872d87:13e14015f61:2b0b - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - 0 - - - - 12 - 0 - - 1 - - - - 1 - - 17 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:2b0c - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - 0 - - - - 12 - 0 - - 1 - - - - 1 - - 38 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:2b0d - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - D = 0 - - - - 220 - 0 - - 1 - - - - 0 - - 41 - true - - 83 - - - true - 1 - 39872d87:13e14015f61:2b0e - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - I = 0 - - - - 220 - 0 - - 1 - - - - 0 - - 20 - true - - 83 - - - true - 1 - 39872d87:13e14015f61:2b0f - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - P = KP * (INP[i] - INP[i-1])/DT - - - - 220 - 0 - - 1 - - - - 0 - - 0 - true - - 83 - - - - true - 1 - 39872d87:13e14015f61:2ad0 - false - + + + 10 + 0 Label + true true false - true + false + fb_epid.adl + + true + 1 + true + Label + 200 + false + 16 + 4 + + + + false - - - - Label - true - fb_epid.adl - - - - 200 - 0 - - 1 - 0 - - 4 - true - - 16 - - - true - 1 - 39872d87:13e14015f61:2ad1 - false - + 0 + 1 + true + + + + + + 10 + 0 Label + true true false - true + false + last update: 2012-03-01 (prj) + + true + 1 + true + Label + 200 + false + 16 + 14 + + + + false - - - - Label - true - last update: 2012-03-01 (prj) - - - - 200 - 0 - - 1 - 0 - - 14 - true - - 16 - - - true - 1 - 39872d87:13e14015f61:2ad2 - false - + 0 + 1 + true + + + + + + 24 + 1 Label + true true false - true + false + feedback $(P) + + true + 1 + true + Label + 340 + false + 164 + 3 + + + + + userCalc.opi + + true +

$(P):

+ enable +
+ 1 + calculation +
+
+ false + false - + - - - - Label + false + + + + 0 + 1 true - feedback $(P) - + Default - 340 - 0 + false + + + + 18 + + Action Button + 0 + + - 1 - - - - 1 - - 3 - true - - 164 -
- - false - true - false - 39872d87:13e14015f61:2ad3 - - 18 - Menu Button - false true true false - false - - - - - - - - Menu Button - true - false - - Default - - 120 - 6 - - - - 1 - - - - 299 - - - userCalc.opi - - true -

$(P):

- enable -
- 0 - calculation -
-
+ + + 'enable' calc + false $(pv_name) $(pv_value) + true + Action Button + 120 7 + 299
- - false - true + + true - 39872d87:13e14015f61:2ad4 - - 14 - Menu Button - false - - true - true - false - - false - $(P).SCAN + false + false - + - - - - Menu Button + false + + + + 6 + 1 true - false - Default + Default - 83 - 6 + false + + + + 14 - - - 1 - - - - 299 - - $(pv_name) -$(pv_value) - 132 - - - false - true - false - 39872d87:13e14015f61:2ad5 - - 18 Menu Button - false + $(P).SCAN + + true true false + + false + $(pv_name) +$(pv_value) false - - - - - - - + true Menu Button - true - false - - Default - - 50 - 6 - - - - 1 - - - + 83 + 132 299 + + fb_epid_chart.opi true - 0 + 1 charting - $(pv_name) -$(pv_value) - 220 - - + false + false + + + false - true - false - 39872d87:13e14015f61:2ad6 - - 18 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 18 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + chart + false + $(pv_name) +$(pv_value) + true + Action Button 50 - 6 - - - - 1 - - - + 220 299 + + fb_epid_basic.opi true - 1 + 0 basic - $(pv_name) -$(pv_value) - 400 - - + false + false + + + false - true - false - 39872d87:13e14015f61:2ad7 - - 18 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 18 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + less + false + $(pv_name) +$(pv_value) + true + Action Button 50 - 6 - - - - 1 - - - + 400 299 + + fb_epid_config.opi true - 0 + 1 config - $(pv_name) -$(pv_value) - 458 - - - true - 1 - 39872d87:13e14015f61:2ada - false - - 14 - Label - - true - true - false - - true - false + false + false - + - - - - Label + false + + + + 0 + 1 true - EPID input - + Default - 120 - 0 + false + + + + 18 + + Action Button + 0 + + - 1 + + true + true + false + + + + config + false + $(pv_name) +$(pv_value) + true + Action Button + 50 + 458 + 299 + + + + false + + + + 0 + 1 + true + + + + + + + 14 1 - - 57 - true + Label + + + true + true + false + + + false + EPID input + true + 1 + true + Label + 120 + false 47 + 57 - - true - true - 1 - false - 39872d87:13e14015f61:2adb + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 6 14 + 1 Text Update - false + 0 + true + $(P).CVAL + + 0.0 + true true false - 6 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P).CVAL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 102 - 0 - - - 1 - - - - 1 - - 99 false - $(pv_name) -$(pv_value) 49 + 99 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 103 - 3 - - 1 + false + + + + 6 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2adc - 0.0 + false Text Input + 0 + false + 0 + true + $(P).VAL + + false + 0.0 + true true false - 6 - false + 0 - $(P).VAL - - - - false - 0 - - - false - - - - 0 - - 77 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 103 49 + 77 - - true - 1 - 39872d87:13e14015f61:2add + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false - - - - - - - Label - true - - - - - 14 - 0 - - 1 - - - - 1 - - 99 - true + true + 1 + true + Label + 14 + false 17 + 99 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2ade - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - + + Default + + false + + + + 1 + true + 0 + 1 + Polyline - false - - - - - - - Polyline - true - false - - Default - - 120 - 0 - 0 - - 1 - 1 - true - - - - - 120 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 120 37 + 120 - - true - 1 - 39872d87:13e14015f61:2adf + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true following error (FE) - - - - 160 - 0 - - 1 - - - - 0 - - 126 - true + true + 1 + true + Label + 160 + false 156 + 126 - - true - true - 1 - false - 39872d87:13e14015f61:2ae0 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 6 14 + 1 Text Update - false + 0 + true + $(P).ERR + + 0.0 + true true false - 6 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P).ERR - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 102 - 0 - - - 1 - - - - 1 - - 126 false - $(pv_name) -$(pv_value) 49 + 126 - - false - true - false - 39872d87:13e14015f61:2ae1 - - 18 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 160 - 6 - - - - 1 - - - - 98 + userCalc.opi @@ -1552,1791 +988,2271 @@ $(pv_value)

$(P):

in - 0 + 1 calculation
+ false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + + + + + true + true + false + + + + input calc + false $(pv_name) $(pv_value) + true + Action Button + 160 156 + 98
- - true - 1 - 39872d87:13e14015f61:2ae4 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false - - - - - - - Label - true EPID output - - - - 120 - 0 - - 1 - - - - 1 - - 159 - true + true + 1 + true + Label + 120 + false 47 + 159 - - false - true - 39872d87:13e14015f61:2ae5 - - 14 - Choice Button - false - - true - true - false - - $(P).FMOD + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 156 - 0 - - - - - + false + + + + 14 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 176 + Choice Button + $(P).FMOD + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 156 339 + 176 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2ae6 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 123 - 0 - 0 - - 1 - 1 - true - - - - - 258 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 123 142 + 258 - - true - true - 1 - false - 39872d87:13e14015f61:2ae7 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 6 14 + 1 Text Update - false + 0 + true + $(P).OVAL + + 0.0 + true true false - 6 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P).OVAL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 265 false - $(pv_name) -$(pv_value) 153 + 265 - - true - 1 - 39872d87:13e14015f61:2ae8 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + <= + + true + 1 + true + Label + 24 + false + 124 + 265 + + + + false - - - - Label - true - <= - - - - 24 - 0 - - 1 - 1 - - 265 - true - - 124 - - - true - 1 - 39872d87:13e14015f61:2ae9 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false - - - - - - - Label - true <= - - - - 24 - 0 - - 1 - - - - 1 - - 265 - true + true + 1 + true + Label + 24 + false 258 + 265 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 6 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2aea - 0.0 + false Text Input + 0 + false + 0 + true + $(P).DRVL + + false + 0.0 + true true false - 6 - false + 0 - $(P).DRVL - - - - false - 0 - - - false - - - - 0 - - 264 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 39 + 264 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 6 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2aeb - 0.0 + false Text Input + 0 + false + 0 + true + $(P).DRVH + + false + 0.0 + true true false - 6 - false + 0 - $(P).DRVH - - - - false - 0 - - - false - - - - 0 - - 264 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 287 + 264 - - true - 1 - 39872d87:13e14015f61:2aec + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + P + + true + 1 + true + Label + 12 + false + 249 + 198 + + + + false - - - - Label - true - P - - - - 12 - 0 - - 1 - 1 - - 198 - true - - 249 - - - true - 1 - 39872d87:13e14015f61:2aed - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false - - - - - - - Label - true - - - - 14 - 0 - - 1 - - - - 1 - - 198 - true + true + 1 + true + Label + 14 + false 145 + 198 - - true - 1 - 39872d87:13e14015f61:2aee + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + D + + true + 1 + true + Label + 12 + false + 249 + 238 + + + + false - - - - Label - true - D - - - - 12 - 0 - - 1 - 1 - - 238 - true - - 249 - - - true - 1 - 39872d87:13e14015f61:2aef - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + + + + true + 1 + true + Label + 14 + false + 145 + 238 + + + + false - - - - Label - true - + - - - - 14 - 0 - - 1 - 1 - - 238 - true - - 145 - - - true - 1 - 39872d87:13e14015f61:2af0 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + I + + true + 1 + true + Label + 12 + false + 249 + 217 + + + + false - - - - Label - true - I - - - - 12 - 0 - - 1 - 1 - - 217 - true - - 249 - - - true - 1 - 39872d87:13e14015f61:2af1 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + + + + true + 1 + true + Label + 14 + false + 145 + 217 + + + + false - - - - Label - true - + - - - - 14 - 0 - - 1 - 1 - - 217 - true - - 145 - - - true - 1 - 39872d87:13e14015f61:2af2 - false - + 0 + 1 + true + + + + + + 14 + 2 Label + true true false - true + false - - - - - - - Label - true KP - - - + + true + 1 + true + Label 20 - 0 - - 1 + false + 14 + 197 + + + + false + false + false + + + + false - 1 - - 197 - true - - 14 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 6 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2af3 - 0.0 + false Text Input + 0 + false + 0 + true + $(P).KI + + false + 0.0 + true true false - 6 - false + 0 - $(P).KI - - - - false - 0 - - - false - - - - 0 - - 217 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 38 + 217 - - true - 1 - 39872d87:13e14015f61:2af4 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 2 Label + true true false - true + false - - - - - - - Label - true KI - - - - 20 - 0 - - 1 - - - - 1 - - 218 - true + true + 1 + true + Label + 20 + false 15 + 218 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 6 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2af5 - 0.0 + false Text Input + 0 + false + 0 + true + $(P).KD + + false + 0.0 + true true false - 6 - false + 0 - $(P).KD - - - - false - 0 - - - false - - - - 0 - - 238 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 39 + 238 - - true - 1 - 39872d87:13e14015f61:2af6 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 2 Label + true true false - true + false - - - - - - - Label - true KD - - - - 20 - 0 - - 1 - - - - 1 - - 238 - true + true + 1 + true + Label + 20 + false 14 + 238 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 6 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2af7 - 0.0 + false Text Input + 0 + false + 0 + true + $(P).KP + + false + 0.0 + true true false - 6 - false + 0 - $(P).KP - - - - false - 0 - - - false - - - - 0 - - 196 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 38 + 196 - - true - 1 - 39872d87:13e14015f61:2af8 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 2 Label + true true false - true + false + KP + + true + 1 + true + Label + 20 + false + 14 + 197 + + + + false - - - - Label - true - KP - - - - 20 - 0 - - 1 - 1 - - 197 - true - - 14 - - - true - 1 - 39872d87:13e14015f61:2af9 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + I + + true + 1 + true + Label + 12 + false + 249 + 217 + + + + false - - - - Label - true - I - - - - 12 - 0 - - 1 - 1 - - 217 - true - - 249 - - - true - 1 - 39872d87:13e14015f61:2afa - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + + + + true + 1 + true + Label + 14 + false + 145 + 217 + + + + false - - - - Label - true - + - - - - 14 - 0 - - 1 - 1 - - 217 - true - - 145 - - - true - 1 - 39872d87:13e14015f61:2afb - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + P + + true + 1 + true + Label + 12 + false + 249 + 198 + + + + false - - - - Label - true - P - - - - 12 - 0 - - 1 - 1 - - 198 - true - - 249 - - - true - 1 - 39872d87:13e14015f61:2afc - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + + + true + 1 + true + Label + 14 + false + 145 + 198 + + + + false - - - - Label + + + + 0 + 1 true - - + + + + + 14 + 1 + Label + + + true + true + false + + + false + D + + true + 1 + true + Label + 12 + false + 249 + 238 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + + + + true + 1 + true + Label 14 + false + 145 + 238 + + + + false + + + + + + 0 + 1 + true + + + + + + + 12 + 0 + Label + + true + true + false + + + false + feedback + + true + 1 + true + Label + 60 + false + 125 + 177 + + + + false + false + + + + false + + + + 0 1 + true + + Default + + false + + + + 14 + true + + Choice 1 + Choice 2 + Choice 3 + + true + Choice Button + $(P):on + + + + true + true + false + + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 80 + 40 + 176 + + + + + userCalc.opi + + true +

$(P):

+ out +
+ 1 + calculation +
+
+ false + false + + + + false + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + + + + + true + true + false + + + + output calc + false + $(pv_name) +$(pv_value) + true + Action Button + 120 + 370 + 263 +
+ + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 6 + 14 1 + Text Update + 0 + true + $(P).FBON + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 236 + 175 + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 6 + 14 + 1 + Text Update + 0 + true + $(P).P + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 164 198 - true - - 145 - - true + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 6 + 14 + 1 + Text Update + 0 + true + $(P).D + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false 1 - 39872d87:13e14015f61:2afd + true + Text Update + 80 + false + 164 + 238 + + + + false false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P).I + + false + 0.0 + + + true + true + false + - 14 + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 164 + 217 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 Label + true true false - true + false + I = KP * KI * sum(FE*DT) + + true + 1 + true + Label + 220 + false + 282 + 220 + + + + false - - - - Label - true - D - - - - 12 - 0 - - 1 - 1 - - 238 - true - - 249 - - - true - 1 - 39872d87:13e14015f61:2afe - false - - 14 + 0 + 1 + true + + + + + + + 10 + 0 Label + true true false - true + false + P = KP * FE + + true + 1 + true + Label + 220 + false + 282 + 200 + + + + false - - - - Label - true - + - - - - 14 - 0 - - 1 - 1 - - 238 - true - - 145 - - - true - 1 - 39872d87:13e14015f61:2aff - false - - 12 + 0 + 1 + true + + + + + + + 10 + 0 Label + true true false - true + false + D = KP * KD * (FE[i] - FE[i-1])/DT + + true + 1 + true + Label + 220 + false + 282 + 241 + + + + false - - - - Label - true - feedback - - - - 60 - 0 - - 1 - 0 - - 177 - true - - 125 - - - false - true - 39872d87:13e14015f61:2b00 - + 0 + 1 + true + + + + + + 14 - Choice Button - false + 1 + Label + true true false - $(P):on + + false + 0 + + true + 1 + true + Label + 12 + false + 199 + 217 + + + + false - + - - - - Choice Button + + + + 0 + 1 true - false - Default + - 80 - 0 - - - + + + + 14 + 1 + Label - - - Choice 1 - Choice 2 - Choice 3 - - 1 - true - - - - true - - 176 - $(pv_name) -$(pv_value) - 40 - - - false - true - false - 39872d87:13e14015f61:2b01 - - 18 - Menu Button - false true true false - false - - - - - - - - Menu Button - true - false - - Default - - 120 - 6 - - - - 1 - - - - 263 - - - userCalc.opi - - true -

$(P):

- out -
- 0 - calculation -
-
- $(pv_name) -$(pv_value) - 370 -
- - true - true + + false + 0 + + true 1 - false - 39872d87:13e14015f61:2b02 + true + Label + 12 + false + 199 + 238 + + + false - 0.0 - - 14 - Text Update - false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + true true false - 6 - true - false - $(P).FBON + + false + D = 0 + + true + 1 + true + Label + 220 + false + 282 + 241 + + + + false - + - - - - Text Update + + + + 0 + 1 true - ###### - false - 0 - + - 80 - 0 + + + + 10 + 0 + Label - - 1 - - - - 1 - - 175 - false - $(pv_name) -$(pv_value) - 236 - - - true - true - 1 - false - 39872d87:13e14015f61:2b03 - false - 0.0 - - 14 - Text Update - false true true false - 6 - true - false - $(P).P + + false + I = 0 + + true + 1 + true + Label + 220 + false + 282 + 220 + + + + false - + - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - 1 - - 198 - false - $(pv_name) -$(pv_value) - 164 - - - true - 1 - 39872d87:13e14015f61:2b10 - false - - 16 + 0 + 1 + true + + + + + + + 10 + 0 Label + true true false - true + false + P = KP * (INP[i] - INP[i-1])/DT + + true + 1 + true + Label + 220 + false + 282 + 200 + + + + false - - - - Label - true - DESC - - - - 31 - 0 - - 1 - 1 - - 34 - true - - 17 - - - true - 1 - 39872d87:13e14015f61:2b11 - false - + 0 + 1 + true + + + + + + 16 + 2 Label + true true false - true + false + DESC + + true + 1 + true + Label + 31 + false + 17 + 34 + + + + false - - - - Label + + + + 0 + 1 true - EGU - + - 27 - 0 + + + + 16 + 2 + Label - 1 - - - - 1 - - 34 - true + + true + true + false + + + false + EGU + true + 1 + true + Label + 27 + false 277 + 34 - - true - 1 - 39872d87:13e14015f61:2b12 + + false - + + + + + + + 0 + 1 + true + + + + + + 16 + 2 Label + true true false - true + false + PREC + + true + 1 + true + Label + 38 + false + 408 + 34 + + + + false + false + false - + - - - - Label - true - PREC - - - - 38 - 0 - - 1 + true - 1 - - 34 - true - - 408 - - - true - true - 1 - false - 39872d87:13e14015f61:2b13 - false - 0.0 - + 0 + 1 + true + + + + false + + + + 1 18 + 0 Text Update - false + 0 + true + $(P).DESC + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P).DESC - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 217 - 0 - - - 1 - - - - 0 - - 34 false - $(pv_name) -$(pv_value) 55 + 34 - - true - true - 1 - false - 39872d87:13e14015f61:2b14 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 18 + 0 Text Update - false + 0 + true + $(P).EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P).EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 92 - 0 - - - 1 - - - - 0 - - 34 false - $(pv_name) -$(pv_value) 310 + 34 - - true - true - 1 - false - 39872d87:13e14015f61:2b15 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 16 + 2 Text Update - false + 0 + true + $(P).PREC + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P).PREC - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 46 - 0 - - - 1 - - - - 0 - - 34 false - $(pv_name) -$(pv_value) 451 + 34 - - true - 1 - 39872d87:13e14015f61:2b16 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true set point - - - - 160 - 0 - - 1 - - - - 0 - - 77 - true + true + 1 + true + Label + 160 + false 156 + 77 -
\ No newline at end of file +
diff --git a/opticsApp/op/opi/fb_epid_basic.opi b/opticsApp/op/opi/autoconvert/fb_epid_basic.opi similarity index 83% rename from opticsApp/op/opi/fb_epid_basic.opi rename to opticsApp/op/opi/autoconvert/fb_epid_basic.opi index d359244..6aa2e35 100644 --- a/opticsApp/op/opi/fb_epid_basic.opi +++ b/opticsApp/op/opi/autoconvert/fb_epid_basic.opi @@ -1,562 +1,558 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 200 true - 39872d87:13e14015f61:2b60 - 3.1.2.20120830 + fb_epid_basic + + true + true + false true - 200 - fb_epid_basic false - false - - - - - - Display - true 260 - - true - 5 - - false - -1 - -1 - - - 59 28 - - false - true - 100.0 - - - - 39872d87:13e14015f61:2b63 - - - - - 14 - true - Rectangle - false + 59 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 140 - 0 - 0 - - - 1 - 0 - true - - - - - 195 - $(pv_name) -$(pv_value) - 37 + false + + + false - - - false - true - 0.0 + 14 + true - + - 39872d87:13e14015f61:2b6b - - - - - 30 - true + 0 + 0 Rectangle - false - 255 + + + true true false - true - + + $(pv_name) +$(pv_value) + false + true + Rectangle + 140 + 37 + 195 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 + false + + + + false + 30 + true + + + 0 - 0 - - - 1 4 - true - - - - - 164 - $(pv_name) -$(pv_value) - 150 - false - - - true - 1 - 39872d87:13e14015f61:2b61 - false - - 10 - Label + Rectangle + + + true true false + + $(pv_name) +$(pv_value) true - false + true + Rectangle + 100 + 150 + 164 + + + + false - - - - Label - true - fb_epid_basic.adl - - - - 200 - 0 - - 1 - 0 - - 4 - true - - 16 - - - true - 1 - 39872d87:13e14015f61:2b62 - false - + 0 + 1 + true + + + + + + 10 + 0 Label + true true false - true + false + fb_epid_basic.adl + + true + 1 + true + Label + 200 + false + 16 + 4 + + + + false - - - - Label - true - last update: 2012-02-28 (prj) - - - - 200 - 0 - - 1 + 0 + 1 + true + + + + + + + 10 0 - - 14 - true - - 16 - - - false - true - false - 39872d87:13e14015f61:2b64 - - 18 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 50 - 6 - - - - 1 - - - - 4 + + false + last update: 2012-02-28 (prj) + + true + 1 + true + Label + 200 + false + 16 + 14 + + fb_epid.opi true - 1 + 0 standard screen + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + + + + + true + true + false + + + + more + false $(pv_name) $(pv_value) + true + Action Button + 50 200 + 4 - - true - 1 - 39872d87:13e14015f61:2b65 + + false - + + + + + + + 0 + 1 + true + + + + + + 24 + 1 Label + true true false - true + false - - - - - - - Label - true feedback $(P) - - - - 240 - 0 - - 1 - - - - 1 - - 34 - true + true + 1 + true + Label + 240 + false 10 + 34 - - true - true - 1 - false - 39872d87:13e14015f61:2b66 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 6 20 + 1 Text Update - false + 0 + true + $(P).DESC + + 0.0 + true true false - 6 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P).DESC - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 240 - 0 - - - 1 - - - - 1 - - 64 false - $(pv_name) -$(pv_value) 10 + 64 - - true - true - 1 - false - 39872d87:13e14015f61:2b67 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 6 28 + 1 Text Update - false + 0 + true + $(P).CVAL + + 0.0 + true true false - 6 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P).CVAL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 240 - 0 - - - 1 - - - - 1 - - 90 false - $(pv_name) -$(pv_value) 10 + 90 - - false - true - 1 - false + + + false false - - 28 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 240 - 3 - - 1 + false + + + + 6 + 28 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2b68 - 0.0 + false Text Input + 0 + false + 0 + true + $(P).VAL + + false + 0.0 + true true false - 6 - false + 0 - $(P).VAL - - - - false - 0 - - - false - - - - 0 - - 130 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 240 10 + 130 - - false - true - 39872d87:13e14015f61:2b69 - - 18 - Choice Button - false - - true - true - false - - $(P):on + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 132 - 0 - + false + - - - + + 18 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 170 - $(pv_name) -$(pv_value) - 10 - - - true - 1 - 39872d87:13e14015f61:2b6a - false - - 18 - Label + Choice Button + $(P):on + + true true false - true - false + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 132 + 10 + 170 + + + + false - - - - Label + + + + 0 + 1 true - On - + - 50 - 0 + + + + 18 + 1 + Label @@ -568,46 +564,45 @@ $(pv_value) $(P).FBON - 1 - - - - 1 - - 170 - true - - 175 - - - true - 1 - 39872d87:13e14015f61:2b6c - false - - 18 - Label true true false - true + false + On + + true + 1 + true + Label + 50 + false + 175 + 170 + + + + false - - - - Label + + + + 0 + 1 true - Off - + - 50 - 0 + + + + 18 + 1 + Label @@ -619,15 +614,22 @@ $(pv_value) $(P).FBON - 1 - - - - 1 - - 170 - true + + true + true + false + + + false + Off + true + 1 + true + Label + 50 + false 175 + 170 - \ No newline at end of file + diff --git a/opticsApp/op/opi/fb_epid_chart.opi b/opticsApp/op/opi/autoconvert/fb_epid_chart.opi similarity index 79% rename from opticsApp/op/opi/fb_epid_chart.opi rename to opticsApp/op/opi/autoconvert/fb_epid_chart.opi index ea508b5..c465b61 100644 --- a/opticsApp/op/opi/fb_epid_chart.opi +++ b/opticsApp/op/opi/autoconvert/fb_epid_chart.opi @@ -1,75 +1,73 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 400 true - 39872d87:13e14015f61:2b7b - 3.1.2.20120830 + fb_epid_chart + + true + true + false true - 400 - fb_epid_chart false - false - - - - - - Display - true 400 - - true - 5 - - false - -1 - -1 - - - 56 8 - - true - 1 - 39872d87:13e14015f61:2b7c + 56 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true $(P) fb_epid simulator chart - - - - 360 - 0 - - 1 - - - - 1 - - 6 - true + true + 1 + true + Label + 360 + false 20 + 6 - \ No newline at end of file + diff --git a/opticsApp/op/opi/fb_epid_config.opi b/opticsApp/op/opi/autoconvert/fb_epid_config.opi similarity index 78% rename from opticsApp/op/opi/fb_epid_config.opi rename to opticsApp/op/opi/autoconvert/fb_epid_config.opi index 7466b6a..a1f9b8d 100644 --- a/opticsApp/op/opi/fb_epid_config.opi +++ b/opticsApp/op/opi/autoconvert/fb_epid_config.opi @@ -1,766 +1,750 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 340 true - 39872d87:13e14015f61:2b80 - 3.1.2.20120830 + fb_epid_config + + true + true + false true - 340 - fb_epid_config false - false - - - - - - Display - true 650 - - true - 5 - - false - -1 - -1 - - - 140 106 - - true - 1 - 39872d87:13e14015f61:2b81 + 140 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + The <output buffer calc> is for internal use. Do not use it! + + true + 1 + true + Label + 500 + false + 42 + 290 + + + + false - - - - Label - true - The <output buffer calc> is for internal use. Do not use it! - - - - 500 - 0 - - 1 - 0 - - 290 - true - - 42 - - - true - 1 - 39872d87:13e14015f61:2b82 - false - + 0 + 1 + true + + + + + + 10 + 0 Label + true true false - true + false + fb_epid_control.adl + + true + 1 + true + Label + 200 + false + 16 + 4 + + + + false - - - - Label - true - fb_epid_control.adl - - - - 200 - 0 - - 1 - 0 - - 4 - true - - 16 - - - true - 1 - 39872d87:13e14015f61:2b83 - false - + 0 + 1 + true + + + + + + 10 + 0 Label + true true false - true + false + last update: 2012-03-01 (prj) + + true + 1 + true + Label + 200 + false + 16 + 14 + + + + false - - - - Label - true - last update: 2012-03-01 (prj) - - - - 200 - 0 - - 1 - 0 - - 14 - true - - 16 - - - true - 1 - 39872d87:13e14015f61:2b84 - false - + 0 + 1 + true + + + + + + 24 + 1 Label + true true false - true + false + feedback $(P) + + true + 1 + true + Label + 340 + false + 164 + 3 + + + + false - - - - Label - true - feedback $(P) - - - - 340 - 0 - - 1 - 1 - - 3 - true - - 164 - - - true - 1 - 39872d87:13e14015f61:2b85 - false - + 0 + 1 + true + + + + + + 16 + 2 Label + true true false - true + false - - - - - - - Label - true DESC - - - - 31 - 0 - - 1 - - - - 1 - - 35 - true - 17 - - - false - true + true 1 - false + true + Label + 31 + false + 17 + 35 + + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 217 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2b86 - 0.0 + false Text Input + 0 + false + 0 + true + $(P).DESC + + false + 0.0 + true true false - 1 - false + 0 - $(P).DESC - - - - false - 0 - - - false - - - - 0 - - 34 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 217 55 + 34 - - true - 1 - 39872d87:13e14015f61:2b87 + + false - + + + + + + + 0 + 1 + true + + + + + + 16 + 2 Label + true true false - true + false - - - - - - - Label - true EGU - - - - 27 - 0 - - 1 - - - - 1 - - 35 - true + true + 1 + true + Label + 27 + false 277 + 35 - - false - true - 1 - false + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 92 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2b88 - 0.0 + false Text Input + 0 + false + 0 + true + $(P).EGU + + false + 0.0 + true true false - 1 - false + 0 - $(P).EGU - - - - false - 0 - - - false - - - - 0 - - 34 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 92 310 + 34 - - true - 1 - 39872d87:13e14015f61:2b89 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 2 Label + true true false - true + false - - - - - - - Label - true PREC - - - - 38 - 0 - - 1 - - - - 1 - - 36 - true + true + 1 + true + Label + 38 + false 408 + 36 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 46 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2b8a - 0.0 + false Text Input - - true - true - false - - 1 - false - 0 - $(P).PREC - - - - false + 0 + false 0 - + true + $(P).PREC + + false + 0.0 - false - - - - 0 - - 35 + + true + true + false + + + 0 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 46 451 + 35 - - true - 1 - 39872d87:13e14015f61:2b8b + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 2 Label + true true false - true + false - - - - - - - Label - true DT - - - - 32 - 0 - - 1 - - - - 1 - - 59 - true + true + 1 + true + Label + 32 + false 149 + 59 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 90 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2b8c - 0.0 + false Text Input + 0 + false + 0 + true + $(P).DT + + false + 0.0 + true true false - 1 - false + 0 - $(P).DT - - - - false - 0 - - - false - - - - 0 - - 58 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 90 186 + 58 - - false - true + + true - 39872d87:13e14015f61:2b8d - + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + 14 + Menu Button - false + $(P).SCAN + + true true false + + false + $(pv_name) +$(pv_value) false - $(P).SCAN - - - - - - + true Menu Button - true - false - - Default - 83 - 6 - - - - 1 - - - - 59 - - $(pv_name) -$(pv_value) 282 + 59 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 90 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2b8e - 0.0 + false Text Input + 0 + false + 0 + true + $(P).MDT + + false + 0.0 + true true false - 1 - false + 0 - $(P).MDT - - - - false - 0 - - - false - - - - 0 - - 58 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 90 407 + 58 - - true - 1 - 39872d87:13e14015f61:2b8f + + false - - 14 - Label - - true - true - false - - true - false - - - - Label + + + + 0 + 1 true - MDT - + - 32 - 0 + + + + 14 + 2 + Label - 1 - - - - 1 - - 59 - true - - 370 - - - false - true - false - 39872d87:13e14015f61:2b90 - - 18 - Menu Button - false true true false - false - - - - - - - - Menu Button - true - false - - Default - - 120 - 6 - - - - 1 - - - - 290 + + false + MDT + + true + 1 + true + Label + 32 + false + 370 + 59 + + userCalc.opi @@ -769,52 +753,54 @@ $(pv_value)

$(P):

obuf - 0 + 1 calculation
- $(pv_name) -$(pv_value) - 520 -
- + false + false + + + false - true - false - 39872d87:13e14015f61:2b91 - - 18 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 18 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 120 - 6 - - - - 1 - - - - 310 + + + output buffer calc + false + $(pv_name) +$(pv_value) + true + Action Button + 120 + 520 + 290 + + userCalc.opi @@ -823,365 +809,370 @@ $(pv_value)

$(P):

resume - 0 + 1 calculation
- $(pv_name) -$(pv_value) - 520 -
- + false + false + + + false - true - false - 39872d87:13e14015f61:2b92 - - 18 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 18 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 50 - 6 - - - - 1 - - - - 35 + + + resume calc + false + $(pv_name) +$(pv_value) + true + Action Button + 120 + 520 + 310 + + fb_epid.opi true - 1 + 0 main - $(pv_name) -$(pv_value) - 586 - - - true - 1 - 39872d87:13e14015f61:2b93 - false - - 20 - Label + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + + + true true false - true - false + + + main + false + $(pv_name) +$(pv_value) + true + Action Button + 50 + 586 + 35 + + + + false - - - - Label - true - Note: - - - - 100 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 0 - - 199 - true - - 13 - - - true - 1 - 39872d87:13e14015f61:2b94 - false - - 14 Label + true true false - true + false + Note: + + true + 1 + true + Label + 100 + false + 13 + 199 + + + + false - - - - Label - true - This screen provides direct access to just a few of the possible - - - - 500 - 0 - - 1 - 0 - - 220 - true - - 42 - - - true - 1 - 39872d87:13e14015f61:2b95 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + This screen provides direct access to just a few of the possible + + true + 1 + true + Label + 500 + false + 42 + 220 + + + + false - - - - Label - true - configuration variables for the fb_epid support. For access to more - - - - 500 - 0 - - 1 - 0 - - 240 - true - - 42 - - - true - 1 - 39872d87:13e14015f61:2b96 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + configuration variables for the fb_epid support. For access to more + + true + 1 + true + Label + 500 + false + 42 + 240 + + + + false - - - - Label - true - capabilities, visit each calculation subscreen. - - - - 500 - 0 - - 1 - 0 - - 260 - true - - 42 - - - true - 1 - 39872d87:13e14015f61:2b97 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + capabilities, visit each calculation subscreen. + + true + 1 + true + Label + 500 + false + 42 + 260 + + + + false - - - - Label - true - The <resume calc> is for internal use. Do not use it! - - - - 500 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 310 - true + Label + + + true + true + false + + + false + The <resume calc> is for internal use. Do not use it! + true + 1 + true + Label + 500 + false 42 + 310 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 190 - 3 - - 1 + false + + + + 6 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2b98 - 0.0 + false Text Input + 0 + false + 0 + true + $(P):enable.CALC + + false + 0.0 + true true false - 6 - false + 0 - $(P):enable.CALC - - - - false - 0 - - - false - - - - 0 - - 153 + false + true + false + false + + $(pv_name) $(pv_value) - 400 - - - false - true - false - 39872d87:13e14015f61:2b99 - - 18 - Menu Button - false - - true - true - false - false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - + true + Text Input + 190 + 400 153 + + userCalc.opi @@ -1190,246 +1181,258 @@ $(pv_value)

$(P):

enable - 0 + 1 calculation
+ false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + + + + + true + true + false + + + + calc + false $(pv_name) $(pv_value) + true + Action Button + 40 595 + 153
- - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 190 - 3 - - 1 + false + + + + 6 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2b9a - 0.0 + false Text Input + 0 + false + 0 + true + $(P):enable.INAN + + false + 0.0 + true true false - 6 - false + 0 - $(P):enable.INAN - - - - false - 0 - - - false - - - - 0 - - 153 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 190 205 + 153 - - true - 1 - 39872d87:13e14015f61:2b9b + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 2 Label + true true false - true + false + enable calculation + + true + 1 + true + Label + 190 + false + 10 + 153 + + + + false - - - - Label - true - enable calculation - - - - 190 - 0 - - 1 - 1 - - 153 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:2b9c - false - + 0 + 1 + true + + + + + + 14 + 2 Label + true true false - true + false - - - - - - - Label - true output signal - - - - 190 - 0 - - 1 - - - - 1 - - 174 - true + true + 1 + true + Label + 190 + false 10 + 174 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 190 - 3 - - 1 + false + + + + 6 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2b9d - 0.0 + false Text Input + 0 + false + 0 + true + $(P):out.OUTN + + false + 0.0 + true true false - 6 - false + 0 - $(P):out.OUTN - - - - false - 0 - - - false - - - - 0 - - 174 + false + true + false + false + + $(pv_name) $(pv_value) - 205 - - - false - true - false - 39872d87:13e14015f61:2b9e - - 18 - Menu Button - false - - true - true - false - false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - + true + Text Input + 190 + 205 174 + + userCalc.opi @@ -1438,52 +1441,54 @@ $(pv_value)

$(P):

out - 0 + 1 calculation
- $(pv_name) -$(pv_value) - 595 -
- + false + false + + + false - true - false - 39872d87:13e14015f61:2b9f - - 18 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 18 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + calc + false + $(pv_name) +$(pv_value) + true + Action Button 40 - 6 - - - - 1 - - - - 132 + 595 + 174 + + userCalc.opi @@ -1492,247 +1497,295 @@ $(pv_value)

$(P):

in - 0 + 1 calculation
+ false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + + + + + true + true + false + + + + calc + false $(pv_name) $(pv_value) - 595 -
- - false true - 1 - false + Action Button + 40 + 595 + 132 + + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 190 - 3 - - 1 + false + + + + 6 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2ba0 - 0.0 + false Text Input + 0 + false + 0 + true + $(P):in.CALC + + false + 0.0 + true true false - 6 - false + 0 - $(P):in.CALC - - - - false - 0 - - - false - - - - 0 - - 132 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 190 400 + 132 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 190 - 3 - - 1 + false + + + + 6 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2ba1 - 0.0 + false Text Input + 0 + false + 0 + true + $(P):in.INAN + + false + 0.0 + true true false - 6 - false + 0 - $(P):in.INAN - - - - false - 0 - - - false - - - - 0 - - 132 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 190 205 + 132 - - true - 1 - 39872d87:13e14015f61:2ba2 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 2 Label + true true false - true + false + input signal + + true + 1 + true + Label + 190 + false + 10 + 132 + + + + false - - - - Label - true - input signal - - - - 190 - 0 - - 1 - 1 - - 132 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:2ba3 - false - + 0 + 1 + true + + + + + + 14 + 2 Label + true true false - true + false + PV name + + true + 1 + true + Label + 190 + false + 205 + 110 + + + + false - - - - Label - true - PV name - - - - 190 - 0 - - 1 - 1 - - 110 - true - - 205 - - - true - 1 - 39872d87:13e14015f61:2ba4 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true calculation - - - - 190 - 0 - - 1 - - - - 0 - - 110 - true + true + 1 + true + Label + 190 + false 400 + 110 -
\ No newline at end of file +
diff --git a/opticsApp/op/opi/fb_epid_sim.opi b/opticsApp/op/opi/autoconvert/fb_epid_sim.opi similarity index 83% rename from opticsApp/op/opi/fb_epid_sim.opi rename to opticsApp/op/opi/autoconvert/fb_epid_sim.opi index c6de6ba..6e9cf84 100644 --- a/opticsApp/op/opi/fb_epid_sim.opi +++ b/opticsApp/op/opi/autoconvert/fb_epid_sim.opi @@ -1,872 +1,851 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 300 true - 39872d87:13e14015f61:2bcb - 3.1.2.20120830 + fb_epid_sim + + true + true + false true - 300 - fb_epid_sim false - false - - - - - - Display - true 443 - - true - 5 - - false - -1 - -1 - - - 69 28 - - true - 1 - 39872d87:13e14015f61:2bcc + 69 + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 0 Label + true true false - true + false + fb_epid_sim.adl + + true + 1 + true + Label + 200 + false + 16 + 4 + + + + false - - - - Label - true - fb_epid_sim.adl - - - - 200 - 0 - - 1 - 0 - - 4 - true - - 16 - - - true - 1 - 39872d87:13e14015f61:2bcd - false - + 0 + 1 + true + + + + + + 10 + 0 Label + true true false - true + false + last update: 2012-02-28 (prj) + + true + 1 + true + Label + 200 + false + 16 + 14 + + + + false - - - - Label - true - last update: 2012-02-28 (prj) - - - - 200 - 0 - - 1 - 0 - - 14 - true - - 16 - - - true - 1 - 39872d87:13e14015f61:2bce - false - + 0 + 1 + true + + + + + + 24 + 1 Label + true true false - true + false - - - - - - - Label - true feedback simulator $(P):sim - - - - 400 - 0 - - 1 - - - - 1 - - 34 - true + true + 1 + true + Label + 400 + false 10 + 34 - - true - true - 1 - false - 39872d87:13e14015f61:2bcf + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 6 20 + 1 Text Update - false + 0 + true + $(P):sim.DESC + + 0.0 + true true false - 6 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P):sim.DESC - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 400 - 0 - - - 1 - - - - 1 - - 64 false - $(pv_name) -$(pv_value) 10 + 64 - - true - 1 - 39872d87:13e14015f61:2bd0 + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - base temperature - - - - 190 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 1 - - 100 - true + Label + + + true + true + false + + + false + base temperature + true + 1 + true + Label + 190 + false 10 + 100 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 190 - 3 - - 1 + false + + + + 6 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2bd1 - 0.0 + false Text Input + 0 + false + 0 + true + $(P):sim.A + + false + 0.0 + true true false - 6 - false + 0 - $(P):sim.A - - - - false - 0 - - - false - - - - 0 - - 100 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 190 205 + 100 - - true - 1 - 39872d87:13e14015f61:2bd2 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true heater power - - - - 190 - 0 - - 1 - - - - 1 - - 150 - true + true + 1 + true + Label + 190 + false 10 + 150 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 190 - 3 - - 1 + false + + + + 6 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2bd3 - 0.0 + false Text Input + 0 + false + 0 + true + $(P):sim.C + + false + 0.0 + true true false - 6 - false + 0 - $(P):sim.C - - - - false - 0 - - - false - - - - 0 - - 150 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 190 205 + 150 - - true - 1 - 39872d87:13e14015f61:2bd4 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true cooling power - - - + + true + 1 + true + Label 190 - 0 - - 1 + false + 10 + 125 + + + + false + false + false + + + + false - 1 - - 125 - true - - 10 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input + 3 + 1 + true - - + - 190 - 3 - - 1 + false + + + + 6 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2bd5 - 0.0 + false Text Input + 0 + false + 0 + true + $(P):sim.B + + false + 0.0 + true true false - 6 - false + 0 - $(P):sim.B - - - - false - 0 - - - false - - - - 0 - - 125 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 190 205 + 125 - - true - 1 - 39872d87:13e14015f61:2bd6 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true relay threshold - - - - 190 - 0 - - 1 - - - - 1 - - 200 - true + true + 1 + true + Label + 190 + false 10 + 200 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 190 - 3 - - 1 + false + + + + 6 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2bd7 - 0.0 + false Text Input + 0 + false + 0 + true + $(P):sim.E + + false + 0.0 + true true false - 6 - false + 0 - $(P):sim.E - - - - false - 0 - - - false - - - - 0 - - 200 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 190 205 + 200 - - true - 1 - 39872d87:13e14015f61:2bd8 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true PID output - - - - 190 - 0 - - 1 - - - - 1 - - 175 - true + true + 1 + true + Label + 190 + false 10 + 175 - - true - true - 1 - false - 39872d87:13e14015f61:2bd9 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 6 20 + 1 Text Update - false + 0 + true + $(P):sim.D + + 0.0 + true true false - 6 - true - false - $(P):sim.D - - - - - - - Text Update - true + + false ###### - false - 0 - - - - 190 - 0 - - - 1 - - - - 1 - - 175 - false $(pv_name) $(pv_value) + false + 1 + true + Text Update + 190 + false 205 + 175 - - true - 1 - 39872d87:13e14015f61:2bda + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true current temperature - - - - 190 - 0 - - 1 - - - - 1 - - 225 - true + true + 1 + true + Label + 190 + false 10 + 225 - - true - true - 1 - false - 39872d87:13e14015f61:2bdb + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 6 20 + 1 Text Update - false + 0 + true + $(P):sim.F + + 0.0 + true true false - 6 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P):sim.F - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 190 - 0 - - - 1 - - - - 1 - - 225 false - $(pv_name) -$(pv_value) 205 + 225 - - false - true - false - 39872d87:13e14015f61:2bdc - - 18 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 70 - 6 - - - - 1 - - - - 3 + fb_epid.opi true - 0 + 1 basic - $(pv_name) -$(pv_value) - 324 - - + false + false + + + false - true - false - 39872d87:13e14015f61:2bdd - - 18 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 18 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + controls + false + $(pv_name) +$(pv_value) + true + Action Button 70 - 6 - - - - 1 - - - + 324 3 + + userCalc_full.opi @@ -874,529 +853,564 @@ $(pv_value) true :sim - 0 + 1 basic + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + + + + + true + true + false + + + + calc + false $(pv_name) $(pv_value) + true + Action Button + 70 222 + 3 - - true - 1 - 39872d87:13e14015f61:2bde + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true feedback ON or OFF - - - - 190 - 0 - - 1 - - - - 1 - - 250 - true + true + 1 + true + Label + 190 + false 10 + 250 - - true - true - 1 - false - 39872d87:13e14015f61:2bdf + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 6 20 + 1 Text Update - false + 0 + true + $(P).FBON + + 0.0 + true true false - 6 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P).FBON - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 190 - 0 - - - 1 - - - - 1 - - 250 false - $(pv_name) -$(pv_value) 205 + 250 - - true - 1 - 39872d87:13e14015f61:2be0 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true desired temperature - - - - 190 - 0 - - 1 - - - - 1 - - 275 - true + true + 1 + true + Label + 190 + false 10 + 275 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 120 - 3 - - 1 + false + + + + 6 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2be1 - 0.0 + false Text Input + 0 + false + 0 + true + $(P).VAL + + false + 0.0 + true true false - 6 - false + 0 - $(P).VAL - - - - false - 0 - - - false - - - - 0 - - 275 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 120 205 + 275 - - true - 1 - 39872d87:13e14015f61:2be2 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + A + + true + 1 + true + Label + 20 + false + 400 + 100 + + + + false - - - - Label - true - A - - - - 20 - 0 - - 1 - 1 - - 100 - true - - 400 - - - true - 1 - 39872d87:13e14015f61:2be3 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + B + + true + 1 + true + Label + 20 + false + 400 + 125 + + + + false - - - - Label - true - B - - - - 20 - 0 - - 1 - 1 - - 125 - true - - 400 - - - true - 1 - 39872d87:13e14015f61:2be4 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + C + + true + 1 + true + Label + 20 + false + 400 + 150 + + + + false - - - - Label - true - C - - - - 20 - 0 - - 1 - 1 - - 150 - true - - 400 - - - true - 1 - 39872d87:13e14015f61:2be5 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + D + + true + 1 + true + Label + 20 + false + 400 + 175 + + + + false - - - - Label - true - D - - - - 20 - 0 - - 1 - 1 - - 175 - true - - 400 - - - true - 1 - 39872d87:13e14015f61:2be6 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + E + + true + 1 + true + Label + 20 + false + 400 + 200 + + + + false - - - - Label - true - E - - - - 20 - 0 - - 1 - 1 - - 200 - true - - 400 - - - true - 1 - 39872d87:13e14015f61:2be7 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + F + + true + 1 + true + Label + 20 + false + 400 + 225 + + + + false - - - - Label - true - F - - - - 20 - 0 - - 1 - 1 - - 225 - true - - 400 - - - true - 1 - 39872d87:13e14015f61:2be8 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + G + + true + 1 + true + Label + 20 + false + 400 + 250 + + + + false - - - - Label - true - G - - - - 20 - 0 - - 1 - 1 - - 250 - true - - 400 - - - true - 1 - 39872d87:13e14015f61:2be9 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false - - - - - - - Label - true $(P).VAL - - - - 90 - 0 - - 1 - - - - 1 - - 275 - true + true + 1 + true + Label + 90 + false 330 + 275 - \ No newline at end of file + diff --git a/opticsApp/op/opi/filter_8_8_less.opi b/opticsApp/op/opi/autoconvert/filter_16_0_less.opi similarity index 73% rename from opticsApp/op/opi/filter_8_8_less.opi rename to opticsApp/op/opi/autoconvert/filter_16_0_less.opi index 9cf1933..38f2566 100644 --- a/opticsApp/op/opi/filter_8_8_less.opi +++ b/opticsApp/op/opi/autoconvert/filter_16_0_less.opi @@ -1,135 +1,133 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 285 true - 39872d87:13e14015f61:2ed6 - 3.1.2.20120830 + filter_16_0_less + + true + true + false true - 285 - filter_8_8_less false - false - - - - - - Display - true 680 - - true - 5 - - false - -1 - -1 - - - 300 - 300 - - false - true - 100.0 - - - - 39872d87:13e14015f61:2ed7 - - - - - 21 - true - Rectangle - false + 600 + 666 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 150 - 0 - 0 - - - 1 - 0 - true - - - - - 40 - $(pv_name) -$(pv_value) - 5 + false + + + false - - - false - true - 100.0 + 21 + true - 39872d87:13e14015f61:2ed8 - - - - - 15 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 150 + 5 + 40 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 15 + true + + + 0 - 0 + 0 + Rectangle + + @@ -141,62 +139,62 @@ $(pv_value) $(P)$(R)EnergySelect - - 1 - 0 - true - - - - - 60 - $(pv_name) -$(pv_value) - 245 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:2ed9 - - - - - 15 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 245 + 60 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 15 + true + + + 0 - 0 + 0 + Rectangle + + @@ -208,826 +206,875 @@ $(pv_value) $(P)$(R)EnergySelect - - 1 - 0 - true - - - - - 40 - $(pv_name) -$(pv_value) - 245 - false - - - - true - - true - 39872d87:13e14015f61:2eed - - 108 - Grouping Container true true false - true - false - - - - - - - Grouping Container - true - - Default - - 155 - 0 - - false - 1 + + $(pv_name) +$(pv_value) + false + true + Rectangle + 10 + 245 + 40 + + + + + + - - 40 + 0 + 1 + true + false + + Default + + + + + 108 + false + + true + + Grouping Container + + + true + true + false + + + false + true + true + Grouping Container + 155 400 - - false - true - 39872d87:13e14015f61:2eee - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionFactor - - - - - - - Action Button - true - /1000 - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 0 + 40 + $(P)$(R)TransmissionFactor 0.001 10 + - $(pv_name) -$(pv_value) - 0 - - + false + false + + + false - true - 39872d87:13e14015f61:2eef - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionFactor + + true true false - $(P)$(R)TransmissionSetpoint - - - - - - + + + /1000 + false + $(pv_name) +$(pv_value) + true Action Button - true - 1e-2 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - + 0 0 + + $(P)$(R)TransmissionSetpoint 1.0e-2 10 + - $(pv_name) -$(pv_value) - 110 - - + false + false + + + false - true - 39872d87:13e14015f61:2ef0 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionSetpoint + + true true false - $(P)$(R)TransmissionSetpoint - - - - - - + + + 1e-2 + false + $(pv_name) +$(pv_value) + true Action Button - true - 1e-4 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 22 + 110 + 0 + + $(P)$(R)TransmissionSetpoint 1.0e-4 10 + - $(pv_name) -$(pv_value) - 110 - - + false + false + + + false - true - 39872d87:13e14015f61:2ef1 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionSetpoint + + true true false - $(P)$(R)TransmissionSetpoint - - - - - - + + + 1e-4 + false + $(pv_name) +$(pv_value) + true Action Button - true - 1e-6 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 44 + 110 + 22 + + $(P)$(R)TransmissionSetpoint 1.0e-6 10 + - $(pv_name) -$(pv_value) - 110 - - - false - true - 39872d87:13e14015f61:2ef2 - + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionSetpoint + + true true false - $(P)$(R)TransmissionSetpoint - - - - - - + + + 1e-6 + false + $(pv_name) +$(pv_value) + true Action Button - true - 1e-8 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 66 + 110 + 44 + + $(P)$(R)TransmissionSetpoint 1.0e-8 10 + - $(pv_name) -$(pv_value) - 110 - - + false + false + + + false - true - 39872d87:13e14015f61:2ef3 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionSetpoint + + true true false - $(P)$(R)TransmissionSetpoint - - - - - - + + + 1e-8 + false + $(pv_name) +$(pv_value) + true Action Button - true - 1e-10 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 88 + 110 + 66 + + $(P)$(R)TransmissionSetpoint 1.0e-10 10 + - $(pv_name) -$(pv_value) - 110 - - + false + false + + + false - true - 39872d87:13e14015f61:2ef4 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionSetpoint + + true true false - $(P)$(R)TransmissionFactor - - - - - - + + + 1e-10 + false + $(pv_name) +$(pv_value) + true Action Button - true - /10 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 22 + 110 + 88 + + $(P)$(R)TransmissionFactor 0.1 10 + - $(pv_name) -$(pv_value) - 0 - - + false + false + + + false - true - 39872d87:13e14015f61:2ef5 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionFactor + + true true false - $(P)$(R)TransmissionFactor - - - - - - + + + /10 + false + $(pv_name) +$(pv_value) + true Action Button - true - /2 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 44 + 0 + 22 + + $(P)$(R)TransmissionFactor .5 10 + - $(pv_name) -$(pv_value) - 0 - - + false + false + + + false - true - 39872d87:13e14015f61:2ef6 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionFactor + + true true false - $(P)$(R)TransmissionFactor - - - - - - + + + /2 + false + $(pv_name) +$(pv_value) + true Action Button - true - -10% - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 66 + 0 + 44 + + $(P)$(R)TransmissionFactor 0.9 10 + - $(pv_name) -$(pv_value) - 0 - - + false + false + + + false - true - 39872d87:13e14015f61:2ef7 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionFactor + + true true false - $(P)$(R)TransmissionStepDown - - - - - - + + + -10% + false + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 88 + 0 + 66 + + $(P)$(R)TransmissionStepDown 1 10 + - $(pv_name) -$(pv_value) - 0 - - + false + false + + + false - true - 39872d87:13e14015f61:2ef8 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionStepDown + + true true false - $(P)$(R)TransmissionStepUp - - - - - - + + + - + false + $(pv_name) +$(pv_value) + true Action Button - true - + - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - + 0 88 + + $(P)$(R)TransmissionStepUp 1 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:2ef9 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionStepUp + + true true false - $(P)$(R)TransmissionFactor - - - - - - + + + + + false + $(pv_name) +$(pv_value) + true Action Button - true - *1000 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 0 + 50 + 88 + + $(P)$(R)TransmissionFactor 1000 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:2efa - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionFactor + + true true false - $(P)$(R)TransmissionFactor - - - - - - + + + *1000 + false + $(pv_name) +$(pv_value) + true Action Button - true - *10 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 22 + 50 + 0 + + $(P)$(R)TransmissionFactor 10 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:2efb - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionFactor + + true true false - $(P)$(R)TransmissionFactor - - - - - - + + + *10 + false + $(pv_name) +$(pv_value) + true Action Button - true - *2 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 44 + 50 + 22 + + $(P)$(R)TransmissionFactor 2 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:2efc - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionFactor + + true true false - $(P)$(R)TransmissionFactor - - - - - - + + + *2 + false + $(pv_name) +$(pv_value) + true Action Button - true - +10% - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 66 + 50 + 44 + + $(P)$(R)TransmissionFactor 1.1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionFactor + + + + true + true + false + + + + +10% + false $(pv_name) $(pv_value) + true + Action Button + 45 50 + 66 - + + + + + + + + + 0 + 1 + true + + Default + + + + + + 100 true 13 @@ -1035,44 +1082,42 @@ $(pv_value) 15 16 - true - 39872d87:13e14015f61:2efe - false - - true - 100 Linking Container + filterbox_less.opi + 2 + true true false - filterbox_less.opi + + + true + Linking Container + 130 + 40 + 180 + + + + + + + 0 + 1 + true + + Default + - Linking Container - true - - Default - - 130 - 3 - - 1 - - - - - 180 - - 30 - - + 100 true 9 @@ -1080,44 +1125,42 @@ $(pv_value) 11 12 - true - 39872d87:13e14015f61:2eff - false - - true - 100 Linking Container + filterbox_less.opi + 2 + true true false - filterbox_less.opi + + + true + Linking Container + 130 + 180 + 180 + + + + + + + 0 + 1 + true + + Default + - Linking Container - true - - Default - - 130 - 3 - - 1 - - - - - 180 - - 170 - - + 100 true 5 @@ -1125,44 +1168,42 @@ $(pv_value) 7 8 - true - 39872d87:13e14015f61:2f00 - false - - true - 100 Linking Container + filterbox_less.opi + 2 + true true false - filterbox_less.opi + + + true + Linking Container + 130 + 375 + 180 + + + + + + + 0 + 1 + true + + Default + - Linking Container - true - - Default - - 130 - 3 - - 1 - - - - - 180 - - 375 - - + 100 true 1 @@ -1170,2421 +1211,2481 @@ $(pv_value) 3 4 - true - 39872d87:13e14015f61:2f01 - false - - true - 100 Linking Container + filterbox_less.opi + 2 + true true false - filterbox_less.opi + + + true + Linking Container + 130 + 515 + 180 + + + - - - - - Linking Container - true - - Default - - 130 - 3 - - 1 - - 180 - - 515 - - + 0 + 1 + true + false + + Default + + + + + 19 + false true - true - 39872d87:13e14015f61:2f09 - - 85 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 671 - 0 - - false - 1 - - - - - 186 - 5 - + true + true + Grouping Container + 79 + 303 + 188 + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 19 + false true - true - 39872d87:13e14015f61:2f0a - - 30 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 671 - 0 - - false - 1 - - - - - 30 - 0 - - false - true - 100.0 - - - - 39872d87:13e14015f61:2f13 - - - - - 25 - true - Rectangle - false - 255 - - true - true - false - - false - + true + true + Grouping Container + 35 + 22 + 0 + + - + - - - - Rectangle - true - - - - false - - Default - - 20 - 0 - 0 - - - 1 - 0 - true - - 3 - $(pv_name) -$(pv_value) - 0 - false - - + 0 + 1 + true + false + + Default + + + + + 10 + false true - true - 39872d87:13e14015f61:2f0d - - 15 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 20 - 0 - - false - 1 - - - - - 8 - 646 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2f0e - 0.0 - - 0 - 8 - true - Polyline - false - 255 - - true - true - true - - - - - - false - + true + true + Grouping Container + 35 + 0 + 0 + + + false - + - - - - Polyline + + + + 0 + 1 true - false - Default + - 20 - 0 - 0 + + + + 10 + 0 + Label - - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 1 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2f0f - 0.0 - - 0 - 8 - true - Polyline - false - 255 true true - true + false - - - - - false - - - - - - - - Polyline - true - false - - Default - - 20 - 0 - 0 - - - 1 - 1 - true - - - - - 7 - $(pv_name) -$(pv_value) - 1 - - - - - true - - true - 39872d87:13e14015f61:2f10 - - 15 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 20 - 0 - - false - 1 - - - - - 8 - - 300 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2f11 - 0.0 - 0 - 8 - true - Polyline - false - 255 - - true - true - true - - - - - - false - + false + lock + + true + 1 + true + Label + 21 + false + 0 + 0 + + + + false - + - - - - Polyline + + + + 0 + 1 true - false - Default + - 20 - 0 - 0 + + + + 10 + 0 + Label - - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 1 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2f12 - 0.0 - - 0 - 8 - true - Polyline - false - 255 true true - true + false - - - - - false - - - - - - - - Polyline - true - false - - Default - - 20 - 0 - 0 - - - 1 - 1 - true - - - - - 7 - $(pv_name) -$(pv_value) - 1 + + false + / + + true + 1 + true + Label + 10 + false + 25 + 0 - - false - true - 100.0 - - - - 39872d87:13e14015f61:2f0b - - - - - 30 - true - Ellipse - false - 255 - - true - true - true - - false - + + + false - + - - - - Ellipse + + + + 0 + 1 true - - - - false - Default + - 30 - 0 - 0 + + + + 10 + 0 + Label - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 325 - false - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2f0c - 0.0 - - 0 - 1 - true - Polyline - false - 255 true true - true + false - - - - - false - - - - - - - - Polyline - true - false - - Default - - 670 - 0 - 0 - - - 1 - 1 - true - - - - - 16 - $(pv_name) -$(pv_value) + + false + free + + true + 1 + true + Label + 21 + false 1 + 9 - - - true - - true - 39872d87:13e14015f61:2f14 - - 10 - Grouping Container + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Polyline + 19 + 0 + 5 + + + + false + 255 + true + 20 + 0 + false - + - - - - Grouping Container + false + + + + 0 + 1 true + true + 100.0 - Default + Default - 96 - 0 + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 - false - 1 - + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 19 + 60 + 5 + + + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 15 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 671 + 5 + 226 + + + + + + - - 0 + 0 + 1 + true + false + + Default + + + + + 15 + false + + true + + Grouping Container + + + true + true + false + + + false - 285 - - - true - - true - 39872d87:13e14015f61:2f16 - - 10 - Grouping Container + true + true + Grouping Container + 20 + 0 + 0 + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 8 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Polyline + 20 + 1 + 1 + + + + false + 255 + true + 20 + 0 + false - + - - - - Grouping Container + false + + + + 0 + 1 true + true + 100.0 - Default + Default - 49 - 0 + false + + + + 8 + true + 0 + 1 + Polyline + + + + + + + 0.0 - false - 1 + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 20 + 1 + 7 + + + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 15 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 20 + 330 + 0 + + + false + 255 + true + 20 + 0 + false + + + + false - - 0 - - 22 - - true - 1 - 39872d87:13e14015f61:2f17 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - lock - - - - 20 - 0 - - 1 - - - - 0 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:2f18 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - / - - - - 10 - 0 - - 1 - - - - 0 - - 0 - true - - 24 - - - true - 1 - 39872d87:13e14015f61:2f19 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - free - - - - 20 - 0 - - 1 - - - - 0 - - 0 - true - - 29 - - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2f15 + + Default + + false + + + + 8 + true + 0 + 1 + Polyline + + + + + + 0.0 + + + true + true + true + - 0 - 1 + $(pv_name) +$(pv_value) + false + true + Polyline + 20 + 1 + 1 + + + + false + 255 true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 8 + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 20 + 1 + 7 + + + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 15 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 20 + 646 + 0 + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 20 - 0 - 0 - - - 1 - 1 - true + false - - 5 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2f1a - 0.0 - - 0 - 1 - true - Polyline + + Default + false - 255 + + + + 8 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 20 + 1 + 1 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 19 + false + + + + 8 + true 0 - 0 - - - 1 1 - true - - - - - 5 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 77 + false + true + Polyline + 20 + 1 + 7 - - - true - - true - 39872d87:13e14015f61:2f1b - - 20 - Grouping Container + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Polyline + 670 + 1 + 8 + + + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 20 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 79 + 303 + 253 + + - - - - Grouping Container + + + + 0 + 1 true + false - Default + Default - 89 - 0 + + + + 20 + false + + true + + Grouping Container - false - 1 - - - - - 65 + + true + true + false + + + false - 288 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2f1c - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - + true + true + Grouping Container + 45 + 17 + 0 + + + false - + - - - - Polyline - true - false - - Default - - 24 - 0 - 0 - - - 1 - 1 - true - - 7 - $(pv_name) -$(pv_value) - 65 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2f1d - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline + 0 + 1 true - false - Default + - 24 - 0 - 0 - - - 1 - 1 - true - - - - - 7 - $(pv_name) -$(pv_value) - 0 - - - true - 1 - 39872d87:13e14015f61:2f1e - false - + + + 10 + 1 Label + true true false - true + false + remove + + true + 1 + true + Label + 45 + false + 0 + 0 + + + + false - - - - Label - true - insert - - - - 55 - 0 - - 1 - 1 - - 10 - true - - 18 - - - true - 1 - 39872d87:13e14015f61:2f1f - false - + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true - remove - - - - 55 - 0 - - 1 - - - - 1 - - 0 - true + insert - 18 + true + 1 + true + Label + 45 + false + 0 + 10 - - - false - true - 39872d87:13e14015f61:2eda - - 37 - Choice Button - false - - true - true - false - - $(P)$(R)EnergySelect + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 19 + 0 + 7 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 19 + 60 + 7 + + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 65 - 0 - - - - - + false + + + + 37 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 40 + Choice Button + $(P)$(R)EnergySelect + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 65 175 + 40 - - true - true - 1 - false - 39872d87:13e14015f61:2edb + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 2 Text Update - false + 0 + true + $(P)$(R)EnergyBeamline + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)EnergyBeamline - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 85 - 0 - - - 1 - - - - 0 - - 40 false - $(pv_name) -$(pv_value) 260 + 40 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 85 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2edc - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(R)EnergyLocal + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(R)EnergyLocal - - - - false - 0 - - - false - - - - 0 - - 57 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 85 260 + 57 - - true - 1 - 39872d87:13e14015f61:2edd + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true Message: - - - + + true + 1 + true + Label 60 - 0 - - 1 + false + 176 + 153 + + + + false + false + false + + + + true + 0 + 1 + true + + + + false + + + + 4 + 15 0 - - 153 - true - - 176 - - - true - true - 1 - false - 39872d87:13e14015f61:2ede - false + Text Update + 0 + true + $(P)$(R)Message + 0.0 - - 15 - Text Update - false + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)Message - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 415 - 0 - - - 1 - - - - 0 - - 153 false - $(pv_name) -$(pv_value) 250 + 153 - + + + + $(P)$(R)TransmissionSetpoint + 0 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:2edf - + + + + 0 + 1 + true + + Default + + false + + + 28 + Action Button - false + 0 + $(P)$(R)TransmissionSetpoint + + true true false - $(P)$(R)TransmissionSetpoint - - - - - - - Action Button - true + + ALL IN - false - - Default - - 95 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 95 + 570 40 + + $(P)$(R)TransmissionSetpoint - 0 + 1 10 + - $(pv_name) -$(pv_value) - 570 - - + false + false + + + false - true - 39872d87:13e14015f61:2ee0 - + + + + 0 + 1 + true + + Default + + false + + + 28 + Action Button - false + 0 + $(P)$(R)TransmissionSetpoint + + true true false - $(P)$(R)TransmissionSetpoint - - - - - - - Action Button - true + + ALL OUT - false - - Default - - 95 - 0 - 0 - - - false - 1 - - - - 70 - - - $(P)$(R)TransmissionSetpoint - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 95 570 + 70 - - true - 1 - 39872d87:13e14015f61:2ee1 + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true Setpoint: - - - - 86 - 0 - - 1 - - - - 0 - - 105 - true + true + 1 + true + Label + 86 + false 570 + 105 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 95 - 3 - - 1 + false + + + + 6 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2ee2 - 0.0 + false Text Input - - true - true - false - - 6 - false - 0 - $(P)$(R)TransmissionSetpoint - - - - false + 0 + false 0 - + true + $(P)$(R)TransmissionSetpoint + + false + 0.0 - false - - - - 0 - - 123 + + true + true + false + + + 0 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 95 570 + 123 - - true - 1 - 39872d87:13e14015f61:2ee3 + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false + Mask: + + true + 1 + true + Label + 60 + false + 175 + 133 + + + + false - - - - Label - true - Mask: - - - - 60 - 0 - - 1 - 0 - - 133 - true - - 175 - - - true - 1 - 39872d87:13e14015f61:2ee4 - false - + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true Transm: - - - - 60 - 0 - - 1 - - - - 0 - - 111 - true + true + 1 + true + Label + 60 + false 175 + 111 - - true - true - 1 - false - 39872d87:13e14015f61:2ee5 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 13 + 0 Text Update - false + 0 + true + $(P)$(R)FilterMask + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)FilterMask - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 0 - - 134 false - $(pv_name) -$(pv_value) 245 + 134 - - true - true - 1 - false - 39872d87:13e14015f61:2ee6 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 20 + 0 Text Update - false + 0 + true + $(P)$(R)Transmission + + 0.0 + true true false - 2 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)Transmission - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 140 - 0 - - - 1 - - - - 0 - - 108 false - $(pv_name) -$(pv_value) 245 + 108 - - true - 1 - 39872d87:13e14015f61:2ee7 + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true Status: - - - - 60 - 0 - - 1 - - - - 0 - - 89 - true + true + 1 + true + Label + 60 + false 175 + 89 - - true - true - 1 - false - 39872d87:13e14015f61:2ee8 + + + false false - 0.0 - + false + + + + false + + + + 0 + 1 + true + + + + true + + + + 4 20 + 0 Text Update - true + 0 + true + $(P)$(R)Status + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)Status - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 140 - 0 - - - 1 - - - - 0 - - 86 false - $(pv_name) -$(pv_value) 245 + 86 - - true - true - 1 - false - 39872d87:13e14015f61:2ee9 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 3 13 + 0 Text Update - false + 0 + true + $(P)$(R)FilterMask + + 0.0 + true true false - 3 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)FilterMask - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 0 - - 134 false - $(pv_name) -$(pv_value) 325 + 134 - - true - 1 - 39872d87:13e14015f61:2eea + + false - + + + + + + + 0 + 1 + true + + + + + + 13 + 0 Label + true true false - true + false + = + + true + 1 + true + Label + 10 + false + 310 + 134 + + + + false - - - - Label - true - = - - - - 10 - 0 - - 1 - 0 - - 134 - true - - 310 - - - true - 1 - 39872d87:13e14015f61:2eeb - false - + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true keV - - - - 34 - 0 - - 1 - - - - 0 - - 40 - true + true + 1 + true + Label + 34 + false 350 + 40 - - true - 1 - 39872d87:13e14015f61:2eec + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true keV - - - - 34 - 0 - - 1 - - - - 0 - - 60 - true + true + 1 + true + Label + 34 + false 350 + 60 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2efd - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 680 - 0 - 0 - - 1 - 1 - true - - - - - 175 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 680 0 + 175 - - true - true - 1 - false - 39872d87:13e14015f61:2f02 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 25 + 1 Text Update - false + 0 + true + $(P)$(R)Description + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)Description - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 670 - 0 - - - 1 - - - - 1 - - 5 false - $(pv_name) -$(pv_value) 5 + 5 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2f03 - 0.0 - - 0 + + Default + + false + + + 146 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - 1 - 1 - true - - - - - 30 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 1 165 + 30 - - true - 1 - 39872d87:13e14015f61:2f04 + + false - - 13 - Label - - true - true - false - - true - false - - - - Label - true - $(P)$(R) - - - - 150 - 0 - - 1 + 0 + 1 + true + + + + + + + 13 1 - - 44 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:2f05 - false - - 10 Label + true true false - true + false + $(P)$(R) + + true + 1 + true + Label + 150 + false + 5 + 44 + + + + false - - - - Label - true - filter_8_8_less.adl - - - - 118 - 0 - - 1 - 0 - - 95 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:2f06 - false - + 0 + 1 + true + + + + + + 10 + 0 Label + true true false - true + false + filter_16_0_less.adl + + true + 1 + true + Label + 118 + false + 5 + 95 + + + + false - - - - Label - true - 2013-01-09 (CMS) - - - - 118 - 0 - - 1 + 0 + 1 + true + + + + + + + 10 0 - - 110 - true - - 5 - - - false - true - false - 39872d87:13e14015f61:2f07 - - 18 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 70 - 6 - - - - 1 - - - - 70 + + false + 2013-01-24 (CMS) + + true + 1 + true + Label + 118 + false + 5 + 110 + + filter_drive_config.opi true - 0 + 1 configure - $(pv_name) -$(pv_value) - 85 - - + false + false + + + false - true - false - 39872d87:13e14015f61:2f08 - - 18 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 18 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + configure + false + $(pv_name) +$(pv_value) + true + Action Button 70 - 6 - - - - 1 - - - + 85 70 + + - filter_8_8_more.opi + filter_16_0_more.opi true - 1 - less + 0 + more + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + + + + + true + true + false + + + + more + false $(pv_name) $(pv_value) + true + Action Button + 70 5 + 70 - \ No newline at end of file + diff --git a/opticsApp/op/opi/filter_8_8_more.opi b/opticsApp/op/opi/autoconvert/filter_16_0_more.opi similarity index 72% rename from opticsApp/op/opi/filter_8_8_more.opi rename to opticsApp/op/opi/autoconvert/filter_16_0_more.opi index cbbbe63..d2fa644 100644 --- a/opticsApp/op/opi/filter_8_8_more.opi +++ b/opticsApp/op/opi/autoconvert/filter_16_0_more.opi @@ -1,94 +1,111 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 400 true - 39872d87:13e14015f61:2f73 - 3.1.2.20120830 + filter_16_0_more + + true + true + false true - 400 - filter_8_8_more false - false - - - - - - Display - true 680 - - true - 5 - - false - -1 - -1 - - - 300 300 - + 300 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 21 + true - 39872d87:13e14015f61:2f74 - - - - - 21 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle - true - - - - false - - Default - 150 - 0 - 0 - - - 1 - 0 - true + 5 + 40 + + + + + + - - 40 - $(pv_name) -$(pv_value) - 5 - false - - + 0 + 1 + true + + Default + + + + + + 170 true 13 @@ -96,44 +113,42 @@ $(pv_value) 15 16 - true - 39872d87:13e14015f61:2f7c - false - - true - 170 Linking Container + filterbox_more.opi + 2 + true true false - filterbox_more.opi + + + true + Linking Container + 130 + 40 + 225 + + + + + + + 0 + 1 + true + + Default + - Linking Container - true - - Default - - 130 - 3 - - 1 - - - - - 225 - - 30 - - + 170 true 9 @@ -141,44 +156,42 @@ $(pv_value) 11 12 - true - 39872d87:13e14015f61:2f7d - false - - true - 170 Linking Container + filterbox_more.opi + 2 + true true false - filterbox_more.opi + + + true + Linking Container + 130 + 180 + 225 + + + + + + + 0 + 1 + true + + Default + - Linking Container - true - - Default - - 130 - 3 - - 1 - - - - - 225 - - 170 - - + 170 true 5 @@ -186,44 +199,42 @@ $(pv_value) 7 8 - true - 39872d87:13e14015f61:2f7e - false - - true - 170 Linking Container + filterbox_more.opi + 2 + true true false - filterbox_more.opi + + + true + Linking Container + 130 + 375 + 225 + + + + + + + 0 + 1 + true + + Default + - Linking Container - true - - Default - - 130 - 3 - - 1 - - - - - 225 - - 375 - - + 170 true 1 @@ -231,1524 +242,1614 @@ $(pv_value) 3 4 - true - 39872d87:13e14015f61:2f7f - false - - true - 170 Linking Container + filterbox_more.opi + 2 + true true false - filterbox_more.opi + + + true + Linking Container + 130 + 515 + 225 + + + - - - - - Linking Container - true - - Default - - 130 - 3 - - 1 - - 225 - - 515 - - + 0 + 1 + true + false + + Default + + + + + 19 + false true - true - 39872d87:13e14015f61:2f80 - - 20 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 89 - 0 - - false - 1 - - - - - 345 - 293 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2f81 - 0.0 - - 0 - 1 - true - Polyline - false - 255 + true + true + Grouping Container + 79 + 303 + 280 + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 19 + false + + true + + Grouping Container + true true - true + false - - - - - false - + + false + + true + true + Grouping Container + 35 + 22 + 0 + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 10 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 35 + 0 + 0 + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + lock + + true + 1 + true + Label + 21 + false + 0 + 0 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + / + + true + 1 + true + Label + 10 + false + 25 + 0 + + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + free + + true + 1 + true + Label + 21 + false + 1 + 9 + + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 24 - 0 - 0 - - - 1 - 1 - true + false - - 7 - $(pv_name) -$(pv_value) - 65 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2f82 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 19 + 0 + 5 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 24 - 0 - 0 - - - 1 - 1 - true + false - - 7 - $(pv_name) -$(pv_value) - 0 - - - true - 1 - 39872d87:13e14015f61:2f83 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label + 0 + 1 true - insert + true + 100.0 - + Default - 55 - 0 + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 - 1 - - - - 1 - - 10 - true - - 18 - - - true - 1 - 39872d87:13e14015f61:2f84 - false - - 10 - Label true true - false + true - true - false - - - - - - - Label - true - remove - - - - 55 - 0 - - 1 - - - - 1 - - 0 - true - - 18 + + $(pv_name) +$(pv_value) + false + true + Polyline + 19 + 60 + 5 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 15 + false true - true - 39872d87:13e14015f61:2f85 - - 10 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 96 - 0 - - false - 1 - - - - - 280 - 290 - + true + true + Grouping Container + 671 + 5 + 318 + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 15 + false true - true - 39872d87:13e14015f61:2f87 - - 10 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - - 49 - 0 - - false - 1 - - - - + 20 + 0 0 - - 22 - - true - 1 - 39872d87:13e14015f61:2f88 - false - - 10 - Label - - true - true - false - - true - false + + + false + 255 + true + 20 + 0 + false - + - - - - Label + false + + + + 0 + 1 true - lock + true + 100.0 - + Default - 20 - 0 + false + + + + 8 + true + 0 + 1 + Polyline + + + + + + + 0.0 - 1 - - - - 0 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:2f89 - false - - 10 - Label true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Polyline + 20 + 1 + 1 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label + false + + + + 0 + 1 true - / + true + 100.0 - + Default - 10 - 0 + false + + + + 8 + true + 0 + 1 + Polyline + + + + + + + 0.0 - 1 - - - - 0 - - 0 - true - - 24 - - - true - 1 - 39872d87:13e14015f61:2f8a - false - - 10 - Label true true - false + true - true - false - - - - - - - Label - true - free - - - + + $(pv_name) +$(pv_value) + false + true + Polyline 20 - 0 - - 1 - - - - 0 - - 0 - true - - 29 + 1 + 7 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2f86 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - + + - + - - - - Polyline - true - false - - Default - - 20 - 0 - 0 - - - 1 - 1 - true - - 5 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2f8b - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 19 - 0 0 - - 1 - 1 - true - - - - - 5 - $(pv_name) -$(pv_value) - 77 - - - - - true - - true - 39872d87:13e14015f61:2f8c - - 30 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 671 - 0 - - false - 1 - - - - - 310 - - 5 - - false - true - 100.0 - - - - 39872d87:13e14015f61:2f95 - - - - - 25 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle true - - - - false + false - Default + Default - 20 - 0 - 0 - - - 1 - 0 - true - - - - - 3 - $(pv_name) -$(pv_value) - 0 - false - - + + + + 15 + false true - true - 39872d87:13e14015f61:2f8f - - 15 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 20 - 0 - - false - 1 - - - - - 8 - - 646 - + 330 + 0 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2f90 + + Default + + false + + + + 8 + true + 0 + 1 + Polyline + + + + + + 0.0 + + + true + true + true + + $(pv_name) +$(pv_value) + false + true + Polyline + 20 + 1 + 1 + + + + false + 255 + true + 20 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + 8 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 20 + 1 + 7 + + + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 15 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 20 + 646 + 0 + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 20 - 0 - 0 - - - 1 - 1 - true + false - - 1 - $(pv_name) -$(pv_value) - 1 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2f91 - 0.0 - - 0 + + Default + + false + + + 8 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 20 + 1 + 1 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 20 + false + + + + 8 + true 0 - 0 - - - 1 1 - true - - - - - 7 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 20 1 + 7 - - - true - - true - 39872d87:13e14015f61:2f92 - - 15 - Grouping Container + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Polyline + 670 + 1 + 8 + + + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 20 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 79 + 303 + 345 + + - - - - Grouping Container - true - - Default - - 20 - 0 - - false - 1 - - 8 - - 300 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2f93 - 0.0 - - 0 - 8 - true - Polyline - false - 255 - - true - true - true - - - - - - false - + 0 + 1 + true + false + + Default + + + + + 20 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 45 + 17 + 0 + + + false - + - - - - Polyline + + + + 0 + 1 true - false - Default + - 20 - 0 - 0 + + + + 10 + 1 + Label - - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 1 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2f94 - 0.0 - - 0 - 8 - true - Polyline - false - 255 true true - true + false - - - - - false - + + false + remove + + true + 1 + true + Label + 45 + false + 0 + 0 + + + + false - + - - - - Polyline + + + + 0 + 1 true - false - Default + - 20 - 0 - 0 + + + + 10 + 1 + Label - - 1 - 1 - true - - - - - 7 - $(pv_name) -$(pv_value) - 1 + + true + true + false + + + false + insert + + true + 1 + true + Label + 45 + false + 0 + 10 - - false - true - 100.0 - - - - 39872d87:13e14015f61:2f8d - - - - - 30 - true - Ellipse - false + + + false 255 - - true - true - true - - false - + true + 20 + 0 + false - - - - Ellipse - true - - - - false - - Default - - 30 - 0 - 0 - - - 1 - 0 - true + false - - 0 - $(pv_name) -$(pv_value) - 325 - false - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2f8e - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 19 + 0 + 7 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 670 + false + + + + 1 + true 0 - 0 - - - 1 1 - true - - - - - 16 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 1 + false + true + Polyline + 19 + 60 + 7 - + + + + + + + + + 0 + 1 + true + + Default + + + + + + 168 true - true - 39872d87:13e14015f61:2f97 - false - - true - 168 Linking Container + filter_drive_more.opi + 2 + true true false - filter_drive_more.opi + + + true + Linking Container + 490 + 175 + 40 + + + + false + 255 + true + 20 + 0 + false - + - - - - - Linking Container + false + + + + 0 + 1 true + true + 100.0 - Default + Default - 490 - 3 + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 - 1 + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 680 + 0 + 220 + + + + false + false + false + + + + true - - 40 - - 175 - - - true - true - 1 - false - 39872d87:13e14015f61:2f75 - false - 0.0 - + 0 + 1 + true + + + + false + + + + 1 25 + 1 Text Update - false + 0 + true + $(P)$(R)Description + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)Description - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 670 - 0 - - - 1 - - - - 1 - - 5 false - $(pv_name) -$(pv_value) 5 + 5 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2f76 - 0.0 - - 0 + + Default + + false + + + 191 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - 1 - 1 - true - - - - - 30 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 1 165 + 30 - - true - 1 - 39872d87:13e14015f61:2f77 + + false - - 13 - Label - - true - true - false - - true - false - - - - Label - true - $(P)$(R) - - - - 150 - 0 - - 1 + 0 + 1 + true + + + + + + + 13 1 - - 44 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:2f78 - false - - 10 Label + true true false - true + false + $(P)$(R) + + true + 1 + true + Label + 150 + false + 5 + 44 + + + + false - - - - Label - true - filter_8_8_more.adl - - - - 118 - 0 - - 1 - 0 - - 95 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:2f79 - false - + 0 + 1 + true + + + + + + 10 + 0 Label + true true false - true + false + filter_16_0_more.adl + + true + 1 + true + Label + 118 + false + 5 + 95 + + + + false - - - - Label - true - 2013-01-31 (CMS) - - - - 118 - 0 - - 1 + 0 + 1 + true + + + + + + + 10 0 - - 110 - true - - 5 - - - false - true - false - 39872d87:13e14015f61:2f7a - - 18 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 70 - 6 - - - - 1 - - - - 70 + + false + 2013-01-31 (CMS) + + true + 1 + true + Label + 118 + false + 5 + 110 + + filter_drive_config.opi true - 0 + 1 configure - $(pv_name) -$(pv_value) - 85 - - + false + false + + + false - true - false - 39872d87:13e14015f61:2f7b - - 18 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 18 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + configure + false + $(pv_name) +$(pv_value) + true + Action Button 70 - 6 - - - - 1 - - - + 85 70 + + - filter_8_8_less.opi + filter_16_0_less.opi true - 1 + 0 less - $(pv_name) -$(pv_value) - 5 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2f96 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - + false + false - + - - - - Polyline + false + + + + 0 + 1 true - false - Default + Default - 680 - 0 - 0 - + false + + + + 18 + + Action Button + 0 + - 1 - 1 - true - - - - - 220 + + + true + true + false + + + + less + false $(pv_name) $(pv_value) - 0 + true + Action Button + 70 + 5 + 70 - \ No newline at end of file + diff --git a/opticsApp/op/opi/filter_4_4_less.opi b/opticsApp/op/opi/autoconvert/filter_4_4_less.opi similarity index 77% rename from opticsApp/op/opi/filter_4_4_less.opi rename to opticsApp/op/opi/autoconvert/filter_4_4_less.opi index 779907d..7d2e131 100644 --- a/opticsApp/op/opi/filter_4_4_less.opi +++ b/opticsApp/op/opi/autoconvert/filter_4_4_less.opi @@ -1,135 +1,133 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 280 true - 39872d87:13e14015f61:2d0c - 3.1.2.20120830 + filter_4_4_less + + true + true + false true - 280 - filter_4_4_less false - false - - - - - - Display - true 510 - - true - 5 - - false - -1 - -1 - - - 300 300 - - false - true - 100.0 - - - - 39872d87:13e14015f61:2d0d - - - - - 21 - true - Rectangle - false + 300 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 115 - 0 - 0 - - - 1 - 0 - true - - - - - 205 - $(pv_name) -$(pv_value) - 10 + false + + + false - - - false - true - 100.0 + 21 + true - 39872d87:13e14015f61:2d0e - - - - - 15 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 115 + 10 + 205 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 15 + true + + + 0 - 0 + 0 + Rectangle + + @@ -141,62 +139,62 @@ $(pv_value) $(P)$(R)EnergySelect - - 1 - 0 - true - - - - - 60 - $(pv_name) -$(pv_value) - 80 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:2d0f - - - - - 15 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 80 + 60 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 15 + true + + + 0 - 0 + 0 + Rectangle + + @@ -208,928 +206,1032 @@ $(pv_value) $(P)$(R)EnergySelect - - 1 - 0 - true - - - - - 40 - $(pv_name) -$(pv_value) - 80 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:2d38 - - - - - 21 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 80 + 40 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 115 + false + + + + false + 21 + true + + + 0 - 0 - - - 1 0 - true + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 115 + 10 + 182 + + + + false + 255 + true + false + + + + + + + false - - 182 + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 26 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + $(pv_name) $(pv_value) - 10 - false + false + true + Rectangle + 15 + 148 + 220 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 108 + false true - true - 39872d87:13e14015f61:2d23 - - 108 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 155 - 0 - - false - 1 - - - - - 40 - 235 - - false - true - 39872d87:13e14015f61:2d24 - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionFactor - - - - - - - Action Button - true - /1000 - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 0 + 40 + $(P)$(R)TransmissionFactor 0.001 10 + - $(pv_name) -$(pv_value) - 0 - - + false + false + + + false - true - 39872d87:13e14015f61:2d25 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionFactor + + true true false - $(P)$(R)TransmissionSetpoint - - - - - - + + + /1000 + false + $(pv_name) +$(pv_value) + true Action Button - true - 1e-2 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - + 0 0 + + $(P)$(R)TransmissionSetpoint 1.0e-2 10 + - $(pv_name) -$(pv_value) - 110 - - + false + false + + + false - true - 39872d87:13e14015f61:2d26 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionSetpoint + + true true false - $(P)$(R)TransmissionSetpoint - - - - - - + + + 1e-2 + false + $(pv_name) +$(pv_value) + true Action Button - true - 1e-4 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 22 + 110 + 0 + + $(P)$(R)TransmissionSetpoint 1.0e-4 10 + - $(pv_name) -$(pv_value) - 110 - - + false + false + + + false - true - 39872d87:13e14015f61:2d27 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionSetpoint + + true true false - $(P)$(R)TransmissionSetpoint - - - - - - + + + 1e-4 + false + $(pv_name) +$(pv_value) + true Action Button - true - 1e-6 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 44 + 110 + 22 + + $(P)$(R)TransmissionSetpoint 1.0e-6 10 + - $(pv_name) -$(pv_value) - 110 - - + false + false + + + false - true - 39872d87:13e14015f61:2d28 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionSetpoint + + true true false - $(P)$(R)TransmissionSetpoint - - - - - - + + + 1e-6 + false + $(pv_name) +$(pv_value) + true Action Button - true - 1e-8 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 66 + 110 + 44 + + $(P)$(R)TransmissionSetpoint 1.0e-8 10 + - $(pv_name) -$(pv_value) - 110 - - + false + false + + + false - true - 39872d87:13e14015f61:2d29 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionSetpoint + + true true false - $(P)$(R)TransmissionSetpoint - - - - - - + + + 1e-8 + false + $(pv_name) +$(pv_value) + true Action Button - true - 1e-10 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 88 + 110 + 66 + + $(P)$(R)TransmissionSetpoint 1.0e-10 10 + - $(pv_name) -$(pv_value) - 110 - - + false + false + + + false - true - 39872d87:13e14015f61:2d2a - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionSetpoint + + true true false - $(P)$(R)TransmissionFactor - - - - - - - Action Button - true - /10 - false - - Default - - 45 - 0 - 0 - - - + + + 1e-10 false - 1 - - - - 22 + $(pv_name) +$(pv_value) + true + Action Button + 45 + 110 + 88 + + $(P)$(R)TransmissionFactor 0.1 10 + - $(pv_name) -$(pv_value) - 0 - - + false + false + + + false - true - 39872d87:13e14015f61:2d2b - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionFactor + + true true false - $(P)$(R)TransmissionFactor - - - - - - + + + /10 + false + $(pv_name) +$(pv_value) + true Action Button - true - /2 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 44 + 0 + 22 + + $(P)$(R)TransmissionFactor .5 10 + - $(pv_name) -$(pv_value) - 0 - - + false + false + + + false - true - 39872d87:13e14015f61:2d2c - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionFactor + + true true false - $(P)$(R)TransmissionFactor - - - - - - + + + /2 + false + $(pv_name) +$(pv_value) + true Action Button - true - -10% - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 66 + 0 + 44 + + $(P)$(R)TransmissionFactor 0.9 10 + - $(pv_name) -$(pv_value) - 0 - - + false + false + + + false - true - 39872d87:13e14015f61:2d2d - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionFactor + + true true false - $(P)$(R)TransmissionStepDown - - - - - - + + + -10% + false + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 88 + 0 + 66 + + $(P)$(R)TransmissionStepDown 1 10 + - $(pv_name) -$(pv_value) - 0 - - + false + false + + + false - true - 39872d87:13e14015f61:2d2e - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionStepDown + + true true false - $(P)$(R)TransmissionStepUp - - - - - - + + + - + false + $(pv_name) +$(pv_value) + true Action Button - true - + - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - + 0 88 + + $(P)$(R)TransmissionStepUp 1 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:2d2f - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionStepUp + + true true false - $(P)$(R)TransmissionFactor - - - - - - + + + + + false + $(pv_name) +$(pv_value) + true Action Button - true - *1000 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 0 + 50 + 88 + + $(P)$(R)TransmissionFactor 1000 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:2d30 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionFactor + + true true false - $(P)$(R)TransmissionFactor - - - - - - + + + *1000 + false + $(pv_name) +$(pv_value) + true Action Button - true - *10 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 22 + 50 + 0 + + $(P)$(R)TransmissionFactor 10 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:2d31 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionFactor + + true true false - $(P)$(R)TransmissionFactor - - - - - - + + + *10 + false + $(pv_name) +$(pv_value) + true Action Button - true - *2 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 44 + 50 + 22 + + $(P)$(R)TransmissionFactor 2 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:2d32 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionFactor + + true true false - $(P)$(R)TransmissionFactor - - - - - - + + + *2 + false + $(pv_name) +$(pv_value) + true Action Button - true - +10% - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 66 + 50 + 44 + + $(P)$(R)TransmissionFactor 1.1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionFactor + + + + true + true + false + + + + +10% + false $(pv_name) $(pv_value) + true + Action Button + 45 50 + 66 - - + + + + + + + + + 0 + 1 + true + + Default + + + + + + 100 + true 5 6 7 8 - true - 39872d87:13e14015f61:2d34 - false - - true - 100 Linking Container + filterbox_less.opi + 2 + true true false - filterbox_less.opi + + + true + Linking Container + 130 + 180 + 180 + + + + + + + 0 + 1 + true + + Default + - Linking Container - true - - Default - - 130 - 3 - - 1 - - - - - 180 - - 180 - - + 100 true 1 @@ -1137,2432 +1239,2318 @@ $(pv_value) 3 4 - true - 39872d87:13e14015f61:2d35 - false - - true - 100 Linking Container + filterbox_less.opi + 2 + true true false - filterbox_less.opi + + + true + Linking Container + 130 + 355 + 180 + + + - - - - - Linking Container - true - - Default - - 130 - 3 - - 1 - - 180 - - 355 - - + 0 + 1 + true + false + + Default + + + + + 88 + false true - true - 39872d87:13e14015f61:2d3f - - 88 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 62 - 0 - - false - 1 - - - - - 183 - 127 - + 183 + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 20 + false true - true - 39872d87:13e14015f61:2d40 - - 20 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 50 - 0 - - false - 1 - - - - - 0 - 12 - + 0 + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 20 + false true - true - 39872d87:13e14015f61:2d42 - - 20 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 34 - 0 - - false - 1 - - - - - 0 - 0 - + 0 + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 10 + false true - true - 39872d87:13e14015f61:2d44 - - 10 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 34 - 0 - - false - 1 - - - - - 0 - 0 - - true - 1 - 39872d87:13e14015f61:2d45 + 0 + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 0 Label + true true false - true + false + / + + true + 1 + true + Label + 10 + false + 24 + 0 + + + + false - - - - Label - true - / - - - - 10 - 0 - - 1 - 0 - - 0 - true - - 24 - - - true - 1 - 39872d87:13e14015f61:2d46 - false - + 0 + 1 + true + + + + + + 10 + 0 Label + true true false - true + false - - - - - - - Label - true lock - - - - 20 - 0 - - 1 - - - - 0 - - 0 - true + true + 1 + true + Label + 20 + false 0 + 0 - - true - 1 - 39872d87:13e14015f61:2d43 + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 0 Label + true true false - true + false - - - - - - - Label - true free - - - - 20 - 0 - - 1 - - - - 0 - - 10 - true + true + 1 + true + Label + 20 + false 0 + 10 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2d41 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 19 - 0 - 0 - - 1 - 1 - true - - - - - 10 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 19 31 + 10 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 20 + false true - true - 39872d87:13e14015f61:2d47 - - 20 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 60 - 0 - - false - 1 - - - - - 68 - 0 - + 68 + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 20 + false true - true - 39872d87:13e14015f61:2d49 - - 20 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 55 - 0 - - false - 1 - - - - - 0 - 0 - - true - 1 - 39872d87:13e14015f61:2d4a + 0 + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false + remove + + true + 1 + true + Label + 55 + false + 0 + 0 + + + + false - - - - Label - true - remove - - - - 55 - 0 - - 1 - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:2d4b - false - + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true insert - - - - 55 - 0 - - 1 - - - - 1 - - 10 - true + true + 1 + true + Label + 55 + false 0 + 10 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2d48 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 18 - 0 - 0 - - 1 - 1 - true - - - - - 9 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 18 42 + 9 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 15 + false true - true - 39872d87:13e14015f61:2d4c - - 26 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - - 358 - 0 - - false - 1 - - - - - 220 - - 148 - - false - true - 100.0 - - - - 39872d87:13e14015f61:2d55 - - - - - 26 - true - Rectangle - false + 16 + 310 + 226 + + + false 255 - - true - true - false - - false - + true + 20 + 0 + false - - - - Rectangle + false + + + + 0 + 1 true - - - - false + true + 100.0 - Default + Default - 15 + false + + + + 8 + true 0 - 0 - + 1 + Polyline + + + + + - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - - true - - true - 39872d87:13e14015f61:2d4e - - 15 - Grouping Container + 0.0 + true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Polyline + 17 + 1 + 1 + + + + false + 255 + true + 20 + 0 + false - + - - - - Grouping Container + false + + + + 0 + 1 true + true + 100.0 - Default + Default - 16 - 0 + false + + + + 8 + true + 0 + 1 + Polyline + + + + + + + 0.0 - false - 1 - - - - - 6 - - 162 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2d4f - 0.0 - - 0 - 8 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 17 - 0 - 0 - - - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 1 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2d50 - 0.0 - - 0 - 8 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 17 - 0 - 0 - - - 1 - 1 - true - - - - - 7 - $(pv_name) -$(pv_value) - 1 - - - - - true - - true - 39872d87:13e14015f61:2d51 - - 15 - Grouping Container true true - false + true - true - false - - - - - - - Grouping Container - true - - Default - - 16 - 0 - - false - 1 - - - - - 6 - - 338 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2d52 - 0.0 - - 0 - 8 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 17 - 0 - 0 - - - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 1 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2d53 - 0.0 - - 0 - 8 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 17 - 0 - 0 - - - 1 - 1 - true - - - - - 7 - $(pv_name) + + $(pv_name) $(pv_value) - 1 - - - - false + false true - 100.0 - - - - 39872d87:13e14015f61:2d4d - - - - - 22 - true - Ellipse - false + Polyline + 17 + 1 + 7 + + + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 15 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 16 + 486 + 226 + + + false 255 - - true - true - true - - false - + true + 20 + 0 + false - - - - Ellipse - true - - - - false - - Default - - 22 - 0 - 0 - - - 1 - 0 - true + false - - 2 - $(pv_name) -$(pv_value) - 180 - false - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2d54 - 0.0 - - 0 - 1 - true - Polyline + + Default + false - 255 + + + + 8 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 17 + 1 + 1 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 345 + false + + + + 8 + true 0 - 0 - - - 1 1 - true - - - - - 14 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 13 + false + true + Polyline + 17 + 1 + 7 - - false - true - 39872d87:13e14015f61:2d10 - - 37 - Choice Button - false - - true - true - false - - $(P)$(R)EnergySelect + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 65 - 0 - - - - - + false + + + + 37 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 40 + Choice Button + $(P)$(R)EnergySelect + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 65 10 + 40 - - true - true - 1 - false - 39872d87:13e14015f61:2d11 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 2 Text Update - false + 0 + true + $(P)$(R)EnergyBeamline + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)EnergyBeamline - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 85 - 0 - - - 1 - - - - 0 - - 40 false - $(pv_name) -$(pv_value) 95 + 40 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 85 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2d12 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(R)EnergyLocal + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(R)EnergyLocal - - - - false - 0 - - - false - - - - 0 - - 57 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 85 95 + 57 - - true - 1 - 39872d87:13e14015f61:2d13 + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true Message: - - - - 60 - 0 - - 1 - - - - 0 - - 153 - true + true + 1 + true + Label + 60 + false 11 + 153 - - true - true - 1 - false - 39872d87:13e14015f61:2d14 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 15 + 0 Text Update - false + 0 + true + $(P)$(R)Message + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)Message - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 415 - 0 - - - 1 - - - - 0 - - 153 false - $(pv_name) -$(pv_value) 85 + 153 - + + + + $(P)$(R)TransmissionSetpoint + 0 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:2d15 - + + + + 0 + 1 + true + + Default + + false + + + 28 + Action Button - false + 0 + $(P)$(R)TransmissionSetpoint + + true true false - $(P)$(R)TransmissionSetpoint - - - - - - - Action Button - true + + ALL IN - false - - Default - - 95 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 95 + 405 40 + + $(P)$(R)TransmissionSetpoint - 0 + 1 10 + - $(pv_name) -$(pv_value) - 405 - - - false - true - 39872d87:13e14015f61:2d16 - - 28 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionSetpoint + false + false - + - - - - Action Button + false + + + + 0 + 1 true - ALL OUT - false - Default + Default - 95 - 0 - 0 + false + + + + 28 - + Action Button + 0 + $(P)$(R)TransmissionSetpoint + + + true + true + false + + + + ALL OUT false - 1 - - - - 70 - - - $(P)$(R)TransmissionSetpoint - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 95 405 + 70 - - true - 1 - 39872d87:13e14015f61:2d17 + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true Setpoint: - - - - 86 - 0 - - 1 - - - - 0 - - 105 - true + true + 1 + true + Label + 86 + false 405 + 105 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 95 - 3 - - 1 + false + + + + 6 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2d18 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(R)TransmissionSetpoint + + false + 0.0 + true true false - 6 - false + 0 - $(P)$(R)TransmissionSetpoint - - - - false - 0 - - - false - - - - 0 - - 123 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 95 405 + 123 - - true - 1 - 39872d87:13e14015f61:2d19 + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false + Mask: + + true + 1 + true + Label + 60 + false + 10 + 133 + + + + false - - - - Label - true - Mask: - - - - 60 - 0 - - 1 - 0 - - 133 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:2d1a - false - + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true Transm: - - - - 60 - 0 - - 1 - - - - 0 - - 111 - true + true + 1 + true + Label + 60 + false 10 + 111 - - true - true - 1 - false - 39872d87:13e14015f61:2d1b + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 13 + 0 Text Update - false + 0 + true + $(P)$(R)FilterMask + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)FilterMask - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 0 - - 134 false - $(pv_name) -$(pv_value) 80 + 134 - - true - true - 1 - false - 39872d87:13e14015f61:2d1c + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 20 + 0 Text Update - false + 0 + true + $(P)$(R)Transmission + + 0.0 + true true false - 2 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)Transmission - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 140 - 0 - - - 1 - - - - 0 - - 108 false - $(pv_name) -$(pv_value) 80 + 108 - - true - 1 - 39872d87:13e14015f61:2d1d + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true Status: - - - - 60 - 0 - - 1 - - - - 0 - - 89 - true + true + 1 + true + Label + 60 + false 10 + 89 - - true - true - 1 - false - 39872d87:13e14015f61:2d1e + + + false false - 0.0 - + false + + + + false + + + + 0 + 1 + true + + + + true + + + + 4 20 + 0 Text Update - true + 0 + true + $(P)$(R)Status + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)Status - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 140 - 0 - - - 1 - - - - 0 - - 86 false - $(pv_name) -$(pv_value) 80 + 86 - - true - true - 1 - false - 39872d87:13e14015f61:2d1f + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 3 13 + 0 Text Update - false + 0 + true + $(P)$(R)FilterMask + + 0.0 + true true false - 3 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)FilterMask - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 0 - - 134 false - $(pv_name) -$(pv_value) 160 + 134 - - true - 1 - 39872d87:13e14015f61:2d20 + + false - + + + + + + + 0 + 1 + true + + + + + + 13 + 0 Label + true true false - true + false + = + + true + 1 + true + Label + 10 + false + 145 + 134 + + + + false - - - - Label - true - = - - - - 10 - 0 - - 1 - 0 - - 134 - true - - 145 - - - true - 1 - 39872d87:13e14015f61:2d21 - false - + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false + keV + + true + 1 + true + Label + 34 + false + 185 + 40 + + + + false - - - - Label - true - keV - - - - 34 - 0 - - 1 - 0 - - 40 - true - - 185 - - - true - 1 - 39872d87:13e14015f61:2d22 - false - + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true keV - - - - 34 - 0 - - 1 - - - - 0 - - 60 - true + true + 1 + true + Label + 34 + false 185 + 60 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2d33 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 515 - 0 - 0 - - 1 - 1 - true - - - - - 175 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 515 0 + 175 - - true - true - 1 - false - 39872d87:13e14015f61:2d36 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 25 + 1 Text Update - false + 0 + true + $(P)$(R)Description + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)Description - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 500 - 0 - - - 1 - - - - 1 - - 5 false - $(pv_name) -$(pv_value) 5 + 5 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2d37 - 0.0 - - 0 + + Default + + false + + + 111 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - 1 - 1 - true - - - - - 175 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 1 130 + 175 - - true - 1 - 39872d87:13e14015f61:2d39 + + false - - 13 - Label - - true - true - false - - true - false - - - - Label - true - $(R) - - - - 115 - 0 - - 1 + 0 + 1 + true + + + + + + + 13 1 - - 209 - true - - 10 - - - false - true - false - 39872d87:13e14015f61:2d3a - - 18 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 50 - 6 - - - - 1 - - - - 230 + + false + $(R) + + true + 1 + true + Label + 115 + false + 10 + 209 + + filter_4_4_more.opi true - 1 + 0 more - $(pv_name) -$(pv_value) - 10 - - + false + false + + + false - true - false - 39872d87:13e14015f61:2d3b - - 18 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 18 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 60 - 6 - - - - 1 - - - + + + more + false + $(pv_name) +$(pv_value) + true + Action Button + 50 + 10 230 + + filter_drive_config.opi true - 0 + 1 configure + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + + + + + true + true + false + + + + configure + false $(pv_name) $(pv_value) + true + Action Button + 60 65 + 230 - - true - 1 - 39872d87:13e14015f61:2d3c + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 0 Label + true true false - true + false + filter_4_4_less.adl + + true + 1 + true + Label + 118 + false + 10 + 252 + + + + false - - - - Label - true - filter_4_4_less.adl - - - - 118 - 0 - - 1 - 0 - - 252 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:2d3d - false - + 0 + 1 + true + + + + + + 10 + 0 Label + true true false - true + false + 2013-01-24 (CMS) + + true + 1 + true + Label + 118 + false + 10 + 267 + + + + false - - - - Label - true - 2013-01-24 (CMS) - - - - 118 - 0 - - 1 - 0 - - 267 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:2d3e - false - + 0 + 1 + true + + + + + + 13 + 1 Label + true true false - true + false + $(P) + + true + 1 + true + Label + 115 + false + 10 + 186 + + + + false + 255 + true + false - + - - - - Label + + + + false + + + + 0 + 1 true - $(P) + + + + 100.0 - + Default - 115 - 0 + false + + + + false + 22 + true + + + + 0 + 0 + Ellipse + + - 1 + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Ellipse + 22 + 328 + 222 + + + + false + 255 + true + 20 + 0 + false + + + + false - 1 - - 186 - true - - 10 + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 345 + 161 + 234 - \ No newline at end of file + diff --git a/opticsApp/op/opi/filter_8_0_more.opi b/opticsApp/op/opi/autoconvert/filter_4_4_more.opi similarity index 59% rename from opticsApp/op/opi/filter_8_0_more.opi rename to opticsApp/op/opi/autoconvert/filter_4_4_more.opi index 75b8751..3b7575f 100644 --- a/opticsApp/op/opi/filter_8_0_more.opi +++ b/opticsApp/op/opi/autoconvert/filter_4_4_more.opi @@ -1,94 +1,225 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 400 true - 39872d87:13e14015f61:2e8d - 3.1.2.20120830 + filter_4_4_more + + true + true + false true - 400 - filter_8_0_more false - false - - - - - - Display - true 510 - - true - 5 - - false - -1 - -1 - - - 300 300 - + 300 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 21 + true - 39872d87:13e14015f61:2e93 + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 115 + 10 + 250 + + + + false + 255 + true + false + + + - + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false 21 - true + true + + + + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 115 + 10 + 227 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 150 + false + + + + false + 26 + true + + + 0 - 0 - - - 1 0 - true - - - - - 227 + Rectangle + + + + + true + true + false + + $(pv_name) $(pv_value) - 10 - false + false + true + Rectangle + 15 + 148 + 312 - + + + + + + + + + 0 + 1 + true + + Default + + + + + + 170 true 5 @@ -96,44 +227,42 @@ $(pv_value) 7 8 - true - 39872d87:13e14015f61:2e90 - false - - true - 170 Linking Container + filterbox_more.opi + 2 + true true false - filterbox_more.opi + + + true + Linking Container + 130 + 180 + 225 + + + + + + + 0 + 1 + true + + Default + - Linking Container - true - - Default - - 130 - 3 - - 1 - - - - - 225 - - 215 - - + 170 true 1 @@ -141,1380 +270,1451 @@ $(pv_value) 3 4 - true - 39872d87:13e14015f61:2e91 - false - - true - 170 Linking Container + filterbox_more.opi + 2 + true true false - filterbox_more.opi + + + true + Linking Container + 130 + 355 + 225 + + + - - - - - Linking Container - true - - Default - - 130 - 3 - - 1 - - 225 - - 355 - - + 0 + 1 + true + false + + Default + + + + + 88 + false true - true - 39872d87:13e14015f61:2e99 - - 15 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 326 - 0 - - false - 1 - - - - - 318 - 185 - + true + true + Grouping Container + 62 + 127 + 275 + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 20 + false true - true - 39872d87:13e14015f61:2e9a - - 15 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - - 20 - 0 - - false - 1 - - - - + 50 + 12 0 - - 5 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2e9b - 0.0 - - 0 - 8 - true - Polyline - false - 255 - - true - true - true - - - - - - false - + + - + - - - - Polyline - true - false - - Default - - 20 - 0 - 0 - - - 1 - 1 - true - - 1 - $(pv_name) -$(pv_value) - 1 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2e9c - 0.0 - - 0 - 8 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline + 0 + 1 true - false + false - Default + Default - 20 - 0 - 0 + + + + 20 + false + + true + + Grouping Container - - 1 - 1 - true - - - - - 7 - $(pv_name) -$(pv_value) - 1 - - - - - true - - true - 39872d87:13e14015f61:2e9d - - 15 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 20 - 0 - - false - 1 - - - - - 0 - - 301 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2e9e - 0.0 - - 0 - 8 - true - Polyline - false - 255 true true - true + false - - - - - false - + + false + + true + true + Grouping Container + 34 + 0 + 0 + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 10 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 34 + 0 + 0 + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + / + + true + 1 + true + Label + 10 + false + 24 + 0 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + lock + + true + 1 + true + Label + 20 + false + 0 + 0 + + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + free + + true + 1 + true + Label + 20 + false + 0 + 10 + + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 20 - 0 - 0 - - - 1 - 1 - true + false - - 1 - $(pv_name) -$(pv_value) - 1 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2e9f - 0.0 - - 0 - 8 - true - Polyline + + Default + false - 255 - - true - true - true - - - - - - false - - - - - + - Polyline - true - false - - Default - - 20 + 1 + true 0 - 0 - - - 1 1 - true - - - - - 7 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 1 + false + true + Polyline + 19 + 31 + 10 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2ea0 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - + + - + - - - - Polyline - true - false - - Default - - 325 - 0 - 0 - - - 1 - 1 - true - - 8 - $(pv_name) -$(pv_value) - 1 - - - - - true - - true - 39872d87:13e14015f61:2ea1 - - 20 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 50 - 0 - - false - 1 - - - - - 275 - - 175 - + 0 + 1 + true + false + + Default + + + + + 20 + false true - true - 39872d87:13e14015f61:2ea3 - - 20 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 34 - 0 - - false - 1 - - - - - 0 + true + true + Grouping Container + 60 0 - + 68 + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 20 + false true - true - 39872d87:13e14015f61:2ea5 - - 10 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 34 - 0 - - false - 1 - - - - - 0 + true + true + Grouping Container + 55 0 - - true - 1 - 39872d87:13e14015f61:2ea6 + 0 + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false + remove + + true + 1 + true + Label + 55 + false + 0 + 0 + + + + false - - - - Label - true - / - - - - 10 - 0 - - 1 - 0 - - 0 - true - - 24 - - - true - 1 - 39872d87:13e14015f61:2ea7 - false - + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true - lock - - - - 20 - 0 - - 1 - - - - 0 - - 0 - true + insert + true + 1 + true + Label + 55 + false 0 + 10 - - true - 1 - 39872d87:13e14015f61:2ea4 - false - - 10 - Label - - true - true - false - - true - false + + + false + 255 + true + 20 + 0 + false - + - - - - Label + false + + + + 0 + 1 true - free + true + 100.0 - + Default - 20 - 0 + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 - 1 - - - - 0 - - 10 - true - - 0 + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 18 + 42 + 9 - + + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 15 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 16 + 310 + 318 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2ea2 - 0.0 - - 0 - 1 - true - Polyline + + Default + false - 255 + + + + 8 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 17 + 1 + 1 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 19 + false + + + + 8 + true 0 - 0 - - - 1 1 - true - - - - - 10 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 31 + false + true + Polyline + 17 + 1 + 7 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 15 + false true - true - 39872d87:13e14015f61:2ea8 - - 20 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 60 - 0 - - false - 1 - - - - - 343 - 163 - - - true - - true - 39872d87:13e14015f61:2eaa - - 20 - Grouping Container - - true - true - false - - true - false + true + true + Grouping Container + 16 + 486 + 318 + + + false + 255 + true + 20 + 0 + false - + - - - - Grouping Container - true - - Default - - 55 - 0 - - false - 1 + false - - 0 - - 0 - - true - 1 - 39872d87:13e14015f61:2eab - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - remove - - - - 55 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:2eac - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - insert - - - - 55 - 0 - - 1 - - - - 1 - - 10 - true - - 0 - - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2ea9 - 0.0 - - 0 - 1 - true - Polyline + + Default + false - 255 + + + + 8 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 17 + 1 + 1 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 18 + false + + + + 8 + true 0 - 0 - - - 1 1 - true - - - - - 9 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 42 + false + true + Polyline + 17 + 1 + 7 - + + + + + + + + + 0 + 1 + true + + Default + + + + + + 168 true - true - 39872d87:13e14015f61:2ead - false - - true - 168 Linking Container + filter_drive_more.opi + 2 + true true false - filter_drive_more.opi - - - - - - - + + + true Linking Container - true - - Default - 490 - 3 - - 1 - - - - - 40 - 10 + 40 - - false - true + + + false + 255 + true 20 - true - 100.0 - 39872d87:13e14015f61:2e8e - 0.0 - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 515 - 0 - 0 - - - 1 - 1 + false + + + + 1 true - - - - - 220 + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 515 0 + 220 - - true - true - 1 - false - 39872d87:13e14015f61:2e8f + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 25 + 1 Text Update - false + 0 + true + $(P)$(R)Description + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)Description - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 500 - 0 - - - 1 - - - - 1 - - 5 false - $(pv_name) -$(pv_value) 5 + 5 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2e92 - 0.0 - - 0 - 186 - true - Polyline + + Default + false - 255 + + + + 181 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 1 + 130 + 220 + + + + false - + - - - - Polyline + + + + 0 + 1 true - false - Default + - 1 - 0 - 0 + + + + 13 + 1 + Label - - 1 - 1 - true + + true + true + false + + + false + $(R) + + true + 1 + true + Label + 115 + false + 10 + 254 + + + + + filter_4_4_less.opi + + true + + 0 + less + + + false + false + + + + false - - 220 + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + + + + + true + true + false + + + + less + false $(pv_name) $(pv_value) - 165 - - true - 1 - 39872d87:13e14015f61:2e94 - false - - 13 - Label + Action Button + 50 + 10 + 276 + + + + + filter_drive_config.opi + + true + + 1 + configure + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + + + true true false - true - false + + + configure + false + $(pv_name) +$(pv_value) + true + Action Button + 60 + 65 + 275 + + + + false - - - - Label - true - $(P)$(R) - - - - 150 - 0 - - 1 - 1 - - 231 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:2e95 - false - + 0 + 1 + true + + + + + + 10 + 0 Label + true true false - true + false + filter_4_4_more.adl + + true + 1 + true + Label + 118 + false + 10 + 297 + + + + false - - - - Label - true - filter_8_0_more.adl - - - - 118 - 0 - - 1 - 0 - - 282 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:2e96 - false - + 0 + 1 + true + + + + + + 10 + 0 Label + true true false - true + false + 2013-01-24 (CMS) + + true + 1 + true + Label + 118 + false + 10 + 312 + + + + false - - - - Label + + + + 0 + 1 true - 2013-01-24 (CMS) - + - 118 - 0 + + + + 13 + 1 + Label - 1 - - - - 0 - - 297 - true - - 10 - - - false - true - false - 39872d87:13e14015f61:2e97 - - 18 - Menu Button - false true true false - false - + + false + $(P) + + true + 1 + true + Label + 115 + false + 10 + 231 + + + + false + 255 + true + false - + - - - - Menu Button - true - false - - Default - - 70 - 6 - - - - 1 + + + + false - 257 - - - filter_drive_config.opi - - true - - 0 - configure - - - $(pv_name) -$(pv_value) - 90 - - - false - true - false - 39872d87:13e14015f61:2e98 - - 18 - Menu Button + 0 + 1 + true + + + + 100.0 + + Default + false + + + + false + 22 + true + + + + 0 + 0 + Ellipse + + + true true - false + true + + $(pv_name) +$(pv_value) false - + true + Ellipse + 22 + 328 + 314 + + + + false + 255 + true + 20 + 0 + false - + - - - - Menu Button + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 70 - 6 - - + false + + + + 1 + true + 0 + 1 + Polyline + + + + + - 1 - - - - 257 - - - filter_8_0_less.opi - - true - - 1 - less - - + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 10 + false + true + Polyline + 345 + 161 + 326 - \ No newline at end of file + diff --git a/opticsApp/op/opi/filter_8_0_less.opi b/opticsApp/op/opi/autoconvert/filter_8_0_less.opi similarity index 72% rename from opticsApp/op/opi/filter_8_0_less.opi rename to opticsApp/op/opi/autoconvert/filter_8_0_less.opi index 5f0eb9a..779d881 100644 --- a/opticsApp/op/opi/filter_8_0_less.opi +++ b/opticsApp/op/opi/autoconvert/filter_8_0_less.opi @@ -1,78 +1,76 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 280 true - 39872d87:13e14015f61:2dfc - 3.1.2.20120830 + filter_8_0_less + + true + true + false true - 280 - filter_8_0_less false - false - - - - - - Display - true 510 - - true - 5 - - false - -1 - -1 - - - 300 300 - - false - true - 100.0 - - - - 39872d87:13e14015f61:2dfd - - - - - 15 - true - Rectangle - false + 300 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 15 + true + + + 0 - 0 + 0 + Rectangle + + @@ -84,62 +82,62 @@ $(P)$(R)EnergySelect - - 1 - 0 - true - - - - - 60 - $(pv_name) -$(pv_value) - 80 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:2dfe - - - - - 15 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 80 + 60 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 15 + true + + + 0 - 0 + 0 + Rectangle + + @@ -151,883 +149,932 @@ $(pv_value) $(P)$(R)EnergySelect - - 1 - 0 - true - - - - - 40 - $(pv_name) -$(pv_value) - 80 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:2e27 - - - - - 21 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 80 + 40 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 150 + false + + + + false + 21 + true + + + 0 - 0 - - - 1 0 - true - - - - - 182 - $(pv_name) -$(pv_value) - 10 - false - - - - true - - true - 39872d87:13e14015f61:2e12 - - 108 - Grouping Container + Rectangle + + + true true false - true - false + + $(pv_name) +$(pv_value) + false + true + Rectangle + 150 + 10 + 182 + + + - - - - Grouping Container + + + + 0 + 1 true + false - Default + Default - 155 - 0 - + + + + 108 false - 1 - - - - - 40 + + true + + Grouping Container + + + true + true + false + + + false + true + true + Grouping Container + 155 235 - - false - true - 39872d87:13e14015f61:2e13 - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionFactor - - - - - - - Action Button - true - /1000 - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 0 + 40 + $(P)$(R)TransmissionFactor 0.001 10 + - $(pv_name) -$(pv_value) - 0 - - + false + false + + + false - true - 39872d87:13e14015f61:2e14 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionFactor + + true true false - $(P)$(R)TransmissionSetpoint - - - - - - + + + /1000 + false + $(pv_name) +$(pv_value) + true Action Button - true - 1e-2 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - + 0 0 + + $(P)$(R)TransmissionSetpoint 1.0e-2 10 + - $(pv_name) -$(pv_value) - 110 - - + false + false + + + false - true - 39872d87:13e14015f61:2e15 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionSetpoint + + true true false - $(P)$(R)TransmissionSetpoint - - - - - - + + + 1e-2 + false + $(pv_name) +$(pv_value) + true Action Button - true - 1e-4 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 22 + 110 + 0 + + $(P)$(R)TransmissionSetpoint 1.0e-4 10 + - $(pv_name) -$(pv_value) - 110 - - + false + false + + + false - true - 39872d87:13e14015f61:2e16 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionSetpoint + + true true false - $(P)$(R)TransmissionSetpoint - - - - - - + + + 1e-4 + false + $(pv_name) +$(pv_value) + true Action Button - true - 1e-6 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 44 + 110 + 22 + + $(P)$(R)TransmissionSetpoint 1.0e-6 10 + - $(pv_name) -$(pv_value) - 110 - - + false + false + + + false - true - 39872d87:13e14015f61:2e17 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionSetpoint + + true true false - $(P)$(R)TransmissionSetpoint - - - - - - + + + 1e-6 + false + $(pv_name) +$(pv_value) + true Action Button - true - 1e-8 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 66 + 110 + 44 + + $(P)$(R)TransmissionSetpoint 1.0e-8 10 + - $(pv_name) -$(pv_value) - 110 - - + false + false + + + false - true - 39872d87:13e14015f61:2e18 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionSetpoint + + true true false - $(P)$(R)TransmissionSetpoint - - - - - - + + + 1e-8 + false + $(pv_name) +$(pv_value) + true Action Button - true - 1e-10 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 88 + 110 + 66 + + $(P)$(R)TransmissionSetpoint 1.0e-10 10 + - $(pv_name) -$(pv_value) - 110 - - + false + false + + + false - true - 39872d87:13e14015f61:2e19 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionSetpoint + + true true false - $(P)$(R)TransmissionFactor - - - - - - + + + 1e-10 + false + $(pv_name) +$(pv_value) + true Action Button - true - /10 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 22 + 110 + 88 + + $(P)$(R)TransmissionFactor 0.1 10 + - $(pv_name) -$(pv_value) - 0 - - + false + false + + + false - true - 39872d87:13e14015f61:2e1a - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionFactor + + true true false - $(P)$(R)TransmissionFactor - - - - - - + + + /10 + false + $(pv_name) +$(pv_value) + true Action Button - true - /2 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 44 + 0 + 22 + + $(P)$(R)TransmissionFactor .5 10 + - $(pv_name) -$(pv_value) - 0 - - + false + false + + + false - true - 39872d87:13e14015f61:2e1b - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionFactor + + true true false - $(P)$(R)TransmissionFactor - - - - - - + + + /2 + false + $(pv_name) +$(pv_value) + true Action Button - true - -10% - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 66 + 0 + 44 + + $(P)$(R)TransmissionFactor 0.9 10 + - $(pv_name) -$(pv_value) - 0 - - + false + false + + + false - true - 39872d87:13e14015f61:2e1c - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionFactor + + true true false - $(P)$(R)TransmissionStepDown - - - - - - + + + -10% + false + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 88 + 0 + 66 + + $(P)$(R)TransmissionStepDown 1 10 + - $(pv_name) -$(pv_value) - 0 - - + false + false + + + false - true - 39872d87:13e14015f61:2e1d - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionStepDown + + true true false - $(P)$(R)TransmissionStepUp - - - - - - + + + - + false + $(pv_name) +$(pv_value) + true Action Button - true - + - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - + 0 88 + + $(P)$(R)TransmissionStepUp 1 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:2e1e - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionStepUp + + true true false - $(P)$(R)TransmissionFactor - - - - - - + + + + + false + $(pv_name) +$(pv_value) + true Action Button - true - *1000 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 0 + 50 + 88 + + $(P)$(R)TransmissionFactor 1000 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:2e1f - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionFactor + + true true false - $(P)$(R)TransmissionFactor - - - - - - + + + *1000 + false + $(pv_name) +$(pv_value) + true Action Button - true - *10 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 22 + 50 + 0 + + $(P)$(R)TransmissionFactor 10 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:2e20 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionFactor + + true true false - $(P)$(R)TransmissionFactor - - - - - - + + + *10 + false + $(pv_name) +$(pv_value) + true Action Button - true - *2 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 44 + 50 + 22 + + $(P)$(R)TransmissionFactor 2 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:2e21 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionFactor + + true true false - $(P)$(R)TransmissionFactor - - - - - - + + + *2 + false + $(pv_name) +$(pv_value) + true Action Button - true - +10% - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 66 + 50 + 44 + + $(P)$(R)TransmissionFactor 1.1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionFactor + + + + true + true + false + + + + +10% + false $(pv_name) $(pv_value) + true + Action Button + 45 50 + 66 - + + + + + + + + + 0 + 1 + true + + Default + + + + + + 100 true 5 @@ -1035,44 +1082,42 @@ $(pv_value) 7 8 - true - 39872d87:13e14015f61:2e23 - false - - true - 100 Linking Container + filterbox_less.opi + 2 + true true false - filterbox_less.opi + + + true + Linking Container + 130 + 215 + 180 + + + + + + + 0 + 1 + true + + Default + - Linking Container - true - - Default - - 130 - 3 - - 1 - - - - - 180 - - 215 - - + 100 true 1 @@ -1080,2277 +1125,2221 @@ $(pv_value) 3 4 - true - 39872d87:13e14015f61:2e24 - false - - true - 100 Linking Container + filterbox_less.opi + 2 + true true false - filterbox_less.opi + + + true + Linking Container + 130 + 355 + 180 + + + - - - - - Linking Container - true - - Default - - 130 - 3 - - 1 - - 180 - - 355 - - + 0 + 1 + true + false + + Default + + + + + 20 + false true - true - 39872d87:13e14015f61:2e2d - - 88 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - - 348 - 0 - - false - 1 - - - - + 50 + 175 183 - - 163 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 20 + false true - true - 39872d87:13e14015f61:2e2e - - 20 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - - 50 - 0 - - false - 1 - - - - + 34 + 0 0 - - 12 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 10 + false true - true - 39872d87:13e14015f61:2e30 - - 20 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 34 - 0 - - false - 1 - - - - - 0 - 0 - - - true - - true - 39872d87:13e14015f61:2e32 - + 0 + + + false + + + + + + + 0 + 1 + true + + + + + + 10 - Grouping Container + 0 + Label + true true false - true + false + / + + true + 1 + true + Label + 10 + false + 24 + 0 + + + + false - + - - - - Grouping Container - true - - Default - - 34 - 0 - - false - 1 - - 0 - - 0 - - true - 1 - 39872d87:13e14015f61:2e33 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - / - - - - 10 - 0 - - 1 - - - - 0 - - 0 - true - - 24 - - - true - 1 - 39872d87:13e14015f61:2e34 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - lock - - - - 20 - 0 - - 1 - - - - 0 - - 0 - true - - 0 - - - - true - 1 - 39872d87:13e14015f61:2e31 - false - + 0 + 1 + true + + + + + + 10 + 0 Label + true true false - true + false - - - - - - + lock + + true + 1 + true Label - true - free - - - 20 - 0 - - 1 - - - - 0 - - 10 - true - + false 0 + 0 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2e2f - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - + + + false - + - - - - Polyline + + + + 0 + 1 true - false - Default + - 19 - 0 - 0 + + + + 10 + 0 + Label - - 1 - 1 - true - - - - + + true + true + false + + + false + free + + true + 1 + true + Label + 20 + false + 0 10 - $(pv_name) -$(pv_value) - 31 - - - true - - true - 39872d87:13e14015f61:2e35 - - 15 - Grouping Container - + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Polyline + 19 + 31 + 10 + + + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 15 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 326 + 185 + 226 + + - - - - Grouping Container + + + + 0 + 1 true + false - Default + Default - 326 - 0 - + + + + 15 false - 1 - - - - - 43 + + true + + Grouping Container + + + true + true + false + + + false - 22 - - - true - - true - 39872d87:13e14015f61:2e36 - - 15 - Grouping Container - - true - true - false - - true - false + true + true + Grouping Container + 20 + 5 + 0 + + + false + 255 + true + 20 + 0 + false - + - - - - Grouping Container - true - - Default - - 20 - 0 - - false - 1 + false - - 0 - - 5 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2e37 - 0.0 - - 0 - 8 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 20 - 0 - 0 - - - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 1 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2e38 - 0.0 - - 0 - 8 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 20 - 0 - 0 - - - 1 - 1 - true - - - - - 7 - $(pv_name) -$(pv_value) - 1 - - - - - true - - true - 39872d87:13e14015f61:2e39 - - 15 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container + 0 + 1 true + true + 100.0 - Default + Default - 20 - 0 + false + + + + 8 + true + 0 + 1 + Polyline + + + + + + + 0.0 - false - 1 - - - - - 0 - - 301 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2e3a - 0.0 - - 0 - 8 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 20 - 0 - 0 - - - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 1 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2e3b - 0.0 - - 0 - 8 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 20 - 0 - 0 - - - 1 - 1 - true - - - - - 7 - $(pv_name) + + true + true + true + + + $(pv_name) $(pv_value) - 1 - + false + true + Polyline + 20 + 1 + 1 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2e3c - 0.0 - - 0 - 1 - true - Polyline + + Default + false - 255 + + + + 8 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 20 + 1 + 7 + + + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 15 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 20 + 301 + 0 + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 325 + false + + + + 8 + true 0 - 0 - - - 1 1 - true + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 20 + 1 + 1 + + + + false + 255 + true + 20 + 0 + false + + + + false - - 8 + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 8 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 20 1 + 7 - + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 325 + 1 + 8 + + + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 20 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 60 + 163 + 251 + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 20 + false true - true - 39872d87:13e14015f61:2e3d - - 20 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 60 - 0 - - false - 1 - - - - - 68 + true + true + Grouping Container + 55 0 - - - true - - true - 39872d87:13e14015f61:2e3f - - 20 - Grouping Container - - true - true - false - - true - false + 0 + + + false - + - - - - Grouping Container + + + + 0 + 1 true - Default + - 55 - 0 + + + + 10 + 1 + Label - false - 1 - - - - - 0 - - 0 - - true - 1 - 39872d87:13e14015f61:2e40 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - remove - - - - 55 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:2e41 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - insert - - - - 55 - 0 - - 1 - - - - 1 - - 10 - true - - 0 - - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2e3e - 0.0 - - 0 - 1 - true - Polyline - false - 255 true true - true + false - - - - - false - + + false + remove + + true + 1 + true + Label + 55 + false + 0 + 0 + + + + false - + - - - - Polyline + + + + 0 + 1 true - false - Default + - 18 - 0 - 0 + + + + 10 + 1 + Label - - 1 - 1 - true - - - - - 9 - $(pv_name) -$(pv_value) - 42 + + true + true + false + + + false + insert + + true + 1 + true + Label + 55 + false + 0 + 10 + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 18 + 42 + 9 + - - false - true - 39872d87:13e14015f61:2dff - - 37 - Choice Button - false - - true - true - false - - $(P)$(R)EnergySelect + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 65 - 0 - - - - - + false + + + + 37 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 40 + Choice Button + $(P)$(R)EnergySelect + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 65 10 + 40 - - true - true - 1 - false - 39872d87:13e14015f61:2e00 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 2 Text Update - false + 0 + true + $(P)$(R)EnergyBeamline + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)EnergyBeamline - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 85 - 0 - - - 1 - - - - 0 - - 40 false - $(pv_name) -$(pv_value) 95 + 40 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 85 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2e01 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(R)EnergyLocal + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(R)EnergyLocal - - - - false - 0 - - - false - - - - 0 - - 57 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 85 95 + 57 - - true - 1 - 39872d87:13e14015f61:2e02 + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true Message: - - - - 60 - 0 - - 1 - - - - 0 - - 153 - true + true + 1 + true + Label + 60 + false 11 + 153 - - true - true - 1 - false - 39872d87:13e14015f61:2e03 + + + false false - 0.0 - - 15 - Text Update - false - - true - true - false - - 4 - true - false - $(P)$(R)Message + false - + + true + + + + 0 + 1 + true + + + + false - + - Text Update - true - ###### - false + 4 + 15 + 0 + Text Update 0 - - - - 415 - 0 - + true + $(P)$(R)Message - 1 - - - - 0 - - 153 - false + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 415 + false 85 + 153 - + + + + $(P)$(R)TransmissionSetpoint + 0 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:2e04 - + + + + 0 + 1 + true + + Default + + false + + + 28 + Action Button - false + 0 + $(P)$(R)TransmissionSetpoint + + true true false - $(P)$(R)TransmissionSetpoint - - - - - - - Action Button - true + + ALL IN - false - - Default - - 95 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 95 + 405 40 + + $(P)$(R)TransmissionSetpoint - 0 + 1 10 + - $(pv_name) -$(pv_value) - 405 - - + false + false + + + false - true - 39872d87:13e14015f61:2e05 - + + + + 0 + 1 + true + + Default + + false + + + 28 + Action Button - false + 0 + $(P)$(R)TransmissionSetpoint + + true true false - $(P)$(R)TransmissionSetpoint - - - - - - - Action Button - true + + ALL OUT - false - - Default - - 95 - 0 - 0 - - - false - 1 - - - - 70 - - - $(P)$(R)TransmissionSetpoint - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 95 405 + 70 - - true - 1 - 39872d87:13e14015f61:2e06 + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true Setpoint: - - - - 86 - 0 - - 1 - - - - 0 - - 105 - true + true + 1 + true + Label + 86 + false 405 + 105 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 95 - 3 - - 1 + false + + + + 6 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2e07 - 0.0 + false Text Input - - true - true - false - - 6 - false - 0 - $(P)$(R)TransmissionSetpoint - - - - false + 0 + false 0 - - - false - - - - 0 - - 123 + true + $(P)$(R)TransmissionSetpoint + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 95 405 + 123 - - true - 1 - 39872d87:13e14015f61:2e08 + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false + Mask: + + true + 1 + true + Label + 60 + false + 10 + 133 + + + + false - - - - Label - true - Mask: - - - - 60 - 0 - - 1 - 0 - - 133 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:2e09 - false - + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true Transm: - - - - 60 - 0 - - 1 - - - - 0 - - 111 - true + true + 1 + true + Label + 60 + false 10 + 111 - - true - true - 1 - false - 39872d87:13e14015f61:2e0a + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 13 + 0 Text Update - false + 0 + true + $(P)$(R)FilterMask + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)FilterMask - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 0 - - 134 false - $(pv_name) -$(pv_value) 80 + 134 - - true - true - 1 - false - 39872d87:13e14015f61:2e0b + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 20 + 0 Text Update - false + 0 + true + $(P)$(R)Transmission + + 0.0 + true true false - 2 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)Transmission - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 140 - 0 - - - 1 - - - - 0 - - 108 false - $(pv_name) -$(pv_value) 80 + 108 - - true - 1 - 39872d87:13e14015f61:2e0c + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true Status: - - - - 60 - 0 - - 1 - - - - 0 - - 89 - true + true + 1 + true + Label + 60 + false 10 + 89 - - true - true - 1 - false - 39872d87:13e14015f61:2e0d + + + false false - 0.0 - + false + + + + false + + + + 0 + 1 + true + + + + true + + + + 4 20 + 0 Text Update - true + 0 + true + $(P)$(R)Status + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)Status - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 140 - 0 - - - 1 - - - - 0 - - 86 false - $(pv_name) -$(pv_value) 80 + 86 - - true - true - 1 - false - 39872d87:13e14015f61:2e0e + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 3 13 + 0 Text Update - false + 0 + true + $(P)$(R)FilterMask + + 0.0 + true true false - 3 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)FilterMask - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 0 - - 134 false - $(pv_name) -$(pv_value) 160 + 134 - - true - 1 - 39872d87:13e14015f61:2e0f + + false - + + + + + + + 0 + 1 + true + + + + + + 13 + 0 Label + true true false - true + false + = + + true + 1 + true + Label + 10 + false + 145 + 134 + + + + false - - - - Label - true - = - - - - 10 - 0 - - 1 - 0 - - 134 - true - - 145 - - - true - 1 - 39872d87:13e14015f61:2e10 - false - + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true keV - - - - 34 - 0 - - 1 - - - - 0 - - 40 - true + true + 1 + true + Label + 34 + false 185 + 40 - - true - 1 - 39872d87:13e14015f61:2e11 + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true keV - - - - 34 - 0 - - 1 - - - - 0 - - 60 - true + true + 1 + true + Label + 34 + false 185 + 60 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2e22 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 515 - 0 - 0 - - 1 - 1 - true - - - - - 175 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 515 0 + 175 - - true - true - 1 - false - 39872d87:13e14015f61:2e25 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 25 + 1 Text Update - false + 0 + true + $(P)$(R)Description + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)Description - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 500 - 0 - - - 1 - - - - 1 - - 5 false - $(pv_name) -$(pv_value) 5 + 5 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2e26 - 0.0 - - 0 + + Default + + false + + + 111 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - 1 - 1 - true - - - - - 175 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 1 165 + 175 - - true - 1 - 39872d87:13e14015f61:2e28 + + false - - 13 - Label - - true - true - false - - true - false - - - - Label - true - $(P)$(R) - - - - 150 - 0 - - 1 + 0 + 1 + true + + + + + + + 13 1 - - 186 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:2e29 - false - - 10 Label + true true false - true + false + $(P)$(R) + + true + 1 + true + Label + 150 + false + 10 + 186 + + + + false - - - - Label - true - filter_8_0_less.adl - - - - 118 - 0 - - 1 - 0 - - 237 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:2e2a - false - + 0 + 1 + true + + + + + + 10 + 0 Label + true true false - true + false + filter_8_0_less.adl + + true + 1 + true + Label + 118 + false + 10 + 237 + + + + false - - - - Label - true - 2013-01-24 (CMS) - - - - 118 - 0 - - 1 + 0 + 1 + true + + + + + + + 10 0 - - 252 - true - - 10 - - - false - true - false - 39872d87:13e14015f61:2e2b - - 18 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 70 - 6 - - - - 1 - - - - 212 + + false + 2013-01-24 (CMS) + + true + 1 + true + Label + 118 + false + 10 + 252 + + filter_drive_config.opi true - 0 + 1 configure - $(pv_name) -$(pv_value) - 90 - - + false + false + + + false - true - false - 39872d87:13e14015f61:2e2c - - 18 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 18 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + configure + false + $(pv_name) +$(pv_value) + true + Action Button 70 - 6 - - - - 1 - - - + 90 212 + + filter_8_0_more.opi true - 1 + 0 more + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + + + + + true + true + false + + + + more + false $(pv_name) $(pv_value) + true + Action Button + 70 10 + 212 - \ No newline at end of file + diff --git a/opticsApp/op/opi/autoconvert/filter_8_0_more.opi b/opticsApp/op/opi/autoconvert/filter_8_0_more.opi new file mode 100644 index 0000000..faf278c --- /dev/null +++ b/opticsApp/op/opi/autoconvert/filter_8_0_more.opi @@ -0,0 +1,1189 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 400 + + true + + filter_8_0_more + + + true + true + false + true + false + Display + 510 + 300 + 300 + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 21 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 150 + 10 + 227 + + + + + + + + + + 0 + 1 + true + + Default + + + + + + 170 + + true + 5 + 6 + 7 + 8 + + Linking Container + filterbox_more.opi + 2 + + + true + true + false + + + + true + Linking Container + 130 + 215 + 225 + + + + + + + + + + 0 + 1 + true + + Default + + + + + + 170 + + true + 1 + 2 + 3 + 4 + + Linking Container + filterbox_more.opi + 2 + + + true + true + false + + + + true + Linking Container + 130 + 355 + 225 + + + + + + + + + + 0 + 1 + true + + Default + + + + + + 168 + + true + + Linking Container + filter_drive_more.opi + 2 + + + true + true + false + + + + true + Linking Container + 490 + 10 + 40 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 515 + 0 + 220 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 25 + 1 + Text Update + 0 + true + $(P)$(R)Description + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 500 + false + 5 + 5 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 186 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 1 + 165 + 220 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 13 + 1 + Label + + + true + true + false + + + false + $(P)$(R) + + true + 1 + true + Label + 150 + false + 10 + 231 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + filter_8_0_more.adl + + true + 1 + true + Label + 118 + false + 10 + 282 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + 2013-01-24 (CMS) + + true + 1 + true + Label + 118 + false + 10 + 297 + + + + + filter_drive_config.opi + + true + + 1 + configure + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + + + + + true + true + false + + + + configure + false + $(pv_name) +$(pv_value) + true + Action Button + 70 + 90 + 257 + + + + + filter_8_0_less.opi + + true + + 0 + less + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + + + + + true + true + false + + + + less + false + $(pv_name) +$(pv_value) + true + Action Button + 70 + 10 + 257 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 8 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 20 + 191 + 319 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 8 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 20 + 191 + 325 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 8 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 20 + 487 + 319 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 8 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 20 + 487 + 325 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 325 + 186 + 326 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 19 + 206 + 285 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + free + + true + 1 + true + Label + 20 + false + 175 + 285 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + / + + true + 1 + true + Label + 10 + false + 199 + 275 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + lock + + true + 1 + true + Label + 20 + false + 175 + 275 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 18 + 205 + 352 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + true + true + false + + + false + remove + + true + 1 + true + Label + 55 + false + 163 + 343 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + true + true + false + + + false + insert + + true + 1 + true + Label + 55 + false + 163 + 353 + + diff --git a/opticsApp/op/opi/filter_16_0_less.opi b/opticsApp/op/opi/autoconvert/filter_8_8_less.opi similarity index 60% rename from opticsApp/op/opi/filter_16_0_less.opi rename to opticsApp/op/opi/autoconvert/filter_8_8_less.opi index a05118d..a0e5b0b 100644 --- a/opticsApp/op/opi/filter_16_0_less.opi +++ b/opticsApp/op/opi/autoconvert/filter_8_8_less.opi @@ -1,135 +1,133 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 285 true - 39872d87:13e14015f61:2c0a - 3.1.2.20120830 + filter_8_8_less + + true + true + false true - 285 - filter_16_0_less false - false - - - - - - Display - true 680 - - true - 5 - - false - -1 - -1 - - - 300 300 - - false - true - 100.0 - - - - 39872d87:13e14015f61:2c0b - - - - - 21 - true - Rectangle - false + 300 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 150 - 0 - 0 - - - 1 - 0 - true - - - - - 40 - $(pv_name) -$(pv_value) - 5 + false + + + false - - - false - true - 100.0 + 21 + true - 39872d87:13e14015f61:2c0c - - - - - 15 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 150 + 5 + 40 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 15 + true + + + 0 - 0 + 0 + Rectangle + + @@ -141,62 +139,62 @@ $(pv_value) $(P)$(R)EnergySelect - - 1 - 0 - true - - - - - 60 - $(pv_name) -$(pv_value) - 245 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:2c0d - - - - - 15 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 245 + 60 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 15 + true + + + 0 - 0 + 0 + Rectangle + + @@ -208,826 +206,932 @@ $(pv_value) $(P)$(R)EnergySelect - - 1 - 0 - true - - - - - 40 - $(pv_name) -$(pv_value) - 245 - false - - - - true - - true - 39872d87:13e14015f61:2c21 - - 108 - Grouping Container true true false - true - false - - - - - - - Grouping Container - true + + $(pv_name) +$(pv_value) + false + true + Rectangle + 10 + 245 + 40 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 - Default + Default - 155 - 0 + false + + + + false + 25 + true + + + + 0 + 0 + Rectangle + + - false - 1 + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 20 + 5 + 219 + + + + + + - - 40 + 0 + 1 + true + false + + Default + + + + + 108 + false + + true + + Grouping Container + + + true + true + false + + + false + true + true + Grouping Container + 155 400 - - false - true - 39872d87:13e14015f61:2c22 - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionFactor - - - - - - - Action Button - true - /1000 - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 0 + 40 + $(P)$(R)TransmissionFactor 0.001 10 + - $(pv_name) -$(pv_value) - 0 - - + false + false + + + false - true - 39872d87:13e14015f61:2c23 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionFactor + + true true false - $(P)$(R)TransmissionSetpoint - - - - - - + + + /1000 + false + $(pv_name) +$(pv_value) + true Action Button - true - 1e-2 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - + 0 0 + + $(P)$(R)TransmissionSetpoint 1.0e-2 10 + - $(pv_name) -$(pv_value) - 110 - - + false + false + + + false - true - 39872d87:13e14015f61:2c24 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionSetpoint + + true true false - $(P)$(R)TransmissionSetpoint - - - - - - + + + 1e-2 + false + $(pv_name) +$(pv_value) + true Action Button - true - 1e-4 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 22 + 110 + 0 + + $(P)$(R)TransmissionSetpoint 1.0e-4 10 + - $(pv_name) -$(pv_value) - 110 - - + false + false + + + false - true - 39872d87:13e14015f61:2c25 - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionSetpoint - - - - - - - Action Button + + + + 0 + 1 true - 1e-6 - false - Default + Default - 45 - 0 - 0 + false + + + + 20 - + Action Button + 0 + $(P)$(R)TransmissionSetpoint + + + true + true + false + + + + 1e-4 false - 1 - - - - 44 + $(pv_name) +$(pv_value) + true + Action Button + 45 + 110 + 22 + + $(P)$(R)TransmissionSetpoint 1.0e-6 10 + - $(pv_name) -$(pv_value) - 110 - - + false + false + + + false - true - 39872d87:13e14015f61:2c26 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionSetpoint + + true true false - $(P)$(R)TransmissionSetpoint - - - - - - + + + 1e-6 + false + $(pv_name) +$(pv_value) + true Action Button - true - 1e-8 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 66 + 110 + 44 + + $(P)$(R)TransmissionSetpoint 1.0e-8 10 + - $(pv_name) -$(pv_value) - 110 - - + false + false + + + false - true - 39872d87:13e14015f61:2c27 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionSetpoint + + true true false - $(P)$(R)TransmissionSetpoint - - - - - - + + + 1e-8 + false + $(pv_name) +$(pv_value) + true Action Button - true - 1e-10 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 88 + 110 + 66 + + $(P)$(R)TransmissionSetpoint 1.0e-10 10 + - $(pv_name) -$(pv_value) - 110 - - + false + false + + + false - true - 39872d87:13e14015f61:2c28 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionSetpoint + + true true false - $(P)$(R)TransmissionFactor - - - - - - + + + 1e-10 + false + $(pv_name) +$(pv_value) + true Action Button - true - /10 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 22 + 110 + 88 + + $(P)$(R)TransmissionFactor 0.1 10 + - $(pv_name) -$(pv_value) - 0 - - + false + false + + + false - true - 39872d87:13e14015f61:2c29 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionFactor + + true true false - $(P)$(R)TransmissionFactor - - - - - - - Action Button - true - /2 - false - - Default - - 45 - 0 - 0 - - - + + + /10 false - 1 - - - - 44 + $(pv_name) +$(pv_value) + true + Action Button + 45 + 0 + 22 + + $(P)$(R)TransmissionFactor .5 10 + - $(pv_name) -$(pv_value) - 0 - - + false + false + + + false - true - 39872d87:13e14015f61:2c2a - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionFactor + + true true false - $(P)$(R)TransmissionFactor - - - - - - + + + /2 + false + $(pv_name) +$(pv_value) + true Action Button - true - -10% - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 66 + 0 + 44 + + $(P)$(R)TransmissionFactor 0.9 10 + - $(pv_name) -$(pv_value) - 0 - - + false + false + + + false - true - 39872d87:13e14015f61:2c2b - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionFactor + + true true false - $(P)$(R)TransmissionStepDown - - - - - - + + + -10% + false + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 88 + 0 + 66 + + $(P)$(R)TransmissionStepDown 1 10 + - $(pv_name) -$(pv_value) - 0 - - + false + false + + + false - true - 39872d87:13e14015f61:2c2c - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionStepDown + + true true false - $(P)$(R)TransmissionStepUp - - - - - - + + + - + false + $(pv_name) +$(pv_value) + true Action Button - true - + - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - + 0 88 + + $(P)$(R)TransmissionStepUp 1 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:2c2d - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionStepUp + + true true false - $(P)$(R)TransmissionFactor - - - - - - + + + + + false + $(pv_name) +$(pv_value) + true Action Button - true - *1000 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 0 + 50 + 88 + + $(P)$(R)TransmissionFactor 1000 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:2c2e - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionFactor + + true true false - $(P)$(R)TransmissionFactor - - - - - - + + + *1000 + false + $(pv_name) +$(pv_value) + true Action Button - true - *10 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 22 + 50 + 0 + + $(P)$(R)TransmissionFactor 10 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:2c2f - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionFactor + + true true false - $(P)$(R)TransmissionFactor - - - - - - + + + *10 + false + $(pv_name) +$(pv_value) + true Action Button - true - *2 - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 44 + 50 + 22 + + $(P)$(R)TransmissionFactor 2 10 + - $(pv_name) -$(pv_value) - 50 - - + false + false + + + false - true - 39872d87:13e14015f61:2c30 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(R)TransmissionFactor + + true true false - $(P)$(R)TransmissionFactor - - - - - - + + + *2 + false + $(pv_name) +$(pv_value) + true Action Button - true - +10% - false - - Default - 45 - 0 - 0 - - - - false - 1 - - - - 66 + 50 + 44 + + $(P)$(R)TransmissionFactor 1.1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionFactor + + + + true + true + false + + + + +10% + false $(pv_name) $(pv_value) + true + Action Button + 45 50 + 66 - + + + + + + + + + 0 + 1 + true + + Default + + + + + + 100 true 13 @@ -1035,44 +1139,42 @@ $(pv_value) 15 16 - true - 39872d87:13e14015f61:2c32 - false - - true - 100 Linking Container + filterbox_less.opi + 2 + true true false - filterbox_less.opi + + + true + Linking Container + 130 + 30 + 180 + + + + + + + 0 + 1 + true + + Default + - Linking Container - true - - Default - - 130 - 3 - - 1 - - - - - 180 - - 40 - - + 100 true 9 @@ -1080,44 +1182,42 @@ $(pv_value) 11 12 - true - 39872d87:13e14015f61:2c33 - false - - true - 100 Linking Container + filterbox_less.opi + 2 + true true false - filterbox_less.opi + + + true + Linking Container + 130 + 170 + 180 + + + + + + + 0 + 1 + true + + Default + - Linking Container - true - - Default - - 130 - 3 - - 1 - - - - - 180 - - 180 - - + 100 true 5 @@ -1125,44 +1225,42 @@ $(pv_value) 7 8 - true - 39872d87:13e14015f61:2c34 - false - - true - 100 Linking Container + filterbox_less.opi + 2 + true true false - filterbox_less.opi + + + true + Linking Container + 130 + 375 + 180 + + + + + + + 0 + 1 + true + + Default + - Linking Container - true - - Default - - 130 - 3 - - 1 - - - - - 180 - - 375 - - + 100 true 1 @@ -1170,2537 +1268,2268 @@ $(pv_value) 3 4 - true - 39872d87:13e14015f61:2c35 - false - - true - 100 Linking Container + filterbox_less.opi + 2 + true true false - filterbox_less.opi + + + true + Linking Container + 130 + 515 + 180 + + + - - - - - Linking Container - true - - Default - - 130 - 3 - - 1 - - 180 - - 515 - - + 0 + 1 + true + false + + Default + + + + + 15 + false true - true - 39872d87:13e14015f61:2c3d - - 85 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 671 - 0 - - false - 1 - - - - - 188 - 5 - - - true - - true - 39872d87:13e14015f61:2c3e - - 19 - Grouping Container + true + true + Grouping Container + 20 + 651 + 224 + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 8 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Polyline + 20 + 1 + 1 + + + + false + 255 + true + 20 + 0 + false - + - - - - Grouping Container + false + + + + 0 + 1 true + true + 100.0 - Default + Default - 79 - 0 + false + + + + 8 + true + 0 + 1 + Polyline + + + + + + + 0.0 - false - 1 + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 20 + 1 + 7 + + + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 15 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 20 + 305 + 224 + + + false + 255 + true + 20 + 0 + false + + + + false - - 0 - - 298 - - - true - - true - 39872d87:13e14015f61:2c3f - - 19 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 35 - 0 - - false - 1 - - - - - 0 - - 22 - - - true - - true - 39872d87:13e14015f61:2c41 - - 10 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 35 - 0 - - false - 1 - - - - - 0 - - 0 - - true - 1 - 39872d87:13e14015f61:2c42 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - lock - - - - 21 - 0 - - 1 - - - - 0 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:2c43 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - / - - - - 10 - 0 - - 1 - - - - 0 - - 0 - true - - 25 - - - - true - 1 - 39872d87:13e14015f61:2c40 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - free - - - - 21 - 0 - - 1 - - - - 0 - - 9 - true - - 1 - - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2c44 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 19 - 0 - 0 - - - 1 - 1 - true - - - - - 5 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2c45 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 19 - 0 - 0 - - - 1 - 1 - true - - - - - 5 - $(pv_name) -$(pv_value) - 60 - - - - - true - - true - 39872d87:13e14015f61:2c46 - - 15 - Grouping Container + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 8 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Polyline + 20 + 1 + 1 + + + + false + 255 + true + 20 + 0 + false - + - - - - Grouping Container + false + + + + 0 + 1 true + true + 100.0 - Default + Default - 671 - 0 + false + + + + 8 + true + 0 + 1 + Polyline + + + + + + + 0.0 - false - 1 + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 20 + 1 + 7 + + + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 10 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 96 + 290 + 186 + + + + + - - 38 + 0 + 1 + true + false + + Default + + + + + 10 + false + + true + + Grouping Container + + + true + true + false + + + false - 0 - - - true - - true - 39872d87:13e14015f61:2c47 - - 15 - Grouping Container - - true - true - false - - true - false + true + true + Grouping Container + 49 + 22 + 0 + + + false - + - - - - Grouping Container + + + + 0 + 1 true - Default + - 20 - 0 + + + + 10 + 0 + Label - false - 1 - - - - - 0 - - 0 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2c48 - 0.0 - - 0 - 8 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 20 - 0 - 0 - - - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 1 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2c49 - 0.0 - - 0 - 8 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 20 - 0 - 0 - - - 1 - 1 - true - - - - - 7 - $(pv_name) -$(pv_value) - 1 - - - - - true - - true - 39872d87:13e14015f61:2c4a - - 15 - Grouping Container true true false - true + false + lock + + true + 1 + true + Label + 20 + false + 0 + 0 + + + + false - + - - - - Grouping Container + + + + 0 + 1 true - Default + - 20 - 0 + + + + 10 + 0 + Label - false - 1 - - - - - 0 - - 330 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2c4b - 0.0 - - 0 - 8 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 20 - 0 - 0 - - - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 1 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2c4c - 0.0 - - 0 - 8 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 20 - 0 - 0 - - - 1 - 1 - true - - - - - 7 - $(pv_name) -$(pv_value) - 1 - - - - - true - - true - 39872d87:13e14015f61:2c4d - - 15 - Grouping Container true true false - true + false + / + + true + 1 + true + Label + 10 + false + 24 + 0 + + + + false - + - - - - Grouping Container + + + + 0 + 1 true - Default + - 20 - 0 + + + + 10 + 0 + Label - false - 1 - - - - - 0 - - 646 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2c4e - 0.0 - - 0 - 8 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 20 - 0 - 0 - - - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 1 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2c4f - 0.0 - - 0 - 8 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 20 - 0 - 0 - - - 1 - 1 - true - - - - - 7 - $(pv_name) -$(pv_value) - 1 - - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2c50 - 0.0 - - 0 - 1 - true - Polyline - false - 255 true true - true + false - - - - - false - - - - - - - - Polyline - true - false - - Default - - 670 - 0 - 0 - - - 1 - 1 - true - - - - - 8 - $(pv_name) -$(pv_value) - 1 + + false + free + + true + 1 + true + Label + 20 + false + 29 + 0 - - - true - + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false true - 39872d87:13e14015f61:2c51 + Polyline + 20 + 0 + 5 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + - 20 - Grouping Container + $(pv_name) +$(pv_value) + false + true + Polyline + 19 + 77 + 5 + + + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 20 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 89 + 293 + 251 + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Polyline + 24 + 65 + 7 + + + + false + 255 + true + 20 + 0 + false - + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false - Grouping Container + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 24 + 0 + 7 + + + + false + + + + + + + 0 + 1 true - Default + - 79 - 0 + + + + 10 + 1 + Label - false - 1 + + true + true + false + + + false + insert + + true + 1 + true + Label + 55 + false + 18 + 10 + + + + false + + + - - 65 + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + true + true + false + + + false + remove - 298 - - - true - - true - 39872d87:13e14015f61:2c53 - - 20 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 45 - 0 - - false - 1 - - - - - 0 - - 17 - - true - 1 - 39872d87:13e14015f61:2c54 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - remove - - - - 45 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:2c55 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - insert - - - - 45 - 0 - - 1 - - - - 1 - - 10 - true - - 0 - - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2c52 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 19 - 0 - 0 - - - 1 - 1 - true - - - - - 7 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2c56 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 19 - 0 - 0 - - - 1 - 1 - true - - - - - 7 - $(pv_name) -$(pv_value) - 60 - + true + 1 + true + Label + 55 + false + 18 + 0 - - false - true - 39872d87:13e14015f61:2c0e - - 37 - Choice Button - false - - true - true - false - - $(P)$(R)EnergySelect + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 65 - 0 - - - - - + false + + + + 37 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 40 + Choice Button + $(P)$(R)EnergySelect + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 65 175 + 40 - - true - true - 1 - false - 39872d87:13e14015f61:2c0f + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 2 Text Update - false + 0 + true + $(P)$(R)EnergyBeamline + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)EnergyBeamline - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 85 - 0 - - - 1 - - - - 0 - - 40 false - $(pv_name) -$(pv_value) 260 + 40 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 85 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2c10 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(R)EnergyLocal + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(R)EnergyLocal - - - - false - 0 - - - false - - - - 0 - - 57 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 85 260 + 57 - - true - 1 - 39872d87:13e14015f61:2c11 + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true Message: - - - - 60 - 0 - - 1 - - - - 0 - - 153 - true + true + 1 + true + Label + 60 + false 176 + 153 - - true - true - 1 - false - 39872d87:13e14015f61:2c12 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 15 + 0 Text Update - false + 0 + true + $(P)$(R)Message + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)Message - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 415 - 0 - - - 1 - - - - 0 - - 153 false - $(pv_name) -$(pv_value) 250 + 153 - + + + + $(P)$(R)TransmissionSetpoint + 0 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:2c13 - + + + + 0 + 1 + true + + Default + + false + + + 28 + Action Button - false + 0 + $(P)$(R)TransmissionSetpoint + + true true false - $(P)$(R)TransmissionSetpoint - - - - - - - Action Button - true - ALL IN - false - - Default - - 95 - 0 - 0 - - - + + + ALL IN false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 95 + 570 40 + + $(P)$(R)TransmissionSetpoint - 0 + 1 10 + - $(pv_name) -$(pv_value) - 570 - - + false + false + + + false - true - 39872d87:13e14015f61:2c14 - + + + + 0 + 1 + true + + Default + + false + + + 28 + Action Button - false + 0 + $(P)$(R)TransmissionSetpoint + + true true false - $(P)$(R)TransmissionSetpoint - - - - - - - Action Button - true + + ALL OUT - false - - Default - - 95 - 0 - 0 - - - false - 1 - - - - 70 - - - $(P)$(R)TransmissionSetpoint - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 95 570 + 70 - - true - 1 - 39872d87:13e14015f61:2c15 + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true Setpoint: - - - - 86 - 0 - - 1 - - - - 0 - - 105 - true + true + 1 + true + Label + 86 + false 570 + 105 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 95 - 3 - - 1 + false + + + + 6 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:2c16 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(R)TransmissionSetpoint + + false + 0.0 + true true false - 6 - false + 0 - $(P)$(R)TransmissionSetpoint - - - - false - 0 - - - false - - - - 0 - - 123 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 95 570 + 123 - - true - 1 - 39872d87:13e14015f61:2c17 + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false + Mask: + + true + 1 + true + Label + 60 + false + 175 + 133 + + + + false - - - - Label - true - Mask: - - - - 60 - 0 - - 1 - 0 - - 133 - true - - 175 - - - true - 1 - 39872d87:13e14015f61:2c18 - false - + 0 + 1 + true + + + + + + 15 + 0 Label + true true false + + false + Transm: + true - false - - - - - - + 1 + true Label - true - Transm: - - - 60 - 0 - - 1 - - - - 0 - - 111 - true - + false 175 + 111 - - true - true - 1 - false - 39872d87:13e14015f61:2c19 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 13 + 0 Text Update - false + 0 + true + $(P)$(R)FilterMask + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)FilterMask - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 0 - - 134 false - $(pv_name) -$(pv_value) 245 + 134 - - true - true - 1 - false - 39872d87:13e14015f61:2c1a + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 20 + 0 Text Update - false + 0 + true + $(P)$(R)Transmission + + 0.0 + true true false - 2 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)Transmission - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 140 - 0 - - - 1 - - - - 0 - - 108 false - $(pv_name) -$(pv_value) 245 + 108 - - true - 1 - 39872d87:13e14015f61:2c1b + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true Status: - - - - 60 - 0 - - 1 - - - - 0 - - 89 - true + true + 1 + true + Label + 60 + false 175 + 89 - - true - true - 1 - false - 39872d87:13e14015f61:2c1c + + + false false - 0.0 - - 20 - Text Update - true - - true - true - false - - 4 - true - false - $(P)$(R)Status + false - + - - - - Text Update - true - ###### - false - 0 - - - - 140 - 0 - - - 1 + false + 0 + 1 + true + + + + true + + + + 4 + 20 0 - - 86 - false + Text Update + 0 + true + $(P)$(R)Status + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 140 + false 245 + 86 - - true - true - 1 - false - 39872d87:13e14015f61:2c1d + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 3 13 + 0 Text Update - false + 0 + true + $(P)$(R)FilterMask + + 0.0 + true true false - 3 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)FilterMask - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 0 - - 134 false - $(pv_name) -$(pv_value) 325 + 134 - - true - 1 - 39872d87:13e14015f61:2c1e + + false - + + + + + + + 0 + 1 + true + + + + + + 13 + 0 Label + true true false - true + false + = + + true + 1 + true + Label + 10 + false + 310 + 134 + + + + false - - - - Label - true - = - - - - 10 - 0 - - 1 - 0 - - 134 - true - - 310 - - - true - 1 - 39872d87:13e14015f61:2c1f - false - + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false + keV + + true + 1 + true + Label + 34 + false + 350 + 40 + + + + false - - - - Label - true - keV - - - - 34 - 0 - - 1 - 0 - - 40 - true - - 350 - - - true - 1 - 39872d87:13e14015f61:2c20 - false - + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true keV - - - - 34 - 0 - - 1 - - - - 0 - - 60 - true + true + 1 + true + Label + 34 + false 350 + 60 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2c31 - 0.0 - - 0 - 1 - true - Polyline + + Default + false - 255 - - true - true - true - + + + + 1 + true + 0 + 1 + Polyline - false - - - - - - - Polyline - true - false - - Default - - 680 - 0 - 0 - - 1 - 1 - true - - - - - 175 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 680 0 + 175 - - true - true - 1 - false - 39872d87:13e14015f61:2c36 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 25 + 1 Text Update - false + 0 + true + $(P)$(R)Description + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)Description - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 670 - 0 - - - 1 - - - - 1 - - 5 false - $(pv_name) -$(pv_value) 5 + 5 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:2c37 - 0.0 - - 0 + + Default + + false + + + 146 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - 1 - 1 - true - - - - - 30 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 1 165 + 30 - - true - 1 - 39872d87:13e14015f61:2c38 + + false - - 13 - Label - - true - true - false - - true - false - - - - Label - true - $(P)$(R) - - - - 150 - 0 - - 1 + 0 + 1 + true + + + + + + + 13 1 - - 44 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:2c39 - false - - 10 Label + true true false - true + false + $(P)$(R) + + true + 1 + true + Label + 150 + false + 5 + 44 + + + + false - - - - Label - true - filter_16_0_less.adl - - - - 118 - 0 - - 1 - 0 - - 95 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:2c3a - false - + 0 + 1 + true + + + + + + 10 + 0 Label + true true false - true + false + filter_8_8_less.adl + + true + 1 + true + Label + 118 + false + 5 + 95 + + + + false - - - - Label - true - 2013-01-24 (CMS) - - - - 118 - 0 - - 1 + 0 + 1 + true + + + + + + + 10 0 - - 110 - true - - 5 - - - false - true - false - 39872d87:13e14015f61:2c3b - - 18 - Menu Button - false + Label + true true false - false - + + false + 2013-01-09 (CMS) + + true + 1 + true + Label + 118 + false + 5 + 110 + + + + + filter_drive_config.opi + + true + + 1 + configure + + + false + false - + - - - - Menu Button + false + + + + 0 + 1 true - false - Default + Default - 70 - 6 - - + false + + + + 18 + + Action Button + 0 + - 1 - - - + + + true + true + false + + + + configure + false + $(pv_name) +$(pv_value) + true + Action Button + 70 + 85 70 + + - filter_drive_config.opi + filter_8_8_more.opi true - 0 - configure + 0 + less - $(pv_name) -$(pv_value) - 85 - - + false + false + + + false - true - false - 39872d87:13e14015f61:2c3c - - 18 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 18 + + Action Button + 0 + + + true true false - false - + + + more + false + $(pv_name) +$(pv_value) + true + Action Button + 70 + 5 + 70 + + + + false + 255 + true + false - + - - - - Menu Button + + + + false + + + + 0 + 1 true - false + + + + 100.0 - Default + Default - 70 - 6 - - + false + + + + false + 30 + true + + + + 0 + 0 + Ellipse + - 1 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Ellipse + 30 + 330 + 216 + + + + false + 255 + true + 20 + 0 + false + + + + false - 70 - - - filter_16_0_more.opi - - true - - 1 - more - - + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 5 + false + true + Polyline + 670 + 6 + 232 - \ No newline at end of file + diff --git a/opticsApp/op/opi/autoconvert/filter_8_8_more.opi b/opticsApp/op/opi/autoconvert/filter_8_8_more.opi new file mode 100644 index 0000000..6220d84 --- /dev/null +++ b/opticsApp/op/opi/autoconvert/filter_8_8_more.opi @@ -0,0 +1,1699 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 400 + + true + + filter_8_8_more + + + true + true + false + true + false + Display + 680 + 300 + 300 + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 21 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 150 + 5 + 40 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 25 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 20 + 5 + 313 + + + + + + + + + + 0 + 1 + true + + Default + + + + + + 170 + + true + 13 + 14 + 15 + 16 + + Linking Container + filterbox_more.opi + 2 + + + true + true + false + + + + true + Linking Container + 130 + 30 + 225 + + + + + + + + + + 0 + 1 + true + + Default + + + + + + 170 + + true + 9 + 10 + 11 + 12 + + Linking Container + filterbox_more.opi + 2 + + + true + true + false + + + + true + Linking Container + 130 + 170 + 225 + + + + + + + + + + 0 + 1 + true + + Default + + + + + + 170 + + true + 5 + 6 + 7 + 8 + + Linking Container + filterbox_more.opi + 2 + + + true + true + false + + + + true + Linking Container + 130 + 375 + 225 + + + + + + + + + + 0 + 1 + true + + Default + + + + + + 170 + + true + 1 + 2 + 3 + 4 + + Linking Container + filterbox_more.opi + 2 + + + true + true + false + + + + true + Linking Container + 130 + 515 + 225 + + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 20 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 89 + 293 + 345 + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 24 + 65 + 7 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 24 + 0 + 7 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + true + true + false + + + false + insert + + true + 1 + true + Label + 55 + false + 18 + 10 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + true + true + false + + + false + remove + + true + 1 + true + Label + 55 + false + 18 + 0 + + + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 10 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 96 + 290 + 280 + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 10 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 49 + 22 + 0 + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + lock + + true + 1 + true + Label + 20 + false + 0 + 0 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + / + + true + 1 + true + Label + 10 + false + 24 + 0 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + free + + true + 1 + true + Label + 20 + false + 29 + 0 + + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 20 + 0 + 5 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 19 + 77 + 5 + + + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 15 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 20 + 651 + 318 + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 8 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 20 + 1 + 1 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 8 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 20 + 1 + 7 + + + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 15 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 20 + 305 + 318 + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 8 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 20 + 1 + 1 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 8 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 20 + 1 + 7 + + + + + + + + + + + 0 + 1 + true + + Default + + + + + + 168 + + true + + Linking Container + filter_drive_more.opi + 2 + + + true + true + false + + + + true + Linking Container + 490 + 175 + 40 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 25 + 1 + Text Update + 0 + true + $(P)$(R)Description + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 670 + false + 5 + 5 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 191 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 1 + 165 + 30 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 13 + 1 + Label + + + true + true + false + + + false + $(P)$(R) + + true + 1 + true + Label + 150 + false + 5 + 44 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + filter_8_8_more.adl + + true + 1 + true + Label + 118 + false + 5 + 95 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + 2013-01-31 (CMS) + + true + 1 + true + Label + 118 + false + 5 + 110 + + + + + filter_drive_config.opi + + true + + 1 + configure + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + + + + + true + true + false + + + + configure + false + $(pv_name) +$(pv_value) + true + Action Button + 70 + 85 + 70 + + + + + filter_8_8_less.opi + + true + + 0 + less + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + + + + + true + true + false + + + + less + false + $(pv_name) +$(pv_value) + true + Action Button + 70 + 5 + 70 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 30 + true + + + + 0 + 0 + Ellipse + + + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Ellipse + 30 + 330 + 310 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 670 + 6 + 326 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 680 + 0 + 220 + + diff --git a/opticsApp/op/opi/filter_blade.opi b/opticsApp/op/opi/autoconvert/filter_blade.opi similarity index 72% rename from opticsApp/op/opi/filter_blade.opi rename to opticsApp/op/opi/autoconvert/filter_blade.opi index d0d23a5..1893120 100644 --- a/opticsApp/op/opi/filter_blade.opi +++ b/opticsApp/op/opi/autoconvert/filter_blade.opi @@ -1,78 +1,76 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 88 true - 39872d87:13e14015f61:2fc8 - 3.1.2.20120830 + filter_blade + + true + true + false true - 88 - filter_blade false - false - - - - - - Display - true - 26 - - true - 5 - - false - -1 - -1 - - - 150 + 72 990 - - false - true - 100.0 - - - - 39872d87:13e14015f61:2fcc - - - - - 16 - true - Rectangle - false + 150 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 8 + false + + + + false + 16 + true + + + 0 - 0 + 0 + Rectangle + + @@ -84,62 +82,62 @@ $(P)$(R)Fi$(N):Set - - 1 - 0 - true - - - - - 39 - $(pv_name) -$(pv_value) - 9 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:2fd1 - - - - - 16 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 8 + 9 + 39 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 8 + false + + + + false + 16 + true + + + 0 - 0 + 0 + Rectangle + + @@ -151,49 +149,45 @@ $(pv_value) $(P)$(R)Fi$(N):Set - - 1 - 0 - true - - - - - 27 - $(pv_name) -$(pv_value) - 9 - false - - - - true - - true - 39872d87:13e14015f61:2fc9 - - 14 - Grouping Container true true false - true - false + + $(pv_name) +$(pv_value) + false + true + Rectangle + 8 + 9 + 27 + + + - - - - Grouping Container + + + + 0 + 1 true + false - Default + Default - 14 - 0 + + + + 14 + false + + true + + Grouping Container @@ -205,297 +199,265 @@ $(pv_value) $(P)$(R)Fi$(N):Lock - false - 1 - - - - - 0 + + true + true + false + + + false + true + true + Grouping Container + 14 6 - - false - true - 39872d87:13e14015f61:2fca - - 14 - Action Button - false - - true - true - false - - $(P)$(R)Fi$(N):Lock + 0 + + + + $(P)$(R)Fi$(N):Lock + 0 + 10 + + + + + false + false - + - - - - Action Button + false + + + + 0 + 1 true - L - false - Default + Default - 14 - 0 - 0 + false + + + + 14 - + Action Button + 0 + $(P)$(R)Fi$(N):Lock + + + true + true + false + + + + L false - 1 - - - - 0 - - - $(P)$(R)Fi$(N):Lock - 0 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 14 0 + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 14 + false true - true - 39872d87:13e14015f61:2fce - - 14 Grouping Container + + + + true + + + false + + $(P)$(R)Fi$(N):Lock + + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 14 - 0 - - false - 1 - - - - - 0 - 6 - - - true - - true - 39872d87:13e14015f61:2fcf - + 0 + + + + $(P)$(R)Fi$(N):Lock + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + 14 - Grouping Container + + Action Button + 0 + $(P)$(R)Fi$(N):Lock + + true true false - true - false - - - - - - - Grouping Container - true - - Default - + + + F + false + $(pv_name) +$(pv_value) + true + Action Button 14 - 0 - - - - true - - - false - - $(P)$(R)Fi$(N):Lock - - - false - 1 - - - - - 0 - 0 - - false - true - 39872d87:13e14015f61:2fd0 - - 14 - Action Button - false - - true - true - false - - $(P)$(R)Fi$(N):Lock - - - - - - - Action Button - true - F - false - - Default - - 14 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)$(R)Fi$(N):Lock - 1 - 10 - - - - $(pv_name) -$(pv_value) - 0 - + 0 - - true - 1 - 39872d87:13e14015f61:2fcb + + false - - 10 - Label - - true - true - false - - true - false - - - - Label - true - $(N) - - - - 20 - 0 - - 1 + 0 + 1 + true + + + + + + + 10 1 - - 16 - true - - 3 - - - false - true - 39872d87:13e14015f61:2fcd - - 28 - Choice Button - false + Label + true true false - $(P)$(R)Fi$(N):Set + + false + $(N) + + true + 1 + true + Label + 20 + false + 3 + 16 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 26 - 0 - - - - - + false + + + + 28 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 60 + Choice Button + $(P)$(R)Fi$(N):Set + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 26 0 + 60 - \ No newline at end of file + diff --git a/opticsApp/op/opi/autoconvert/filter_drive.opi b/opticsApp/op/opi/autoconvert/filter_drive.opi new file mode 100644 index 0000000..638069e --- /dev/null +++ b/opticsApp/op/opi/autoconvert/filter_drive.opi @@ -0,0 +1,1868 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 130 + + true + + filter_drive + + + true + true + false + true + false + Display + 500 + 89 + 92 + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 15 + true + + + + 0 + 0 + Rectangle + + + + + + true + + + false + + $(P)$(R)EnergySelect + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 10 + 75 + 20 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 15 + true + + + + 0 + 0 + Rectangle + + + + + + true + + + false + + $(P)$(R)EnergySelect + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 10 + 75 + 0 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 37 + false + + Choice 1 + Choice 2 + Choice 3 + + true + Choice Button + $(P)$(R)EnergySelect + + + + true + true + false + + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 65 + 5 + 0 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 2 + Text Update + 0 + true + $(P)$(R)EnergyBeamline + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 85 + false + 90 + 0 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(R)EnergyLocal + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 85 + 90 + 17 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 15 + 0 + Label + + + true + true + false + + + false + Message + + true + 1 + true + Label + 60 + false + 6 + 113 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 15 + 0 + Text Update + 0 + true + $(P)$(R)Message + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 415 + false + 80 + 113 + + + + + $(P)$(R)TransmissionSetpoint + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 28 + + Action Button + 0 + $(P)$(R)TransmissionSetpoint + + + + true + true + false + + + + ALL IN + false + $(pv_name) +$(pv_value) + true + Action Button + 95 + 400 + 0 + + + + + $(P)$(R)TransmissionSetpoint + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 28 + + Action Button + 0 + $(P)$(R)TransmissionSetpoint + + + + true + true + false + + + + ALL OUT + false + $(pv_name) +$(pv_value) + true + Action Button + 95 + 400 + 30 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 15 + 0 + Label + + + true + true + false + + + false + Setpoint + + true + 1 + true + Label + 86 + false + 400 + 65 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 25 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(R)TransmissionSetpoint + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 95 + 400 + 83 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 15 + 0 + Label + + + true + true + false + + + false + Mask + + true + 1 + true + Label + 60 + false + 5 + 93 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 15 + 0 + Label + + + true + true + false + + + false + Transm + + true + 1 + true + Label + 60 + false + 5 + 71 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 13 + 0 + Text Update + 0 + true + $(P)$(R)FilterMask + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 75 + 94 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 + 20 + 0 + Text Update + 0 + true + $(P)$(R)Transmission + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 140 + false + 75 + 68 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 15 + 0 + Label + + + true + true + false + + + false + Status + + true + 1 + true + Label + 60 + false + 5 + 49 + + + + false + false + false + + + + false + + + + 0 + 1 + true + + + + true + + + + 4 + 20 + 0 + Text Update + 0 + true + $(P)$(R)Status + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 140 + false + 75 + 46 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 3 + 13 + 0 + Text Update + 0 + true + $(P)$(R)FilterMask + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 155 + 94 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 13 + 0 + Label + + + true + true + false + + + false + = + + true + 1 + true + Label + 10 + false + 140 + 94 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 15 + 0 + Label + + + true + true + false + + + false + keV + + true + 1 + true + Label + 34 + false + 180 + 0 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 15 + 0 + Label + + + true + true + false + + + false + keV + + true + 1 + true + Label + 34 + false + 180 + 20 + + + + + $(P)$(R)TransmissionFactor + 0.001 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionFactor + + + + true + true + false + + + + /1000 + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 230 + 0 + + + + + $(P)$(R)TransmissionSetpoint + 1.0e-2 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionSetpoint + + + + true + true + false + + + + 1e-2 + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 340 + 0 + + + + + $(P)$(R)TransmissionSetpoint + 1.0e-4 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionSetpoint + + + + true + true + false + + + + 1e-4 + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 340 + 22 + + + + + $(P)$(R)TransmissionSetpoint + 1.0e-6 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionSetpoint + + + + true + true + false + + + + 1e-6 + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 340 + 44 + + + + + $(P)$(R)TransmissionSetpoint + 1.0e-8 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionSetpoint + + + + true + true + false + + + + 1e-8 + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 340 + 66 + + + + + $(P)$(R)TransmissionSetpoint + 1.0e-10 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionSetpoint + + + + true + true + false + + + + 1e-10 + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 340 + 88 + + + + + $(P)$(R)TransmissionFactor + 0.1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionFactor + + + + true + true + false + + + + /10 + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 230 + 22 + + + + + $(P)$(R)TransmissionFactor + .5 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionFactor + + + + true + true + false + + + + /2 + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 230 + 44 + + + + + $(P)$(R)TransmissionFactor + 0.9 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionFactor + + + + true + true + false + + + + -10% + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 230 + 66 + + + + + $(P)$(R)TransmissionStepDown + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionStepDown + + + + true + true + false + + + + - + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 230 + 88 + + + + + $(P)$(R)TransmissionStepUp + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionStepUp + + + + true + true + false + + + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 280 + 88 + + + + + $(P)$(R)TransmissionFactor + 1000 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionFactor + + + + true + true + false + + + + *1000 + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 280 + 0 + + + + + $(P)$(R)TransmissionFactor + 10 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionFactor + + + + true + true + false + + + + *10 + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 280 + 22 + + + + + $(P)$(R)TransmissionFactor + 2 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionFactor + + + + true + true + false + + + + *2 + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 280 + 44 + + + + + $(P)$(R)TransmissionFactor + 1.1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionFactor + + + + true + true + false + + + + +10% + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 280 + 66 + + diff --git a/opticsApp/op/opi/filter_drive_config.opi b/opticsApp/op/opi/autoconvert/filter_drive_config.opi similarity index 82% rename from opticsApp/op/opi/filter_drive_config.opi rename to opticsApp/op/opi/autoconvert/filter_drive_config.opi index 3bb6fa6..5c945c1 100644 --- a/opticsApp/op/opi/filter_drive_config.opi +++ b/opticsApp/op/opi/autoconvert/filter_drive_config.opi @@ -1,279 +1,288 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 80 true - 39872d87:13e14015f61:302a - 3.1.2.20120830 + filter_drive_config + + true + true + false true - 80 - filter_drive_config false - false - - - - - - Display - true 270 - - true - 5 - - false - -1 - -1 - - - 200 300 - - true - 1 - 39872d87:13e14015f61:302b + 200 + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false + Actuator wait time [s]: + + true + 1 + true + Label + 220 + false + 5 + 33 + + + + false - - - - Label - true - Actuator wait time [s]: - - - - 220 - 0 - - 1 - 0 - - 33 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:302c - false - + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true Debug level: - - - - 220 - 0 - - 1 - - - - 0 - - 58 - true + true + 1 + true + Label + 220 + false 5 + 58 - - false - true - 1 - false + + + false false - - 21 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 21 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:302d - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(R)WaitTime + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(R)WaitTime - - - - false - 0 - - - false - - - - 0 - - 30 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 216 + 30 - - false - true - 1 - false + + + false false - - 21 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 21 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:302e - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(R)Debug + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(R)Debug - - - - false - 0 - - - false - - - - 0 - - 55 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 216 + 55 - - true - true - 1 - false - 39872d87:13e14015f61:302f + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 1 Text Update - false + 0 + true + $(P)$(R)Description + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)Description - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 260 - 0 - - - 1 - - - - 1 - - 5 false - $(pv_name) -$(pv_value) 5 + 5 - \ No newline at end of file + diff --git a/opticsApp/op/opi/filter_drive_more.opi b/opticsApp/op/opi/autoconvert/filter_drive_more.opi similarity index 54% rename from opticsApp/op/opi/filter_drive_more.opi rename to opticsApp/op/opi/autoconvert/filter_drive_more.opi index 53df131..4110f1e 100644 --- a/opticsApp/op/opi/filter_drive_more.opi +++ b/opticsApp/op/opi/autoconvert/filter_drive_more.opi @@ -1,78 +1,76 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 175 true - 39872d87:13e14015f61:3037 - 3.1.2.20120830 + filter_drive_more + + true + true + false true - 175 - filter_drive_more false - false - - - - - - Display - true 500 - - true - 5 - - false - -1 - -1 - - - 123 829 - - false - true - 100.0 - - - - 39872d87:13e14015f61:3038 - - - - - 15 - true - Rectangle - false + 123 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 15 + true + + + 0 - 0 + 0 + Rectangle + + @@ -84,62 +82,62 @@ $(P)$(R)EnergySelect - - 1 - 0 - true - - - - - 20 - $(pv_name) -$(pv_value) - 75 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:3039 - - - - - 15 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 75 + 20 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 15 + true + + + 0 - 0 + 0 + Rectangle + + @@ -151,2094 +149,2095 @@ $(pv_value) $(P)$(R)EnergySelect - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 75 - false - - - - true - - true - 39872d87:13e14015f61:3043 - - 108 - Grouping Container true true false - true - false + + $(pv_name) +$(pv_value) + false + true + Rectangle + 10 + 75 + 0 + + + + false + false - + - - - - Grouping Container - true - - Default - - 155 - 0 - - false - 1 + false - - 0 - - 230 - - false - true - 39872d87:13e14015f61:3044 - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionFactor - - - - - - - Action Button - true - /1000 - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)$(R)TransmissionFactor - 0.001 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:3045 - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionSetpoint - - - - - - - Action Button - true - 1e-2 - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)$(R)TransmissionSetpoint - 1.0e-2 - 10 - - - - $(pv_name) -$(pv_value) - 110 - - - false - true - 39872d87:13e14015f61:3046 - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionSetpoint - - - - - - - Action Button - true - 1e-4 - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 22 - - - $(P)$(R)TransmissionSetpoint - 1.0e-4 - 10 - - - - $(pv_name) -$(pv_value) - 110 - - - false - true - 39872d87:13e14015f61:3047 - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionSetpoint - - - - - - - Action Button - true - 1e-6 - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 44 - - - $(P)$(R)TransmissionSetpoint - 1.0e-6 - 10 - - - - $(pv_name) -$(pv_value) - 110 - - - false - true - 39872d87:13e14015f61:3048 - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionSetpoint - - - - - - - Action Button - true - 1e-8 - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 66 - - - $(P)$(R)TransmissionSetpoint - 1.0e-8 - 10 - - - - $(pv_name) -$(pv_value) - 110 - - - false - true - 39872d87:13e14015f61:3049 - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionSetpoint - - - - - - - Action Button - true - 1e-10 - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 88 - - - $(P)$(R)TransmissionSetpoint - 1.0e-10 - 10 - - - - $(pv_name) -$(pv_value) - 110 - - - false - true - 39872d87:13e14015f61:304a - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionFactor - - - - - - - Action Button - true - /10 - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 22 - - - $(P)$(R)TransmissionFactor - 0.1 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:304b - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionFactor - - - - - - - Action Button - true - /2 - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 44 - - - $(P)$(R)TransmissionFactor - .5 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:304c - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionFactor - - - - - - - Action Button - true - -10% - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 66 - - - $(P)$(R)TransmissionFactor - 0.9 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:304d - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionStepDown - - - - - - - Action Button - true - - - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 88 - - - $(P)$(R)TransmissionStepDown - 1 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:304e - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionStepUp - - - - - - - Action Button - true - + - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 88 - - - $(P)$(R)TransmissionStepUp - 1 - 10 - - - - $(pv_name) -$(pv_value) - 50 - - - false - true - 39872d87:13e14015f61:304f - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionFactor - - - - - - - Action Button - true - *1000 - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)$(R)TransmissionFactor - 1000 - 10 - - - - $(pv_name) -$(pv_value) - 50 - - - false - true - 39872d87:13e14015f61:3050 - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionFactor - - - - - - - Action Button - true - *10 - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 22 - - - $(P)$(R)TransmissionFactor - 10 - 10 - - - - $(pv_name) -$(pv_value) - 50 - - - false - true - 39872d87:13e14015f61:3051 - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionFactor - - - - - - - Action Button - true - *2 - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 44 - - - $(P)$(R)TransmissionFactor - 2 - 10 - - - - $(pv_name) -$(pv_value) - 50 - - - false - true - 39872d87:13e14015f61:3052 - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionFactor - - - - - - - Action Button - true - +10% - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 66 - - - $(P)$(R)TransmissionFactor - 1.1 - 10 - - - - $(pv_name) -$(pv_value) - 50 - - - - false - true - 39872d87:13e14015f61:303a - - 37 - Choice Button - false - - true - true - false - - $(P)$(R)EnergySelect - - - - - - - Choice Button + 0 + 1 true - false - Default + Default - 65 - 0 - - - - - + false + + + + 37 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 0 + Choice Button + $(P)$(R)EnergySelect + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 65 5 + 0 - - true - true - 1 - false - 39872d87:13e14015f61:303b + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 2 Text Update - false + 0 + true + $(P)$(R)EnergyBeamline + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)EnergyBeamline - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 85 - 0 - - - 1 - - - - 0 - - 0 false - $(pv_name) -$(pv_value) 90 + 0 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 85 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:303c - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(R)EnergyLocal + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(R)EnergyLocal - - - - false - 0 - - - false - - - - 0 - - 17 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 85 90 + 17 - + + + + $(P)$(R)TransmissionSetpoint + 0 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:303d - + + + + 0 + 1 + true + + Default + + false + + + 28 + Action Button - false + 0 + $(P)$(R)TransmissionSetpoint + + true true false - $(P)$(R)TransmissionSetpoint - - - - - - - Action Button - true + + ALL IN - false - - Default - - 95 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 95 + 400 0 + + $(P)$(R)TransmissionSetpoint - 0 + 1 10 + - $(pv_name) -$(pv_value) - 400 - - + false + false + + + false - true - 39872d87:13e14015f61:303e - + + + + 0 + 1 + true + + Default + + false + + + 28 + Action Button - false + 0 + $(P)$(R)TransmissionSetpoint + + true true false - $(P)$(R)TransmissionSetpoint - - - - - - - Action Button - true + + ALL OUT - false - - Default - - 95 - 0 - 0 - - - false - 1 - - - - 30 - - - $(P)$(R)TransmissionSetpoint - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 95 400 + 30 - - true - 1 - 39872d87:13e14015f61:303f + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true Status - - - - 60 - 0 - - 1 - - - - 0 - - 49 - true + true + 1 + true + Label + 60 + false 5 + 49 - - true - true - 1 - false - 39872d87:13e14015f61:3040 + + + false false - 0.0 - + false + + + + false + + + + 0 + 1 + true + + + + true + + + + 4 20 + 0 Text Update - true + 0 + true + $(P)$(R)Status + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)Status - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 140 - 0 - - - 1 - - - - 0 - - 46 false - $(pv_name) -$(pv_value) 75 + 46 - - true - 1 - 39872d87:13e14015f61:3041 + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false + keV + + true + 1 + true + Label + 34 + false + 180 + 0 + + + + false - - - - Label - true - keV - - - - 34 - 0 - - 1 - 0 - - 0 - true - - 180 - - - true - 1 - 39872d87:13e14015f61:3042 - false - + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true keV - - - + + true + 1 + true + Label 34 - 0 - - 1 + false + 180 + 20 + + + + + $(P)$(R)TransmissionFactor + 0.001 + 10 + + + + + false + false + + + + false - 0 - - 20 - true - - 180 - - - true - true - 1 - false - 39872d87:13e14015f61:3053 - false - 0.0 - - 15 - Text Update + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionFactor + + true true false - 4 - true - false - $(P)$(R)Message + + + /1000 + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 230 + 0 + + + + + $(P)$(R)TransmissionSetpoint + 1.0e-2 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionSetpoint + + + + true + true + false + + + + 1e-2 + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 340 + 0 + + + + + $(P)$(R)TransmissionSetpoint + 1.0e-4 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionSetpoint + + + + true + true + false + + + + 1e-4 + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 340 + 22 + + + + + $(P)$(R)TransmissionSetpoint + 1.0e-6 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionSetpoint + + + + true + true + false + + + + 1e-6 + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 340 + 44 + + + + + $(P)$(R)TransmissionSetpoint + 1.0e-8 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionSetpoint + + + + true + true + false + + + + 1e-8 + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 340 + 66 + + + + + $(P)$(R)TransmissionSetpoint + 1.0e-10 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionSetpoint + + + + true + true + false + + + + 1e-10 + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 340 + 88 + + + + + $(P)$(R)TransmissionFactor + 0.1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionFactor + + + + true + true + false + + + + /10 + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 230 + 22 + + + + + $(P)$(R)TransmissionFactor + .5 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionFactor + + + + true + true + false + + + + /2 + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 230 + 44 + + + + + $(P)$(R)TransmissionFactor + 0.9 + 10 + + + + + false + false - + + false + + + + 0 + 1 + true + + Default + + false - + - Text Update + 20 + + Action Button + 0 + $(P)$(R)TransmissionFactor + + + + true + true + false + + + + -10% + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 230 + 66 + + + + + $(P)$(R)TransmissionStepDown + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 true - ###### + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionStepDown + + + + true + true + false + + + + - + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 230 + 88 + + + + + $(P)$(R)TransmissionStepUp + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionStepUp + + + + true + true + false + + + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 280 + 88 + + + + + $(P)$(R)TransmissionFactor + 1000 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionFactor + + + + true + true + false + + + + *1000 + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 280 + 0 + + + + + $(P)$(R)TransmissionFactor + 10 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionFactor + + + + true + true + false + + + + *10 + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 280 + 22 + + + + + $(P)$(R)TransmissionFactor + 2 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionFactor + + + + true + true + false + + + + *2 + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 280 + 44 + + + + + $(P)$(R)TransmissionFactor + 1.1 + 10 + + + + + false false - 0 + + + + false + + + + 0 + 1 + true - + Default - 310 - 0 - + false + + + + 20 + + Action Button + 0 + $(P)$(R)TransmissionFactor - 1 + + + true + true + false + + + + +10% + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 280 + 66 + + + + false + false + false + + + + true + 0 + 1 + true + + + + false + + + + 4 + 15 0 - - 153 - false + Text Update + 0 + true + $(P)$(R)Message + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 310 + false 75 + 153 - - true - 1 - 39872d87:13e14015f61:3054 + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false + Message + + true + 1 + true + Label + 60 + false + 6 + 153 + + + + false - - - - Label - true - Message - - - - 60 - 0 - - 1 - 0 - - 153 - true - - 6 - - - true - 1 - 39872d87:13e14015f61:3055 - false - + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true Setpoint - - - - 86 - 0 - - 1 - - - - 0 - - 65 - true + true + 1 + true + Label + 86 + false 400 + 65 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 95 - 3 - - 1 + false + + + + 6 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3056 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(R)TransmissionSetpoint + + false + 0.0 + true true false - 6 - false + 0 - $(P)$(R)TransmissionSetpoint - - - - false - 0 - - - false - - - - 0 - - 83 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 95 400 + 83 - - true - 1 - 39872d87:13e14015f61:3057 + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true Filter Mask - - - - 95 - 0 - - 1 - - - - 0 - - 125 - true + true + 1 + true + Label + 95 + false 399 + 125 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 95 - 3 - - 1 + false + + + + 6 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3058 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(R)FilterMaskSetpoint + + false + 0.0 + true true false - 6 - false + 0 - $(P)$(R)FilterMaskSetpoint - - - - false - 0 - - - false - - - - 0 - - 143 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 95 399 + 143 - - true - 1 - 39872d87:13e14015f61:3059 + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true Mask - - - - 60 - 0 - - 1 - - - - 0 - - 133 - true + true + 1 + true + Label + 60 + false 5 + 133 - - true - true - 1 - false - 39872d87:13e14015f61:305a + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 13 + 0 Text Update - false + 0 + true + $(P)$(R)FilterMask + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)FilterMask - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 0 - - 134 false - $(pv_name) -$(pv_value) 75 + 134 - - true - 1 - 39872d87:13e14015f61:305b + + false - + + + + + + + 0 + 1 + true + + + + + + 13 + 0 Label + true true false - true + false - - - - - - - Label - true = - - - - 10 - 0 - - 1 - - - - 0 - - 134 - true + true + 1 + true + Label + 10 + false 140 + 134 - - true - true - 1 - false - 39872d87:13e14015f61:305c + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 3 13 + 0 Text Update - false + 0 + true + $(P)$(R)FilterMask + + 0.0 + true true false - 3 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)FilterMask - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 0 - - 134 false - $(pv_name) -$(pv_value) 155 + 134 - - true - 1 - 39872d87:13e14015f61:305d + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true Transm - - - - 60 - 0 - - 1 - - - - 0 - - 71 - true + true + 1 + true + Label + 60 + false 5 + 71 - - true - true - 1 - false - 39872d87:13e14015f61:305e + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 20 + 0 Text Update - false + 0 + true + $(P)$(R)Transmission + + 0.0 + true true false - 2 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)Transmission - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 140 - 0 - - - 1 - - - - 0 - - 68 false - $(pv_name) -$(pv_value) 75 + 68 - - true - 1 - 39872d87:13e14015f61:305f + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true Up(+) - - - - 60 - 0 - - 1 - - - - 0 - - 93 - true + true + 1 + true + Label + 60 + false 5 + 93 - - true - true - 1 - false - 39872d87:13e14015f61:3060 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 15 + 0 Text Update - false + 0 + true + $(P)$(R)TransmissionUp + + 0.0 + true true false - 2 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)TransmissionUp - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 140 - 0 - - - 1 - - - - 0 - - 93 false - $(pv_name) -$(pv_value) 75 + 93 - - true - 1 - 39872d87:13e14015f61:3061 + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true Down(-) - - - - 60 - 0 - - 1 - - - - 0 - - 113 - true + true + 1 + true + Label + 60 + false 5 + 113 - - true - true - 1 - false - 39872d87:13e14015f61:3062 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 15 + 0 Text Update - false + 0 + true + $(P)$(R)TransmissionDown + + 0.0 + true true false - 2 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)TransmissionDown - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 140 - 0 - - - 1 - - - - 0 - - 113 false - $(pv_name) -$(pv_value) 75 + 113 - - true - 1 - 39872d87:13e14015f61:3063 + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true NumFilters - - - - 90 - 0 - - 1 - - - - 0 - - 133 - true + true + 1 + true + Label + 90 + false 230 + 133 - - true - true - 1 - false - 39872d87:13e14015f61:3064 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 0 Text Update - false + 0 + true + $(P)$(R)NumFilters + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(R)NumFilters - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 0 - - 133 false - $(pv_name) -$(pv_value) 330 + 133 - \ No newline at end of file + diff --git a/opticsApp/op/opi/autoconvert/filterbox_config.opi b/opticsApp/op/opi/autoconvert/filterbox_config.opi new file mode 100644 index 0000000..e53993b --- /dev/null +++ b/opticsApp/op/opi/autoconvert/filterbox_config.opi @@ -0,0 +1,1137 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 125 + + true + + filterbox_config + + + true + true + false + true + false + Display + 425 + 664 + 480 + + + false + + + + + + + 0 + 1 + true + + + + + + + 15 + 0 + Label + + + true + true + false + + + false + Filter + + true + 1 + true + Label + 45 + false + 5 + 5 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 15 + 0 + Label + + + true + true + false + + + false + Material + + true + 1 + true + Label + 70 + false + 70 + 5 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 15 + 0 + Label + + + true + true + false + + + false + Thickness + + true + 1 + true + Label + 70 + false + 150 + 5 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 15 + 0 + Label + + + true + true + false + + + false + Enable + + true + 1 + true + Label + 50 + false + 280 + 5 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 15 + 0 + Label + + + true + true + false + + + false + $(N1): + + true + 1 + true + Label + 45 + false + 5 + 27 + + + + true + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + $(P)$(R)Fi$(N1):Material + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 70 + 70 + 25 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(R)Fi$(N1):Thickness + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 150 + 25 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + true + + + + 20 + true + + Choice 1 + Choice 2 + Choice 3 + + true + Choice Button + $(P)$(R)Fi$(N1):Enable + + + + true + true + false + + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 140 + 280 + 25 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 17 + 0 + Label + + + true + true + false + + + false + um + + true + 1 + true + Label + 16 + false + 255 + 26 + + + + true + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + $(P)$(R)Fi$(N2):Material + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 70 + 70 + 50 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(R)Fi$(N2):Thickness + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 150 + 50 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + true + + + + 20 + true + + Choice 1 + Choice 2 + Choice 3 + + true + Choice Button + $(P)$(R)Fi$(N2):Enable + + + + true + true + false + + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 140 + 280 + 50 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 17 + 0 + Label + + + true + true + false + + + false + um + + true + 1 + true + Label + 16 + false + 255 + 51 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 15 + 0 + Label + + + true + true + false + + + false + $(N2): + + true + 1 + true + Label + 45 + false + 5 + 52 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 15 + 0 + Label + + + true + true + false + + + false + $(N3): + + true + 1 + true + Label + 45 + false + 5 + 77 + + + + true + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + $(P)$(R)Fi$(N3):Material + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 70 + 70 + 75 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(R)Fi$(N3):Thickness + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 150 + 75 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 17 + 0 + Label + + + true + true + false + + + false + um + + true + 1 + true + Label + 16 + false + 255 + 76 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + true + + + + 20 + true + + Choice 1 + Choice 2 + Choice 3 + + true + Choice Button + $(P)$(R)Fi$(N3):Enable + + + + true + true + false + + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 140 + 280 + 75 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + true + + + + 20 + true + + Choice 1 + Choice 2 + Choice 3 + + true + Choice Button + $(P)$(R)Fi$(N4):Enable + + + + true + true + false + + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 140 + 280 + 100 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 17 + 0 + Label + + + true + true + false + + + false + um + + true + 1 + true + Label + 16 + false + 255 + 101 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(R)Fi$(N4):Thickness + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 150 + 100 + + + + true + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + $(P)$(R)Fi$(N4):Material + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 70 + 70 + 100 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 15 + 0 + Label + + + true + true + false + + + false + $(N4): + + true + 1 + true + Label + 45 + false + 5 + 102 + + diff --git a/opticsApp/op/opi/autoconvert/filterbox_less.opi b/opticsApp/op/opi/autoconvert/filterbox_less.opi new file mode 100644 index 0000000..a643c88 --- /dev/null +++ b/opticsApp/op/opi/autoconvert/filterbox_less.opi @@ -0,0 +1,290 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 110 + + true + + filterbox_less + + + true + true + false + true + false + Display + 140 + 1591 + 254 + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 100 + true + + + + 0 + 2 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 130 + 5 + 5 + + + + + + + + + + 0 + 1 + true + + Default + + + + + + 88 + + true + $(N4) + + Linking Container + filter_blade.opi + 2 + + + + true + + + false + + $(P)$(R)Fi$(N4):Enable + + + + true + true + false + + + + true + Linking Container + 26 + 12 + 11 + + + + + + + + + + 0 + 1 + true + + Default + + + + + + 88 + + true + $(N3) + + Linking Container + filter_blade.opi + 2 + + + + true + + + false + + $(P)$(R)Fi$(N3):Enable + + + + true + true + false + + + + true + Linking Container + 26 + 43 + 11 + + + + + + + + + + 0 + 1 + true + + Default + + + + + + 88 + + true + $(N2) + + Linking Container + filter_blade.opi + 2 + + + + true + + + false + + $(P)$(R)Fi$(N2):Enable + + + + true + true + false + + + + true + Linking Container + 26 + 74 + 11 + + + + + + + + + + 0 + 1 + true + + Default + + + + + + 88 + + true + $(N1) + + Linking Container + filter_blade.opi + 2 + + + + true + + + false + + $(P)$(R)Fi$(N1):Enable + + + + true + true + false + + + + true + Linking Container + 26 + 105 + 11 + + diff --git a/opticsApp/op/opi/autoconvert/filterbox_more.opi b/opticsApp/op/opi/autoconvert/filterbox_more.opi new file mode 100644 index 0000000..e16b425 --- /dev/null +++ b/opticsApp/op/opi/autoconvert/filterbox_more.opi @@ -0,0 +1,1316 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 170 + + true + + filterbox_more + + + true + true + false + true + false + Display + 140 + 2375 + 753 + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 100 + true + + + + 0 + 2 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 130 + 5 + 48 + + + + + + + + + + 0 + 1 + true + + Default + + + + + + 88 + + true + $(N4) + + Linking Container + filter_blade.opi + 2 + + + + true + + + false + + $(P)$(R)Fi$(N4):Enable + + + + true + true + false + + + + true + Linking Container + 26 + 12 + 54 + + + + + + + + + + 0 + 1 + true + + Default + + + + + + 88 + + true + $(N3) + + Linking Container + filter_blade.opi + 2 + + + + true + + + false + + $(P)$(R)Fi$(N3):Enable + + + + true + true + false + + + + true + Linking Container + 26 + 43 + 54 + + + + + + + + + + 0 + 1 + true + + Default + + + + + + 88 + + true + $(N2) + + Linking Container + filter_blade.opi + 2 + + + + true + + + false + + $(P)$(R)Fi$(N2):Enable + + + + true + true + false + + + + true + Linking Container + 26 + 74 + 54 + + + + + + + + + + 0 + 1 + true + + Default + + + + + + 88 + + true + $(N1) + + Linking Container + filter_blade.opi + 2 + + + + true + + + false + + $(P)$(R)Fi$(N1):Enable + + + + true + true + false + + + + true + Linking Container + 26 + 105 + 54 + + + + + filterbox_config.opi + + true + + 1 + Configure + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + + + + + true + true + false + + + + Configure + false + $(pv_name) +$(pv_value) + true + Action Button + 110 + 15 + 152 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + + true + + + false + + $(P)$(R)Fi$(N1):Enable + + + + true + true + false + + + false + $(N1): Disabled + + true + 1 + true + Label + 71 + false + 5 + 0 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + + true + + + false + + $(P)$(R)Fi$(N2):Enable + + + + true + true + false + + + false + $(N2): Disabled + + true + 1 + true + Label + 71 + false + 5 + 12 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + + true + + + false + + $(P)$(R)Fi$(N3):Enable + + + + true + true + false + + + false + $(N3): Disabled + + true + 1 + true + Label + 71 + false + 5 + 24 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + + true + + + false + + $(P)$(R)Fi$(N4):Enable + + + + true + true + false + + + false + $(N4): Disabled + + true + 1 + true + Label + 71 + false + 5 + 36 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(N2): + + true + 1 + true + Label + 15 + false + 5 + 12 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 10 + 0 + Text Update + 0 + true + $(P)$(R)Fi$(N2):Material + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 12 + false + 24 + 12 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 6 + 10 + 0 + Text Update + 0 + true + $(P)$(R)Fi$(N2):Thickness + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 38 + false + 40 + 12 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 + 10 + 0 + Text Update + 0 + true + $(P)$(R)Fi$(N2):Transmission + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 50 + false + 82 + 12 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(N1): + + true + 1 + true + Label + 15 + false + 5 + 0 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 10 + 0 + Text Update + 0 + true + $(P)$(R)Fi$(N1):Material + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 12 + false + 24 + 0 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 6 + 10 + 0 + Text Update + 0 + true + $(P)$(R)Fi$(N1):Thickness + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 38 + false + 40 + 0 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 + 10 + 0 + Text Update + 0 + true + $(P)$(R)Fi$(N1):Transmission + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 50 + false + 82 + 0 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(N3): + + true + 1 + true + Label + 15 + false + 5 + 24 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 10 + 0 + Text Update + 0 + true + $(P)$(R)Fi$(N3):Material + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 12 + false + 24 + 24 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 6 + 10 + 0 + Text Update + 0 + true + $(P)$(R)Fi$(N3):Thickness + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 38 + false + 40 + 24 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 + 10 + 0 + Text Update + 0 + true + $(P)$(R)Fi$(N3):Transmission + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 50 + false + 82 + 24 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(N4): + + true + 1 + true + Label + 15 + false + 5 + 36 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 10 + 0 + Text Update + 0 + true + $(P)$(R)Fi$(N4):Material + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 12 + false + 24 + 36 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 6 + 10 + 0 + Text Update + 0 + true + $(P)$(R)Fi$(N4):Thickness + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 38 + false + 40 + 36 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 + 10 + 0 + Text Update + 0 + true + $(P)$(R)Fi$(N4):Transmission + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 50 + false + 82 + 36 + + diff --git a/opticsApp/op/opi/hrSeqCtl_All.opi b/opticsApp/op/opi/autoconvert/hrSeqCtl_All.opi similarity index 71% rename from opticsApp/op/opi/hrSeqCtl_All.opi rename to opticsApp/op/opi/autoconvert/hrSeqCtl_All.opi index b90a361..ac35488 100644 --- a/opticsApp/op/opi/hrSeqCtl_All.opi +++ b/opticsApp/op/opi/autoconvert/hrSeqCtl_All.opi @@ -1,259 +1,371 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 310 true - 39872d87:13e14015f61:3173 - 3.1.2.20120830 + hrSeqCtl_All + + true + true + false true - 310 - hrSeqCtl_All false - false - - - - - - Display - true 650 - - true - 5 - - false - -1 - -1 - - - 54 159 - + 54 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 110 + true - 39872d87:13e14015f61:31a9 - - - - - 110 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 80 + 220 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 80 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 410 + false + + + false - - - false - true - 0.0 + 110 + true - + - 39872d87:13e14015f61:31b5 - - - - - 110 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 80 + 220 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 80 - 0 - 0 - - - 1 - 2 - true - - - - - 0 - $(pv_name) -$(pv_value) - 410 + false + + + false - - - false - true - 0.0 + 110 + true - + - 39872d87:13e14015f61:31b9 - - - - - 30 - true + 0 + 0 Rectangle - false - 255 + + + true true false - true - + + $(pv_name) +$(pv_value) + false + true + Rectangle + 80 + 410 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 94 + false + + + + false + 110 + true + + + 0 - 0 - - - - true - - - false - - $(P)HR$(N)_phi1DmovBI - - - - 1 2 - true - - - - - 172 + Rectangle + + + + + true + true + false + + $(pv_name) $(pv_value) - 109 - false - - - false + true true - 0.0 - - - - 39872d87:13e14015f61:31c9 + Rectangle + 80 + 410 + 0 + + + + false + 255 + true + false + + + - + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false 30 - true + true + + + + 0 + 2 Rectangle - false - 255 + + + + + + true + + + false + + $(P)HR$(N)_phi1DmovBI + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 94 + 109 + 172 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 94 + false + + + + false + 30 + true + + + 0 - 0 + 2 + Rectangle + + @@ -265,119 +377,119 @@ $(pv_value) $(P)HR$(N)_phi2DmovBI - - 1 - 2 - true - - - - - 172 - $(pv_name) -$(pv_value) - 204 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:31d7 - - - - - 83 - true - Rectangle - false - 255 true true false - false - + + $(pv_name) +$(pv_value) + true + true + Rectangle + 94 + 204 + 172 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 84 - 0 - 0 - - - 1 - 0 - true - - - - - 157 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 100.0 + 83 + true - 39872d87:13e14015f61:31df - - - - - 47 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 84 + 0 + 157 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 366 - 0 - 0 + false + + + + false + 47 + true + + + + 0 + 0 + Rectangle + + @@ -389,4949 +501,4679 @@ $(pv_value) $(P)HR$(N)_AlertBO - - 1 - 0 - true - - - - - 260 - $(pv_name) -$(pv_value) - 68 - false - - - - true - - true - 39872d87:13e14015f61:319b - - 110 - Grouping Container true true false - true - false - - - - - - - Grouping Container - true - - Default - - 80 - 0 - - false - 1 - - - - - 0 - - 220 - - false - true - 100.0 - - - - 39872d87:13e14015f61:319c - - - - - 110 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 80 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:31a8 - - - - - 110 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 80 - 0 - 0 - - - 1 - 2 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - true - 1 - 39872d87:13e14015f61:319d - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - L1 - - - - 20 - 0 - - 1 - - - - 1 - - 2 - true - - 55 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 20 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:319e - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)HR$(N)_L1AO.VAL - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 55 - - - true - 1 - 39872d87:13e14015f61:319f - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - K1 - - - - 20 - 0 - - 1 - - - - 1 - - 2 - true - - 30 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 20 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:31a0 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)HR$(N)_K1AO.VAL - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 30 - - - true - 1 - 39872d87:13e14015f61:31a1 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - H1 - - - - 20 - 0 - - 1 - - - - 1 - - 2 - true - - 5 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 20 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:31a2 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)HR$(N)_H1AO.VAL - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 5 - - - true - 1 - 39872d87:13e14015f61:31a3 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - a - - - - 20 - 0 - - 1 - - - - 0 - - 43 - true - - 5 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 55 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:31a4 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)HR$(N)_A1AO.VAL - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 20 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 55 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:31a5 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)HR$(N)_2d1AO - - - - false - 0 - - - false - - - - 0 - - 63 - $(pv_name) -$(pv_value) - 20 - - - true - 1 - 39872d87:13e14015f61:31a6 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - 2d - - - - 20 - 0 - - 1 - - - - 0 - - 66 - true - - 5 - - - false - true - true - 39872d87:13e14015f61:31a7 - - 16 - Menu Button - false - - true - true - false - - false - $(P)HR$(N)_1TypeMO - - - - - - - Menu Button - true - false - - Default - - 70 - 6 - - - - 1 - - - - 85 - - $(pv_name) + + $(pv_name) $(pv_value) - 5 - - - - - true - + false true - 39872d87:13e14015f61:31c0 - - 21 - Grouping Container - - true - true - false - - true - false + Rectangle + 366 + 68 + 260 + + + + false + 255 + true + 20 + 0 + false - + - - - - Grouping Container - true - - Default - - 47 - 0 - - false - 1 + false - - 190 - - 74 - - - true - - true - 39872d87:13e14015f61:31c1 - - 21 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 25 - 0 - - false - 1 - - - - - 0 - - 22 - - false - true - 180 - 39872d87:13e14015f61:31c2 - 90 - - 18 - true - Arc - false - 255 - - true - true - true - - - - - - - - - Arc - true - false - - Default - - 25 - 0 - false - 0 - - - 1 - 1 - - - - - 3 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:31c3 - 0.0 - - 0 - 9 - true - Polyline - false - 255 - - true - true - true - - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 8 - - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:31c4 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 19 - 0 - 0 - - - 1 - 1 - true - - - - - 15 - $(pv_name) -$(pv_value) - 1 - - - - - true - - true - 39872d87:13e14015f61:31eb - - 20 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 41 0 - - false 1 - - - - - 111 - - 62 - - false - true - 39872d87:13e14015f61:31ec - - 20 - Action Button - false - - true - true - false - - $(P)HR$(N)_E:scanParms.GO - - - - - - - Action Button - true - Go - false - - Default - - 21 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)HR$(N)_E:scanParms.GO - 1 - 10 - - - - $(pv_name) -$(pv_value) - 20 - - - false - true - 39872d87:13e14015f61:31ed - - 20 - Action Button - false - - true - true - false - - $(P)HR$(N)_E:scanParms.LOAD - - - - - - - Action Button - true - Ld - false - - Default - - 21 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)HR$(N)_E:scanParms.LOAD - 1 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - - false + true true - 20 - true 100.0 - 39872d87:13e14015f61:3174 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 648 - 0 - 0 - - 1 - 1 - true - - - - - 134 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 648 1 + 134 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3175 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)HR$(N)_Theta2AO.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)HR$(N)_Theta2AO.VAL - - - - false - 0 - - - false - - - - 0 - - 50 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 490 + 50 - - false - true - 39872d87:13e14015f61:3176 - + + + + $(P)HR$(N)_Theta2IncBO.VAL + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)HR$(N)_Theta2IncBO.VAL + + true true false - $(P)HR$(N)_Theta2IncBO.VAL - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 90 - - - $(P)HR$(N)_Theta2IncBO.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 570 + 90 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3177 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)HR$(N)_Theta2TweakAI + + false + 0.0 + true true false - 1 - false + 0 - $(P)HR$(N)_Theta2TweakAI - - - - false - 0 - - - false - - - - 0 - - 90 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 510 + 90 - + + + + $(P)HR$(N)_Theta2DecBO.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:3178 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)HR$(N)_Theta2DecBO.VAL + + true true false - $(P)HR$(N)_Theta2DecBO.VAL - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 90 - - - $(P)HR$(N)_Theta2DecBO.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 490 + 90 - - true - true - 1 - false - 39872d87:13e14015f61:3179 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)HR$(N)_Theta2AO.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)HR$(N)_Theta2AO.DRVL + 1 + true + Text Update + 100 + false + 490 + 75 + + + + false - + + + + + 0 + 1 + true + + + - + - Text Update - true - ###### - false - 0 - - - - 100 - 0 - - - 1 - - - - 1 - - 75 - false - $(pv_name) -$(pv_value) - 490 - - - true - 1 - 39872d87:13e14015f61:317a - false - 20 + 1 Label + true true false - true + false - - - - - - - Label - true TH2 (deg.) - - - - 100 - 0 - - 1 - - - - 1 - - 0 - true + true + 1 + true + Label + 100 + false 490 + 0 - - true - true - 1 - false - 39872d87:13e14015f61:317b + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)HR$(N)_Theta2RdbkAO + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)HR$(N)_Theta2RdbkAO - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 34 false - $(pv_name) -$(pv_value) 490 + 34 - - true - true - 1 - false - 39872d87:13e14015f61:317c + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)HR$(N)_Theta2AO.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)HR$(N)_Theta2AO.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 19 false - $(pv_name) -$(pv_value) 490 + 19 - - true - 1 - 39872d87:13e14015f61:317d + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + LowLim + + true + 1 + true + Label + 50 + false + 593 + 75 + + + + false - - - - Label - true - LowLim - - - - 50 - 0 - - 1 - 0 - - 75 - true - - 593 - - - true - 1 - 39872d87:13e14015f61:317e - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true Desired - - - - 50 - 0 - - 1 - - - - 0 - - 55 - true + true + 1 + true + Label + 50 + false 593 + 55 - - true - 1 - 39872d87:13e14015f61:317f + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Actual + + true + 1 + true + Label + 50 + false + 593 + 37 + + + + false - - - - Label - true - Actual - - - - 50 - 0 - - 1 - 0 - - 37 - true - - 593 - - - true - 1 - 39872d87:13e14015f61:3180 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true HighLim - - - - 50 - 0 - - 1 - - - - 0 - - 19 - true + true + 1 + true + Label + 50 + false 593 + 19 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3181 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)HR$(N)_Theta1AO.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)HR$(N)_Theta1AO.VAL - - - - false - 0 - - - false - - - - 0 - - 50 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 300 + 50 - - false - true - 39872d87:13e14015f61:3182 - - 20 - Action Button - false - - true - true - false - - $(P)HR$(N)_Theta1IncBO.VAL - - - - - - - Action Button - true - > - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 90 + $(P)HR$(N)_Theta1IncBO.VAL 1 10 + - $(pv_name) -$(pv_value) - 380 - - - false - true - 1 - false - false - - 20 - false - true + false + false - + - Text Input + false + + + + 0 + 1 true - - + Default - 60 - 3 + false + + + + 20 + + Action Button + 0 + $(P)HR$(N)_Theta1IncBO.VAL - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3183 - 0.0 - Text Input + true true false - 1 - false - 0 - $(P)HR$(N)_Theta1TweakAI - - - - false - 0 - - - false - - - - 0 - - 90 + + + > + false $(pv_name) $(pv_value) - 320 + true + Action Button + 20 + 380 + 90 - + + + false + false + false + + + false - true - 39872d87:13e14015f61:3184 - - 20 - Action Button + + + + 3 + 1 + + true + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)HR$(N)_Theta1TweakAI + + false + 0.0 + true true false - $(P)HR$(N)_Theta1DecBO.VAL - - - - - - - Action Button - true - < - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 320 90 + + $(P)HR$(N)_Theta1DecBO.VAL 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)HR$(N)_Theta1DecBO.VAL + + + + true + true + false + + + + < + false $(pv_name) $(pv_value) + true + Action Button + 20 300 + 90 - - true - true - 1 - false - 39872d87:13e14015f61:3185 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)HR$(N)_Theta1AO.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)HR$(N)_Theta1AO.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 75 false - $(pv_name) -$(pv_value) 300 + 75 - - true - 1 - 39872d87:13e14015f61:3186 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + TH1 (deg.) + + true + 1 + true + Label + 100 + false + 300 + 0 + + + + false + false + false - + - - - - Label + true + + + + 0 + 1 true - TH1 (deg.) - + - 100 - 0 + false + + + + 1 + 20 + 0 + Text Update + 0 + true + $(P)HR$(N)_Theta1RdbkAO + + 0.0 - 1 - - - - 1 - - 0 - true - - 300 - - - true - true - 1 - false - 39872d87:13e14015f61:3187 - false - 0.0 - - 20 - Text Update - false true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)HR$(N)_Theta1RdbkAO - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 34 false - $(pv_name) -$(pv_value) 300 + 34 - - true - true - 1 - false - 39872d87:13e14015f61:3188 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)HR$(N)_Theta1AO.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)HR$(N)_Theta1AO.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 19 false - $(pv_name) -$(pv_value) 300 + 19 - - true - true - 1 - false - 39872d87:13e14015f61:3189 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)HR$(N)_LambdaAO.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)HR$(N)_LambdaAO.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 75 false - $(pv_name) -$(pv_value) 110 + 75 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 6 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:318a - 0.0 + false Text Input + 0 + false + 0 + true + $(P)HR$(N)_LambdaAO.VAL + + false + 0.0 + true true false - 6 - false + 0 - $(P)HR$(N)_LambdaAO.VAL - - - - false - 0 - - - false - - - - 0 - - 50 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 110 + 50 - + + + + $(P)HR$(N)_LambdaIncBO.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:318b - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)HR$(N)_LambdaIncBO.VAL + + true true false - $(P)HR$(N)_LambdaIncBO.VAL - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 90 - - - $(P)HR$(N)_LambdaIncBO.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 190 + 90 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 45 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:318c - 0.0 + false Text Input + 0 + false + 0 + true + $(P)HR$(N)_LambdaTweakAI + + false + 0.0 + true true false - 1 - false + 0 - $(P)HR$(N)_LambdaTweakAI - - - - false - 0 - - - false - - - - 0 - - 90 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 45 130 + 90 - + + + + $(P)HR$(N)_LambdaDecBO.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:318d - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)HR$(N)_LambdaDecBO.VAL + + true true false - $(P)HR$(N)_LambdaDecBO.VAL - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 90 - - - $(P)HR$(N)_LambdaDecBO.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 110 + 90 - - true - true - 1 - false - 39872d87:13e14015f61:318e + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)HR$(N)_LambdaTweakAI.EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)HR$(N)_LambdaTweakAI.EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 15 - 0 - - - 1 - - - - 1 - - 92 false - $(pv_name) -$(pv_value) 175 + 92 - - true - true - 1 - false - 39872d87:13e14015f61:318f + + + false false - 0.0 - - 15 - Text Update + false + + + + true + + + + 0 + 1 + true + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)HR$(N)_EAO.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)HR$(N)_EAO.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 75 false - $(pv_name) -$(pv_value) 0 + 75 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3190 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)HR$(N)_EAO.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)HR$(N)_EAO.VAL - - - - false - 0 - - - false - - - - 0 - - 50 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 0 + 50 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3191 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)HR$(N)_ETweakAI + + false + 0.0 + true true false - 1 - false + 0 - $(P)HR$(N)_ETweakAI - - - - false - 0 - - - false - - - - 0 - - 90 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 20 + 90 - + + + + $(P)HR$(N)_EDecBO.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:3192 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)HR$(N)_EDecBO.VAL + + true true false - $(P)HR$(N)_EDecBO.VAL - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 0 90 + + - $(P)HR$(N)_EDecBO.VAL + $(P)HR$(N)_EIncBO.VAL 1 10 + - $(pv_name) -$(pv_value) - 0 - - + false + false + + + false - true - 39872d87:13e14015f61:3193 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)HR$(N)_EIncBO.VAL + + true true false - $(P)HR$(N)_EIncBO.VAL - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 90 - - - $(P)HR$(N)_EIncBO.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 80 + 90 - - true - true - 1 - false - 39872d87:13e14015f61:3194 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)HR$(N)_ETweakAI.EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)HR$(N)_ETweakAI.EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 20 - 0 - - - 1 - - - - 1 - - 92 false - $(pv_name) -$(pv_value) 60 + 92 - - true - true - 1 - false - 39872d87:13e14015f61:3195 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)HR$(N)_EAO.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)HR$(N)_EAO.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 19 false - $(pv_name) -$(pv_value) 0 + 19 - - true - true - 1 - false - 39872d87:13e14015f61:3196 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)HR$(N)_ERdbkAO + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)HR$(N)_ERdbkAO - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 34 false - $(pv_name) -$(pv_value) 0 + 34 - - true - 1 - 39872d87:13e14015f61:3197 + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - E (keV) - - - - 100 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 1 - - 0 - true + Label + + + true + true + false + + + false + E (keV) + true + 1 + true + Label + 100 + false 0 + 0 - - true - true - 1 - false - 39872d87:13e14015f61:3198 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)HR$(N)_LambdaRdbkAO + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)HR$(N)_LambdaRdbkAO - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 34 false - $(pv_name) -$(pv_value) 110 + 34 - - true - true - 1 - false - 39872d87:13e14015f61:3199 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)HR$(N)_LambdaAO.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)HR$(N)_LambdaAO.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 19 false - $(pv_name) -$(pv_value) 110 + 19 - - true - 1 - 39872d87:13e14015f61:319a + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + Lambda (A) + + true + 1 + true + Label + 100 + false + 110 + 0 + + + + false - - - - Label - true - Lambda (A) - - - - 100 - 0 - - 1 - 1 - - 0 - true - - 110 - - - true - 1 - 39872d87:13e14015f61:31aa - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - + L1 + + true + 1 + true Label - true - L2 - - - 20 - 0 - - 1 - - - - 1 - + false + 275 2 - true - - 465 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 20 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:31ab - 0.0 + false Text Input + 0 + false + 0 + true + $(P)HR$(N)_L1AO.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)HR$(N)_L2AO.VAL - - - - false - 0 - - - false - - - - 0 - - 20 + false + true + false + false + + $(pv_name) $(pv_value) - 465 - - + false true - 1 - 39872d87:13e14015f61:31ac + Text Input + 20 + 275 + 20 + + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - + K1 + + true + 1 + true Label - true - K2 - - - 20 - 0 - - 1 - - - - 1 - + false + 250 2 - true - - 440 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 20 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:31ad - 0.0 + false Text Input + 0 + false + 0 + true + $(P)HR$(N)_K1AO.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)HR$(N)_K2AO.VAL - - - - false - 0 - - - false - - - - 0 - - 20 + false + true + false + false + + $(pv_name) $(pv_value) - 440 - - + false true - 1 - 39872d87:13e14015f61:31ae + Text Input + 20 + 250 + 20 + + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - + H1 + + true + 1 + true Label - true - H2 - - - 20 - 0 - - 1 - - - - 1 - + false + 225 2 - true - - 415 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 20 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:31af - 0.0 + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false Text Input + 0 + false + 0 + true + $(P)HR$(N)_H1AO.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)HR$(N)_H2AO.VAL - - - - false - 0 - - - false - - - - 0 - - 20 + false + true + false + false + + $(pv_name) $(pv_value) - 415 - - + false true - 1 - 39872d87:13e14015f61:31b0 + Text Input + 20 + 225 + 20 + + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true a - - - - 15 - 0 - - 1 - - - - 0 - - 43 - true - 415 - - - false - true + true 1 - false + true + Label + 20 + false + 225 + 43 + + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 55 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:31b1 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)HR$(N)_A1AO.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)HR$(N)_A2AO.VAL - - - - false - 0 - - - false - - - - 0 - - 40 + false + true + false + false + + $(pv_name) $(pv_value) - 430 - - - false + false true - 1 - false + Text Input + 55 + 240 + 40 + + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 55 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:31b2 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)HR$(N)_2d1AO + + false + 0.0 + true true false - 1 - false + 0 - $(P)HR$(N)_2d2AO - - - - false - 0 - - - false - - - - 0 - - 63 + false + true + false + false + + $(pv_name) $(pv_value) - 430 - - + false true - 1 - 39872d87:13e14015f61:31b3 + Text Input + 55 + 240 + 63 + + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + 2d + + true + 1 + true + Label + 20 + false + 225 + 66 + + + + true + false + false - + - - - - Label - true - 2d - - - - 15 - 0 - - 1 + false - 0 - - 66 - true - - 415 - - - false - true - true - 39872d87:13e14015f61:31b4 - + 6 + 1 + true + + Default + + false + + + 16 + Menu Button - false + $(P)HR$(N)_1TypeMO + + true true false + + false + $(pv_name) +$(pv_value) false - $(P)HR$(N)_2TypeMO - - - - - - + true Menu Button - true - false - - Default - 70 - 6 - - - - 1 - - - + 225 85 - - $(pv_name) -$(pv_value) - 415 - - true - 1 - 39872d87:13e14015f61:31b6 + + false - - 22 - Label - - true - true - false - - true - false - - - - Label - true - Moving - - - - 70 - 0 - - - - true - - - false - - $(P)HR$(N)_Moving - - - 1 + 0 + 1 + true + + + + + + + 20 1 - - 246 - true - - 553 - - - true - true - 1 - false - 39872d87:13e14015f61:31b7 - false - 0.0 - - 14 - Text Update - false + Label + true true false - 1 - true - false - $(P)HR$(N)_phi1CmdAO + + false + L2 + + true + 1 + true + Label + 20 + false + 465 + 2 + + + + false + false + false - + - - - - Text Update - true - ###### - false - 0 - - - - 89 - 0 - - - 1 + false + 3 + 1 + + true + + + + false + + + + 1 + 20 0 - - 187 - false - $(pv_name) -$(pv_value) - 111 - - - true - true - 1 - false - 39872d87:13e14015f61:31b8 - false + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)HR$(N)_L2AO.VAL + + false 0.0 - - 14 - Text Update - false + true true false - 1 - true + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - $(P)HR$(N)_phi1RdbkAI + true + Text Input + 20 + 465 + 20 + + + + false - + - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - 0 - - 173 - false - $(pv_name) -$(pv_value) - 116 - - - true - 1 - 39872d87:13e14015f61:31ba - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true - Phi 1 - - + K2 + + true + 1 + true + Label + 20 + false + 440 + 2 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + - 90 + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)HR$(N)_K2AO.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 20 + 440 + 20 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + H2 + + true + 1 + true + Label + 20 + false + 415 + 2 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)HR$(N)_H2AO.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 20 + 415 + 20 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 0 + Label + + + true + true + false + + + false + a + + true + 1 + true + Label + 15 + false + 415 + 43 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)HR$(N)_A2AO.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 55 + 430 + 40 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)HR$(N)_2d2AO + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 55 + 430 + 63 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 0 + Label + + + true + true + false + + + false + 2d + + true + 1 + true + Label + 15 + false + 415 + 66 + + + + true + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 16 + + Menu Button + $(P)HR$(N)_2TypeMO + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 70 + 415 + 85 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 22 + 1 + Label + + + + true + + + false + + $(P)HR$(N)_Moving + + + + true + true + false + + + false + Moving + + true + 1 + true + Label + 70 + false + 553 + 246 + + + + false + false + false + + + + true + + + 0 + 1 + true + + + + false + + + + 1 + 14 + 0 + Text Update + 0 + true + $(P)HR$(N)_phi1CmdAO + + 0.0 + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 89 + false + 111 + 187 + + + + false + false + false + + + + true + + + + 0 1 + true + + + + false + + + + 1 + 14 + 0 + Text Update + 0 + true + $(P)HR$(N)_phi1RdbkAI + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 116 + 173 + + + + false + + + + 0 + 1 + true + + + + + + + 20 1 - - 140 - true + Label + + + true + true + false + + + false + Phi 1 + true + 1 + true + Label + 90 + false 106 + 140 - - true - true - 1 - false - 39872d87:13e14015f61:31bb + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)HR$(N)_phi2SetAO + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)HR$(N)_phi2SetAO + 1 + true + Text Update + 94 + false + 205 + 202 + + + + false + false + false - + + true + + + + 0 + 1 + true + + + + false - + - Text Update - true + 1 + 14 + 0 + Text Update + 0 + true + $(P)HR$(N)_phi1SetAO + + 0.0 + + + true + true + false + + + false ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 94 + false + 110 + 202 + + + + false + false false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false 0 - - - - 94 - 0 - + true + $(P)HR$(N)_phi1OffAO - 1 - - - - 0 - - 202 - false - $(pv_name) -$(pv_value) - 205 - - - true - true - 1 - false - 39872d87:13e14015f61:31bc - false + false 0.0 - - 14 - Text Update - false + true true false - 1 - true - false - $(P)HR$(N)_phi1SetAO - - - - - - - Text Update - true - ###### - false - 0 - - - - 94 - 0 - - - 1 - - - - 0 - - 202 - false + + 0 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 94 110 + 215 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 94 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:31bd - 0.0 + false Text Input + 0 + false + 0 + true + $(P)HR$(N)_phi2OffAO + + false + 0.0 + true true false - 1 - false + 0 - $(P)HR$(N)_phi1OffAO - - - - false - 0 - - - false - - - - 0 - - 215 + false + true + false + false + + $(pv_name) $(pv_value) - 110 - - - false + false true - 1 - false + Text Input + 94 + 205 + 215 + + + + false false - - 20 - false - true + false - + - Text Input + true + + + + 0 + 1 true - - + - 94 - 3 + false + + + + 1 + 14 + 0 + Text Update + 0 + true + $(P)HR$(N)_phi2RdbkAI - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:31be 0.0 - Text Input + true true false - 1 + + false + ###### + $(pv_name) +$(pv_value) false - 0 - $(P)HR$(N)_phi2OffAO - - - + 1 + true + Text Update + 80 + false + 211 + 172 + + + + false + 255 + true false - 0 - - - false + + + + false - 0 - - 215 + 0 + 1 + true + false + + Default + + false + + + + 18 + 0 + 1 + Arc + + + + + true + true + true + + + 90 $(pv_name) $(pv_value) - 205 - - - true + 180 true - 1 - false - 39872d87:13e14015f61:31bf - false + Arc + 25 + 96 + 193 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 9 + true + 0 + 1 + Polyline + + + + + + + 0.0 - - 14 - Text Update - false + true true - false + true - 1 - true - false - $(P)HR$(N)_phi2RdbkAI + + $(pv_name) +$(pv_value) + true + true + Polyline + 7 + 104 + 191 + + + + false + 255 + true + 20 + 0 + false - + - - - - Text Update + false + + + + 0 + 1 true - ###### - false - 0 + true + 100.0 - + Default - 80 - 0 - + false + + + + 1 + true + 0 + 1 + Polyline + + + + + - 1 - - - - 0 - - 172 - false + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 211 - - + true true - 1 - 39872d87:13e14015f61:31c5 + Polyline + 19 + 75 + 205 + + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true Phi 2 - - - - 90 - 0 - - 1 - - - - 1 - - 140 - true + true + 1 + true + Label + 90 + false 211 + 140 - - true - true - 1 - false - 39872d87:13e14015f61:31c6 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)HR$(N)_phi1PvSI + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)HR$(N)_phi1PvSI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 89 - 0 - - - 1 - - - - 0 - - 157 false - $(pv_name) -$(pv_value) 110 + 157 - - true - true - 1 - false - 39872d87:13e14015f61:31c7 + + + false false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(P)HR$(N)_phi2PvSI + false - + - - - - Text Update - true - ###### - false - 0 - - - - 89 - 0 - - - 1 + true - 0 - - 157 - false - $(pv_name) -$(pv_value) - 206 - - - true - true - 1 - false - 39872d87:13e14015f61:31c8 - false - 0.0 - + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)HR$(N)_phi2PvSI + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)HR$(N)_phi2CmdAO - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 89 - 0 - - - 1 + false + 206 + 157 + + + + false + false + false + + + + true - 0 - - 187 - false - $(pv_name) -$(pv_value) - 207 - - - false - true - 39872d87:13e14015f61:31ca - - 45 - Choice Button + 0 + 1 + true + + + false + + + + 1 + 14 + 0 + Text Update + 0 + true + $(P)HR$(N)_phi2CmdAO + + 0.0 + true true false - $(P)HR$(N)_ModeBO.VAL + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 89 + false + 207 + 187 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 75 - 0 - - - - - + false + + + + 45 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 162 - $(pv_name) -$(pv_value) - 2 - - - false - true - 39872d87:13e14015f61:31cb - - 25 - Action Button - false + Choice Button + $(P)HR$(N)_ModeBO.VAL + + true true false - $(P)HR$(N)_PutBO - - - - - - - Action Button - true - Move - false - - Default - + + + + + $(pv_name) +$(pv_value) + true + Choice Button 75 - 0 - 0 - - - - false - 1 - - - - 210 + 2 + 162 + + $(P)HR$(N)_PutBO 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 25 + + Action Button + 0 + $(P)HR$(N)_PutBO + + + + true + true + false + + + + Move + false $(pv_name) $(pv_value) + true + Action Button + 75 2 + 210 - - true - 1 - 39872d87:13e14015f61:31cc + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Motor Write + + true + 1 + true + Label + 70 + false + 305 + 202 + + + + false - - - - Label - true - Motor Write - - - - 70 - 0 - - 1 - 0 - - 202 - true - - 305 - - - true - 1 - 39872d87:13e14015f61:31cd - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Motor Read + + true + 1 + true + Label + 70 + false + 305 + 172 + + + + false - - - - Label - true - Motor Read - - - - 70 - 0 - - 1 - 0 - - 172 - true - - 305 - - - true - 1 - 39872d87:13e14015f61:31ce - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Motor Write + + true + 1 + true + Label + 70 + false + 305 + 187 + + + + false - - - - Label - true - Motor Write - - - - 70 - 0 - - 1 - 0 - - 187 - true - - 305 - - - true - 1 - 39872d87:13e14015f61:31cf - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Motor PV name + + true + 1 + true + Label + 100 + false + 305 + 157 + + + + false - - - - Label - true - Motor PV name - - - - 100 - 0 - - 1 - 0 - - 157 - true - - 305 - - - true - 1 - 39872d87:13e14015f61:31d0 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Offset + + true + 1 + true + Label + 70 + false + 305 + 218 + + + + false - - - - Label - true - Offset - - - - 70 - 0 - - 1 - 0 - - 218 - true - - 305 - - - true - 1 - 39872d87:13e14015f61:31d1 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true Angle - - - - 70 - 0 - - 1 - - - - 0 - - 234 - true + true + 1 + true + Label + 70 + false 305 + 234 - - true - true - 1 - false - 39872d87:13e14015f61:31d2 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)HR$(N)_phi1RdbkAI.EGU + + 0.0 + true true false - 1 - true - false - $(P)HR$(N)_phi1RdbkAI.EGU - - - - - - - Text Update - true + + false ###### - false - 0 - - - - 25 - 0 - - - 1 - - - - 1 - - 172 - false $(pv_name) $(pv_value) + false + 1 + true + Text Update + 25 + false 385 + 172 - - true - true - 1 - false - 39872d87:13e14015f61:31d3 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)HR$(N)_phi1CmdAO.EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)HR$(N)_phi1CmdAO.EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 25 - 0 - - - 1 - - - - 1 - - 187 false - $(pv_name) -$(pv_value) 385 + 187 - - true - true - 1 - false - 39872d87:13e14015f61:31d4 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)HR$(N)_phi1SetAO.EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)HR$(N)_phi1SetAO.EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 25 - 0 - - - 1 - - - - 1 - - 202 false - $(pv_name) -$(pv_value) 385 + 202 - - true - true - 1 - false - 39872d87:13e14015f61:31d5 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)HR$(N)_phi1OffAO.EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)HR$(N)_phi1OffAO.EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 218 false - $(pv_name) -$(pv_value) 360 + 218 - - true - true - 1 - false - 39872d87:13e14015f61:31d6 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)HR$(N)_phi1AO.EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)HR$(N)_phi1AO.EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 50 - 0 - - - 1 - - - - 1 - - 234 false - $(pv_name) -$(pv_value) 360 + 234 - - true - true - 1 - false - 39872d87:13e14015f61:31d8 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)HR$(N)_phi2AO + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)HR$(N)_phi2AO - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 94 - 0 - - - 1 - - - - 0 - - 234 false - $(pv_name) -$(pv_value) 205 + 234 - - true - true - 1 - false - 39872d87:13e14015f61:31d9 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)HR$(N)_phi1AO + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)HR$(N)_phi1AO - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 94 - 0 - - - 1 - - - - 0 - - 234 false - $(pv_name) -$(pv_value) 110 + 234 - - true - 1 - 39872d87:13e14015f61:31da + + false - - 22 - Label - - true - true - false - - true - false - - - - Label + + + + 0 + 1 true - Done - + - 70 - 0 + + + + 22 + 1 + Label @@ -5343,761 +5185,749 @@ $(pv_value) $(P)HR$(N)_Moving - 1 - - - - 1 - - 246 - true - - 553 - - - false - true - 39872d87:13e14015f61:31db - - 38 - Action Button - false true true false - $(P)allstop.VAL - - - - - - - Action Button - true - All Stop - false - - Default - - 88 - 0 - 0 - - - - false - 1 - - - - 209 + + false + Done + + true + 1 + true + Label + 70 + false + 553 + 246 + + $(P)allstop.VAL 1 10 + - $(pv_name) -$(pv_value) - 546 - - + false + false + + + false - true - 39872d87:13e14015f61:31dc - - 55 - Choice Button + + + + 0 + 1 + true + + Default + false + + + + 38 + + Action Button + 0 + $(P)allstop.VAL + + true true false - $(P)HR$(N)_Mode2MO.VAL + + + All Stop + false + $(pv_name) +$(pv_value) + true + Action Button + 88 + 546 + 209 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 100 - 0 - - - - - + false + + + + 55 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 195 - $(pv_name) -$(pv_value) - 430 - - - false - true - 39872d87:13e14015f61:31dd - - 22 Choice Button - false + $(P)HR$(N)_Mode2MO.VAL + + true true false - $(P)HR$(N)_UseSetBO.VAL + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 100 + 430 + 195 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 100 - 0 - - - - - + false + + + + 22 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 160 + Choice Button + $(P)HR$(N)_UseSetBO.VAL + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 100 430 + 160 - - true - 1 - 39872d87:13e14015f61:31de + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false - - - - - - - Label - true Calibration - - - - 100 - 0 - - 1 - - - - 1 - - 145 - true + true + 1 + true + Label + 100 + false 430 + 145 - - true - true - 1 - false - 39872d87:13e14015f61:31e0 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 18 + 1 Text Update - false + 0 + true + $(P)HR$(N)_SeqMsg1SI + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)HR$(N)_SeqMsg1SI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 339 - 0 - - - 1 - - - - 1 - - 265 false - $(pv_name) -$(pv_value) 82 + 265 - - true - true - 1 - false - 39872d87:13e14015f61:31e1 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 18 + 1 Text Update - false + 0 + true + $(P)HR$(N)_SeqMsg2SI + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)HR$(N)_SeqMsg2SI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 339 - 0 - - - 1 - - - - 1 - - 285 false - $(pv_name) -$(pv_value) 82 + 285 - + + + + $(P)HR$(N)_OperAckBO + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:31e2 - + + + + 0 + 1 + true + + Default + + false + + + 34 + Action Button - false + 0 + $(P)HR$(N)_OperAckBO + + true true false - $(P)HR$(N)_OperAckBO - - - - - - - Action Button - true + + OK - false - - Default - - 54 - 0 - 0 - - - false - 1 - - - - 266 - - - $(P)HR$(N)_OperAckBO - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 54 5 + 266 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:31e3 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 535 - 0 - 0 - - 1 - 1 - true - - - - - 256 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 535 1 + 256 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 85 - 3 - - 1 + false + + + + 6 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:31e4 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)HR$(N)_worldOffAO.VAL + + false + 0.0 + true true false - 6 - false + 0 - $(P)HR$(N)_worldOffAO.VAL - - - - false - 0 - - - false + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 85 + 545 + 157 + + + + + $(P)HR$(N)_worldIncBO.VAL + 1 + 10 + + + + + false + false + + + + false - 0 - - 157 - $(pv_name) -$(pv_value) - 545 - - - false - true - 39872d87:13e14015f61:31e5 - + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)HR$(N)_worldIncBO.VAL + + true true false - $(P)HR$(N)_worldIncBO.VAL - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 182 - - - $(P)HR$(N)_worldIncBO.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 610 + 182 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 45 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:31e6 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)HR$(N)_worldTweakAI + + false + 0.0 + true true false - 1 - false + 0 - $(P)HR$(N)_worldTweakAI - - - - false - 0 - - - false - - - - 0 - - 182 + false + true + false + false + + $(pv_name) $(pv_value) - 565 - - - false + false true - 39872d87:13e14015f61:31e7 - - 20 - Action Button - false - - true - true - false - - $(P)HR$(N)_worldDecBO.VAL - - - - - - - Action Button - true - < - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - + Text Input + 45 + 565 182 + + $(P)HR$(N)_worldDecBO.VAL 1 10 + - $(pv_name) -$(pv_value) - 545 - - - true - 1 - 39872d87:13e14015f61:31e8 - false - - 20 - Label - - true - true - false - - true - false + false + false - + - - - - Label - true - world - - - - 60 - 0 - - 1 + false - 1 - - 140 - true - - 545 - - - true - true - 1 - false - 39872d87:13e14015f61:31e9 - false - 0.0 - - 10 - Text Update + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + $(P)HR$(N)_worldDecBO.VAL + + true true false - 1 - true - false - $(P)HR$(N)_worldOffAO.EGU + + + < + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 545 + 182 + + + + false - - - - - - Text Update - true - ###### - false - 0 - - - - 25 - 0 - - - 1 + + - 1 - - 144 - false - $(pv_name) -$(pv_value) - 605 - - - false - true - false - 39872d87:13e14015f61:31ea - + 0 + 1 + true + + + + + + 20 - Menu Button - false + 1 + Label + true true false - false - + + false + world + + true + 1 + true + Label + 60 + false + 545 + 140 + + + + false + false + false - + - - - - Menu Button + true + + + + 0 + 1 true - false - Default + - 60 - 6 - - + false + + + + 1 + 10 + 1 + Text Update + 0 + true + $(P)HR$(N)_worldOffAO.EGU - 1 - - - - 111 + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 25 + false + 605 + 144 + + scanParms.opi @@ -6106,62 +5936,207 @@ $(pv_value) HR$(N)_E HR$(N)_EAO - 0 + 1 Setup scan parameters + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + ScanParm + false $(pv_name) $(pv_value) + true + Action Button + 60 0 + 111 - + + + + $(P)HR$(N)_E:scanParms.GO + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:31ee - - 20 - Choice Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + $(P)HR$(N)_E:scanParms.GO + + true true false - $(P)HR$(N)_GeomMO.VAL + + + Go + false + $(pv_name) +$(pv_value) + true + Action Button + 21 + 82 + 111 + + + + + $(P)HR$(N)_E:scanParms.LOAD + 1 + 10 + + + + + false + false - + + false + + + + 0 + 1 + true + + Default + + false - + - Choice Button - true + 20 + + Action Button + 0 + $(P)HR$(N)_E:scanParms.LOAD + + + + true + true + false + + + + Ld + false + $(pv_name) +$(pv_value) + true + Action Button + 21 + 62 + 111 + + + + false false + + + + false + + + + 0 + 1 + true - Default + Default - 200 - 0 - - - - - + false + + + + 20 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 112 + Choice Button + $(P)HR$(N)_GeomMO.VAL + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 200 409 + 112 - \ No newline at end of file + diff --git a/opticsApp/op/opi/autoconvert/hr_nested.opi b/opticsApp/op/opi/autoconvert/hr_nested.opi new file mode 100644 index 0000000..1faa75c --- /dev/null +++ b/opticsApp/op/opi/autoconvert/hr_nested.opi @@ -0,0 +1,1188 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 289 + + true + + hr_nested + + + true + true + false + true + false + Display + 456 + 243 + 448 + + + false + true + + + + + + + 0 + 1 + 0 + 0 + 0 + 0 + 0 + true + false + false + + Default + + + + + 289 + hr_nested.gif + Image + false + + + 1.0 + 0.0 + + + 0.0 + 1.0 + + + + + true + true + false + + + true + + false + true + Image + 456 + 0 + 0 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 42 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 26 + 242 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 42 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 26 + 242 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 42 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 326 + 158 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 42 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 326 + 158 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 253 + 222 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 253 + 222 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 354 + 70 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 354 + 70 + + + + + $(P)allstop.VAL + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 28 + + Action Button + 0 + $(P)allstop.VAL + + + + true + true + false + + + + All Stop + false + $(pv_name) +$(pv_value) + true + Action Button + 88 + 351 + 255 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)HR$(N)_Theta1RdbkAO + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 61 + false + 28 + 258 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)HR$(N)_Theta1AO.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 61 + 28 + 268 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Theta1 + + true + 1 + true + Label + 60 + false + 28 + 242 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)HR$(N)_Theta2RdbkAO + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 61 + false + 328 + 174 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)HR$(N)_Theta2AO.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 61 + 328 + 184 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Theta2 + + true + 1 + true + Label + 60 + false + 328 + 158 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)HR$(N)_phi1RdbkAI + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 61 + false + 255 + 238 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Phi1 + + true + 1 + true + Label + 60 + false + 255 + 222 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)HR$(N)_phi1AO + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 61 + false + 255 + 248 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)HR$(N)_phi2RdbkAI + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 61 + false + 356 + 86 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Phi2 + + true + 1 + true + Label + 60 + false + 356 + 70 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)HR$(N)_phi2AO + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 61 + false + 356 + 96 + + diff --git a/opticsApp/op/opi/autoconvert/hr_symmetric.opi b/opticsApp/op/opi/autoconvert/hr_symmetric.opi new file mode 100644 index 0000000..8cb9d30 --- /dev/null +++ b/opticsApp/op/opi/autoconvert/hr_symmetric.opi @@ -0,0 +1,1188 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 290 + + true + + hr_symmetric + + + true + true + false + true + false + Display + 456 + 30 + 85 + + + false + true + + + + + + + 0 + 1 + 0 + 0 + 0 + 0 + 0 + true + false + false + + Default + + + + + 290 + hr_symmetric.gif + Image + false + + + 1.0 + 0.0 + + + 0.0 + 1.0 + + + + + true + true + false + + + true + + false + true + Image + 460 + 0 + 0 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 42 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 65 + 200 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 42 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 65 + 200 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 42 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 300 + 200 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 42 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 300 + 200 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 145 + 235 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 145 + 235 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 215 + 235 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 215 + 235 + + + + + $(P)allstop.VAL + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 28 + + Action Button + 0 + $(P)allstop.VAL + + + + true + true + false + + + + All Stop + false + $(pv_name) +$(pv_value) + true + Action Button + 88 + 351 + 255 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)HR$(N)_Theta1RdbkAO + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 61 + false + 67 + 216 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)HR$(N)_Theta1AO.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 61 + 67 + 226 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Theta1 + + true + 1 + true + Label + 60 + false + 67 + 200 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)HR$(N)_Theta2RdbkAO + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 61 + false + 302 + 216 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)HR$(N)_Theta2AO.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 61 + 302 + 226 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Theta2 + + true + 1 + true + Label + 60 + false + 302 + 200 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)HR$(N)_phi1RdbkAI + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 61 + false + 147 + 251 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Phi1 + + true + 1 + true + Label + 60 + false + 147 + 235 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)HR$(N)_phi1AO + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 61 + false + 147 + 261 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)HR$(N)_phi2RdbkAI + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 61 + false + 217 + 251 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Phi2 + + true + 1 + true + Label + 60 + false + 217 + 235 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)HR$(N)_phi2AO + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 61 + false + 217 + 261 + + diff --git a/opticsApp/op/opi/autoconvert/kohzu2Graphic.opi b/opticsApp/op/opi/autoconvert/kohzu2Graphic.opi new file mode 100644 index 0000000..44a7ace --- /dev/null +++ b/opticsApp/op/opi/autoconvert/kohzu2Graphic.opi @@ -0,0 +1,2914 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 340 + + true + + kohzu2Graphic + + + true + true + false + true + false + Display + 440 + 10 + 10 + + + false + true + + + + + + + 0 + 1 + 0 + 0 + 0 + 0 + 0 + true + false + false + + Default + + + + + 340 + kohzu2.gif + Image + false + + + 1.0 + 0.0 + + + 0.0 + 1.0 + + + + + true + true + false + + + true + + false + true + Image + 440 + 0 + 0 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 296 + 220 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 74 + 105 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 40 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 51 + 281 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 357 + 87 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 357 + 87 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 100 + 27 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 74 + 105 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 100 + 27 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 213 + 25 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 196 + 166 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 196 + 166 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 342 + 18 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 342 + 18 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 81 + 212 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 81 + 212 + + + + + $(P)allstop.VAL + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 28 + + Action Button + 0 + $(P)allstop.VAL + + + + true + true + false + + + + All Stop + false + $(pv_name) +$(pv_value) + true + Action Button + 88 + 175 + 276 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mX).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 61 + false + 298 + 232 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mX) + + true + 1 + true + Label + 61 + false + 298 + 222 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(mX).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 61 + 298 + 242 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)BraggThetaRdbkAO + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 53 + 295 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)BraggThetaAO + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 53 + 305 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mX2) + + true + 1 + true + Label + 61 + false + 359 + 89 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mX2).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 61 + false + 359 + 99 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(mX2).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 61 + 359 + 109 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mTH2) + + true + 1 + true + Label + 61 + false + 102 + 29 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mTH2).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 61 + false + 102 + 39 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(mTH2).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 61 + 102 + 49 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mCHI2).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 61 + false + 76 + 117 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(mCHI2).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 61 + 76 + 127 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mCHI2) + + true + 1 + true + Label + 61 + false + 76 + 107 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 1 + Label + + + true + true + false + + + false + Theta(Y,Z) + + true + 1 + true + Label + 60 + false + 53 + 283 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Chi + + true + 1 + true + Label + 60 + false + 76 + 91 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Theta2 + + true + 1 + true + Label + 60 + false + 102 + 13 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mZ2).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 215 + 37 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mZ2) + + true + 1 + true + Label + 60 + false + 215 + 27 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(mZ2).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 215 + 47 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Z2 + + true + 1 + true + Label + 60 + false + 215 + 11 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mY2) + + true + 1 + true + Label + 60 + false + 198 + 168 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mY2).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 198 + 178 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(mY2).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 198 + 188 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Y2 + + true + 1 + true + Label + 60 + false + 198 + 152 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + X + + true + 1 + true + Label + 60 + false + 298 + 206 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + X2 + + true + 1 + true + Label + 60 + false + 359 + 73 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mY) + + true + 1 + true + Label + 61 + false + 344 + 20 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mY).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 61 + false + 344 + 30 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(mY).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 61 + 344 + 40 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Y + + true + 1 + true + Label + 60 + false + 344 + 4 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 27 + 140 + 122 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 45 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 44 + 165 + 57 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 28 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 4 + 249 + 63 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 44 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 15 + 204 + 123 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mTH).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 61 + false + 83 + 224 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mTH) + + true + 1 + true + Label + 61 + false + 83 + 214 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(mTH).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 61 + 83 + 234 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Theta + + true + 1 + true + Label + 60 + false + 83 + 198 + + diff --git a/opticsApp/op/opi/autoconvert/kohzuGraphic.opi b/opticsApp/op/opi/autoconvert/kohzuGraphic.opi new file mode 100644 index 0000000..22e3aaa --- /dev/null +++ b/opticsApp/op/opi/autoconvert/kohzuGraphic.opi @@ -0,0 +1,2694 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 340 + + true + + kohzuGraphic + + + true + true + false + true + false + Display + 440 + 10 + 10 + + + false + true + + + + + + + 0 + 1 + 0 + 0 + 0 + 0 + 0 + true + false + false + + Default + + + + + 340 + kohzu.gif + Image + false + + + 1.0 + 0.0 + + + 0.0 + 1.0 + + + + + true + true + false + + + true + + false + true + Image + 440 + 0 + 0 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 40 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 38 + 288 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 73 + 232 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 73 + 232 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 77 + 131 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 77 + 131 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 160 + 42 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 160 + 42 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 231 + 73 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 374 + 24 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 374 + 24 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 317 + 80 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 317 + 80 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 315 + 242 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 214 + 196 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 214 + 196 + + + + + $(P)allstop.VAL + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 28 + + Action Button + 0 + $(P)allstop.VAL + + + + true + true + false + + + + All Stop + false + $(pv_name) +$(pv_value) + true + Action Button + 88 + 181 + 281 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)BraggThetaRdbkAO + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 40 + 302 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)BraggThetaAO + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 40 + 312 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 1 + Label + + + true + true + false + + + false + Theta(Y,Z) + + true + 1 + true + Label + 60 + false + 40 + 290 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mTH).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 61 + false + 75 + 244 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mTH) + + true + 1 + true + Label + 61 + false + 75 + 234 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(mTH).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 61 + 75 + 254 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Theta + + true + 1 + true + Label + 60 + false + 75 + 218 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mCHI2).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 61 + false + 79 + 143 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(mCHI2).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 61 + 79 + 153 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mCHI2) + + true + 1 + true + Label + 61 + false + 79 + 133 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Chi + + true + 1 + true + Label + 60 + false + 79 + 117 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mTH2) + + true + 1 + true + Label + 61 + false + 162 + 44 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mTH2).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 61 + false + 162 + 54 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(mTH2).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 61 + 162 + 64 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Theta2 + + true + 1 + true + Label + 60 + false + 162 + 28 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mZ2).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 233 + 85 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mZ2) + + true + 1 + true + Label + 60 + false + 233 + 75 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(mZ2).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 233 + 95 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Z2 + + true + 1 + true + Label + 60 + false + 233 + 59 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mY) + + true + 1 + true + Label + 61 + false + 376 + 26 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mY).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 61 + false + 376 + 36 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(mY).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 61 + 376 + 46 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Y + + true + 1 + true + Label + 60 + false + 376 + 10 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mX2) + + true + 1 + true + Label + 61 + false + 319 + 82 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mX2).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 61 + false + 319 + 92 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(mX2).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 61 + 319 + 102 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + X2 + + true + 1 + true + Label + 60 + false + 319 + 66 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mX).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 61 + false + 317 + 254 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mX) + + true + 1 + true + Label + 61 + false + 317 + 244 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(mX).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 61 + 317 + 264 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + X + + true + 1 + true + Label + 60 + false + 317 + 228 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mY1) + + true + 1 + true + Label + 60 + false + 216 + 198 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mY1).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 216 + 208 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(mY1).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 216 + 218 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Y1 + + true + 1 + true + Label + 60 + false + 216 + 182 + + diff --git a/opticsApp/op/opi/autoconvert/kohzuGraphicLarge.opi b/opticsApp/op/opi/autoconvert/kohzuGraphicLarge.opi new file mode 100644 index 0000000..1ff9b4e --- /dev/null +++ b/opticsApp/op/opi/autoconvert/kohzuGraphicLarge.opi @@ -0,0 +1,2233 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 680 + + true + + kohzuGraphicLarge + + + true + true + false + true + false + Display + 880 + 10 + 10 + + + false + true + + + + + + + 0 + 1 + 0 + 0 + 0 + 0 + 0 + true + false + false + + Default + + + + + 680 + kohzu.gif + Image + false + + + 1.0 + 0.0 + + + 0.0 + 1.0 + + + + + true + true + false + + + true + + false + true + Image + 880 + 0 + 0 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 32 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 42 + 453 + 196 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 32 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 42 + 389 + 353 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 32 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 42 + 208 + 443 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 32 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 42 + 287 + 243 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 32 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 42 + 320 + 133 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 32 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 42 + 735 + 210 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 32 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 42 + 750 + 34 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 32 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 42 + 543 + 459 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mZ2).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 40 + false + 454 + 197 + + + + + $(P)$(mZ2).JOGF + 1 + 10 + + + + + $(P)$(mZ2).JOGF + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(mZ2).JOGF + + + + true + true + false + + + + + + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 474 + 207 + + + + + $(P)$(mZ2).JOGR + 1 + 10 + + + + + $(P)$(mZ2).JOGR + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(mZ2).JOGR + + + + true + true + false + + + + - + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 454 + 207 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mZ2) + + true + 1 + true + Label + 40 + false + 453 + 186 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mY1).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 40 + false + 390 + 354 + + + + + $(P)$(mY1).JOGF + 1 + 10 + + + + + $(P)$(mY1).JOGF + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(mY1).JOGF + + + + true + true + false + + + + + + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 410 + 364 + + + + + $(P)$(mY1).JOGR + 1 + 10 + + + + + $(P)$(mY1).JOGR + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(mY1).JOGR + + + + true + true + false + + + + - + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 390 + 364 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mY1) + + true + 1 + true + Label + 40 + false + 390 + 343 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mTH).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 40 + false + 209 + 444 + + + + + $(P)$(mTH).JOGF + 1 + 10 + + + + + $(P)$(mTH).JOGF + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(mTH).JOGF + + + + true + true + false + + + + + + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 229 + 454 + + + + + $(P)$(mTH).JOGR + 1 + 10 + + + + + $(P)$(mTH).JOGR + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(mTH).JOGR + + + + true + true + false + + + + - + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 209 + 454 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mTH) + + true + 1 + true + Label + 40 + false + 209 + 433 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mCHI2).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 40 + false + 288 + 244 + + + + + $(P)$(mCHI2).JOGF + 1 + 10 + + + + + $(P)$(mCHI2).JOGF + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(mCHI2).JOGF + + + + true + true + false + + + + + + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 308 + 254 + + + + + $(P)$(mCHI2).JOGR + 1 + 10 + + + + + $(P)$(mCHI2).JOGR + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(mCHI2).JOGR + + + + true + true + false + + + + - + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 288 + 254 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mCHI2) + + true + 1 + true + Label + 40 + false + 288 + 233 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mTH2).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 40 + false + 321 + 134 + + + + + $(P)$(mTH2).JOGF + 1 + 10 + + + + + $(P)$(mTH2).JOGF + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(mTH2).JOGF + + + + true + true + false + + + + + + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 341 + 144 + + + + + $(P)$(mTH2).JOGR + 1 + 10 + + + + + $(P)$(mTH2).JOGR + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(mTH2).JOGR + + + + true + true + false + + + + - + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 321 + 144 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mTH2) + + true + 1 + true + Label + 40 + false + 321 + 123 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mX2).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 40 + false + 736 + 211 + + + + + $(P)$(mX2).JOGF + 1 + 10 + + + + + $(P)$(mX2).JOGF + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(mX2).JOGF + + + + true + true + false + + + + + + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 756 + 221 + + + + + $(P)$(mX2).JOGR + 1 + 10 + + + + + $(P)$(mX2).JOGR + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(mX2).JOGR + + + + true + true + false + + + + - + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 736 + 221 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mX2) + + true + 1 + true + Label + 40 + false + 736 + 200 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mY).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 40 + false + 751 + 35 + + + + + $(P)$(mY).JOGF + 1 + 10 + + + + + $(P)$(mY).JOGF + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(mY).JOGF + + + + true + true + false + + + + + + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 771 + 45 + + + + + $(P)$(mY).JOGR + 1 + 10 + + + + + $(P)$(mY).JOGR + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(mY).JOGR + + + + true + true + false + + + + - + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 751 + 45 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mY) + + true + 1 + true + Label + 40 + false + 751 + 24 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mX).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 40 + false + 544 + 460 + + + + + $(P)$(mX).JOGF + 1 + 10 + + + + + $(P)$(mX).JOGF + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(mX).JOGF + + + + true + true + false + + + + + + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 564 + 470 + + + + + $(P)$(mX).JOGR + 1 + 10 + + + + + $(P)$(mX).JOGR + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(mX).JOGR + + + + true + true + false + + + + - + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 544 + 470 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mX) + + true + 1 + true + Label + 40 + false + 544 + 449 + + diff --git a/opticsApp/op/opi/kohzuSeqCtl.opi b/opticsApp/op/opi/autoconvert/kohzuSeqCtl.opi similarity index 82% rename from opticsApp/op/opi/kohzuSeqCtl.opi rename to opticsApp/op/opi/autoconvert/kohzuSeqCtl.opi index 2f07fd7..c4811a7 100644 --- a/opticsApp/op/opi/kohzuSeqCtl.opi +++ b/opticsApp/op/opi/autoconvert/kohzuSeqCtl.opi @@ -1,135 +1,133 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 200 true - 39872d87:13e14015f61:3577 - 3.1.2.20120830 + kohzuSeqCtl + + true + true + false true - 200 - kohzuSeqCtl false - false - - - - - - Display - true 525 - - true - 5 - - false - -1 - -1 - - - 10 10 - - false - true - 100.0 - - - - 39872d87:13e14015f61:3578 - - - - - 32 - true - Rectangle - false + 10 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 105 - 0 - 0 - - - 1 - 0 - true - - - - - 105 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 0.0 + 32 + true - + - 39872d87:13e14015f61:3583 - - - - - 32 - true + 0 + 0 Rectangle - false - 255 + + + true true false - true - + + $(pv_name) +$(pv_value) + false + true + Rectangle + 105 + 0 + 105 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 70 + false + + + + false + 32 + true + + + 0 - 0 + 2 + Rectangle + + @@ -141,62 +139,62 @@ $(pv_value) $(P)KohzuZDmovBI - - 1 - 2 - true - - - - - 42 - $(pv_name) -$(pv_value) - 450 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3587 - - - - - 32 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 70 + 450 + 42 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 80 + false + + + + false + 32 + true + + + 0 - 0 + 2 + Rectangle + + @@ -208,62 +206,62 @@ $(pv_value) $(P)KohzuThetaDmovBI - - 1 - 2 - true - - - - - 42 + + true + true + false + + $(pv_name) $(pv_value) + true + true + Rectangle + 80 290 - false + 42 - - false - true - 100.0 - - - - 39872d87:13e14015f61:3593 - - - - - 5 - true - Rectangle - false + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 70 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -275,62 +273,62 @@ $(pv_value) $(P)KohzuPutBO.VAL - - 1 - 0 - true - - - - - 60 - $(pv_name) -$(pv_value) - 210 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:3597 - - - - - 34 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 70 + 210 + 60 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 345 + false + + + + false + 34 + true + + + 0 - 0 + 0 + Rectangle + + @@ -342,62 +340,62 @@ $(pv_value) $(P)KohzuAlertBO - - 1 - 0 - true - - - - - 166 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:35af - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 345 + 0 + 166 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 70 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -409,119 +407,119 @@ $(pv_value) $(P)KohzuModeBO.VAL - - 1 - 0 - true - - - - - 60 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 70 210 - false + 60 - + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 32 + true - 39872d87:13e14015f61:35b0 - - - - - 32 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle - true - - - - false - - Default - 105 - 0 - 0 - - - 1 - 0 - true - - - - - 105 - $(pv_name) -$(pv_value) 110 - false + 105 - - false - true - 0.0 - - - - 39872d87:13e14015f61:35ba - - - - - 32 - true - Rectangle - false + + + false 255 - - true - true - false - - true - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 70 + false + + + + false + 32 + true + + + 0 - 0 + 2 + Rectangle + + @@ -533,445 +531,221 @@ $(pv_value) $(P)KohzuYDmovBI - - 1 - 2 - true - - - - - 42 - $(pv_name) -$(pv_value) - 375 - false - - - - true - - true - 39872d87:13e14015f61:358b - - 28 - Grouping Container true true false + + $(pv_name) +$(pv_value) true - false + true + Rectangle + 70 + 375 + 42 + + + + false - + - - - - Grouping Container - true - - Default - - 102 - 0 - - false - 1 - - 88 - - 430 - - true - 1 - 39872d87:13e14015f61:358c - false - - 26 - Label - - true - true - false - - true - false - - - - - - - Label - true - Moving - - - - 100 - 0 - - - - true - - - false - - $(P)KohzuMoving - - - 1 - - - - 1 - - 1 - true - - 1 - - - true - 1 - 39872d87:13e14015f61:358d - false - - 26 - Label - - true - true - false - - true - false - - - - - - - Label - true - Moving - - - - 100 - 0 - - - - true - - - false - - $(P)KohzuMoving - - - 1 - - - - 1 - - 2 - true - - 2 - - - true - 1 - 39872d87:13e14015f61:358e - false - - 26 - Label - - true - true - false - - true - false - - - - - - - Label - true - Moving - - - - 100 - 0 - - - - true - - - false - - $(P)KohzuMoving - - - 1 - - - - 1 - - 0 - true - - 0 - - - - true - 1 - 39872d87:13e14015f61:3579 - false - + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true SCAN CONTROL - - - - 105 - 0 - - 1 - - - - 1 - - 105 - true + true + 1 + true + Label + 105 + false 0 + 105 - - false - true - 39872d87:13e14015f61:357a - - 20 - Action Button - false - - true - true - false - - $(P)allstop.VAL - - - - - - - Action Button - true - Abort - false - - Default - - 40 - 0 - 0 - - - - false - 1 - - - - 115 + $(P)allstop.VAL 1 10 + - $(pv_name) -$(pv_value) - 64 - - + false + false + + + false - true - 39872d87:13e14015f61:357b - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)BraggE:scanParms.GO - - - - - - - Action Button - true - Go - false - - Default - - 20 - 0 - 0 - - - + + + Abort false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 40 + 64 115 + + $(P)BraggE:scanParms.GO 1 10 + - $(pv_name) -$(pv_value) - 43 - - + false + false + + + false - true - 39872d87:13e14015f61:357c - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)BraggE:scanParms.GO + + true true false - $(P)BraggE:scanParms.LOAD - - - - - - + + + Go + false + $(pv_name) +$(pv_value) + true Action Button - true - Ld - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 43 115 + + $(P)BraggE:scanParms.LOAD 1 10 + - $(pv_name) -$(pv_value) - 22 - - + false + false + + + false - true - false - 39872d87:13e14015f61:357d - - 20 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + $(P)BraggE:scanParms.LOAD + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + Ld + false + $(pv_name) +$(pv_value) + true + Action Button 20 - 6 - - - - 1 - - - + 22 115 + + scanParms.opi @@ -980,112 +754,149 @@ $(pv_value) BraggE BraggEAO - 0 + 1 Energy-scan parameters + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + + false $(pv_name) $(pv_value) + true + Action Button + 20 1 + 115 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:357e - 0.0 - - 0 + + Default + + false + + + 138 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 1 + 286 + 1 + + + + false + 255 + true + false - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true + false - - 1 - $(pv_name) -$(pv_value) - 286 - - - false - true + 0 + 1 + true 100.0 + + Default + + false + + + + 16 + true - 39872d87:13e14015f61:357f - 0.0 - - 16 - true + 0 + 0 Polygon - false - 255 - - true - true - true - - false - - - - - - - Polygon - true - false - - Default - - 16 - 0 - 0 + + 0.0 @@ -1097,450 +908,448 @@ $(pv_value) $(P)KohzuModeBO.VAL - - 1 - 0 - true - - - - - 55 + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polygon + 16 275 + 55 - - true - true - 1 - false - 39872d87:13e14015f61:3580 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)KohzuZRdbkAI + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuZRdbkAI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 67 - 0 - - - 1 - - - - 1 - - 43 false - $(pv_name) -$(pv_value) 451 + 43 - - true - true - 1 - false - 39872d87:13e14015f61:3581 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)KohzuZCmdAO + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuZCmdAO - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 67 - 0 - - - 1 - - - - 1 - - 57 false - $(pv_name) -$(pv_value) 451 + 57 - - true - true - 1 - false - 39872d87:13e14015f61:3582 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)KohzuZPvSI + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuZPvSI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 1 - - 32 false - $(pv_name) -$(pv_value) 450 + 32 - - true - true - 1 - false - 39872d87:13e14015f61:3584 + + + false false - 0.0 - - 15 - Text Update - false - - true - true - false - - 1 - true - false - $(P)KohzuThetaRdbkAI + false - + - - - - Text Update - true - ###### - false - 0 - - - - 76 - 0 - - - 1 + true + 0 + 1 + true + + + + false + + + + 1 + 15 1 - - 43 - false + Text Update + 0 + true + $(P)KohzuThetaRdbkAI + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 76 + false 292 + 43 - - true - true - 1 - false - 39872d87:13e14015f61:3585 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)KohzuThetaCmdAO + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuThetaCmdAO - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 76 - 0 - - - 1 - - - - 1 - - 57 false - $(pv_name) -$(pv_value) 292 + 57 - - true - true - 1 - false - 39872d87:13e14015f61:3586 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)KohzuThetaPvSI + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuThetaPvSI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 32 false - $(pv_name) -$(pv_value) 290 + 32 - - true - 1 - 39872d87:13e14015f61:3588 + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 1 Label + true true false - true + false + Theta + + true + 1 + true + Label + 80 + false + 290 + 17 + + + + false - - - - Label - true - Theta - - - - 80 - 0 - - 1 - 1 - - 17 - true - - 290 - - - true - 1 - 39872d87:13e14015f61:3589 - false - + 0 + 1 + true + + + + + + 15 + 1 Label + true true false - true + false - - - - - - - Label - true Z - - - + + true + 1 + true + Label 70 - 0 - - 1 - - - - 1 - - 17 - true - + false 450 + 17 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 100.0 + + Default + + false + + + + 16 + true - 39872d87:13e14015f61:358a - 0.0 - - 16 - true + 0 + 0 Polygon - false - 255 - - true - true - true - - false - - - - - - - Polygon - true - false - - Default - - 16 - 0 - 0 + + 0.0 @@ -1552,512 +1361,630 @@ $(pv_value) $(P)KohzuPutBO.VAL - - 1 - 0 - true - - - - - 55 - $(pv_name) -$(pv_value) - 275 - - - false - true - 39872d87:13e14015f61:358f - - 22 - Choice Button - false true true - false + true - $(P)KohzuUseSetBO.VAL + + $(pv_name) +$(pv_value) + false + true + Polygon + 16 + 275 + 55 + + + + false - + - - - - Choice Button + + + + 0 + 1 true - false - Default + + + + + 26 + 1 + Label + + + + true + + + false + + $(P)KohzuMoving + + + + true + true + false + + + false + Moving + + true + 1 + true + Label 100 - 0 - + false + 431 + 89 + + + + false + - - - - - Choice 1 - Choice 2 - Choice 3 - - 1 - true + - true - - 112 - $(pv_name) -$(pv_value) - 295 - - - true - 1 - 39872d87:13e14015f61:3590 - false - - 14 + 0 + 1 + true + + + + + + + 26 + 1 Label + + + + true + + + false + + $(P)KohzuMoving + + true true false - true + false + Moving + + true + 1 + true + Label + 100 + false + 432 + 90 + + + + false - - - - Label - true - Calibration: - - - - 100 - 0 - - 1 - 0 - - 97 - true - - 295 - - - false - true - 39872d87:13e14015f61:3591 - - 22 - Action Button - false + 0 + 1 + true + + + + + + + 26 + 1 + Label + + + + true + + + false + + $(P)KohzuMoving + + true true false - $(P)allstop.VAL + + false + Moving + + true + 1 + true + Label + 100 + false + 430 + 88 + + + + false + false - + - - - - Action Button - true - All Stop - false - - Default - - 100 + false + + + 0 - 0 - - - - false 1 + true + + Default + + false + + + + 22 + true + + Choice 1 + Choice 2 + Choice 3 + + true + Choice Button + $(P)KohzuUseSetBO.VAL + + + + true + true + false + + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 100 + 295 + 112 + + + + false + + + - 112 + 0 + 1 + true + + + + + + + 14 + 0 + Label + + + true + true + false + + + false + Calibration: + + true + 1 + true + Label + 100 + false + 295 + 97 + + $(P)allstop.VAL 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 22 + + Action Button + 0 + $(P)allstop.VAL + + + + true + true + false + + + + All Stop + false $(pv_name) $(pv_value) + true + Action Button + 100 405 + 112 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:3592 - 0.0 - - 0 + + Default + + false + + + 138 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 1 + 216 + 1 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true + false - - 1 - $(pv_name) -$(pv_value) - 216 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:3594 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 523 - 0 - 0 - - 1 - 1 - true - - - - - 139 - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:3595 - - 18 - Choice Button - false + 0.0 + true true - false + true - $(P)KohzuMode2MO.VAL + + $(pv_name) +$(pv_value) + true + true + Polyline + 523 + 0 + 139 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 475 - 0 - - - - - + false + + + + 18 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 143 + Choice Button + $(P)KohzuMode2MO.VAL + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 475 45 + 143 - + + + + $(P)KohzuOperAckBO + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:3596 - + + + + 0 + 1 + true + + Default + + false + + + 34 + Action Button - false + 0 + $(P)KohzuOperAckBO + + true true false - $(P)KohzuOperAckBO - - - - - - - Action Button - true + + OK - false - - Default - - 50 - 0 - 0 - - - false - 1 - - - - 166 - - - $(P)KohzuOperAckBO - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 50 350 + 166 - - true - true - 1 - false - 39872d87:13e14015f61:3598 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)KohzuSeqMsg1SI + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuSeqMsg1SI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 339 - 0 - - - 1 - - - - 1 - - 168 false - $(pv_name) -$(pv_value) 3 + 168 - - true - true - 1 - false - 39872d87:13e14015f61:3599 + + + false false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(P)KohzuSeqMsg2SI + false - + + true + + + + 0 + 1 + true + + + + false - + - Text Update - true - ###### - false + 1 + 14 + 1 + Text Update 0 - - - - 339 - 0 - + true + $(P)KohzuSeqMsg2SI - 1 - - - - 1 - - 184 - false - $(pv_name) -$(pv_value) - 3 - - - false - true - false - 39872d87:13e14015f61:359a - - 20 - Menu Button - false + 0.0 + true true false + + false + ###### + $(pv_name) +$(pv_value) false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 176 + 1 + true + Text Update + 339 + false + 3 + 184 + + kohzuGraphic.opi @@ -2070,7 +1997,7 @@ $(pv_value) BraggTheta BraggThetaAO - 0 + 1 Kohzu Graphic @@ -2084,7 +2011,7 @@ $(pv_value) BraggTheta BraggThetaAO - 0 + 1 Kohzu Graphic (L) @@ -2092,7 +2019,7 @@ $(pv_value) true - 0 + 1 KohzuSeq (tiny) @@ -2100,7 +2027,7 @@ $(pv_value) true - 0 + 1 KohzuSeq (all) @@ -2110,7 +2037,7 @@ $(pv_value) BraggE BraggEAO - 0 + 1 Energy-scan parameters @@ -2120,7 +2047,7 @@ $(pv_value) BraggTheta BraggThetaAO - 0 + 1 Theta-scan parameters @@ -2130,1245 +2057,1281 @@ $(pv_value) BraggLambda BraggLambdaAO - 0 + 1 Wavelength-scan parameters - $(pv_name) -$(pv_value) - 450 - - - true - 1 - 39872d87:13e14015f61:359b - false - + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + 20 - Label + + Menu Button + + + true true false - true - false + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 20 + 450 + 176 + + + + false - - - - Label - true - More - - - - 40 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 0 - - 178 - true - - 475 - - - true - 1 - 39872d87:13e14015f61:359c - false - - 18 Label + true true false - true + false + More + + true + 1 + true + Label + 40 + false + 475 + 178 + + + + false - - - - Label - true - Mode: - - - - 40 - 0 - - 1 + 0 + 1 + true + + + + + + + 18 0 - - 143 - true - - 5 - - - false - true - 39872d87:13e14015f61:359d - - 45 - Choice Button - false + Label + true true false - $(P)KohzuModeBO.VAL + + false + Mode: + + true + 1 + true + Label + 40 + false + 5 + 143 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 60 - 0 - - - - - + false + + + + 45 + false Choice 1 Choice 2 Choice 3 - 1 - false + true + Choice Button + $(P)KohzuModeBO.VAL + + + + true + true + false + + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 60 + 220 + 5 + + + + + $(P)KohzuPutBO + 1 + 10 + + + + + false + false + + + + false - true - - 5 - $(pv_name) -$(pv_value) - 220 - - - false - true - 39872d87:13e14015f61:359e - + 0 + 1 + true + + Default + + false + + + 25 + Action Button - false + 0 + $(P)KohzuPutBO + + true true false - $(P)KohzuPutBO - - - - - - - Action Button - true + + Move - false - - Default - - 60 - 0 - 0 - - - false - 1 - - - - 75 - - - $(P)KohzuPutBO - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 60 220 + 75 - - true - 1 - 39872d87:13e14015f61:359f + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true TH (deg.) - - - - 100 - 0 - - 1 - - - - 1 - - 0 - true + true + 1 + true + Label + 100 + false 110 + 0 - - true - true - 1 - false - 39872d87:13e14015f61:35a0 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)BraggThetaRdbkAO + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)BraggThetaRdbkAO - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 32 false - $(pv_name) -$(pv_value) 110 + 32 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:35a1 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)BraggThetaAO.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)BraggThetaAO.VAL - - - - false - 0 - - - false - - - - 0 - - 48 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 110 + 48 - + + + + $(P)BraggThetaIncBO.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:35a2 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)BraggThetaIncBO.VAL + + true true false - $(P)BraggThetaIncBO.VAL - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 84 - - - $(P)BraggThetaIncBO.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 190 + 84 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:35a3 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)BraggThetaTweakAI + + false + 0.0 + true true false - 1 - false + 0 - $(P)BraggThetaTweakAI - - - - false - 0 - - - false - - - - 0 - - 84 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 130 + 84 - + + + + $(P)BraggThetaDecBO.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:35a4 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)BraggThetaDecBO.VAL + + true true false - $(P)BraggThetaDecBO.VAL - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 84 - - - $(P)BraggThetaDecBO.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 110 + 84 - - true - true - 1 - false - 39872d87:13e14015f61:35a5 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)BraggThetaAO.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)BraggThetaAO.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 19 false - $(pv_name) -$(pv_value) 110 + 19 - - true - true - 1 - false - 39872d87:13e14015f61:35a6 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)BraggThetaAO.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)BraggThetaAO.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 71 false - $(pv_name) -$(pv_value) 110 + 71 - - true - true - 1 - false - 39872d87:13e14015f61:35a7 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)BraggERdbkAO + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)BraggERdbkAO - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 32 false - $(pv_name) -$(pv_value) 5 + 32 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:35a8 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)BraggEAO.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)BraggEAO.VAL - - - - false - 0 - - - false - - - - 0 - - 48 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 5 + 48 - + + + + $(P)BraggEIncBO.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:35a9 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)BraggEIncBO.VAL + + true true false - $(P)BraggEIncBO.VAL - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 84 - - - $(P)BraggEIncBO.VAL - 1 - 10 - - - $(pv_name) $(pv_value) - 85 - - - false true - 1 - false - false - - 20 - false - true + Action Button + 20 + 85 + 84 + + + + false + false + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:35aa - 0.0 + false Text Input + 0 + false + 0 + true + $(P)BraggETweakAI + + false + 0.0 + true true false - 1 - false + 0 - $(P)BraggETweakAI - - - - false - 0 - - - false - - - - 0 - - 84 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 25 + 84 - + + + + $(P)BraggEDecBO.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:35ab - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)BraggEDecBO.VAL + + true true false - $(P)BraggEDecBO.VAL - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 84 - - - $(P)BraggEDecBO.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 5 + 84 - - true - true - 1 - false - 39872d87:13e14015f61:35ac + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)BraggEAO.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)BraggEAO.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 71 false - $(pv_name) -$(pv_value) 5 + 71 - - true - true - 1 - false - 39872d87:13e14015f61:35ad + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)BraggEAO.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)BraggEAO.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 19 false - $(pv_name) -$(pv_value) 5 - - - true - 1 - 39872d87:13e14015f61:35ae + 19 + + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - E (keV) - - - - 100 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 1 - - 0 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:35b1 - false - - 10 Label + true true false - true + false + E (keV) + + true + 1 + true + Label + 100 + false + 5 + 0 + + + + false - - - - Label - true - SCAN CONTROL - - - - 105 - 0 - - 1 + 0 + 1 + true + + + + + + + 10 1 - - 105 - true - - 110 - - - false - true - 39872d87:13e14015f61:35b2 - - 20 - Action Button - false + Label + true true false - $(P)allstop.VAL - - - - - - - Action Button - true - Abort - false - - Default - - 40 - 0 - 0 - - - - false - 1 - - - - 115 + + false + SCAN CONTROL + + true + 1 + true + Label + 105 + false + 110 + 105 + + $(P)allstop.VAL 1 10 + - $(pv_name) -$(pv_value) - 174 - - + false + false + + + false - true - 39872d87:13e14015f61:35b3 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)BraggTheta:scanParms.GO - - - - - - - Action Button - true - Go - false - - Default - - 20 - 0 - 0 - - - + + + Abort false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 40 + 174 115 + + $(P)BraggTheta:scanParms.GO 1 10 + - $(pv_name) -$(pv_value) - 153 - - + false + false + + + false - true - 39872d87:13e14015f61:35b4 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)BraggTheta:scanParms.GO + + true true false - $(P)BraggTheta:scanParms.LOAD - - - - - - + + + Go + false + $(pv_name) +$(pv_value) + true Action Button - true - Ld - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 153 115 + + $(P)BraggTheta:scanParms.LOAD 1 10 + - $(pv_name) -$(pv_value) - 132 - - + false + false + + + false - true - false - 39872d87:13e14015f61:35b5 - - 20 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + $(P)BraggTheta:scanParms.LOAD + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + Ld + false + $(pv_name) +$(pv_value) + true + Action Button 20 - 6 - - - - 1 - - - + 132 115 + + scanParms.opi @@ -3377,357 +3340,394 @@ $(pv_value) BraggTheta BraggThetaAO - 0 + 1 Theta-scan parameters + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + + false $(pv_name) $(pv_value) + true + Action Button + 20 111 + 115 - - true - 1 - 39872d87:13e14015f61:35b6 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true Monochromator Motors - - - - 230 - 0 - - 1 - - - - 1 - - 0 - true + true + 1 + true + Label + 230 + false 290 + 0 - - true - true - 1 - false - 39872d87:13e14015f61:35b7 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)KohzuYRdbkAI + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuYRdbkAI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 67 - 0 - - - 1 - - - - 1 - - 43 false - $(pv_name) -$(pv_value) 376 + 43 - - true - true - 1 - false - 39872d87:13e14015f61:35b8 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)KohzuYCmdAO + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuYCmdAO - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 67 - 0 - - - 1 - - - - 1 - - 57 false - $(pv_name) -$(pv_value) 376 - - - true - true - 1 - false - 39872d87:13e14015f61:35b9 + 57 + + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)KohzuYPvSI + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuYPvSI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 1 - - 32 false - $(pv_name) -$(pv_value) 375 + 32 - - true - 1 - 39872d87:13e14015f61:35bb + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false - - - - - - - Label - true Y - - - - 70 - 0 - - 1 - - - - 1 - - 17 - true + true + 1 + true + Label + 70 + false 375 + 17 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:35bc - 0.0 - - 0 + + Default + + false + + + 55 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 1 + 372 + 20 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true + false - - 20 - $(pv_name) -$(pv_value) - 372 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:35bd - 0.0 - - 0 + + Default + + false + + + 55 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - 1 - 1 - true - - - - - 20 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 1 447 + 20 - \ No newline at end of file + diff --git a/opticsApp/op/opi/kohzuSeqCtl_All.opi b/opticsApp/op/opi/autoconvert/kohzuSeqCtl_All.opi similarity index 80% rename from opticsApp/op/opi/kohzuSeqCtl_All.opi rename to opticsApp/op/opi/autoconvert/kohzuSeqCtl_All.opi index 3c52cc3..d5160dc 100644 --- a/opticsApp/op/opi/kohzuSeqCtl_All.opi +++ b/opticsApp/op/opi/autoconvert/kohzuSeqCtl_All.opi @@ -1,78 +1,76 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 365 true - 39872d87:13e14015f61:3606 - 3.1.2.20120830 + kohzuSeqCtl_All + + true + true + false true - 342 - kohzuSeqCtl_All false - false - - - - - - Display - true 535 - - true - 5 - - false - -1 - -1 - - - 10 - 10 - - false - true - 100.0 - - - - 39872d87:13e14015f61:3607 - - - - - 47 - true - Rectangle - false + 901 + 617 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 366 + false + + + + false + 47 + true + + + 0 - 0 + 0 + Rectangle + + @@ -84,233 +82,233 @@ $(P)KohzuAlertBO - - 1 - 0 - true - - - - - 294 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 366 84 - false + 294 - + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 94 + true - 39872d87:13e14015f61:3608 - - - - - 94 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 115 + 0 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 115 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 0.0 + 97 + true - + - 39872d87:13e14015f61:363c - - - - - 97 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 118 + 0 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 118 - 0 - 0 - - - 1 - 2 + false + + + + false + 83 true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - 39872d87:13e14015f61:3644 - - - - - 83 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle - true - - - - false - - Default - 84 - 0 - 0 - - - 1 - 0 - true - - - - - 137 - $(pv_name) -$(pv_value) 4 - false + 137 - - false - true - 0.0 - - - - 39872d87:13e14015f61:3656 - - - - - 35 - true - Rectangle - false + + + false 255 - - true - true - false - - true - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 94 + false + + + + false + 35 + true + + + 0 - 0 + 2 + Rectangle + + @@ -322,62 +320,62 @@ $(pv_value) $(P)KohzuZDmovBI - - 1 - 2 - true - - - - - 154 - $(pv_name) -$(pv_value) - 306 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3657 - - - - - 35 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 94 + 306 + 154 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 94 + false + + + + false + 35 + true + + + 0 - 0 + 2 + Rectangle + + @@ -389,62 +387,62 @@ $(pv_value) $(P)KohzuThetaDmovBI - - 1 - 2 - true - - - - - 154 - $(pv_name) -$(pv_value) - 113 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3658 - - - - - 35 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 94 + 113 + 154 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 94 + false + + + + false + 35 + true + + + 0 - 0 + 2 + Rectangle + + @@ -456,4102 +454,4178 @@ $(pv_value) $(P)KohzuYDmovBI - - 1 - 2 - true - - - - - 154 - $(pv_name) -$(pv_value) - 209 - false - - - - true - - true - 39872d87:13e14015f61:3640 - - 21 - Grouping Container true true false + + $(pv_name) +$(pv_value) true - false + true + Rectangle + 94 + 209 + 154 + + + + false - + - - - - Grouping Container - true - - Default - - 25 - 0 - - false - 1 - - 177 - - 100 - - false - true - 180 - 39872d87:13e14015f61:3641 - 90 - - 18 - true - Arc - false - 255 - - true - true - true - - - - - - - - - Arc - true - false - - Default - - 25 - 0 - false - 0 - - - 1 - 1 - - - - - 3 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:3642 - 0.0 - - 0 - 9 - true - Polyline - false - 255 - - true - true - true - - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 8 - - - - - true - - true - 39872d87:13e14015f61:365d - - 20 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container + 0 + 1 true - Default + - 122 - 0 - - false - 1 - - - - - 263 - - 119 - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:365e - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)Kohzu_yOffsetAO.VAL - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 62 - - - true - 1 - 39872d87:13e14015f61:365f - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - y offset: - - - - 65 - 0 - - 1 - - - - 0 - - 3 - true - - 0 - - - - true - 1 - 39872d87:13e14015f61:3609 - false - + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true H - - - - 10 - 0 - - 1 - - - - 0 - - 5 - true + true + 1 + true + Label + 10 + false 5 + 5 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 20 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:360a - 0.0 + false Text Input + 0 + false + 0 + true + $(P)BraggHAO.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)BraggHAO.VAL - - - - false - 0 - - - false - - - - 0 - - 5 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 20 15 + 5 - - true - 1 - 39872d87:13e14015f61:360b + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true K - - - - 10 - 0 - - 1 - - - - 0 - - 5 - true + true + 1 + true + Label + 10 + false 43 + 5 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 20 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:360c - 0.0 + false Text Input - - true - true - false - - 1 - false - 0 - $(P)BraggKAO.VAL - - - - false + 0 + false 0 - + true + $(P)BraggKAO.VAL + + false + 0.0 - false - - - - 0 - - 5 + + true + true + false + + + 0 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 20 53 + 5 - - true - 1 - 39872d87:13e14015f61:360d + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true L - - - - 10 - 0 - - 1 - - - - 0 - - 5 - true + true + 1 + true + Label + 10 + false 81 + 5 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 20 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:360e - 0.0 + false Text Input + 0 + false + 0 + true + $(P)BraggLAO.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)BraggLAO.VAL - - - - false - 0 - - - false - - - - 0 - - 5 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 20 91 + 5 - - true - 1 - 39872d87:13e14015f61:360f + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true a - - - - 20 - 0 - - 1 - - - - 0 - - 25 - true + true + 1 + true + Label + 20 + false 9 + 25 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3610 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)BraggAAO.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)BraggAAO.VAL - - - - false - 0 - - - false - - - - 0 - - 25 + false + true + false + false + + $(pv_name) $(pv_value) - 29 - - + false true - 1 - 39872d87:13e14015f61:3611 + Text Input + 60 + 29 + 25 + + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true 2d - - - - 20 - 0 - - 1 - - - - 0 - - 48 - true + true + 1 + true + Label + 20 + false 9 + 48 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3612 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)Bragg2dSpacingAO + + false + 0.0 + true true false - 1 - false + 0 - $(P)Bragg2dSpacingAO - - - - false - 0 - - - false - - - - 0 - - 48 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 29 + 48 - - true - 1 - 39872d87:13e14015f61:3613 + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - Theta - - - - 90 - 0 - - 1 - 1 - - 123 - true - - 110 - - - true - 1 - 39872d87:13e14015f61:3614 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + Theta + + true + 1 + true + Label + 90 + false + 110 + 123 + + + + false - - - - Label - true - Z - - - - 90 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 1 - - 123 - true - - 300 - - - false - true - 39872d87:13e14015f61:3615 - - 45 - Choice Button - false + Label + true true false - $(P)KohzuModeBO.VAL + + false + Z + + true + 1 + true + Label + 90 + false + 300 + 123 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 75 - 0 - - - - - + false + + + + 45 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 142 - $(pv_name) -$(pv_value) - 6 - - - false - true - 39872d87:13e14015f61:3616 - - 25 - Action Button - false + Choice Button + $(P)KohzuModeBO.VAL + + true true false - $(P)KohzuPutBO - - - - - - - Action Button - true - Move - false - - Default - + + + + + $(pv_name) +$(pv_value) + true + Choice Button 75 - 0 - 0 - - - - false - 1 - - - - 190 + 6 + 142 + + $(P)KohzuPutBO 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 25 + + Action Button + 0 + $(P)KohzuPutBO + + + + true + true + false + + + + Move + false $(pv_name) $(pv_value) + true + Action Button + 75 6 + 190 - - true - 1 - 39872d87:13e14015f61:3617 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true TH (deg.) - - - - 100 - 0 - - 1 - - - - 1 - - 1 - true + true + 1 + true + Label + 100 + false 347 + 1 - - true - true - 1 - false - 39872d87:13e14015f61:3618 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)BraggThetaRdbkAO + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)BraggThetaRdbkAO - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 35 false - $(pv_name) -$(pv_value) 347 + 35 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3619 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)BraggThetaAO.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)BraggThetaAO.VAL - - - - false - 0 - - - false - - - - 0 - - 55 + false + true + false + false + + $(pv_name) $(pv_value) - 347 - - - false + false true - 39872d87:13e14015f61:361a - + Text Input + 100 + 347 + 55 + + + + + $(P)BraggThetaIncBO.VAL + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)BraggThetaIncBO.VAL + + true true false - $(P)BraggThetaIncBO.VAL - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 95 - - - $(P)BraggThetaIncBO.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 427 + 95 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:361b - 0.0 + false Text Input + 0 + false + 0 + true + $(P)BraggThetaTweakAI + + false + 0.0 + true true false - 1 - false + 0 - $(P)BraggThetaTweakAI - - - - false - 0 - - - false - - - - 0 - - 95 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 367 + 95 - + + + + $(P)BraggThetaDecBO.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:361c - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)BraggThetaDecBO.VAL + + true true false - $(P)BraggThetaDecBO.VAL - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 95 - - - $(P)BraggThetaDecBO.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 347 + 95 - - true - true - 1 - false - 39872d87:13e14015f61:361d + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)BraggThetaAO.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)BraggThetaAO.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 20 false - $(pv_name) -$(pv_value) 347 + 20 - - true - true - 1 - false - 39872d87:13e14015f61:361e + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)BraggThetaAO.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)BraggThetaAO.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 80 false - $(pv_name) -$(pv_value) 347 + 80 - - true - true - 1 - false - 39872d87:13e14015f61:361f + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)BraggLambdaAO.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)BraggLambdaAO.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 80 false - $(pv_name) -$(pv_value) 237 + 80 - - true - true - 1 - false - 39872d87:13e14015f61:3620 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)BraggEAO.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)BraggEAO.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 80 false - $(pv_name) -$(pv_value) 127 + 80 - - true - true - 1 - false - 39872d87:13e14015f61:3621 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)BraggLambdaRdbkAO + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)BraggLambdaRdbkAO - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 35 false - $(pv_name) -$(pv_value) 237 + 35 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3622 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)BraggLambdaAO.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)BraggLambdaAO.VAL - - - - false - 0 - - - false - - - - 0 - - 55 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 237 + 55 - + + + + $(P)BraggLambdaIncBO.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:3623 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)BraggLambdaIncBO.VAL + + true true false - $(P)BraggLambdaIncBO.VAL - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 95 - - - $(P)BraggLambdaIncBO.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 317 + 95 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3624 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)BraggLambdaTweakAI + + false + 0.0 + true true false - 1 - false + 0 - $(P)BraggLambdaTweakAI - - - - false - 0 - - - false - - - - 0 - - 95 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 257 + 95 - + + + + $(P)BraggLambdaDecBO.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:3625 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)BraggLambdaDecBO.VAL + + true true false - $(P)BraggLambdaDecBO.VAL - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 95 - - - $(P)BraggLambdaDecBO.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 237 + 95 - - true - true - 1 - false - 39872d87:13e14015f61:3626 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 0 Text Update - false + 0 + true + $(P)BraggLambdaAO.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)BraggLambdaAO.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 20 false - $(pv_name) -$(pv_value) 237 + 20 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3627 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)BraggEAO.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)BraggEAO.VAL - - - - false - 0 - - - false - - - - 0 - - 55 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 127 + 55 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3628 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)BraggETweakAI + + false + 0.0 + true true false - 1 - false + 0 - $(P)BraggETweakAI - - - - false - 0 - - - false - - - - 0 - - 95 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 147 + 95 - + + + + $(P)BraggEDecBO.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:3629 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)BraggEDecBO.VAL + + true true false - $(P)BraggEDecBO.VAL - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 127 95 + + - $(P)BraggEDecBO.VAL + $(P)BraggEIncBO.VAL 1 10 + - $(pv_name) -$(pv_value) - 127 - - + false + false + + + false - true - 39872d87:13e14015f61:362a - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)BraggEIncBO.VAL + + true true false - $(P)BraggEIncBO.VAL - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 95 - - - $(P)BraggEIncBO.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 207 + 95 - - true - true - 1 - false - 39872d87:13e14015f61:362b + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)BraggEAO.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)BraggEAO.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 20 false - $(pv_name) -$(pv_value) 127 + 20 - - true - true - 1 - false - 39872d87:13e14015f61:362c + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)BraggERdbkAO + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)BraggERdbkAO - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 35 false - $(pv_name) -$(pv_value) 127 + 35 - - true - 1 - 39872d87:13e14015f61:362d + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + lambda (A) + + true + 1 + true + Label + 100 + false + 237 + 1 + + + + false - - - - Label + + + + 0 + 1 true - lambda (A) - + - 100 - 0 + + + + 20 + 1 + Label - 1 - - - - 1 - - 1 - true - - 237 - - - true - 1 - 39872d87:13e14015f61:362e - false - - 20 - Label true true false - true + false + E (keV) + + true + 1 + true + Label + 100 + false + 127 + 1 + + + + false - - - - Label - true - E (keV) - - - - 100 - 0 - - 1 - 1 - - 1 - true - - 127 - - - true - 1 - 39872d87:13e14015f61:362f - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Speed + + true + 1 + true + Label + 50 + false + 400 + 205 + + + + false - - - - Label - true - Speed - - - - 50 - 0 - - 1 - 0 - - 205 - true - - 400 - - - true - 1 - 39872d87:13e14015f61:3630 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Ideal + + true + 1 + true + Label + 50 + false + 400 + 190 + + + + false - - - - Label - true - Ideal - - - - 50 - 0 - - 1 - 0 - - 190 - true - - 400 - - - true - 1 - 39872d87:13e14015f61:3631 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Actual Pos. + + true + 1 + true + Label + 50 + false + 400 + 155 + + + + false - - - - Label - true - Actual Pos. - - - - 50 - 0 - - 1 - 0 - - 155 - true - - 400 - - - true - 1 - 39872d87:13e14015f61:3632 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Motor Command + + true + 1 + true + Label + 50 + false + 400 + 173 + + + + false - - - - Label - true - Motor Command - - - - 50 - 0 - - 1 - 0 - - 173 - true - - 400 - - - true - 1 - 39872d87:13e14015f61:3633 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Low Limit + + true + 1 + true + Label + 75 + false + 460 + 80 + + + + false - - - - Label - true - Low Limit - - - - 75 - 0 - - 1 - 0 - - 80 - true - - 460 - - - true - 1 - 39872d87:13e14015f61:3634 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Desired + + true + 1 + true + Label + 75 + false + 460 + 60 + + + + false - - - - Label - true - Desired - - - - 75 - 0 - - 1 - 0 - - 60 - true - - 460 - - - true - 1 - 39872d87:13e14015f61:3635 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Actual + + true + 1 + true + Label + 75 + false + 460 + 38 + + + + false - - - - Label - true - Actual - - - - 75 - 0 - - 1 - 0 - - 38 - true - - 460 - - - true - 1 - 39872d87:13e14015f61:3636 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true High Limit - - - - 75 - 0 - - 1 - - - - 0 - - 20 - true + true + 1 + true + Label + 75 + false 460 + 20 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:3637 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 535 - 0 - 0 - - 1 - 1 - true - - - - - 119 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 535 0 + 119 - - true - true - 1 - false - 39872d87:13e14015f61:3638 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 0 Text Update - false + 0 + true + $(P)KohzuThetaRdbkAI + + 0.0 + true true false - 1 - true - false - $(P)KohzuThetaRdbkAI - - - - - - - Text Update - true + + false ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 0 - - 155 - false $(pv_name) $(pv_value) + false + 1 + true + Text Update + 80 + false 120 + 155 - - true - true - 1 - false - 39872d87:13e14015f61:3639 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 0 Text Update - false + 0 + true + $(P)KohzuYRdbkAI + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuYRdbkAI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 0 - - 154 false - $(pv_name) -$(pv_value) 215 + 154 - - true - true - 1 - false - 39872d87:13e14015f61:363a + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 0 Text Update - false + 0 + true + $(P)KohzuZRdbkAI + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuZRdbkAI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 0 - - 155 false - $(pv_name) -$(pv_value) 310 + 155 - + + + + $(P)allstop.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:363b - + + + + 0 + 1 + true + + Default + + false + + + 38 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)allstop.VAL - - - - - - - Action Button - true + + All Stop - false - - Default - - 88 - 0 - 0 - - - false - 1 - - - - 189 - - - $(P)allstop.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 88 445 + 189 - - true - true - 1 - false - 39872d87:13e14015f61:363d + + + false false - 0.0 - - 15 - Text Update - false - - true - true - false - - 1 - true - false - $(P)KohzuZSetAO + false - + + true + + + + 0 + 1 + true + + + + false - + - Text Update - true - ###### - false + 1 + 15 + 0 + Text Update 0 - - - - 80 - 0 - + true + $(P)KohzuZSetAO - 1 - - - - 0 - - 190 - false + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 80 + false 310 + 190 - - true - true - 1 - false - 39872d87:13e14015f61:363e + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 0 Text Update - false + 0 + true + $(P)KohzuYSetAO + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuYSetAO - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 0 - - 190 false - $(pv_name) -$(pv_value) 215 + 190 - - true - true - 1 - false - 39872d87:13e14015f61:363f + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 0 Text Update - false + 0 + true + $(P)KohzuThetaSetAO + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuThetaSetAO + 1 + true + Text Update + 80 + false + 120 + 190 + + + + false + 255 + true + false - + - - - - Text Update + false + + + + 0 + 1 true - ###### - false - 0 + false - + Default - 80 - 0 - + false + + + + 18 + 0 + 1 + Arc + - 1 - - - - 0 - - 190 - false + + + true + true + true + + + 90 $(pv_name) $(pv_value) - 120 + 180 + true + Arc + 25 + 100 + 180 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:3643 - 0.0 - - 0 - 1 - true - Polyline + + Default + false - 255 + + + + 9 + true + 0 + 1 + Polyline + + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 108 + 178 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 19 + false + + + + 1 + true 0 - 0 - - - 1 1 - true - - - - - 189 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 19 79 + 189 - - true - true - 1 - false - 39872d87:13e14015f61:3645 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 18 + 1 Text Update - false + 0 + true + $(P)KohzuSeqMsg1SI + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuSeqMsg1SI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 339 - 0 - - - 1 - - - - 1 - - 299 false - $(pv_name) -$(pv_value) 98 + 299 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:3646 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 535 - 0 - 0 - - 1 - 1 - true - - - - - 289 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 535 -1 + 289 - - true - true - 1 - false - 39872d87:13e14015f61:3647 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 18 + 1 Text Update - false + 0 + true + $(P)KohzuSeqMsg2SI + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuSeqMsg2SI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 339 - 0 - - - 1 - - - - 1 - - 319 false - $(pv_name) -$(pv_value) 98 + 319 - - false - true - 39872d87:13e14015f61:3648 - - 34 - Action Button - false - - true - true - false - - $(P)KohzuOperAckBO - - - - - - - Action Button - true - OK - false - - Default - - 54 - 0 - 0 - - - - false - 1 - - - - 300 + $(P)KohzuOperAckBO 1 10 + - $(pv_name) -$(pv_value) - 21 - - + false + false + + + false - true - true - 39872d87:13e14015f61:3649 - - 16 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 34 + + Action Button + 0 + $(P)KohzuOperAckBO + + true true false - false - $(P)BraggTypeMO + + + OK + false + $(pv_name) +$(pv_value) + true + Action Button + 54 + 21 + 300 + + + + true + false + false - + - - - - Menu Button + false + + + + 6 + 1 true - false - Default + Default - 90 - 6 + false + + + + 16 - + Menu Button + $(P)BraggTypeMO - 1 - - - - 73 - + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 90 16 + 73 - - true - 1 - 39872d87:13e14015f61:364a + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true Y - - - - 90 - 0 - - 1 - - - - 1 - - 122 - true + true + 1 + true + Label + 90 + false 215 + 122 - - true - true - 1 - false - 39872d87:13e14015f61:364b + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 13 + 1 Text Update - false + 0 + true + $(P)KohzuThetaPvSI + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuThetaPvSI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 89 - 0 - - - 1 - - - - 1 - - 140 false - $(pv_name) -$(pv_value) 114 + 140 - - true - true - 1 - false - 39872d87:13e14015f61:364c + + + false false - 0.0 - - 13 - Text Update - false - - true - true - false - - 1 - true - false - $(P)KohzuYPvSI + false - + - - - - Text Update + true + + + + 0 + 1 true - ###### - false - 0 - + - 89 - 0 - - - 1 - - - + false + + + + 1 + 13 1 - - 140 - false + Text Update + 0 + true + $(P)KohzuYPvSI + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 89 + false 210 + 140 - - true - true - 1 - false - 39872d87:13e14015f61:364d + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 13 + 1 Text Update - false + 0 + true + $(P)KohzuZPvSI + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuZPvSI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 89 - 0 - - - 1 - - - - 1 - - 140 false - $(pv_name) -$(pv_value) 306 + 140 - - true - 1 - 39872d87:13e14015f61:364e + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true Motor PV - - - - 50 - 0 - - 1 - - - - 0 - - 138 - true + true + 1 + true + Label + 50 + false 401 + 138 - - true - true - 1 - false - 39872d87:13e14015f61:364f + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 13 + 1 Text Update - false + 0 + true + $(P)KohzuZVelAI + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuZVelAI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 89 - 0 - - - 1 - - - - 1 - - 206 false - $(pv_name) -$(pv_value) 307 + 206 - - true - true - 1 - false - 39872d87:13e14015f61:3650 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 13 + 1 Text Update - false + 0 + true + $(P)KohzuYVelAI + + 0.0 + true true false - 1 - true - false - $(P)KohzuYVelAI - - - - - - - Text Update - true + + false ###### - false - 0 - - - - 89 - 0 - - - 1 - - - - 1 - - 206 - false $(pv_name) $(pv_value) + false + 1 + true + Text Update + 89 + false 211 + 206 - - true - true - 1 - false - 39872d87:13e14015f61:3651 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 13 + 1 Text Update - false + 0 + true + $(P)KohzuThetaVelAI + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuThetaVelAI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 89 - 0 - - - 1 - - - - 1 - - 206 false - $(pv_name) -$(pv_value) 115 + 206 - - false - true - 39872d87:13e14015f61:3652 - - 65 - Choice Button - false - - true - true - false - - $(P)KohzuMode2MO.VAL + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 106 - 0 - - - - - + false + + + + 65 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 222 + Choice Button + $(P)KohzuMode2MO.VAL + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 106 248 + 222 - - true - true - 1 - false - 39872d87:13e14015f61:3653 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 13 + 1 Text Update - false + 0 + true + $(P)KohzuZCmdAO + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuZCmdAO - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 89 - 0 - - - 1 - - - - 1 - - 173 false - $(pv_name) -$(pv_value) 307 + 173 - - true - true - 1 - false - 39872d87:13e14015f61:3654 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 13 + 1 Text Update - false + 0 + true + $(P)KohzuYCmdAO + + 0.0 + true true false - 1 - true - false - $(P)KohzuYCmdAO - - - - - - - Text Update - true + + false ###### - false - 0 - - - - 89 - 0 - - - 1 - - - - 1 - - 173 - false $(pv_name) $(pv_value) + false + 1 + true + Text Update + 89 + false 211 + 173 - - true - true - 1 - false - 39872d87:13e14015f61:3655 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 13 + 1 Text Update - false + 0 + true + $(P)KohzuThetaCmdAO + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuThetaCmdAO + 1 + true + Text Update + 89 + false + 115 + 173 + + + + false + false - + + false + + + + 0 + 1 + true + + Default + + false - + - Text Update + 22 + true + + Choice 1 + Choice 2 + Choice 3 + + true + Choice Button + $(P)KohzuUseSetBO.VAL + + + + true + true + false + + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 100 + 5 + 260 + + + + false + + + + + + + 0 + 1 true - ###### - false - 0 - + - 89 - 0 + + + + 14 + 0 + Label - - 1 + + true + true + false + + + false + Calibration: + + true + 1 + true + Label + 100 + false + 5 + 244 + + + + false + + + + 0 + 1 + true + + + + + + + 22 1 - - 173 + Label + + + + true + + + false + + $(P)KohzuMoving + + + + true + true + false + + + false + Moving + + true + 1 + true + Label + 88 false - $(pv_name) -$(pv_value) - 115 + 445 + 230 - - false - true - 39872d87:13e14015f61:3659 - + + + false + + + + + + + 0 + 1 + true + + + + + + 22 - Choice Button - false + 1 + Label + + + + true + + + false + + $(P)KohzuMoving + + true true false - $(P)KohzuUseSetBO.VAL + + false + Done + + true + 1 + true + Label + 88 + false + 445 + 230 + + + + false + false + false - + - - - - Choice Button + false + + + + 3 + 1 + true - false - Default + - 100 - 0 - - - - + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)Kohzu_yOffsetAO.VAL - - Choice 1 - Choice 2 - Choice 3 - - 1 - true - - - - true - - 260 + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + $(pv_name) $(pv_value) - 5 - - + false true - 1 - 39872d87:13e14015f61:365a + Text Input + 60 + 181 + 263 + + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - Calibration: - - - - 100 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 244 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:365b - false - - 22 Label + true true false - true + false + y offset: + + true + 1 + true + Label + 65 + false + 119 + 266 + + + + false - - - - Label - true - Moving - - - - 88 - 0 - - - - true - - - false - - $(P)KohzuMoving - - - 1 + 0 + 1 + true + + + + + + + 9 1 - - 230 - true - - 445 - - - true - 1 - 39872d87:13e14015f61:365c - false - - 22 Label + true true false - true + false + Channel Cut inhibits + + true + 1 + true + Label + 150 + false + 107 + 230 + + + + false - - - - Label - true - Done - - - - 88 - 0 - - - - true - - - false - - $(P)KohzuMoving - - - 1 - 1 - - 230 - true - - 445 - - - true - 1 - 39872d87:13e14015f61:3660 - false - + 0 + 1 + true + + + + + + 9 + 1 Label + true true false - true + false + Y1 and Z2 motors + + true + 1 + true + Label + 150 + false + 108 + 237 + + + + false - - - - Label - true - Channel Cut inhibits - - - - 150 - 0 - - 1 - 1 - - 230 - true - - 107 - - - true - 1 - 39872d87:13e14015f61:3661 - false - - 9 + 0 + 1 + true + + + + + + + 14 + 0 Label + true true false - true + false + Speed Control: + + true + 1 + true + Label + 100 + false + 20 + 345 + + + + false + false - + - - - - Label + false + + + + 0 + 1 true - Y1 and Z2 motors - + Default - 150 - 0 + false + + + + 22 + true + + Choice 1 + Choice 2 + Choice 3 + + true + Choice Button + $(P)KohzuSpeedCtrl + - 1 - - - - 1 - - 237 - true - - 108 + + true + true + false + + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 150 + 125 + 344 - \ No newline at end of file + diff --git a/opticsApp/op/opi/kohzu2SeqCtl.opi b/opticsApp/op/opi/autoconvert/kohzuSeqCtl_soft.opi similarity index 79% rename from opticsApp/op/opi/kohzu2SeqCtl.opi rename to opticsApp/op/opi/autoconvert/kohzuSeqCtl_soft.opi index 90aab3d..a99c882 100644 --- a/opticsApp/op/opi/kohzu2SeqCtl.opi +++ b/opticsApp/op/opi/autoconvert/kohzuSeqCtl_soft.opi @@ -1,135 +1,133 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 200 true - 39872d87:13e14015f61:334d - 3.1.2.20120830 + kohzuSeqCtl_soft + + true + true + false true - 200 - kohzu2SeqCtl false - false - - - - - - Display - true 525 - - true - 5 - - false - -1 - -1 - - - 10 10 - - false - true - 100.0 - - - - 39872d87:13e14015f61:334e - - - - - 32 - true - Rectangle - false + 25 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 105 - 0 - 0 - - - 1 - 0 - true - - - - - 105 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 0.0 + 32 + true - + - 39872d87:13e14015f61:3359 - - - - - 32 - true + 0 + 0 Rectangle - false - 255 + + + true true false - true - + + $(pv_name) +$(pv_value) + false + true + Rectangle + 105 + 0 + 105 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 70 + false + + + + false + 32 + true + + + 0 - 0 + 2 + Rectangle + + @@ -138,65 +136,65 @@ $(pv_value) false - $(P)KohzuZ2DmovBI + $(P)$(MONO)ZDmov - - 1 - 2 - true - - - - - 42 - $(pv_name) -$(pv_value) - 450 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:335d - - - - - 32 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 70 + 450 + 42 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 80 + false + + + + false + 32 + true + + + 0 - 0 + 2 + Rectangle + + @@ -205,132 +203,132 @@ $(pv_value) false - $(P)KohzuThetaDmovBI + $(P)$(MONO)ThetaDmov - - 1 - 2 - true - - - - - 42 - $(pv_name) -$(pv_value) - 290 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3361 - - - - - 32 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 80 + 290 + 42 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 70 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + - + true - + false - $(P)KohzuY2DmovBI + $(P)$(MONO)Put.VAL - - 1 - 2 - true - - - - - 42 - $(pv_name) -$(pv_value) - 375 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:3370 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 70 + 210 + 60 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 70 + false + + + + false + 34 + true + + + 0 - 0 + 0 + Rectangle + + @@ -339,65 +337,65 @@ $(pv_value) false - $(P)KohzuPutBO.VAL + $(P)$(MONO)Alert - - 1 - 0 - true - - - - - 60 - $(pv_name) -$(pv_value) - 210 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:3374 - - - - - 34 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 345 + 0 + 166 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 345 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -406,686 +404,499 @@ $(pv_value) false - $(P)KohzuAlertBO + $(P)$(MONO)Mode.VAL - - 1 - 0 - true - - - - - 166 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:338c - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 70 + 210 + 60 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 70 + false + + + + false + 32 + true + + + 0 - 0 - - - - true - - - false - - $(P)KohzuModeBO.VAL - - - - 1 0 - true - - - - - 60 - $(pv_name) -$(pv_value) - 210 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:338d - - - - - 32 - true Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 105 + 110 + 105 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 105 + false + + + + false + 32 + true + + + 0 - 0 - + 2 + Rectangle + - 1 - 0 - true - - - - - 105 - $(pv_name) -$(pv_value) - 110 - false - - - - true - - true - 39872d87:13e14015f61:3368 - - 28 - Grouping Container + + + + true + + + false + + $(P)$(MONO)YDmov + + true true false + + $(pv_name) +$(pv_value) true - false + true + Rectangle + 70 + 375 + 42 + + + + false - + - - - - Grouping Container - true - - Default - - 102 - 0 - - false - 1 - - 88 - - 430 - - true - 1 - 39872d87:13e14015f61:3369 - false - - 26 - Label - - true - true - false - - true - false - - - - - - - Label - true - Moving - - - - 100 - 0 - - - - true - - - false - - $(P)KohzuMovingBO - - - 1 - - - - 1 - - 1 - true - - 1 - - - true - 1 - 39872d87:13e14015f61:336a - false - - 26 - Label - - true - true - false - - true - false - - - - - - - Label - true - Moving - - - - 100 - 0 - - - - true - - - false - - $(P)KohzuMovingBO - - - 1 - - - - 1 - - 2 - true - - 2 - - - true - 1 - 39872d87:13e14015f61:336b - false - - 26 - Label - - true - true - false - - true - false - - - - - - - Label - true - Moving - - - - 100 - 0 - - - - true - - - false - - $(P)KohzuMovingBO - - - 1 - - - - 1 - - 0 - true - - 0 - - - - true - 1 - 39872d87:13e14015f61:334f - false - + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true SCAN CONTROL - - - - 105 - 0 - - 1 - - - - 1 - - 105 - true + true + 1 + true + Label + 105 + false 0 + 105 - + + + + $(P)allstop.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:3350 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)allstop.VAL - - - - - - - Action Button - true + + Abort - false - - Default - - 40 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 40 + 64 115 + + - $(P)allstop.VAL + $(P)$(MONO)E:scanParms.GO 1 10 + - $(pv_name) -$(pv_value) - 64 - - + false + false + + + false - true - 39872d87:13e14015f61:3351 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(MONO)E:scanParms.GO + + true true false - $(P)BraggE:scanParms.GO - - - - - - - Action Button - true + + Go - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 43 115 + + - $(P)BraggE:scanParms.GO + $(P)$(MONO)E:scanParms.LOAD 1 10 + - $(pv_name) -$(pv_value) - 43 - - + false + false + + + false - true - 39872d87:13e14015f61:3352 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(MONO)E:scanParms.LOAD + + true true false - $(P)BraggE:scanParms.LOAD - - - - - - - Action Button - true + + Ld - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 115 - - - $(P)BraggE:scanParms.LOAD - 1 - 10 - - - $(pv_name) $(pv_value) - 22 - - - false true - false - 39872d87:13e14015f61:3353 - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - + Action Button 20 - 6 - - - - 1 - - - + 22 115 + + scanParms.opi true - BraggE - BraggEAO + $(MONO)E + $(MONO)E - 0 + 1 Energy-scan parameters + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + + false $(pv_name) $(pv_value) + true + Action Button + 20 1 + 115 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:3354 - 0.0 - - 0 + + Default + + false + + + 138 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 1 + 286 + 1 + + + + false + 255 + true + false - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true + false - - 1 - $(pv_name) -$(pv_value) - 286 - - - false - true + 0 + 1 + true 100.0 + + Default + + false + + + + 16 + true - 39872d87:13e14015f61:3355 - 0.0 - - 16 - true + 0 + 0 Polygon - false - 255 - - true - true - true - - false - - - - - - - Polygon - true - false - - Default - - 16 - 0 - 0 + + 0.0 @@ -1094,757 +905,598 @@ $(pv_value) false - $(P)KohzuModeBO.VAL + $(P)$(MONO)Mode.VAL - - 1 - 0 - true - - - - - 55 + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polygon + 16 275 + 55 - - true - true - 1 - false - 39872d87:13e14015f61:3356 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(MONO)ZRdbk + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuZ2RdbkAI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 67 - 0 - - - 1 - - - - 1 - - 43 false - $(pv_name) -$(pv_value) 451 + 43 - - true - true - 1 - false - 39872d87:13e14015f61:3357 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(MONO)ZCmd + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuZ2CmdAO - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 67 - 0 - - - 1 - - - - 1 - - 57 false - $(pv_name) -$(pv_value) 451 + 57 - - true - true - 1 - false - 39872d87:13e14015f61:3358 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(MONO)ZPv + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuZ2PvSI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 1 - - 32 false - $(pv_name) -$(pv_value) 450 + 32 - - true - true - 1 - false - 39872d87:13e14015f61:335a + + + false false - 0.0 - - 15 - Text Update - false - - true - true - false - - 1 - true - false - $(P)KohzuThetaRdbkAI + false - + - - - - Text Update - true - ###### - false - 0 - - - - 76 - 0 - - - 1 + true - 1 - - 43 - false - $(pv_name) -$(pv_value) - 292 - - - true - true - 1 - false - 39872d87:13e14015f61:335b - false - 0.0 - + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(MONO)ThetaMotRdbk + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuThetaCmdAO - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 76 - 0 - - - 1 - - - - 1 - - 57 false - $(pv_name) -$(pv_value) 292 + 43 - - true - true - 1 - false - 39872d87:13e14015f61:335c + + + false false - 0.0 - - 10 - Text Update + false + + + + true + + + + 0 + 1 + true + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(MONO)ThetaCmd + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuThetaPvSI - - - - - - + 1 + true Text Update - true - ###### + 76 + false + 292 + 57 + + + + false + false false - 0 - - - - 80 - 0 - - - 1 + + + + true + 0 + 1 + true + + + + false + + + + 1 + 10 1 - - 32 - false - $(pv_name) -$(pv_value) - 290 - - - true - true - 1 - false - 39872d87:13e14015f61:335e - false - 0.0 - - 15 Text Update - false + 0 + true + $(P)$(MONO)ThetaPv + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuY2RdbkAI + 1 + true + Text Update + 80 + false + 290 + 32 + + + + false - + - - - - Text Update - true - ###### - false - 0 - - - - 67 - 0 - - - 1 - 1 - - 42 - false - $(pv_name) -$(pv_value) - 376 - - - true - true - 1 - false - 39872d87:13e14015f61:335f - false - 0.0 - + 0 + 1 + true + + + + + + 15 - Text Update - false + 1 + Label + true true false - 1 - true - false - $(P)KohzuY2CmdAO + + false + Theta + + true + 1 + true + Label + 80 + false + 290 + 17 + + + + false - + - - - - Text Update - true - ###### - false - 0 - - - - 67 - 0 - - - 1 + 0 + 1 + true + + + + + + + 15 1 - - 57 - false - $(pv_name) -$(pv_value) - 376 - - - true - true - 1 - false - 39872d87:13e14015f61:3360 - false - 0.0 - - 10 - Text Update - false + Label + true true false - 1 - true - false - $(P)KohzuY2PvSI + + false + Z + + true + 1 + true + Label + 70 + false + 450 + 17 + + + + false + 255 + true + false - + - - - - Text Update + false + + + + 0 + 1 true - ###### - false - 0 + 100.0 - + Default - 70 - 0 - + false + + + + 16 + true + + + + 0 + 0 + Polygon + + + + + + + - 1 - - - - 1 - - 32 - false - $(pv_name) -$(pv_value) - 375 - - - true - 1 - 39872d87:13e14015f61:3362 - false - - 15 - Label + 0.0 + + + + true + + + false + + $(P)$(MONO)Put.VAL + + true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Polygon + 16 + 275 + 55 + + + + false - - - - Label - true - Theta - - - - 80 - 0 - - 1 + 0 + 1 + true + + + + + + + 26 1 - - 17 - true - - 290 - - - true - 1 - 39872d87:13e14015f61:3363 - false - - 15 Label + + + + true + + + false + + $(P)$(MONO)Moving + + true true false - true + false + Moving + + true + 1 + true + Label + 100 + false + 431 + 89 + + + + false - - - - Label - true - Z2 - - - - 70 - 0 - - 1 + 0 + 1 + true + + + + + + + 26 1 - - 17 - true - - 450 - - - true - 1 - 39872d87:13e14015f61:3364 - false - - 15 Label + + + + true + + + false + + $(P)$(MONO)Moving + + true true false - true + false + Moving + + true + 1 + true + Label + 100 + false + 432 + 90 + + + + false - - - - Label - true - Y2 - - - - 70 - 0 - - 1 + 0 + 1 + true + + + + + + + 26 1 - - 17 - true - - 375 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:3365 - 0.0 - - 0 - 55 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true - - - - - 20 - $(pv_name) -$(pv_value) - 372 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:3366 - 0.0 - - 0 - 55 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true - - - - - 20 - $(pv_name) -$(pv_value) - 447 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:3367 - 0.0 - - 16 - true - Polygon - false - 255 - - true - true - true - - - - - - - - false - - - - - - - - Polygon - true - false - - Default - - 16 - 0 - 0 + Label @@ -1853,576 +1505,540 @@ $(pv_value) false - $(P)KohzuPutBO.VAL + $(P)$(MONO)Moving - - 1 - 0 - true - - - - - 55 - $(pv_name) -$(pv_value) - 275 - - - false - true - 39872d87:13e14015f61:336c - - 22 - Choice Button - false true true false - $(P)KohzuUseSetBO.VAL + + false + Moving + + true + 1 + true + Label + 100 + false + 430 + 88 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 100 - 0 - - - - - + false + + + + 22 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 112 + Choice Button + $(P)$(MONO)UseSet.VAL + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 100 295 + 112 - - true - 1 - 39872d87:13e14015f61:336d + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true Calibration: - - - - 100 - 0 - - 1 - - - - 0 - - 97 - true + true + 1 + true + Label + 100 + false 295 + 97 - + + + + $(P)allstop.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:336e - + + + + 0 + 1 + true + + Default + + false + + + 22 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)allstop.VAL - - - - - - - Action Button - true + + All Stop - false - - Default - - 100 - 0 - 0 - - - false - 1 - - - - 112 - - - $(P)allstop.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 100 405 + 112 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:336f - 0.0 - - 0 + + Default + + false + + + 138 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 1 + 216 + 1 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true + false - - 1 - $(pv_name) -$(pv_value) - 216 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:3371 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 523 - 0 - 0 - - 1 - 1 - true - - - - - 139 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 523 0 + 139 - + + + false + false + + + false - true - 39872d87:13e14015f61:3372 - + + + + 0 + 1 + true + + Default + + false + + + 18 + true + + Choice 1 + Choice 2 + Choice 3 + + true Choice Button - false + $(P)$(MONO)Mode2.VAL + + true true false - $(P)KohzuMode2MO.VAL - - - - - - - Choice Button - true - false - - Default - - 475 - 0 + - - - - Choice 1 - Choice 2 - Choice 3 - - 1 - true - - - - true - - 143 $(pv_name) $(pv_value) + true + Choice Button + 475 45 + 143 - + + + + $(P)$(MONO)OperAck + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:3373 - + + + + 0 + 1 + true + + Default + + false + + + 34 + Action Button - false + 0 + $(P)$(MONO)OperAck + + true true false - $(P)KohzuOperAckBO - - - - - - - Action Button - true + + OK - false - - Default - - 50 - 0 - 0 - - - false - 1 - - - - 166 - - - $(P)KohzuOperAckBO - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 50 350 + 166 - - true - true - 1 - false - 39872d87:13e14015f61:3375 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)$(MONO)SeqMsg1 + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuSeqMsg1SI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 339 - 0 - - - 1 - - - - 1 - - 168 false - $(pv_name) -$(pv_value) 3 + 168 - - true - true - 1 - false - 39872d87:13e14015f61:3376 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)$(MONO)SeqMsg2 + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuSeqMsg2SI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 339 - 0 - - - 1 - - - - 1 - - 184 false - $(pv_name) -$(pv_value) 3 + 184 - - false - true - false - 39872d87:13e14015f61:3377 - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 176 + - kohzu2Graphic.opi + kohzuGraphic.opi true - m9 - m10 - m11 - m12 - m13 - m14 - m15 - m16 BraggE BraggEAO BraggLambda BraggLambdaAO BraggTheta - BraggThetaAO + BraggTheta - 0 + 1 Kohzu Graphic - kohzu2GraphicLarge.opi + kohzuGraphicLarge.opi true - m9 - m10 - m11 - m12 - m13 - m14 - m15 - m16 BraggE BraggEAO BraggLambda BraggLambdaAO BraggTheta - BraggThetaAO + BraggTheta - 0 + 1 Kohzu Graphic (L) - kohzu2SeqCtl.opi + kohzuSeqCtl_soft_tiny.opi + + true + $(MONO + + 1 + KohzuSeq (tiny) + + + kohzuSeqCtl_soft_All.opi true - 0 - KohzuSeq + 1 + KohzuSeq (all) scanParms.opi true BraggE - BraggEAO + BraggE - 0 + 1 Energy-scan parameters @@ -2430,9 +2046,9 @@ $(pv_value) true BraggTheta - BraggThetaAO + BraggTheta - 0 + 1 Theta-scan parameters @@ -2440,1302 +2056,1679 @@ $(pv_value) true BraggLambda - BraggLambdaAO + BraggLambda - 0 + 1 Wavelength-scan parameters - $(pv_name) -$(pv_value) - 450 - - - true - 1 - 39872d87:13e14015f61:3378 - false - + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + 20 - Label + + Menu Button + + + true true false - true - false + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 20 + 450 + 176 + + + + false - - - - Label - true - More - - - - 40 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 0 - - 178 - true - - 475 - - - true - 1 - 39872d87:13e14015f61:3379 - false - - 18 Label + true true false - true + false + More + + true + 1 + true + Label + 40 + false + 475 + 178 + + + + false - - - - Label - true - Mode: - - - - 40 - 0 - - 1 + 0 + 1 + true + + + + + + + 18 0 - - 143 - true - - 5 - - - false - true - 39872d87:13e14015f61:337a - - 45 - Choice Button - false + Label + true true false - $(P)KohzuModeBO.VAL + + false + Mode: + + true + 1 + true + Label + 40 + false + 5 + 143 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 60 - 0 - - - - - + false + + + + 45 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 5 + Choice Button + $(P)$(MONO)Mode.VAL + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 60 220 + 5 - + + + + $(P)$(MONO)Put + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:337b - + + + + 0 + 1 + true + + Default + + false + + + 25 + Action Button - false + 0 + $(P)$(MONO)Put + + true true false - $(P)KohzuPutBO - - - - - - - Action Button - true + + Move - false - - Default - - 60 - 0 - 0 - - - false - 1 - - - - 75 - - - $(P)KohzuPutBO - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 60 220 + 75 - - true - 1 - 39872d87:13e14015f61:337c + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - TH (deg.) - - - - 100 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 1 - - 0 - true + Label + + + true + true + false + + + false + TH (deg.) + true + 1 + true + Label + 100 + false 110 + 0 - - true - true - 1 - false - 39872d87:13e14015f61:337d + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)$(MONO)Theta.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)BraggThetaRdbkAO - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 32 false - $(pv_name) -$(pv_value) 110 + 32 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:337e - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(MONO)Theta.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)BraggThetaAO.VAL - - - - false - 0 - - - false - - - - 0 - - 48 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 110 + 48 - + + + + $(P)$(MONO)Theta.TWF + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:337f - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(MONO)Theta.TWF + + true true false - $(P)BraggThetaIncBO.VAL - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 84 - - - $(P)BraggThetaIncBO.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 190 + 84 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3380 - 0.0 + false Text Input - - true + 0 + false + 0 + true + $(P)$(MONO)Theta.TWV + + false + 0.0 + + + true true false - 1 - false + 0 - $(P)BraggThetaTweakAI - - - - false - 0 - - - false - - - - 0 - - 84 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 130 + 84 - + + + + $(P)$(MONO)Theta.TWR + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:3381 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(MONO)Theta.TWR + + true true false - $(P)BraggThetaDecBO.VAL - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 84 - - - $(P)BraggThetaDecBO.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 110 + 84 - - true - true - 1 - false - 39872d87:13e14015f61:3382 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(MONO)Theta.HLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)BraggThetaAO.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 19 false - $(pv_name) -$(pv_value) 110 + 19 - - true - true - 1 - false - 39872d87:13e14015f61:3383 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(MONO)Theta.LLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)BraggThetaAO.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 71 false - $(pv_name) -$(pv_value) 110 + 71 - - true - true - 1 - false - 39872d87:13e14015f61:3384 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)$(MONO)E.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)BraggERdbkAO - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 32 false - $(pv_name) -$(pv_value) 5 + 32 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3385 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(MONO)E.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)BraggEAO.VAL - - - - false - 0 - - - false - - - - 0 - - 48 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 5 + 48 - + + + + $(P)$(MONO)E.TWF + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:3386 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(MONO)E.TWF + + true true false - $(P)BraggEIncBO.VAL - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 84 - - - $(P)BraggEIncBO.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 85 + 84 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3387 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(MONO)E.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)BraggETweakAI - - - - false - 0 - - - false - - - - 0 - - 84 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 25 + 84 - + + + + $(P)$(MONO)E.TWR + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:3388 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(MONO)E.TWR + + true true false - $(P)BraggEDecBO.VAL - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 84 - - - $(P)BraggEDecBO.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 5 + 84 - - true - true - 1 - false - 39872d87:13e14015f61:3389 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(MONO)E.LLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)BraggEAO.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 71 false - $(pv_name) -$(pv_value) 5 + 71 - - true - true - 1 - false - 39872d87:13e14015f61:338a + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(MONO)E.HLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)BraggEAO.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 19 false - $(pv_name) -$(pv_value) 5 + 19 - - true - 1 - 39872d87:13e14015f61:338b + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - E (keV) - - - - 100 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 1 - - 0 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:338e - false - - 10 Label + true true false - true + false + E (keV) + + true + 1 + true + Label + 100 + false + 5 + 0 + + + + false - - - - Label - true - SCAN CONTROL - - - - 105 - 0 - - 1 + 0 + 1 + true + + + + + + + 10 1 - - 105 - true - - 110 - - - false - true - 39872d87:13e14015f61:338f - - 20 - Action Button - false + Label + true true false - $(P)allstop.VAL + + false + SCAN CONTROL + + true + 1 + true + Label + 105 + false + 110 + 105 + + + + + $(P)allstop.VAL + 1 + 10 + + + + + false + false - + - - - - Action Button + false + + + + 0 + 1 true - Abort - false - Default + Default - 40 - 0 - 0 + false + + + + 20 - + Action Button + 0 + $(P)allstop.VAL + + + true + true + false + + + + Abort false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 40 + 174 115 + + - $(P)allstop.VAL + $(P)$(MONO)Theta:scanParms.GO 1 10 + - $(pv_name) -$(pv_value) - 174 - - + false + false + + + false - true - 39872d87:13e14015f61:3390 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(MONO)Theta:scanParms.GO + + true true false - $(P)BraggTheta:scanParms.GO - - - - - - - Action Button - true + + Go - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 153 115 + + - $(P)BraggTheta:scanParms.GO + $(P)$(MONO)Theta:scanParms.LOAD 1 10 + - $(pv_name) -$(pv_value) - 153 - - + false + false + + + false - true - 39872d87:13e14015f61:3391 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(MONO)Theta:scanParms.LOAD + + true true false - $(P)BraggTheta:scanParms.LOAD - - - - - - - Action Button - true + + Ld - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 115 - - - $(P)BraggTheta:scanParms.LOAD - 1 - 10 - - - $(pv_name) $(pv_value) - 132 - - - false true - false - 39872d87:13e14015f61:3392 - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - + Action Button 20 - 6 - - - - 1 - - - + 132 115 + + scanParms.opi true - BraggTheta - BraggThetaAO + $(MONO)Theta + $(MONO)Theta - 0 + 1 Theta-scan parameters + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + + false $(pv_name) $(pv_value) + true + Action Button + 20 111 + 115 - - true - 1 - 39872d87:13e14015f61:3393 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true Monochromator Motors - - - + + true + 1 + true + Label 230 - 0 - + false + 290 + 0 + + + + false + false + false + + + + true + + + + 0 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(MONO)YRdbk + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 67 + false + 376 + 43 + + + + false + false + false + + + + true + 0 + 1 + true + + + + false + + + + 1 + 15 1 + Text Update + 0 + true + $(P)$(MONO)YCmd + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 67 + false + 376 + 57 + + - 0 - true + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 1 + Text Update + 0 + true + $(P)$(MONO)YPv + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 70 + false + 375 + 32 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Y - 290 + true + 1 + true + Label + 70 + false + 375 + 17 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 55 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 1 + 372 + 20 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 55 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 1 + 447 + 20 - \ No newline at end of file + diff --git a/opticsApp/op/opi/autoconvert/kohzuSeqCtl_soft_All.opi b/opticsApp/op/opi/autoconvert/kohzuSeqCtl_soft_All.opi new file mode 100644 index 0000000..2578a40 --- /dev/null +++ b/opticsApp/op/opi/autoconvert/kohzuSeqCtl_soft_All.opi @@ -0,0 +1,4631 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 365 + + true + + kohzuSeqCtl_soft_All + + + true + true + false + true + false + Display + 535 + 951 + 454 + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 47 + true + + + + 0 + 0 + Rectangle + + + + + + true + + + false + + $(P)$(MONO)Alert + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 366 + 84 + 294 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 94 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 115 + 0 + 0 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 97 + true + + + + 0 + 2 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 118 + 0 + 0 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 83 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 84 + 4 + 137 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 35 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(MONO)ZDmov + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 94 + 306 + 154 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 35 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(MONO)ThetaDmov + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 94 + 113 + 154 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 35 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(MONO)YDmov + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 94 + 209 + 154 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + H + + true + 1 + true + Label + 10 + false + 5 + 5 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(MONO)H + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 20 + 15 + 5 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + K + + true + 1 + true + Label + 10 + false + 43 + 5 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(MONO)K + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 20 + 53 + 5 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + L + + true + 1 + true + Label + 10 + false + 81 + 5 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(MONO)L + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 20 + 91 + 5 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + a + + true + 1 + true + Label + 20 + false + 9 + 25 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(MONO)A + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 29 + 25 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + 2d + + true + 1 + true + Label + 20 + false + 9 + 48 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(MONO)2dSpacing + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 29 + 48 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + Theta + + true + 1 + true + Label + 90 + false + 110 + 123 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + Z + + true + 1 + true + Label + 90 + false + 300 + 123 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 45 + false + + Choice 1 + Choice 2 + Choice 3 + + true + Choice Button + $(P)$(MONO)Mode.VAL + + + + true + true + false + + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 75 + 6 + 142 + + + + + $(P)$(MONO)Put + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 25 + + Action Button + 0 + $(P)$(MONO)Put + + + + true + true + false + + + + Move + false + $(pv_name) +$(pv_value) + true + Action Button + 75 + 6 + 190 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + TH (deg.) + + true + 1 + true + Label + 100 + false + 347 + 1 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 20 + 0 + Text Update + 0 + true + $(P)$(MONO)Theta.RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 100 + false + 347 + 35 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 25 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(MONO)Theta + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 347 + 55 + + + + + $(P)$(MONO)Theta.TWF + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(MONO)Theta.TWF + + + + true + true + false + + + + > + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 427 + 95 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(MONO)Theta.TWV + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 367 + 95 + + + + + $(P)$(MONO)Theta.TWR + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(MONO)Theta.TWR + + + + true + true + false + + + + < + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 347 + 95 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(MONO)Theta.HLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 100 + false + 347 + 20 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(MONO)Theta.LLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 100 + false + 347 + 80 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(MONO)Lambda.LLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 100 + false + 237 + 80 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(MONO)E.LLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 100 + false + 127 + 80 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 20 + 0 + Text Update + 0 + true + $(P)$(MONO)Lambda.RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 100 + false + 237 + 35 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 25 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(MONO)Lambda + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 237 + 55 + + + + + $(P)$(MONO)Lambda.TWF + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(MONO)Lambda.TWF + + + + true + true + false + + + + > + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 317 + 95 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(MONO)Lambda.TWV + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 257 + 95 + + + + + $(P)$(MONO)Lambda.TWR + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(MONO)Lambda.TWR + + + + true + true + false + + + + < + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 237 + 95 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 0 + Text Update + 0 + true + $(P)$(MONO)Lambda.HLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 100 + false + 237 + 20 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 25 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(MONO)E + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 127 + 55 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(MONO)E.TWV + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 147 + 95 + + + + + $(P)$(MONO)E.TWR + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(MONO)E.TWR + + + + true + true + false + + + + < + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 127 + 95 + + + + + $(P)$(MONO)E.TWF + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(MONO)E.TWF + + + + true + true + false + + + + > + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 207 + 95 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(MONO)E.HLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 100 + false + 127 + 20 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 20 + 0 + Text Update + 0 + true + $(P)$(MONO)E.RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 100 + false + 127 + 35 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + lambda (A) + + true + 1 + true + Label + 100 + false + 237 + 1 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + E (keV) + + true + 1 + true + Label + 100 + false + 127 + 1 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 0 + Label + + + true + true + false + + + false + Speed + + true + 1 + true + Label + 50 + false + 400 + 205 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 0 + Label + + + true + true + false + + + false + Ideal + + true + 1 + true + Label + 50 + false + 400 + 190 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 0 + Label + + + true + true + false + + + false + Actual Pos. + + true + 1 + true + Label + 50 + false + 400 + 155 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 0 + Label + + + true + true + false + + + false + Motor Command + + true + 1 + true + Label + 50 + false + 400 + 173 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 0 + Label + + + true + true + false + + + false + Low Limit + + true + 1 + true + Label + 75 + false + 460 + 80 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 0 + Label + + + true + true + false + + + false + Desired + + true + 1 + true + Label + 75 + false + 460 + 60 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 0 + Label + + + true + true + false + + + false + Actual + + true + 1 + true + Label + 75 + false + 460 + 38 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 0 + Label + + + true + true + false + + + false + High Limit + + true + 1 + true + Label + 75 + false + 460 + 20 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 535 + 0 + 119 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 0 + Text Update + 0 + true + $(P)$(MONO)ThetaMotRdbk + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 120 + 155 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 0 + Text Update + 0 + true + $(P)$(MONO)YRdbk + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 215 + 154 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 0 + Text Update + 0 + true + $(P)$(MONO)ZRdbk + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 310 + 155 + + + + + $(P)allstop.VAL + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 38 + + Action Button + 0 + $(P)allstop.VAL + + + + true + true + false + + + + All Stop + false + $(pv_name) +$(pv_value) + true + Action Button + 88 + 445 + 189 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 0 + Text Update + 0 + true + $(P)$(MONO)ZSet + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 310 + 190 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 0 + Text Update + 0 + true + $(P)$(MONO)YSet + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 215 + 190 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 0 + Text Update + 0 + true + $(P)$(MONO)ThetaSet + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 120 + 190 + + + + false + 255 + true + false + + + + false + + + + 0 + 1 + true + false + + Default + + false + + + + 18 + 0 + 1 + Arc + + + + + true + true + true + + + 90 + $(pv_name) +$(pv_value) + 180 + true + Arc + 25 + 100 + 180 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 9 + true + 0 + 1 + Polyline + + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 7 + 108 + 178 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 19 + 79 + 189 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 18 + 1 + Text Update + 0 + true + $(P)$(MONO)SeqMsg1 + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 339 + false + 98 + 299 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 535 + -1 + 289 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 18 + 1 + Text Update + 0 + true + $(P)$(MONO)SeqMsg2 + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 339 + false + 98 + 319 + + + + + $(P)$(MONO)OperAck + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 34 + + Action Button + 0 + $(P)$(MONO)OperAck + + + + true + true + false + + + + OK + false + $(pv_name) +$(pv_value) + true + Action Button + 54 + 21 + 300 + + + + true + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 16 + + Menu Button + $(P)$(MONO)Type + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 90 + 16 + 73 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + Y + + true + 1 + true + Label + 90 + false + 215 + 122 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 13 + 1 + Text Update + 0 + true + $(P)$(MONO)ThetaPv + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 89 + false + 114 + 140 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 13 + 1 + Text Update + 0 + true + $(P)$(MONO)YPv + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 89 + false + 210 + 140 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 13 + 1 + Text Update + 0 + true + $(P)$(MONO)ZPv + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 89 + false + 306 + 140 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 0 + Label + + + true + true + false + + + false + Motor PV + + true + 1 + true + Label + 50 + false + 401 + 138 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 13 + 1 + Text Update + 0 + true + $(P)$(MONO)ZVel + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 89 + false + 307 + 206 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 13 + 1 + Text Update + 0 + true + $(P)$(MONO)YVel + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 89 + false + 211 + 206 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 13 + 1 + Text Update + 0 + true + $(P)$(MONO)ThetaVel + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 89 + false + 115 + 206 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 65 + false + + Choice 1 + Choice 2 + Choice 3 + + true + Choice Button + $(P)$(MONO)Mode2.VAL + + + + true + true + false + + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 106 + 248 + 222 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 13 + 1 + Text Update + 0 + true + $(P)$(MONO)ZCmd + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 89 + false + 307 + 173 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 13 + 1 + Text Update + 0 + true + $(P)$(MONO)YCmd + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 89 + false + 211 + 173 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 13 + 1 + Text Update + 0 + true + $(P)$(MONO)ThetaCmd + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 89 + false + 115 + 173 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 22 + true + + Choice 1 + Choice 2 + Choice 3 + + true + Choice Button + $(P)$(MONO)UseSet.VAL + + + + true + true + false + + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 100 + 5 + 260 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 0 + Label + + + true + true + false + + + false + Calibration: + + true + 1 + true + Label + 100 + false + 5 + 244 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 22 + 1 + Label + + + + true + + + false + + $(P)$(MONO)Moving + + + + true + true + false + + + false + Moving + + true + 1 + true + Label + 88 + false + 445 + 230 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 22 + 1 + Label + + + + true + + + false + + $(P)$(MONO)Moving + + + + true + true + false + + + false + Done + + true + 1 + true + Label + 88 + false + 445 + 230 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(MONO)yOffset + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 181 + 263 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 0 + Label + + + true + true + false + + + false + y offset: + + true + 1 + true + Label + 65 + false + 119 + 266 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 9 + 1 + Label + + + true + true + false + + + false + Channel Cut inhibits + + true + 1 + true + Label + 150 + false + 107 + 230 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 9 + 1 + Label + + + true + true + false + + + false + Y1 and Z2 motors + + true + 1 + true + Label + 150 + false + 108 + 237 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 0 + Label + + + true + true + false + + + false + Speed Control: + + true + 1 + true + Label + 100 + false + 21 + 344 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 22 + true + + Choice 1 + Choice 2 + Choice 3 + + true + Choice Button + $(P)$(MONO)SpeedCtrl + + + + true + true + false + + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 150 + 126 + 343 + + diff --git a/opticsApp/op/opi/kohzu2SeqCtl_All.opi b/opticsApp/op/opi/autoconvert/kohzuSeqCtl_soft_All_BAK.opi similarity index 83% rename from opticsApp/op/opi/kohzu2SeqCtl_All.opi rename to opticsApp/op/opi/autoconvert/kohzuSeqCtl_soft_All_BAK.opi index e368e7c..5e175df 100644 --- a/opticsApp/op/opi/kohzu2SeqCtl_All.opi +++ b/opticsApp/op/opi/autoconvert/kohzuSeqCtl_soft_All_BAK.opi @@ -1,78 +1,76 @@ - + + + + false + -1 + -1 + false - - true - - 39872d87:13e14015f61:33dc - 3.1.2.20120830 - - true - 342 - kohzu2SeqCtl_All - false - false + 5.1.0.201802081749 - Display - true - 535 + 5 + 342 + + true + + kohzuSeqCtl_soft_All_BAK + + true true - 5 - - false - -1 - -1 - - - 10 - 10 - - false - true - 100.0 - - - - 39872d87:13e14015f61:33e0 - - - - - 47 - true - Rectangle - false + false + true + false + Display + 535 + 816 + 481 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 366 + false + + + + false + 47 + true + + + 0 - 0 + 0 + Rectangle + + @@ -81,236 +79,303 @@ false - $(P)KohzuAlertBO + $(P)$(MONO)Alert - - 1 - 0 - true - - - - - 294 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 366 84 - false + 294 - + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 94 + true - 39872d87:13e14015f61:33e1 - - - - - 94 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 115 + 0 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 115 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 0.0 + 97 + true - 39872d87:13e14015f61:3415 - - - - - 97 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 118 + 0 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 118 - 0 - 0 - - - 1 - 2 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 100.0 + 83 + true - 39872d87:13e14015f61:341d - - - - - 83 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 84 + 4 + 137 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 - 0 - 0 - - - 1 - 0 - true - - - - - 137 - $(pv_name) -$(pv_value) - 4 + false + + + false - - - false - true - 0.0 + 35 + true - 39872d87:13e14015f61:3432 - - - - - 35 - true + 0 + 2 Rectangle - false - 255 + + + + + + true + + + false + + $(P)$(MONO)ZDmov + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 94 + 306 + 154 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 94 + false + + + + false + 35 + true + + + 0 - 0 + 2 + Rectangle + + @@ -319,65 +384,65 @@ $(pv_value) false - $(P)KohzuZ2DmovBI + $(P)$(MONO)ThetaDmov - - 1 - 2 - true - - - - - 154 - $(pv_name) -$(pv_value) - 306 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3433 - - - - - 35 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 94 + 113 + 154 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 94 + false + + + + false + 35 + true + + + 0 - 0 + 2 + Rectangle + + @@ -386,4212 +451,4091 @@ $(pv_value) false - $(P)KohzuThetaDmovBI + $(P)$(MONO)YDmov - - 1 - 2 - true - - - - - 154 + + true + true + false + + $(pv_name) $(pv_value) - 113 - false - - - false + true true - 0.0 - - - - 39872d87:13e14015f61:3434 - - - - - 35 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - Rectangle - true - - - - false - - Default - 94 - 0 - 0 - - - - true - - - false - - $(P)KohzuY2DmovBI - - - - 1 - 2 - true - - - - - 154 - $(pv_name) -$(pv_value) 209 - false + 154 - - - true - - true - 39872d87:13e14015f61:33dd - - 22 - Grouping Container - - true - true - false - - true - false + + + false - + - - - - Grouping Container - true - - Default - - 88 - 0 - - false - 1 - - 230 - - 445 - - true - 1 - 39872d87:13e14015f61:33de - false - - 22 - Label - - true - true - false - - true - false - - - - - - - Label - true - Moving - - - - 88 - 0 - - - - true - - - false - - $(P)KohzuMovingBO - - - 1 - - - - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:33df - false - - 22 - Label - - true - true - false - - true - false - - - - - - - Label - true - Done - - - - 88 - 0 - - - - true - - - false - - $(P)KohzuMovingBO - - - 1 - - - - 1 - - 0 - true - - 0 - - - - - true - - true - 39872d87:13e14015f61:3419 - - 21 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 25 0 - - false 1 - - - - - 177 - - 100 - - false - true - 180 - 39872d87:13e14015f61:341a - 90 - - 18 - true - Arc - false - 255 - - true - true - true - - - - - - - - - Arc - true - false - - Default - - 25 - 0 - false - 0 - - - 1 - 1 - - - - - 3 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:341b - 0.0 - - 0 - 9 - true - Polyline - false - 255 - - true - true - true - - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 8 - - - - - true - - true - 39872d87:13e14015f61:342c - - 16 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container true - Default + - 120 - 0 - - false - 1 - - - - - 230 - - 125 - - true - 1 - 39872d87:13e14015f61:342d - false - - 9 - Label - - true - true - false - - true - false - - - - - - - Label - true - Channel Cut inhibits - - - - 120 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:342e - false - - 9 - Label - - true - true - false - - true - false - - - - - - - Label - true - Y2 and Z2 motors - - - - 120 - 0 - - 1 - - - - 1 - - 7 - true - - 0 - - - - true - 1 - 39872d87:13e14015f61:33e2 - false - + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true H - - - - 10 - 0 - - 1 - - - - 0 - - 5 - true + true + 1 + true + Label + 10 + false 5 + 5 - - false - true - 1 - false + + + false false - - 20 - false - true + false - Text Input + false + + + + 3 + 1 + true - - + - 20 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:33e3 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(MONO)H + + false + 0.0 + true true false - 1 - false + 0 - $(P)BraggHAO.VAL - - - - false - 0 - - - false - - - - 0 - - 5 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 20 15 + 5 - - true - 1 - 39872d87:13e14015f61:33e4 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true K - - - - 10 - 0 - - 1 - - - - 0 - - 5 - true + true + 1 + true + Label + 10 + false 43 + 5 - - false - true - 1 - false + + + false false - - 20 - false - true + false - Text Input + false + + + + 3 + 1 + true - - + - 20 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:33e5 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(MONO)K + + false + 0.0 + true true false - 1 - false + 0 - $(P)BraggKAO.VAL - - - - false - 0 - - - false - - - - 0 - - 5 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 20 53 + 5 - - true - 1 - 39872d87:13e14015f61:33e6 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true L - - - - 10 - 0 - - 1 - - - - 0 - - 5 - true + true + 1 + true + Label + 10 + false 81 + 5 - - false - true - 1 - false + + + false false - - 20 - false - true + false - Text Input + false + + + + 3 + 1 + true - - + - 20 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:33e7 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(MONO)L + + false + 0.0 + true true false - 1 - false + 0 - $(P)BraggLAO.VAL - - - - false - 0 - - - false - - - - 0 - - 5 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 20 91 + 5 - - true - 1 - 39872d87:13e14015f61:33e8 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true a - - - - 20 - 0 - - 1 - - - - 0 - - 25 - true + true + 1 + true + Label + 20 + false 9 + 25 - - false - true - 1 - false + + + false false - - 20 - false - true + false - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:33e9 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(MONO)A + + false + 0.0 + true true false - 1 - false + 0 - $(P)BraggAAO.VAL - - - - false - 0 - - - false - - - - 0 - - 25 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 29 + 25 - - true - 1 - 39872d87:13e14015f61:33ea + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true 2d - - - - 20 - 0 - - 1 - - - - 0 - - 48 - true + true + 1 + true + Label + 20 + false 9 + 48 - - false - true - 1 - false + + + false false - - 20 - false - true + false - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:33eb - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(MONO)2dSpacing + + false + 0.0 + true true false - 1 - false + 0 - $(P)Bragg2dSpacingAO - - - - false - 0 - - - false - - - - 0 - - 48 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 29 + 48 - - true - 1 - 39872d87:13e14015f61:33ec + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + Theta + + true + 1 + true + Label + 90 + false + 110 + 123 + + + + false - - - - Label - true - Theta - - - - 90 - 0 - - 1 - 1 - - 123 - true - - 110 - - - true - 1 - 39872d87:13e14015f61:33ed - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - + Z + + true + 1 + true Label - true - Z2 - - - 90 - 0 - - 1 - - - - 1 - - 123 - true - + false 300 + 123 - - false - true - 39872d87:13e14015f61:33ee - - 45 - Choice Button - false - - true - true - false - - $(P)KohzuModeBO.VAL + + + false + false - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 75 - 0 - - - - - + false + + + + 45 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 142 - $(pv_name) -$(pv_value) - 6 - - - false - true - 39872d87:13e14015f61:33ef - - 25 - Action Button - false + Choice Button + $(P)$(MONO)Mode.VAL + + true true false - $(P)KohzuPutBO + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 75 + 6 + 142 + + + + + $(P)$(MONO)Put + 1 + 10 + + + + + false + false - - - - Action Button + false + + + + 0 + 1 true - Move - false - Default + Default - 75 - 0 - 0 + false + + + + 25 - + Action Button + 0 + $(P)$(MONO)Put + + + true + true + false + + + + Move false - 1 - - - - 190 - - - $(P)KohzuPutBO - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 75 6 + 190 - - true - 1 - 39872d87:13e14015f61:33f0 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true TH (deg.) - - - - 100 - 0 - - 1 - - - - 1 - - 1 - true + true + 1 + true + Label + 100 + false 347 + 1 - - true - true - 1 - false - 39872d87:13e14015f61:33f1 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)$(MONO)Theta.RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)BraggThetaRdbkAO - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 35 false - $(pv_name) -$(pv_value) 347 + 35 - - false - true - 1 - false + + + false false - - 25 - false - true + false - Text Input - true - - - - - 100 + false + + + 3 - 1 + + true + + + + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:33f2 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(MONO)Theta + + false + 0.0 + true true false - 1 - false + 0 - $(P)BraggThetaAO.VAL - - - - false - 0 - - - false - - - - 0 - - 55 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 347 + 55 - + + + + $(P)$(MONO)Theta.TWF + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:33f3 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(MONO)Theta.TWF + + true true false - $(P)BraggThetaIncBO.VAL - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 95 - - - $(P)BraggThetaIncBO.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 427 + 95 - - false - true - 1 - false + + + false false - - 20 - false - true + false - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:33f4 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(MONO)Theta.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)BraggThetaTweakAI - - - - false - 0 - - - false - - - - 0 - - 95 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 367 + 95 - + + + + $(P)$(MONO)Theta.TWR + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:33f5 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(MONO)Theta.TWR + + true true false - $(P)BraggThetaDecBO.VAL - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 95 - - - $(P)BraggThetaDecBO.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 347 + 95 - - true - true - 1 - false - 39872d87:13e14015f61:33f6 + + + false false - 0.0 - - 15 - Text Update - false - - true - true - false - - 1 - true - false - $(P)BraggThetaAO.DRVH + false + true + + + + 0 + 1 + true + + + + false - Text Update - true - ###### - false + 1 + 15 + 1 + Text Update 0 - - - - 100 - 0 - + true + $(P)$(MONO)Theta.HLM - 1 - - - - 1 - - 20 - false - $(pv_name) -$(pv_value) - 347 - - - true - true - 1 - false - 39872d87:13e14015f61:33f7 - false 0.0 - - 15 - Text Update - false + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)BraggThetaAO.DRVL + 1 + true + Text Update + 100 + false + 347 + 20 + + + + false + false + false + true + + + + 0 + 1 + true + + + + false - Text Update - true - ###### - false + 1 + 15 + 1 + Text Update 0 - - - - 100 - 0 - + true + $(P)$(MONO)Theta.LLM - 1 - - - - 1 - - 80 - false - $(pv_name) -$(pv_value) - 347 - - - true - true - 1 - false - 39872d87:13e14015f61:33f8 - false 0.0 - - 15 - Text Update - false + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)BraggLambdaAO.DRVL + 1 + true + Text Update + 100 + false + 347 + 80 + + + + false + false + false + true + + + + 0 + 1 + true + + + + false - Text Update - true - ###### - false + 1 + 15 + 1 + Text Update 0 - - - - 100 - 0 - + true + $(P)$(MONO)Lambda.LLM - 1 - - - - 1 - - 80 - false - $(pv_name) -$(pv_value) - 237 - - - true - true - 1 - false - 39872d87:13e14015f61:33f9 - false 0.0 - - 15 - Text Update - false + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)BraggEAO.DRVL + 1 + true + Text Update + 100 + false + 237 + 80 + + + + false + false + false + true + + + + 0 + 1 + true + + + + false - Text Update - true - ###### - false + 1 + 15 + 1 + Text Update 0 - - - - 100 - 0 - + true + $(P)$(MONO)E.LLM - 1 - - - - 1 - - 80 - false - $(pv_name) -$(pv_value) - 127 - - - true - true - 1 - false - 39872d87:13e14015f61:33fa - false 0.0 - - 20 - Text Update - false + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)BraggLambdaRdbkAO - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 + false + 127 + 80 + + + + false + false + false + + + + true + 0 + 1 + true + + + + false + + + + 1 + 20 0 - - 35 - false + Text Update + 0 + true + $(P)$(MONO)Lambda.RBV + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 100 + false 237 + 35 - - false - true - 1 - false + + + false false - - 25 - false - true + false - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:33fb - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(MONO)Lambda + + false + 0.0 + true true false - 1 - false + 0 - $(P)BraggLambdaAO.VAL - - - - false - 0 - - - false - - - - 0 - - 55 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 237 + 55 - + + + + $(P)$(MONO)Lambda.TWF + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:33fc - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(MONO)Lambda.TWF + + true true false - $(P)BraggLambdaIncBO.VAL - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 95 - - - $(P)BraggLambdaIncBO.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 317 + 95 - - false - true - 1 - false + + + false false - - 20 - false - true + false - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:33fd - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(MONO)Lambda.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)BraggLambdaTweakAI - - - - false - 0 - - - false - - - - 0 - - 95 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 257 + 95 - - false - true - 39872d87:13e14015f61:33fe - - 20 - Action Button - false - - true - true - false - - $(P)BraggLambdaDecBO.VAL + + + + $(P)$(MONO)Lambda.TWR + 1 + 10 + + + + + false + false - - - - Action Button + false + + + + 0 + 1 true - < - false - Default + Default - 20 - 0 - 0 + false + + + + 20 - + Action Button + 0 + $(P)$(MONO)Lambda.TWR + + + true + true + false + + + + < false - 1 - - - - 95 - - - $(P)BraggLambdaDecBO.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 237 + 95 - - true - true - 1 - false - 39872d87:13e14015f61:33ff + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 0 Text Update - false + 0 + true + $(P)$(MONO)Lambda.HLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)BraggLambdaAO.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 20 false - $(pv_name) -$(pv_value) 237 + 20 - - false - true - 1 - false + + + false false - - 25 - false - true + false - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3400 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(MONO)E + + false + 0.0 + true true false - 1 - false + 0 - $(P)BraggEAO.VAL - - - - false - 0 - - - false - - - - 0 - - 55 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 127 + 55 - - false - true - 1 - false + + + false false - - 20 - false - true + false - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3401 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(MONO)E.TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)BraggETweakAI - - - - false - 0 - - - false - - - - 0 - - 95 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 147 + 95 - - false - true - 39872d87:13e14015f61:3402 - - 20 - Action Button - false - - true - true - false - - $(P)BraggEDecBO.VAL + + + + $(P)$(MONO)E.TWR + 1 + 10 + + + + + false + false - - - - Action Button + false + + + + 0 + 1 true - < - false - Default + Default - 20 - 0 - 0 + false + + + + 20 - + Action Button + 0 + $(P)$(MONO)E.TWR + + + true + true + false + + + + < false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 127 95 + + - $(P)BraggEDecBO.VAL + $(P)$(MONO)E.TWF 1 10 + - $(pv_name) -$(pv_value) - 127 - - + false + false + + + false - true - 39872d87:13e14015f61:3403 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(MONO)E.TWF + + true true false - $(P)BraggEIncBO.VAL - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 95 - - - $(P)BraggEIncBO.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 207 + 95 - - true - true - 1 - false - 39872d87:13e14015f61:3404 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(MONO)E.HLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)BraggEAO.DRVH + 1 + true + Text Update + 100 + false + 127 + 20 + + + + false + false + false + true + + + + 0 + 1 + true + + + + false - Text Update - true - ###### - false + 1 + 20 + 0 + Text Update 0 - - - - 100 - 0 - + true + $(P)$(MONO)E.RBV - 1 - - - - 1 - - 20 - false - $(pv_name) -$(pv_value) - 127 - - - true - true - 1 - false - 39872d87:13e14015f61:3405 - false 0.0 - - 20 - Text Update - false + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)BraggERdbkAO - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 35 false - $(pv_name) -$(pv_value) 127 + 35 - - true - 1 - 39872d87:13e14015f61:3406 + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - lambda (A) - - - - 100 - 0 - - 1 - 1 - - 1 - true - - 237 - - - true - 1 - 39872d87:13e14015f61:3407 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + lambda (A) + + true + 1 + true + Label + 100 + false + 237 + 1 + + + + false - - - - Label - true - E (keV) - - - - 100 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 1 - - 1 - true - - 127 - - - true - 1 - 39872d87:13e14015f61:3408 - false - - 14 Label + true true false - true + false + E (keV) + + true + 1 + true + Label + 100 + false + 127 + 1 + + + + false - - - - Label - true - Speed - - - - 50 - 0 - - 1 - 0 - - 205 - true - - 400 - - - true - 1 - 39872d87:13e14015f61:3409 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Speed + + true + 1 + true + Label + 50 + false + 400 + 205 + + + + false - - - - Label - true - Ideal - - - - 50 - 0 - - 1 - 0 - - 190 - true - - 400 - - - true - 1 - 39872d87:13e14015f61:340a - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Ideal + + true + 1 + true + Label + 50 + false + 400 + 190 + + + + false - - - - Label - true - Actual Pos. - - - - 50 - 0 - - 1 - 0 - - 155 - true - - 400 - - - true - 1 - 39872d87:13e14015f61:340b - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Actual Pos. + + true + 1 + true + Label + 50 + false + 400 + 155 + + + + false - - - - Label - true - Motor Command - - - - 50 - 0 - - 1 - 0 - - 173 - true - - 400 - - - true - 1 - 39872d87:13e14015f61:340c - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Motor Command + + true + 1 + true + Label + 50 + false + 400 + 173 + + + + false - - - - Label - true - Low Limit - - - - 75 - 0 - - 1 - 0 - - 80 - true - - 460 - - - true - 1 - 39872d87:13e14015f61:340d - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Low Limit + + true + 1 + true + Label + 75 + false + 460 + 80 + + + + false - - - - Label - true - Desired - - - - 75 - 0 - - 1 - 0 - - 60 - true - - 460 - - - true - 1 - 39872d87:13e14015f61:340e - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Desired + + true + 1 + true + Label + 75 + false + 460 + 60 + + + + false - - - - Label - true - Actual - - - - 75 - 0 - - 1 - 0 - - 38 - true - - 460 - - - true - 1 - 39872d87:13e14015f61:340f - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Actual + + true + 1 + true + Label + 75 + false + 460 + 38 + + + + false - - - - Label - true - High Limit - - - - 75 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 20 - true + Label + + + true + true + false + + + false + High Limit + true + 1 + true + Label + 75 + false 460 + 20 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:3410 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 535 - 0 - 0 - - 1 - 1 - true - - - - - 119 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 535 0 + 119 - - true - true - 1 - false - 39872d87:13e14015f61:3411 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 0 Text Update - false + 0 + true + $(P)$(MONO)ThetaMotRdbk + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuThetaRdbkAI + 1 + true + Text Update + 80 + false + 120 + 155 + + + + false + false + false + true + + + + 0 + 1 + true + + + + false - Text Update - true - ###### - false + 1 + 15 + 0 + Text Update 0 - - - - 80 - 0 - + true + $(P)$(MONO)YRdbk - 1 - - - - 0 - - 155 - false - $(pv_name) -$(pv_value) - 120 - - - true - true - 1 - false - 39872d87:13e14015f61:3412 - false 0.0 - - 15 - Text Update - false + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuY2RdbkAI + 1 + true + Text Update + 80 + false + 215 + 154 + + + + false + false + false + true + + + + 0 + 1 + true + + + + false - Text Update - true - ###### - false + 1 + 15 + 0 + Text Update 0 - - - - 80 - 0 - + true + $(P)$(MONO)ZRdbk - 1 - - - - 0 - - 154 - false - $(pv_name) -$(pv_value) - 215 - - - true - true - 1 - false - 39872d87:13e14015f61:3413 - false 0.0 - - 15 - Text Update - false + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuZ2RdbkAI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 0 - - 155 false - $(pv_name) -$(pv_value) 310 + 155 - + + + + $(P)allstop.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:3414 - + + + + 0 + 1 + true + + Default + + false + + + 38 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)allstop.VAL - - - - - - - Action Button - true + + All Stop - false - - Default - - 88 - 0 - 0 - - - false - 1 - - - - 189 - - - $(P)allstop.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 88 445 + 189 - - true - true - 1 - false - 39872d87:13e14015f61:3416 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 0 Text Update - false + 0 + true + $(P)$(MONO)ZSet + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuZ2SetAO + 1 + true + Text Update + 80 + false + 310 + 190 + + + + false + false + false + true + + + + 0 + 1 + true + + + + false - Text Update - true - ###### - false + 1 + 15 + 0 + Text Update 0 - - - - 80 - 0 - + true + $(P)$(MONO)YSet - 1 - - - - 0 - - 190 - false - $(pv_name) -$(pv_value) - 310 - - - true - true - 1 - false - 39872d87:13e14015f61:3417 - false 0.0 - - 15 - Text Update - false + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuY2SetAO + 1 + true + Text Update + 80 + false + 215 + 190 + + + + false + false + false + true + + + + 0 + 1 + true + + + + false - Text Update - true - ###### - false + 1 + 15 + 0 + Text Update 0 - - - - 80 - 0 - + true + $(P)$(MONO)ThetaSet - 1 - - - - 0 - - 190 - false - $(pv_name) -$(pv_value) - 215 - - - true - true - 1 - false - 39872d87:13e14015f61:3418 - false 0.0 - - 15 - Text Update - false + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuThetaSetAO + 1 + true + Text Update + 80 + false + 120 + 190 + + + + false + 255 + true + false - + - - - - Text Update + false + + + + 0 + 1 true - ###### - false - 0 + false - + Default - 80 - 0 - + false + + + + 18 + 0 + 1 + Arc + - 1 - - - - 0 - - 190 - false + + + true + true + true + + + 90 $(pv_name) $(pv_value) - 120 + 180 + true + Arc + 25 + 100 + 180 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:341c - 0.0 - - 0 - 1 - true - Polyline + + Default + false - 255 + + + + 9 + true + 0 + 1 + Polyline + + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 108 + 178 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 19 + false + + + + 1 + true 0 - 0 - - - 1 1 - true - - - - - 189 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 19 79 + 189 - - true - true - 1 - false - 39872d87:13e14015f61:341e + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 18 + 1 Text Update - false + 0 + true + $(P)$(MONO)SeqMsg1 + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuSeqMsg1SI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 339 - 0 - - - 1 - - - - 1 - - 299 false - $(pv_name) -$(pv_value) 98 + 299 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:341f - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 535 - 0 - 0 - - 1 - 1 - true - - - - - 289 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 535 -1 + 289 - - true - true - 1 - false - 39872d87:13e14015f61:3420 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 18 + 1 Text Update - false + 0 + true + $(P)$(MONO)SeqMsg2 + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuSeqMsg2SI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 339 - 0 - - - 1 - - - - 1 - - 319 false - $(pv_name) -$(pv_value) 98 + 319 - + + + + $(P)$(MONO)OperAck + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:3421 - + + + + 0 + 1 + true + + Default + + false + + + 34 + Action Button - false + 0 + $(P)$(MONO)OperAck + + true true false - $(P)KohzuOperAckBO - - - - - - - Action Button - true + + OK - false - - Default - - 54 - 0 - 0 - - - false - 1 - - - - 300 - - - $(P)KohzuOperAckBO - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 54 21 + 300 - - false - true + + true - 39872d87:13e14015f61:3422 - - 16 - Menu Button - false - - true - true - false - - false - $(P)BraggTypeMO + false + false - - - - Menu Button + false + + + + 6 + 1 true - false - Default + Default - 90 - 6 + false + + + + 16 - + Menu Button + $(P)$(MONO)Type - 1 - - - - 73 - + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 90 16 + 73 - - true - 1 - 39872d87:13e14015f61:3423 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - + Y + + true + 1 + true Label - true - Y2 - - - 90 - 0 - - 1 - - - - 1 - - 122 - true - + false 215 + 122 - - true - true - 1 - false - 39872d87:13e14015f61:3424 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 13 + 1 Text Update - false + 0 + true + $(P)$(MONO)ThetaPv + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuThetaPvSI + 1 + true + Text Update + 89 + false + 114 + 140 + + + + false + false + false + true + + + + 0 + 1 + true + + + + false - Text Update - true - ###### - false + 1 + 13 + 1 + Text Update 0 - - - - 89 - 0 - + true + $(P)$(MONO)YPv - 1 - - - - 1 - - 140 - false - $(pv_name) -$(pv_value) - 114 - - - true - true - 1 - false - 39872d87:13e14015f61:3425 - false 0.0 - - 13 - Text Update - false + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuY2PvSI + 1 + true + Text Update + 89 + false + 210 + 140 + + + + false + false + false + true + + + + 0 + 1 + true + + + + false - Text Update - true - ###### - false + 1 + 13 + 1 + Text Update 0 - - - - 89 - 0 - + true + $(P)$(MONO)ZPv - 1 - - - - 1 - - 140 - false - $(pv_name) -$(pv_value) - 210 - - - true - true - 1 - false - 39872d87:13e14015f61:3426 - false 0.0 - - 13 - Text Update - false + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuZ2PvSI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 89 - 0 - - - 1 - - - - 1 - - 140 false - $(pv_name) -$(pv_value) 306 + 140 - - true - 1 - 39872d87:13e14015f61:3427 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true Motor PV - - - - 50 - 0 - - 1 - - - - 0 - - 138 - true + true + 1 + true + Label + 50 + false 401 + 138 - - true - true - 1 - false - 39872d87:13e14015f61:3428 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 13 + 1 Text Update - false + 0 + true + $(P)$(MONO)ZVel + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuZ2VelAI + 1 + true + Text Update + 89 + false + 307 + 206 + + + + false + false + false + true + + + + 0 + 1 + true + + + + false - Text Update - true - ###### - false + 1 + 13 + 1 + Text Update 0 - - - - 89 - 0 - + true + $(P)$(MONO)YVel - 1 - - - - 1 - - 206 - false - $(pv_name) -$(pv_value) - 307 - - - true - true - 1 - false - 39872d87:13e14015f61:3429 - false 0.0 - - 13 - Text Update - false + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuY2VelAI + 1 + true + Text Update + 89 + false + 211 + 206 + + + + false + false + false + true + + + + 0 + 1 + true + + + + false - Text Update - true - ###### - false + 1 + 13 + 1 + Text Update 0 - - - - 89 - 0 - + true + $(P)$(MONO)ThetaVel - 1 - - - - 1 - - 206 - false - $(pv_name) -$(pv_value) - 211 - - - true - true - 1 - false - 39872d87:13e14015f61:342a - false 0.0 - - 13 - Text Update - false + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuThetaVelAI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 89 - 0 - - - 1 - - - - 1 - - 206 false - $(pv_name) -$(pv_value) 115 + 206 - - false - true - 39872d87:13e14015f61:342b - - 65 - Choice Button - false - - true - true - false - - $(P)KohzuMode2MO.VAL + + + false + false - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 106 - 0 - - - - - + false + + + + 65 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 222 + Choice Button + $(P)$(MONO)Mode2.VAL + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 106 248 + 222 - - true - true - 1 - false - 39872d87:13e14015f61:342f + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 13 + 1 Text Update - false + 0 + true + $(P)$(MONO)ZCmd + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuZ2CmdAO + 1 + true + Text Update + 89 + false + 307 + 173 + + + + false + false + false + true + + + + 0 + 1 + true + + + + false - Text Update - true - ###### - false + 1 + 13 + 1 + Text Update 0 - - - - 89 - 0 - + true + $(P)$(MONO)YCmd - 1 - - - - 1 - - 173 - false - $(pv_name) -$(pv_value) - 307 - - - true - true - 1 - false - 39872d87:13e14015f61:3430 - false 0.0 - - 13 - Text Update - false + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuY2CmdAO + 1 + true + Text Update + 89 + false + 211 + 173 + + + + false + false + false + true + + + + 0 + 1 + true + + + + false - Text Update - true - ###### - false + 1 + 13 + 1 + Text Update 0 - - - - 89 - 0 - + true + $(P)$(MONO)ThetaCmd - 1 - - - - 1 - - 173 - false - $(pv_name) -$(pv_value) - 211 - - - true - true - 1 - false - 39872d87:13e14015f61:3431 - false 0.0 - - 13 - Text Update - false + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)KohzuThetaCmdAO - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 89 - 0 - - - 1 - - - - 1 - - 173 false - $(pv_name) -$(pv_value) 115 + 173 - - false - true - 39872d87:13e14015f61:3435 - - 22 - Choice Button - false - - true - true - false - - $(P)KohzuUseSetBO.VAL + + + false + false - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 100 - 0 - - - - - + false + + + + 22 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 260 + Choice Button + $(P)$(MONO)UseSet.VAL + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 100 + 5 + 260 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 0 + Label + + + true + true + false + + + false + Calibration: + + true + 1 + true + Label + 100 + false 5 + 244 - - true - 1 - 39872d87:13e14015f61:3436 + + false - - 14 + + + + + + + 0 + 1 + true + + + + + + + 22 + 1 Label + + + + true + + + false + + $(P)$(MONO)Moving + + true true false - true + false + Moving + + true + 1 + true + Label + 88 + false + 445 + 230 + + + + false - - - - Label - true - Calibration: - - - - 100 - 0 - - 1 - 0 - - 244 - true + 0 + 1 + true + + + + + + + 22 + 1 + Label + + + + true + + + false + + $(P)$(MONO)Moving + + + + true + true + false + + + false + Done - 5 - - - false - true + true 1 - false + true + Label + 88 + false + 445 + 230 + + + + false false - - 20 - false - true + false - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3437 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(MONO)yOffset + + false + 0.0 + true true false - 1 - false + 0 - $(P)Kohzu_yOffsetAO.VAL - - - - false - 0 - - - false - - - - 0 - - 264 + false + true + false + false + + $(pv_name) $(pv_value) - 182 - - + false true - 1 - 39872d87:13e14015f61:3438 + Text Input + 60 + 181 + 263 + + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + y offset: + + true + 1 + true + Label + 65 + false + 119 + 266 + + + + false + + + + 0 + 1 + true + + + + 9 + 1 + Label + + + true + true + false + + + false + Channel Cut inhibits + + true + 1 + true Label + 150 + false + 107 + 230 + + + + false + + + + + + + 0 + 1 true - y offset: - + - 65 - 0 + + + + 9 + 1 + Label - 1 - - - - 0 - - 267 - true + + true + true + false + + + false + Y1 and Z2 motors - 120 + true + 1 + true + Label + 150 + false + 108 + 237 - \ No newline at end of file + diff --git a/opticsApp/op/opi/autoconvert/kohzuSeqCtl_soft_tiny.opi b/opticsApp/op/opi/autoconvert/kohzuSeqCtl_soft_tiny.opi new file mode 100644 index 0000000..d6d364b --- /dev/null +++ b/opticsApp/op/opi/autoconvert/kohzuSeqCtl_soft_tiny.opi @@ -0,0 +1,1503 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 140 + + true + + kohzuSeqCtl_soft_tiny + + + true + true + false + true + false + Display + 215 + 300 + 258 + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 32 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 105 + 0 + 105 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 32 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 105 + 110 + 105 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 20 + 0 + Text Update + 0 + true + $(P)$(MONO)E.RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 105 + false + 0 + 32 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 25 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(MONO)E.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 105 + 0 + 48 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(MONO)E.HLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 105 + false + 0 + 19 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(MONO)E.LLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 105 + false + 0 + 71 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + E (keV) + + true + 1 + true + Label + 105 + false + 0 + 0 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(MONO)E.TWV + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 65 + 20 + 84 + + + + + $(P)$(MONO)E.TWR + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(MONO)E.TWR + + + + true + true + false + + + + < + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 0 + 84 + + + + + $(P)$(MONO)E.TWF + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(MONO)E.TWF + + + + true + true + false + + + + > + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 85 + 84 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + true + true + false + + + false + SCAN CONTROL + + true + 1 + true + Label + 105 + false + 0 + 105 + + + + + $(P)allstop.VAL + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)allstop.VAL + + + + true + true + false + + + + Abort + false + $(pv_name) +$(pv_value) + true + Action Button + 40 + 64 + 115 + + + + + $(P)$(MONO)E:scanParms.GO + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(MONO)E:scanParms.GO + + + + true + true + false + + + + Go + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 43 + 115 + + + + + $(P)$(MONO)E:scanParms.LOAD + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(MONO)E:scanParms.LOAD + + + + true + true + false + + + + Ld + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 22 + 115 + + + + + scanParms.opi + + true + BraggE + BraggE + + 1 + Energy-scan parameters + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 1 + 115 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + TH (deg.) + + true + 1 + true + Label + 105 + false + 110 + 0 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 20 + 0 + Text Update + 0 + true + $(P)$(MONO)Theta.RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 105 + false + 110 + 32 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 25 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(MONO)Theta.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 105 + 110 + 48 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(MONO)Theta.HLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 105 + false + 110 + 19 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(MONO)Theta.LLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 105 + false + 110 + 71 + + + + + $(P)$(MONO)Theta.TWF + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(MONO)Theta.TWF + + + + true + true + false + + + + > + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 195 + 84 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(MONO)Theta.TWV + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 65 + 130 + 84 + + + + + $(P)$(MONO)Theta.TWR + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(MONO)Theta.TWR + + + + true + true + false + + + + < + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 110 + 84 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + true + true + false + + + false + SCAN CONTROL + + true + 1 + true + Label + 105 + false + 110 + 105 + + + + + $(P)allstop.VAL + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)allstop.VAL + + + + true + true + false + + + + Abort + false + $(pv_name) +$(pv_value) + true + Action Button + 40 + 174 + 115 + + + + + $(P)$(MONO)Theta:scanParms.GO + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(MONO)Theta:scanParms.GO + + + + true + true + false + + + + Go + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 153 + 115 + + + + + $(P)$(MONO)Theta:scanParms.LOAD + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(MONO)Theta:scanParms.LOAD + + + + true + true + false + + + + Ld + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 132 + 115 + + + + + scanParms.opi + + true + BraggTheta + BraggTheta + + 1 + Theta-scan parameters + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 111 + 115 + + diff --git a/opticsApp/op/opi/autoconvert/kohzuSeqCtl_tiny.opi b/opticsApp/op/opi/autoconvert/kohzuSeqCtl_tiny.opi new file mode 100644 index 0000000..20afb91 --- /dev/null +++ b/opticsApp/op/opi/autoconvert/kohzuSeqCtl_tiny.opi @@ -0,0 +1,1503 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 140 + + true + + kohzuSeqCtl_tiny + + + true + true + false + true + false + Display + 215 + 300 + 258 + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 32 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 105 + 0 + 105 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 32 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 105 + 110 + 105 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 20 + 0 + Text Update + 0 + true + $(P)BraggERdbkAO + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 105 + false + 0 + 32 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 25 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)BraggEAO.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 105 + 0 + 48 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)BraggEAO.DRVH + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 105 + false + 0 + 19 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)BraggEAO.DRVL + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 105 + false + 0 + 71 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + E (keV) + + true + 1 + true + Label + 105 + false + 0 + 0 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)BraggETweakAI + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 65 + 20 + 84 + + + + + $(P)BraggEDecBO.VAL + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)BraggEDecBO.VAL + + + + true + true + false + + + + < + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 0 + 84 + + + + + $(P)BraggEIncBO.VAL + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)BraggEIncBO.VAL + + + + true + true + false + + + + > + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 85 + 84 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + true + true + false + + + false + SCAN CONTROL + + true + 1 + true + Label + 105 + false + 0 + 105 + + + + + $(P)allstop.VAL + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)allstop.VAL + + + + true + true + false + + + + Abort + false + $(pv_name) +$(pv_value) + true + Action Button + 40 + 64 + 115 + + + + + $(P)BraggE:scanParms.GO + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)BraggE:scanParms.GO + + + + true + true + false + + + + Go + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 43 + 115 + + + + + $(P)BraggE:scanParms.LOAD + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)BraggE:scanParms.LOAD + + + + true + true + false + + + + Ld + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 22 + 115 + + + + + scanParms.opi + + true + BraggE + BraggEAO + + 1 + Energy-scan parameters + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 1 + 115 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + TH (deg.) + + true + 1 + true + Label + 105 + false + 110 + 0 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 20 + 0 + Text Update + 0 + true + $(P)BraggThetaRdbkAO + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 105 + false + 110 + 32 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 25 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)BraggThetaAO.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 105 + 110 + 48 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)BraggThetaAO.DRVH + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 105 + false + 110 + 19 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)BraggThetaAO.DRVL + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 105 + false + 110 + 71 + + + + + $(P)BraggThetaIncBO.VAL + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)BraggThetaIncBO.VAL + + + + true + true + false + + + + > + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 195 + 84 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)BraggThetaTweakAI + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 65 + 130 + 84 + + + + + $(P)BraggThetaDecBO.VAL + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)BraggThetaDecBO.VAL + + + + true + true + false + + + + < + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 110 + 84 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + true + true + false + + + false + SCAN CONTROL + + true + 1 + true + Label + 105 + false + 110 + 105 + + + + + $(P)allstop.VAL + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)allstop.VAL + + + + true + true + false + + + + Abort + false + $(pv_name) +$(pv_value) + true + Action Button + 40 + 174 + 115 + + + + + $(P)BraggTheta:scanParms.GO + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)BraggTheta:scanParms.GO + + + + true + true + false + + + + Go + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 153 + 115 + + + + + $(P)BraggTheta:scanParms.LOAD + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)BraggTheta:scanParms.LOAD + + + + true + true + false + + + + Ld + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 132 + 115 + + + + + scanParms.opi + + true + BraggTheta + BraggThetaAO + + 1 + Theta-scan parameters + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 111 + 115 + + diff --git a/opticsApp/op/opi/autoconvert/ml_monoGraphic.opi b/opticsApp/op/opi/autoconvert/ml_monoGraphic.opi new file mode 100644 index 0000000..3dedfe0 --- /dev/null +++ b/opticsApp/op/opi/autoconvert/ml_monoGraphic.opi @@ -0,0 +1,4288 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 400 + + true + + ml_monoGraphic + + + true + true + false + true + false + Display + 400 + 626 + 333 + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 131 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 381 + 10 + 25 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 131 + true + + + + 0 + 3 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 381 + 10 + 25 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 235 + 255 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 235 + 255 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 235 + 190 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 235 + 190 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 310 + 190 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 310 + 190 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 15 + 255 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 15 + 255 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 15 + 190 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 15 + 190 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 90 + 190 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 90 + 190 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 90 + 255 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 90 + 255 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 15 + 320 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 15 + 320 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 90 + 320 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 90 + 320 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 63 + 104 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 63 + 104 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 235 + 320 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 235 + 320 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 261 + 67 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 38 + true + + + + 0 + 1 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 64 + 261 + 67 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 22 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 96 + 75 + 53 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 22 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 96 + 223 + 117 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 110 + 273 + 124 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 59 + true + 0 + 1 + Polyline + + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 244 + 28 + 66 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 11 + true + 0 + 1 + Polyline + + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 16 + 25 + 61 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mZ1) + + true + 1 + true + Label + 60 + false + 237 + 257 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mZ1).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 237 + 267 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(mZ1).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 237 + 277 + + + + + motorx.opi + + true + $(mZ1) + + 1 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + Z1 + false + $(pv_name) +$(pv_value) + true + Action Button + 64 + 235 + 235 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mY1) + + true + 1 + true + Label + 60 + false + 237 + 192 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mY1).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 237 + 202 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(mY1).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 237 + 212 + + + + + motorx.opi + + true + $(mY1) + + 1 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + Y1 + false + $(pv_name) +$(pv_value) + true + Action Button + 64 + 235 + 170 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mC1) + + true + 1 + true + Label + 60 + false + 312 + 192 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mC1).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 312 + 202 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(mC1).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 312 + 212 + + + + + motorx.opi + + true + $(mC1) + + 1 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + Chi1 + false + $(pv_name) +$(pv_value) + true + Action Button + 64 + 310 + 170 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mP2) + + true + 1 + true + Label + 60 + false + 17 + 257 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mP2).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 17 + 267 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(mP2).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 17 + 277 + + + + + motorx.opi + + true + $(mP2) + + 1 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + Phi2 + false + $(pv_name) +$(pv_value) + true + Action Button + 64 + 15 + 235 + + + + + motorx.opi + + true + $(mB) + + 1 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + Bend + false + $(pv_name) +$(pv_value) + true + Action Button + 64 + 15 + 170 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mB) + + true + 1 + true + Label + 60 + false + 17 + 192 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mB).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 17 + 202 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(mB).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 17 + 212 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mY2) + + true + 1 + true + Label + 60 + false + 92 + 192 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mY2).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 92 + 202 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(mY2).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 92 + 212 + + + + + motorx.opi + + true + $(mY2) + + 1 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + Y2 + false + $(pv_name) +$(pv_value) + true + Action Button + 64 + 90 + 170 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mZ2) + + true + 1 + true + Label + 60 + false + 92 + 257 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mZ2).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 92 + 267 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(mZ2).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 92 + 277 + + + + + motorx.opi + + true + $(mZ2) + + 1 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + Z2 + false + $(pv_name) +$(pv_value) + true + Action Button + 64 + 90 + 235 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mC2) + + true + 1 + true + Label + 60 + false + 17 + 322 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mC2).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 17 + 332 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(mC2).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 17 + 342 + + + + + motorx.opi + + true + $(mC2) + + 1 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + Chi2 + false + $(pv_name) +$(pv_value) + true + Action Button + 64 + 15 + 300 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mX2) + + true + 1 + true + Label + 60 + false + 92 + 322 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mX2).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 92 + 332 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(mX2).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 92 + 342 + + + + + motorx.opi + + true + $(mX2) + + 1 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + X2 + false + $(pv_name) +$(pv_value) + true + Action Button + 64 + 90 + 300 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mT2) + + true + 1 + true + Label + 60 + false + 65 + 106 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mT2).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 65 + 116 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(mT2).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 65 + 126 + + + + + motorx.opi + + true + $(mT2) + + 1 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + Theta2 + false + $(pv_name) +$(pv_value) + true + Action Button + 64 + 63 + 84 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mX1) + + true + 1 + true + Label + 60 + false + 237 + 322 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mX1).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 237 + 332 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(mX1).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 237 + 342 + + + + + motorx.opi + + true + $(mX1) + + 1 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + X1 + false + $(pv_name) +$(pv_value) + true + Action Button + 64 + 235 + 300 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + $(P)$(mT1) + + true + 1 + true + Label + 60 + false + 263 + 69 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 10 + 0 + Text Update + 0 + true + $(P)$(mT1).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 263 + 79 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 15 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(mT1).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 263 + 89 + + + + + motorx.opi + + true + $(mT1) + + 1 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + Theta1 + false + $(pv_name) +$(pv_value) + true + Action Button + 64 + 261 + 47 + + diff --git a/opticsApp/op/opi/ml_monoSeqCtl.opi b/opticsApp/op/opi/autoconvert/ml_monoSeqCtl.opi similarity index 81% rename from opticsApp/op/opi/ml_monoSeqCtl.opi rename to opticsApp/op/opi/autoconvert/ml_monoSeqCtl.opi index 6dd6296..349d0f3 100644 --- a/opticsApp/op/opi/ml_monoSeqCtl.opi +++ b/opticsApp/op/opi/autoconvert/ml_monoSeqCtl.opi @@ -1,135 +1,133 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 200 true - 39872d87:13e14015f61:37ab - 3.1.2.20120830 + ml_monoSeqCtl + + true + true + false true - 200 - ml_monoSeqCtl false - false - - - - - - Display - true 525 - - true - 5 - - false - -1 - -1 - - - 673 523 - - false - true - 100.0 - - - - 39872d87:13e14015f61:37ac - - - - - 32 - true - Rectangle - false + 673 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 105 - 0 - 0 - - - 1 - 0 - true - - - - - 105 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 0.0 + 32 + true - + - 39872d87:13e14015f61:37b6 - - - - - 32 - true + 0 + 0 Rectangle - false - 255 + + + true true false - true - + + $(pv_name) +$(pv_value) + false + true + Rectangle + 105 + 0 + 105 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 70 + false + + + + false + 32 + true + + + 0 - 0 + 2 + Rectangle + + @@ -141,62 +139,62 @@ $(pv_value) $(P)ml_monoZDmov - - 1 - 2 - true - - - - - 42 - $(pv_name) -$(pv_value) - 450 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:37ba - - - - - 32 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 70 + 450 + 42 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 80 + false + + + + false + 32 + true + + + 0 - 0 + 2 + Rectangle + + @@ -208,62 +206,62 @@ $(pv_value) $(P)ml_monoThetaDmov - - 1 - 2 - true - - - - - 42 + + true + true + false + + $(pv_name) $(pv_value) + true + true + Rectangle + 80 290 - false + 42 - - false - true - 100.0 - - - - 39872d87:13e14015f61:37c5 - - - - - 5 - true - Rectangle - false + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 70 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -275,62 +273,62 @@ $(pv_value) $(P)ml_monoPut.VAL - - 1 - 0 - true - - - - - 60 - $(pv_name) -$(pv_value) - 210 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:37c9 - - - - - 34 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 70 + 210 + 60 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 345 + false + + + + false + 34 + true + + + 0 - 0 + 0 + Rectangle + + @@ -342,62 +340,62 @@ $(pv_value) $(P)ml_monoAlert - - 1 - 0 - true - - - - - 166 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:37e0 - - - - - 5 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 345 + 0 + 166 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 70 + false + + + + false + 5 + true + + + 0 - 0 + 0 + Rectangle + + @@ -409,502 +407,278 @@ $(pv_value) $(P)ml_monoMode.VAL - - 1 - 0 - true - - - - - 60 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 70 210 - false + 60 - + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 32 + true - 39872d87:13e14015f61:37e1 - - - - - 32 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle - true - - - - false - - Default - 105 - 0 - 0 - - - 1 - 0 - true - - - - - 105 - $(pv_name) -$(pv_value) 110 - false + 105 - - - true - - true - 39872d87:13e14015f61:37bd - - 28 - Grouping Container - - true - true - false - - true - false + + + false - + - - - - Grouping Container - true - - Default - - 102 - 0 - - false - 1 - - 88 - - 430 - - true - 1 - 39872d87:13e14015f61:37be - false - - 26 - Label - - true - true - false - - true - false - - - - - - - Label - true - Moving - - - - 100 - 0 - - - - true - - - false - - $(P)ml_monoMoving - - - 1 - - - - 1 - - 1 - true - - 1 - - - true - 1 - 39872d87:13e14015f61:37bf - false - - 26 - Label - - true - true - false - - true - false - - - - - - - Label - true - Moving - - - - 100 - 0 - - - - true - - - false - - $(P)ml_monoMoving - - - 1 - - - - 1 - - 2 - true - - 2 - - - true - 1 - 39872d87:13e14015f61:37c0 - false - - 26 - Label - - true - true - false - - true - false - - - - - - - Label - true - Moving - - - - 100 - 0 - - - - true - - - false - - $(P)ml_monoMoving - - - 1 - - - - 1 - - 0 - true - - 0 - - - - true - 1 - 39872d87:13e14015f61:37ad - false - + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true SCAN CONTROL - - - - 105 - 0 - - 1 - - - - 1 - - 105 - true + true + 1 + true + Label + 105 + false 0 + 105 - - false - true - 39872d87:13e14015f61:37ae - - 20 - Action Button - false - - true - true - false - - $(P)allstop.VAL - - - - - - - Action Button - true - Abort - false - - Default - - 40 - 0 - 0 - - - - false - 1 - - - - 115 + $(P)allstop.VAL 1 10 + - $(pv_name) -$(pv_value) - 64 - - + false + false + + + false - true - 39872d87:13e14015f61:37af - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)ml_monoE:scanParms.GO - - - - - - - Action Button - true - Go - false - - Default - - 20 - 0 - 0 - - - + + + Abort false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 40 + 64 115 + + $(P)ml_monoE:scanParms.GO 1 10 + - $(pv_name) -$(pv_value) - 43 - - + false + false + + + false - true - 39872d87:13e14015f61:37b0 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)ml_monoE:scanParms.GO + + true true false - $(P)ml_monoE:scanParms.LOAD - - - - - - + + + Go + false + $(pv_name) +$(pv_value) + true Action Button - true - Ld - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 43 115 + + $(P)ml_monoE:scanParms.LOAD 1 10 + - $(pv_name) -$(pv_value) - 22 - - + false + false + + + false - true - false - 39872d87:13e14015f61:37b1 - - 20 - Menu Button - false - + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)ml_monoE:scanParms.LOAD + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + Ld + false + $(pv_name) +$(pv_value) + true + Action Button 20 - 6 - - - - 1 - - - + 22 115 + + scanParms.opi @@ -913,112 +687,149 @@ $(pv_value) ml_monoE ml_monoE - 0 + 1 Energy-scan parameters + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + + false $(pv_name) $(pv_value) + true + Action Button + 20 1 + 115 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:37b2 - 0.0 - - 0 + + Default + + false + + + 138 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 1 + 286 + 1 + + + + false + 255 + true + false - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true + false - - 1 - $(pv_name) -$(pv_value) - 286 - - - false - true + 0 + 1 + true 100.0 + + Default + + false + + + + 16 + true - 39872d87:13e14015f61:37b3 - 0.0 - - 16 - true + 0 + 0 Polygon - false - 255 - - true - true - true - - false - - - - - - - Polygon - true - false - - Default - - 16 - 0 - 0 + + 0.0 @@ -1030,358 +841,504 @@ $(pv_value) $(P)ml_monoMode.VAL - - 1 - 0 - true - - - - - 55 + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polygon + 16 275 + 55 - - true - true - 1 - false - 39872d87:13e14015f61:37b4 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)ml_monoZRdbk + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoZRdbk - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 67 - 0 - - - 1 - - - - 1 - - 43 false - $(pv_name) -$(pv_value) 451 + 43 - - true - true - 1 - false - 39872d87:13e14015f61:37b5 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)ml_monoZCmd + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoZCmd - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 67 - 0 - - - 1 - - - - 1 - - 57 false - $(pv_name) -$(pv_value) 451 + 57 - - true - true - 1 - false - 39872d87:13e14015f61:37b7 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)ml_monoThetaRdbk + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoThetaRdbk - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 76 - 0 - - - 1 + false + 292 + 43 + + + + false + false + false + + + + true + 0 + 1 + true + + + + false + + + + 1 + 15 1 - - 43 - false + Text Update + 0 + true + $(P)ml_monoThetaCmd + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 76 + false 292 + 57 - - true - true - 1 - false - 39872d87:13e14015f61:37b8 + + + false false - 0.0 - - 15 - Text Update + false + + + + true + + + + 0 + 1 + true + + + false + + + + 1 + 10 + 1 + Text Update + 0 + true + $(P)ml_monoThetaPv + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoThetaCmd + 1 + true + Text Update + 80 + false + 290 + 32 + + + + false - + - - - - Text Update + + + + 0 + 1 true - ###### - false - 0 - + - 76 - 0 + + + + 15 + 1 + Label - - 1 + + true + true + false + + + false + Theta + + true + 1 + true + Label + 80 + false + 290 + 17 + + + + false + 255 + true + false + + + + false - 1 - - 57 - false - $(pv_name) -$(pv_value) - 292 - - - true - true - 1 - false - 39872d87:13e14015f61:37b9 - false - 0.0 - - 10 - Text Update + 0 + 1 + true + 100.0 + + Default + false + + + + 16 + true + + + + 0 + 0 + Polygon + + + + + + + + + 0.0 + + + + true + + + false + + $(P)ml_monoPut.VAL + + true true - false + true - 1 - true + + $(pv_name) +$(pv_value) false - $(P)ml_monoThetaPv + true + Polygon + 16 + 275 + 55 + + + + false - + - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 + 0 + 1 + true + + + + + + + 26 1 - - 32 - false - $(pv_name) -$(pv_value) - 290 - - - true - 1 - 39872d87:13e14015f61:37bb - false - - 15 Label + + + + true + + + false + + $(P)ml_monoMoving + + true true false - true + false + Moving + + true + 1 + true + Label + 100 + false + 431 + 89 + + + + false - - - - Label - true - Theta - - - - 80 - 0 - - 1 + 0 + 1 + true + + + + + + + 26 1 - - 17 - true - - 290 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:37bc - 0.0 - - 16 - true - Polygon - false - 255 + Label + + + + true + + + false + + $(P)ml_monoMoving + + true true - true + false - - - - - - - false - + + false + Moving + + true + 1 + true + Label + 100 + false + 432 + 90 + + + + false - + - - - - Polygon + + + + 0 + 1 true - false - Default + - 16 - 0 - 0 + + + + 26 + 1 + Label @@ -1390,522 +1347,493 @@ $(pv_value) false - $(P)ml_monoPut.VAL + $(P)ml_monoMoving - - 1 - 0 - true - - - - - 55 - $(pv_name) -$(pv_value) - 275 - - - false - true - 39872d87:13e14015f61:37c1 - - 22 - Choice Button - false true true false - $(P)ml_monoUseSet.VAL + + false + Moving + + true + 1 + true + Label + 100 + false + 430 + 88 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 100 - 0 - - - - - + false + + + + 22 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 112 + Choice Button + $(P)ml_monoUseSet.VAL + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 100 295 + 112 - - true - 1 - 39872d87:13e14015f61:37c2 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true Calibration: - - - - 100 - 0 - - 1 - - - - 0 - - 97 - true + true + 1 + true + Label + 100 + false 295 + 97 - + + + + $(P)allstop.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:37c3 - + + + + 0 + 1 + true + + Default + + false + + + 22 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)allstop.VAL - - - - - - - Action Button - true + + All Stop - false - - Default - - 100 - 0 - 0 - - - false - 1 - - - - 112 - - - $(P)allstop.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 100 405 + 112 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:37c4 - 0.0 - - 0 + + Default + + false + + + 138 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 1 + 216 + 1 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true + false - - 1 - $(pv_name) -$(pv_value) - 216 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:37c6 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 523 - 0 - 0 - - 1 - 1 - true - - - - - 139 - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:37c7 - - 18 - Choice Button - false + 0.0 + true true - false + true - $(P)ml_monoMode2.VAL + + $(pv_name) +$(pv_value) + true + true + Polyline + 523 + 0 + 139 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 475 - 0 - - - - - + false + + + + 18 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 143 - $(pv_name) -$(pv_value) - 45 - - - false - true - 39872d87:13e14015f61:37c8 - - 34 - Action Button - false + Choice Button + $(P)ml_monoMode2.VAL + + true true false - $(P)ml_monoOperAck - - - - - - - Action Button - true - OK - false - - Default - - 50 - 0 - 0 - - - - false - 1 - - - - 166 + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 475 + 45 + 143 + + $(P)ml_monoOperAck 1 10 + - $(pv_name) -$(pv_value) - 350 - - - true - true - 1 - false - 39872d87:13e14015f61:37ca - false - 0.0 - - 14 - Text Update + false + false + + + + false + + + + 0 + 1 + true + + Default + false + + + + 34 + + Action Button + 0 + $(P)ml_monoOperAck + + true true false - 1 - true - false - $(P)ml_monoSeqMsg1 + + + OK + false + $(pv_name) +$(pv_value) + true + Action Button + 50 + 350 + 166 + + + + false + false + false - + - - - - Text Update - true - ###### - false - 0 - - - - 339 - 0 - - - 1 + true - 1 - - 168 - false - $(pv_name) -$(pv_value) - 3 - - - true - true - 1 - false - 39872d87:13e14015f61:37cb - false - 0.0 - + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)ml_monoSeqMsg1 + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoSeqMsg2 - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 339 - 0 - - - 1 - - - - 1 - - 184 false - $(pv_name) -$(pv_value) 3 + 168 - - false - true - false - 39872d87:13e14015f61:37cc - - 20 - Menu Button - false - - true - true - false - - false - + + + false + false + false - + - - - - Menu Button + true + + + + 0 + 1 true - false - Default + - 40 - 6 - + false + + + + 1 + 14 + 1 + Text Update + 0 + true + $(P)ml_monoSeqMsg2 + + 0.0 - - 1 - - - - 176 + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 339 + false + 3 + 184 + + ml_monoSeqCtl_tiny.opi true - 0 + 1 ml_monoSeq (tiny) @@ -1913,7 +1841,7 @@ $(pv_value) true - 0 + 1 ml_monoSeq (all) @@ -1923,7 +1851,7 @@ $(pv_value) ml_monoE ml_monoE - 0 + 1 Energy-scan parameters @@ -1933,7 +1861,7 @@ $(pv_value) ml_monoTheta ml_monoTheta - 0 + 1 Theta-scan parameters @@ -1943,1204 +1871,1241 @@ $(pv_value) ml_monoLambda ml_monoLambda - 0 + 1 Wavelength-scan parameters - $(pv_name) -$(pv_value) - 450 - - - true - 1 - 39872d87:13e14015f61:37cd - false - - 18 - Label + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + true true false - true - false + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 40 + 450 + 176 + + + + false - - - - Label - true - Mode: - - - - 40 - 0 - - 1 + 0 + 1 + true + + + + + + + 18 0 - - 143 - true - - 5 - - - false - true - 39872d87:13e14015f61:37ce - - 45 - Choice Button - false + Label + true true false - $(P)ml_monoMode.VAL + + false + Mode: + + true + 1 + true + Label + 40 + false + 5 + 143 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 60 - 0 - - - - - + false + + + + 45 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 5 - $(pv_name) -$(pv_value) - 220 - - - false - true - 39872d87:13e14015f61:37cf - - 25 - Action Button - false + Choice Button + $(P)ml_monoMode.VAL + + true true false - $(P)ml_monoPut - - - - - - - Action Button - true - Move - false - - Default - + + + + + $(pv_name) +$(pv_value) + true + Choice Button 60 - 0 - 0 - - - - false - 1 - - - - 75 + 220 + 5 + + $(P)ml_monoPut 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 25 + + Action Button + 0 + $(P)ml_monoPut + + + + true + true + false + + + + Move + false $(pv_name) $(pv_value) + true + Action Button + 60 220 + 75 - - true - 1 - 39872d87:13e14015f61:37d0 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false + + false + TH (deg.) + true - false - - - - - - + 1 + true Label - true - TH (deg.) - - - 100 - 0 - - 1 - - - - 1 - - 0 - true - + false 110 + 0 - - true - true - 1 - false - 39872d87:13e14015f61:37d1 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)ml_monoThetaRdbk + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoThetaRdbk - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 32 false - $(pv_name) -$(pv_value) 110 + 32 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:37d2 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)ml_monoTheta.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)ml_monoTheta.VAL - - - - false - 0 - - - false - - - - 0 - - 48 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 110 + 48 - + + + + $(P)ml_monoThetaInc.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:37d3 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)ml_monoThetaInc.VAL + + true true false - $(P)ml_monoThetaInc.VAL - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 84 - - - $(P)ml_monoThetaInc.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 190 + 84 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:37d4 + false + Text Input + 0 + false + 0 + true + $(P)ml_monoThetaTweak + + false 0.0 - Text Input + true true false - 1 - false + 0 - $(P)ml_monoThetaTweak - - - - false - 0 - - - false - - - - 0 - - 84 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 130 + 84 - + + + + $(P)ml_monoThetaDec.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:37d5 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)ml_monoThetaDec.VAL + + true true false - $(P)ml_monoThetaDec.VAL - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 84 - - - $(P)ml_monoThetaDec.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 110 + 84 - - true - true - 1 - false - 39872d87:13e14015f61:37d6 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)ml_monoTheta.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoTheta.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 19 false - $(pv_name) -$(pv_value) 110 + 19 - - true - true - 1 - false - 39872d87:13e14015f61:37d7 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)ml_monoTheta.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoTheta.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 71 false - $(pv_name) -$(pv_value) 110 + 71 - - true - true - 1 - false - 39872d87:13e14015f61:37d8 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)ml_monoERdbk + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoERdbk - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 32 false - $(pv_name) -$(pv_value) 5 + 32 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:37d9 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)ml_monoE.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)ml_monoE.VAL - - - - false - 0 - - - false - - - - 0 - - 48 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 5 + 48 - + + + + $(P)ml_monoEInc.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:37da - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)ml_monoEInc.VAL + + true true false - $(P)ml_monoEInc.VAL - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 84 - - - $(P)ml_monoEInc.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 85 + 84 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:37db - 0.0 + false Text Input + 0 + false + 0 + true + $(P)ml_monoETweak + + false + 0.0 + true true false - 1 - false + 0 - $(P)ml_monoETweak - - - - false - 0 - - - false - - - - 0 - - 84 + false + true + false + false + + $(pv_name) $(pv_value) - 25 - - - false + false true - 39872d87:13e14015f61:37dc - - 20 - Action Button - false - - true - true - false - - $(P)ml_monoEDec.VAL - - - - - - - Action Button - true - < - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - + Text Input + 60 + 25 84 + + $(P)ml_monoEDec.VAL 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)ml_monoEDec.VAL + + + + true + true + false + + + + < + false $(pv_name) $(pv_value) + true + Action Button + 20 5 + 84 - - true - true - 1 - false - 39872d87:13e14015f61:37dd + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)ml_monoE.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoE.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 71 false - $(pv_name) -$(pv_value) 5 + 71 - - true - true - 1 - false - 39872d87:13e14015f61:37de + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)ml_monoE.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoE.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 19 false - $(pv_name) -$(pv_value) 5 + 19 - - true - 1 - 39872d87:13e14015f61:37df + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - E (keV) - - - - 100 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 1 - - 0 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:37e2 - false - - 10 Label + true true false - true + false + E (keV) + + true + 1 + true + Label + 100 + false + 5 + 0 + + + + false - - - - Label - true - SCAN CONTROL - - - - 105 - 0 - - 1 + 0 + 1 + true + + + + + + + 10 1 - - 105 - true - - 110 - - - false - true - 39872d87:13e14015f61:37e3 - - 20 - Action Button - false + Label + true true false - $(P)allstop.VAL - - - - - - - Action Button - true - Abort - false - - Default - - 40 - 0 - 0 - - - - false - 1 - - - - 115 + + false + SCAN CONTROL + + true + 1 + true + Label + 105 + false + 110 + 105 + + $(P)allstop.VAL 1 10 + - $(pv_name) -$(pv_value) - 174 - - + false + false + + + false - true - 39872d87:13e14015f61:37e4 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)ml_monoTheta:scanParms.GO - - - - - - - Action Button - true - Go - false - - Default - - 20 - 0 - 0 - - - + + + Abort false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 40 + 174 115 + + $(P)ml_monoTheta:scanParms.GO 1 10 + - $(pv_name) -$(pv_value) - 153 - - + false + false + + + false - true - 39872d87:13e14015f61:37e5 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)ml_monoTheta:scanParms.GO + + true true false - $(P)ml_monoTheta:scanParms.LOAD - - - - - - + + + Go + false + $(pv_name) +$(pv_value) + true Action Button - true - Ld - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 153 115 + + $(P)ml_monoTheta:scanParms.LOAD 1 10 + - $(pv_name) -$(pv_value) - 132 - - + false + false + + + false - true - false - 39872d87:13e14015f61:37e6 - - 20 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + $(P)ml_monoTheta:scanParms.LOAD + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + Ld + false + $(pv_name) +$(pv_value) + true + Action Button 20 - 6 - - - - 1 - - - + 132 115 + + scanParms.opi @@ -3149,439 +3114,474 @@ $(pv_value) ml_monoTheta ml_monoTheta - 0 + 1 Theta-scan parameters + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + + false $(pv_name) $(pv_value) + true + Action Button + 20 111 + 115 - - true - 1 - 39872d87:13e14015f61:37e7 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true Monochromator Motors - - - - 230 - 0 - - 1 - - - - 1 - - 0 - true + true + 1 + true + Label + 230 + false 290 + 0 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:37e8 - 0.0 - - 0 + + Default + + false + + + 55 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 1 + 372 + 20 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true + false - - 20 - $(pv_name) -$(pv_value) - 372 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:37e9 - 0.0 - - 0 + + Default + + false + + + 55 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - 1 - 1 - true - - - - - 20 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 1 447 + 20 - - true - true - 1 - false - 39872d87:13e14015f61:37ea + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)ml_monoZPv + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoZPv - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 1 - - 32 false - $(pv_name) -$(pv_value) 450 + 32 - - true - 1 - 39872d87:13e14015f61:37eb + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 1 Label + true true false - true + false + Z2 + + true + 1 + true + Label + 70 + false + 450 + 17 + + + + false - - - - Label - true - Z2 - - - - 70 - 0 - - 1 - 1 - - 17 - true - - 450 - - - true - 1 - 39872d87:13e14015f61:37ec - false - + 0 + 1 + true + + + + + + 15 + 1 Label + true true false - true + false + Y2 + + true + 1 + true + Label + 70 + false + 375 + 17 + + + + false - - - - Label - true - Y2 - - - - 70 - 0 - - 1 - 1 - - 17 - true - - 375 - - - true - 1 - 39872d87:13e14015f61:37ed - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false - - - - - - - Label - true (y offset) - - - - 70 - 0 - - 1 - - - - 1 - - 72 - true + true + 1 + true + Label + 70 + false 375 + 72 - - true - true - 1 - false - 39872d87:13e14015f61:37ee + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)ml_monoYPv + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoYPv - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 1 - - 32 false - $(pv_name) -$(pv_value) 375 + 32 - - true - true - 1 - false - 39872d87:13e14015f61:37ef + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)ml_mono_yOffset + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_mono_yOffset - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 67 - 0 - - - 1 - - - - 1 - - 43 false - $(pv_name) -$(pv_value) 376 + 43 - \ No newline at end of file + diff --git a/opticsApp/op/opi/ml_monoSeqCtl_All.opi b/opticsApp/op/opi/autoconvert/ml_monoSeqCtl_All.opi similarity index 83% rename from opticsApp/op/opi/ml_monoSeqCtl_All.opi rename to opticsApp/op/opi/autoconvert/ml_monoSeqCtl_All.opi index 2910d26..baf4a3b 100644 --- a/opticsApp/op/opi/ml_monoSeqCtl_All.opi +++ b/opticsApp/op/opi/autoconvert/ml_monoSeqCtl_All.opi @@ -1,78 +1,76 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 342 true - 39872d87:13e14015f61:3836 - 3.1.2.20120830 + ml_monoSeqCtl_All + + true + true + false true - 342 - ml_monoSeqCtl_All false - false - - - - - - Display - true 635 - - true - 5 - - false - -1 - -1 - - - 290 516 - - false - true - 100.0 - - - - 39872d87:13e14015f61:3837 - - - - - 47 - true - Rectangle - false + 290 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 366 + false + + + + false + 47 + true + + + 0 - 0 + 0 + Rectangle + + @@ -84,233 +82,233 @@ $(P)ml_monoAlert - - 1 - 0 - true - - - - - 294 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 366 84 - false + 294 - + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 94 + true - 39872d87:13e14015f61:3838 - - - - - 94 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 115 + 0 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 115 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 0.0 + 97 + true - + - 39872d87:13e14015f61:385c - - - - - 97 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 118 + 0 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 118 - 0 - 0 - - - 1 - 2 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 100.0 + 83 + true - 39872d87:13e14015f61:3861 - - - - - 83 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle - true - - - - false - - Default - 84 - 0 - 0 - - - 1 - 0 - true - - - - - 137 - $(pv_name) -$(pv_value) 4 - false + 137 - - false - true - 0.0 - - - - 39872d87:13e14015f61:3884 - - - - - 37 - true - Rectangle - false + + + false 255 - - true - true - false - - true - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 94 + false + + + + false + 37 + true + + + 0 - 0 + 2 + Rectangle + + @@ -322,62 +320,62 @@ $(pv_value) $(P)ml_monoThetaDmov - - 1 - 2 - true - - - - - 154 - $(pv_name) -$(pv_value) - 113 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3885 - - - - - 37 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 94 + 113 + 154 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 94 + false + + + + false + 37 + true + + + 0 - 0 + 2 + Rectangle + + @@ -389,62 +387,62 @@ $(pv_value) $(P)ml_monoTheta2Dmov - - 1 - 2 - true - - - - - 154 - $(pv_name) -$(pv_value) - 208 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3886 - - - - - 37 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 94 + 208 + 154 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 94 + false + + + + false + 37 + true + + + 0 - 0 + 2 + Rectangle + + @@ -456,2549 +454,2554 @@ $(pv_value) $(P)ml_monoZDmov - - 1 - 2 - true - - - - - 154 - $(pv_name) -$(pv_value) - 401 - false - - - - true - - true - 39872d87:13e14015f61:385d - - 21 - Grouping Container true true false + + $(pv_name) +$(pv_value) true - false + true + Rectangle + 94 + 401 + 154 + + + + false - + - - - - Grouping Container - true - - Default - - 25 - 0 - - false - 1 - - 177 - - 100 - - false - true - 180 - 39872d87:13e14015f61:385e - 90 - - 18 - true - Arc - false - 255 - - true - true - true - - - - - - - - - Arc - true - false - - Default - - 25 - 0 - false - 0 - - - 1 - 1 - - - - - 3 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:385f - 0.0 - - 0 - 9 - true - Polyline - false - 255 - - true - true - true - - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 8 - - - - true - 1 - 39872d87:13e14015f61:3839 - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true Order - - - - 50 - 0 - - 1 - - - - 0 - - 5 - true + true + 1 + true + Label + 50 + false 9 + 5 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 20 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:383a - 0.0 + false Text Input + 0 + false + 0 + true + $(P)ml_monoOrder.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)ml_monoOrder.VAL - - - - false - 0 - - - false - - - - 0 - - 5 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 20 65 + 5 - - true - 1 - 39872d87:13e14015f61:383b + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true d - - - - 20 - 0 - - 1 - - - - 0 - - 28 - true + true + 1 + true + Label + 20 + false 9 + 28 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:383c - 0.0 + false Text Input + 0 + false + 0 + true + $(P)ml_monoD.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)ml_monoD.VAL - - - - false - 0 - - - false - - - - 0 - - 28 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 29 + 28 - - false - true - 39872d87:13e14015f61:383d - - 45 - Choice Button - false - - true - true - false - - $(P)ml_monoMode.VAL + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 75 - 0 - - - - - + false + + + + 45 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 142 - $(pv_name) -$(pv_value) - 6 - - - false - true - 39872d87:13e14015f61:383e - - 25 - Action Button - false + Choice Button + $(P)ml_monoMode.VAL + + true true false - $(P)ml_monoPut - - - - - - - Action Button - true - Move - false - - Default - + + + + + $(pv_name) +$(pv_value) + true + Choice Button 75 - 0 - 0 - - - - false - 1 - - - - 190 + 6 + 142 + + $(P)ml_monoPut 1 10 + - $(pv_name) -$(pv_value) - 6 - - - true - 1 - 39872d87:13e14015f61:383f - false - - 20 - Label + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 25 + + Action Button + 0 + $(P)ml_monoPut + + true true false - true - false + + + Move + false + $(pv_name) +$(pv_value) + true + Action Button + 75 + 6 + 190 + + + + false - - - - Label - true - TH (deg.) - - - - 100 - 0 - - 1 - 1 - - 1 - true - - 347 - - - true - true - 1 - false - 39872d87:13e14015f61:3840 - false - 0.0 - + 0 + 1 + true + + + + + + 20 - Text Update - false + 1 + Label + true true false - 1 - true - false - $(P)ml_monoThetaRdbk - - - - - - - Text Update - true - ###### - false - 0 - - - + + false + TH (deg.) + + true + 1 + true + Label 100 - 0 - - - 1 - - - - 0 - - 35 false - $(pv_name) -$(pv_value) 347 + 1 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + true + + + + 0 + 1 true - - + - 100 - 3 + false + + + + 1 + 20 + 0 + Text Update + 0 + true + $(P)ml_monoThetaRdbk - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3841 0.0 - Text Input + true true false - 1 - false - 0 - $(P)ml_monoTheta.VAL - - - - false - 0 - - - false - - - - 0 - - 55 + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 100 + false 347 + 35 - + + + false + false + false + + + false - true - 39872d87:13e14015f61:3842 - - 20 - Action Button + + + + 3 + 1 + + true + + + false + + + + 1 + 25 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)ml_monoTheta.VAL + + false + 0.0 + true true false - $(P)ml_monoThetaInc.VAL - - - - - - - Action Button - true - > - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 95 + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 347 + 55 + + $(P)ml_monoThetaInc.VAL 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)ml_monoThetaInc.VAL + + + + true + true + false + + + + > + false $(pv_name) $(pv_value) + true + Action Button + 20 427 + 95 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3843 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)ml_monoThetaTweak + + false + 0.0 + true true false - 1 - false + 0 - $(P)ml_monoThetaTweak - - - - false - 0 - - - false - - - - 0 - - 95 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 367 + 95 - + + + + $(P)ml_monoThetaDec.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:3844 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)ml_monoThetaDec.VAL + + true true false - $(P)ml_monoThetaDec.VAL + + + < + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 347 + 95 + + + + false + false + false - + - - - - Action Button + true + + + + 0 + 1 true - < - false - Default + - 20 - 0 - 0 - - - - false - 1 - - - - 95 - - - $(P)ml_monoThetaDec.VAL - 1 - 10 - - - - $(pv_name) -$(pv_value) - 347 - - - true - true - 1 - false - 39872d87:13e14015f61:3845 - false - 0.0 - + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)ml_monoTheta.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoTheta.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 20 false - $(pv_name) -$(pv_value) 347 + 20 - - true - true - 1 - false - 39872d87:13e14015f61:3846 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)ml_monoTheta.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoTheta.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 80 false - $(pv_name) -$(pv_value) 347 + 80 - - true - true - 1 - false - 39872d87:13e14015f61:3847 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)ml_monoLambda.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoLambda.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 80 false - $(pv_name) -$(pv_value) 237 + 80 - - true - true - 1 - false - 39872d87:13e14015f61:3848 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)ml_monoE.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoE.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 80 false - $(pv_name) -$(pv_value) 127 + 80 - - true - true - 1 - false - 39872d87:13e14015f61:3849 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)ml_monoLambdaRdbk + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoLambdaRdbk - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 35 false - $(pv_name) -$(pv_value) 237 + 35 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:384a - 0.0 + false Text Input - - true - true - false - - 1 - false - 0 - $(P)ml_monoLambda.VAL - - - - false + 0 + false 0 - - - false - - - - 0 - - 55 + true + $(P)ml_monoLambda.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 237 + 55 - + + + + $(P)ml_monoLambdaInc.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:384b - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)ml_monoLambdaInc.VAL + + true true false - $(P)ml_monoLambdaInc.VAL - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 95 - - - $(P)ml_monoLambdaInc.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 317 + 95 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:384c - 0.0 + false Text Input + 0 + false + 0 + true + $(P)ml_monoLambdaTweak + + false + 0.0 + true true false - 1 - false + 0 - $(P)ml_monoLambdaTweak - - - - false - 0 - - - false - - - - 0 - - 95 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 257 + 95 - + + + + $(P)ml_monoLambdaDec.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:384d - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)ml_monoLambdaDec.VAL + + true true false - $(P)ml_monoLambdaDec.VAL - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 95 - - - $(P)ml_monoLambdaDec.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 237 + 95 - - true - true - 1 - false - 39872d87:13e14015f61:384e + + + false false - 0.0 - - 15 - Text Update - false - - true - true - false - - 1 - true - false - $(P)ml_monoLambda.DRVH + false - + - - - - Text Update + true + + + + 0 + 1 true - ###### - false - 0 - + - 100 - 0 + false + + + + 1 + 15 + 0 + Text Update + 0 + true + $(P)ml_monoLambda.DRVH + + 0.0 - - 1 - - - - 0 - - 20 - false + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 100 + false 237 + 20 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:384f - 0.0 + false Text Input + 0 + false + 0 + true + $(P)ml_monoE.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)ml_monoE.VAL - - - - false - 0 - - - false - - - - 0 - - 55 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 127 + 55 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3850 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)ml_monoETweak + + false + 0.0 + true true false - 1 - false + 0 - $(P)ml_monoETweak - - - - false - 0 - - - false - - - - 0 - - 95 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 147 + 95 - + + + + $(P)ml_monoEDec.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:3851 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)ml_monoEDec.VAL + + true true false - $(P)ml_monoEDec.VAL - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 127 95 + + - $(P)ml_monoEDec.VAL + $(P)ml_monoEInc.VAL 1 10 + - $(pv_name) -$(pv_value) - 127 - - - false - true - 39872d87:13e14015f61:3852 - - 20 - Action Button - false - - true - true - false - - $(P)ml_monoEInc.VAL + false + false - + - - - - Action Button + false + + + + 0 + 1 true - > - false - Default + Default - 20 - 0 - 0 + false + + + + 20 - + Action Button + 0 + $(P)ml_monoEInc.VAL + + + true + true + false + + + + > false - 1 - - - - 95 - - - $(P)ml_monoEInc.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 207 + 95 - - true - true - 1 - false - 39872d87:13e14015f61:3853 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)ml_monoE.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoE.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 20 false - $(pv_name) -$(pv_value) 127 + 20 - - true - true - 1 - false - 39872d87:13e14015f61:3854 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)ml_monoERdbk + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoERdbk - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 35 false - $(pv_name) -$(pv_value) 127 + 35 - - true - 1 - 39872d87:13e14015f61:3855 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + lambda (A) + + true + 1 + true + Label + 100 + false + 237 + 1 + + + + false - - - - Label - true - lambda (A) - - - - 100 - 0 - - 1 - 1 - - 1 - true - - 237 - - - true - 1 - 39872d87:13e14015f61:3856 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + E (keV) + + true + 1 + true + Label + 100 + false + 127 + 1 + + + + false - - - - Label - true - E (keV) - - - - 100 - 0 - - 1 - 1 - - 1 - true - - 127 - - - true - 1 - 39872d87:13e14015f61:3857 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Low Limit + + true + 1 + true + Label + 75 + false + 460 + 80 + + + + false - - - - Label - true - Low Limit - - - - 75 - 0 - - 1 - 0 - - 80 - true - - 460 - - - true - 1 - 39872d87:13e14015f61:3858 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Desired + + true + 1 + true + Label + 75 + false + 460 + 60 + + + + false - - - - Label - true - Desired - - - - 75 - 0 - - 1 - 0 - - 60 - true - - 460 - - - true - 1 - 39872d87:13e14015f61:3859 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Actual + + true + 1 + true + Label + 75 + false + 460 + 38 + + + + false - - - - Label - true - Actual - - - - 75 - 0 - - 1 - 0 - - 38 - true - - 460 - - - true - 1 - 39872d87:13e14015f61:385a - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + High Limit + + true + 1 + true + Label + 75 + false + 460 + 20 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label + false + + + + 0 + 1 true - High Limit + true + 100.0 - + Default - 75 - 0 + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 - 1 + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 535 + 0 + 119 + + + + false + 255 + true + false + + + + false - 0 - - 20 - true - - 460 + 0 + 1 + true + false + + Default + + false + + + + 18 + 0 + 1 + Arc + + + + + true + true + true + + + 90 + $(pv_name) +$(pv_value) + 180 + true + Arc + 25 + 100 + 180 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:385b - 0.0 - - 0 - 1 - true - Polyline + + Default + false - 255 + + + + 9 + true + 0 + 1 + Polyline + + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 108 + 178 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 535 - 0 - 0 - - - 1 - 1 - true + false - - 119 - $(pv_name) -$(pv_value) - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:3860 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 19 - 0 - 0 - - 1 - 1 - true - - - - - 189 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 19 79 + 189 - - true - true - 1 - false - 39872d87:13e14015f61:3862 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 18 + 1 Text Update - false + 0 + true + $(P)ml_monoSeqMsg1 + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoSeqMsg1 - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 339 - 0 - - - 1 - - - - 1 - - 299 false - $(pv_name) -$(pv_value) 98 + 299 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:3863 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 535 - 0 - 0 - - 1 - 1 - true - - - - - 289 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 535 -1 + 289 - - true - true - 1 - false - 39872d87:13e14015f61:3864 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 18 + 1 Text Update - false + 0 + true + $(P)ml_monoSeqMsg2 + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoSeqMsg2 - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 339 - 0 - - - 1 - - - - 1 - - 319 false - $(pv_name) -$(pv_value) 98 + 319 - - false - true - 39872d87:13e14015f61:3865 - - 34 - Action Button - false - - true - true - false - - $(P)ml_monoOperAck - - - - - - - Action Button - true - OK - false - - Default - - 54 - 0 - 0 - - - - false - 1 - - - - 300 + $(P)ml_monoOperAck 1 10 + - $(pv_name) -$(pv_value) - 21 - - + false + false + + + false - true - 39872d87:13e14015f61:3866 - - 22 - Choice Button + + + + 0 + 1 + true + + Default + false + + + + 34 + + Action Button + 0 + $(P)ml_monoOperAck + + true true false - $(P)ml_monoUseSet.VAL + + + OK + false + $(pv_name) +$(pv_value) + true + Action Button + 54 + 21 + 300 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 100 - 0 - - - - - + false + + + + 22 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 260 + Choice Button + $(P)ml_monoUseSet.VAL + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 100 5 + 260 - - true - 1 - 39872d87:13e14015f61:3867 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true Calibration: - - - - 100 - 0 - - 1 - - - - 0 - - 244 - true + true + 1 + true + Label + 100 + false 5 + 244 - - true - 1 - 39872d87:13e14015f61:3868 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + Y2 + + true + 1 + true + Label + 90 + false + 300 + 123 + + + + false - - - - Label - true - Y2 - - - - 90 - 0 - - 1 - 1 - - 123 - true - - 300 - - - true - 1 - 39872d87:13e14015f61:3869 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Actual Pos. + + true + 1 + true + Label + 50 + false + 495 + 155 + + + + false - - - - Label - true - Actual Pos. - - - - 50 - 0 - - 1 - 0 - - 155 - true - - 495 - - - true - 1 - 39872d87:13e14015f61:386a - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true Motor Command - - - - 50 - 0 - - 1 - - - - 0 - - 173 - true + true + 1 + true + Label + 50 + false 495 + 173 - + + + + $(P)allstop.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:386b - + + + + 0 + 1 + true + + Default + + false + + + 38 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)allstop.VAL - - - - - - - Action Button - true + + All Stop - false - - Default - - 88 - 0 - 0 - - - false - 1 - - - - 189 - - - $(P)allstop.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 88 540 + 189 - - true - 1 - 39872d87:13e14015f61:386c + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true Motor PV - - - - 50 - 0 - - 1 - - - - 0 - - 138 - true + true + 1 + true + Label + 50 + false 496 + 138 - + + + false + false + + + false - true - 39872d87:13e14015f61:386d - + + + + 0 + 1 + true + + Default + + false + + + 35 + false + + Choice 1 + Choice 2 + Choice 3 + + true Choice Button - false + $(P)ml_monoMode2.VAL + + true true false - $(P)ml_monoMode2.VAL - - - - - - - Choice Button - true - false - - Default - - 106 - 0 + - - - - Choice 1 - Choice 2 - Choice 3 - - 1 - false - - - - true - - 245 $(pv_name) $(pv_value) + true + Choice Button + 106 385 + 245 - - true - 1 - 39872d87:13e14015f61:386e + + false - - 22 - Label - - true - true - false - - true - false - - - - Label + + + + 0 + 1 true - Moving - + - 88 - 0 + + + + 22 + 1 + Label @@ -3010,46 +3013,45 @@ $(pv_value) $(P)ml_monoMoving - 1 - - - - 1 - - 230 - true - - 540 - - - true - 1 - 39872d87:13e14015f61:386f - false - - 22 - Label true true false - true + false + Moving + + true + 1 + true + Label + 88 + false + 540 + 230 + + + + false - - - - Label + + + + 0 + 1 true - Done - + - 88 - 0 + + + + 22 + 1 + Label @@ -3061,1128 +3063,1129 @@ $(pv_value) $(P)ml_monoMoving - 1 - - - - 1 - - 230 - true - - 540 - - - true - 1 - 39872d87:13e14015f61:3870 - false - - 14 - Label true true false - true + false + Done + + true + 1 + true + Label + 88 + false + 540 + 230 + + + + false - - - - Label - true - (y offset) - - - - 80 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 1 - - 176 - true - - 310 - - - true - 1 - 39872d87:13e14015f61:3871 - false - - 20 Label + true true false - true + false + (y offset) + + true + 1 + true + Label + 80 + false + 310 + 176 + + + + false - - - - Label - true - Z2 - - - - 90 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 1 - - 123 - true + Label + + + true + true + false + + + false + Z2 + true + 1 + true + Label + 90 + false 395 + 123 - - true - true - 1 - false - 39872d87:13e14015f61:3872 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 0 Text Update - false + 0 + true + $(P)ml_monoZRdbk + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoZRdbk - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 89 - 0 - - - 1 - - - - 0 - - 155 false - $(pv_name) -$(pv_value) 402 + 155 - - true - true - 1 - false - 39872d87:13e14015f61:3873 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 13 + 1 Text Update - false + 0 + true + $(P)ml_monoZPv + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoZPv - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 89 - 0 - - - 1 - - - - 1 - - 140 false - $(pv_name) -$(pv_value) 401 + 140 - - true - true - 1 - false - 39872d87:13e14015f61:3874 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 0 Text Update - false + 0 + true + $(P)ml_mono_yOffset + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_mono_yOffset - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 0 - - 155 false - $(pv_name) -$(pv_value) 310 + 155 - - true - true - 1 - false - 39872d87:13e14015f61:3875 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 13 + 1 Text Update - false + 0 + true + $(P)ml_monoYPv + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoYPv - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 89 - 0 - - - 1 - - - - 1 - - 140 false - $(pv_name) -$(pv_value) 306 + 140 - - true - 1 - 39872d87:13e14015f61:3876 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true Theta - - - - 90 - 0 - - 1 - - - - 1 - - 123 - true + true + 1 + true + Label + 90 + false 110 + 123 - - true - true - 1 - false - 39872d87:13e14015f61:3877 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 0 Text Update - false + 0 + true + $(P)ml_monoThetaRdbk + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoThetaRdbk - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 89 - 0 - - - 1 - - - - 0 - - 155 false - $(pv_name) -$(pv_value) 115 + 155 - - true - true - 1 - false - 39872d87:13e14015f61:3878 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 13 + 1 Text Update - false + 0 + true + $(P)ml_monoThetaPv + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoThetaPv - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 89 - 0 - - - 1 - - - - 1 - - 140 false - $(pv_name) -$(pv_value) 114 + 140 - - true - 1 - 39872d87:13e14015f61:3879 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true Theta2 - - - - 90 - 0 - - 1 - - - - 1 - - 123 - true + true + 1 + true + Label + 90 + false 205 + 123 - - true - true - 1 - false - 39872d87:13e14015f61:387a + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 0 Text Update - false + 0 + true + $(P)ml_monoTheta2RdbkEcho + + 0.0 + true true false - 1 - true - false - $(P)ml_monoTheta2RdbkEcho - - - - - - + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true Text Update - true - ###### - false - 0 - - - 89 - 0 - - - 1 - - - - 0 - - 155 false - $(pv_name) -$(pv_value) 210 + 155 - - true - true - 1 - false - 39872d87:13e14015f61:387b + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 13 + 1 Text Update - false + 0 + true + $(P)ml_monoTheta2Pv + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoTheta2Pv - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 89 - 0 - - - 1 - - - - 1 - - 140 false - $(pv_name) -$(pv_value) 209 + 140 - - true - true - 1 - false - 39872d87:13e14015f61:387c + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 0 Text Update - false + 0 + true + $(P)ml_monoThetaSet + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoThetaSet - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 89 - 0 - - - 1 - - - - 0 - - 192 false - $(pv_name) -$(pv_value) 115 + 192 - - true - true - 1 - false - 39872d87:13e14015f61:387d + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 13 + 1 Text Update - false + 0 + true + $(P)ml_monoThetaVel + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoThetaVel - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 89 - 0 - - - 1 - - - - 1 - - 208 false - $(pv_name) -$(pv_value) 115 + 208 - - true - true - 1 - false - 39872d87:13e14015f61:387e + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 0 Text Update - false + 0 + true + $(P)ml_monoTheta2Set + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoTheta2Set - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 89 - 0 - - - 1 - - - - 0 - - 192 false - $(pv_name) -$(pv_value) 210 + 192 - - true - true - 1 - false - 39872d87:13e14015f61:387f + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 13 + 1 Text Update - false + 0 + true + $(P)ml_monoTheta2Vel + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoTheta2Vel - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 89 - 0 - - - 1 - - - - 1 - - 208 false - $(pv_name) -$(pv_value) 210 + 208 - - true - true - 1 - false - 39872d87:13e14015f61:3880 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 0 Text Update - false + 0 + true + $(P)ml_monoZSet + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoZSet - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 89 - 0 - - - 1 - - - - 0 - - 192 false - $(pv_name) -$(pv_value) 402 + 192 - - true - true - 1 - false - 39872d87:13e14015f61:3881 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 13 + 1 Text Update - false + 0 + true + $(P)ml_monoZVel + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoZVel - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 89 - 0 - - - 1 - - - - 1 - - 208 false - $(pv_name) -$(pv_value) 402 + 208 - - true - 1 - 39872d87:13e14015f61:3882 + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - Ideal - - - - 50 - 0 - - 1 - 0 - - 192 - true - - 495 - - - true - 1 - 39872d87:13e14015f61:3883 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Ideal + + true + 1 + true + Label + 50 + false + 495 + 192 + + + + false - - - - Label - true - Speed - - - - 50 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 207 - true + Label + + + true + true + false + + + false + Speed + true + 1 + true + Label + 50 + false 495 + 207 - - true - true - 1 - false - 39872d87:13e14015f61:3887 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 0 Text Update - false + 0 + true + $(P)ml_monoThetaCmd + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoThetaCmd - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 89 - 0 - - - 1 - - - - 0 - - 173 false - $(pv_name) -$(pv_value) 115 + 173 - - true - true - 1 - false - 39872d87:13e14015f61:3888 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 0 Text Update - false + 0 + true + $(P)ml_monoTheta2Cmd + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoTheta2Cmd - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 89 - 0 - - - 1 - - - - 0 - - 173 false - $(pv_name) -$(pv_value) 210 + 173 - - true - true - 1 - false - 39872d87:13e14015f61:3889 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 0 Text Update - false + 0 + true + $(P)ml_monoZCmd + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)ml_monoZCmd - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 89 - 0 - - - 1 - - - - 0 - - 173 false - $(pv_name) -$(pv_value) 402 + 173 - \ No newline at end of file + diff --git a/opticsApp/op/opi/autoconvert/ml_monoSeqCtl_tiny.opi b/opticsApp/op/opi/autoconvert/ml_monoSeqCtl_tiny.opi new file mode 100644 index 0000000..b9c6030 --- /dev/null +++ b/opticsApp/op/opi/autoconvert/ml_monoSeqCtl_tiny.opi @@ -0,0 +1,1503 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 140 + + true + + ml_monoSeqCtl_tiny + + + true + true + false + true + false + Display + 215 + 300 + 258 + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 32 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 105 + 0 + 105 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 32 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 105 + 110 + 105 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 20 + 0 + Text Update + 0 + true + $(P)ml_monoERdbk + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 105 + false + 0 + 32 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 25 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)ml_monoE.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 105 + 0 + 48 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)ml_monoE.DRVH + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 105 + false + 0 + 19 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)ml_monoE.DRVL + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 105 + false + 0 + 71 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + E (keV) + + true + 1 + true + Label + 105 + false + 0 + 0 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)ml_monoETweak + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 65 + 20 + 84 + + + + + $(P)ml_monoEDec.VAL + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)ml_monoEDec.VAL + + + + true + true + false + + + + < + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 0 + 84 + + + + + $(P)ml_monoEInc.VAL + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)ml_monoEInc.VAL + + + + true + true + false + + + + > + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 85 + 84 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + true + true + false + + + false + SCAN CONTROL + + true + 1 + true + Label + 105 + false + 0 + 105 + + + + + $(P)allstop.VAL + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)allstop.VAL + + + + true + true + false + + + + Abort + false + $(pv_name) +$(pv_value) + true + Action Button + 40 + 64 + 115 + + + + + $(P)ml_monoE:scanParms.GO + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)ml_monoE:scanParms.GO + + + + true + true + false + + + + Go + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 43 + 115 + + + + + $(P)ml_monoE:scanParms.LOAD + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)ml_monoE:scanParms.LOAD + + + + true + true + false + + + + Ld + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 22 + 115 + + + + + scanParms.opi + + true + ml_monoE + ml_monoE + + 1 + Energy-scan parameters + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 1 + 115 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + TH (deg.) + + true + 1 + true + Label + 105 + false + 110 + 0 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 20 + 0 + Text Update + 0 + true + $(P)ml_monoThetaRdbk + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 105 + false + 110 + 32 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 25 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)ml_monoTheta.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 105 + 110 + 48 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)ml_monoTheta.DRVH + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 105 + false + 110 + 19 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)ml_monoTheta.DRVL + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 105 + false + 110 + 71 + + + + + $(P)ml_monoThetaInc.VAL + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)ml_monoThetaInc.VAL + + + + true + true + false + + + + > + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 195 + 84 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)ml_monoThetaTweak + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 65 + 130 + 84 + + + + + $(P)ml_monoThetaDec.VAL + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)ml_monoThetaDec.VAL + + + + true + true + false + + + + < + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 110 + 84 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + true + true + false + + + false + SCAN CONTROL + + true + 1 + true + Label + 105 + false + 110 + 105 + + + + + $(P)allstop.VAL + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)allstop.VAL + + + + true + true + false + + + + Abort + false + $(pv_name) +$(pv_value) + true + Action Button + 40 + 174 + 115 + + + + + $(P)ml_monoTheta:scanParms.GO + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)ml_monoTheta:scanParms.GO + + + + true + true + false + + + + Go + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 153 + 115 + + + + + $(P)ml_monoTheta:scanParms.LOAD + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)ml_monoTheta:scanParms.LOAD + + + + true + true + false + + + + Ld + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 132 + 115 + + + + + scanParms.opi + + true + ml_monoTheta + ml_monoTheta + + 1 + Theta-scan parameters + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 111 + 115 + + diff --git a/opticsApp/op/opi/autoconvert/orient.opi b/opticsApp/op/opi/autoconvert/orient.opi new file mode 100644 index 0000000..4affa12 --- /dev/null +++ b/opticsApp/op/opi/autoconvert/orient.opi @@ -0,0 +1,4166 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 245 + + true + + orient + + + true + true + false + true + false + Display + 490 + 82 + 81 + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 20 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 490 + 0 + 0 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 3 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 490 + 0 + 20 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):TTH_busy + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 85 + 161 + 97 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):TH_busy + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 85 + 161 + 121 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):CHI_busy + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 85 + 161 + 143 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):PHI_busy + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 85 + 161 + 166 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 22 + true + + + + 0 + 3 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):Alert + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 420 + 10 + 22 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):L_busy + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 23 + 177 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):K_busy + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 23 + 117 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):H_busy + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 23 + 59 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):motCHI_Connected + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 395 + 140 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):waiting4motCHI + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 395 + 140 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):motTH_Connected + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 395 + 100 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):waiting4motTH + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 395 + 100 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):motTTH_Connected + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 395 + 60 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):waiting4motTTH + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 395 + 60 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):motPHI_Connected + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 395 + 180 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):waiting4motPHI + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 395 + 180 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + Diffractometer $(P)orient$(O) + + true + 1 + true + Label + 490 + false + 0 + 0 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + true + true + false + + + false + CONSTRAINT: + + true + 1 + true + Label + 115 + false + 132 + 64 + + + + true + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + $(P)orient$(O):Mode + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 115 + 132 + 75 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):TTH + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 164 + 99 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):TH + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 164 + 122 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):CHI + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 164 + 145 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):PHI + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 164 + 168 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + TTH + + true + 1 + true + Label + 30 + false + 131 + 100 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + TH + + true + 1 + true + Label + 30 + false + 131 + 123 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + CHI + + true + 1 + true + Label + 30 + false + 131 + 146 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + PHI + + true + 1 + true + Label + 30 + false + 131 + 169 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + + true + + + false + + $(P)orient$(O):motPut + $(P)orient$(O):motPut_Auto + + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 94 + 257 + 121 + + + + false + 255 + true + false + + + + false + + + + 0 + 1 + true + 100.0 + + Default + + false + + + + 27 + true + + + + 0 + 0 + Polygon + + + + + + + + + 0.0 + + + + true + + + false + + $(P)orient$(O):motPut + $(P)orient$(O):motPut_Auto + + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polygon + 24 + 344 + 108 + + + + true + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 14 + + Menu Button + $(P)orient$(O):motPut_Auto + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 55 + 280 + 97 + + + + + $(P)orient$(O):motPut + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):motPut + + + + true + true + false + + + + Move + false + $(pv_name) +$(pv_value) + true + Action Button + 55 + 280 + 111 + + + + + $(P)orient$(O):stopMotors + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 28 + + Action Button + 0 + $(P)orient$(O):stopMotors + + + + true + true + false + + + + Stop Motors + false + $(pv_name) +$(pv_value) + true + Action Button + 120 + 249 + 202 + + + + + $(P)orient$(O):OperAck + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):OperAck + + + + true + true + false + + + + Erase + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 430 + 23 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 14 + 0 + Text Update + 0 + true + + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 412 + false + 14 + 27 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 20 + 1 + Text Update + 0 + true + $(P)orient$(O):Busy + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 55 + false + 280 + 70 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 14 + 1 + Text Update + 0 + true + $(P)orient$(O):H_RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 26 + 46 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + L + + true + 1 + true + Label + 10 + false + 10 + 180 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):L + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 25 + 179 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 14 + 1 + Text Update + 0 + true + $(P)orient$(O):L_RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 26 + 163 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + K + + true + 1 + true + Label + 10 + false + 10 + 120 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):K + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 25 + 119 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 14 + 1 + Text Update + 0 + true + $(P)orient$(O):K_RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 26 + 103 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):H + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 25 + 61 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + H + + true + 1 + true + Label + 10 + false + 10 + 62 + + + + true + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 14 + + Menu Button + $(P)orient$(O):motGet_Auto + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 55 + 280 + 145 + + + + + $(P)orient$(O):motGet + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):motGet + + + + true + true + false + + + + Read + false + $(pv_name) +$(pv_value) + true + Action Button + 55 + 280 + 159 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 2 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + + true + + + false + + $(P)orient$(O):motGet + $(P)orient$(O):motGet_Auto + + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 94 + 267 + 168 + + + + false + 255 + true + false + + + + false + + + + 0 + 1 + true + 100.0 + + Default + + false + + + + 27 + true + + + + 0 + 0 + Polygon + + + + + + + + + 0.0 + + + + true + + + false + + $(P)orient$(O):motGet + $(P)orient$(O):motGet_Auto + + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polygon + 24 + 252 + 156 + + + + + orient_full.opi + + true + + 1 + Everything + + + motor4x.opi + + true +

$(PM)

+ $(mTTH) + $(mTH) + $(mCHI) + $(mPHI) +
+ 1 + Motors +
+
+ false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 40 + 450 + 225 +
+ + + + orient_HKL.opi + + true + + 0 + HKL only + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 21 + + Action Button + 0 + + + + + true + true + false + + + + Less + false + $(pv_name) +$(pv_value) + true + Action Button + 40 + 412 + 225 + + + + + $(P)orient$(O):H_tweak.A + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):H_tweak.A + + + + true + true + false + + + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 85 + 81 + + + + + $(P)orient$(O):H_tweak.B + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):H_tweak.B + + + + true + true + false + + + + - + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 25 + 81 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):H_tweak.C + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 45 + 83 + + + + + $(P)orient$(O):L_tweak.A + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):L_tweak.A + + + + true + true + false + + + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 85 + 199 + + + + + $(P)orient$(O):L_tweak.B + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):L_tweak.B + + + + true + true + false + + + + - + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 25 + 199 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):L_tweak.C + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 45 + 201 + + + + + $(P)orient$(O):K_tweak.A + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):K_tweak.A + + + + true + true + false + + + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 85 + 139 + + + + + $(P)orient$(O):K_tweak.B + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):K_tweak.B + + + + true + true + false + + + + - + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 25 + 139 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):K_tweak.C + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 45 + 141 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 14 + 1 + Text Update + 0 + true + $(PM)$(mCHI).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 397 + 126 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(PM)$(mCHI) + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 397 + 142 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 14 + 1 + Text Update + 0 + true + $(PM)$(mTH).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 397 + 86 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(PM)$(mTH) + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 397 + 102 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 14 + 1 + Text Update + 0 + true + $(PM)$(mTTH).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 397 + 46 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(PM)$(mTTH) + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 397 + 62 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + + true + + + false + + $(P)orient$(O):waiting4Mot + + + + true + true + false + + + false + Moving + + true + 1 + true + Label + 84 + false + 395 + 203 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 14 + 1 + Text Update + 0 + true + $(PM)$(mPHI).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 397 + 166 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(PM)$(mPHI) + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 397 + 182 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + TTH + + true + 1 + true + Label + 30 + false + 365 + 63 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + TH + + true + 1 + true + Label + 30 + false + 365 + 103 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + CHI + + true + 1 + true + Label + 30 + false + 365 + 143 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + PHI + + true + 1 + true + Label + 30 + false + 365 + 183 + +
diff --git a/opticsApp/op/opi/orient9.opi b/opticsApp/op/opi/autoconvert/orient9.opi similarity index 73% rename from opticsApp/op/opi/orient9.opi rename to opticsApp/op/opi/autoconvert/orient9.opi index 4e1db82..339dd8a 100644 --- a/opticsApp/op/opi/orient9.opi +++ b/opticsApp/op/opi/autoconvert/orient9.opi @@ -1,192 +1,190 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 280 true - 39872d87:13e14015f61:39c1 - 3.1.2.20120830 + orient9 + + true + true + false true - 280 - orient9 false - false - - - - - - Display - true 675 - - true - 5 - - false - -1 - -1 - - - 33 - 274 - - false - true - 100.0 - - - - 39872d87:13e14015f61:39c2 - - - - - 20 - true - Rectangle - false + 729 + 568 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 700 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 100.0 + 20 + true - 39872d87:13e14015f61:39c3 - - - - - 3 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 700 + 0 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 700 - 0 - 0 - - - 1 - 0 - true - - - - - 20 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 0.0 + 3 + true - + - 39872d87:13e14015f61:39e9 - - - - - 24 - true + 0 + 0 Rectangle - false - 255 + + + true true false - true - + + $(pv_name) +$(pv_value) + false + true + Rectangle + 700 + 0 + 20 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 24 + true + + + 0 - 0 + 2 + Rectangle + + @@ -198,62 +196,62 @@ $(pv_value) $(P)orient$(O):motTTH_Connected - - 1 - 2 - true - - - - - 145 + + true + true + false + + $(pv_name) $(pv_value) + true + true + Rectangle + 84 313 - false + 145 - - false - true - 0.0 - - - - 39872d87:13e14015f61:39eb + + + false + 255 + true + false + + + - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 24 + true + + + 0 - 0 + 2 + Rectangle + + @@ -265,62 +263,62 @@ $(pv_value) $(P)orient$(O):waiting4motTTH - - 1 - 2 - true - - - - - 145 - $(pv_name) -$(pv_value) - 313 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3a01 - - - - - 26 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 84 + 313 + 145 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 26 + true + + + 0 - 0 + 2 + Rectangle + + @@ -332,62 +330,62 @@ $(pv_value) $(P)orient$(O):H_busy - - 1 - 2 - true - - - - - 145 - $(pv_name) -$(pv_value) - 29 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3a03 - - - - - 26 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 84 + 29 + 145 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 26 + true + + + 0 - 0 + 2 + Rectangle + + @@ -399,62 +397,62 @@ $(pv_value) $(P)orient$(O):K_busy - - 1 - 2 - true - - - - - 145 - $(pv_name) -$(pv_value) - 123 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3a05 - - - - - 26 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 84 + 123 + 145 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 26 + true + + + 0 - 0 + 2 + Rectangle + + @@ -466,62 +464,62 @@ $(pv_value) $(P)orient$(O):L_busy - - 1 - 2 - true - - - - - 145 - $(pv_name) -$(pv_value) - 218 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3a18 - - - - - 24 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 84 + 218 + 145 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 24 + true + + + 0 - 0 + 2 + Rectangle + + @@ -533,62 +531,62 @@ $(pv_value) $(P)orient$(O):motTH_Connected - - 1 - 2 - true - - - - - 145 - $(pv_name) -$(pv_value) - 403 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3a1a - - - - - 24 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 84 + 403 + 145 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 24 + true + + + 0 - 0 + 2 + Rectangle + + @@ -600,62 +598,62 @@ $(pv_value) $(P)orient$(O):waiting4motTH - - 1 - 2 - true - - - - - 145 - $(pv_name) -$(pv_value) - 403 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3a1b - - - - - 24 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 84 + 403 + 145 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 24 + true + + + 0 - 0 + 2 + Rectangle + + @@ -667,62 +665,62 @@ $(pv_value) $(P)orient$(O):motCHI_Connected - - 1 - 2 - true - - - - - 145 - $(pv_name) -$(pv_value) - 493 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3a1d - - - - - 24 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 84 + 493 + 145 + + + + false + 255 + true + false - - - - Rectangle - true - + - - false - - Default - - 84 - 0 + + false + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + @@ -734,62 +732,62 @@ $(pv_value) $(P)orient$(O):waiting4motCHI - - 1 - 2 - true - - - - - 145 - $(pv_name) -$(pv_value) - 493 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3a1e - - - - - 24 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 84 + 493 + 145 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 24 + true + + + 0 - 0 + 2 + Rectangle + + @@ -801,62 +799,62 @@ $(pv_value) $(P)orient$(O):motPHI_Connected - - 1 - 2 - true - - - - - 145 - $(pv_name) -$(pv_value) - 583 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3a20 - - - - - 24 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 84 + 583 + 145 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 24 + true + + + 0 - 0 + 2 + Rectangle + + @@ -868,1181 +866,399 @@ $(pv_value) $(P)orient$(O):waiting4motPHI - - 1 - 2 - true - - - - - 145 - $(pv_name) -$(pv_value) - 583 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3a24 - - - - - 68 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 84 + 583 + 145 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 669 + false + + + + false + 68 + true + + + 0 - 0 - - - 1 2 - true - - - - - 128 + Rectangle + + + + + true + true + false + + $(pv_name) $(pv_value) - 0 - false - - - - true - - true - 39872d87:13e14015f61:39c8 - - 20 - Grouping Container - - true - true - false - true - false + true + Rectangle + 669 + 0 + 128 + + + + false - + - - - - Grouping Container + + + + 0 + 1 true - Default + - 350 - 0 + + + + 20 + 1 + Label - false - 1 - - - - - 25 - - 315 - - true - 1 - 39872d87:13e14015f61:39c9 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - TTH - - - - 80 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:39ca - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - TH - - - - 80 - 0 - - 1 - - - - 1 - - 0 - true - - 90 - - - true - 1 - 39872d87:13e14015f61:39cb - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - CHI - - - - 80 - 0 - - 1 - - - - 1 - - 0 - true - - 180 - - - true - 1 - 39872d87:13e14015f61:39cc - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - PHI - - - - 80 - 0 - - 1 - - - - 1 - - 0 - true - - 270 - - - - - true - - true - 39872d87:13e14015f61:3a26 - - 69 - Grouping Container true true false - true + false + Diffractometer + + true + 1 + true + Label + 700 + false + 0 + 0 + + + + false - + - - - - Grouping Container + + + + 0 + 1 true - Default + - 260 - 0 + + + + 20 + 1 + Label - false - 1 - - - - - 48 - - 405 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:3a27 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 260 - 0 - 0 - - - 1 - 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:3a28 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 260 - 0 - 0 - - - 1 - 1 - true - - - - - 68 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:3a29 - 0.0 - - 0 - 69 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:3a2a - 0.0 - - 0 - 69 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 258 - - - - - true - - true - 39872d87:13e14015f61:3a2b - - 69 - Grouping Container true true false - true + false + H + + true + 1 + true + Label + 80 + false + 30 + 25 + + + + false - + - - - - Grouping Container - true - - Default - - 260 - 0 - - false - 1 - - 205 - - 405 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:3a2c - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 260 - 0 - 0 - - - 1 - 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:3a2d - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 260 - 0 - 0 - - - 1 - 1 - true - - - - - 68 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:3a2e - 0.0 - - 0 - 69 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:3a2f - 0.0 - - 0 - 69 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 258 - - - - - true - - true - 39872d87:13e14015f61:3a30 - + 0 + 1 + true + + + + + + 20 - Grouping Container + 1 + Label + true true false - true + false + K + + true + 1 + true + Label + 80 + false + 125 + 25 + + + + false - + - - - - Grouping Container - true - - Default - - 175 - 0 - - false - 1 - - 233 - - 456 - - true - 1 - 39872d87:13e14015f61:3a31 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Energy: - - - - 70 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3a32 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):energy - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 74 - - - true - 1 - 39872d87:13e14015f61:3a33 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - keV - - - - 30 - 0 - - 1 - - - - 0 - - 0 - true - - 145 - - - - true - 1 - 39872d87:13e14015f61:39c4 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + L + + true + 1 + true + Label + 80 + false + 220 + 25 + + + + false - - - - Label - true - Diffractometer - - - - 700 - 0 - - 1 - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:39c5 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + TTH + + true + 1 + true + Label + 80 + false + 315 + 25 + + + + false - - - - Label - true - H - - - - 80 - 0 - - 1 - 1 - - 25 - true - - 30 - - - true - 1 - 39872d87:13e14015f61:39c6 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + TH + + true + 1 + true + Label + 80 + false + 405 + 25 + + + + false - - - - Label - true - K - - - - 80 - 0 - - 1 - 1 - - 25 - true - - 125 - - - true - 1 - 39872d87:13e14015f61:39c7 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + CHI + + true + 1 + true + Label + 80 + false + 495 + 25 + + + + false - - - - Label - true - L - - - - 80 - 0 - - 1 - 1 - - 25 - true - - 220 - - - false - true - false - 39872d87:13e14015f61:39cd - + 0 + 1 + true + + + + + + 20 - Menu Button - false + 1 + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 25 - 6 - - - - 1 - - - - 105 + + false + PHI + + true + 1 + true + Label + 80 + false + 585 + 25 + + orient_slave.opi @@ -2050,52 +1266,54 @@ $(pv_value) true _p1 - 0 + 1 More - $(pv_name) -$(pv_value) - 2 - - + false + false + + + false - true - false - 39872d87:13e14015f61:39ce - - 20 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + +1 + false + $(pv_name) +$(pv_value) + true + Action Button 25 - 6 - - - - 1 - - - - 85 + 2 + 105 + + orient_slave.opi @@ -2103,52 +1321,54 @@ $(pv_value) true _p2 - 0 + 1 More - $(pv_name) -$(pv_value) - 2 - - + false + false + + + false - true - false - 39872d87:13e14015f61:39cf - - 20 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 25 - 6 - - - - 1 - - - - 65 + + + +2 + false + $(pv_name) +$(pv_value) + true + Action Button + 25 + 2 + 85 + + orient_slave.opi @@ -2156,52 +1376,54 @@ $(pv_value) true _p3 - 0 + 1 More - $(pv_name) -$(pv_value) - 2 - - + false + false + + + false - true - false - 39872d87:13e14015f61:39d0 - - 20 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + +3 + false + $(pv_name) +$(pv_value) + true + Action Button 25 - 6 - - - - 1 - - - - 45 + 2 + 65 + + orient_slave.opi @@ -2209,1225 +1431,1227 @@ $(pv_value) true _p4 - 0 + 1 More + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + +4 + false $(pv_name) $(pv_value) + true + Action Button + 25 2 + 45 - - true - true - 1 - false - 39872d87:13e14015f61:39d1 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient_p4:H + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_p4:H - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 45 false - $(pv_name) -$(pv_value) 30 + 45 - - true - true - 1 - false - 39872d87:13e14015f61:39d2 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient_p4:TTH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_p4:TTH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 45 false - $(pv_name) -$(pv_value) 315 + 45 - - true - true - 1 - false - 39872d87:13e14015f61:39d3 + + + false false - 0.0 - - 15 - Text Update - false - - true - true - false - - 1 - true - false - $(P)orient_p4:K + false - + - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 + true + 0 + 1 + true + + + + false + + + + 1 + 15 1 - - 45 - false + Text Update + 0 + true + $(P)orient_p4:K + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 80 + false 125 + 45 - - true - true - 1 - false - 39872d87:13e14015f61:39d4 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient_p4:L + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_p4:L - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 45 false - $(pv_name) -$(pv_value) 220 + 45 - - true - true - 1 - false - 39872d87:13e14015f61:39d5 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient_p3:TTH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_p3:TTH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 65 false - $(pv_name) -$(pv_value) 315 + 65 - - true - true - 1 - false - 39872d87:13e14015f61:39d6 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient_p3:H + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_p3:H - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 65 false - $(pv_name) -$(pv_value) 30 + 65 - - true - true - 1 - false - 39872d87:13e14015f61:39d7 + + + false false - 0.0 - - 15 - Text Update - false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)orient_p3:K + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_p3:K - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 65 false - $(pv_name) -$(pv_value) 125 + 65 - - true - true - 1 - false - 39872d87:13e14015f61:39d8 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient_p3:L + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_p3:L - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 65 false - $(pv_name) -$(pv_value) 220 + 65 - - true - true - 1 - false - 39872d87:13e14015f61:39d9 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient_p2:H + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_p2:H - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 85 false - $(pv_name) -$(pv_value) 30 + 85 - - true - true - 1 - false - 39872d87:13e14015f61:39da + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient_p2:K + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_p2:K - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 85 false - $(pv_name) -$(pv_value) 125 + 85 - - true - true - 1 - false - 39872d87:13e14015f61:39db + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient_p2:L + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_p2:L - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 85 false - $(pv_name) -$(pv_value) 220 + 85 - - true - true - 1 - false - 39872d87:13e14015f61:39dc + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient_p2:TTH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_p2:TTH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 85 false - $(pv_name) -$(pv_value) 315 + 85 - - true - true - 1 - false - 39872d87:13e14015f61:39dd + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient_p1:H + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_p1:H - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 105 false - $(pv_name) -$(pv_value) 30 + 105 - - true - true - 1 - false - 39872d87:13e14015f61:39de + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient_p1:K + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_p1:K + 1 + true + Text Update + 80 + false + 125 + 105 + + + + false + false + false - + + true + + + + 0 + 1 + true + + + + false - + - Text Update - true - ###### - false + 1 + 15 + 1 + Text Update 0 - - - - 80 - 0 - + true + $(P)orient_p1:L - 1 - - - - 1 - - 105 - false - $(pv_name) -$(pv_value) - 125 - - - true - true - 1 - false - 39872d87:13e14015f61:39df - false 0.0 - - 15 - Text Update - false + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_p1:L - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 105 false - $(pv_name) -$(pv_value) 220 + 105 - - true - true - 1 - false - 39872d87:13e14015f61:39e0 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient_p1:TTH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_p1:TTH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 105 false - $(pv_name) -$(pv_value) 315 + 105 - - true - true - 1 - false - 39872d87:13e14015f61:39e1 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient$(O):H_RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient$(O):H_RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 130 false - $(pv_name) -$(pv_value) 30 + 130 - - true - true - 1 - false - 39872d87:13e14015f61:39e2 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient$(O):K_RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient$(O):K_RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 130 false - $(pv_name) -$(pv_value) 125 + 130 - - true - true - 1 - false - 39872d87:13e14015f61:39e3 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient$(O):L_RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient$(O):L_RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 130 false - $(pv_name) -$(pv_value) 220 + 130 - - true - true - 1 - false - 39872d87:13e14015f61:39e4 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient1:TTH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient1:TTH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 130 false - $(pv_name) -$(pv_value) 315 + 130 - - true - true - 1 - false - 39872d87:13e14015f61:39e5 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient1:TH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient1:TH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 130 false - $(pv_name) -$(pv_value) 405 + 130 - - true - true - 1 - false - 39872d87:13e14015f61:39e6 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient1:CHI + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient1:CHI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 130 false - $(pv_name) -$(pv_value) 495 + 130 - - true - true - 1 - false - 39872d87:13e14015f61:39e7 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient1:PHI + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient1:PHI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 130 false - $(pv_name) -$(pv_value) 585 + 130 - - false - true - false - 39872d87:13e14015f61:39e8 - - 27 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 25 - 6 - - - - 1 - - - - 144 + orient.opi @@ -3435,7 +2659,7 @@ $(pv_value) true 1 - 0 + 1 Orientation matrix @@ -3448,108 +2672,115 @@ $(pv_value) $(mCHI) $(mPHI) - 0 + 1 Motors - $(pv_name) -$(pv_value) - 2 - - - false - true - 1 - false - false - - 20 - false - true + false + false + false - + - Text Input + false + + + + 6 + 1 true - - + Default - 80 - 3 + false + + + + 27 + + Menu Button + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:39ea - 0.0 - Text Input + true true false - 1 + + false + $(pv_name) +$(pv_value) false - 0 - $(PM)$(mTTH) - - - + true + Menu Button + 25 + 2 + 144 + + + + false + false false - 0 - - - false + + + + false - 0 - - 147 - $(pv_name) -$(pv_value) - 315 - - - false - true - false - 39872d87:13e14015f61:39ec - - 20 - Menu Button + 3 + 1 + + true + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(PM)$(mTTH) + + false + 0.0 + true true false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - - - - - - - - Menu Button - true - false - - Default - - 25 - 6 - - - - 1 - - - - 200 + true + Text Input + 80 + 315 + 147 + + orient_slave.opi @@ -3557,52 +2788,54 @@ $(pv_value) true _m1 - 0 + 1 More - $(pv_name) -$(pv_value) - 2 - - + false + false + + + false - true - false - 39872d87:13e14015f61:39ed - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button + + + + 0 + 1 true - false - Default + Default - 25 - 6 - - + false + + + + 20 + + Action Button + 0 + - 1 - - - - 220 + + + true + true + false + + + + -1 + false + $(pv_name) +$(pv_value) + true + Action Button + 25 + 2 + 200 + + orient_slave.opi @@ -3610,52 +2843,54 @@ $(pv_value) true _m2 - 0 + 1 More - $(pv_name) -$(pv_value) - 2 - - + false + false + + + false - true - false - 39872d87:13e14015f61:39ee - - 20 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + -2 + false + $(pv_name) +$(pv_value) + true + Action Button 25 - 6 - - - - 1 - - - - 240 + 2 + 220 + + orient_slave.opi @@ -3663,52 +2898,54 @@ $(pv_value) true _m3 - 0 + 1 More - $(pv_name) -$(pv_value) - 2 - - + false + false + + + false - true - false - 39872d87:13e14015f61:39ef - - 20 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + -3 + false + $(pv_name) +$(pv_value) + true + Action Button 25 - 6 - - - - 1 - - - - 260 + 2 + 240 + + orient_slave.opi @@ -3716,2321 +2953,3050 @@ $(pv_value) true _m4 - 0 + 1 More + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + -4 + false $(pv_name) $(pv_value) + true + Action Button + 25 2 + 260 - - true - true - 1 - false - 39872d87:13e14015f61:39f0 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient_m1:H + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_m1:H - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 200 false - $(pv_name) -$(pv_value) 30 + 200 - - true - true - 1 - false - 39872d87:13e14015f61:39f1 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient_m1:K + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_m1:K - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 200 false - $(pv_name) -$(pv_value) 125 + 200 - - true - true - 1 - false - 39872d87:13e14015f61:39f2 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient_m1:L + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_m1:L - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 200 false - $(pv_name) -$(pv_value) 220 + 200 - - true - true - 1 - false - 39872d87:13e14015f61:39f3 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient_m1:TTH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_m1:TTH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 200 false - $(pv_name) -$(pv_value) 315 + 200 - - true - true - 1 - false - 39872d87:13e14015f61:39f4 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient_m2:H + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_m2:H - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 220 false - $(pv_name) -$(pv_value) 30 + 220 - - true - true - 1 - false - 39872d87:13e14015f61:39f5 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient_m2:K + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_m2:K - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 220 false - $(pv_name) -$(pv_value) 125 + 220 - - true - true - 1 - false - 39872d87:13e14015f61:39f6 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient_m2:L + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_m2:L - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 220 false - $(pv_name) -$(pv_value) 220 + 220 - - true - true - 1 - false - 39872d87:13e14015f61:39f7 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient_m2:TTH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_m2:TTH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 220 false - $(pv_name) -$(pv_value) 315 + 220 - - true - true - 1 - false - 39872d87:13e14015f61:39f8 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient_m3:H + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_m3:H - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 240 false - $(pv_name) -$(pv_value) 30 + 240 - - true - true - 1 - false - 39872d87:13e14015f61:39f9 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient_m3:K + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_m3:K - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 240 false - $(pv_name) -$(pv_value) 125 + 240 - - true - true - 1 - false - 39872d87:13e14015f61:39fa + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient_m3:L + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_m3:L - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 240 false - $(pv_name) -$(pv_value) 220 + 240 - - true - true - 1 - false - 39872d87:13e14015f61:39fb + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient_m3:TTH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_m3:TTH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 240 false - $(pv_name) -$(pv_value) 315 + 240 - - true - true - 1 - false - 39872d87:13e14015f61:39fc + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient_m4:H + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_m4:H - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 260 false - $(pv_name) -$(pv_value) 31 + 260 - - true - true - 1 - false - 39872d87:13e14015f61:39fd + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient_m4:K + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_m4:K - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 260 false - $(pv_name) -$(pv_value) 126 + 260 - - true - true - 1 - false - 39872d87:13e14015f61:39fe + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient_m4:L + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_m4:L - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 260 false - $(pv_name) -$(pv_value) 221 + 260 - - true - true - 1 - false - 39872d87:13e14015f61:39ff + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)orient_m4:TTH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient_m4:TTH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 260 false - $(pv_name) -$(pv_value) 316 + 260 - - false - true - 1 - false + + + false false - - 22 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 22 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3a00 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):H + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):H - - - - false - 0 - - - false - - - - 0 - - 147 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 31 + 147 - - false - true - 1 - false + + + false false - - 22 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 22 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3a02 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):K + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):K - - - - false - 0 - - - false - - - - 0 - - 147 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 125 + 147 - - false - true - 1 - false + + + false false - - 22 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 22 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3a04 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):L + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):L - - - - false - 0 - - - false - - - - 0 - - 147 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 220 + 147 - - false - true - 39872d87:13e14015f61:3a06 - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):H_tweak.A - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 172 + $(P)orient$(O):H_tweak.A 1 10 + - $(pv_name) -$(pv_value) - 91 - - + false + false + + + false - true - 39872d87:13e14015f61:3a07 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)orient$(O):H_tweak.A + + true true false - $(P)orient$(O):H_tweak.B - - - - - - + + + + + false + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 91 172 + + $(P)orient$(O):H_tweak.B 1 10 + - $(pv_name) -$(pv_value) - 31 - - - false - true - 1 - false - false - - 18 - false - true + false + false - + - Text Input - true - + false + + + + 0 + 1 + true - + Default - 40 - 3 + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):H_tweak.B - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3a08 - 0.0 - Text Input + true true false - 1 - false - 0 - $(P)orient$(O):H_tweak.C - - - - false - 0 - - - false - - - - 0 - - 174 + + + - + false $(pv_name) $(pv_value) - 51 + true + Action Button + 20 + 31 + 172 - + + + false + false + false + + + false - true - 39872d87:13e14015f61:3a09 - - 20 - Action Button + + + + 3 + 1 + + true + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):H_tweak.C + + false + 0.0 + true true false - $(P)orient$(O):K_tweak.A - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 172 + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 51 + 174 + + $(P)orient$(O):K_tweak.A 1 10 + - $(pv_name) -$(pv_value) - 185 - - + false + false + + + false - true - 39872d87:13e14015f61:3a0a - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)orient$(O):K_tweak.A + + true true false - $(P)orient$(O):K_tweak.B - - - - - - + + + + + false + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 185 172 + + $(P)orient$(O):K_tweak.B 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):K_tweak.B + + + + true + true + false + + + + - + false $(pv_name) $(pv_value) + true + Action Button + 20 125 + 172 - - false - true - 1 - false + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3a0b - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):K_tweak.C + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):K_tweak.C - - - - false - 0 - - - false - - - - 0 - - 174 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 145 + 174 - + + + + $(P)orient$(O):L_tweak.A + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:3a0c - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)orient$(O):L_tweak.A + + true true false - $(P)orient$(O):L_tweak.A - - - - - - - Action Button - true + + + - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 280 172 + + - $(P)orient$(O):L_tweak.A + $(P)orient$(O):L_tweak.B 1 10 + - $(pv_name) -$(pv_value) - 280 - - + false + false + + + false - true - 39872d87:13e14015f61:3a0d - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)orient$(O):L_tweak.B + + true true false - $(P)orient$(O):L_tweak.B - - - - - - - Action Button - true + + - - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 172 - - - $(P)orient$(O):L_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 220 + 172 - - false - true - 1 - false + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3a0e - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):L_tweak.C + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):L_tweak.C - - - - false - 0 - - - false - - - - 0 - - 174 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 240 + 174 - + + + + $(PM)$(mTTH).TWF + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:3a0f - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(PM)$(mTTH).TWF + + true true false - $(PM)$(mTTH).TWF - - - - - - - Action Button - true + + + - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 375 172 + + - $(PM)$(mTTH).TWF + $(PM)$(mTTH).TWR 1 10 + - $(pv_name) -$(pv_value) - 375 - - + false + false + + + false - true - 39872d87:13e14015f61:3a10 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(PM)$(mTTH).TWR + + true true false - $(PM)$(mTTH).TWR - - - - - - - Action Button - true + + - - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 172 - - - $(PM)$(mTTH).TWR - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 315 + 172 - - false - true - 1 - false + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3a11 - 0.0 + false Text Input + 0 + false + 0 + true + $(PM)$(mTTH).TWV + + false + 0.0 + true true false - 1 - false + 0 - $(PM)$(mTTH).TWV - - - - false - 0 - - - false - - - - 0 - - 174 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 335 + 174 - - false - true - 39872d87:13e14015f61:3a12 - - 20 - Action Button - false - - true - true - false - - $(PM)$(mTH).TWF - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 172 + $(PM)$(mTH).TWF 1 10 + - $(pv_name) -$(pv_value) - 465 - - + false + false + + + false - true - 39872d87:13e14015f61:3a13 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(PM)$(mTH).TWF + + true true false - $(PM)$(mTH).TWR - - - - - - + + + + + false + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 465 172 + + $(PM)$(mTH).TWR 1 10 + - $(pv_name) -$(pv_value) - 405 - - - false - true - 1 - false - false - - 18 - false - true + false + false - + - Text Input + false + + + + 0 + 1 true - - + Default - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3a14 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(PM)$(mTH).TWV + false - + - false - 0 - - - false - - - - 0 - - 174 - $(pv_name) -$(pv_value) - 425 - - - false - true - 39872d87:13e14015f61:3a15 - 20 + Action Button - false + 0 + $(PM)$(mTH).TWR + + true true false - $(PM)$(mCHI).TWF + + + - + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 405 + 172 + + + + false + false + false - + - - - - Action Button + false + + + + 3 + 1 + true - + - false - Default + - 20 - 0 - 0 - - + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(PM)$(mTH).TWV - false - 1 - - - - 172 + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 425 + 174 + + $(PM)$(mCHI).TWF 1 10 + - $(pv_name) -$(pv_value) - 555 - - + false + false + + + false - true - 39872d87:13e14015f61:3a16 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(PM)$(mCHI).TWF + + true true false - $(PM)$(mCHI).TWR - - - - - - + + + + + false + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 555 172 + + $(PM)$(mCHI).TWR 1 10 + - $(pv_name) -$(pv_value) - 495 - - - false - true - 1 - false - false - - 18 - false - true + false + false - + - Text Input + false + + + + 0 + 1 true - - + Default - 40 - 3 + false + + + + 20 + + Action Button + 0 + $(PM)$(mCHI).TWR - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3a17 - 0.0 - Text Input + true true false - 1 - false - 0 - $(PM)$(mCHI).TWV - - - - false - 0 - - - false - - - - 0 - - 174 + + + - + false $(pv_name) $(pv_value) - 515 - - - false true - 1 - false + Action Button + 20 + 495 + 172 + + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3a19 - 0.0 + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false Text Input + 0 + false + 0 + true + $(PM)$(mCHI).TWV + + false + 0.0 + true true false - 1 - false + 0 - $(PM)$(mTH) - - - + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 515 + 174 + + + + false + false false - 0 - - - false + + + + false + 3 + 1 + + true + + + + false + + + + 1 + 20 0 - - 147 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(PM)$(mTH) + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 405 + 147 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3a1c - 0.0 + false Text Input + 0 + false + 0 + true + $(PM)$(mCHI) + + false + 0.0 + true true false - 1 - false + 0 - $(PM)$(mCHI) - - - - false - 0 - - - false - - - - 0 - - 147 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 495 + 147 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3a1f - 0.0 + false Text Input + 0 + false + 0 + true + $(PM)$(mPHI) + + false + 0.0 + true true false - 1 - false + 0 - $(PM)$(mPHI) - - - - false - 0 - - - false - - - - 0 - - 147 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 585 + 147 - - false - true - 39872d87:13e14015f61:3a21 - - 20 - Action Button - false - - true - true - false - - $(PM)$(mPHI).TWF - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 172 + $(PM)$(mPHI).TWF 1 10 + - $(pv_name) -$(pv_value) - 645 - - + false + false + + + false - true - 39872d87:13e14015f61:3a22 - - 20 - Action Button - false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(PM)$(mPHI).TWF + + true true false - $(PM)$(mPHI).TWR - - - - - - + + + + + false + $(pv_name) +$(pv_value) + true Action Button - true - - - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 645 172 + + $(PM)$(mPHI).TWR 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(PM)$(mPHI).TWR + + + + true + true + false + + + + - + false $(pv_name) $(pv_value) + true + Action Button + 20 585 + 172 - - false - true - 1 - false + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3a23 - 0.0 + false Text Input + 0 + false + 0 + true + $(PM)$(mPHI).TWV + + false + 0.0 + true true false - 1 - false + 0 - $(PM)$(mPHI).TWV - - - - false - 0 - - - false - - - - 0 - - 174 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 605 + 174 - + + + + $(P)orient$(O):stopMotors + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:3a25 - + + + + 0 + 1 + true + + Default + + false + + + 28 + Action Button - false + 0 + $(P)orient$(O):stopMotors + + true true false - $(P)orient$(O):stopMotors + + + Stop Motors + false + $(pv_name) +$(pv_value) + true + Action Button + 120 + 471 + 68 + + + + false + 255 + true + 20 + 0 + false - + - - - - Action Button + false + + + + 0 + 1 true - Stop Motors - false + true + 100.0 - Default + Default - 120 - 0 - 0 - - + false + + + + 1 + true + 0 + 1 + Polyline + + + + + - false - 1 + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 260 + 405 + 48 + + + + false + 255 + true + 20 + 0 + false + + + + false - 68 - - - $(P)orient$(O):stopMotors - 1 - 10 - - - - $(pv_name) -$(pv_value) - 471 + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 260 + 405 + 116 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 69 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 1 + 405 + 48 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 69 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 1 + 663 + 48 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 260 + 405 + 205 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 260 + 405 + 273 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 69 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 1 + 405 + 205 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 69 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 1 + 663 + 205 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + Energy: + + true + 1 + true + Label + 70 + false + 456 + 233 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):energy + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 530 + 233 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + keV + + true + 1 + true + Label + 30 + false + 601 + 233 - \ No newline at end of file + diff --git a/opticsApp/op/opi/autoconvert/orient_HKL.opi b/opticsApp/op/opi/autoconvert/orient_HKL.opi new file mode 100644 index 0000000..02e29f0 --- /dev/null +++ b/opticsApp/op/opi/autoconvert/orient_HKL.opi @@ -0,0 +1,1425 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 85 + + true + + orient_HKL + + + true + true + false + true + false + Display + 340 + 885 + 192 + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 20 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 300 + 0 + 0 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 3 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 300 + 0 + 20 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):H_busy + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 23 + 37 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):K_busy + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 133 + 37 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):L_busy + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 243 + 37 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + Diffractometer $(P)orient$(O) + + true + 1 + true + Label + 300 + false + 0 + 0 + + + + + orient.opi + + true + + 1 + HKL, Angles, Motors + + + orient_full.opi + + true + + 1 + Everything + + + motor4x.opi + + true +

$(PM)

+ $(mTTH) + $(mTH) + $(mCHI) + $(mPHI) +
+ 1 + Motors +
+
+ false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 40 + 300 + 0 +
+ + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 14 + 1 + Text Update + 0 + true + $(P)orient$(O):H_RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 26 + 24 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 14 + 1 + Text Update + 0 + true + $(P)orient$(O):K_RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 136 + 24 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 14 + 1 + Text Update + 0 + true + $(P)orient$(O):L_RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 246 + 24 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):H + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 25 + 39 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + H + + true + 1 + true + Label + 10 + false + 10 + 40 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + K + + true + 1 + true + Label + 10 + false + 120 + 40 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):K + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 135 + 39 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + L + + true + 1 + true + Label + 10 + false + 230 + 40 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):L + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 245 + 39 + + + + + $(P)orient$(O):H_tweak.A + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):H_tweak.A + + + + true + true + false + + + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 85 + 59 + + + + + $(P)orient$(O):H_tweak.B + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):H_tweak.B + + + + true + true + false + + + + - + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 25 + 59 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):H_tweak.C + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 45 + 61 + + + + + $(P)orient$(O):K_tweak.A + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):K_tweak.A + + + + true + true + false + + + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 195 + 59 + + + + + $(P)orient$(O):K_tweak.B + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):K_tweak.B + + + + true + true + false + + + + - + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 135 + 59 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):K_tweak.C + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 155 + 61 + + + + + $(P)orient$(O):L_tweak.A + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):L_tweak.A + + + + true + true + false + + + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 305 + 59 + + + + + $(P)orient$(O):L_tweak.B + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):L_tweak.B + + + + true + true + false + + + + - + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 245 + 59 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):L_tweak.C + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 265 + 61 + +
diff --git a/opticsApp/op/opi/orient_HKL_angles.opi b/opticsApp/op/opi/autoconvert/orient_HKL_angles.opi similarity index 67% rename from opticsApp/op/opi/orient_HKL_angles.opi rename to opticsApp/op/opi/autoconvert/orient_HKL_angles.opi index c8d0140..64019d3 100644 --- a/opticsApp/op/opi/orient_HKL_angles.opi +++ b/opticsApp/op/opi/autoconvert/orient_HKL_angles.opi @@ -1,192 +1,190 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 65 true - 39872d87:13e14015f61:3ae3 - 3.1.2.20120830 + orient_HKL_angles + + true + true + false true - 65 - orient_HKL_angles false - false - - - - - - Display - true 700 - - true - 5 - - false - -1 - -1 - - - 547 - 73 - - false - true - 100.0 - - - - 39872d87:13e14015f61:3ae4 - - - - - 20 - true - Rectangle - false + 690 + 570 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 700 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 100.0 + 20 + true - 39872d87:13e14015f61:3ae5 - - - - - 3 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 700 + 0 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 700 - 0 - 0 - - - 1 - 0 - true - - - - - 20 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 0.0 + 3 + true - + - 39872d87:13e14015f61:3aea - - - - - 24 - true + 0 + 0 Rectangle - false - 255 + + + true true false - true - + + $(pv_name) +$(pv_value) + false + true + Rectangle + 700 + 0 + 20 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 24 + true + + + 0 - 0 + 2 + Rectangle + + @@ -198,62 +196,129 @@ $(pv_value) $(P)orient$(O):H_busy - - 1 - 2 - true - - - - - 38 + + true + true + false + + $(pv_name) $(pv_value) + true + true + Rectangle + 84 23 - false + 38 - - false - true - 0.0 - - - - 39872d87:13e14015f61:3af2 + + + false + 255 + true + false + + + - + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false 24 - true + true + + + + 0 + 2 Rectangle - false - 255 + + + + + + true + + + false + + $(P)orient$(O):K_busy + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 84 + 133 + 39 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 24 + true + + + 0 - 0 + 2 + Rectangle + + @@ -265,1018 +330,882 @@ $(pv_value) $(P)orient$(O):L_busy - - 1 - 2 - true - - - - - 39 - $(pv_name) -$(pv_value) - 243 - false - - - - true - - true - 39872d87:13e14015f61:3aeb - - 24 - Grouping Container true true false + + $(pv_name) +$(pv_value) true - false + true + Rectangle + 84 + 243 + 39 + + + + false - + - - - - Grouping Container - true - - Default - - 97 - 0 - - false - 1 - - 39 - - 120 - - false - true - 0.0 - - - - 39872d87:13e14015f61:3aee - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 84 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):K_busy - - - - 1 - 2 - true - - - - - 0 - $(pv_name) -$(pv_value) - 13 - false - - - true - 1 - 39872d87:13e14015f61:3aec - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - K - - - - 10 - 0 - - 1 - - - - 0 - - 3 - true - - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3aed - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):K - - - - false - 0 - - - false - - - - 0 - - 2 - $(pv_name) -$(pv_value) - 15 - - - - - true - - true - 39872d87:13e14015f61:3af8 - - 34 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container + 0 + 1 true - Default + - 80 - 0 - - false - 1 - - - - - 25 - - 340 - - true - 1 - 39872d87:13e14015f61:3af9 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - TTH - - - - 80 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:3afa - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(P)orient$(O):TTH - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 20 - false - $(pv_name) -$(pv_value) - 0 - - - - true - 1 - 39872d87:13e14015f61:3ae6 - false - + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true Diffractometer $(P)orient$(O) - - - - 700 - 0 - - 1 - - - - 1 - - 0 - true + true + 1 + true + Label + 700 + false 0 + 0 - - true - true - 1 - false - 39872d87:13e14015f61:3ae7 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)orient$(O):H_RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient$(O):H_RBV + 1 + true + Text Update + 80 + false + 26 + 25 + + + + false + false + false - + - - - - Text Update + false + + + + 3 + 1 + true - ###### - false - 0 - + - 80 - 0 - - - 1 - - - - 1 - - 25 - false - $(pv_name) -$(pv_value) - 26 - - - false - true - 1 - false - false - - 20 false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3ae8 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):H + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):H - - - - false - 0 - - - false - - - - 0 - - 40 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 25 + 40 - - true - 1 - 39872d87:13e14015f61:3ae9 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true H - - - - 10 - 0 - - 1 - - - - 0 - - 41 - true + true + 1 + true + Label + 10 + false 10 + 41 - - true - true - 1 - false - 39872d87:13e14015f61:3aef + + false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(P)orient$(O):K_RBV - + - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - 1 - - 25 - false - $(pv_name) -$(pv_value) - 136 - - - true - 1 - 39872d87:13e14015f61:3af0 - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - + K + + true + 1 + true Label - true - L - - - 10 - 0 - - 1 - - - - 0 - + false + 120 42 - true - - 230 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3af1 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):K + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):L - - - - false - 0 - - - false - - - - 0 - - 41 + false + true + false + false + + $(pv_name) $(pv_value) - 245 - - - true + false true - 1 - false - 39872d87:13e14015f61:3af3 + Text Input + 80 + 135 + 41 + + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)orient$(O):K_RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient$(O):L_RBV + 1 + true + Text Update + 80 + false + 136 + 25 + + + + false - + + + + + 0 + 1 + true + + + - + - Text Update - true - ###### + 20 + 0 + Label + + + true + true + false + + + false + L + + true + 1 + true + Label + 10 + false + 230 + 42 + + + + false + false false - 0 + + + + false + + + + 3 + 1 + + true - + - 80 - 0 - + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):L - 1 + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 245 + 41 + + + + false + false + false + + + + true + 0 + 1 + true + + + + false + + + + 1 + 14 1 - - 25 - false + Text Update + 0 + true + $(P)orient$(O):L_RBV + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 80 + false 246 + 25 - - true - 1 - 39872d87:13e14015f61:3af4 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + CHI + + true + 1 + true + Label + 80 + false + 520 + 25 + + + + false + false + false - + - - - - Label + true + + + + 0 + 1 true - CHI - + - 80 - 0 + false + + + + 1 + 14 + 1 + Text Update + 0 + true + $(P)orient$(O):CHI + + 0.0 - 1 + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 520 + 45 + + + + false + + + + 0 + 1 + true + + + + + + + 20 1 - - 25 - true + Label + + + true + true + false + + + false + PHI - 520 - - - true - true + true 1 - false - 39872d87:13e14015f61:3af5 + true + Label + 80 + false + 610 + 25 + + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)orient$(O):PHI + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient$(O):CHI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 45 false - $(pv_name) -$(pv_value) - 520 + 610 + 45 - - true - 1 - 39872d87:13e14015f61:3af6 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - + TTH + + true + 1 + true Label - true - PHI - - - 80 - 0 - - 1 - - - - 1 - + false + 340 25 - true - - 610 - - true - true - 1 - false - 39872d87:13e14015f61:3af7 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)orient$(O):TTH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient$(O):PHI - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 45 false - $(pv_name) -$(pv_value) - 610 + 340 + 45 - - true - 1 - 39872d87:13e14015f61:3afb + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true TH - - - - 80 - 0 - - 1 - - - - 1 - - 25 - true + true + 1 + true + Label + 80 + false 430 + 25 - - true - true - 1 - false - 39872d87:13e14015f61:3afc + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)orient$(O):TH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient$(O):TH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 45 false - $(pv_name) -$(pv_value) 430 + 45 - \ No newline at end of file + diff --git a/opticsApp/op/opi/autoconvert/orient_XTALs.opi b/opticsApp/op/opi/autoconvert/orient_XTALs.opi new file mode 100644 index 0000000..e179286 --- /dev/null +++ b/opticsApp/op/opi/autoconvert/orient_XTALs.opi @@ -0,0 +1,4907 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 215 + + true + + orient_XTALs + + + true + true + false + true + false + Display + 560 + 53 + 289 + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 20 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 560 + 0 + 0 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 3 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 560 + 0 + 20 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + USE + + true + 1 + true + Label + 25 + false + 5 + 35 + + + + + $(P)orient$(O):xtal_1.PROC + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)orient$(O):xtal_1.PROC + + + + true + true + false + + + + 1 + false + $(pv_name) +$(pv_value) + true + Action Button + 25 + 5 + 55 + + + + + $(P)orient$(O):xtal_2.PROC + 2 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)orient$(O):xtal_2.PROC + + + + true + true + false + + + + 2 + false + $(pv_name) +$(pv_value) + true + Action Button + 25 + 5 + 75 + + + + + $(P)orient$(O):xtal_3.PROC + 3 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)orient$(O):xtal_3.PROC + + + + true + true + false + + + + 3 + false + $(pv_name) +$(pv_value) + true + Action Button + 25 + 5 + 95 + + + + + $(P)orient$(O):xtal_4.PROC + 4 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)orient$(O):xtal_4.PROC + + + + true + true + false + + + + 4 + false + $(pv_name) +$(pv_value) + true + Action Button + 25 + 5 + 115 + + + + + $(P)orient$(O):xtal_5.PROC + 5 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)orient$(O):xtal_5.PROC + + + + true + true + false + + + + 5 + false + $(pv_name) +$(pv_value) + true + Action Button + 25 + 5 + 135 + + + + + $(P)orient$(O):xtal_6.PROC + 6 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)orient$(O):xtal_6.PROC + + + + true + true + false + + + + 6 + false + $(pv_name) +$(pv_value) + true + Action Button + 25 + 5 + 155 + + + + + $(P)orient$(O):xtal_7.PROC + 7 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)orient$(O):xtal_7.PROC + + + + true + true + false + + + + 7 + false + $(pv_name) +$(pv_value) + true + Action Button + 25 + 5 + 175 + + + + + $(P)orient$(O):xtal_8.PROC + 8 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)orient$(O):xtal_8.PROC + + + + true + true + false + + + + 8 + false + $(pv_name) +$(pv_value) + true + Action Button + 25 + 5 + 195 + + + + + $(P)orient$(O):xtal_7_get.PROC + 7 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)orient$(O):xtal_7_get.PROC + + + + true + true + false + + + + 7 + false + $(pv_name) +$(pv_value) + true + Action Button + 25 + 530 + 175 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Get + + true + 1 + true + Label + 25 + false + 530 + 35 + + + + + $(P)orient$(O):xtal_1_get.PROC + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)orient$(O):xtal_1_get.PROC + + + + true + true + false + + + + 1 + false + $(pv_name) +$(pv_value) + true + Action Button + 25 + 530 + 55 + + + + + $(P)orient$(O):xtal_2_get.PROC + 2 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)orient$(O):xtal_2_get.PROC + + + + true + true + false + + + + 2 + false + $(pv_name) +$(pv_value) + true + Action Button + 25 + 530 + 75 + + + + + $(P)orient$(O):xtal_3_get.PROC + 3 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)orient$(O):xtal_3_get.PROC + + + + true + true + false + + + + 3 + false + $(pv_name) +$(pv_value) + true + Action Button + 25 + 530 + 95 + + + + + $(P)orient$(O):xtal_4_get.PROC + 4 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)orient$(O):xtal_4_get.PROC + + + + true + true + false + + + + 4 + false + $(pv_name) +$(pv_value) + true + Action Button + 25 + 530 + 115 + + + + + $(P)orient$(O):xtal_5_get.PROC + 5 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)orient$(O):xtal_5_get.PROC + + + + true + true + false + + + + 5 + false + $(pv_name) +$(pv_value) + true + Action Button + 25 + 530 + 135 + + + + + $(P)orient$(O):xtal_6_get.PROC + 6 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)orient$(O):xtal_6_get.PROC + + + + true + true + false + + + + 6 + false + $(pv_name) +$(pv_value) + true + Action Button + 25 + 530 + 155 + + + + + $(P)orient$(O):xtal_8_get.PROC + 8 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)orient$(O):xtal_8_get.PROC + + + + true + true + false + + + + 8 + false + $(pv_name) +$(pv_value) + true + Action Button + 25 + 530 + 195 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_7.STR1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 35 + 175 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_7.DO3 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 205 + 175 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_7.DO4 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 270 + 175 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_7.DO5 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 335 + 175 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_7.DO6 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 400 + 175 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_7.DO7 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 465 + 175 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_7.DO2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 140 + 175 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + crystal + + true + 1 + true + Label + 100 + false + 35 + 25 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + description + + true + 1 + true + Label + 100 + false + 35 + 40 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + b + + true + 1 + true + Label + 60 + false + 205 + 25 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + c + + true + 1 + true + Label + 60 + false + 270 + 25 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + alpha + + true + 1 + true + Label + 60 + false + 335 + 25 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + beta + + true + 1 + true + Label + 60 + false + 400 + 25 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + gamma + + true + 1 + true + Label + 60 + false + 465 + 25 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + a + + true + 1 + true + Label + 60 + false + 140 + 25 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_1.STR1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 35 + 55 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_1.DO3 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 205 + 55 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_1.DO4 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 270 + 55 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_1.DO5 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 335 + 55 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_1.DO6 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 400 + 55 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_1.DO7 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 465 + 55 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_1.DO2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 140 + 55 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_2.STR1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 35 + 75 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_2.DO3 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 205 + 75 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_2.DO4 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 270 + 75 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_2.DO5 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 335 + 75 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_2.DO6 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 400 + 75 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_2.DO7 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 465 + 75 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_2.DO2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 140 + 75 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_3.STR1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 35 + 95 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_3.DO3 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 205 + 95 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_3.DO4 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 270 + 95 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_3.DO5 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 335 + 95 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_3.DO6 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 400 + 95 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_3.DO7 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 465 + 95 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_3.DO2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 140 + 95 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_4.STR1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 35 + 115 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_4.DO3 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 205 + 115 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_4.DO4 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 270 + 115 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_4.DO5 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 335 + 115 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_4.DO6 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 400 + 115 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_4.DO7 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 465 + 115 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_4.DO2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 140 + 115 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_5.STR1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 35 + 135 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_5.DO3 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 205 + 135 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_5.DO4 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 270 + 135 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_5.DO5 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 335 + 135 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_5.DO6 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 400 + 135 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_5.DO7 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 465 + 135 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_5.DO2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 140 + 135 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_6.STR1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 35 + 155 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_6.DO3 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 205 + 155 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_6.DO4 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 270 + 155 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_6.DO5 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 335 + 155 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_6.DO6 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 400 + 155 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_6.DO7 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 465 + 155 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_6.DO2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 140 + 155 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_8.STR1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 35 + 195 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_8.DO3 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 205 + 195 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_8.DO4 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 270 + 195 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_8.DO5 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 335 + 195 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_8.DO6 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 400 + 195 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_8.DO7 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 465 + 195 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):xtal_8.DO2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 140 + 195 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + Diffractometer $(P)orient$(O) crystals + + true + 1 + true + Label + 560 + false + 0 + 0 + + diff --git a/opticsApp/op/opi/autoconvert/orient_full.opi b/opticsApp/op/opi/autoconvert/orient_full.opi new file mode 100644 index 0000000..0da9ce2 --- /dev/null +++ b/opticsApp/op/opi/autoconvert/orient_full.opi @@ -0,0 +1,9662 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 565 + + true + + orient_full + + + true + true + false + true + false + Display + 550 + 756 + 440 + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 67 + true + + + + 0 + 3 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):A0_state + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 217 + 309 + 450 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 20 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 550 + 0 + 0 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 3 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 550 + 0 + 20 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):refGet1 + $(P)orient$(O):refPut1 + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 406 + 70 + 258 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):refGet2 + $(P)orient$(O):refPut2 + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 406 + 70 + 284 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 67 + true + + + + 0 + 3 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):OMTX_state + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 217 + 305 + 332 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):L_busy + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 23 + 188 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):K_busy + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 23 + 128 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):H_busy + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 23 + 70 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 22 + true + + + + 0 + 3 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):Alert + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 485 + 10 + 22 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):TH_busy + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 85 + 210 + 128 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):CHI_busy + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 85 + 210 + 150 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):PHI_busy + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 85 + 210 + 173 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):TTH_busy + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 85 + 210 + 104 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 25 + true + + + + 0 + 2 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 20 + 132 + 135 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):motCHI_Connected + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 455 + 147 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):waiting4motCHI + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 455 + 147 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):motTH_Connected + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 455 + 107 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):waiting4motTH + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 455 + 107 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):motTTH_Connected + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 455 + 67 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):waiting4motTTH + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 455 + 67 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):motPHI_Connected + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 455 + 187 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):waiting4motPHI + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 455 + 187 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + a + + true + 1 + true + Label + 10 + false + 13 + 458 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + b + + true + 1 + true + Label + 10 + false + 13 + 478 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):a + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 50 + 28 + 457 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):b + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 50 + 28 + 477 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Lattice parameters + + true + 1 + true + Label + 190 + false + 13 + 418 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + c + + true + 1 + true + Label + 10 + false + 13 + 498 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):c + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 50 + 28 + 497 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + A0 + + true + 1 + true + Label + 240 + false + 283 + 436 + + + + + orient_XTALs.opi + + true + + 1 + crystals + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + XTALS + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 13 + 434 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 4 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):XTAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 165 + 60 + 434 + + + + true + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + $(P)orient$(O):Debug + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 60 + 330 + 533 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 0 + Label + + + true + true + false + + + false + debug + + true + 1 + true + Label + 40 + false + 285 + 537 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + alpha + + true + 1 + true + Label + 50 + false + 100 + 458 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + beta + + true + 1 + true + Label + 50 + false + 100 + 478 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + gamma + + true + 1 + true + Label + 50 + false + 100 + 498 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + A + + true + 1 + true + Label + 10 + false + 78 + 460 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + o + + true + 1 + true + Label + 10 + false + 80 + 455 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + A + + true + 1 + true + Label + 10 + false + 78 + 480 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + o + + true + 1 + true + Label + 10 + false + 80 + 475 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + A + + true + 1 + true + Label + 10 + false + 78 + 500 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + o + + true + 1 + true + Label + 10 + false + 80 + 495 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + Diffractometer $(P)orient$(O) + + true + 1 + true + Label + 550 + false + 0 + 0 + + + + + orient.opi + + true + + 0 + HKL, Angles, Motors + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + Less + false + $(pv_name) +$(pv_value) + true + Action Button + 50 + 450 + 540 + + + + + motor4x.opi + + true +

$(PM)

+ $(mTTH) + $(mTH) + $(mCHI) + $(mPHI) +
+ 1 + Motors +
+
+ false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + Motors + false + $(pv_name) +$(pv_value) + true + Action Button + 50 + 500 + 540 +
+ + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + TTH + + true + 1 + true + Label + 75 + false + 174 + 243 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + TH + + true + 1 + true + Label + 75 + false + 249 + 243 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + CHI + + true + 1 + true + Label + 75 + false + 324 + 243 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + PHI + + true + 1 + true + Label + 75 + false + 399 + 243 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):TTH1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 75 + 174 + 260 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):TH1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 75 + 249 + 260 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):CHI1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 75 + 324 + 260 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):PHI1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 75 + 399 + 260 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + = + + true + 1 + true + Label + 10 + false + 163 + 262 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + ^ + + true + 1 + true + Label + 10 + false + 163 + 259 + + + + + $(P)orient$(O):refGet1 + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):refGet1 + + + + true + true + false + + + + Get + false + $(pv_name) +$(pv_value) + true + Action Button + 30 + 478 + 260 + + + + + $(P)orient$(O):refPut1 + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):refPut1 + + + + true + true + false + + + + Put + false + $(pv_name) +$(pv_value) + true + Action Button + 30 + 509 + 260 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):TTH2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 75 + 174 + 286 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):TH2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 75 + 249 + 286 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):CHI2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 75 + 324 + 286 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):PHI2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 75 + 399 + 286 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + = + + true + 1 + true + Label + 10 + false + 163 + 288 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + ^ + + true + 1 + true + Label + 10 + false + 163 + 285 + + + + + $(P)orient$(O):refGet2 + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):refGet2 + + + + true + true + false + + + + Get + false + $(pv_name) +$(pv_value) + true + Action Button + 30 + 478 + 285 + + + + + $(P)orient$(O):refPut2 + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):refPut2 + + + + true + true + false + + + + Put + false + $(pv_name) +$(pv_value) + true + Action Button + 30 + 509 + 285 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):L1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 30 + 132 + 260 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + L + + true + 1 + true + Label + 30 + false + 132 + 243 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):L2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 30 + 132 + 286 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + K + + true + 1 + true + Label + 30 + false + 102 + 243 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):K1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 30 + 102 + 260 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):K2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 30 + 102 + 286 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + H + + true + 1 + true + Label + 30 + false + 72 + 243 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):H1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 30 + 72 + 260 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):H2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 30 + 72 + 286 + + + + false + 255 + true + false + + + + false + + + + 0 + 1 + true + 100.0 + + Default + + false + + + + 21 + true + + + + 0 + 0 + Polygon + + + + + + + + + 0.0 + + + + true + + + false + + $(P)orient$(O):refGet1 + $(P)orient$(O):refGet2 + + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polygon + 21 + 167 + 229 + + + + false + 255 + true + false + + + + false + + + + 0 + 1 + true + 100.0 + + Default + + false + + + + 21 + true + + + + 0 + 0 + Polygon + + + + + + + + + 0.0 + + + + true + + + false + + $(P)orient$(O):refPut1 + $(P)orient$(O):refPut2 + + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polygon + 21 + 157 + 229 + + + + + $(P)orient$(O):OMTX_Calc + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):OMTX_Calc + + + + true + true + false + + + + Calc OMTX + false + $(pv_name) +$(pv_value) + true + Action Button + 90 + 182 + 340 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + OM + + true + 1 + true + Label + 240 + false + 279 + 318 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 14 + 1 + Text Update + 0 + true + $(P)orient$(O):H_RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 26 + 57 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + L + + true + 1 + true + Label + 10 + false + 10 + 191 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):L + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 25 + 190 + + + + + $(P)orient$(O):L_tweak.A + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):L_tweak.A + + + + true + true + false + + + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 85 + 210 + + + + + $(P)orient$(O):L_tweak.B + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):L_tweak.B + + + + true + true + false + + + + - + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 25 + 210 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):L_tweak.C + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 45 + 212 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 14 + 1 + Text Update + 0 + true + $(P)orient$(O):L_RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 26 + 174 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + K + + true + 1 + true + Label + 10 + false + 10 + 131 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):K + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 25 + 130 + + + + + $(P)orient$(O):K_tweak.A + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):K_tweak.A + + + + true + true + false + + + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 85 + 150 + + + + + $(P)orient$(O):K_tweak.B + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):K_tweak.B + + + + true + true + false + + + + - + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 25 + 150 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):K_tweak.C + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 45 + 152 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 14 + 1 + Text Update + 0 + true + $(P)orient$(O):K_RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 26 + 114 + + + + + $(P)orient$(O):H_tweak.A + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):H_tweak.A + + + + true + true + false + + + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 85 + 92 + + + + + $(P)orient$(O):H_tweak.B + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):H_tweak.B + + + + true + true + false + + + + - + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 25 + 92 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):H_tweak.C + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 45 + 94 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):H + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 25 + 72 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + H + + true + 1 + true + Label + 10 + false + 10 + 73 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + PRIMARY + + true + 1 + true + Label + 55 + false + 10 + 258 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + REFLECTION + + true + 1 + true + Label + 55 + false + 10 + 268 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + SECONDARY + + true + 1 + true + Label + 55 + false + 10 + 286 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + REFLECTION + + true + 1 + true + Label + 55 + false + 10 + 296 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + errAngle: + + true + 1 + true + Label + 60 + false + 118 + 362 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 14 + 0 + Text Update + 0 + true + $(P)orient$(O):errAngle + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 90 + false + 182 + 362 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + maxErr: + + true + 1 + true + Label + 60 + false + 118 + 380 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):errAngleThresh + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 90 + 182 + 378 + + + + + $(P)orient$(O):OperAck + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):OperAck + + + + true + true + false + + + + Erase + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 495 + 24 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 14 + 0 + Text Update + 0 + true + $(P)orient$(O):Msg + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 475 + false + 15 + 27 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):OMTX_12 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 379 + 336 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):OMTX_22 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 379 + 356 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):OMTX_32 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 379 + 376 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):OMTX_13 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 449 + 336 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):OMTX_23 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 449 + 356 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):OMTX_33 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 449 + 376 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):OMTX_11 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 309 + 336 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):OMTX_21 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 309 + 356 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):OMTX_31 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 309 + 376 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):A0_11 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 313 + 454 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):A0_21 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 313 + 474 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):A0_31 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 313 + 494 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):A0_12 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 383 + 454 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):A0_22 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 383 + 474 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):A0_32 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 383 + 494 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):A0_13 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 453 + 454 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):A0_23 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 453 + 474 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):A0_33 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 453 + 494 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + o + + true + 1 + true + Label + 10 + false + 228 + 457 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + o + + true + 1 + true + Label + 10 + false + 228 + 478 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + o + + true + 1 + true + Label + 10 + false + 228 + 498 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):alpha + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 155 + 457 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):beta + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 155 + 477 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):gamma + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 155 + 497 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 26 + 249 + 485 + + + + false + 255 + true + false + + + + false + + + + 0 + 1 + true + 100.0 + + Default + + false + + + + 21 + true + + + + 0 + 0 + Polygon + + + + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polygon + 21 + 273 + 475 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + AUTO + + true + 1 + true + Label + 30 + false + 254 + 461 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Wavelength: + + true + 1 + true + Label + 75 + false + 13 + 522 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):lambda + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 94 + 521 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + A + + true + 1 + true + Label + 10 + false + 165 + 523 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + o + + true + 1 + true + Label + 10 + false + 167 + 518 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Energy: + + true + 1 + true + Label + 75 + false + 13 + 542 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):energy + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 94 + 541 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + keV + + true + 1 + true + Label + 10 + false + 165 + 543 + + + + + $(P)orient$(O):stopMotors + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 28 + + Action Button + 0 + $(P)orient$(O):stopMotors + + + + true + true + false + + + + Stop Motors + false + $(pv_name) +$(pv_value) + true + Action Button + 120 + 299 + 203 + + + + true + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + $(P)orient$(O):Busy + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 50 + 335 + 62 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + + true + + + false + + $(P)orient$(O):motPut + $(P)orient$(O):motPut_Auto + + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 94 + 310 + 121 + + + + false + 255 + true + false + + + + false + + + + 0 + 1 + true + 100.0 + + Default + + false + + + + 27 + true + + + + 0 + 0 + Polygon + + + + + + + + + 0.0 + + + + true + + + false + + $(P)orient$(O):motPut + $(P)orient$(O):motPut_Auto + + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polygon + 24 + 397 + 108 + + + + true + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 14 + + Menu Button + $(P)orient$(O):motPut_Auto + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 55 + 333 + 97 + + + + + $(P)orient$(O):motPut + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):motPut + + + + true + true + false + + + + Move + false + $(pv_name) +$(pv_value) + true + Action Button + 55 + 333 + 111 + + + + true + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 14 + + Menu Button + $(P)orient$(O):motGet_Auto + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 55 + 333 + 154 + + + + + $(P)orient$(O):motGet + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):motGet + + + + true + true + false + + + + Read + false + $(pv_name) +$(pv_value) + true + Action Button + 55 + 333 + 168 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 2 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + + true + + + false + + $(P)orient$(O):motGet + $(P)orient$(O):motGet_Auto + + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 94 + 320 + 177 + + + + false + 255 + true + false + + + + false + + + + 0 + 1 + true + 100.0 + + Default + + false + + + + 27 + true + + + + 0 + 0 + Polygon + + + + + + + + + 0.0 + + + + true + + + false + + $(P)orient$(O):motGet + $(P)orient$(O):motGet_Auto + + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polygon + 24 + 305 + 165 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + true + true + false + + + false + HKL/ANGLE CONSTRAINT: + + true + 1 + true + Label + 120 + false + 181 + 66 + + + + true + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + $(P)orient$(O):Mode + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 120 + 181 + 77 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):TH + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 213 + 129 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):CHI + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 213 + 152 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):PHI + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 213 + 175 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + TH + + true + 1 + true + Label + 30 + false + 180 + 130 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + CHI + + true + 1 + true + Label + 30 + false + 180 + 153 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + PHI + + true + 1 + true + Label + 30 + false + 180 + 176 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):TTH + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 213 + 106 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + TTH + + true + 1 + true + Label + 30 + false + 180 + 107 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + true + true + false + + + false + OM + + true + 1 + true + Label + 10 + false + 136 + 138 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + true + true + false + + + false + A0 + + true + 1 + true + Label + 10 + false + 136 + 149 + + + + false + 255 + true + false + + + + false + + + + 0 + 1 + true + 100.0 + + Default + + false + + + + 18 + true + + + + 0 + 0 + Polygon + + + + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polygon + 18 + 152 + 140 + + + + false + 255 + true + false + + + + false + + + + 0 + 1 + true + 100.0 + + Default + + false + + + + 18 + true + + + + 0 + 0 + Polygon + + + + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polygon + 18 + 115 + 140 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + AUTO + + true + 1 + true + Label + 30 + false + 128 + 117 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 14 + 1 + Text Update + 0 + true + $(PM)$(mCHI).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 457 + 133 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(PM)$(mCHI) + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 457 + 149 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 14 + 1 + Text Update + 0 + true + $(PM)$(mTH).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 457 + 93 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(PM)$(mTH) + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 457 + 109 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 14 + 1 + Text Update + 0 + true + $(PM)$(mTTH).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 457 + 53 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(PM)$(mTTH) + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 457 + 69 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + + true + + + false + + $(P)orient$(O):waiting4Mot + + + + true + true + false + + + false + Moving + + true + 1 + true + Label + 84 + false + 455 + 210 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 14 + 1 + Text Update + 0 + true + $(PM)$(mPHI).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 457 + 173 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(PM)$(mPHI) + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 457 + 189 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + TTH + + true + 1 + true + Label + 30 + false + 425 + 70 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + TH + + true + 1 + true + Label + 30 + false + 425 + 110 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + CHI + + true + 1 + true + Label + 30 + false + 425 + 150 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + PHI + + true + 1 + true + Label + 30 + false + 425 + 190 + +
diff --git a/opticsApp/op/opi/orient_slave.opi b/opticsApp/op/opi/autoconvert/orient_slave.opi similarity index 64% rename from opticsApp/op/opi/orient_slave.opi rename to opticsApp/op/opi/autoconvert/orient_slave.opi index 4a79ea6..431a035 100644 --- a/opticsApp/op/opi/orient_slave.opi +++ b/opticsApp/op/opi/autoconvert/orient_slave.opi @@ -1,192 +1,190 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 245 true - 39872d87:13e14015f61:3d64 - 3.1.2.20120830 + orient_slave + + true + true + false true - 245 - orient_slave false - false - - - - - - Display - true 260 - - true - 5 - - false - -1 - -1 - - - 81 82 - - false - true - 100.0 - - - - 39872d87:13e14015f61:3d65 - - - - - 20 - true - Rectangle - false + 81 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 250 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 100.0 + 20 + true - 39872d87:13e14015f61:3d66 - - - - - 3 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 250 + 0 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 250 - 0 - 0 - - - 1 - 0 - true - - - - - 20 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 0.0 + 3 + true - + - 39872d87:13e14015f61:3d6e - - - - - 24 - true + 0 + 0 Rectangle - false - 255 + + + true true false - true - + + $(pv_name) +$(pv_value) + false + true + Rectangle + 250 + 0 + 20 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 85 + false + + + + false + 24 + true + + + 0 - 0 + 2 + Rectangle + + @@ -198,62 +196,62 @@ $(pv_value) $(P)orient$(O):TTH_busy - - 1 - 2 - true - - - - - 97 - $(pv_name) -$(pv_value) - 161 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3d73 - - - - - 24 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 85 + 161 + 97 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 85 + false + + + + false + 24 + true + + + 0 - 0 + 2 + Rectangle + + @@ -265,62 +263,62 @@ $(pv_value) $(P)orient$(O):TH_busy - - 1 - 2 - true - - - - - 121 - $(pv_name) -$(pv_value) - 161 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3d74 - - - - - 24 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 85 + 161 + 121 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 85 + false + + + + false + 24 + true + + + 0 - 0 + 2 + Rectangle + + @@ -332,62 +330,62 @@ $(pv_value) $(P)orient$(O):CHI_busy - - 1 - 2 - true - - - - - 143 - $(pv_name) -$(pv_value) - 161 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3d75 - - - - - 24 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 85 + 161 + 143 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 85 + false + + + + false + 24 + true + + + 0 - 0 + 2 + Rectangle + + @@ -399,62 +397,62 @@ $(pv_value) $(P)orient$(O):PHI_busy - - 1 - 2 - true - - - - - 166 - $(pv_name) -$(pv_value) - 161 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3d79 - - - - - 24 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 85 + 161 + 166 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 24 + true + + + 0 - 0 + 2 + Rectangle + + @@ -466,62 +464,129 @@ $(pv_value) $(P)orient$(O):L_busy - - 1 - 2 - true - - - - - 177 + + true + true + false + + $(pv_name) $(pv_value) + true + true + Rectangle + 84 23 - false + 177 - - false - true - 0.0 - - - - 39872d87:13e14015f61:3d82 + + + false + 255 + true + false + + + - + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false 24 - true + true + + + + 0 + 2 Rectangle - false - 255 + + + + + + true + + + false + + $(P)orient$(O):K_busy + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 84 + 23 + 117 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 24 + true + + + 0 - 0 + 2 + Rectangle + + @@ -533,1688 +598,1568 @@ $(pv_value) $(P)orient$(O):H_busy - - 1 - 2 - true - - - - - 59 - $(pv_name) -$(pv_value) - 23 - false - - - - true - - true - 39872d87:13e14015f61:3d7b - - 24 - Grouping Container true true false + + $(pv_name) +$(pv_value) true - false + true + Rectangle + 84 + 23 + 59 + + + + false - + - - - - Grouping Container - true - - Default - - 97 - 0 - - false - 1 - - 117 - - 10 - - false - true - 0.0 - - - - 39872d87:13e14015f61:3d7e - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 84 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):K_busy - - - - 1 - 2 - true - - - - - 0 - $(pv_name) -$(pv_value) - 13 - false - - - true - 1 - 39872d87:13e14015f61:3d7c - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - K - - - - 10 - 0 - - 1 - - - - 0 - - 3 - true - - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3d7d - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):K - - - - false - 0 - - - false - - - - 0 - - 2 - $(pv_name) -$(pv_value) - 15 - - - - - true - - true - 39872d87:13e14015f61:3d87 - + 0 + 1 + true + + + + + + 20 - Grouping Container + 1 + Label + true true false - true + false + $(P)orient$(O) + + true + 1 + true + Label + 250 + false + 0 + 0 + + + + false - + - - - - Grouping Container + + + + 0 + 1 true - Default + - 80 - 0 + + + + 10 + 1 + Label - false - 1 - - - - - 199 - - 25 - - false - true - 39872d87:13e14015f61:3d88 - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):L_tweak.A - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)orient$(O):L_tweak.A - 1 - 10 - - - - $(pv_name) -$(pv_value) - 60 - - - false - true - 39872d87:13e14015f61:3d89 - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):L_tweak.B - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)orient$(O):L_tweak.B - 1 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3d8a - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):L_tweak.C - - - - false - 0 - - - false - - - - 0 - - 2 - $(pv_name) -$(pv_value) - 20 - - - - - true - - true - 39872d87:13e14015f61:3d8b - - 20 - Grouping Container true true false - true + false + CONSTRAINT: + + true + 1 + true + Label + 115 + false + 132 + 64 + + + + true + false + false - + - - - - Grouping Container + false + + + + 6 + 1 true - Default + Default - 80 - 0 + false + + + + 20 + + Menu Button + $(P)orient$(O):Mode + - false - 1 - - - - - 139 - - 25 - - false - true - 39872d87:13e14015f61:3d8c - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):K_tweak.A - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)orient$(O):K_tweak.A - 1 - 10 - - - - $(pv_name) -$(pv_value) - 60 - - - false - true - 39872d87:13e14015f61:3d8d - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):K_tweak.B - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)orient$(O):K_tweak.B - 1 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3d8e - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):K_tweak.C - - - - false - 0 - - - false - - - - 0 - - 2 - $(pv_name) -$(pv_value) - 20 - - - - true - 1 - 39872d87:13e14015f61:3d67 - false - - 20 - Label true true false - true - false + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 115 + 132 + 75 + + + + false + false + false - + - - - - Label - true - $(P)orient$(O) - - - - 250 - 0 - - 1 + false - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:3d68 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label + 3 + 1 + true - CONSTRAINT: - + - 115 - 0 - - 1 - - - - 1 - - 64 - true - - 132 - - - false - true - true - 39872d87:13e14015f61:3d69 - - 20 - Menu Button false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):TTH + + false + 0.0 + true true false - false - $(P)orient$(O):Mode - - - - - - - Menu Button - true - false - - Default - - 115 - 6 - - - - 1 - - - - 75 - + + 0 + false + true + false + false + + $(pv_name) $(pv_value) - 132 - - - false + false true - 1 - false + Text Input + 80 + 164 + 99 + + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3d6a - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):TH + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):TTH - - - - false - 0 - - - false - - - - 0 - - 99 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 164 + 122 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3d6b - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):CHI + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):TH - - - - false - 0 - - - false - - - - 0 - - 122 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 164 + 145 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3d6c - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):PHI + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):CHI - - - - false - 0 - - - false - - - - 0 - - 145 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 164 + 168 - - false - true - 1 - false + + false - - 20 - false - true - + - Text Input + + + + 0 + 1 true - - + - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3d6d - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):PHI - + - false - 0 - - - false - - - - 0 - - 168 - $(pv_name) -$(pv_value) - 164 - - - true - 1 - 39872d87:13e14015f61:3d6f - false - 20 + 1 Label + true true false - true + false + TTH + + true + 1 + true + Label + 30 + false + 131 + 100 + + + + false - - - - Label - true - TTH - - - - 30 - 0 - - 1 - 1 - - 100 - true - - 131 - - - true - 1 - 39872d87:13e14015f61:3d70 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + TH + + true + 1 + true + Label + 30 + false + 131 + 123 + + + + false - - - - Label - true - TH - - - - 30 - 0 - - 1 - 1 - - 123 - true - - 131 - - - true - 1 - 39872d87:13e14015f61:3d71 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + CHI + + true + 1 + true + Label + 30 + false + 131 + 146 + + + + false - - - - Label + + + + 0 + 1 true - CHI - + - 30 - 0 + + + + 20 + 1 + Label - 1 - - - - 1 - - 146 - true - - 131 - - - true - 1 - 39872d87:13e14015f61:3d72 - false - - 20 - Label true true false - true + false - - - - - - - Label - true PHI - - - - 30 - 0 - - 1 - - - - 1 - - 169 - true + true + 1 + true + Label + 30 + false 131 + 169 - - true - true - 1 - false - 39872d87:13e14015f61:3d76 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)orient$(O):H_RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient$(O):H_RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 46 false - $(pv_name) -$(pv_value) 26 + 46 - - true - 1 - 39872d87:13e14015f61:3d77 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true L - - - - 10 - 0 - - 1 - - - - 0 - - 180 - true + true + 1 + true + Label + 10 + false 10 + 180 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3d78 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):L + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):L - - - - false - 0 - - - false - - - - 0 - - 179 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 25 + 179 - - true - true - 1 - false - 39872d87:13e14015f61:3d7a + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)orient$(O):L_RBV + + 0.0 + true true false - 1 - true - false - $(P)orient$(O):L_RBV + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 26 + 163 + + + + false - + - - - - Text Update + + + + 0 + 1 true - ###### - false - 0 - + - 80 - 0 + + + + 20 + 0 + Label - - 1 - - - - 1 - - 163 + + true + true + false + + + false + K + + true + 1 + true + Label + 10 false - $(pv_name) -$(pv_value) - 26 + 10 + 120 - - true - true - 1 - false - 39872d87:13e14015f61:3d7f + + + false false - 0.0 - - 14 - Text Update + false + + + + false + + + + 3 + 1 + + true + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):K + + false + 0.0 + true true false - 1 - true + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - $(P)orient$(O):K_RBV + true + Text Input + 80 + 25 + 119 + + + + false + false + false - + - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 + true + 0 + 1 + true + + + + false + + + + 1 + 14 1 - - 103 - false + Text Update + 0 + true + $(P)orient$(O):K_RBV + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 80 + false 26 + 103 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3d80 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):H + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):H - - - - false - 0 - - - false - - - - 0 - - 61 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 25 + 61 - - true - 1 - 39872d87:13e14015f61:3d81 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - + H + + true + 1 + true + Label + 10 + false + 10 + 62 + + + + + orient_slave_full.opi + + true + + 0 + Everything + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false - + - Label + 20 + + Action Button + 0 + + + + + true + true + false + + + + More + false + $(pv_name) +$(pv_value) + true + Action Button + 40 + 220 + 223 + + + + + $(P)orient$(O):H_tweak.A + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 true - H - + Default - 10 + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):H_tweak.A + + + + true + true + false + + + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 85 + 81 + + + + + $(P)orient$(O):H_tweak.B + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):H_tweak.B + + + + true + true + false + + + + - + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 25 + 81 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):H_tweak.C + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 45 + 83 + + + + + $(P)orient$(O):L_tweak.A + 1 + 10 + + + + + false + false + + + + false + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):L_tweak.A + + + true + true + false + + + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 85 + 199 + + + + + $(P)orient$(O):L_tweak.B + 1 + 10 + + + + + false + false + + + + false + + + + 0 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):L_tweak.B + + + + true + true + false + + + + - + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 25 + 199 + + + + false + false + false + + + + false - 0 - - 62 - true - - 10 - - - false - true - false - 39872d87:13e14015f61:3d83 - - 20 - Menu Button + 3 + 1 + + true + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):L_tweak.C + + false + 0.0 + true true false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - - - - - - - - Menu Button - true - false - - Default - + true + Text Input 40 - 6 - - - - 1 - - - - 223 + 45 + 201 + + - - orient_slave_full.opi - - true - - 1 - Everything + + $(P)orient$(O):K_tweak.A + 1 + 10 + + - $(pv_name) -$(pv_value) - 220 - - + false + false + + + false - true - 39872d87:13e14015f61:3d84 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)orient$(O):K_tweak.A + + true true false - $(P)orient$(O):H_tweak.A - - - - - - - Action Button - true + + + - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 81 + $(pv_name) +$(pv_value) + true + Action Button + 20 + 85 + 139 + + - $(P)orient$(O):H_tweak.A + $(P)orient$(O):K_tweak.B 1 10 + - $(pv_name) -$(pv_value) - 85 - - + false + false + + + false - true - 39872d87:13e14015f61:3d85 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)orient$(O):K_tweak.B + + true true false - $(P)orient$(O):H_tweak.B - - - - - - - Action Button - true + + - - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 81 - - - $(P)orient$(O):H_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 25 + 139 - - false - true - 1 - false + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3d86 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):K_tweak.C + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):H_tweak.C - - - - false - 0 - - - false - - - - 0 - - 83 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 45 + 141 - \ No newline at end of file + diff --git a/opticsApp/op/opi/orient_slave_full.opi b/opticsApp/op/opi/autoconvert/orient_slave_full.opi similarity index 52% rename from opticsApp/op/opi/orient_slave_full.opi rename to opticsApp/op/opi/autoconvert/orient_slave_full.opi index 18e6c00..49f1c12 100644 --- a/opticsApp/op/opi/orient_slave_full.opi +++ b/opticsApp/op/opi/autoconvert/orient_slave_full.opi @@ -1,78 +1,76 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 565 true - 39872d87:13e14015f61:3dbb - 3.1.2.20120830 + orient_slave_full + + true + true + false true - 565 - orient_slave_full false - false - - - - - - Display - true 550 - - true - 5 - - false - -1 - -1 - - - 233 204 - - false - true - 0.0 - - - - 39872d87:13e14015f61:3dc8 - - - - - 67 - true - Rectangle - false + 233 + + + false 255 - - true - true - false - - true - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 217 + false + + + + false + 67 + true + + + 0 - 0 + 3 + Rectangle + + @@ -84,176 +82,176 @@ $(P)orient$(O):A0_state - - 1 - 3 - true - - - - - 450 + + true + true + false + + $(pv_name) $(pv_value) + true + true + Rectangle + 217 309 - false + 450 - + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 20 + true - 39872d87:13e14015f61:3dd5 - - - - - 20 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 550 + 0 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 550 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 100.0 + 3 + true - 39872d87:13e14015f61:3dd6 - - - - - 3 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 550 + 0 + 20 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 550 - 0 - 0 - - - 1 - 0 + false + + + + false + 24 true - - - - - 20 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - + - 39872d87:13e14015f61:3dd9 - - - - - 24 - true + 0 + 2 Rectangle - false - 255 - - true - true - false - - true - - - - - - - Rectangle - true - - - - false - - Default - - 406 - 0 - 0 + @@ -266,62 +264,62 @@ $(pv_value) $(P)orient$(O):refPut1 - - 1 - 2 - true - - - - - 258 - $(pv_name) -$(pv_value) - 70 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3dda - - - - - 24 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 406 + 70 + 258 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 406 + false + + + + false + 24 + true + + + 0 - 0 + 2 + Rectangle + + @@ -334,62 +332,62 @@ $(pv_value) $(P)orient$(O):refPut2 - - 1 - 2 - true - - - - - 284 - $(pv_name) -$(pv_value) - 70 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3dfb - - - - - 67 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 406 + 70 + 284 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 217 + false + + + + false + 67 + true + + + 0 - 0 + 3 + Rectangle + + @@ -401,62 +399,62 @@ $(pv_value) $(P)orient$(O):OMTX_state - - 1 - 3 - true - - - - - 332 - $(pv_name) -$(pv_value) - 305 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3e00 - - - - - 24 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 217 + 305 + 332 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 24 + true + + + 0 - 0 + 2 + Rectangle + + @@ -468,62 +466,129 @@ $(pv_value) $(P)orient$(O):L_busy - - 1 - 2 - true - - - - - 188 + + true + true + false + + $(pv_name) $(pv_value) + true + true + Rectangle + 84 23 - false + 188 - - false - true - 0.0 - - - - 39872d87:13e14015f61:3e12 + + + false + 255 + true + false + + + - + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false 24 - true + true + + + + 0 + 2 Rectangle - false - 255 + + + + + + true + + + false + + $(P)orient$(O):K_busy + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 84 + 23 + 128 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 24 + true + + + 0 - 0 + 2 + Rectangle + + @@ -535,62 +600,62 @@ $(pv_value) $(P)orient$(O):H_busy - - 1 - 2 - true - - - - - 70 - $(pv_name) -$(pv_value) - 23 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3e1d - - - - - 22 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 84 + 23 + 70 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 485 + false + + + + false + 22 + true + + + 0 - 0 + 3 + Rectangle + + @@ -602,5842 +667,2947 @@ $(pv_value) $(P)orient$(O):Alert - - 1 - 3 - true - - - - - 22 - $(pv_name) -$(pv_value) - 10 - false - - - - true - - true - 39872d87:13e14015f61:3dcc - - 25 - Grouping Container true true false + + $(pv_name) +$(pv_value) true - false + true + Rectangle + 485 + 10 + 22 + + + + false + 255 + true + false - + - - - - Grouping Container - true - - Default - - 12 - 0 - - false - 1 + + + + false - - 455 - - 78 - - true - 1 - 39872d87:13e14015f61:3dcd - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - A - - - - 10 - 0 - - 1 - - - - 0 - - 5 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:3dce - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - o - - - - 10 - 0 - - 1 - - - - 0 - - 0 - true - - 2 - - - - - true - - true - 39872d87:13e14015f61:3dcf - - 25 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container + 0 + 1 true + + + + 0.0 - Default + Default - 12 - 0 - - false - 1 - - - - - 475 - - 78 - - true - 1 - 39872d87:13e14015f61:3dd0 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - A - - - - 10 - 0 - - 1 - - - - 0 - - 5 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:3dd1 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - o - - - - 10 - 0 - - 1 - - - - 0 - - 0 - true - - 2 - - - - - true - - true - 39872d87:13e14015f61:3dd2 - - 25 - Grouping Container + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):TH_busy + + true true false + + $(pv_name) +$(pv_value) true - false + true + Rectangle + 85 + 210 + 128 + + + + false + 255 + true + false - + - - - - Grouping Container - true - - Default - - 12 - 0 - - false - 1 + + + + false - - 495 - - 78 - - true - 1 - 39872d87:13e14015f61:3dd3 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - A - - - - 10 - 0 - - 1 - - - - 0 - - 5 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:3dd4 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - o - - - - 10 - 0 - - 1 - - - - 0 - - 0 - true - - 2 - - - - - true - - true - 39872d87:13e14015f61:3e05 - + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false 24 - Grouping Container + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):CHI_busy + + true true false + + $(pv_name) +$(pv_value) true - false + true + Rectangle + 85 + 210 + 150 + + + + false + 255 + true + false - + - - - - Grouping Container - true - - Default - - 97 - 0 - - false - 1 + + + + false - - 128 - - 10 - - false - true - 0.0 - - - - 39872d87:13e14015f61:3e08 - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 84 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):K_busy - - - - 1 - 2 - true - - - - - 0 - $(pv_name) -$(pv_value) - 13 - false - - - true - 1 - 39872d87:13e14015f61:3e06 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - K - - - - 10 - 0 - - 1 - - - - 0 - - 3 - true - - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3e07 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):K - - - - false - 0 - - - false - - - - 0 - - 2 - $(pv_name) -$(pv_value) - 15 - - - - - true - - true - 39872d87:13e14015f61:3e13 - - 20 - Grouping Container + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):PHI_busy + + true true false + + $(pv_name) +$(pv_value) true - false + true + Rectangle + 85 + 210 + 173 + + + + false + 255 + true + false - + - - - - Grouping Container - true - - Default - - 55 - 0 - - false - 1 + + + + false - - 258 - - 10 - - true - 1 - 39872d87:13e14015f61:3e14 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - PRIMARY - - - - 55 - 0 - - 1 - - - - 0 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:3e15 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - REFLECTION - - - - 55 - 0 - - 1 - - - - 0 - - 10 - true - - 0 - - - - - true - - true - 39872d87:13e14015f61:3e1f - - 60 - Grouping Container + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 24 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)orient$(O):TTH_busy + + true true false + + $(pv_name) +$(pv_value) true - false + true + Rectangle + 85 + 210 + 104 + + + + false + 255 + true + false - + - - - - Grouping Container - true - - Default - - 70 - 0 - - false - 1 + + + + false - - 336 - - 379 - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3e20 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):OMTX_12 - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3e21 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):OMTX_22 - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3e22 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):OMTX_32 - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:3e23 - - 60 - Grouping Container + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 25 + true + + + + 0 + 2 + Rectangle + + + true true false + + $(pv_name) +$(pv_value) true - false + true + Rectangle + 20 + 132 + 135 + + + + false - + - - - - Grouping Container + + + + 0 + 1 true - Default + - 70 - 0 + + + + 20 + 0 + Label - false - 1 - - - - - 336 - - 449 - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3e24 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):OMTX_13 - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3e25 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):OMTX_23 - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3e26 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):OMTX_33 - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:3e27 - - 60 - Grouping Container true true false - true + false + a + + true + 1 + true + Label + 10 + false + 13 + 458 + + + + false - + - - - - Grouping Container + + + + 0 + 1 true - Default + - 70 - 0 + + + + 20 + 0 + Label - false - 1 - - - - - 336 - - 309 - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3e28 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):OMTX_11 - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3e29 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):OMTX_21 - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3e2a - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):OMTX_31 - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:3e2b - - 60 - Grouping Container true true false - true + false + b + + true + 1 + true + Label + 10 + false + 13 + 478 + + + + false + false + false - + - - - - Grouping Container + false + + + + 3 + 1 + true - Default + - 70 - 0 + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):a + + false + 0.0 - false - 1 - - - - - 454 - - 313 - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3e2c - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):A0_11 - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3e2d - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):A0_21 - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3e2e - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):A0_31 - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:3e2f - - 60 - Grouping Container true true false - true - false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 50 + 28 + 457 + + + + false + false + false - + - - - - Grouping Container + false + + + + 3 + 1 + true - Default + - 70 - 0 + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):b + + false + 0.0 - false - 1 - - - - - 454 - - 383 - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3e30 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):A0_12 - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3e31 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):A0_22 - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3e32 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):A0_32 - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:3e33 - - 60 - Grouping Container true true false - true - false - - - - - - - Grouping Container - true - - Default - - 70 - 0 - - false - 1 - - - - - 454 - - 453 - - - true - - true - 39872d87:13e14015f61:3e34 - - 60 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 70 - 0 - - false - 1 - - - - - 0 - - 0 - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3e35 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):A0_13 - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3e36 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):A0_23 - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3e37 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):A0_33 - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) + + 0 + false + true + false + false + + + $(pv_name) $(pv_value) - 0 - - - - - - true - + false true - 39872d87:13e14015f61:3e3b - - 60 - Grouping Container - - true - true - false - - true - false + Text Input + 50 + 28 + 477 + + + + false - + - - - - Grouping Container - true - - Default - - 70 - 0 - - false - 1 - - 457 - - 155 - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3e3c - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):alpha - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3e3d - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):beta - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3e3e - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):gamma - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:3e3f - - 20 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container + 0 + 1 true - Default + - 47 - 0 + + + + 14 + 1 + Label - false - 1 - - - - - 475 - - 246 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:3e40 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 26 - 0 - 0 - - - 1 - 1 - true - - - - - 10 - $(pv_name) -$(pv_value) - 3 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:3e41 - 0.0 - - 21 - true - Polygon - false - 255 - - true - true - true - - - - - - - - - false - - - - - - - - Polygon - true - false - - Default - - 21 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 27 - - - - - true - - true - 39872d87:13e14015f61:3e43 - - 25 - Grouping Container true true false - true + false + Lattice parameters + + true + 1 + true + Label + 190 + false + 13 + 418 + + + + false - + - - - - Grouping Container + + + + 0 + 1 true - Default + - 164 - 0 + + + + 20 + 0 + Label - false - 1 - - - - - 518 - - 13 - - - true - - true - 39872d87:13e14015f61:3e46 - - 25 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 12 - 0 - - false - 1 - - - - - 0 - - 152 - - true - 1 - 39872d87:13e14015f61:3e47 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - A - - - - 10 - 0 - - 1 - - - - 0 - - 5 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:3e48 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - o - - - - 10 - 0 - - 1 - - - - 0 - - 0 - true - - 2 - - - - true - 1 - 39872d87:13e14015f61:3e44 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Wavelength: - - - - 75 - 0 - - 1 - - - - 1 - - 4 - true - - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3e45 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):lambda - - - - false - 0 - - - false - - - - 0 - - 3 - $(pv_name) -$(pv_value) - 81 - - - - - true - - true - 39872d87:13e14015f61:3e4c - - 131 - Grouping Container true true false - true + false + c + + true + 1 + true + Label + 10 + false + 13 + 498 + + + + false + false + false - + - - - - Grouping Container + false + + + + 3 + 1 + true - Default + - 121 - 0 + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):c + + false + 0.0 - false - 1 - - - - - 66 - - 180 - - false - true - 0.0 - - - - 39872d87:13e14015f61:3e55 - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 85 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):TH_busy - - - - 1 - 2 - true - - - - - 62 - $(pv_name) -$(pv_value) - 30 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3e56 - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 85 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):CHI_busy - - - - 1 - 2 - true - - - - - 84 - $(pv_name) -$(pv_value) - 30 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3e57 - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 85 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):PHI_busy - - - - 1 - 2 - true - - - - - 107 - $(pv_name) -$(pv_value) - 30 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3e59 - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 85 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):TTH_busy - - - - 1 - 2 - true - - - - - 38 - $(pv_name) -$(pv_value) - 30 - false - - - true - 1 - 39872d87:13e14015f61:3e4d - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - HKL/ANGLE CONSTRAINT: - - - - 120 - 0 - - 1 - - - - 1 - - 0 - true - - 1 - - - false - true - true - 39872d87:13e14015f61:3e4e - - 20 - Menu Button - false - - true - true - false - - false - $(P)orient$(O):Mode - - - - - - - Menu Button - true - false - - Default - - 120 - 6 - - - - 1 - - - - 11 - - $(pv_name) -$(pv_value) - 1 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3e4f - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):TH - - - - false - 0 - - - false - - - - 0 - - 63 - $(pv_name) -$(pv_value) - 33 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3e50 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):CHI - - - - false - 0 - - - false - - - - 0 - - 86 - $(pv_name) -$(pv_value) - 33 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3e51 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):PHI - - - - false - 0 - - - false - - - - 0 - - 109 - $(pv_name) -$(pv_value) - 33 - - - true - 1 - 39872d87:13e14015f61:3e52 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - TH - - - - 30 - 0 - - 1 - - - - 0 - - 64 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:3e53 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - CHI - - - - 30 - 0 - - 1 - - - - 0 - - 87 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:3e54 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - PHI - - - - 30 - 0 - - 1 - - - - 0 - - 110 - true - - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3e58 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):TTH - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 33 - - - true - 1 - 39872d87:13e14015f61:3e5a - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - TTH - - - - 30 - 0 - - 1 - - - - 0 - - 41 - true - - 0 - - - - - true - - true - 39872d87:13e14015f61:3e5b - - 25 - Grouping Container true true false - true - false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 50 + 28 + 497 + + + + false - + - - - - Grouping Container - true - - Default - - 20 - 0 - - false - 1 - - 135 - - 132 - - false - true - 0.0 - - - - 39872d87:13e14015f61:3e5e - - - - - 25 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 20 - 0 - 0 - - - 1 - 2 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - true - 1 - 39872d87:13e14015f61:3e5c - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - OM - - - - 10 - 0 - - 1 - - - - 1 - - 3 - true - - 4 - - - true - 1 - 39872d87:13e14015f61:3e5d - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - A0 - - - - 10 - 0 - - 1 - - - - 1 - - 14 - true - - 4 - - - - true - 1 - 39872d87:13e14015f61:3dbc - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + A0 + + true + 1 + true + Label + 240 + false + 283 + 436 + + + + + orient_XTALs.opi + + true + + 1 + crystals + + + false + false - + - - - - Label - true - a - - - - 10 - 0 - - 1 + false - 0 - - 458 - true - - 13 - - - true - 1 - 39872d87:13e14015f61:3dbd - false - + 0 + 1 + true + + Default + + false + + + 20 - Label + + Action Button + 0 + + + true true false - true - false - - - - - - - Label - true - b - - - - 10 - 0 - - 1 - - - - 0 - - 478 - true - + + + XTALS + false + $(pv_name) +$(pv_value) + true + Action Button + 45 13 + 434 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 4 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3dbe - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):XTAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):a - - - - false - 0 - - - false - - - - 0 - - 457 + false + true + false + false + + $(pv_name) $(pv_value) - 28 - - - false + false true - 1 - false - false - - 20 - false - true + Text Input + 165 + 60 + 434 + + + + true + false + false - + - Text Input + false + + + + 6 + 1 true - - + Default - 50 - 3 + false + + + + 20 + + Menu Button + $(P)orient$(O):Debug - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3dbf - 0.0 - Text Input + true true false - 1 - false - 0 - $(P)orient$(O):b - - - - false - 0 - - - false - - - - 0 - - 477 + + false $(pv_name) $(pv_value) - 28 - - + false true - 1 - 39872d87:13e14015f61:3dc0 + Menu Button + 60 + 330 + 533 + + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + debug + + true + 1 + true + Label + 40 + false + 285 + 537 + + + + false - - - - Label - true - Lattice parameters - - - - 190 - 0 - - 1 - 1 - - 418 - true - - 13 - - - true - 1 - 39872d87:13e14015f61:3dc1 - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + alpha + + true + 1 + true + Label + 50 + false + 100 + 458 + + + + false - - - - Label - true - c - - - - 10 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 0 - - 498 - true + Label + + + true + true + false + + + false + beta - 13 - - - false - true + true 1 - false + true + Label + 50 + false + 100 + 478 + + + false - - 20 - false - true - + - Text Input + + + + 0 + 1 true - - + - 50 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3dc2 - 0.0 - Text Input + + + + 20 + 0 + Label + true true false - 1 - false - 0 - $(P)orient$(O):c - - - - false - 0 - - - false + + false + gamma + + true + 1 + true + Label + 50 + false + 100 + 498 + + + + false + + + - 0 - - 497 - $(pv_name) -$(pv_value) - 28 - - - true - 1 - 39872d87:13e14015f61:3dc3 - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + A + + true + 1 + true + Label + 10 + false + 78 + 460 + + + + false - - - - Label + + + + 0 + 1 true - A0 - + - 240 - 0 + + + + 10 + 0 + Label - 1 - - - - 1 - - 436 - true - - 283 - - - false - true - false - 39872d87:13e14015f61:3dc4 - - 20 - Menu Button - false true true false - false - + + false + o + + true + 1 + true + Label + 10 + false + 80 + 455 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 45 - 6 - + + + + 20 + 0 + Label - - 1 - - - - 434 - - - orient_XTALs.opi - - true - - 0 - crystals - - - $(pv_name) -$(pv_value) - 13 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input - true - - - - - 165 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3dc5 - 0.0 - Text Input true true false - 4 - false - 0 - $(P)orient$(O):XTAL - - - - false - 0 - - - false - - - - 0 - - 434 - $(pv_name) -$(pv_value) - 60 - - - false - true - true - 39872d87:13e14015f61:3dc6 - 20 - Menu Button - false - - true - true - false - - false - $(P)orient$(O):Debug + false + A + + true + 1 + true + Label + 10 + false + 78 + 480 + + + + false - + - - - - Menu Button - true - false - - Default - - 60 - 6 - - - - 1 - 533 - - $(pv_name) -$(pv_value) - 330 - - - true - 1 - 39872d87:13e14015f61:3dc7 - false - - 14 + 0 + 1 + true + + + + + + + 10 + 0 Label + true true false - true + false + o + + true + 1 + true + Label + 10 + false + 80 + 475 + + + + false - - - - Label - true - debug - - - - 40 - 0 - - 1 - 0 - - 537 - true - - 285 - - - true - 1 - 39872d87:13e14015f61:3dc9 - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + A + + true + 1 + true + Label + 10 + false + 78 + 500 + + + + false - - - - Label - true - alpha - - - - 50 - 0 - - 1 + 0 + 1 + true + + + + + + + 10 0 - - 458 - true - - 100 - - - true - 1 - 39872d87:13e14015f61:3dca - false - - 20 Label + true true false - true + false + o + + true + 1 + true + Label + 10 + false + 80 + 495 + + + + false - - - - Label - true - beta - - - - 50 - 0 - - 1 - 0 - - 478 - true - - 100 - - - true - 1 - 39872d87:13e14015f61:3dcb - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true - gamma - - - - 50 - 0 - - 1 - - - - 0 - - 498 - true + Diffractometer $(P)orient$(O) - 100 - - - true - 1 - 39872d87:13e14015f61:3dd7 - false - - 20 - Label - - true - true - false - true - false - - - - - - + 1 + true Label - true - Diffractometer $(P)orient$(O) - - - 550 - 0 - - 1 - - - - 1 - - 0 - true - + false 0 + 0 - - false - true - false - 39872d87:13e14015f61:3dd8 - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 50 - 6 - - - - 1 - - - - 544 + orient_slave.opi true - 1 + 0 HKL, Angles, etc. + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + Less + false $(pv_name) $(pv_value) + true + Action Button + 50 499 + 544 - - true - 1 - 39872d87:13e14015f61:3ddb + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + TTH + + true + 1 + true + Label + 75 + false + 174 + 243 + + + + false - - - - Label - true - TTH - - - - 75 - 0 - - 1 - 1 - - 243 - true - - 174 - - - true - 1 - 39872d87:13e14015f61:3ddc - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + TH + + true + 1 + true + Label + 75 + false + 249 + 243 + + + + false - - - - Label - true - TH - - - - 75 - 0 - - 1 - 1 - - 243 - true - - 249 - - - true - 1 - 39872d87:13e14015f61:3ddd - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + CHI + + true + 1 + true + Label + 75 + false + 324 + 243 + + + + false - - - - Label + + + + 0 + 1 true - CHI - + - 75 - 0 - - 1 - - - - 1 - - 243 - true - - 324 - - - true - 1 - 39872d87:13e14015f61:3dde - false - + + + 14 + 1 Label + true true false - true + false - - - - - - - Label - true PHI - - - - 75 - 0 - - 1 - - - - 1 - - 243 - true + true + 1 + true + Label + 75 + false 399 + 243 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 75 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3ddf - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):TTH1 + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):TTH1 - - - - false - 0 - - - false - - - - 0 - - 260 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 75 174 + 260 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 75 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3de0 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):TH1 + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):TH1 - - - - false - 0 - - - false - - - - 0 - - 260 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 75 249 + 260 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 75 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3de1 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):CHI1 + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):CHI1 - - - - false - 0 - - - false - - - - 0 - - 260 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 75 324 + 260 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input - true - - - - - 75 + false + + + 3 - 1 + + true + + + + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3de2 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):PHI1 + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):PHI1 - - - - false - 0 - - - false - - - - 0 - - 260 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 75 399 + 260 - - true - 1 - 39872d87:13e14015f61:3de3 + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - = - - - - 10 - 0 - - 1 - 1 - - 262 - true - - 163 - - - true - 1 - 39872d87:13e14015f61:3de4 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + = + + true + 1 + true + Label + 10 + false + 163 + 262 + + + + false - - - - Label - true - ^ - - - - 10 - 0 - - 1 - 1 - - 259 - true - - 163 - - - false - true - 39872d87:13e14015f61:3de5 - + 0 + 1 + true + + + + + + 20 - Action Button - false + 1 + Label + true true false - $(P)orient$(O):refGet1 - - - - - - - Action Button - true - Get - false - - Default - - 30 - 0 - 0 - - - - false - 1 - - - - 260 + + false + ^ + + true + 1 + true + Label + 10 + false + 163 + 259 + + $(P)orient$(O):refGet1 1 10 + - $(pv_name) -$(pv_value) - 478 - - + false + false + + + false - true - 39872d87:13e14015f61:3de6 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)orient$(O):refGet1 + + true true false - $(P)orient$(O):refPut1 - - - - - - + + + Get + false + $(pv_name) +$(pv_value) + true Action Button - true - Put - false - - Default - 30 - 0 - 0 - - - - false - 1 - - - + 478 260 + + $(P)orient$(O):refPut1 1 10 + - $(pv_name) -$(pv_value) - 509 - - - false - true - 1 - false - false - - 20 - false - true + false + false - + - Text Input - true - - - + false + + + + 0 + 1 + true + + Default - 75 - 3 + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):refPut1 - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3de7 - 0.0 - Text Input + true true false - 1 - false - 0 - $(P)orient$(O):TTH2 - - - - false - 0 - - - false - - - - 0 - - 286 + + + Put + false $(pv_name) $(pv_value) - 174 - - - false true - 1 - false + Action Button + 30 + 509 + 260 + + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 75 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3de8 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):TTH2 + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):TH2 - - - - false - 0 - - - false - - - - 0 - - 286 + false + true + false + false + + $(pv_name) $(pv_value) - 249 - - - false + false true - 1 - false + Text Input + 75 + 174 + 286 + + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 75 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3de9 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):TH2 + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):CHI2 - - - - false - 0 - - - false - - - - 0 - - 286 + false + true + false + false + + $(pv_name) $(pv_value) - 324 - - - false + false true - 1 - false + Text Input + 75 + 249 + 286 + + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 75 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3dea - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):CHI2 + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):PHI2 - - - - false - 0 - - - false - - - - 0 - - 286 + false + true + false + false + + $(pv_name) $(pv_value) - 399 - - + false true - 1 - 39872d87:13e14015f61:3deb + Text Input + 75 + 324 + 286 + + + + false false - - 20 - Label + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):PHI2 + + false + 0.0 + true true false - true - false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 75 + 399 + 286 + + + + false - - - - Label - true - = - - - - 10 - 0 - - 1 - 1 - - 288 - true - - 163 - - - true - 1 - 39872d87:13e14015f61:3dec - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + = + + true + 1 + true + Label + 10 + false + 163 + 288 + + + + false - - - - Label - true - ^ - - - - 10 - 0 - - 1 - 1 - - 285 - true - - 163 - - - false - true - 39872d87:13e14015f61:3ded - + 0 + 1 + true + + + + + + 20 - Action Button - false + 1 + Label + true true false - $(P)orient$(O):refGet2 - - - - - - - Action Button - true - Get - false - - Default - - 30 - 0 - 0 - - - - false - 1 - - - + + false + ^ + + true + 1 + true + Label + 10 + false + 163 285 + + $(P)orient$(O):refGet2 1 10 + - $(pv_name) -$(pv_value) - 478 - - + false + false + + + false - true - 39872d87:13e14015f61:3dee - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)orient$(O):refGet2 + + true true false - $(P)orient$(O):refPut2 - - - - - - + + + Get + false + $(pv_name) +$(pv_value) + true Action Button - true - Put - false - - Default - 30 - 0 - 0 - - - - false - 1 - - - + 478 285 + + $(P)orient$(O):refPut2 1 10 + - $(pv_name) -$(pv_value) - 509 - - - false - true - 1 - false - false - - 20 - false - true + false + false - + - Text Input + false + + + + 0 + 1 true - - + Default - 30 - 3 + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):refPut2 - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3def - 0.0 - Text Input + true true false - 1 - false - 0 - $(P)orient$(O):L1 - - - - false - 0 - - - false - - - - 0 - - 260 + + + Put + false $(pv_name) $(pv_value) - 132 - - true - 1 - 39872d87:13e14015f61:3df0 + Action Button + 30 + 509 + 285 + + + + false false - - 14 - Label - - true - true - false - - true - false + false - + - - - - Label - true - L - - - - 30 - 0 - - 1 + false - 1 - - 243 - true - - 132 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input + 3 + 1 + true - - + - 30 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3df1 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):L1 + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):L2 - - - - false - 0 - - - false - - - - 0 - - 286 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 30 132 + 260 - - true - 1 - 39872d87:13e14015f61:3df2 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false - - - - - - + L + + true + 1 + true Label - true - K - - - 30 - 0 - - 1 - - - - 1 - + false + 132 243 - true - - 102 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 30 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3df3 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):L2 + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):K1 - - - - false - 0 - - - false - - - - 0 - - 260 + false + true + false + false + + $(pv_name) $(pv_value) - 102 - - - false + false true - 1 - false + Text Input + 30 + 132 + 286 + + + false - - 20 - false - true - + - Text Input + + + + 0 + 1 true - - + - 30 - 3 - + + + + 14 + 1 + Label + + + true + true + false + + + false + K + + true + 1 + true + Label + 30 + false + 102 + 243 + + + + false + false + false + + + + false + + + + 3 1 + + true + + + + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3df4 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):K1 + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):K2 - - - + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 30 + 102 + 260 + + + + false + false false - 0 - - - false + + + + false + 3 + 1 + + true + + + + false + + + + 1 + 20 0 - - 286 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):K2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 30 102 + 286 - - true - 1 - 39872d87:13e14015f61:3df5 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false - - - - - - - Label - true H - - - - 30 - 0 - - 1 - - - - 1 - - 243 - true + true + 1 + true + Label + 30 + false 72 + 243 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 30 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3df6 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):H1 + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):H1 - - - - false - 0 - - - false - - - - 0 - - 260 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 30 72 + 260 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 30 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3df7 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):H2 + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):H2 - - - - false - 0 - - - false - - - - 0 - - 286 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 30 72 + 286 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 100.0 + + Default + + false + + + + 21 + true - 39872d87:13e14015f61:3df8 - 0.0 - - 21 - true + 0 + 0 Polygon - false - 255 - - true - true - true - - false - - - - - - - Polygon - true - false - - Default - - 21 - 0 - 0 + + 0.0 @@ -6450,62 +3620,62 @@ $(pv_value) $(P)orient$(O):refGet2 - - 1 - 0 - true - - - - - 229 + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polygon + 21 167 + 229 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 100.0 + + Default + + false + + + + 21 + true - 39872d87:13e14015f61:3df9 - 0.0 - - 21 - true + 0 + 0 Polygon - false - 255 - - true - true - true - - false - - - - - - - Polygon - true - false - - Default - - 21 - 0 - 0 + + 0.0 @@ -6518,1627 +3688,4037 @@ $(pv_value) $(P)orient$(O):refPut2 - - 1 - 0 - true - - - - - 229 + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polygon + 21 157 + 229 - + + + + $(P)orient$(O):OMTX_Calc + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:3dfa - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)orient$(O):OMTX_Calc + + true true false - $(P)orient$(O):OMTX_Calc - - - - - - - Action Button - true + + Calc OMTX - false - - Default - - 90 - 0 - 0 - - - false - 1 - - - - 340 - - - $(P)orient$(O):OMTX_Calc - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 90 182 + 340 - - true - 1 - 39872d87:13e14015f61:3dfc + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - OM - - - - 240 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 1 - - 318 - true + Label + + + true + true + false + + + false + OM + true + 1 + true + Label + 240 + false 279 + 318 - - true - true - 1 - false - 39872d87:13e14015f61:3dfd + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)orient$(O):H_RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)orient$(O):H_RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 57 false - $(pv_name) -$(pv_value) 26 + 57 - - true - 1 - 39872d87:13e14015f61:3dfe + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + L + + true + 1 + true + Label + 10 + false + 10 + 191 + + + + false + false + false - + - - - - Label + false + + + + 3 + 1 + true - L - + - 10 - 0 + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):L + + false + 0.0 - 1 + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 25 + 190 + + + + + $(P)orient$(O):L_tweak.A + 1 + 10 + + + + + false + false + + + + false - 0 - - 191 - true - - 10 + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):L_tweak.A + + + + true + true + false + + + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 85 + 210 - + + + + $(P)orient$(O):L_tweak.B + 1 + 10 + + + + + false + false + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):L_tweak.B + + + + true + true + false + + + + - + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 25 + 210 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):L_tweak.C + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 45 + 212 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 14 + 1 + Text Update + 0 + true + $(P)orient$(O):L_RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 26 + 174 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + K + + true + 1 + true + Label + 10 + false + 10 + 131 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):K + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 25 + 130 + + + + + $(P)orient$(O):K_tweak.A + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):K_tweak.A + + + + true + true + false + + + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 85 + 150 + + + + + $(P)orient$(O):K_tweak.B + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):K_tweak.B + + + + true + true + false + + + + - + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 25 + 150 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):K_tweak.C + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 45 + 152 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 14 + 1 + Text Update + 0 + true + $(P)orient$(O):K_RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 26 + 114 + + + + + $(P)orient$(O):H_tweak.A + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):H_tweak.A + + + + true + true + false + + + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 85 + 92 + + + + + $(P)orient$(O):H_tweak.B + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):H_tweak.B + + + + true + true + false + + + + - + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 25 + 92 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):H_tweak.C + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 45 + 94 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):H + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 25 + 72 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + H + + true + 1 + true + Label + 10 + false + 10 + 73 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + PRIMARY + + true + 1 + true + Label + 55 + false + 10 + 258 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + REFLECTION + + true + 1 + true + Label + 55 + false + 10 + 268 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + SECONDARY + + true + 1 + true + Label + 55 + false + 10 + 286 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + REFLECTION + + true + 1 + true + Label + 55 + false + 10 + 296 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + errAngle: + + true + 1 + true + Label + 60 + false + 118 + 362 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 14 + 0 + Text Update + 0 + true + $(P)orient$(O):errAngle + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 90 + false + 182 + 362 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + maxErr: + + true + 1 + true + Label + 60 + false + 118 + 380 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):errAngleThresh + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 90 + 182 + 378 + + + + + $(P)orient$(O):OperAck + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)orient$(O):OperAck + + + + true + true + false + + + + Erase + false + $(pv_name) +$(pv_value) + true + Action Button + 45 + 495 + 24 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 14 + 0 + Text Update + 0 + true + $(P)orient$(O):Msg + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 475 + false + 15 + 27 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):OMTX_12 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 379 + 336 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):OMTX_22 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 379 + 356 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):OMTX_32 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 379 + 376 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):OMTX_13 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 449 + 336 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):OMTX_23 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 449 + 356 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):OMTX_33 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 449 + 376 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):OMTX_11 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 309 + 336 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):OMTX_21 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 309 + 356 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):OMTX_31 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 309 + 376 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):A0_11 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 313 + 454 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):A0_21 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 313 + 474 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):A0_31 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 313 + 494 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):A0_12 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 383 + 454 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):A0_22 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false true - 1 - false + Text Input + 70 + 383 + 474 + + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3dff - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):A0_32 + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):L - - - - false - 0 - - - false - - - - 0 - - 190 + false + true + false + false + + $(pv_name) $(pv_value) - 25 + false + true + Text Input + 70 + 383 + 494 - + + + false + false + false + + + false - true - 39872d87:13e14015f61:3e01 - - 20 - Action Button + + + + 3 + 1 + + true + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):A0_13 + + false + 0.0 + true true false - $(P)orient$(O):L_tweak.A + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 453 + 454 + + + + false + false + false - + - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 + false - 210 - - - $(P)orient$(O):L_tweak.A - 1 - 10 - - - - $(pv_name) -$(pv_value) - 85 - - - false - true - 39872d87:13e14015f61:3e02 - - 20 - Action Button + 3 + 1 + + true + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):A0_23 + + false + 0.0 + true true false - $(P)orient$(O):L_tweak.B - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 210 - - - $(P)orient$(O):L_tweak.B - 1 - 10 - - - + + 0 + false + true + false + false + + $(pv_name) $(pv_value) - 25 - - - false + false true - 1 - false + Text Input + 70 + 453 + 474 + + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3e03 + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):A0_33 + + false 0.0 - Text Input + true true false - 1 - false + 0 - $(P)orient$(O):L_tweak.C - - - - false - 0 - - - false - - - - 0 - - 212 + false + true + false + false + + $(pv_name) $(pv_value) - 45 - - - true + false true - 1 - false - 39872d87:13e14015f61:3e04 + Text Input + 70 + 453 + 494 + + + false - 0.0 - - 14 - Text Update - false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + true true false - 1 - true - false - $(P)orient$(O):L_RBV + + false + o + + true + 1 + true + Label + 10 + false + 228 + 457 + + + + false - + - - - - Text Update + + + + 0 + 1 true - ###### - false - 0 - + - 80 - 0 + + + + 10 + 0 + Label - - 1 - - - - 1 - - 174 - false - $(pv_name) -$(pv_value) - 26 - - - false - true - 39872d87:13e14015f61:3e09 - - 20 - Action Button - false true true false - $(P)orient$(O):K_tweak.A + + false + o + + true + 1 + true + Label + 10 + false + 228 + 478 + + + + false - + - - - - Action Button + + + + 0 + 1 true - + - false - Default + - 20 - 0 - 0 - + + + + 10 + 0 + Label - - false - 1 - - - - 150 - - - $(P)orient$(O):K_tweak.A - 1 - 10 - - - - $(pv_name) -$(pv_value) - 85 - - - false - true - 39872d87:13e14015f61:3e0a - - 20 - Action Button - false true true false - $(P)orient$(O):K_tweak.B + + false + o + + true + 1 + true + Label + 10 + false + 228 + 498 + + + + false + false + false - + - - - - Action Button + false + + + + 3 + 1 + true - - - false - Default + - 20 - 0 - 0 - - + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):alpha - false - 1 - - - - 150 - - - $(P)orient$(O):K_tweak.B - 1 - 10 - - - + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + $(pv_name) $(pv_value) - 25 + false + true + Text Input + 70 + 155 + 457 - - false - true - 1 - false + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3e0b - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):beta + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):K_tweak.C - - - + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 70 + 155 + 477 + + + + false + false false - 0 - - - false + + + + false + 3 + 1 + + true + + + + false + + + + 1 + 20 0 - - 152 - $(pv_name) -$(pv_value) - 45 - - - true - true - 1 - false - 39872d87:13e14015f61:3e0c - false + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):gamma + + false 0.0 - - 14 - Text Update - false + true true false - 1 - true + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - $(P)orient$(O):K_RBV + true + Text Input + 70 + 155 + 497 + + + + false + 255 + true + 20 + 0 + false - + - - - - Text Update + false + + + + 0 + 1 true - ###### - false - 0 + true + 100.0 - + Default - 80 - 0 - + false + + + + 1 + true + 0 + 1 + Polyline + + + + + - 1 - - - - 1 - - 114 - false + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 26 + true + true + Polyline + 26 + 249 + 485 - + + + false + 255 + true + false + + + false - true - 39872d87:13e14015f61:3e0d - - 20 - Action Button + + + + 0 + 1 + true + 100.0 + + Default + false + + + + 21 + true + + + + 0 + 0 + Polygon + + + + + + + + + + 0.0 + true true - false + true - $(P)orient$(O):H_tweak.A + + $(pv_name) +$(pv_value) + false + true + Polygon + 21 + 273 + 475 + + + + false - + - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - 92 - - - $(P)orient$(O):H_tweak.A - 1 - 10 - - - - $(pv_name) -$(pv_value) - 85 - - - false - true - 39872d87:13e14015f61:3e0e - - 20 - Action Button - false + 0 + 1 + true + + + + + + + 14 + 1 + Label + true true false - $(P)orient$(O):H_tweak.B + + false + AUTO + + true + 1 + true + Label + 30 + false + 254 + 461 + + + + false - + - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - false - 1 - 92 - - - $(P)orient$(O):H_tweak.B - 1 - 10 - - - - $(pv_name) -$(pv_value) - 25 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input + 0 + 1 true - - + - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3e0f - 0.0 - Text Input + + + + 14 + 1 + Label + true true false - 1 - false - 0 - $(P)orient$(O):H_tweak.C - - - - false - 0 - - - false - - - - 0 - - 94 - $(pv_name) -$(pv_value) - 45 - - - false - true + + false + Wavelength: + + true 1 - false + true + Label + 75 + false + 13 + 522 + + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3e10 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):lambda + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):H - - - - false - 0 - - - false - - - - 0 - - 72 + false + true + false + false + + $(pv_name) $(pv_value) - 25 - - + false true - 1 - 39872d87:13e14015f61:3e11 + Text Input + 70 + 94 + 521 + + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - H - - - - 10 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 0 - - 73 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:3e16 - false - - 10 Label + true true false - true + false - - - - - - - Label - true - SECONDARY - - - - 55 - 0 - - 1 - - - - 0 - - 286 - true + A - 10 - - - true + true 1 - 39872d87:13e14015f61:3e17 + true + Label + 10 + false + 165 + 523 + + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 0 Label + true true false - true + false + o + + true + 1 + true + Label + 10 + false + 167 + 518 + + + + false - - - - Label - true - REFLECTION - - - - 55 - 0 - - 1 - 0 - - 296 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:3e18 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + Energy: + + true + 1 + true + Label + 75 + false + 13 + 542 + + + + false + false + false - + - - - - Label - true - errAngle: - - - - 60 - 0 - - 1 + false - 1 - - 362 - true - - 118 - - - true - true - 1 - false - 39872d87:13e14015f61:3e19 - false - 0.0 - - 14 - Text Update + 3 + 1 + + true + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):energy + + false + 0.0 + true true false - 1 - true + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - $(P)orient$(O):errAngle + true + Text Input + 70 + 94 + 541 + + + + false - + - - - - Text Update - true - ###### - false - 0 - - - - 90 - 0 - - - 1 + 0 + 1 + true + + + + + + + 20 0 - - 362 - false - $(pv_name) -$(pv_value) - 182 - - - true - 1 - 39872d87:13e14015f61:3e1a - false - - 14 Label + true true false - true + false + keV + + true + 1 + true + Label + 10 + false + 165 + 543 + + + + false - - - - Label - true - maxErr: - - - - 60 - 0 - - 1 + 0 + 1 + true + + + + + + + 10 1 - - 380 - true + Label + + + true + true + false + + + false + HKL/ANGLE CONSTRAINT: - 118 - - - false - true + true 1 - false - false - - 20 - false - true + true + Label + 120 + false + 181 + 66 + + + + true + false + false - + - Text Input + false + + + + 6 + 1 true - - + Default - 90 - 3 + false + + + + 20 + + Menu Button + $(P)orient$(O):Mode - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3e1b - 0.0 - Text Input + true true false - 1 - false - 0 - $(P)orient$(O):errAngleThresh - - - - false - 0 - - - false - - - - 0 - - 378 + + false $(pv_name) $(pv_value) - 182 - - - false + false true - 39872d87:13e14015f61:3e1c - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):OperAck + Menu Button + 120 + 181 + 77 + + + + false + false + false - + - - - - Action Button + false + + + + 3 + 1 + true - Erase - false - Default + - 45 - 0 - 0 - - + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):TH - false - 1 - - - - 24 - - - $(P)orient$(O):OperAck - 1 - 10 - - - - $(pv_name) -$(pv_value) - 495 - - - true - true - 1 - false - 39872d87:13e14015f61:3e1e - false + false 0.0 - - 14 - Text Update - false + true true false - 1 - true + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - $(P)orient$(O):Msg + true + Text Input + 80 + 213 + 129 + + + + false + false + false - + - - - - Text Update - true - ###### - false - 0 - - - - 475 - 0 - - - 1 + false + 3 + 1 + + true + + + + false + + + + 1 + 20 0 - - 27 - false - $(pv_name) -$(pv_value) - 15 - - - true - 1 - 39872d87:13e14015f61:3e38 - false - - 10 - Label + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):CHI + + false + 0.0 + true true false - true - false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 213 + 152 + + + + false + false + false - + - - - - Label - true - o - - - - 10 - 0 - - 1 + false + 3 + 1 + + true + + + + false + + + + 1 + 20 0 - - 457 - true - - 228 - - - true - 1 - 39872d87:13e14015f61:3e39 - false - - 10 - Label + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)orient$(O):PHI + + false + 0.0 + true true false - true - false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 213 + 175 + + + + false - - - - Label - true - o - - - - 10 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 0 - - 478 - true - - 228 - - - true - 1 - 39872d87:13e14015f61:3e3a - false - - 10 Label + true true false - true + false + TH + + true + 1 + true + Label + 30 + false + 180 + 130 + + + + false - - - - Label - true - o - - - - 10 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 0 - - 498 - true - - 228 - - - true - 1 - 39872d87:13e14015f61:3e42 - false - - 14 Label + true true false - true + false + CHI + + true + 1 + true + Label + 30 + false + 180 + 153 + + + + false - - - - Label - true - AUTO - - - - 30 - 0 - - 1 - 1 - - 461 - true - - 254 - - - true - 1 - 39872d87:13e14015f61:3e49 - false - - 14 + 0 + 1 + true + + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true - Energy: - - - - 75 - 0 - - 1 - - - - 1 - - 542 - true + PHI - 13 - - - false - true + true 1 - false + true + Label + 30 + false + 180 + 176 + + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 70 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3e4a - 0.0 + false Text Input + 0 + false + 0 + true + $(P)orient$(O):TTH + + false + 0.0 + true true false - 1 - false + 0 - $(P)orient$(O):energy - - - - false - 0 - - - false + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 213 + 106 + + + + false + + + + 0 + 1 + true + + + + + + + 20 0 - - 541 - $(pv_name) -$(pv_value) - 94 - - - true + Label + + + true + true + false + + + false + TTH + + true 1 - 39872d87:13e14015f61:3e4b + true + Label + 30 + false + 180 + 107 + + + false - - 20 + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 Label + true true false - true + false + OM + + true + 1 + true + Label + 10 + false + 136 + 138 + + + + false - - - - Label + + + + 0 + 1 true - keV - + - 10 - 0 + + + + 10 + 1 + Label - 1 - - - - 0 - - 543 - true + + true + true + false + + + false + A0 - 165 + true + 1 + true + Label + 10 + false + 136 + 149 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 100.0 + + Default + + false + + + + 18 + true - 39872d87:13e14015f61:3e5f - 0.0 - - 18 - true + 0 + 0 Polygon - false - 255 - - true - true - true - @@ -8146,57 +7726,57 @@ $(pv_value) - false - - - - - - - Polygon - true - false - - Default - - 18 - 0 - 0 - - 1 - 0 - true - - - - - 140 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polygon + 18 152 + 140 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 100.0 + + Default + + false + + + + 18 + true - 39872d87:13e14015f61:3e60 - 0.0 - - 18 - true + 0 + 0 Polygon - false - 255 - - true - true - true - @@ -8204,76 +7784,63 @@ $(pv_value) - false - - - - - - - Polygon - true - false - - Default - - 18 - 0 - 0 - - 1 - 0 - true - - - - - 140 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polygon + 18 115 + 140 - - true - 1 - 39872d87:13e14015f61:3e61 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false - - - - - - - Label - true AUTO - - - - 30 - 0 - - 1 - - - - 1 - - 117 - true + true + 1 + true + Label + 30 + false 128 + 117 - \ No newline at end of file + diff --git a/opticsApp/op/opi/pf4.opi b/opticsApp/op/opi/autoconvert/pf4.opi similarity index 78% rename from opticsApp/op/opi/pf4.opi rename to opticsApp/op/opi/autoconvert/pf4.opi index d2109e1..d5f2b13 100644 --- a/opticsApp/op/opi/pf4.opi +++ b/opticsApp/op/opi/autoconvert/pf4.opi @@ -1,332 +1,332 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 215 true - 39872d87:13e14015f61:3f0a - 3.1.2.20120830 + pf4 + + true + true + false true - 215 - pf4 false - false - - - - - - Display - true 325 - - true - 5 - - false - -1 - -1 - - - 346 1194 - + 346 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 25 + true - 39872d87:13e14015f61:3f0b - - - - - 25 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle - true - - - - false - - Default - 325 - 0 - 0 - - - 1 - 0 - true + 0 + 0 + + + + + + - - 0 - $(pv_name) -$(pv_value) - 0 - false - - + 0 + 1 + true + + Default + + + + + + 189 true - true - 39872d87:13e14015f61:3f10 - false - - true - 189 Linking Container + pf4_bare.opi + 2 + true true false - pf4_bare.opi - - - - - - - + + + true Linking Container - true - - Default - 305 - 3 - - 1 - - - - - 25 - 5 + 25 - - true - 1 - 39872d87:13e14015f61:3f0c + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - PF4 dual filter - - - - 320 - 0 - - 1 - 1 - - 3 - true - - 4 - - - false - true - false - 39872d87:13e14015f61:3f0d - + 0 + 1 + true + + + + + + 20 - Menu Button - false + 1 + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 50 - 6 - - - - 1 - - - - 194 + + false + PF4 dual filter + + true + 1 + true + Label + 320 + false + 4 + 3 + + pf4more.opi true - 1 + 0 PF4 mono filter computed controls - $(pv_name) -$(pv_value) - 273 - - + false + false + + + false - true - false - 39872d87:13e14015f61:3f0e - - 20 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + more + false + $(pv_name) +$(pv_value) + true + Action Button 50 - 6 - - - - 1 - - - - 174 + 273 + 194 + + pf4config.opi true - 1 + 0 all + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + +config + false $(pv_name) $(pv_value) + true + Action Button + 50 273 + 174 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:3f0f - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 324 - 0 - 0 - - 1 - 1 - true - - - - - 23 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 324 1 + 23 - \ No newline at end of file + diff --git a/opticsApp/op/opi/pf4Bank.opi b/opticsApp/op/opi/autoconvert/pf4Bank.opi similarity index 79% rename from opticsApp/op/opi/pf4Bank.opi rename to opticsApp/op/opi/autoconvert/pf4Bank.opi index cfdce3b..c4a1346 100644 --- a/opticsApp/op/opi/pf4Bank.opi +++ b/opticsApp/op/opi/autoconvert/pf4Bank.opi @@ -1,383 +1,383 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 175 true - 39872d87:13e14015f61:3f1b - 3.1.2.20120830 + pf4Bank + + true + true + false true - 175 - pf4Bank false - false - - - - - - Display - true 135 - - true - 5 - - false - -1 - -1 - - - 346 1194 - + 346 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 25 + true - 39872d87:13e14015f61:3f1c - - - - - 25 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle - true - - - - false - - Default - 135 - 0 - 0 - - - 1 - 0 - true + 0 + 0 + + + + + + - - 0 - $(pv_name) -$(pv_value) - 0 - false - - + 0 + 1 + true + + Default + + + + + + 130 true - true - 39872d87:13e14015f61:3f22 - false - - true - 130 Linking Container + pf4Bank_bare.opi + 2 + true true false - pf4Bank_bare.opi - - - - - - - + + + true Linking Container - true - - Default - 125 - 3 - - 1 - - - - - 25 - 5 + 25 - - true - 1 - 39872d87:13e14015f61:3f1d + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true PF4 filter - - - - 130 - 0 - - 1 - - - - 1 - - 0 - true + true + 1 + true + Label + 130 + false 0 + 0 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:3f1e - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 132 - 0 - 0 - - 1 - 1 - true - - - - - 23 - $(pv_name) -$(pv_value) - 1 - - - true - true - 1 - false - 39872d87:13e14015f61:3f1f - false 0.0 - - 20 - Text Update - false + true true - false + true - 2 - true + + $(pv_name) +$(pv_value) false - $(P)$(H)trans$(A) + true + Polyline + 132 + 1 + 23 + + + + false + false + false - + - - - - Text Update - true - ###### - false - 0 - - - - 125 - 0 - - - 1 + true - 1 - - 135 - false - $(pv_name) -$(pv_value) - 5 - - - false - true - false - 39872d87:13e14015f61:3f20 - - 20 - Menu Button + 0 + 1 + true + + + false + + + + 2 + 20 + 1 + Text Update + 0 + true + $(P)$(H)trans$(A) + + 0.0 + true true false + + false + ###### + $(pv_name) +$(pv_value) false - - - - - - - - Menu Button - true - false - - Default - - 50 - 6 - - - - 1 - - - - 155 + 1 + true + Text Update + 125 + false + 5 + 135 + + pf4Bankmore.opi true - 1 + 0 PF4 mono filter computed controls - $(pv_name) -$(pv_value) - 85 - - + false + false + + + false - true - false - 39872d87:13e14015f61:3f21 - - 20 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 55 - 6 - - - - 1 - - - + + + more + false + $(pv_name) +$(pv_value) + true + Action Button + 50 + 85 155 + + pf4Bankconfig.opi true - 1 + 0 all + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + +config + false $(pv_name) $(pv_value) + true + Action Button + 55 30 + 155 - \ No newline at end of file + diff --git a/opticsApp/op/opi/pf4Bank_bare.opi b/opticsApp/op/opi/autoconvert/pf4Bank_bare.opi similarity index 63% rename from opticsApp/op/opi/pf4Bank_bare.opi rename to opticsApp/op/opi/autoconvert/pf4Bank_bare.opi index 53704d3..86f4725 100644 --- a/opticsApp/op/opi/pf4Bank_bare.opi +++ b/opticsApp/op/opi/autoconvert/pf4Bank_bare.opi @@ -1,753 +1,366 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 135 true - 39872d87:13e14015f61:3f2e - 3.1.2.20120830 + pf4Bank_bare + + true + true + false true - 135 - pf4Bank_bare false - false - - - - - - Display - true 125 - - true - 5 - - false - -1 - -1 - - - 692 1039 - - false - true - 0.0 - - - - 39872d87:13e14015f61:3f31 - - - - - 90 - true - Rectangle - false + 692 + + + false 255 - - true - true - false - - true - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 125 + false + + + + false + 90 + true + + + 0 - 0 - - - 1 2 - true - - - - - 19 - $(pv_name) -$(pv_value) - 0 - false - - - - true - - true - 39872d87:13e14015f61:3f3d - - 12 - Grouping Container + Rectangle + + + true true false + + $(pv_name) +$(pv_value) true - false + true + Rectangle + 125 + 0 + 19 + + + + false - + - - - - Grouping Container - true - - Default - - 100 - 0 - - false - 1 - - 80 - - 15 - - true - 1 - 39872d87:13e14015f61:3f3e - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - 1 - - - - 10 - 0 - - 1 - - - - 0 - - 0 - true - - 90 - - - true - 1 - 39872d87:13e14015f61:3f3f - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - 2 - - - - 10 - 0 - - 1 - - - - 0 - - 0 - true - - 60 - - - true - 1 - 39872d87:13e14015f61:3f40 - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - 3 - - - - 10 - 0 - - 1 - - - - 0 - - 0 - true - - 30 - - - true - 1 - 39872d87:13e14015f61:3f41 - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - 4 - - - - 10 - 0 - - 1 - - - - 0 - - 0 - true - - 0 - - - - - true - - true - 39872d87:13e14015f61:3f42 - - 15 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container + 0 + 1 true - Default + - 40 - 0 - - - - true - - - false - - $(P)$(H)bank$(B) - - - false - 1 - - - - - 90 - - 45 - - - true - - true - 39872d87:13e14015f61:3f43 - - 15 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 40 - 0 - - false - 1 - - - - - 0 - - 0 - - false - true - 39872d87:13e14015f61:3f44 - - 15 - Action Button - false - - true - true - false - - $(P)$(H)ftweak$(B).A - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)$(H)ftweak$(B).A - 1 - 10 - - - - $(pv_name) -$(pv_value) - 20 - - - false - true - 39872d87:13e14015f61:3f45 - - 15 - Action Button - false - - true - true - false - - $(P)$(H)ftweak$(B).B - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)$(H)ftweak$(B).B - 1 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - - - true - 1 - 39872d87:13e14015f61:3f2f - false - + + + 10 + 0 Label + true true false - true + false + BEAM + + true + 1 + true + Label + 30 + false + 89 + 22 + + + + false - - - - Label - true - BEAM - - - - 30 - 0 - - 1 - 0 - - 22 - true - - 89 - - - true - 1 - 39872d87:13e14015f61:3f30 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + $(P)$(H)$(B) + + true + 1 + true + Label + 100 + false + 10 + 0 + + + + false + false + false - + - - - - Label + true + + + + 0 + 1 true - $(P)$(H)$(B) - + - 100 - 0 - - 1 - - - - 1 - - 0 - true - - 10 - - - true - true - 1 - false - 39872d87:13e14015f61:3f32 - false - 0.0 - + false + + + + 2 20 + 1 Text Update - false + 0 + true + $(P)$(H)trans$(B) + + 0.0 + true true false - 2 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)trans$(B) - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 125 - 0 - - - 1 - - - - 1 - - 110 false - $(pv_name) -$(pv_value) 0 + 110 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:3f33 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 118 + 5 + 33 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 118 - 0 - 0 - - - 1 - 1 - true + false - - 33 - $(pv_name) -$(pv_value) - 5 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:3f34 - 0.0 - - 0 + + Default + + false + + + 12 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 12 - 0 - 0 - - 1 - 1 - true - - - - - 27 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 12 4 + 27 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 100.0 + + Default + + false + + + + 47 + true - 39872d87:13e14015f61:3f35 - 0.0 - - 47 - true + 0 + 0 Polygon - false - 255 - - true - true - true - @@ -755,24 +368,10 @@ $(pv_value) - false - - - - - - - Polygon - true - false - - Default - - 21 - 0 - 0 - + + 0.0 + true @@ -783,39 +382,53 @@ $(pv_value) $(P)$(H)displayBit4$(B) - - 1 - 0 - true - - - - - 37 + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polygon + 21 7 + 37 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 100.0 + + Default + + false + + + + 47 + true - 39872d87:13e14015f61:3f36 - 0.0 - - 47 - true + 0 + 0 Polygon - false - 255 - - true - true - true - @@ -823,23 +436,9 @@ $(pv_value) - false - - - - - - - Polygon - true - false - - Default - - 21 - 0 - 0 + + 0.0 @@ -851,39 +450,53 @@ $(pv_value) $(P)$(H)displayBit3$(B) - - 1 - 0 - true - - - - - 37 + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polygon + 21 37 + 37 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 100.0 + + Default + + false + + + + 47 + true - 39872d87:13e14015f61:3f37 - 0.0 - - 47 - true + 0 + 0 Polygon - false - 255 - - true - true - true - @@ -891,23 +504,9 @@ $(pv_value) - false - - - - - - - Polygon - true - false - - Default - - 21 - 0 - 0 + + 0.0 @@ -919,39 +518,53 @@ $(pv_value) $(P)$(H)displayBit1$(B) - - 1 - 0 - true - - - - - 37 + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polygon + 21 97 + 37 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 100.0 + + Default + + false + + + + 47 + true - 39872d87:13e14015f61:3f38 - 0.0 - - 47 - true + 0 + 0 Polygon - false - 255 - - true - true - true - @@ -959,23 +572,9 @@ $(pv_value) - false - - - - - - - Polygon - true - false - - Default - - 21 - 0 - 0 + + 0.0 @@ -987,39 +586,53 @@ $(pv_value) $(P)$(H)displayBit2$(B) - - 1 - 0 - true - - - - - 37 + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polygon + 21 67 + 37 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 0.0 + + Default + + false + + + + 46 + true - + - 39872d87:13e14015f61:3f39 - 0.0 - - 46 - true + 0 + 2 Polygon - false - 255 - - true - true - true - @@ -1027,23 +640,9 @@ $(pv_value) - true - - - - - - - Polygon - true - false - - Default - - 20 - 0 - 0 + + 0.0 @@ -1055,39 +654,53 @@ $(pv_value) $(P)$(H)displayBit1$(B) - - 1 - 2 - true - - - - - 38 + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polygon + 20 98 + 38 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 0.0 + + Default + + false + + + + 46 + true - + - 39872d87:13e14015f61:3f3a - 0.0 - - 46 - true + 0 + 2 Polygon - false - 255 - - true - true - true - @@ -1095,23 +708,9 @@ $(pv_value) - true - - - - - - - Polygon - true - false - - Default - - 20 - 0 - 0 + + 0.0 @@ -1123,39 +722,53 @@ $(pv_value) $(P)$(H)displayBit2$(B) - - 1 - 2 - true - - - - - 38 + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polygon + 20 68 + 38 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 0.0 + + Default + + false + + + + 47 + true - + - 39872d87:13e14015f61:3f3b - 0.0 - - 47 - true + 0 + 2 Polygon - false - 255 - - true - true - true - @@ -1163,23 +776,9 @@ $(pv_value) - true - - - - - - - Polygon - true - false - - Default - - 21 - 0 - 0 + + 0.0 @@ -1191,39 +790,53 @@ $(pv_value) $(P)$(H)displayBit3$(B) - - 1 - 2 - true - - - - - 37 + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polygon + 21 37 + 37 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 0.0 + + Default + + false + + + + 46 + true - + - 39872d87:13e14015f61:3f3c - 0.0 - - 46 - true + 0 + 2 Polygon - false - 255 - - true - true - true - @@ -1231,23 +844,9 @@ $(pv_value) - true - - - - - - - Polygon - true - false - - Default - - 20 - 0 - 0 + + 0.0 @@ -1259,17 +858,285 @@ $(pv_value) $(P)$(H)displayBit4$(B) - + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polygon + 20 + 8 + 38 + + + + false + + + + + + + 0 1 - 2 - true + true + + + + + + + 12 + 0 + Label + + + true + true + false + + + false + 1 + + true + 1 + true + Label + 10 + false + 105 + 80 + + + + false + + + + 0 + 1 + true + + + + + + + 12 + 0 + Label + + + true + true + false + + + false + 2 + + true + 1 + true + Label + 10 + false + 75 + 80 + + - 38 + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 0 + Label + + + true + true + false + + + false + 3 + + true + 1 + true + Label + 10 + false + 45 + 80 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 0 + Label + + + true + true + false + + + false + 4 + + true + 1 + true + Label + 10 + false + 15 + 80 + + + + + $(P)$(H)ftweak$(B).A + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 15 + + Action Button + 0 + $(P)$(H)ftweak$(B).A + + + + true + true + false + + + + + + false $(pv_name) $(pv_value) - 8 + true + Action Button + 20 + 65 + 90 + + + + + $(P)$(H)ftweak$(B).B + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 15 + + Action Button + 0 + $(P)$(H)ftweak$(B).B + + + + true + true + false + + + + - + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 45 + 90 - \ No newline at end of file + diff --git a/opticsApp/op/opi/pf4Bankconfig.opi b/opticsApp/op/opi/autoconvert/pf4Bankconfig.opi similarity index 62% rename from opticsApp/op/opi/pf4Bankconfig.opi rename to opticsApp/op/opi/autoconvert/pf4Bankconfig.opi index ce539ec..96ea57f 100644 --- a/opticsApp/op/opi/pf4Bankconfig.opi +++ b/opticsApp/op/opi/autoconvert/pf4Bankconfig.opi @@ -1,468 +1,426 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 445 true - 39872d87:13e14015f61:3f5f - 3.1.2.20120830 + pf4Bankconfig + + true + true + false true - 445 - pf4Bankconfig false - false - - - - - - Display - true 225 - - true - 5 - - false - -1 - -1 - - - 540 6 - - false - true - 100.0 - - - - 39872d87:13e14015f61:3f60 - - - - - 25 - true - Rectangle - false + 540 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 225 + false + + + + false + 25 + true + + + 0 - 0 - - - 1 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - - true - - true - 39872d87:13e14015f61:3f63 - false - - true - 130 - Linking Container + Rectangle + + + true true false - pf4Bank_bare.opi + + $(pv_name) +$(pv_value) + false + true + Rectangle + 225 + 0 + 0 + + + + + + + 0 + 1 + true + + Default + - Linking Container - true - - Default - - 125 - 3 - - 1 - - - - - 25 - - 50 - - + 130 true - true - 39872d87:13e14015f61:3f64 - false - - true - 249 Linking Container + pf4Bank_bare.opi + 2 + true true false - pf4Bankconfig_bare.opi + + + true + Linking Container + 125 + 50 + 25 + + + + + + + 0 + 1 + true + + Default + - Linking Container - true - - Default - - 225 - 3 - - 1 - - - - - 188 - - 0 - - + 249 true - true - 39872d87:13e14015f61:3f66 - - 20 - Grouping Container + Linking Container + pf4Bankconfig_bare.opi + 2 + true true false - true - false + + + true + Linking Container + 225 + 0 + 188 + + + + false - + - - - - Grouping Container - true - - Default - - 105 - 0 - - false - 1 - - 155 - - 60 - - false - true - false - 39872d87:13e14015f61:3f67 - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 50 - 6 - - - - 1 - - - - 0 - - - pf4Bankmore.opi - - true - - 1 - PF4 mono filter computed controls - - - $(pv_name) -$(pv_value) - 55 - - - false - true - false - 39872d87:13e14015f61:3f68 - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 55 - 6 - - - - 1 - - - - 0 - - - pf4Bank.opi - - true - - 1 - all - - - $(pv_name) -$(pv_value) - 0 - - - - true - 1 - 39872d87:13e14015f61:3f61 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true PF4 filter - - - - 220 - 0 - - 1 - - - - 1 - - 3 - true + true + 1 + true + Label + 220 + false 4 + 3 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:3f62 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 223 + 1 + 23 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 223 - 0 - 0 - - - 1 - 1 - true + false - - 23 - $(pv_name) -$(pv_value) - 1 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:3f65 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 223 + 1 + 176 + + + + + pf4Bankmore.opi + + true + + 0 + PF4 mono filter computed controls + + + false + false - + - - - - Polyline + false + + + + 0 + 1 true - false - Default + Default - 223 - 0 - 0 - + false + + + + 20 + + Action Button + 0 + - 1 - 1 - true + + + true + true + false + + + + more + false + $(pv_name) +$(pv_value) + true + Action Button + 50 + 115 + 155 + + + + + pf4Bank.opi + + true + + 0 + all + + + false + false + + + + false - - 176 + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + -config + false $(pv_name) $(pv_value) - 1 + true + Action Button + 55 + 60 + 155 - \ No newline at end of file + diff --git a/opticsApp/op/opi/pf4Bankconfig_bare.opi b/opticsApp/op/opi/autoconvert/pf4Bankconfig_bare.opi similarity index 74% rename from opticsApp/op/opi/pf4Bankconfig_bare.opi rename to opticsApp/op/opi/autoconvert/pf4Bankconfig_bare.opi index 0a42616..78f58fc 100644 --- a/opticsApp/op/opi/pf4Bankconfig_bare.opi +++ b/opticsApp/op/opi/autoconvert/pf4Bankconfig_bare.opi @@ -1,1820 +1,1870 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 250 true - 39872d87:13e14015f61:3f8e - 3.1.2.20120830 + pf4Bankconfig_bare + + true + true + false true - 250 - pf4Bankconfig_bare false - false - - - - - - Display - true 225 - - true - 5 - - false - -1 - -1 - - - 700 - 439 - - - true - - true - 39872d87:13e14015f61:3f98 - + 950 + 581 + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false 20 - Grouping Container + true + + + + 0 + 0 + Rectangle + + + + + + true + + + false + + $(P)$(H)bank$(B) + + true true false - true - false + + $(pv_name) +$(pv_value) + false + true + Rectangle + 66 + 77 + 65 + + + + false + 255 + true + false - + - - - - Grouping Container - true - - Default - - 66 - 0 - - false - 1 + + + + false - - 65 - - 77 - - false - true - 100.0 - - - - 39872d87:13e14015f61:3f99 - - - - - 20 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 66 - 0 - 0 - - - - true - - - false - - $(P)$(H)bank$(B) - - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:3f9a - - - - - 20 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 66 - 0 - 0 - - - - true - - - false - - $(P)$(H)bank$(B) - - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - - - true - 1 - B - - true - 39872d87:13e14015f61:3fa7 - false - - true - 22 - Linking Container + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 20 + true + + + + 0 + 0 + Rectangle + + + + + + true + + + false + + $(P)$(H)bank$(B) + + true true false - pf4_other_bare.opi + + $(pv_name) +$(pv_value) + false + true + Rectangle + 66 + 77 + 65 + + + + + + + 0 + 1 + true + + Default + - Linking Container - true - - Default - - 50 - 3 - - 1 - - - - - 165 - - 110 - - + 22 true - 2 + 1 B - true - 39872d87:13e14015f61:3fa8 - false - - true - 22 Linking Container + pf4_other_bare.opi + 2 + true true false - pf4_other_bare.opi + + + true + Linking Container + 50 + 110 + 165 + + + + + + + 0 + 1 + true + + Default + - Linking Container - true - - Default - - 50 - 3 - - 1 - - - - - 145 - - 110 - - + 22 true - 3 + 2 B - true - 39872d87:13e14015f61:3fa9 - false - - true - 22 Linking Container + pf4_other_bare.opi + 2 + true true false - pf4_other_bare.opi + + + true + Linking Container + 50 + 110 + 145 + + + + + + + 0 + 1 + true + + Default + - Linking Container - true - - Default - - 50 - 3 - - 1 - - - - - 125 - - 110 - - + 22 true - 4 + 3 B - true - 39872d87:13e14015f61:3faa - false - - true - 22 Linking Container + pf4_other_bare.opi + 2 + true true false - pf4_other_bare.opi - - - - - - - + + + true Linking Container - true - - Default - 50 - 3 - - 1 - - - - - 105 - 110 + 125 - - true - 1 - 39872d87:13e14015f61:3f8f + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Be B C Al Si Ti Cr Mn Fe Co Ni + + true + 1 + true + Label + 195 + false + 5 + 220 + + + + false - - - - Label - true - Be B C Al Si Ti Cr Mn Fe Co Ni - - - - 195 - 0 - - 1 - 0 - - 220 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:3f90 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true Choices for filter material - - - - 215 - 0 - - 1 - - - - 0 - - 190 - true + true + 1 + true + Label + 215 + false 10 + 190 - - false - true - 1 - false + + + false false - - 25 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 90 - 3 - - 1 + false + + + + 1 + 25 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3f91 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(H)E:local + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(H)E:local - - - - false - 0 - - - false - - - - 0 - - 26 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 90 108 + 26 - - true - 1 - 39872d87:13e14015f61:3f92 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + keV + + true + 1 + true + Label + 25 + false + 200 + 30 + + + + false - - - - Label - true - keV - - - - 25 - 0 - - 1 - 0 - - 30 - true - - 200 - - - true - 1 - 39872d87:13e14015f61:3f93 - false - + 0 + 1 + true + + + + + + 14 + 2 Label + true true false - true + false - - - - - - - Label - true using - - - - 40 - 0 - - 1 - - - - 1 - - 30 - true + true + 1 + true + Label + 40 + false 66 + 30 - - false - true - 39872d87:13e14015f61:3f94 - - 36 - Choice Button - false - - true - true - false - - $(P)$(H)useMono + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 55 - 0 - - - - - + false + + + + 36 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 7 + Choice Button + $(P)$(H)useMono + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 55 5 + 7 - - true - 1 - 39872d87:13e14015f61:3f95 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 2 Label + true true false - true + false - - - - - - - Label - true Energy - - - - 40 - 0 - - 1 - - - - 1 - - 1 - true + true + 1 + true + Label + 40 + false 66 + 1 - - true - true - 1 - false - 39872d87:13e14015f61:3f96 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 2 Text Update - false + 0 + true + $(P)$(H)displayEnergy + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)displayEnergy - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 90 - 0 - - - 1 - - - - 0 - - 0 false - $(pv_name) -$(pv_value) 108 + 0 - - true - 1 - 39872d87:13e14015f61:3f97 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + keV + + true + 1 + true + Label + 25 + false + 200 + 1 + + + + + $(P)$(H)bank$(B) + 0 + 10 + + + + + false + false - + - - - - Label + false + + + + 0 + 1 true - keV - + Default - 25 - 0 + false + + + + 20 + + Action Button + 0 + $(P)$(H)bank$(B) + - 1 - - - - 0 - - 1 - true - - 200 - - - false - true - 39872d87:13e14015f61:3f9b - - 20 - Action Button - false true true false - $(P)$(H)bank$(B) - - - - - - - Action Button - true + + off - false - - Default - - 30 - 0 - 0 - - - true - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 30 + 49 64 + + $(P)$(H)bank$(B) - 0 + 3 10 + - $(pv_name) -$(pv_value) - 49 - - + false + false + + + false - true - 39872d87:13e14015f61:3f9c - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(H)bank$(B) + + true true false - $(P)$(H)bank$(B) - - - - - - - Action Button - true + + on - false - - Default - - 30 - 0 - 0 - - - true - 1 - - - - 64 - - - $(P)$(H)bank$(B) - 3 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 30 22 + 64 - - true - true - 1 - false - 39872d87:13e14015f61:3f9d + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)$(H)bank$(B) + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)bank$(B) - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 1 - - 68 false - $(pv_name) -$(pv_value) 80 + 68 - - true - true - 1 - false - 39872d87:13e14015f61:3f9e + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)$(H)f4$(B).EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)f4$(B).EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 40 - 0 - - - 1 - - - - 1 - - 91 false - $(pv_name) -$(pv_value) 15 + 91 - - false - true + + true - 39872d87:13e14015f61:3f9f - - 20 - Menu Button - false - - true - true - false - - false - $(P)$(H)Z4$(B) + false + false - + - - - - Menu Button - true - false - - Default - - 54 - 6 - - - - 1 + false - 104 - - $(pv_name) -$(pv_value) - 55 - - - false - true - true - 39872d87:13e14015f61:3fa0 - + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + $(P)$(H)Z4$(B) + + true true false + + false + $(pv_name) +$(pv_value) false - $(P)$(H)Z3$(B) + true + Menu Button + 54 + 55 + 104 + + + + true + false + false - + - - - - Menu Button + false + + + + 6 + 1 true - false - Default + Default - 54 - 6 + false + + + + 20 - + Menu Button + $(P)$(H)Z3$(B) - 1 - - - - 124 - + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 54 55 + 124 - - false - true + + true - 39872d87:13e14015f61:3fa1 - + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + $(P)$(H)Z2$(B) + + true true false + + false + $(pv_name) +$(pv_value) false - $(P)$(H)Z2$(B) + true + Menu Button + 54 + 55 + 144 + + + + true + false + false - + - - - - Menu Button + false + + + + 6 + 1 true - false - Default + Default - 54 - 6 + false + + + + 20 - + Menu Button + $(P)$(H)Z1$(B) - 1 - - - - 144 - + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 54 55 + 164 - + + + false + false + false + + + false - true - true - 39872d87:13e14015f61:3fa2 - - 20 - Menu Button + + + + 3 + 1 + + true + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(H)f3$(B) + + false + 0.0 + true true false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - $(P)$(H)Z1$(B) + true + Text Input + 40 + 15 + 125 + + + + false + false + false - + - - - - Menu Button + false + + + + 3 + 1 + true - false - Default + - 54 - 6 - - + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(H)f4$(B) - 1 - - - - 164 - + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + $(pv_name) $(pv_value) - 55 - - - false + false true - 1 - false + Text Input + 40 + 15 + 105 + + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3fa3 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(H)f2$(B) + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(H)f3$(B) - - - - false - 0 - - - false - - - - 0 - - 125 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 15 + 145 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3fa4 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(H)f1$(B) + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(H)f4$(B) - - - - false - 0 - - - false - - - - 0 - - 105 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 15 + 165 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:3fa5 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(H)Other4B + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(H)f2$(B) - - - - false - 0 - - - false - - - - 0 - - 145 + false + true + false + false + + $(pv_name) $(pv_value) - 15 - - - false + false true - 1 - false + Text Input + 40 + 110 + 105 + + + false - - 20 - false - true - + - Text Input + + + + 0 + 1 true - - + - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3fa6 - 0.0 - Text Input + + + + 20 + 0 + Label + + + + true + + + false + + $(P)$(H)OtherLegal4B + + true true false - 1 - false - 0 - $(P)$(H)f1$(B) - - - - false - 0 - - - false + + false + X + + true + 1 + true + Label + 10 + false + 150 + 107 + + + + false + + + - 0 - - 165 - $(pv_name) -$(pv_value) - 15 - - - true - 1 - 39872d87:13e14015f61:3fab - false - + 0 + 1 + true + + + + + + 14 + 2 Label + true true false - true + false - - - - - - - Label - true debug - - - - 35 - 0 - - 1 - - - - 1 - - 78 - true + true + 1 + true + Label + 35 + false 182 + 78 - - false - true + + true - 39872d87:13e14015f61:3fac - + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + $(P)$(H)debug$(B) + + true true false + + false + $(pv_name) +$(pv_value) false - $(P)$(H)debug$(B) - - - - - - + true Menu Button - true - false - - Default - 40 - 6 - - - - 1 - - - - 93 - - $(pv_name) -$(pv_value) 179 + 93 - - true - 1 - 39872d87:13e14015f61:3fad + + false - + + + + + + + 0 + 1 + true + + + + + + 18 + 2 Label + true true false - true + false + 4 + + true + 1 + true + Label + 10 + false + 0 + 107 + + + + false - - - - Label - true - 4 - - - - 10 - 0 - - 1 - 1 - - 107 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:3fae - false - + 0 + 1 + true + + + + + + 18 + 2 Label + true true false - true + false + 3 + + true + 1 + true + Label + 10 + false + 0 + 127 + + + + false - - - - Label - true - 3 - - - - 10 - 0 - - 1 - 1 - - 127 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:3faf - false - + 0 + 1 + true + + + + + + 18 + 2 Label + true true false - true + false + 2 + + true + 1 + true + Label + 10 + false + 0 + 147 + + + + false - - - - Label - true - 2 - - - - 10 - 0 - - 1 - 1 - - 147 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:3fb0 - false - + 0 + 1 + true + + + + + + 18 + 2 Label + true true false - true + false - - - - - - - Label - true 1 - - - - 10 - 0 - - 1 - - - - 1 - - 167 - true + true + 1 + true + Label + 10 + false 0 + 167 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:3fb1 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 224 - 0 - 0 - - 1 - 1 - true - - - - - 56 - $(pv_name) -$(pv_value) - 1 - - - false - true - false - 39872d87:13e14015f61:3fb2 - - 16 - Menu Button - false + 0.0 + true true - false + true + + $(pv_name) +$(pv_value) false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - - 89 + true + Polyline + 224 + 1 + 56 + + pf4_otherHelp.opi true - 0 + 1 all + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + + + + + true + true + false + + + + mu + false $(pv_name) $(pv_value) + true + Action Button + 40 110 + 89 - - true - 1 - 39872d87:13e14015f61:3fb3 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + 'Other': + + true + 1 + true + Label + 215 + false + 10 + 205 + + + + false - - - - Label - true - 'Other': - - - - 215 - 0 - - 1 - 0 - - 205 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:3fb4 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true Cu Zn Ge Mo Ag Sn Ta W Pt Au Pb - - - - 220 - 0 - - 1 - - - - 0 - - 235 - true + true + 1 + true + Label + 220 + false 5 + 235 - \ No newline at end of file + diff --git a/opticsApp/op/opi/autoconvert/pf4Bankmore.opi b/opticsApp/op/opi/autoconvert/pf4Bankmore.opi new file mode 100644 index 0000000..ec32146 --- /dev/null +++ b/opticsApp/op/opi/autoconvert/pf4Bankmore.opi @@ -0,0 +1,2310 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 535 + + true + + pf4Bankmore + + + true + true + false + true + false + Display + 140 + 862 + 500 + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 25 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 140 + 0 + 0 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 346 + true + + + + 0 + 0 + Rectangle + + + + + + true + + + false + + $(P)$(H)fPos$(B) + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 6 + 185 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 346 + true + + + + 0 + 0 + Rectangle + + + + + + true + + + false + + $(P)$(H)fPos$(B) + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 6 + 185 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 346 + true + + + + 0 + 0 + Rectangle + + + + + + true + + + false + + $(P)$(H)bank$(B) + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 6 + 185 + + + + + + + + + + 0 + 1 + true + + Default + + + + + + 130 + + true + + Linking Container + pf4Bank_bare.opi + 2 + + + true + true + false + + + + true + Linking Container + 125 + 5 + 25 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 140 + 1 + 181 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + PF4 filter + + true + 1 + true + Label + 135 + false + 0 + 0 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 140 + 1 + 23 + + + + + pf4Bankconfig.opi + + true + + 0 + all + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + config + false + $(pv_name) +$(pv_value) + true + Action Button + 55 + 30 + 155 + + + + + pf4Bank.opi + + true + + 0 + PF4 mono filter computed controls + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + less + false + $(pv_name) +$(pv_value) + true + Action Button + 50 + 85 + 155 + + + + false + false + + + + false + true + + + + 0 + 1 + true + true + + Default + + false + + + + 336 + false + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 14 + 0 + Text Update + 0 + true + $(P)$(H)fPos$(B).THST + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 70 + false + 74 + 254 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 14 + 0 + Text Update + 0 + true + $(P)$(H)fPos$(B).TWST + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 70 + false + 74 + 233 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 14 + 0 + Text Update + 0 + true + $(P)$(H)fPos$(B).ONST + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 70 + false + 74 + 212 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 14 + 0 + Text Update + 0 + true + $(P)$(H)fPos$(B).ZRST + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 70 + false + 74 + 191 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 14 + 0 + Text Update + 0 + true + $(P)$(H)fPos$(B).FRST + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 70 + false + 74 + 276 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 14 + 0 + Text Update + 0 + true + $(P)$(H)fPos$(B).FVST + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 70 + false + 74 + 297 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 14 + 0 + Text Update + 0 + true + $(P)$(H)fPos$(B).SXST + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 70 + false + 74 + 318 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 14 + 0 + Text Update + 0 + true + $(P)$(H)fPos$(B).SVST + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 70 + false + 74 + 339 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 14 + 0 + Text Update + 0 + true + $(P)$(H)fPos$(B).EIST + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 70 + false + 74 + 360 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 14 + 0 + Text Update + 0 + true + $(P)$(H)fPos$(B).NIST + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 70 + false + 74 + 381 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 14 + 0 + Text Update + 0 + true + $(P)$(H)fPos$(B).TEST + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 70 + false + 74 + 402 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 14 + 0 + Text Update + 0 + true + $(P)$(H)fPos$(B).ELST + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 70 + false + 74 + 423 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 14 + 0 + Text Update + 0 + true + $(P)$(H)fPos$(B).TVST + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 70 + false + 74 + 444 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 14 + 0 + Text Update + 0 + true + $(P)$(H)fPos$(B).TTST + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 70 + false + 74 + 465 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 14 + 0 + Text Update + 0 + true + $(P)$(H)fPos$(B).FTST + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 70 + false + 74 + 486 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 + 14 + 0 + Text Update + 0 + true + $(P)$(H)fPos$(B).FFST + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 70 + false + 74 + 507 + + + + + $(P)$(H)fPos$(B) + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(H)fPos$(B) + + + + true + true + false + + + + B 0 + true + $(pv_name) +$(pv_value) + true + Action Button + 40 + 24 + 191 + + + + + $(P)$(H)fPos$(B) + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(H)fPos$(B) + + + + true + true + false + + + + B 1 + true + $(pv_name) +$(pv_value) + true + Action Button + 40 + 24 + 212 + + + + + $(P)$(H)fPos$(B) + 2 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(H)fPos$(B) + + + + true + true + false + + + + B 2 + true + $(pv_name) +$(pv_value) + true + Action Button + 40 + 24 + 233 + + + + + $(P)$(H)fPos$(B) + 3 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(H)fPos$(B) + + + + true + true + false + + + + B 3 + true + $(pv_name) +$(pv_value) + true + Action Button + 40 + 24 + 254 + + + + + $(P)$(H)fPos$(B) + 4 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(H)fPos$(B) + + + + true + true + false + + + + B 4 + true + $(pv_name) +$(pv_value) + true + Action Button + 40 + 24 + 276 + + + + + $(P)$(H)fPos$(B) + 5 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(H)fPos$(B) + + + + true + true + false + + + + B 5 + true + $(pv_name) +$(pv_value) + true + Action Button + 40 + 24 + 297 + + + + + $(P)$(H)fPos$(B) + 6 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(H)fPos$(B) + + + + true + true + false + + + + B 6 + true + $(pv_name) +$(pv_value) + true + Action Button + 40 + 24 + 318 + + + + + $(P)$(H)fPos$(B) + 7 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(H)fPos$(B) + + + + true + true + false + + + + B 7 + true + $(pv_name) +$(pv_value) + true + Action Button + 40 + 24 + 339 + + + + + $(P)$(H)fPos$(B) + 8 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(H)fPos$(B) + + + + true + true + false + + + + B 8 + true + $(pv_name) +$(pv_value) + true + Action Button + 40 + 24 + 360 + + + + + $(P)$(H)fPos$(B) + 9 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(H)fPos$(B) + + + + true + true + false + + + + B 9 + true + $(pv_name) +$(pv_value) + true + Action Button + 40 + 24 + 381 + + + + + $(P)$(H)fPos$(B) + 10 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(H)fPos$(B) + + + + true + true + false + + + + B 10 + true + $(pv_name) +$(pv_value) + true + Action Button + 40 + 24 + 402 + + + + + $(P)$(H)fPos$(B) + 11 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(H)fPos$(B) + + + + true + true + false + + + + B 11 + true + $(pv_name) +$(pv_value) + true + Action Button + 40 + 24 + 423 + + + + + $(P)$(H)fPos$(B) + 12 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(H)fPos$(B) + + + + true + true + false + + + + B 12 + true + $(pv_name) +$(pv_value) + true + Action Button + 40 + 24 + 444 + + + + + $(P)$(H)fPos$(B) + 13 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(H)fPos$(B) + + + + true + true + false + + + + B 13 + true + $(pv_name) +$(pv_value) + true + Action Button + 40 + 24 + 465 + + + + + $(P)$(H)fPos$(B) + 14 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(H)fPos$(B) + + + + true + true + false + + + + B 14 + true + $(pv_name) +$(pv_value) + true + Action Button + 40 + 24 + 486 + + + + + $(P)$(H)fPos$(B) + 15 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(H)fPos$(B) + + + + true + true + false + + + + B 15 + true + $(pv_name) +$(pv_value) + true + Action Button + 40 + 24 + 507 + + diff --git a/opticsApp/op/opi/pf4_bare.opi b/opticsApp/op/opi/autoconvert/pf4_bare.opi similarity index 64% rename from opticsApp/op/opi/pf4_bare.opi rename to opticsApp/op/opi/autoconvert/pf4_bare.opi index 5466432..f5186ee 100644 --- a/opticsApp/op/opi/pf4_bare.opi +++ b/opticsApp/op/opi/autoconvert/pf4_bare.opi @@ -1,1625 +1,838 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 190 true - 39872d87:13e14015f61:405a - 3.1.2.20120830 + pf4_bare + + true + true + false true - 190 - pf4_bare false - false - - - - - - Display - true 320 - - true - 5 - - false - -1 - -1 - - - 570 1033 - - false - true - 0.0 - - - - 39872d87:13e14015f61:405b - - - - - 90 - true - Rectangle - false + 570 + + + false 255 - - true - true - false - - true - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 125 - 0 - 0 - - - 1 - 2 - true - - - - - 19 - $(pv_name) -$(pv_value) - 19 + false + + + false - - - false - true - 0.0 + 90 + true - + - 39872d87:13e14015f61:405f - - - - - 90 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 125 + 19 + 19 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 125 + false + + + + false + 90 + true + + + 0 - 0 - - - 1 2 - true - - - - - 19 - $(pv_name) -$(pv_value) - 170 - false - - - - true - - true - 39872d87:13e14015f61:4073 - - 12 - Grouping Container + Rectangle + + + true true false + + $(pv_name) +$(pv_value) true - false + true + Rectangle + 125 + 170 + 19 + + + + false - + - - - - Grouping Container + + + + 0 + 1 true - Default + - 100 - 0 + + + + 10 + 0 + Label - false - 1 - - - - - 80 - - 34 - - true - 1 - 39872d87:13e14015f61:4074 - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - 1 - - - - 10 - 0 - - 1 - - - - 0 - - 0 - true - - 90 - - - true - 1 - 39872d87:13e14015f61:4075 - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - 2 - - - - 10 - 0 - - 1 - - - - 0 - - 0 - true - - 60 - - - true - 1 - 39872d87:13e14015f61:4076 - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - 3 - - - - 10 - 0 - - 1 - - - - 0 - - 0 - true - - 30 - - - true - 1 - 39872d87:13e14015f61:4077 - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - 4 - - - - 10 - 0 - - 1 - - - - 0 - - 0 - true - - 0 - - - - - true - - true - 39872d87:13e14015f61:4080 - - 12 - Grouping Container true true false - true + false + BEAM + + true + 1 + true + Label + 30 + false + 259 + 22 + + + + false - + - - - - Grouping Container + + + + 0 + 1 true - Default + - 100 - 0 + + + + 20 + 1 + Label - false - 1 - - - - - 80 - - 185 - - true - 1 - 39872d87:13e14015f61:4081 - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - 1 - - - - 10 - 0 - - 1 - - - - 0 - - 0 - true - - 90 - - - true - 1 - 39872d87:13e14015f61:4082 - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - 2 - - - - 10 - 0 - - 1 - - - - 0 - - 0 - true - - 60 - - - true - 1 - 39872d87:13e14015f61:4083 - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - 3 - - - - 10 - 0 - - 1 - - - - 0 - - 0 - true - - 30 - - - true - 1 - 39872d87:13e14015f61:4084 - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - 4 - - - - 10 - 0 - - 1 - - - - 0 - - 0 - true - - 0 - - - - - true - - true - 39872d87:13e14015f61:4085 - - 15 - Grouping Container true true false - true + false + Bank A + + true + 1 + true + Label + 100 + false + 180 + 0 + + + + false - + - - - - Grouping Container - true - - Default - - 40 - 0 - - - - true - - - false - - $(P)$(H)bank$(A) - - - false - 1 - - 90 - - 215 - - - true - - true - 39872d87:13e14015f61:4086 - - 15 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 40 - 0 - - false - 1 - - - - - 0 - - 0 - - false - true - 39872d87:13e14015f61:4087 - - 15 - Action Button - false - - true - true - false - - $(P)$(H)ftweak$(A).A - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)$(H)ftweak$(A).A - 1 - 10 - - - - $(pv_name) -$(pv_value) - 20 - - - false - true - 39872d87:13e14015f61:4088 - - 15 - Action Button - false - - true - true - false - - $(P)$(H)ftweak$(A).B - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)$(H)ftweak$(A).B - 1 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - - - - true - - true - 39872d87:13e14015f61:4089 - - 15 - Grouping Container + 0 + 1 + true + + + + + + + 20 + 1 + Label + true true false - true + false + Bank B + + true + 1 + true + Label + 100 + false + 25 + 0 + + + + false + false + false - + - - - - Grouping Container - true - - Default - - 40 - 0 - - - - true - - - false - - $(P)$(H)bank$(B) - - - false - 1 + true - - 90 - - 62 - - - true - - true - 39872d87:13e14015f61:408a - - 15 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 40 - 0 - - false - 1 - - - - - 0 - - 0 - - false - true - 39872d87:13e14015f61:408b - - 15 - Action Button - false - - true - true - false - - $(P)$(H)ftweak$(B).A - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)$(H)ftweak$(B).A - 1 - 10 - - - - $(pv_name) -$(pv_value) - 20 - - - false - true - 39872d87:13e14015f61:408c - - 15 - Action Button - false - - true - true - false - - $(P)$(H)ftweak$(B).B - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)$(H)ftweak$(B).B - 1 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - - - true - 1 - 39872d87:13e14015f61:405c - false - - 10 - Label + 0 + 1 + true + + + + false + + + + 2 + 20 + 1 + Text Update + 0 + true + $(P)$(H)trans$(A) + + 0.0 + true true false - true - false + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 125 + false + 170 + 111 + + + + false + false + false - + - - - - Label - true - BEAM - - - - 30 - 0 - - 1 + true - 0 - - 22 - true - - 259 - - - true - 1 - 39872d87:13e14015f61:405d - false - + 0 + 1 + true + + + + false + + + + 2 20 - Label + 1 + Text Update + 0 + true + $(P)$(H)trans$(B) + + 0.0 + true true false - true - false + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 125 + false + 19 + 111 + + + + false + false + false - + - - - - Label + true + + + + 0 + 1 true - Bank A - + - 100 - 0 + false + + + + 1 + 12 + 2 + Text Update + 0 + true + $(P)$(H)filterAl + + 0.0 - 1 - - - - 1 - - 0 - true - - 180 - - - true - 1 - 39872d87:13e14015f61:405e - false - - 20 - Label true true false - true - false - - - - - - - Label - true - Bank B - - - - 100 - 0 - - 1 - - - - 1 - - 0 - true - - 25 - - - true - true - 1 - false - 39872d87:13e14015f61:4060 - false - 0.0 - 20 - Text Update - false - - true - true - false - - 2 - true - false - $(P)$(H)trans$(A) - - - - - - - Text Update - true + false ###### - false - 0 - - - - 125 - 0 - - - 1 - - - - 1 - - 111 - false $(pv_name) $(pv_value) - 170 - - - true - true - 1 - false - 39872d87:13e14015f61:4061 - false - 0.0 - - 20 - Text Update - false - - true - true - false - - 2 - true false - $(P)$(H)trans$(B) - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - - 125 - 0 - - - 1 - - - - 1 - - 111 + 30 false - $(pv_name) -$(pv_value) - 19 + 12 + 170 - - true - true - 1 - false - 39872d87:13e14015f61:4062 + + false - 0.0 - - 12 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(H)filterAl - + - - - - Text Update - true - ###### - false - 0 - - - - 30 - 0 - - - 1 - 0 - - 170 - false - $(pv_name) -$(pv_value) - 12 - - - true - 1 - 39872d87:13e14015f61:4063 - false - + 0 + 1 + true + + + + + + 12 + 0 Label + true true false - true + false + mm Al + + true + 1 + true + Label + 50 + false + 44 + 170 + + + + false - - - - Label - true - mm Al - - - - 50 - 0 - - 1 - 0 - - 170 - true - - 44 - - - true - 1 - 39872d87:13e14015f61:4064 - false - + 0 + 1 + true + + + + + + 12 + 0 Label + true true false - true + false - - - - - - - Label - true mm Ti - - - - 50 - 0 - - 1 - - - - 0 - - 170 - true + true + 1 + true + Label + 50 + false 123 + 170 - - true - true - 1 - false - 39872d87:13e14015f61:4065 + + + false false - 0.0 - - 12 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(H)filterTi + false - + - - - - Text Update + true + + + + 0 + 1 true - ###### - false - 0 - + - 30 - 0 - + false + + + + 1 + 12 + 2 + Text Update + 0 + true + $(P)$(H)filterTi - 1 - - - - 0 - - 170 - false + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 30 + false 91 + 170 - - true - true - 1 - false - 39872d87:13e14015f61:4066 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 20 + 1 Text Update - false + 0 + true + $(P)$(H)trans + + 0.0 + true true false - 2 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)trans - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 125 - 0 - - - 1 - - - - 1 - - 137 false - $(pv_name) -$(pv_value) 99 + 137 - - true - 1 - 39872d87:13e14015f61:4067 + + false - + + + + + + + 0 + 1 + true + + + + + + 12 + 0 Label + true true false - true + false - - - - - - - Label - true mm Glass - - - - 50 - 0 - - 1 - - - - 0 - - 170 - true + true + 1 + true + Label + 50 + false 205 + 170 - - true - true - 1 - false - 39872d87:13e14015f61:4068 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 2 Text Update - false + 0 + true + $(P)$(H)filterGlass + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)filterGlass - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 30 - 0 - - - 1 - - - - 0 - - 170 false - $(pv_name) -$(pv_value) 173 + 170 - - false - true + + + false + 255 + true 20 - true - 100.0 - 39872d87:13e14015f61:4069 - 0.0 - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - + false - - - - Polyline - true - false - - Default - - 272 - 0 - 0 - - - 1 - 1 - true + false - - 33 - $(pv_name) -$(pv_value) - 28 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:406a - 0.0 - - 0 - 12 - true - Polyline + + Default + false - 255 + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 272 + 28 + 33 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 12 + false + + + + 12 + true 0 - 0 - - - 1 1 - true - - - - - 27 + Polyline + + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 12 24 + 27 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 100.0 + + Default + + false + + + + 47 + true - 39872d87:13e14015f61:406b - 0.0 - - 47 - true + 0 + 0 Polygon - false - 255 - - true - true - true - @@ -1627,23 +840,9 @@ $(pv_value) - false - - - - - - - Polygon - true - false - - Default - - 21 - 0 - 0 + + 0.0 @@ -1655,39 +854,53 @@ $(pv_value) $(P)$(H)displayBit4$(B) - - 1 - 0 - true - - - - - 37 + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polygon + 21 26 + 37 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 100.0 + + Default + + false + + + + 47 + true - 39872d87:13e14015f61:406c - 0.0 - - 47 - true + 0 + 0 Polygon - false - 255 - - true - true - true - @@ -1695,23 +908,9 @@ $(pv_value) - false - - - - - - - Polygon - true - false - - Default - - 21 - 0 - 0 + + 0.0 @@ -1723,39 +922,53 @@ $(pv_value) $(P)$(H)displayBit3$(B) - - 1 - 0 - true - - - - - 37 + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polygon + 21 56 + 37 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 100.0 + + Default + + false + + + + 47 + true - 39872d87:13e14015f61:406d - 0.0 - - 47 - true + 0 + 0 Polygon - false - 255 - - true - true - true - @@ -1763,23 +976,9 @@ $(pv_value) - false - - - - - - - Polygon - true - false - - Default - - 21 - 0 - 0 + + 0.0 @@ -1791,39 +990,53 @@ $(pv_value) $(P)$(H)displayBit2$(B) - - 1 - 0 - true - - - - - 37 + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polygon + 21 86 + 37 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 100.0 + + Default + + false + + + + 47 + true - 39872d87:13e14015f61:406e - 0.0 - - 47 - true + 0 + 0 Polygon - false - 255 - - true - true - true - @@ -1831,23 +1044,9 @@ $(pv_value) - false - - - - - - - Polygon - true - false - - Default - - 21 - 0 - 0 + + 0.0 @@ -1859,39 +1058,53 @@ $(pv_value) $(P)$(H)displayBit1$(B) - - 1 - 0 - true - - - - - 37 + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polygon + 21 116 + 37 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 0.0 + + Default + + false + + + + 46 + true - + - 39872d87:13e14015f61:406f - 0.0 - - 46 - true + 0 + 2 Polygon - false - 255 - - true - true - true - @@ -1899,23 +1112,9 @@ $(pv_value) - true - - - - - - - Polygon - true - false - - Default - - 20 - 0 - 0 + + 0.0 @@ -1927,39 +1126,53 @@ $(pv_value) $(P)$(H)displayBit1$(B) - - 1 - 2 - true - - - - - 38 + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polygon + 20 117 + 38 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 0.0 + + Default + + false + + + + 46 + true - + - 39872d87:13e14015f61:4070 - 0.0 - - 46 - true + 0 + 2 Polygon - false - 255 - - true - true - true - @@ -1967,23 +1180,9 @@ $(pv_value) - true - - - - - - - Polygon - true - false - - Default - - 20 - 0 - 0 + + 0.0 @@ -1995,39 +1194,53 @@ $(pv_value) $(P)$(H)displayBit2$(B) - - 1 - 2 - true - - - - - 38 + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polygon + 20 87 + 38 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 0.0 + + Default + + false + + + + 46 + true - + - 39872d87:13e14015f61:4071 - 0.0 - - 46 - true + 0 + 2 Polygon - false - 255 - - true - true - true - @@ -2035,23 +1248,9 @@ $(pv_value) - true - - - - - - - Polygon - true - false - - Default - - 20 - 0 - 0 + + 0.0 @@ -2063,39 +1262,53 @@ $(pv_value) $(P)$(H)displayBit3$(B) - - 1 - 2 - true - - - - - 38 + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polygon + 20 57 + 38 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 0.0 + + Default + + false + + + + 46 + true - + - 39872d87:13e14015f61:4072 - 0.0 - - 46 - true + 0 + 2 Polygon - false - 255 - - true - true - true - @@ -2103,23 +1316,9 @@ $(pv_value) - true - - - - - - - Polygon - true - false - - Default - - 20 - 0 - 0 + + 0.0 @@ -2131,131 +1330,223 @@ $(pv_value) $(P)$(H)displayBit4$(B) - - 1 - 2 - true - - - - - 38 - $(pv_name) -$(pv_value) - 27 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4078 - 0.0 - - 47 - true - Polygon - false - 255 true true true - - - - - - - - false - + + $(pv_name) +$(pv_value) + true + true + Polygon + 20 + 27 + 38 + + + + false - + - - - - Polygon - true - false - - Default - - 21 - 0 - 0 - - - - true - - - false - - $(P)$(H)displayBit4$(A) - - - - 1 - 0 - true - - 37 - $(pv_name) -$(pv_value) - 177 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4079 - 0.0 - - 47 - true - Polygon - false - 255 + 0 + 1 + true + + + + + + + 12 + 0 + Label + true true - true + false - - - - - - - - false - + + false + 1 + + true + 1 + true + Label + 10 + false + 124 + 80 + + + + false - + + + + + 0 + 1 + true + + + - + - Polygon + 12 + 0 + Label + + + true + true + false + + + false + 2 + + true + 1 + true + Label + 10 + false + 94 + 80 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 0 + Label + + + true + true + false + + + false + 3 + + true + 1 + true + Label + 10 + false + 64 + 80 + + + + false + + + + + + + 0 + 1 true + + + + + + + 12 + 0 + Label + + + true + true + false + + + false + 4 + + true + 1 + true + Label + 10 + false + 34 + 80 + + + + false + 255 + true false + + + + false + + + + 0 + 1 + true + 100.0 - Default + Default - 21 + false + + + + 47 + true + + + 0 - 0 + 0 + Polygon + + + + + + + + + + 0.0 @@ -2264,66 +1555,66 @@ $(pv_value) false - $(P)$(H)displayBit3$(A) + $(P)$(H)displayBit4$(A) - - 1 - 0 - true - - - - - 37 - $(pv_name) -$(pv_value) - 207 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:407a - 0.0 - - 47 - true - Polygon - false - 255 true true true - - - - - - - + + $(pv_name) +$(pv_value) false - + true + Polygon + 21 + 177 + 37 + + + + false + 255 + true + false - - - - Polygon + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 21 + false + + + + 47 + true + + + 0 - 0 + 0 + Polygon + + + + + + + + + + 0.0 @@ -2332,66 +1623,134 @@ $(pv_value) false - $(P)$(H)displayBit1$(A) + $(P)$(H)displayBit3$(A) - - 1 - 0 - true - - - - - 37 + + true + true + true + + $(pv_name) $(pv_value) - 267 - - - false + false true + Polygon + 21 + 207 + 37 + + + + false + 255 + true + false + + + + false + + + + 0 + 1 + true 100.0 + + Default + + false + + + + 47 + true - 39872d87:13e14015f61:407b - 0.0 - - 47 - true + 0 + 0 Polygon - false - 255 + + + + + + + + + + 0.0 + + + + true + + + false + + $(P)$(H)displayBit1$(A) + + true true true - - - - - - - + + $(pv_name) +$(pv_value) false - + true + Polygon + 21 + 267 + 37 + + + + false + 255 + true + false - - - - Polygon + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 21 + false + + + + 47 + true + + + 0 - 0 + 0 + Polygon + + + + + + + + + + 0.0 @@ -2403,39 +1762,53 @@ $(pv_value) $(P)$(H)displayBit2$(A) - - 1 - 0 - true - - - - - 37 + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polygon + 21 237 + 37 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 0.0 + + Default + + false + + + + 46 + true - + - 39872d87:13e14015f61:407c - 0.0 - - 46 - true + 0 + 2 Polygon - false - 255 - - true - true - true - @@ -2443,23 +1816,9 @@ $(pv_value) - true - - - - - - - Polygon - true - false - - Default - - 20 - 0 - 0 + + 0.0 @@ -2471,39 +1830,53 @@ $(pv_value) $(P)$(H)displayBit1$(A) - - 1 - 2 - true - - - - - 38 + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polygon + 20 268 + 38 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 0.0 + + Default + + false + + + + 46 + true - + - 39872d87:13e14015f61:407d - 0.0 - - 46 - true + 0 + 2 Polygon - false - 255 - - true - true - true - @@ -2511,23 +1884,9 @@ $(pv_value) - true - - - - - - - Polygon - true - false - - Default - - 20 - 0 - 0 + + 0.0 @@ -2539,39 +1898,53 @@ $(pv_value) $(P)$(H)displayBit2$(A) - - 1 - 2 - true - - - - - 38 + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polygon + 20 238 + 38 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 0.0 + + Default + + false + + + + 47 + true - + - 39872d87:13e14015f61:407e - 0.0 - - 47 - true + 0 + 2 Polygon - false - 255 - - true - true - true - @@ -2579,23 +1952,9 @@ $(pv_value) - true - - - - - - - Polygon - true - false - - Default - - 21 - 0 - 0 + + 0.0 @@ -2607,39 +1966,53 @@ $(pv_value) $(P)$(H)displayBit3$(A) - - 1 - 2 - true - - - - - 37 + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polygon + 21 207 + 37 - + + + false + 255 + true + false + + + false - true + + + + 0 + 1 + true 0.0 + + Default + + false + + + + 46 + true - + - 39872d87:13e14015f61:407f - 0.0 - - 46 - true + 0 + 2 Polygon - false - 255 - - true - true - true - @@ -2647,23 +2020,9 @@ $(pv_value) - true - - - - - - - Polygon - true - false - - Default - - 20 - 0 - 0 + + 0.0 @@ -2675,17 +2034,391 @@ $(pv_value) $(P)$(H)displayBit4$(A) - + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polygon + 20 + 178 + 38 + + + + false + + + + + + + 0 1 - 2 - true + true + + + + + + + 12 + 0 + Label + + + true + true + false + + + false + 1 + + true + 1 + true + Label + 10 + false + 275 + 80 + + + + false + + + + 0 + 1 + true + + + + + + + 12 + 0 + Label + + + true + true + false + + + false + 2 + + true + 1 + true + Label + 10 + false + 245 + 80 + + - 38 + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 0 + Label + + + true + true + false + + + false + 3 + + true + 1 + true + Label + 10 + false + 215 + 80 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 0 + Label + + + true + true + false + + + false + 4 + + true + 1 + true + Label + 10 + false + 185 + 80 + + + + + $(P)$(H)ftweak$(A).A + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 15 + + Action Button + 0 + $(P)$(H)ftweak$(A).A + + + + true + true + false + + + + + + false $(pv_name) $(pv_value) - 178 + true + Action Button + 20 + 235 + 90 + + + + + $(P)$(H)ftweak$(A).B + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 15 + + Action Button + 0 + $(P)$(H)ftweak$(A).B + + + + true + true + false + + + + - + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 215 + 90 + + + + + $(P)$(H)ftweak$(B).A + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 15 + + Action Button + 0 + $(P)$(H)ftweak$(B).A + + + + true + true + false + + + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 82 + 90 + + + + + $(P)$(H)ftweak$(B).B + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 15 + + Action Button + 0 + $(P)$(H)ftweak$(B).B + + + + true + true + false + + + + - + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 62 + 90 - \ No newline at end of file + diff --git a/opticsApp/op/opi/pf4_otherHelp.opi b/opticsApp/op/opi/autoconvert/pf4_otherHelp.opi similarity index 92% rename from opticsApp/op/opi/pf4_otherHelp.opi rename to opticsApp/op/opi/autoconvert/pf4_otherHelp.opi index 6bae3ec..ca73660 100644 --- a/opticsApp/op/opi/pf4_otherHelp.opi +++ b/opticsApp/op/opi/autoconvert/pf4_otherHelp.opi @@ -1,863 +1,863 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 313 true - 39872d87:13e14015f61:40c1 - 3.1.2.20120830 + pf4_otherHelp + + true + true + false true - 313 - pf4_otherHelp false - false - - - - - - Display - true 400 - - true - 5 - - false - -1 - -1 - - - 324 1110 - - false - true - 1 - false + 324 + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:40c2 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(H)OtherShow + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(H)OtherShow - - - - false - 0 - - - false - - - - 0 - - 28 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 10 + 28 - - true - true - - 100 - 0 - 0 - 100 - 1 - 0 - true - - - - - 0 - 100 - 0 + + + false true - 0 - 0.0 - - true - - 100 - 100 - 0 - 100 - 0 - 4 - 1 - 0 - 0 - 0 - 100 - 1 - true - - true - - true - false - true - - 1 + 0.0 + + + + Energy (keV) + true + + + false - 0 - 4 - $(trace_19_y_pv) - true - true - 0 - 1 - 0 - 0 - 1 - 0 - $(trace_1_y_pv) - $(trace_17_y_pv) - true + 100.0 + 0.0 + + Default + + + true + 0 + + Default Bold + + true + true + 0.0 + + + + Mu total + true + + + + false + 100.0 + 0.0 + + Default + + + true + 0 + + Default Bold + + true + true + 0.0 + + + + Secondary Axis (2) + true - 0 + true + false + 100.0 0.0 - 1 - 4 - - true - 0 - 0 - true - 0 - 1 - - - - 73 - 0 - 12 + + Default + + + true + 0 + + Default Bold + + true + true + true + 0.0 - true - - - true - - - 224 - 100.0 - $(trace_10_y_pv) - - - - - $(trace_9_y_pv) - 100 - 0 - 0 - true - 1 - - - - - - 100 - - - + Secondary Axis (3) + true + + + + true + false + 100.0 + 0.0 + + Default + + + true + 0 + + Default Bold + + true + true + 2 + false + + + + true + + + + 0 1 - true - 0 - true - $(trace_3_y_pv) - 0 - - - - - 0 - 0 - - 100 + true + false + + + + 224 XY Graph - 0 - 0.0 - true - 100 - - 1 - true - 1 - 0 - 0 - 0 - - true + + + + + + + + true + true + false + + + true + false true - - 100 - 100 - 0 - true - 0 - $(trace_15_y_pv) - - - - 0 - 100 - true - 1 - - 1 - 0 - 1 - 0.0 - 0 - 0 + Mass attenuation coefficient (cm^2/g) vs. energy (keV) + + Default Bold + + $(trace_0_y_pv) +$(trace_0_y_pv_value) + true + 0 + false + 1 $(trace_0_y_pv) - true - 0.0 - - 1 - 4 - 100.0 + 0 + 4 + 0 + + + + 0 + 100 0 - true - true - 1 + true + 0 + $(P)$(H)E + + 1 + $(P)$(H)T + + true + 100 + true + 1 + $(trace_10_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 + + + 1 - - 100 - Energy (keV) - 1 + + true + 100 + true + 1 + $(trace_11_y_pv) + 0 + 4 + 0 - $(trace_14_y_pv) - 39872d87:13e14015f61:40c3 - 100 - - - - - - - 4 - 0 - - - - 0 - 0 - false - Mu total - true - - 1 - - 0 - true - 0 - 100.0 - 100 - true - 4 - 100 - 0 - $(trace_16_y_pv) - - Default - - 1 - 0 - true + 0 + 100 + 0 + true + 0 + + + 1 + + + true + 100 + true + 1 $(trace_12_y_pv) - 4 0 - 0 - 1 + 4 + 0 + + + + 0 + 100 0 - 0 - 0 - - 0 - $(trace_8_y_pv) - 0 - - - 0 - - true - true - - - - - - 0 - true - - true - $(trace_5_y_pv) - true - 100 - 1 - 0 - 0 - false - - 1 - 0 - - - 0 - - 1 - 0.0 - - 100 - - $(trace_13_y_pv) - - true - 0 - 100.0 - 0 - - - - - - - - - 100 - true - 100 - 0 + true + 0 + + + 1 + + true - true - true - true - 0 - 0 - true + 100 + true + 1 + $(trace_13_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 + + + 1 + + + true + 100 + true + 1 + $(trace_14_y_pv) 0 - 0 - - - 4 + 4 + 0 - false - 0 - 0 - - + 0 + 100 + 0 + true + 0 + + 1 - true - - $(trace_4_y_pv) + + + true + 100 + true 1 - true - true - 100 - 0 - 0 - $(P)$(H)E - 100 - 0 - true - 1 - $(P)$(H)T - $(trace_18_y_pv) - - true - - 4 - - 4 - - 0 - - - - 100 - - 0 - true - 0 - 100 - 1 - 4 - true - 100 - 1 - 0 - 0 - - - - true - - true - false - - - - Secondary Axis (2) - + $(trace_15_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 true - 0 - XY Graph - true - 381 - 100 - 0 - - - - 1 - 0 - 100 - 100 - - 0 - - - - 0 + 0 + + 1 - 100 - - - - 2 - $(trace_2_y_pv) - true - 4 - true - false - true - 0 - true - true - - 100 - - 0 - 0 - true - 100 + + + true + 100 + true + 1 + $(trace_16_y_pv) + 0 + 4 + 0 - 0 - 1 - 4 - - 0 - $(trace_0_y_pv) -$(trace_0_y_pv_value) - $(trace_11_y_pv) - true - - - - - 4 - 0 - 100 - $(trace_6_y_pv) - 4 - 0 - 1 - true - 0 - 1 - true - - Default - - 0 - 0 - 1 - 0 - - - - true - 0 - - Default - - 4 - - 0 - true - 0 - Mass attenuation coefficient (cm^2/g) vs. energy (keV) - Secondary Axis (3) - false - true - 0 - 100 - - - true + 0 + 100 + 0 + true + 0 + + + 1 + + + true + 100 + true + 1 + $(trace_17_y_pv) 0 - - 0.0 - - - - 0 - 4 - - true - 1 - - Default - - true - - - 0.0 - + 4 + 0 + - - - - - + + 0 + 100 + 0 + true + 0 + + + 1 + + + true + 100 + true + 1 + $(trace_18_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 + + + 1 + + + true + 100 + true + 1 + $(trace_19_y_pv) + 0 + 4 + 0 + - - - 100 - 4 - true - 100 - true - 1 - true - - true - true - - 0 - - - - 0 - 1 - - - - - - - true - 100 + + 0 + 100 + 0 + true + 0 + + + 1 + + + true + 100 + true + 1 + $(trace_1_y_pv) + 0 + 4 + 0 + 0 + 100 + 0 + true + 0 + + + 1 + + + true + 100 + true + 1 + $(trace_2_y_pv) + 0 + 4 + 0 - - 4 - - - - true - 0 - - - - - - - 1 - - 0 - true - - 0 - 1 - - 0 - true - 1 + 0 + 100 + 0 + true + 0 + + + 1 + + true + 100 + true + 1 + $(trace_3_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 + + + 1 + + + true + 100 + true + 1 + $(trace_4_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 + + + 1 + + true - - - true - true - false - - - true + 100 + true + 1 + $(trace_5_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 + + + 1 + + + true + 100 + true + 1 + $(trace_6_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 - 100 - 1 - 0 - - - - 0 - - - - + + 1 + + + true + 100 true - 100 - - - - true - 4 - true + 1 $(trace_7_y_pv) - - + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 + + + 1 + + + true + 100 + true + 1 + $(trace_8_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 + + + 1 + + + true + 100 + true + 1 + $(trace_9_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 + + + 1 + + + 1 + false + + true - 1 - 39872d87:13e14015f61:40c4 + XY Graph + 381 + 12 + 73 + + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Be B C Al Si Ti Cr Mn Fe Co Ni Cu Zn + + true + 1 + true + Label + 220 + false + 113 + 22 + + + + false - - - - Label - true - Be B C Al Si Ti Cr Mn Fe Co Ni Cu Zn - - - - 220 - 0 - - 1 - 0 - - 22 - true - - 113 - - - true - 1 - 39872d87:13e14015f61:40c5 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Supported filter materials: + + true + 1 + true + Label + 220 + false + 93 + 7 + + + + false - - - - Label - true - Supported filter materials: - - - - 220 - 0 - - 1 - 0 - - 7 - true - - 93 - - - true - 1 - 39872d87:13e14015f61:40c6 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Ge Mo Ag Sn Ta W Pt Au Pb + + true + 1 + true + Label + 220 + false + 113 + 34 + + + + false - - - - Label - true - Ge Mo Ag Sn Ta W Pt Au Pb - - - - 220 - 0 - - 1 - 0 - - 34 - true - - 113 - - - true - 1 - 39872d87:13e14015f61:40c7 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + Filter + + true + 1 + true + Label + 50 + false + 10 + 5 + + + + false - - - - Label - true - Filter - - - - 50 - 0 - - 1 - 1 - - 5 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:40c8 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false - - - - - - - Label - true Material - - - - 50 - 0 - - 1 - - - - 1 - - 14 - true + true + 1 + true + Label + 50 + false 10 + 14 - \ No newline at end of file + diff --git a/opticsApp/op/opi/autoconvert/pf4_other_bare.opi b/opticsApp/op/opi/autoconvert/pf4_other_bare.opi new file mode 100644 index 0000000..0752a68 --- /dev/null +++ b/opticsApp/op/opi/autoconvert/pf4_other_bare.opi @@ -0,0 +1,145 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 22 + + true + + pf4_other_bare + + + true + true + false + true + false + Display + 50 + 230 + 230 + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(H)Other$(N)$(B) + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 0 + 0 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + + true + + + false + + $(P)$(H)OtherLegal$(N)$(B) + + + + true + true + false + + + false + X + + true + 1 + true + Label + 10 + false + 40 + 2 + + diff --git a/opticsApp/op/opi/pf4config.opi b/opticsApp/op/opi/autoconvert/pf4config.opi similarity index 80% rename from opticsApp/op/opi/pf4config.opi rename to opticsApp/op/opi/autoconvert/pf4config.opi index c03c3a6..8dd2175 100644 --- a/opticsApp/op/opi/pf4config.opi +++ b/opticsApp/op/opi/autoconvert/pf4config.opi @@ -1,428 +1,426 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 490 true - 39872d87:13e14015f61:40db - 3.1.2.20120830 + pf4config + + true + true + false true - 490 - pf4config false - false - - - - - - Display - true 325 - - true - 5 - - false - -1 - -1 - - - 543 1139 - + 543 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 25 + true - 39872d87:13e14015f61:40dc - - - - - 25 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle - true - - - - false - - Default - 325 - 0 - 0 - - - 1 - 0 - true + 0 + 0 + + + + + + - - 0 - $(pv_name) -$(pv_value) - 0 - false - - + 0 + 1 + true + + Default + + + + + + 182 true - true - 39872d87:13e14015f61:40e1 - false - - true - 182 Linking Container + pf4_bare.opi + 2 + true true false - pf4_bare.opi + + + true + Linking Container + 288 + 5 + 25 + + + + + + + 0 + 1 + true + + Default + - Linking Container - true - - Default - - 288 - 3 - - 1 - - - - - 25 - - 5 - - + 264 true - true - 39872d87:13e14015f61:40e2 - false - - true - 264 Linking Container + pf4config_bare.opi + 2 + true true false - pf4config_bare.opi - - - - - - - + + + true Linking Container - true - - Default - 326 - 3 - - 1 - - - - - 223 - 0 + 223 - - true - 1 - 39872d87:13e14015f61:40dd + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - PF4 dual filter - - - - 320 - 0 - - 1 - 1 - - 3 - true - - 4 - - - false - true - false - 39872d87:13e14015f61:40de - + 0 + 1 + true + + + + + + 20 - Menu Button - false + 1 + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 50 - 6 - - - - 1 - - - - 194 + + false + PF4 dual filter + + true + 1 + true + Label + 320 + false + 4 + 3 + + pf4more.opi true - 1 + 0 PF4 mono filter computed controls - $(pv_name) -$(pv_value) - 273 - - + false + false + + + false - true - false - 39872d87:13e14015f61:40df - - 20 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + more + false + $(pv_name) +$(pv_value) + true + Action Button 50 - 6 - - - - 1 - - - - 174 + 273 + 194 + + pf4.opi true - 1 + 0 all + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + -config + false $(pv_name) $(pv_value) + true + Action Button + 50 273 + 174 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:40e0 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 324 + 1 + 23 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 324 - 0 - 0 - - - 1 - 1 - true + false - - 23 - $(pv_name) -$(pv_value) - 1 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:40e3 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 325 - 0 - 0 - - 1 - 1 - true - - - - - 216 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 325 1 + 216 - \ No newline at end of file + diff --git a/opticsApp/op/opi/pf4config_bare.opi b/opticsApp/op/opi/autoconvert/pf4config_bare.opi similarity index 74% rename from opticsApp/op/opi/pf4config_bare.opi rename to opticsApp/op/opi/autoconvert/pf4config_bare.opi index 2afcd94..3a20e80 100644 --- a/opticsApp/op/opi/pf4config_bare.opi +++ b/opticsApp/op/opi/autoconvert/pf4config_bare.opi @@ -1,145 +1,277 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 265 true - 39872d87:13e14015f61:4123 - 3.1.2.20120830 + pf4config_bare + + true + true + false true - 265 - pf4config_bare false - false - - - - - - Display - true 325 - - true - 5 - - false - -1 - -1 - - - 530 956 - + 530 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 20 + true - 39872d87:13e14015f61:4143 - - - - - 20 - true + 0 + 0 Rectangle - false - 255 + + + + + + true + + + false + + $(P)$(H)bank$(B) + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 66 + 77 + 65 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 66 + false + + + + false + 20 + true + + + 0 - 0 + 0 + Rectangle + + - + true - + false - $(P)$(H)bank$(A) + $(P)$(H)bank$(B) - - 1 - 0 - true - - - - - 65 + + true + true + false + + $(pv_name) $(pv_value) - 238 - false + false + true + Rectangle + 66 + 77 + 65 - + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 20 + true - 39872d87:13e14015f61:4144 - - - - - 20 - true + 0 + 0 Rectangle - false - 255 + + + + + + true + + + false + + $(P)$(H)bank$(A) + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 66 + 238 + 65 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 66 + false + + + + false + 20 + true + + + 0 - 0 + 0 + Rectangle + + @@ -151,2875 +283,2705 @@ $(pv_value) $(P)$(H)bank$(A) - - 1 - 0 - true - - - - - 65 - $(pv_name) -$(pv_value) - 238 - false - - - - true - - true - 39872d87:13e14015f61:412e - - 20 - Grouping Container true true false - true - false + + $(pv_name) +$(pv_value) + false + true + Rectangle + 66 + 238 + 65 + + + - - - - Grouping Container - true - - Default - - 66 - 0 - - false - 1 - - 65 - - 77 - - false - true - 100.0 - - - - 39872d87:13e14015f61:412f - - - - - 20 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 66 - 0 - 0 - - - - true - - - false - - $(P)$(H)bank$(B) - - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4130 - - - - - 20 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 66 - 0 - 0 - - - - true - - - false - - $(P)$(H)bank$(B) - - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - + 0 + 1 + true + + Default + + + + + + 22 true 1 B - true - 39872d87:13e14015f61:413d - false - - true - 22 Linking Container + pf4_other_bare.opi + 2 + true true false - pf4_other_bare.opi + + + true + Linking Container + 50 + 110 + 165 + + + + + + + 0 + 1 + true + + Default + - Linking Container - true - - Default - - 50 - 3 - - 1 - - - - - 165 - - 110 - - + 22 true 2 B - true - 39872d87:13e14015f61:413e - false - - true - 22 Linking Container + pf4_other_bare.opi + 2 + true true false - pf4_other_bare.opi + + + true + Linking Container + 50 + 110 + 145 + + + + + + + 0 + 1 + true + + Default + - Linking Container - true - - Default - - 50 - 3 - - 1 - - - - - 145 - - 110 - - + 22 true 3 B - true - 39872d87:13e14015f61:413f - false - - true - 22 Linking Container + pf4_other_bare.opi + 2 + true true false - pf4_other_bare.opi + + + true + Linking Container + 50 + 110 + 125 + + + + + + + 0 + 1 + true + + Default + - Linking Container - true - - Default - - 50 - 3 - - 1 - - - - - 125 - - 110 - - + 22 true 4 B - true - 39872d87:13e14015f61:4140 - false - - true - 22 Linking Container + pf4_other_bare.opi + 2 + true true false - pf4_other_bare.opi + + + true + Linking Container + 50 + 110 + 105 + + + + + + + 0 + 1 + true + + Default + - Linking Container - true - - Default - - 50 - 3 - - 1 - - - - - 105 - - 110 - - + 22 true + 1 + A - true - 39872d87:13e14015f61:414d - - 82 - Grouping Container + Linking Container + pf4_other_bare.opi + 2 + true true false - true - false + + + true + Linking Container + 50 + 275 + 165 + + + - - - - Grouping Container - true - - Default - - 50 - 0 - - false - 1 - - 105 - - 275 - - - true - 1 - A - - true - 39872d87:13e14015f61:414e - false - - true - 22 - Linking Container - - true - true - false - - pf4_other_bare.opi - - - - - - - - Linking Container - true - - Default - - 50 - 3 - - 1 - - - - - 60 - - 0 - - - - true - 2 - A - - true - 39872d87:13e14015f61:414f - false - - true - 22 - Linking Container - - true - true - false - - pf4_other_bare.opi - - - - - - - - Linking Container - true - - Default - - 50 - 3 - - 1 - - - - - 40 - - 0 - - - - true - 3 - A - - true - 39872d87:13e14015f61:4150 - false - - true - 22 - Linking Container - - true - true - false - - pf4_other_bare.opi - - - - - - - - Linking Container - true - - Default - - 50 - 3 - - 1 - - - - - 20 - - 0 - - - - true - 4 - A - - true - 39872d87:13e14015f61:4151 - false - - true - 22 - Linking Container - - true - true - false - - pf4_other_bare.opi - - - - - - - - Linking Container - true - - Default - - 50 - 3 - - 1 - - - - - 0 - - 0 - - - - true - 1 - 39872d87:13e14015f61:4124 - false - - 14 - Label + 0 + 1 + true + + Default + + + + + + 22 + + true + 2 + A + + Linking Container + pf4_other_bare.opi + 2 + true true false - true - false + + + true + Linking Container + 50 + 275 + 145 + + + - + - - - - Label + + + + 0 + 1 true - Be B C Al Si Ti Cr Mn Fe Co Ni Cu Zn - + Default - 220 - 0 + + + + + 22 + + true + 3 + A + + Linking Container + pf4_other_bare.opi + 2 - 1 - - - - 0 - - 240 - true - - 30 - - - true - 1 - 39872d87:13e14015f61:4125 - false - - 14 - Label true true false - true - false + + + true + Linking Container + 50 + 275 + 125 + + + - + - - - - Label - true - Choices for filter material 'Other': - - - - 220 - 0 - - 1 - 0 - - 225 - true - - 10 - - - false - true - 1 - false - false - - 25 - false - true - - - - Text Input + 0 + 1 true - - + Default - 108 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4126 - 0.0 - Text Input + + + + + 22 + + true + 4 + A + + Linking Container + pf4_other_bare.opi + 2 + true true false - 1 - false - 0 - $(P)$(H)E:local - - - - false - 0 - - - false + + + true + Linking Container + 50 + 275 + 105 + + + + false + + + - 0 - - 26 - $(pv_name) -$(pv_value) - 139 - - - true - 1 - 39872d87:13e14015f61:4127 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Be B C Al Si Ti Cr Mn Fe Co Ni Cu Zn + + true + 1 + true + Label + 220 + false + 30 + 240 + + + + false - - - - Label - true - keV - - - - 49 - 0 - - 1 - 0 - - 30 - true - - 250 - - - true - 1 - 39872d87:13e14015f61:4128 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Choices for filter material 'Other': + + true + 1 + true + Label + 220 + false + 10 + 225 + + + + false + false + false - + - - - - Label - true - using - - - - 40 - 0 - - 1 + false - 1 - - 30 - true - - 97 - - - false - true - 39872d87:13e14015f61:4129 - - 36 - Choice Button + 3 + 1 + + true + + + false + + + + 1 + 25 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(H)E:local + + false + 0.0 + true true false - $(P)$(H)useMono + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 108 + 139 + 26 + + + + false - - - - - - Choice Button - true - false - - Default - - 55 - 0 - - - - - - Choice 1 - Choice 2 - Choice 3 - - 1 - false + - true - - 7 - $(pv_name) -$(pv_value) - 37 - - - true - 1 - 39872d87:13e14015f61:412a - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + keV + + true + 1 + true + Label + 49 + false + 250 + 30 + + + + false - - - - Label + + + + 0 + 1 true - Energy - + - 40 - 0 + + + + 14 + 2 + Label - 1 - - - - 1 - - 1 - true + + true + true + false + + + false + using + true + 1 + true + Label + 40 + false 97 + 30 - - true - true - 1 - false - 39872d87:13e14015f61:412b - false - 0.0 - - 20 - Text Update + + + false + false + + + + false + + + + 0 + 1 + true + + Default + false + + + + 36 + false + + Choice 1 + Choice 2 + Choice 3 + + true + Choice Button + $(P)$(H)useMono + + true true false - 1 - true - false - $(P)$(H)displayEnergy + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 55 + 37 + 7 + + + + false - + - - - - Text Update + + + + 0 + 1 true - ###### - false - 0 - + - 108 - 0 + + + + 14 + 2 + Label - - 1 + + true + true + false + + + false + Energy + + true + 1 + true + Label + 40 + false + 97 + 1 + + + + false + false + false + + + + true - 0 - - 0 - false + 0 + 1 + true + + + + false + + + + 1 + 20 + 2 + Text Update + 0 + true + $(P)$(H)displayEnergy + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 108 + false 139 + 0 - - true - 1 - 39872d87:13e14015f61:412c + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + keV + + true + 1 + true + Label + 49 + false + 250 + 1 + + + + false - - - - Label - true - keV - - - - 49 - 0 - - 1 - 0 - - 1 - true - - 250 - - - true - 1 - 39872d87:13e14015f61:412d - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true Ge Mo Ag Sn Ta W Pt Au Pb - - - - 220 - 0 - - 1 - - - - 0 - - 252 - true + true + 1 + true + Label + 220 + false 30 + 252 - + + + + $(P)$(H)bank$(B) + 0 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4131 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(H)bank$(B) + + true true false - $(P)$(H)bank$(B) - - - - - - - Action Button - true + + off - false - - Default - - 30 - 0 - 0 - - - true - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 30 + 49 64 + + $(P)$(H)bank$(B) - 0 + 3 10 + - $(pv_name) -$(pv_value) - 49 - - + false + false + + + false - true - 39872d87:13e14015f61:4132 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(H)bank$(B) + + true true false - $(P)$(H)bank$(B) - - - - - - - Action Button - true + + on - false - - Default - - 30 - 0 - 0 - - - true - 1 - - - - 64 - - - $(P)$(H)bank$(B) - 3 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 30 22 + 64 - - true - true - 1 - false - 39872d87:13e14015f61:4133 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)$(H)bank$(B) + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)bank$(B) - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 1 - - 68 false - $(pv_name) -$(pv_value) 80 + 68 - - true - true - 1 - false - 39872d87:13e14015f61:4134 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)$(H)f4$(B).EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)f4$(B).EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 40 - 0 - - - 1 - - - - 1 - - 91 false - $(pv_name) -$(pv_value) 15 + 91 - - false - true + + true - 39872d87:13e14015f61:4135 - - 20 - Menu Button - false - - true - true - false - - false - $(P)$(H)Z4$(B) + false + false - + - - - - Menu Button - true - false - - Default - - 54 - 6 - - - - 1 + false - 104 - - $(pv_name) -$(pv_value) - 55 - - - false - true - true - 39872d87:13e14015f61:4136 - + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + $(P)$(H)Z4$(B) + + true true false + + false + $(pv_name) +$(pv_value) false - $(P)$(H)Z3$(B) - - - - - - + true Menu Button - true - false - - Default - 54 - 6 - - - - 1 - - - - 124 - - $(pv_name) -$(pv_value) 55 + 104 - - false - true + + true - 39872d87:13e14015f61:4137 - + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + $(P)$(H)Z3$(B) + + true true false + + false + $(pv_name) +$(pv_value) false - $(P)$(H)Z2$(B) - - - - - - + true Menu Button - true - false - - Default - 54 - 6 - - - - 1 - - - - 144 - - $(pv_name) -$(pv_value) 55 + 124 - - false - true + + true - 39872d87:13e14015f61:4138 - + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + $(P)$(H)Z2$(B) + + true true false + + false + $(pv_name) +$(pv_value) false - $(P)$(H)Z1$(B) + true + Menu Button + 54 + 55 + 144 + + + + true + false + false - + - - - - Menu Button + false + + + + 6 + 1 true - false - Default + Default - 54 - 6 + false + + + + 20 - + Menu Button + $(P)$(H)Z1$(B) - 1 - - - - 164 - + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 54 55 + 164 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4139 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(H)f3$(B) + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(H)f3$(B) - - - - false - 0 - - - false - - - - 0 - - 125 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 15 + 125 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:413a - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(H)f4$(B) + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(H)f4$(B) - - - - false - 0 - - - false - - - - 0 - - 105 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 15 + 105 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:413b - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(H)f2$(B) + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(H)f2$(B) - - - - false - 0 - - - false - - - - 0 - - 145 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 15 + 145 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:413c - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(H)f1$(B) + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(H)f1$(B) - - - - false - 0 - - - false - - - - 0 - - 165 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 15 + 165 - - false - true + + true - 39872d87:13e14015f61:4141 - + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + $(P)$(H)debug$(A) + + true true false + + false + $(pv_name) +$(pv_value) false - $(P)$(H)debug$(A) - - - - - - + true Menu Button - true - false - - Default - 40 - 6 - - - - 1 - - - - 195 - - $(pv_name) -$(pv_value) 236 + 195 - - true - 1 - 39872d87:13e14015f61:4142 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 2 Label + true true false - true + false - - - - - - - Label - true debug - - - - 40 - 0 - - 1 - - - - 1 - - 198 - true + true + 1 + true + Label + 40 + false 194 + 198 - - true - true - 1 - false - 39872d87:13e14015f61:4145 + + + false false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(H)bank$(A) + false - + - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 + true - 1 - - 68 - false - $(pv_name) -$(pv_value) - 241 - - - false - true - 39872d87:13e14015f61:4146 - - 20 - Action Button + 0 + 1 + true + + + false + + + + 1 + 14 + 1 + Text Update + 0 + true + $(P)$(H)bank$(A) + + 0.0 + true true false - $(P)$(H)bank$(A) - - - - - - - Action Button - true - off - false - - Default - - 30 - 0 - 0 - - - - true - 1 - - - - 64 + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 241 + 68 + + $(P)$(H)bank$(A) 0 10 + - $(pv_name) -$(pv_value) - 210 - - + false + false + + + false - true - 39872d87:13e14015f61:4147 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(H)bank$(A) + + true true false - $(P)$(H)bank$(A) - - - - - - + + + off + true + $(pv_name) +$(pv_value) + true Action Button - true - on - false - - Default - 30 - 0 - 0 - - - - true - 1 - - - + 210 64 + + $(P)$(H)bank$(A) 3 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(H)bank$(A) + + + + true + true + false + + + + on + true $(pv_name) $(pv_value) + true + Action Button + 30 183 + 64 - - true - true - 1 - false - 39872d87:13e14015f61:4148 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)$(H)f4$(A).EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)f4$(A).EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 40 - 0 - - - 1 - - - - 1 - - 91 false - $(pv_name) -$(pv_value) 180 + 91 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4149 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(H)f4$(A) + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(H)f4$(A) - - - - false - 0 - - - false - - - - 0 - - 105 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 180 + 105 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:414a - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(H)f3$(A) + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(H)f3$(A) - - - - false - 0 - - - false - - - - 0 - - 125 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 180 + 125 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:414b - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(H)f2$(A) + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(H)f2$(A) - - - - false - 0 - - - false - - - - 0 - - 145 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 180 + 145 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:414c - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(H)f1$(A) + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(H)f1$(A) - - - - false - 0 - - - false - - - - 0 - - 165 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 180 + 165 - - false - true + + true - 39872d87:13e14015f61:4152 - - 20 - Menu Button - false - - true - true - false - - false - $(P)$(H)Z3$(A) + false + false - + - - - - Menu Button - true - false - - Default - - 54 - 6 - - - - 1 + false - 125 - - $(pv_name) -$(pv_value) - 220 - - - false - true - true - 39872d87:13e14015f61:4153 - + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + $(P)$(H)Z3$(A) + + true true false + + false + $(pv_name) +$(pv_value) false - $(P)$(H)Z4$(A) - - - - - - + true Menu Button - true - false - - Default - 54 - 6 - - - - 1 - - - - 105 - - $(pv_name) -$(pv_value) 220 + 125 - - false - true + + true - 39872d87:13e14015f61:4154 - + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + $(P)$(H)Z4$(A) + + true true false + + false + $(pv_name) +$(pv_value) false - $(P)$(H)Z2$(A) - - - - - - + true Menu Button - true - false - - Default - 54 - 6 - - - - 1 - - - - 145 - - $(pv_name) -$(pv_value) 220 + 105 - - false - true + + true - 39872d87:13e14015f61:4155 - + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + $(P)$(H)Z2$(A) + + true true false + + false + $(pv_name) +$(pv_value) false - $(P)$(H)Z1$(A) + true + Menu Button + 54 + 220 + 145 + + + + true + false + false - + - - - - Menu Button + false + + + + 6 + 1 true - false - Default + Default - 54 - 6 + false + + + + 20 - + Menu Button + $(P)$(H)Z1$(A) - 1 - - - - 165 - + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 54 220 + 165 - - true - 1 - 39872d87:13e14015f61:4156 + + false - + + + + + + + 0 + 1 + true + + + + + + 18 + 2 Label + true true false - true + false + 4 + + true + 1 + true + Label + 10 + false + 165 + 107 + + + + false - - - - Label - true - 4 - - - - 10 - 0 - - 1 - 1 - - 107 - true - - 165 - - - true - 1 - 39872d87:13e14015f61:4157 - false - + 0 + 1 + true + + + + + + 18 + 2 Label + true true false - true + false + 3 + + true + 1 + true + Label + 10 + false + 165 + 127 + + + + false - - - - Label - true - 3 - - - - 10 - 0 - - 1 - 1 - - 127 - true - - 165 - - - true - 1 - 39872d87:13e14015f61:4158 - false - + 0 + 1 + true + + + + + + 18 + 2 Label + true true false - true + false - - - - - - - Label - true 2 - - - - 10 - 0 - - 1 - - - - 1 - - 147 - true + true + 1 + true + Label + 10 + false 165 + 147 - - true - 1 - 39872d87:13e14015f61:4159 + + false - + + + + + + + 0 + 1 + true + + + + + + 18 + 2 Label + true true false - true + false + 1 + + true + 1 + true + Label + 10 + false + 165 + 167 + + + + false - - - - Label - true - 1 - - - - 10 - 0 - - 1 - 1 - - 167 - true - - 165 - - - true - 1 - 39872d87:13e14015f61:415a - false - + 0 + 1 + true + + + + + + 14 + 2 Label + true true false - true + false - - - - - - - Label - true debug - - - - 35 - 0 - - 1 - - - - 1 - - 198 - true + true + 1 + true + Label + 35 + false 29 + 198 - - false - true + + true - 39872d87:13e14015f61:415b - + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + $(P)$(H)debug$(B) + + true true false + + false + $(pv_name) +$(pv_value) false - $(P)$(H)debug$(B) - - - - - - + true Menu Button - true - false - - Default - 40 - 6 - - - - 1 - - - - 195 - - $(pv_name) -$(pv_value) 69 + 195 - - true - 1 - 39872d87:13e14015f61:415c + + false - - 18 - Label - - true - true - false - - true - false - - - - Label - true - 4 - - - - 10 - 0 - - 1 - 1 - - 107 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:415d - false - + 0 + 1 + true + + + + + + 18 + 2 Label + true true false - true + false + 4 + + true + 1 + true + Label + 10 + false + 0 + 107 + + + + false - - - - Label - true - 3 - - - - 10 - 0 - - 1 - 1 - - 127 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:415e - false - + 0 + 1 + true + + + + + + 18 + 2 Label + true true false - true + false - - - - - - + 3 + + true + 1 + true Label - true - 2 - - - 10 - 0 - - 1 - - - - 1 - - 147 - true - + false 0 + 127 - - true - 1 - 39872d87:13e14015f61:415f + + false - + + + + + + + 0 + 1 + true + + + + + + 18 + 2 Label + true true false - true + false + 2 + + true + 1 + true + Label + 10 + false + 0 + 147 + + + + false - - - - Label + + + + 0 + 1 true - 1 - + - 10 - 0 + + + + 18 + 2 + Label - 1 - - - - 1 - - 167 - true + + true + true + false + + + false + 1 + true + 1 + true + Label + 10 + false 0 + 167 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4160 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 324 - 0 - 0 - - 1 - 1 - true - - - - - 56 - $(pv_name) -$(pv_value) - 1 - - - false - true - false - 39872d87:13e14015f61:4161 - - 16 - Menu Button - false + 0.0 + true true - false + true + + $(pv_name) +$(pv_value) false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - - 89 + true + Polyline + 324 + 1 + 56 + + pf4_otherHelp.opi true - 0 + 1 all - $(pv_name) -$(pv_value) - 110 - - + false + false + + + false - true - false - 39872d87:13e14015f61:4162 - - 16 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 16 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + mu + false + $(pv_name) +$(pv_value) + true + Action Button 40 - 6 - - - - 1 - - - + 110 89 + + pf4_otherHelp.opi true - 0 + 1 all + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + + + + + true + true + false + + + + mu + false $(pv_name) $(pv_value) + true + Action Button + 40 275 + 89 - \ No newline at end of file + diff --git a/opticsApp/op/opi/pf4more.opi b/opticsApp/op/opi/autoconvert/pf4more.opi similarity index 79% rename from opticsApp/op/opi/pf4more.opi rename to opticsApp/op/opi/autoconvert/pf4more.opi index 7a1d846..f0ac84e 100644 --- a/opticsApp/op/opi/pf4more.opi +++ b/opticsApp/op/opi/autoconvert/pf4more.opi @@ -1,135 +1,133 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 570 true - 39872d87:13e14015f61:41c4 - 3.1.2.20120830 + pf4more + + true + true + false true - 570 - pf4more false - false - - - - - - Display - true 325 - - true - 5 - - false - -1 - -1 - - - 494 352 - - false - true - 100.0 - - - - 39872d87:13e14015f61:41c5 - - - - - 25 - true - Rectangle - false + 494 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 325 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 100.0 + 25 + true - 39872d87:13e14015f61:41ec - - - - - 346 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 325 + 0 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 64 + false + + + + false + 346 + true + + + 0 - 0 + 0 + Rectangle + + @@ -138,65 +136,65 @@ $(pv_value) false - $(P)$(H)fPos$(A) + $(P)$(H)fPos$(B) - - 1 - 0 - true - - - - - 220 - $(pv_name) -$(pv_value) - 162 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:41ed - - - - - 346 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 64 + 6 + 220 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 64 + false + + + + false + 346 + true + + + 0 - 0 + 0 + Rectangle + + @@ -205,65 +203,65 @@ $(pv_value) false - $(P)$(H)fPos$(A) + $(P)$(H)fPos$(B) - - 1 - 0 - true - - - - - 220 + + true + true + false + + $(pv_name) $(pv_value) - 162 - false - - - false + false true - 100.0 - - - - 39872d87:13e14015f61:41ee - - - - - 346 - true - Rectangle - false + Rectangle + 64 + 6 + 220 + + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 64 + false + + + + false + 346 + true + + + 0 - 0 + 0 + Rectangle + + @@ -272,3926 +270,3964 @@ $(pv_value) false - $(P)$(H)bank$(A) + $(P)$(H)bank$(B) - - 1 - 0 - true - - - - - 220 - $(pv_name) -$(pv_value) - 162 - false - - - - true - - true - 39872d87:13e14015f61:41c7 - - 346 - Grouping Container true true false - true - false + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 6 + 220 + + + + false + 255 + true + false - + - - - - Grouping Container - true - - Default - - 64 - 0 - - false - 1 + + + + false - - 220 - - 6 - - false - true - 100.0 - - - - 39872d87:13e14015f61:41c8 - - - - - 346 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - - true - - - false - - $(P)$(H)fPos$(B) - - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:41c9 - - - - - 346 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - - true - - - false - - $(P)$(H)fPos$(B) - - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:41ca - - - - - 346 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - - true - - - false - - $(P)$(H)bank$(B) - - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - true - true - 39872d87:13e14015f61:41cb - false - - false - 0 - - - - 336 - Byte Monitor - false - - true - true - false - - - - - $(P)$(H)bitFlag$(B) - - - - - - - Byte Monitor - true - false - 16 - - Default - - 10 - 0 - true - - - 1 - true - - - - - 4 - $(pv_name) -$(pv_value) - 4 - - - - - true - - true - 39872d87:13e14015f61:4212 - false - - true - 189 - Linking Container + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 346 + true + + + + 0 + 0 + Rectangle + + + + + + true + + + false + + $(P)$(H)fPos$(A) + + true true false - pf4_bare.opi + + $(pv_name) +$(pv_value) + false + true + Rectangle + 64 + 162 + 220 + + + + false + 255 + true + false - + - - - - - Linking Container - true - - Default - - 305 - 3 - - 1 + + + + false - - 25 - - 5 - - - false - true - 20 - true + 0 + 1 + true + + + 100.0 - 39872d87:13e14015f61:41c6 - 0.0 - - 0 - 1 - true - Polyline + + Default + false - 255 + + + + false + 346 + true + + + + 0 + 0 + Rectangle + + + + + + true + + + false + + $(P)$(H)fPos$(A) + + true true - true + false - - - - + + $(pv_name) +$(pv_value) false - + true + Rectangle + 64 + 162 + 220 + + + + false + 255 + true + false - - - - Polyline - true - false - - Default - - 325 - 0 - 0 - - - 1 - 1 - true + + + + false - - 216 - $(pv_name) -$(pv_value) - 1 - - - true - true - 1 - false - 39872d87:13e14015f61:41cc - false - 0.0 - - 14 - Text Update + 0 + 1 + true + + + + 100.0 + + Default + false + + + + false + 346 + true + + + + 0 + 0 + Rectangle + + + + + + true + + + false + + $(P)$(H)bank$(A) + + true true false - 4 - true + + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(B).THST + true + Rectangle + 64 + 162 + 220 + + + - + - - - - Text Update + + + + 0 + 1 true - ###### - false - 0 - + Default - 70 - 0 + + + + + 182 + + true + + Linking Container + pf4_bare.opi + 2 - - 1 + + true + true + false + + + + true + Linking Container + 288 + 5 + 25 + + + + false + 255 + true + 20 + 0 + false + + + + false - 0 - - 289 - false - $(pv_name) -$(pv_value) - 74 - - - true - true - 1 - false - 39872d87:13e14015f61:41cd - false - 0.0 - - 14 - Text Update + 0 + 1 + true + true + 100.0 + + Default + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true - false + true - 4 - true + + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(B).TWST + true + Polyline + 325 + 1 + 216 + + + + false + false - + - - - - Text Update + false + true + + + + 0 + 1 + true true - ###### - false - 0 - + Default - 70 - 0 - + false + + + + 336 + false + - - true true - 1 - false - 39872d87:13e14015f61:41ce + Byte Monitor + 10 + 10 + 224 + + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(H)fPos$(B).THST + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(B).ONST - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 + false + 74 + 289 + + + + false + false + false + + + + true + 0 + 1 + true + + + + false + + + + 4 + 14 0 - - 247 - false + Text Update + 0 + true + $(P)$(H)fPos$(B).TWST + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 70 + false 74 + 268 - - true - true - 1 - false - 39872d87:13e14015f61:41cf + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(H)fPos$(B).ONST + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(B).ZRST - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 0 - - 226 false - $(pv_name) -$(pv_value) 74 + 247 - - true - true - 1 - false - 39872d87:13e14015f61:41d0 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(H)fPos$(B).ZRST + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(B).FRST - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 0 - - 311 false - $(pv_name) -$(pv_value) 74 + 226 - - true - true - 1 - false - 39872d87:13e14015f61:41d1 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(H)fPos$(B).FRST + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(B).FVST - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 0 - - 332 false - $(pv_name) -$(pv_value) 74 + 311 - - true - true - 1 - false - 39872d87:13e14015f61:41d2 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(H)fPos$(B).FVST + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(B).SXST - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 0 - - 353 false - $(pv_name) -$(pv_value) 74 + 332 - - true - true - 1 - false - 39872d87:13e14015f61:41d3 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(H)fPos$(B).SXST + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(B).SVST - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 0 - - 374 false - $(pv_name) -$(pv_value) 74 + 353 - - true - true - 1 - false - 39872d87:13e14015f61:41d4 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(H)fPos$(B).SVST + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(B).EIST - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 0 - - 395 false - $(pv_name) -$(pv_value) 74 + 374 - - true - true - 1 - false - 39872d87:13e14015f61:41d5 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(H)fPos$(B).EIST + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(B).NIST - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 0 - - 416 false - $(pv_name) -$(pv_value) 74 + 395 - - true - true - 1 - false - 39872d87:13e14015f61:41d6 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(H)fPos$(B).NIST + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(B).TEST - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 0 - - 437 false - $(pv_name) -$(pv_value) 74 + 416 - - true - true - 1 - false - 39872d87:13e14015f61:41d7 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(H)fPos$(B).TEST + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(B).ELST - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 0 - - 458 false - $(pv_name) -$(pv_value) 74 + 437 - - true - true - 1 - false - 39872d87:13e14015f61:41d8 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(H)fPos$(B).ELST + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(B).TVST - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 0 - - 479 false - $(pv_name) -$(pv_value) 74 + 458 - - true - true - 1 - false - 39872d87:13e14015f61:41d9 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(H)fPos$(B).TVST + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(B).TTST - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 0 - - 500 false - $(pv_name) -$(pv_value) 74 + 479 - - true - true - 1 - false - 39872d87:13e14015f61:41da + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(H)fPos$(B).TTST + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(B).FTST - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 0 - - 521 false - $(pv_name) -$(pv_value) 74 + 500 - - true - true - 1 - false - 39872d87:13e14015f61:41db + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(H)fPos$(B).FTST + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(B).FFST - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 0 - - 542 false - $(pv_name) -$(pv_value) 74 + 521 - - false - true - 39872d87:13e14015f61:41dc - - 18 - Action Button - false - - true - true - false - - $(P)$(H)fPos$(B) + + + false + false + false - + - - - - Action Button + true + + + + 0 + 1 true - B 0 - false - Default + - 40 - 0 - 0 - - + false + + + + 4 + 14 + 0 + Text Update + 0 + true + $(P)$(H)fPos$(B).FFST - true - 1 - - - - 226 + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 70 + false + 74 + 542 + + $(P)$(H)fPos$(B) 0 10 + - $(pv_name) -$(pv_value) - 24 - - + false + false + + + false - true - 39872d87:13e14015f61:41dd - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(B) + + true true false - $(P)$(H)fPos$(B) - - - - - - + + + B 0 + true + $(pv_name) +$(pv_value) + true Action Button - true - B 1 - false - - Default - 40 - 0 - 0 - - - - true - 1 - - - - 247 + 24 + 226 + + $(P)$(H)fPos$(B) 1 10 + - $(pv_name) -$(pv_value) - 24 - - + false + false + + + false - true - 39872d87:13e14015f61:41de - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(B) + + true true false - $(P)$(H)fPos$(B) - - - - - - + + + B 1 + true + $(pv_name) +$(pv_value) + true Action Button - true - B 2 - false - - Default - 40 - 0 - 0 - - - - true - 1 - - - - 268 + 24 + 247 + + $(P)$(H)fPos$(B) 2 10 + - $(pv_name) -$(pv_value) - 24 - - + false + false + + + false - true - 39872d87:13e14015f61:41df - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(B) + + true true false - $(P)$(H)fPos$(B) - - - - - - + + + B 2 + true + $(pv_name) +$(pv_value) + true Action Button - true - B 3 - false - - Default - 40 - 0 - 0 - - - - true - 1 - - - - 289 + 24 + 268 + + $(P)$(H)fPos$(B) 3 10 + - $(pv_name) -$(pv_value) - 24 - - + false + false + + + false - true - 39872d87:13e14015f61:41e0 - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(B) + + true true false - $(P)$(H)fPos$(B) - - - - - - + + + B 3 + true + $(pv_name) +$(pv_value) + true Action Button - true - B 4 - false - - Default - 40 - 0 - 0 - - - - true - 1 - - - - 311 + 24 + 289 + + $(P)$(H)fPos$(B) 4 10 + - $(pv_name) -$(pv_value) - 24 - - + false + false + + + false - true - 39872d87:13e14015f61:41e1 - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(B) + + true true false - $(P)$(H)fPos$(B) - - - - - - + + + B 4 + true + $(pv_name) +$(pv_value) + true Action Button - true - B 5 - false - - Default - 40 - 0 - 0 - - - - true - 1 - - - - 332 + 24 + 311 + + $(P)$(H)fPos$(B) 5 10 + - $(pv_name) -$(pv_value) - 24 - - + false + false + + + false - true - 39872d87:13e14015f61:41e2 - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(B) + + true true false - $(P)$(H)fPos$(B) - - - - - - + + + B 5 + true + $(pv_name) +$(pv_value) + true Action Button - true - B 6 - false - - Default - 40 - 0 - 0 - - - - true - 1 - - - - 353 + 24 + 332 + + $(P)$(H)fPos$(B) 6 10 + - $(pv_name) -$(pv_value) - 24 - - + false + false + + + false - true - 39872d87:13e14015f61:41e3 - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(B) + + true true false - $(P)$(H)fPos$(B) - - - - - - - Action Button - true - B 7 - false - - Default - - 40 - 0 - 0 - - - - true - 1 - - - - 374 + + + B 6 + true + $(pv_name) +$(pv_value) + true + Action Button + 40 + 24 + 353 + + $(P)$(H)fPos$(B) 7 10 + - $(pv_name) -$(pv_value) - 24 - - + false + false + + + false - true - 39872d87:13e14015f61:41e4 - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(B) + + true true false - $(P)$(H)fPos$(B) - - - - - - + + + B 7 + true + $(pv_name) +$(pv_value) + true Action Button - true - B 8 - false - - Default - 40 - 0 - 0 - - - - true - 1 - - - - 395 + 24 + 374 + + $(P)$(H)fPos$(B) 8 10 + - $(pv_name) -$(pv_value) - 24 - - + false + false + + + false - true - 39872d87:13e14015f61:41e5 - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(B) + + true true false - $(P)$(H)fPos$(B) - - - - - - + + + B 8 + true + $(pv_name) +$(pv_value) + true Action Button - true - B 9 - false - - Default - 40 - 0 - 0 - - - - true - 1 - - - - 416 + 24 + 395 + + $(P)$(H)fPos$(B) 9 10 + - $(pv_name) -$(pv_value) - 24 - - + false + false + + + false - true - 39872d87:13e14015f61:41e6 - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(B) + + true true false - $(P)$(H)fPos$(B) - - - - - - + + + B 9 + true + $(pv_name) +$(pv_value) + true Action Button - true - B 10 - false - - Default - 40 - 0 - 0 - - - - true - 1 - - - - 437 + 24 + 416 + + $(P)$(H)fPos$(B) 10 10 + - $(pv_name) -$(pv_value) - 24 - - + false + false + + + false - true - 39872d87:13e14015f61:41e7 - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(B) + + true true false - $(P)$(H)fPos$(B) - - - - - - + + + B 10 + true + $(pv_name) +$(pv_value) + true Action Button - true - B 11 - false - - Default - 40 - 0 - 0 - - - - true - 1 - - - - 458 + 24 + 437 + + $(P)$(H)fPos$(B) 11 10 + - $(pv_name) -$(pv_value) - 24 - - + false + false + + + false - true - 39872d87:13e14015f61:41e8 - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(B) + + true true false - $(P)$(H)fPos$(B) - - - - - - + + + B 11 + true + $(pv_name) +$(pv_value) + true Action Button - true - B 12 - false - - Default - 40 - 0 - 0 - - - - true - 1 - - - - 479 + 24 + 458 + + $(P)$(H)fPos$(B) 12 10 + - $(pv_name) -$(pv_value) - 24 - - + false + false + + + false - true - 39872d87:13e14015f61:41e9 - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(B) + + true true false - $(P)$(H)fPos$(B) - - - - - - + + + B 12 + true + $(pv_name) +$(pv_value) + true Action Button - true - B 13 - false - - Default - 40 - 0 - 0 - - - - true - 1 - - - - 500 + 24 + 479 + + $(P)$(H)fPos$(B) 13 10 + - $(pv_name) -$(pv_value) - 24 - - + false + false + + + false - true - 39872d87:13e14015f61:41ea - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(B) + + true true false - $(P)$(H)fPos$(B) - - - - - - + + + B 13 + true + $(pv_name) +$(pv_value) + true Action Button - true - B 14 - false - - Default - 40 - 0 - 0 - - - - true - 1 - - - - 521 + 24 + 500 + + $(P)$(H)fPos$(B) 14 10 + - $(pv_name) -$(pv_value) - 24 - - + false + false + + + false - true - 39872d87:13e14015f61:41eb - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(B) + + true true false - $(P)$(H)fPos$(B) - - - - - - + + + B 14 + true + $(pv_name) +$(pv_value) + true Action Button - true - B 15 - false - - Default - 40 - 0 - 0 - - - - true - 1 - - - - 542 + 24 + 521 + + $(P)$(H)fPos$(B) 15 10 + - $(pv_name) -$(pv_value) - 24 - - - true - true - 39872d87:13e14015f61:41ef - false - - false - 0 - - - - 336 - Byte Monitor + false + false + + + + false + + + + 0 + 1 + true + + Default + false + + + + 18 + + Action Button + 0 + $(P)$(H)fPos$(B) + + true true false - - - - $(P)$(H)bitFlag$(A) + + + B 15 + true + $(pv_name) +$(pv_value) + true + Action Button + 40 + 24 + 542 + + + + false + false - + - - - - Byte Monitor - true - false - 16 - - Default - - 10 - 0 - true - - - 1 - true + false + true - - 224 - $(pv_name) -$(pv_value) - 166 - - - true - true - 1 - false - 39872d87:13e14015f61:41f0 - false - 0.0 - - 14 - Text Update + 0 + 1 + true + true + + Default + false + + + + 336 + false + + + + false + false + false - + - - - - Text Update - true - ###### - false - 0 - - - - 70 - 0 - - - 1 + true - 0 - - 289 - false - $(pv_name) -$(pv_value) - 230 - - - true - true - 1 - false - 39872d87:13e14015f61:41f1 - false - 0.0 - + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(H)fPos$(A).THST + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(A).TWST - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 0 - - 268 false - $(pv_name) -$(pv_value) 230 + 289 - - true - true - 1 - false - 39872d87:13e14015f61:41f2 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(H)fPos$(A).TWST + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(A).ONST - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 0 - - 247 false - $(pv_name) -$(pv_value) 230 + 268 - - true - true - 1 - false - 39872d87:13e14015f61:41f3 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(H)fPos$(A).ONST + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(A).ZRST - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 0 - - 226 false - $(pv_name) -$(pv_value) 230 + 247 - - true - true - 1 - false - 39872d87:13e14015f61:41f4 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(H)fPos$(A).ZRST + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(A).FRST - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 0 - - 311 false - $(pv_name) -$(pv_value) 230 + 226 - - true - true - 1 - false - 39872d87:13e14015f61:41f5 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(H)fPos$(A).FRST + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(A).FVST - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 + false + 230 + 311 + + + + false + false + false + + + + true + 0 + 1 + true + + + + false + + + + 4 + 14 0 - - 332 - false + Text Update + 0 + true + $(P)$(H)fPos$(A).FVST + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 70 + false 230 + 332 - - true - true - 1 - false - 39872d87:13e14015f61:41f6 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(H)fPos$(A).SXST + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(A).SXST - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 0 - - 353 false - $(pv_name) -$(pv_value) 230 + 353 - - true - true - 1 - false - 39872d87:13e14015f61:41f7 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(H)fPos$(A).SVST + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(A).SVST - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 0 - - 374 false - $(pv_name) -$(pv_value) 230 + 374 - - true - true - 1 - false - 39872d87:13e14015f61:41f8 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(H)fPos$(A).EIST + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(A).EIST - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 0 - - 395 false - $(pv_name) -$(pv_value) 230 + 395 - - true - true - 1 - false - 39872d87:13e14015f61:41f9 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(H)fPos$(A).NIST + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(A).NIST - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 0 - - 416 false - $(pv_name) -$(pv_value) 230 + 416 - - true - true - 1 - false - 39872d87:13e14015f61:41fa + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(H)fPos$(A).TEST + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(A).TEST - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 0 - - 437 false - $(pv_name) -$(pv_value) 230 + 437 - - true - true - 1 - false - 39872d87:13e14015f61:41fb + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(H)fPos$(A).ELST + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(A).ELST - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 0 - - 458 false - $(pv_name) -$(pv_value) 230 + 458 - - true - true - 1 - false - 39872d87:13e14015f61:41fc + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(H)fPos$(A).TVST + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(A).TVST - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 0 - - 479 false - $(pv_name) -$(pv_value) 230 + 479 - - true - true - 1 - false - 39872d87:13e14015f61:41fd + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(H)fPos$(A).TTST + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(A).TTST - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 0 - - 500 false - $(pv_name) -$(pv_value) 230 + 500 - - true - true - 1 - false - 39872d87:13e14015f61:41fe + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(H)fPos$(A).FTST + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(A).FTST - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 0 - - 521 false - $(pv_name) -$(pv_value) 230 + 521 - - true - true - 1 - false - 39872d87:13e14015f61:41ff + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(H)fPos$(A).FFST + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(H)fPos$(A).FFST - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 0 - - 542 false - $(pv_name) -$(pv_value) 230 + 542 - + + + + $(P)$(H)fPos$(A) + 0 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4200 - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(A) + + true true false - $(P)$(H)fPos$(A) - - - - - - - Action Button - true + + A 0 - false - - Default - - 40 - 0 - 0 - - - true - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 40 + 180 226 + + $(P)$(H)fPos$(A) - 0 + 1 10 + - $(pv_name) -$(pv_value) - 180 - - + false + false + + + false - true - 39872d87:13e14015f61:4201 - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(A) + + true true false - $(P)$(H)fPos$(A) - - - - - - - Action Button - true + + A 1 - false - - Default - - 40 - 0 - 0 - - - true - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 40 + 180 247 + + $(P)$(H)fPos$(A) - 1 + 2 10 + - $(pv_name) -$(pv_value) - 180 - - + false + false + + + false - true - 39872d87:13e14015f61:4202 - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(A) + + true true false - $(P)$(H)fPos$(A) - - - - - - - Action Button - true + + A 2 - false - - Default - - 40 - 0 - 0 - - - true - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 40 + 180 268 + + $(P)$(H)fPos$(A) - 2 + 3 10 + - $(pv_name) -$(pv_value) - 180 - - + false + false + + + false - true - 39872d87:13e14015f61:4203 - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(A) + + true true false - $(P)$(H)fPos$(A) - - - - - - - Action Button - true + + A 3 - false - - Default - - 40 - 0 - 0 - - - true - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 40 + 180 289 + + $(P)$(H)fPos$(A) - 3 + 4 10 + - $(pv_name) -$(pv_value) - 180 - - + false + false + + + false - true - 39872d87:13e14015f61:4204 - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(A) + + true true false - $(P)$(H)fPos$(A) - - - - - - - Action Button - true + + A 4 - false - - Default - - 40 - 0 - 0 - - - true - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 40 + 180 311 + + $(P)$(H)fPos$(A) - 4 + 5 10 + - $(pv_name) -$(pv_value) - 180 - - + false + false + + + false - true - 39872d87:13e14015f61:4205 - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(A) + + true true false - $(P)$(H)fPos$(A) - - - - - - - Action Button - true + + A 5 - false - - Default - - 40 - 0 - 0 - - - true - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 40 + 180 332 + + $(P)$(H)fPos$(A) - 5 + 6 10 + - $(pv_name) -$(pv_value) - 180 - - + false + false + + + false - true - 39872d87:13e14015f61:4206 - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(A) + + true true false - $(P)$(H)fPos$(A) - - - - - - - Action Button - true + + A 6 - false - - Default - - 40 - 0 - 0 - - - true - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 40 + 180 353 + + $(P)$(H)fPos$(A) - 6 + 7 10 + - $(pv_name) -$(pv_value) - 180 - - + false + false + + + false - true - 39872d87:13e14015f61:4207 - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(A) + + true true false - $(P)$(H)fPos$(A) - - - - - - - Action Button - true + + A 7 - false - - Default - - 40 - 0 - 0 - - - true - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 40 + 180 374 + + $(P)$(H)fPos$(A) - 7 + 8 10 + - $(pv_name) -$(pv_value) - 180 - - + false + false + + + false - true - 39872d87:13e14015f61:4208 - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(A) + + true true false - $(P)$(H)fPos$(A) - - - - - - - Action Button - true + + A 8 - false - - Default - - 40 - 0 - 0 - - - true - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 40 + 180 395 + + $(P)$(H)fPos$(A) - 8 + 9 10 + - $(pv_name) -$(pv_value) - 180 - - + false + false + + + false - true - 39872d87:13e14015f61:4209 - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(A) + + true true false - $(P)$(H)fPos$(A) - - - - - - - Action Button - true + + A 9 - false - - Default - - 40 - 0 - 0 - - - true - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 40 + 180 416 + + $(P)$(H)fPos$(A) - 9 + 10 10 + - $(pv_name) -$(pv_value) - 180 - - + false + false + + + false - true - 39872d87:13e14015f61:420a - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(A) + + true true false - $(P)$(H)fPos$(A) - - - - - - - Action Button - true + + A 10 - false - - Default - - 40 - 0 - 0 - - - true - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 40 + 180 437 + + $(P)$(H)fPos$(A) - 10 + 11 10 + - $(pv_name) -$(pv_value) - 180 - - + false + false + + + false - true - 39872d87:13e14015f61:420b - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(A) + + true true false - $(P)$(H)fPos$(A) - - - - - - - Action Button - true + + A 11 - false - - Default - - 40 - 0 - 0 - - - true - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 40 + 180 458 + + $(P)$(H)fPos$(A) - 11 + 12 10 + - $(pv_name) -$(pv_value) - 180 - - + false + false + + + false - true - 39872d87:13e14015f61:420c - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(A) + + true true false - $(P)$(H)fPos$(A) - - - - - - - Action Button - true + + A 12 - false - - Default - - 40 - 0 - 0 - - - true - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 40 + 180 479 + + $(P)$(H)fPos$(A) - 12 + 13 10 + - $(pv_name) -$(pv_value) - 180 - - + false + false + + + false - true - 39872d87:13e14015f61:420d - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(A) + + true true false - $(P)$(H)fPos$(A) - - - - - - - Action Button - true + + A 13 - false - - Default - - 40 - 0 - 0 - - - true - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 40 + 180 500 + + $(P)$(H)fPos$(A) - 13 + 14 10 + - $(pv_name) -$(pv_value) - 180 - - + false + false + + + false - true - 39872d87:13e14015f61:420e - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(H)fPos$(A) + + true true false - $(P)$(H)fPos$(A) - - - - - - - Action Button - true + + A 14 - false - - Default - - 40 - 0 - 0 - - - true - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 40 + 180 521 + + $(P)$(H)fPos$(A) - 14 + 15 10 + - $(pv_name) -$(pv_value) - 180 - - - false - true - 39872d87:13e14015f61:420f - - 18 - Action Button - false - - true - true - false - - $(P)$(H)fPos$(A) + false + false - + - - - - Action Button + false + + + + 0 + 1 true - A 15 - false - Default + Default - 40 - 0 - 0 + false + + + + 18 - + Action Button + 0 + $(P)$(H)fPos$(A) + + + true + true + false + + + + A 15 true - 1 - - - - 542 - - - $(P)$(H)fPos$(A) - 15 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 40 180 + 542 - - true - 1 - 39872d87:13e14015f61:4210 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true PF4 dual filter - - - - 320 - 0 - - 1 - - - - 1 - - 0 - true + true + 1 + true + Label + 320 + false 0 + 0 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4211 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 324 - 0 - 0 - - 1 - 1 - true - - - - - 23 - $(pv_name) -$(pv_value) - 1 - - - false - true - false - 39872d87:13e14015f61:4213 - - 20 - Menu Button - false + 0.0 + true true - false + true + + $(pv_name) +$(pv_value) false - - - - - - - - Menu Button - true - false - - Default - - 50 - 6 - - - - 1 - - - - 174 + true + Polyline + 324 + 1 + 23 + + pf4config.opi true - 1 + 0 all - $(pv_name) -$(pv_value) - 273 - - + false + false + + + false - true - false - 39872d87:13e14015f61:4214 - - 20 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + config + false + $(pv_name) +$(pv_value) + true + Action Button 50 - 6 - - - - 1 - - - - 194 + 273 + 174 + + pf4.opi true - 1 + 0 PF4 mono filter computed controls + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + less + false $(pv_name) $(pv_value) + true + Action Button + 50 273 + 194 - \ No newline at end of file + diff --git a/opticsApp/op/opi/autoconvert/qxbpm.opi b/opticsApp/op/opi/autoconvert/qxbpm.opi new file mode 100644 index 0000000..d5fb60e --- /dev/null +++ b/opticsApp/op/opi/autoconvert/qxbpm.opi @@ -0,0 +1,2793 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 370 + + true + + qxbpm + + + true + true + false + true + false + Display + 555 + 848 + 482 + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 45 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 280 + 26 + 275 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 11 + true + + + + 0 + 0 + Rectangle + + + + + + true + + + false + + $(P)current:ok + $(P)current:low + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 12 + 32 + 276 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 11 + true + + + + 0 + 0 + Rectangle + + + + + + true + + + false + + $(P)current:ok + $(P)current:low + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 12 + 32 + 292 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 11 + true + + + + 0 + 0 + Rectangle + + + + + + true + + + false + + $(P)current:ok + $(P)current:low + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 12 + 32 + 308 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + qxbpm.adl + + true + 1 + true + Label + 200 + false + 2 + 3 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + last edited: 2007-Jan-30 (prj) + + true + 1 + true + Label + 200 + false + 2 + 18 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 22 + 1 + Label + + + true + true + false + + + false + Oxford Quad Beam Position Monitor + + true + 1 + true + Label + 500 + false + 8 + 35 + + + + + qxbpm_config.opi + + true + + 1 + configure + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 14 + + Action Button + 0 + + + + + true + true + false + + + + configure + false + $(pv_name) +$(pv_value) + true + Action Button + 93 + 457 + 3 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 14 + true + + Choice 1 + Choice 2 + Choice 3 + + true + Choice Button + $(P)enable + + + + true + true + false + + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 200 + 227 + 4 + + + + false + true + 0.0 + + + + + true + + + + false + 100.0 + 0.0 + + Default + + + true + 0 + + Default Bold + + true + true + 0.0 + + + + + true + + + + false + 100.0 + 0.0 + + Default + + + true + 0 + + Default Bold + + true + true + 0.0 + + + + Secondary Axis (2) + true + + + + true + false + 100.0 + 0.0 + + Default + + + true + 0 + + Default Bold + + true + true + true + 0.0 + + + + Secondary Axis (3) + true + + + + true + false + 100.0 + 0.0 + + Default + + + true + 0 + + Default Bold + + true + true + 2 + false + + + + true + + + + 0 + 1 + true + false + + + + 220 + XY Graph + + + + + + + + true + true + false + + + true + false + true + + + Default Bold + + $(trace_0_y_pv) +$(trace_0_y_pv_value) + true + 0 + false + 1 + $(trace_0_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 + $(P)diff:x + + 1 + $(P)diff:y + + true + 100 + true + 1 + $(trace_10_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 + + + 1 + + + true + 100 + true + 1 + $(trace_11_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 + + + 1 + + + true + 100 + true + 1 + $(trace_12_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 + + + 1 + + + true + 100 + true + 1 + $(trace_13_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 + + + 1 + + + true + 100 + true + 1 + $(trace_14_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 + + + 1 + + + true + 100 + true + 1 + $(trace_15_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 + + + 1 + + + true + 100 + true + 1 + $(trace_16_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 + + + 1 + + + true + 100 + true + 1 + $(trace_17_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 + + + 1 + + + true + 100 + true + 1 + $(trace_18_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 + + + 1 + + + true + 100 + true + 1 + $(trace_19_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 + + + 1 + + + true + 100 + true + 1 + $(trace_1_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 + + + 1 + + + true + 100 + true + 1 + $(trace_2_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 + + + 1 + + + true + 100 + true + 1 + $(trace_3_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 + + + 1 + + + true + 100 + true + 1 + $(trace_4_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 + + + 1 + + + true + 100 + true + 1 + $(trace_5_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 + + + 1 + + + true + 100 + true + 1 + $(trace_6_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 + + + 1 + + + true + 100 + true + 1 + $(trace_7_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 + + + 1 + + + true + 100 + true + 1 + $(trace_8_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 + + + 1 + + + true + 100 + true + 1 + $(trace_9_y_pv) + 0 + 4 + 0 + + + + 0 + 100 + 0 + true + 0 + + + 1 + + + 1 + false + + + true + XY Graph + 220 + 319 + 81 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 16 + 1 + Label + + + true + true + false + + + false + X + + true + 1 + true + Label + 50 + false + 96 + 60 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 16 + 1 + Label + + + true + true + false + + + false + Y + + true + 1 + true + Label + 50 + false + 209 + 60 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + pos - ref (mm) + + true + 1 + true + Label + 220 + false + 318 + 60 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + + true + + + false + + $(P)current:ok + $(P)current:low + + + + true + true + false + + + false + diode currents OK + + true + 1 + true + Label + 250 + false + 50 + 278 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + + true + + + false + + $(P)current:ok + $(P)current:low + + + + true + true + false + + + false + diode currents OK + + true + 1 + true + Label + 250 + false + 50 + 278 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + + true + + + false + + $(P)current:ok + $(P)current:low + + + + true + true + false + + + false + diode currents too low + + true + 1 + true + Label + 250 + false + 50 + 278 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 1 + Label + + + + true + + + false + + $(P)current:ok + + + + true + true + false + + + false + not all diodes above threshold + + true + 1 + true + Label + 250 + false + 50 + 298 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 1 + Label + + + + true + + + false + + $(P)current:ok + + + + true + true + false + + + false + all diodes above threshold + + true + 1 + true + Label + 250 + false + 50 + 298 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + + true + + + false + + $(P)current:low + + + + true + true + false + + + false + not all diodes below threshold + + true + 1 + true + Label + 250 + false + 50 + 307 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + + true + + + false + + $(P)current:low + + + + true + true + false + + + false + all diodes below threshold + + true + 1 + true + Label + 250 + false + 50 + 307 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 + 20 + 1 + Text Update + 0 + true + $(P)current:a + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 100 + false + 70 + 192 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 + 20 + 1 + Text Update + 0 + true + $(P)current:c + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 100 + false + 183 + 192 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 16 + 1 + Label + + + true + true + false + + + false + A + + true + 1 + true + Label + 20 + false + 43 + 194 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 16 + 1 + Label + + + true + true + false + + + false + C + + true + 1 + true + Label + 20 + false + 285 + 194 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 + 20 + 1 + Text Update + 0 + true + $(P)current:b + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 100 + false + 69 + 220 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 + 20 + 1 + Text Update + 0 + true + $(P)current:d + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 100 + false + 182 + 220 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 16 + 1 + Label + + + true + true + false + + + false + B + + true + 1 + true + Label + 20 + false + 42 + 222 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 16 + 1 + Label + + + true + true + false + + + false + D + + true + 1 + true + Label + 20 + false + 284 + 222 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 16 + 1 + Label + + + true + true + false + + + false + photodiode currents + + true + 1 + true + Label + 200 + false + 77 + 174 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 16 + 2 + Label + + + true + true + false + + + false + A+B+C+D + + true + 1 + true + Label + 20 + false + 99 + 252 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 + 20 + 1 + Text Update + 0 + true + $(P)current:total + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 100 + false + 126 + 250 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 16 + 1 + Label + + + true + true + false + + + false + pos + + true + 1 + true + Label + 50 + false + 11 + 82 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + threshold: + + true + 1 + true + Label + 76 + false + 318 + 309 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)current:low:raw + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 76 + false + 402 + 308 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 0 + Label + + + true + true + false + + + false + amplifier range (all photodiodes use same range) + + true + 1 + true + Label + 400 + false + 13 + 330 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + true + + Choice 1 + Choice 2 + Choice 3 + + true + Choice Button + $(P)gain + + + + true + true + false + + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 530 + 14 + 342 + + + + + userCalcOut.opi + + true + diff:x + + 1 + calculation + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + + + + + true + true + false + + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 18 + 158 + 140 + + + + + userCalcOut.opi + + true + diff:y + + 1 + calculation + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + + + + + true + true + false + + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 18 + 268 + 140 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 16 + 1 + Label + + + true + true + false + + + false + diff + + true + 1 + true + Label + 50 + false + 11 + 141 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 20 + 1 + Text Update + 0 + true + $(P)diff:x + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 84 + false + 71 + 140 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 20 + 1 + Text Update + 0 + true + $(P)diff:y + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 84 + false + 184 + 140 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 16 + 1 + Label + + + true + true + false + + + false + ref + + true + 1 + true + Label + 50 + false + 11 + 116 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)ref:x + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 71 + 114 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)ref:y + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 184 + 114 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 24 + 1 + Text Update + 0 + true + $(P)pos:x + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 100 + false + 71 + 81 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 24 + 1 + Text Update + 0 + true + $(P)pos:y + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 100 + false + 184 + 81 + + diff --git a/opticsApp/op/opi/qxbpm_calib.opi b/opticsApp/op/opi/autoconvert/qxbpm_calib.opi similarity index 50% rename from opticsApp/op/opi/qxbpm_calib.opi rename to opticsApp/op/opi/autoconvert/qxbpm_calib.opi index 9663e60..34d3cc9 100644 --- a/opticsApp/op/opi/qxbpm_calib.opi +++ b/opticsApp/op/opi/autoconvert/qxbpm_calib.opi @@ -1,1231 +1,1074 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 370 true - 39872d87:13e14015f61:430d - 3.1.2.20120830 + qxbpm_calib + + true + true + false true - 370 - qxbpm_calib false - false - - - - - - Display - true 430 - - true - 5 - - false - -1 - -1 - - - 151 31 - + 151 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 0.0 + + Default + + false + + + + false + 28 + true - + - 39872d87:13e14015f61:4318 - - - - - 109 - true + 0 + 8 Rectangle - false - 255 + + + + + + true + + + false + + $(P)set_defaults + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 144 + 135 + 144 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 370 + false + + + + false + 109 + true + + + 0 - 0 - - - 1 2 - true - - - - - 69 + Rectangle + + + + + true + true + false + + $(pv_name) $(pv_value) + true + true + Rectangle + 370 22 - false + 69 - - false - true - 0.0 - - - - 39872d87:13e14015f61:431d + + + false + 255 + true + false + + + - + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false 170 - true + true + + + + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 370 + 22 + 186 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 370 - 0 - 0 - - - 1 - 2 - true - - - - - 186 - $(pv_name) -$(pv_value) - 22 + false + + + false - - - - true - - true - 39872d87:13e14015f61:4315 - 28 - Grouping Container + true + + + + 0 + 8 + Rectangle + + + + + + true + + + false + + $(P)set_offsets + + true true false + + $(pv_name) +$(pv_value) true - false + true + Rectangle + 144 + 197 + 261 + + + + false + 255 + true + false - + - - - - Grouping Container - true - - Default - - 144 - 0 - - false - 1 + + + + false - - 144 - - 135 - - false - true - 0.0 - - - - 39872d87:13e14015f61:4317 - - - - - 28 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 144 - 0 - 0 - - - - true - - - false - - $(P)set_defaults - - - - 1 - 8 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 39872d87:13e14015f61:4316 - - 20 - Action Button - false - - true - true - false - - $(P)set_defaults - - - - - - - Action Button - true - set defaults - false - - Default - - 130 - 0 - 0 - - - - true - 1 - - - - 4 - - - $(P)set_defaults - 1 - 10 - - - - $(pv_name) -$(pv_value) - 7 - - - - - true - - true - 39872d87:13e14015f61:431a - - 37 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container + 0 + 1 true + + + + 0.0 - Default + Default - 350 - 0 - - false - 1 - - - - - 99 - - 32 - - true - 1 - 39872d87:13e14015f61:431b - false - - 16 - Label - - true - true - false - - true - false - - - - - - - Label - true - Set amplifier gains and other settings - - - - 350 - 0 - - 1 - - - - 0 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:431c - false - - 16 - Label - - true - true - false - - true - false - - - - - - - Label - true - to factory defaults. - - - - 350 - 0 - - 1 - - - - 0 - - 21 - true - - 0 - - - - - true - - true - 39872d87:13e14015f61:4321 - - 28 - Grouping Container - - true - true - false - - true - false - - - + false - Grouping Container - true - - Default - - 144 - 0 - - false - 1 - - - - - 261 - - 197 - - false - true - 0.0 - - - - 39872d87:13e14015f61:4323 - - - - - 28 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 144 - 0 - 0 - - - - true - - - false - - $(P)set_offsets - - - - 1 - 8 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 39872d87:13e14015f61:4322 - - 20 - Action Button - false - - true - true - false - - $(P)set_offsets - - - - - - - Action Button - true - set offsets - false - - Default - - 130 - 0 - 0 - - - - true - 1 - - - - 4 - - - $(P)set_offsets - 1 - 10 - - - - $(pv_name) -$(pv_value) - 7 - - - - - true - - true - 39872d87:13e14015f61:4324 - + false 28 - Grouping Container + true + + + + 0 + 8 + Rectangle + + + + + + true + + + false + + $(P)set_offsets + + true true false + + $(pv_name) +$(pv_value) true - false - - - - - - - Grouping Container - true - - Default - + true + Rectangle 80 - 0 - - false - 1 - - - - - 261 - 82 - - false - true - 0.0 - - - - 39872d87:13e14015f61:4326 - - - - - 28 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 80 - 0 - 0 - - - - true - - - false - - $(P)set_offsets - - - - 1 - 8 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 39872d87:13e14015f61:4325 - - 20 - Action Button - false - - true - true - false - - $(P)set_offsets - - - - - - - Action Button - true - idle - false - - Default - - 68 - 0 - 0 - - - - true - 1 - - - - 4 - - - $(P)set_offsets - 0 - 10 - - - - $(pv_name) -$(pv_value) - 6 - + 261 - - true - 1 - 39872d87:13e14015f61:430e + + false - - 10 - Label - - true - true - false - - true - false - - - - Label - true - qxbpm_calib.adl - - - - 200 - 0 - - 1 - 0 - - 3 - true - - 2 - - - true - 1 - 39872d87:13e14015f61:430f - false - + 0 + 1 + true + + + + + + 10 + 0 Label + true true false - true + false + qxbpm_calib.adl + + true + 1 + true + Label + 200 + false + 2 + 3 + + + + false - - - - Label - true - last edited: 2007-Feb-12 (prj) - - - - 200 - 0 - - 1 + 0 + 1 + true + + + + + + + 10 0 - - 18 - true - - 2 - - - true - 1 - 39872d87:13e14015f61:4310 - false - - 20 Label + true true false - true + false + last edited: 2007-Feb-12 (prj) + + true + 1 + true + Label + 200 + false + 2 + 18 + + + + false - - - - Label - true - Oxford Quad Beam Position Monitor - - - - 400 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 1 - - 35 - true - - 8 - - - false - true - false - 39872d87:13e14015f61:4311 - - 14 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 93 - 6 - - - - 1 - - - - 3 + + false + Oxford Quad Beam Position Monitor + + true + 1 + true + Label + 400 + false + 8 + 35 + + qxbpm_config.opi true - 0 + 1 configure + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 14 + + Action Button + 0 + + + + + true + true + false + + + + configure + false $(pv_name) $(pv_value) + true + Action Button + 93 311 + 3 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4312 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)settling + + false + 0.0 + true true false - 1 - false + 0 - $(P)settling - - - - false - 0 - - - false - - - - 0 - - 321 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 91 + 321 - - true - 1 - 39872d87:13e14015f61:4313 + + false - + + + + + + + 0 + 1 + true + + + + + + 12 + 0 Label + true true false - true + false + settling time after each gain change before offset is read. + + true + 1 + true + Label + 150 + false + 29 + 306 + + + + false + false + false - + + true + + + + 0 + 1 + true + + + + false - + - Label + 1 + 18 + 1 + Text Update + 0 + true + $(P)settling.EGU + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 100 + false + 196 + 321 + + + + + $(P)set_defaults + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 true - settling time after each gain change before offset is read. - + Default - 150 - 0 + false + + + + 20 + + Action Button + 0 + $(P)set_defaults + - 1 + + true + true + false + + + + set defaults + true + $(pv_name) +$(pv_value) + true + Action Button + 130 + 142 + 148 + + + + false + + + - 0 - - 306 - true + 0 + 1 + true + + + + + + + 12 + 1 + Label + + + true + true + false + + + false + default calibration + true + 1 + true + Label + 150 + false 29 + 74 - - true - true - 1 - false - 39872d87:13e14015f61:4314 + + false - 0.0 - - 18 - Text Update - false + + + + + + + 0 + 1 + true + + + + + + + 16 + 0 + Label + true true false - 1 - true - false - $(P)settling.EGU + + false + Set amplifier gains and other settings + + true + 1 + true + Label + 350 + false + 32 + 99 + + + + false - + - - - - Text Update - true - ###### - false - 0 - - - - 100 - 0 - - - 1 - 1 - - 321 - false - $(pv_name) -$(pv_value) - 196 - - - true - 1 - 39872d87:13e14015f61:4319 - false - - 12 + 0 + 1 + true + + + + + + + 16 + 0 Label + true true false - true + false + to factory defaults. + + true + 1 + true + Label + 350 + false + 32 + 120 + + + + false - - - - Label - true - default calibration - - - - 150 - 0 - - 1 - 1 - - 74 - true - - 29 - - - true - 1 - 39872d87:13e14015f61:431e - false - + 0 + 1 + true + + + + + + 12 + 1 Label + true true false - true + false + amplifier offsets + + true + 1 + true + Label + 150 + false + 29 + 191 + + + + false - - - - Label - true - amplifier offsets - - - - 150 - 0 - - 1 - 1 - - 191 - true - - 29 - - - true - 1 - 39872d87:13e14015f61:431f - false - + 0 + 1 + true + + + + + + 16 + 0 Label + true true false - true + false + Discover amplifier offsets for each range. + + true + 1 + true + Label + 350 + false + 29 + 216 + + + + false - - - - Label - true - Discover amplifier offsets for each range. - - - - 350 - 0 - - 1 - 0 - - 216 - true - - 29 - - - true - 1 - 39872d87:13e14015f61:4320 - false - + 0 + 1 + true + + + + + + 16 + 0 Label + true true false - true + false + Make SURE that the X-ray beam is OFF. + + true + 1 + true + Label + 350 + false + 29 + 237 + + + + + $(P)set_offsets + 1 + 10 + + + + + false + false - + - - - - Label + false + + + + 0 + 1 true - Make SURE that the X-ray beam is OFF. - + Default - 350 - 0 + false + + + + 20 + + Action Button + 0 + $(P)set_offsets + - 1 + + true + true + false + + + + set offsets + true + $(pv_name) +$(pv_value) + true + Action Button + 130 + 204 + 265 + + + + + $(P)set_offsets + 0 + 10 + + + + + false + false + + + + false - 0 - - 237 - true - - 29 + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)set_offsets + + + + true + true + false + + + + idle + true + $(pv_name) +$(pv_value) + true + Action Button + 68 + 88 + 265 - \ No newline at end of file + diff --git a/opticsApp/op/opi/autoconvert/qxbpm_config.opi b/opticsApp/op/opi/autoconvert/qxbpm_config.opi new file mode 100644 index 0000000..6eef7a6 --- /dev/null +++ b/opticsApp/op/opi/autoconvert/qxbpm_config.opi @@ -0,0 +1,6661 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 438 + + true + + qxbpm_config + + + true + true + false + true + false + Display + 776 + 661 + 527 + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 45 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 280 + 26 + 152 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 11 + true + + + + 0 + 0 + Rectangle + + + + + + true + + + false + + $(P)current:ok + $(P)current:low + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 12 + 32 + 153 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 11 + true + + + + 0 + 0 + Rectangle + + + + + + true + + + false + + $(P)current:ok + $(P)current:low + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 12 + 32 + 169 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 11 + true + + + + 0 + 0 + Rectangle + + + + + + true + + + false + + $(P)current:ok + $(P)current:low + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 12 + 32 + 185 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + qxbpm_config.adl + + true + 1 + true + Label + 200 + false + 2 + 3 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + last edited: 2007-Mar-01 (prj) + + true + 1 + true + Label + 200 + false + 2 + 18 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 22 + 1 + Label + + + true + true + false + + + false + Oxford Quad XBPM Configuration + + true + 1 + true + Label + 400 + false + 231 + 6 + + + + + qxbpm.opi + + true + + 1 + main screen + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 14 + + Action Button + 0 + + + + + true + true + false + + + + main screen + false + $(pv_name) +$(pv_value) + true + Action Button + 93 + 674 + 8 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 14 + true + + Choice 1 + Choice 2 + Choice 3 + + true + Choice Button + $(P)gain + + + + true + true + false + + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 440 + 332 + 120 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + true + true + false + + + false + the BPM controller needs ~3 sec to fill 100 sample buffer (~30 ms/sample) + + true + 1 + true + Label + 400 + false + 228 + 32 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + + true + + + false + + $(P)current:ok + $(P)current:low + + + + true + true + false + + + false + diode currents OK + + true + 1 + true + Label + 250 + false + 50 + 155 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + + true + + + false + + $(P)current:ok + $(P)current:low + + + + true + true + false + + + false + diode currents OK + + true + 1 + true + Label + 250 + false + 50 + 155 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + + true + + + false + + $(P)current:ok + $(P)current:low + + + + true + true + false + + + false + diode currents too low + + true + 1 + true + Label + 250 + false + 50 + 155 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 1 + Label + + + + true + + + false + + $(P)current:ok + + + + true + true + false + + + false + not all diodes above threshold + + true + 1 + true + Label + 250 + false + 50 + 175 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 1 + Label + + + + true + + + false + + $(P)current:ok + + + + true + true + false + + + false + all diodes above threshold + + true + 1 + true + Label + 250 + false + 50 + 175 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + + true + + + false + + $(P)current:low + + + + true + true + false + + + false + not all diodes below threshold + + true + 1 + true + Label + 250 + false + 50 + 184 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 1 + Label + + + + true + + + false + + $(P)current:low + + + + true + true + false + + + false + all diodes below threshold + + true + 1 + true + Label + 250 + false + 50 + 184 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r1:A1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 20 + 308 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r1:B1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 105 + 308 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r1:C1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 190 + 308 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r1:D1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 275 + 308 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r2:A1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 20 + 329 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r2:B1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 105 + 329 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r2:C1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 190 + 329 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r2:D1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 275 + 329 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r3:A1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 20 + 350 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r3:B1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 105 + 350 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r3:C1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 190 + 350 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r3:D1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 275 + 350 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r4:A1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 20 + 371 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r4:B1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 105 + 371 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r4:C1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 190 + 371 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r4:D1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 275 + 371 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r5:A1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 20 + 392 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r5:B1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 105 + 392 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r5:C1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 190 + 392 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r5:D1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 275 + 392 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r6:A1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 20 + 413 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r6:B1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 105 + 413 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r6:C1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 190 + 413 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r6:D1 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 275 + 413 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r1:A2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 425 + 308 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r1:B2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 510 + 308 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r1:C2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 595 + 308 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r1:D2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 680 + 308 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r2:A2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 425 + 329 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r2:B2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 510 + 329 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r2:C2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 595 + 329 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r2:D2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 680 + 329 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r3:A2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 425 + 350 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r3:B2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 510 + 350 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r3:C2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 595 + 350 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r3:D2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 680 + 350 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r4:A2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 425 + 371 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r4:B2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 510 + 371 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r4:C2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 595 + 371 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r4:D2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 680 + 371 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r5:A2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 425 + 392 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r5:B2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 510 + 392 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r5:C2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 595 + 392 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r5:D2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 680 + 392 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r6:A2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 425 + 413 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r6:B2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 510 + 413 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r6:C2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 595 + 413 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)r6:D2 + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 680 + 413 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 6 + 12 + 1 + Text Update + 0 + true + $(P)gain.ZRST + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 360 + 308 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 6 + 12 + 1 + Text Update + 0 + true + $(P)gain.ONST + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 360 + 329 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 6 + 12 + 1 + Text Update + 0 + true + $(P)gain.TWST + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 360 + 350 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 6 + 12 + 1 + Text Update + 0 + true + $(P)gain.THST + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 360 + 371 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 6 + 12 + 1 + Text Update + 0 + true + $(P)gain.FRST + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 360 + 392 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 6 + 12 + 1 + Text Update + 0 + true + $(P)gain.FVST + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 360 + 413 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 1 + Label + + + true + true + false + + + false + diode A + + true + 1 + true + Label + 80 + false + 20 + 298 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 1 + Label + + + true + true + false + + + false + diode B + + true + 1 + true + Label + 80 + false + 105 + 298 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 1 + Label + + + true + true + false + + + false + diode C + + true + 1 + true + Label + 80 + false + 190 + 298 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 1 + Label + + + true + true + false + + + false + diode D + + true + 1 + true + Label + 80 + false + 275 + 298 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + cG : photodiode gain multiplier adjustment (float) + + true + 1 + true + Label + 300 + false + 37 + 280 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + cB : photodiode gain raw offset (integer) + + true + 1 + true + Label + 300 + false + 442 + 280 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 1 + Label + + + true + true + false + + + false + diode A + + true + 1 + true + Label + 80 + false + 425 + 298 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 1 + Label + + + true + true + false + + + false + diode B + + true + 1 + true + Label + 80 + false + 510 + 298 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 1 + Label + + + true + true + false + + + false + diode C + + true + 1 + true + Label + 80 + false + 595 + 298 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 1 + Label + + + true + true + false + + + false + diode D + + true + 1 + true + Label + 80 + false + 680 + 298 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 1 + Label + + + true + true + false + + + false + range + + true + 1 + true + Label + 60 + false + 360 + 298 + + + + + $(P)init + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 17 + + Action Button + 0 + $(P)init + + + + true + true + false + + + + initialize + true + $(pv_name) +$(pv_value) + true + Action Button + 104 + 15 + 254 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 0 + Label + + + true + true + false + + + false + VxWorks debug level + + true + 1 + true + Label + 100 + false + 18 + 221 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)debug + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 100 + 18 + 232 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)current:low:raw + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 328 + 190 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 0 + Label + + + true + true + false + + + false + raw diode signal lower threshold + + true + 1 + true + Label + 300 + false + 413 + 191 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 1 + Label + + + true + true + false + + + false + raw diode values + + true + 1 + true + Label + 104 + false + 328 + 151 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 17 + 1 + Text Update + 0 + true + $(P)current:a:raw + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 433 + 149 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 17 + 1 + Text Update + 0 + true + $(P)current:b:raw + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 518 + 149 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 17 + 1 + Text Update + 0 + true + $(P)current:c:raw + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 603 + 149 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 17 + 1 + Text Update + 0 + true + $(P)current:d:raw + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 688 + 149 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 1 + Label + + + true + true + false + + + false + diode current, A + + true + 1 + true + Label + 104 + false + 327 + 170 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 + 17 + 1 + Text Update + 0 + true + $(P)current:a + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 432 + 168 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 + 17 + 1 + Text Update + 0 + true + $(P)current:b + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 517 + 168 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 + 17 + 1 + Text Update + 0 + true + $(P)current:c + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 602 + 168 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 2 + 17 + 1 + Text Update + 0 + true + $(P)current:d + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 687 + 168 + + + + + qxbpm_calib.opi + + true + + 1 + main screen + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 14 + + Action Button + 0 + + + + + true + true + false + + + + calibrate + false + $(pv_name) +$(pv_value) + true + Action Button + 93 + 664 + 259 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + true + + Choice 1 + Choice 2 + Choice 3 + + true + Choice Button + $(P)enable + + + + true + true + false + + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 300 + 14 + 49 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + true + + Choice 1 + Choice 2 + Choice 3 + + true + Choice Button + $(P)mode + + + + true + true + false + + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 300 + 14 + 70 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + # measurements for AVERAGE or WINDOW + + true + 1 + true + Label + 300 + false + 14 + 91 + + + + false + false + + + + 1.0 + true + + + + 0 + 1 + true + + Default + + false + + + + 40 + true + true + 100.0 + 0.0 + Scrollbar + 1.0 + $(P)buflen + + + + true + true + false + + + true + 1.0 + $(pv_name) +$(pv_value) + true + Scrollbar + 300 + 14 + 102 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 0 + Label + + + true + true + false + + + false + RS232 poll period, s + + true + 1 + true + Label + 130 + false + 334 + 49 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)period + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 130 + 334 + 60 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 0 + Label + + + true + true + false + + + false + device address + + true + 1 + true + Label + 130 + false + 334 + 83 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 6 + 18 + 0 + Text Update + 0 + true + $(P)address + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 130 + false + 334 + 94 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 2 + Label + + + true + true + false + + + false + RS232 port + + true + 1 + true + Label + 90 + false + 476 + 49 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 2 + Label + + + true + true + false + + + false + RS232 out + + true + 1 + true + Label + 90 + false + 476 + 66 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 2 + Label + + + true + true + false + + + false + RS232 in + + true + 1 + true + Label + 90 + false + 476 + 83 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 2 + Label + + + true + true + false + + + false + RS232 status + + true + 1 + true + Label + 90 + false + 476 + 100 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 6 + 12 + 0 + Text Update + 0 + true + $(S).SEVR + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 200 + false + 571 + 100 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 6 + 12 + 0 + Text Update + 0 + true + $(S).AINP + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 200 + false + 571 + 83 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 6 + 12 + 0 + Text Update + 0 + true + $(S).AOUT + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 200 + false + 571 + 66 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 6 + 12 + 0 + Text Update + 0 + true + $(P)port + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 200 + false + 571 + 49 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + photodiode current, I_n = cG * (raw_signal - cB) + + true + 1 + true + Label + 440 + false + 156 + 219 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 2 + Label + + + true + true + false + + + false + position_X = + + true + 1 + true + Label + 100 + false + 156 + 238 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)GX + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 261 + 238 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 0 + Label + + + true + true + false + + + false + * ( I_B - I_D ) / ( I_B + I_D ) + + true + 1 + true + Label + 250 + false + 346 + 238 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 2 + Label + + + true + true + false + + + false + position_Y = + + true + 1 + true + Label + 100 + false + 156 + 258 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 17 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)GY + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 261 + 258 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 0 + Label + + + true + true + false + + + false + * ( I_A - I_C ) / ( I_A + I_C ) + + true + 1 + true + Label + 250 + false + 346 + 258 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 1 + Label + + + true + true + false + + + false + 1/A/top + + true + 1 + true + Label + 80 + false + 433 + 136 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 1 + Label + + + true + true + false + + + false + 2/B/left + + true + 1 + true + Label + 80 + false + 518 + 136 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 1 + Label + + + true + true + false + + + false + 3/C/bottom + + true + 1 + true + Label + 80 + false + 603 + 136 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 12 + 1 + Label + + + true + true + false + + + false + 4/D/right + + true + 1 + true + Label + 80 + false + 688 + 136 + + diff --git a/opticsApp/op/opi/table.opi b/opticsApp/op/opi/autoconvert/table.opi similarity index 73% rename from opticsApp/op/opi/table.opi rename to opticsApp/op/opi/autoconvert/table.opi index 4450dfd..0f24fd0 100644 --- a/opticsApp/op/opi/table.opi +++ b/opticsApp/op/opi/autoconvert/table.opi @@ -1,78 +1,76 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 390 true - 39872d87:13e14015f61:4463 - 3.1.2.20120830 + table + + true + true + false true - 390 - table false - false - - - - - - Display - true 230 - - true - 5 - - false - -1 - -1 - - - 214 - 10 - - false - true - 0.0 - - - - 39872d87:13e14015f61:446a - - - - - 18 - true - Rectangle - false + 1119 + 494 + + + false 255 - - true - true - false - - true - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 80 + false + + + + false + 18 + true + + + 0 - 0 + 2 + Rectangle + + @@ -84,62 +82,62 @@ $(P)$(T).SET - - 1 - 2 - true - - - - - 260 - $(pv_name) -$(pv_value) - 25 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4470 - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 80 + 25 + 260 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 80 + false + + + + false + 18 + true + + + 0 - 0 + 2 + Rectangle + + @@ -151,62 +149,62 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 80 - $(pv_name) -$(pv_value) - 25 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4471 - - - - - 22 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 80 + 25 + 80 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 22 + true + + + 0 - 0 + 2 + Rectangle + + @@ -218,119 +216,119 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 78 - $(pv_name) -$(pv_value) - 23 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4475 - - - - - 24 - true - Rectangle - false - 255 true true false - false - + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 23 + 78 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 100 - 0 - 0 - - - 1 - 0 - true - - - - - 138 - $(pv_name) -$(pv_value) - 5 + false + + + false - - - false - true - 0.0 + 24 + true - + - 39872d87:13e14015f61:447a - - - - - 18 - true + 0 + 0 Rectangle - false - 255 + + + true true false - true - + + $(pv_name) +$(pv_value) + false + true + Rectangle + 100 + 5 + 138 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 80 + false + + + + false + 18 + true + + + 0 - 0 + 2 + Rectangle + + @@ -342,62 +340,62 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 80 - $(pv_name) -$(pv_value) - 140 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:447b - - - - - 22 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 80 + 140 + 80 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 22 + true + + + 0 - 0 + 2 + Rectangle + + @@ -409,119 +407,119 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 78 + + true + true + false + + $(pv_name) $(pv_value) + true + true + Rectangle + 84 138 - false + 78 - + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 24 + true - 39872d87:13e14015f61:447f - - - - - 24 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle - true - - - - false - - Default - 100 - 0 - 0 - - - 1 - 0 - true - - - - - 138 - $(pv_name) -$(pv_value) 120 - false + 138 - - false - true - 0.0 - - - - 39872d87:13e14015f61:4483 - - - - - 18 - true - Rectangle - false + + + false 255 - - true - true - false - - true - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 80 + false + + + + false + 18 + true + + + 0 - 0 + 2 + Rectangle + + @@ -533,62 +531,62 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 170 - $(pv_name) -$(pv_value) - 25 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4484 - - - - - 22 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 80 + 25 + 170 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 22 + true + + + 0 - 0 + 2 + Rectangle + + @@ -600,62 +598,62 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 168 - $(pv_name) -$(pv_value) - 23 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4488 - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 84 + 23 + 168 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 80 + false + + + + false + 18 + true + + + 0 - 0 + 2 + Rectangle + + @@ -667,62 +665,62 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 170 + + true + true + false + + $(pv_name) $(pv_value) + true + true + Rectangle + 80 140 - false + 170 - - false - true - 0.0 - - - - 39872d87:13e14015f61:4489 + + + false + 255 + true + false + + + - - 22 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 22 + true + + + 0 - 0 + 2 + Rectangle + + @@ -734,188 +732,178 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 168 - $(pv_name) -$(pv_value) - 138 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:44a0 - - - - - 22 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 84 + 138 + 168 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 84 - 0 - 0 - - - - true - - - false - - $(P)$(T).SET - - - - 1 - 2 - true - - - - - 258 - $(pv_name) -$(pv_value) - 23 + false + + + false - - - false - true - 100.0 + 24 + true - 39872d87:13e14015f61:44a4 - - - - - 24 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 100 + 5 + 228 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 100 - 0 - 0 - - - 1 - 0 - true - - - - - 318 - $(pv_name) -$(pv_value) - 5 + false + + + false - - - false - true - 0.0 + 24 + true - + - 39872d87:13e14015f61:44a8 - - - - - 18 - true + 0 + 0 Rectangle - false - 255 + + + true true false - true - + + $(pv_name) +$(pv_value) + false + true + Rectangle + 100 + 120 + 228 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 80 + false + + + + false + 22 + true + + + 0 - 0 - - + 2 + Rectangle + + + + true @@ -925,62 +913,119 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 260 + + true + true + false + + $(pv_name) $(pv_value) - 140 - false - - - false + true true - 0.0 - - - - 39872d87:13e14015f61:44a9 + Rectangle + 84 + 23 + 258 + + + + false + 255 + true + false + + + - - 22 - true - Rectangle + false + + + + 0 + 1 + true + + + + 100.0 + + Default + false - 255 + + + + false + 24 + true + + + + 0 + 0 + Rectangle + + + true true false - true - + + $(pv_name) +$(pv_value) + false + true + Rectangle + 100 + 5 + 318 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 18 + true + + + 0 - 0 + 2 + Rectangle + + @@ -992,1204 +1037,512 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 258 - $(pv_name) -$(pv_value) - 138 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:44ad - - - - - 24 - true - Rectangle - false - 255 true true false - false - + + $(pv_name) +$(pv_value) + true + true + Rectangle + 80 + 140 + 260 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 + false + + + + false + 22 + true + + + 0 - 0 - + 2 + Rectangle + - 1 - 0 - true - - - - - 318 - $(pv_name) -$(pv_value) - 120 - false - - - - true - - true - 39872d87:13e14015f61:448a - - 24 - Grouping Container + + + + true + + + false + + $(P)$(T).SET + + true true false + + $(pv_name) +$(pv_value) true - false + true + Rectangle + 84 + 138 + 258 + + + + false + 255 + true + false - + - - - - Grouping Container - true - - Default - - 215 - 0 - - false - 1 + + + + false - - 228 - - 5 - - false - true - 100.0 - - - - 39872d87:13e14015f61:448e - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 100 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4492 - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 100 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 115 - false - - - false - true - false - 39872d87:13e14015f61:448b - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 35 - 6 - - - - 1 - - - - 2 - - - scanParmsCustom.opi - - true - $(Q)Y - $(Q)Y - $(Q)Y - $(T).LEGU - - 0 - Setup scan parameters - - - $(pv_name) -$(pv_value) - 3 - - - false - true - 39872d87:13e14015f61:448c - - 20 - Action Button - false - - true - true - false - - $(P)$(Q)Y:scanParms.GO - - - - - - - Action Button - true - Go - false - - Default - - 21 - 0 - 0 - - - - false - 1 - - - - 2 - - - $(P)$(Q)Y:scanParms.GO - 1 - 10 - - - - $(pv_name) -$(pv_value) - 40 - - - false - true - 39872d87:13e14015f61:448d - - 20 - Action Button - false - - true - true - false - - $(P)allstop.VAL - - - - - - - Action Button - true - Kill - false - - Default - - 35 - 0 - 0 - - - - false - 1 - - - - 2 - - - $(P)allstop.VAL - 1 - 10 - - - - $(pv_name) -$(pv_value) - 63 - - - false - true - false - 39872d87:13e14015f61:448f - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 35 - 6 - - - - 1 - - - - 2 - - - scanParmsCustom.opi - - true - $(Q)AY - $(Q)AY - $(Q)AY - $(T).AEGU - - 0 - Setup scan parameters - - - $(pv_name) -$(pv_value) - 118 - - - false - true - 39872d87:13e14015f61:4490 - - 20 - Action Button - false - - true - true - false - - $(P)$(Q)AY:scanParms.GO - - - - - - - Action Button - true - Go - false - - Default - - 21 - 0 - 0 - - - - false - 1 - - - - 2 - - - $(P)$(Q)AY:scanParms.GO - 1 - 10 - - - - $(pv_name) -$(pv_value) - 155 - - - false - true - 39872d87:13e14015f61:4491 - - 20 - Action Button - false - - true - true - false - - $(P)allstop.VAL - - - - - - - Action Button - true - Kill - false - - Default - - 35 - 0 - 0 - - - - false - 1 - - - - 2 - - - $(P)allstop.VAL - 1 - 10 - - - - $(pv_name) -$(pv_value) - 178 - - - - - true - - true - 39872d87:13e14015f61:4494 - - 20 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container + 0 + 1 true + + + + 100.0 - Default + Default - 100 - 0 + false + + + + false + 24 + true + + + + 0 + 0 + Rectangle + + - false - 1 - - - - - 370 - - 0 - - false - true - 39872d87:13e14015f61:4495 - - 20 - Action Button - false - - true - true - false - - $(P)$(T).SYNC - - - - - - - Action Button - true - Sync - false - - Default - - 50 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)$(T).SYNC - 1 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:4496 - - 20 - Action Button - false - - true - true - false - - $(P)$(T).INIT - - - - - - - Action Button - true - Init - false - - Default - - 50 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)$(T).INIT - 1 - 10 - - - - $(pv_name) -$(pv_value) - 50 - - - - - true - - true - 39872d87:13e14015f61:4499 - - 20 - Grouping Container true true false - true - false + + $(pv_name) +$(pv_value) + false + true + Rectangle + 100 + 120 + 318 + + + + false + false + false - + - - - - Grouping Container - true - - Default - - 60 - 0 - - false - 1 + true - - 345 - - 120 - - true - 1 - 39872d87:13e14015f61:449a - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Done - - - - 60 - 0 - - - - true - - - false - - $(P)$(Q):done.VAL - - - 1 - - - - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:449b - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Moving - - - - 60 - 0 - - - - true - - - false - - $(P)$(Q):done.VAL - - - 1 - - - - 1 - - 0 - true - - 0 - - - - true - true - 1 - false - 39872d87:13e14015f61:4464 - false - 0.0 - + 0 + 1 + true + + + + false + + + + 1 20 + 1 Text Update - false + 0 + true + $(P)$(T).DESC + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).DESC - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 230 - 0 - - - 1 - - - - 1 - - 0 false - $(pv_name) -$(pv_value) 0 + 0 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4465 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 230 - 0 - 0 - - 1 - 1 - true - - - - - 21 - $(pv_name) -$(pv_value) - 0 - - - false - true - false - 39872d87:13e14015f61:4466 - - 15 - Menu Button - false + 0.0 + true true - false + true + + $(pv_name) +$(pv_value) false - - - - - - - - Menu Button - true - false - - Default - - 135 - 6 - - - - 1 - - - - 43 + true + Polyline + 230 + 0 + 21 + + table_refresh.opi true - 1 + 0 Refresh fixed-point menu - $(pv_name) -$(pv_value) - 95 - - - false - true - true - 39872d87:13e14015f61:4467 - - 20 - Menu Button + false + false + + + + false + + + + 0 + 1 + true + + Default + false + + + + 15 + + Action Button + 0 + + + true true false - false - $(P)$(Q)fpSelect + + + REFRESH MENU + false + $(pv_name) +$(pv_value) + true + Action Button + 135 + 95 + 43 + + + + true + false + false - + - - - - Menu Button + false + + + + 6 + 1 true - false - Default + Default - 135 - 6 + false + + + + 20 - + Menu Button + $(P)$(Q)fpSelect - 1 - - - - 23 - + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 135 95 + 23 - - true - 1 - 39872d87:13e14015f61:4468 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true Fixed point: - - - - 85 - 0 - - 1 - - - - 0 - - 27 - true + true + 1 + true + Label + 85 + false 5 + 27 - - true - true - 1 - false - 39872d87:13e14015f61:4469 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(T).EZ + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).EZ - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 262 false - $(pv_name) -$(pv_value) 25 + 262 - - true - true - 1 - false - 39872d87:13e14015f61:446b + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(T).EX + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).EX + 1 + true + Text Update + 80 + false + 25 + 82 + + + + false - + - - - - Text Update + + + + 0 + 1 true - ###### - false - 0 - + - 80 - 0 - - - 1 - - - - 1 - - 82 - false - $(pv_name) -$(pv_value) - 25 - - - true - 1 - 39872d87:13e14015f61:446c - false - - 18 - Label - - true - true - false - - true - false - - - - + - Label - true - Limit - - - - 60 - 0 + 18 + 1 + Label @@ -2201,560 +1554,546 @@ $(pv_value) $(P)$(T).LVIO - 1 - - - - 1 - - 63 - true + + true + true + false + + + false + Limit + true + 1 + true + Label + 60 + false 90 + 63 - - true - true - 1 - false - 39872d87:13e14015f61:446d + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(T).LEGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).LEGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 1 - - 63 false - $(pv_name) -$(pv_value) 25 + 63 - - true - 1 - 39872d87:13e14015f61:446e + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true X - - - - 20 - 0 - - 1 - - - - 0 - - 102 - true + true + 1 + true + Label + 20 + false 10 + 102 - - false - true - 1 - false + + + false false - - 22 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 22 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:446f - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).X + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(T).X - - - - false - 0 - - - false - - - - 0 - - 100 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 25 + 100 - + + + + scanParmsCustom.opi + + true + $(Q)X + $(Q)X + $(Q)X + $(T).LEGU + + 1 + Setup scan parameters + + + false + false + + + false - true - false - 39872d87:13e14015f61:4472 - - 20 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + Scan + false + $(pv_name) +$(pv_value) + true + Action Button 35 - 6 - - - - 1 - - - + 8 140 + + - - scanParmsCustom.opi - - true - $(Q)X - $(Q)X - $(Q)X - $(T).LEGU - - 0 - Setup scan parameters + + $(P)$(Q)X:scanParms.GO + 1 + 10 + + - $(pv_name) -$(pv_value) - 8 - - + false + false + + + false - true - 39872d87:13e14015f61:4473 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(Q)X:scanParms.GO + + true true false - $(P)$(Q)X:scanParms.GO - - - - - - - Action Button - true + + Go - false - - Default - - 21 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 21 + 45 140 + + - $(P)$(Q)X:scanParms.GO + $(P)allstop.VAL 1 10 + - $(pv_name) -$(pv_value) - 45 - - + false + false + + + false - true - 39872d87:13e14015f61:4474 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)allstop.VAL - - - - - - - Action Button - true + + Kill - false - - Default - - 35 - 0 - 0 - - - false - 1 - - - - 140 - - - $(P)allstop.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 35 68 + 140 - - true - true - 1 - false - 39872d87:13e14015f61:4476 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(T).AEGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).AEGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 70 - 0 - - - 1 - - - - 1 - - 63 false - $(pv_name) -$(pv_value) 150 + 63 - - true - 1 - 39872d87:13e14015f61:4477 + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - AX - - - - 20 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 0 - - 102 - true + Label + + + true + true + false + + + false + AX + true + 1 + true + Label + 20 + false 115 + 102 - - false - true - 1 - false + + + false false - - 22 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 22 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4478 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).AX + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(T).AX - - - - false - 0 - - - false - - - - 0 - - 100 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 140 + 100 - - true - true - 1 - false - 39872d87:13e14015f61:4479 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(T).EAX + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).EAX - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 82 false - $(pv_name) -$(pv_value) 140 + 82 - - false - true - false - 39872d87:13e14015f61:447c - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 35 - 6 - - - - 1 - - - - 140 + scanParmsCustom.opi @@ -2765,609 +2104,1163 @@ $(pv_value) $(Q)AX $(T).AEGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 123 - - + false + false + + + false - true - 39872d87:13e14015f61:447d - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + + + true true false - $(P)$(Q)AX:scanParms.GO - - - - - - + + + Scan + false + $(pv_name) +$(pv_value) + true Action Button - true - Go + 35 + 123 + 140 + + + + + $(P)$(Q)AX:scanParms.GO + 1 + 10 + + + + + false false - - Default - - 21 + + + + false + + + 0 - 0 + 1 + true + + Default + + false + + + + 20 - + Action Button + 0 + $(P)$(Q)AX:scanParms.GO + + + true + true + false + + + + Go false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 21 + 160 140 + + - $(P)$(Q)AX:scanParms.GO + $(P)allstop.VAL 1 10 + - $(pv_name) -$(pv_value) - 160 - - + false + false + + + false - true - 39872d87:13e14015f61:447e - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)allstop.VAL - - - - - - - Action Button - true + + Kill - false - - Default - - 35 - 0 - 0 - - - false - 1 - - - - 140 - - - $(P)allstop.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 35 183 + 140 - - true - 1 - 39872d87:13e14015f61:4480 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true Y - - - - 20 - 0 - - 1 - - - - 0 - - 193 - true + true + 1 + true + Label + 20 + false 10 + 193 - - false - true - 1 - false + + + false false - - 22 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 22 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4481 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).Y + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(T).Y - - - - false - 0 - - - false - - - - 0 - - 190 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 25 + 190 - - true - true - 1 - false - 39872d87:13e14015f61:4482 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(T).EY + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).EY - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 172 false - $(pv_name) -$(pv_value) 25 + 172 - - true - 1 - 39872d87:13e14015f61:4485 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true AY - - - - 20 - 0 - - 1 - - - - 0 - - 191 - true + true + 1 + true + Label + 20 + false 115 + 191 - - false - true - 1 - false + + + false false - - 22 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 22 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4486 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).AY + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(T).AY + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 140 + 190 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false - + - false + 1 + 15 + 1 + Text Update 0 - + true + $(P)$(T).EAY + + 0.0 - false + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 140 + 172 + + + + + scanParmsCustom.opi + + true + $(Q)Y + $(Q)Y + $(Q)Y + $(T).LEGU + + 1 + Setup scan parameters + + + false + false + + + + false - 0 - - 190 + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + Scan + false $(pv_name) $(pv_value) - 140 - - - true true - 1 - false - 39872d87:13e14015f61:4487 - false - 0.0 - - 15 - Text Update + Action Button + 35 + 8 + 230 + + + + + $(P)$(Q)Y:scanParms.GO + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + $(P)$(Q)Y:scanParms.GO + + true true false - 1 - true - false - $(P)$(T).EAY + + + Go + false + $(pv_name) +$(pv_value) + true + Action Button + 21 + 45 + 230 + + + + + $(P)allstop.VAL + 1 + 10 + + + + + false + false - + + false + + + + 0 + 1 + true + + Default + + false - + - Text Update - true - ###### + 20 + + Action Button + 0 + $(P)allstop.VAL + + + + true + true + false + + + + Kill + false + $(pv_name) +$(pv_value) + true + Action Button + 35 + 68 + 230 + + + + + scanParmsCustom.opi + + true + $(Q)AY + $(Q)AY + $(Q)AY + $(T).AEGU + + 1 + Setup scan parameters + + + false false - 0 + + + + false + + + + 0 + 1 + true - + Default - 80 - 0 - + false + + + + 20 + + Action Button + 0 + - 1 + + + true + true + false + + + + Scan + false + $(pv_name) +$(pv_value) + true + Action Button + 35 + 123 + 230 + + + + + $(P)$(Q)AY:scanParms.GO + 1 + 10 + + + + + false + false + + + + false - 1 - - 172 - false + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(Q)AY:scanParms.GO + + + + true + true + false + + + + Go + false $(pv_name) $(pv_value) - 140 + true + Action Button + 21 + 160 + 230 - + + + + $(P)allstop.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4493 - - 20 - Choice Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + $(P)allstop.VAL + + true true false - $(P)$(T).SET + + + Kill + false + $(pv_name) +$(pv_value) + true + Action Button + 35 + 183 + 230 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 80 - 0 - - - - - + false + + + + 20 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 350 + Choice Button + $(P)$(T).SET + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 80 0 + 350 - + + + + $(P)$(T).SYNC + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4497 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(T).SYNC + + true true false - $(P)$(T).ZERO + + + Sync + false + $(pv_name) +$(pv_value) + true + Action Button + 50 + 0 + 370 + + + + + $(P)$(T).INIT + 1 + 10 + + + + + false + false - + - - - - Action Button + false + + + + 0 + 1 true - Zero - false - Default + Default - 35 - 0 - 0 + false + + + + 20 - + Action Button + 0 + $(P)$(T).INIT + + + true + true + false + + + + Init false - 1 - - - - 350 + $(pv_name) +$(pv_value) + true + Action Button + 50 + 50 + 370 + + $(P)$(T).ZERO 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(T).ZERO + + + + true + true + false + + + + Zero + false $(pv_name) $(pv_value) + true + Action Button + 35 80 + 350 - + + + + $(P)$(Q):stop.VAL + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4498 - + + + + 0 + 1 + true + + Default + + false + + + 25 + Action Button - false + 0 + $(P)$(Q):stop.VAL + + + + true + true + false + + + + Stop + false + $(pv_name) +$(pv_value) + true + Action Button + 60 + 120 + 366 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + + true + + + false + + $(P)$(Q):done.VAL + + true true false - $(P)$(Q):stop.VAL + + false + Done + + true + 1 + true + Label + 60 + false + 120 + 345 + + + + false - + - - - - Action Button - true - Stop - false - - Default - - 60 - 0 - 0 - - - - false - 1 - 366 - - - $(P)$(Q):stop.VAL - 1 - 10 - - - - $(pv_name) -$(pv_value) - 120 - - - false - true - false - 39872d87:13e14015f61:449c - + 0 + 1 + true + + + + + + 20 - Menu Button - false + 1 + Label + + + + true + + + false + + $(P)$(Q):done.VAL + + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - - 370 + + false + Moving + + true + 1 + true + Label + 60 + false + 120 + 345 + + table_full.opi true - 1 + 1 More @@ -3375,7 +3268,7 @@ $(pv_value) true - 0 + 1 Setup (SRI geometry) @@ -3383,7 +3276,7 @@ $(pv_value) true - 0 + 1 Setup (GEOCARS geometry) @@ -3391,7 +3284,7 @@ $(pv_value) true - 0 + 1 Setup (NEWPORT geometry) @@ -3399,7 +3292,7 @@ $(pv_value) true - 0 + 1 Setup (PNC geometry) @@ -3407,201 +3300,209 @@ $(pv_value) true - 0 + 1 Fixed points - $(pv_name) -$(pv_value) - 185 - - - false - true false - 39872d87:13e14015f61:449d - + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + + + true true false + + false + $(pv_name) +$(pv_value) false - - - - - - - + true Menu Button - true - false - - Default - 40 - 6 - - - - 1 - - - - 350 + 185 + 370 + + table_tiny.opi true - 1 + 0 Less + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + Less + false $(pv_name) $(pv_value) + true + Action Button + 40 185 + 350 - - true - 1 - 39872d87:13e14015f61:449e + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true Z - - - - 20 - 0 - - 1 - - - - 0 - - 282 - true + true + 1 + true + Label + 20 + false 10 + 282 - - false - true - 1 - false + + + false false - - 22 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 22 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:449f - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).Z + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(T).Z - - - - false - 0 - - - false - - - - 0 - - 280 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 25 + 280 - - false - true - false - 39872d87:13e14015f61:44a1 - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 35 - 6 - - - - 1 - - - - 320 + scanParmsCustom.opi @@ -3612,302 +3513,313 @@ $(pv_value) $(Q)Z $(T).LEGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 8 - - + false + false + + + false - true - 39872d87:13e14015f61:44a2 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + + + true true false - $(P)$(Q)Z:scanParms.GO - - - - - - - Action Button - true - Go - false - - Default - - 21 - 0 - 0 - - - + + + Scan false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 35 + 8 320 + + $(P)$(Q)Z:scanParms.GO 1 10 + - $(pv_name) -$(pv_value) - 45 - - + false + false + + + false - true - 39872d87:13e14015f61:44a3 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(Q)Z:scanParms.GO + + true true false - $(P)allstop.VAL - - - - - - - Action Button - true - Kill - false - - Default - - 35 - 0 - 0 - - - + + + Go false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 21 + 45 320 + + $(P)allstop.VAL 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)allstop.VAL + + + + true + true + false + + + + Kill + false $(pv_name) $(pv_value) + true + Action Button + 35 68 + 320 - - true - 1 - 39872d87:13e14015f61:44a5 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true AZ - - - - 20 - 0 - - 1 - - - - 0 - - 281 - true + true + 1 + true + Label + 20 + false 115 + 281 - - false - true - 1 - false + + + false false - - 22 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 22 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:44a6 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).AZ + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(T).AZ - - - - false - 0 - - - false - - - - 0 - - 280 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 140 + 280 - - true - true - 1 - false - 39872d87:13e14015f61:44a7 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(T).EAZ + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).EAZ - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 262 false - $(pv_name) -$(pv_value) 140 + 262 - - false - true - false - 39872d87:13e14015f61:44aa - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 35 - 6 - - - - 1 - - - - 320 + scanParmsCustom.opi @@ -3918,1117 +3830,1220 @@ $(pv_value) $(Q)AZ $(T).AEGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 123 - - + false + false + + + false - true - 39872d87:13e14015f61:44ab - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + + + true true false - $(P)$(Q)AZ:scanParms.GO + + + Scan + false + $(pv_name) +$(pv_value) + true + Action Button + 35 + 123 + 320 + + + + + $(P)$(Q)AZ:scanParms.GO + 1 + 10 + + + + + false + false - + - - - - Action Button + false + + + + 0 + 1 true - Go - false - Default + Default - 21 - 0 - 0 + false + + + + 20 - + Action Button + 0 + $(P)$(Q)AZ:scanParms.GO + + + true + true + false + + + + Go false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 21 + 160 320 + + - $(P)$(Q)AZ:scanParms.GO + $(P)allstop.VAL 1 10 + - $(pv_name) -$(pv_value) - 160 - - + false + false + + + false - true - 39872d87:13e14015f61:44ac - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)allstop.VAL + + true true false - $(P)allstop.VAL - - - - - - - Action Button - true + + Kill - false - - Default - - 35 - 0 - 0 - - - false - 1 - - - - 320 - - - $(P)allstop.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 35 183 + 320 - - false - true - 1 - false + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 44 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:44ae - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q):x_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q):x_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 120 + false + true + false + false + + $(pv_name) $(pv_value) - 45 - - - false + false true - 39872d87:13e14015f61:44af - - 18 - Action Button - false - - true - true - false - - $(P)$(Q):x_tweak.A - - - - - - - Action Button - true - > - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - + Text Input + 44 + 45 120 + + $(P)$(Q):x_tweak.A 1 10 + - $(pv_name) -$(pv_value) - 89 - - + false + false + + + false - true - 39872d87:13e14015f61:44b0 - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(Q):x_tweak.A + + true true false - $(P)$(Q):x_tweak.B - - - - - - + + + > + false + $(pv_name) +$(pv_value) + true Action Button - true - < - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 89 120 + + $(P)$(Q):x_tweak.B 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(Q):x_tweak.B + + + + true + true + false + + + + < + false $(pv_name) $(pv_value) + true + Action Button + 20 25 + 120 - - false - true - 1 - false + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 44 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:44b1 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q):ax_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q):ax_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 120 + false + true + false + false + + $(pv_name) $(pv_value) - 160 - - - false + false true - 39872d87:13e14015f61:44b2 - - 18 - Action Button - false - - true - true - false - - $(P)$(Q):ax_tweak.A - - - - - - - Action Button - true - > - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - + Text Input + 44 + 160 120 + + $(P)$(Q):ax_tweak.A 1 10 + - $(pv_name) -$(pv_value) - 204 - - + false + false + + + false - true - 39872d87:13e14015f61:44b3 - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(Q):ax_tweak.A + + true true false - $(P)$(Q):ax_tweak.B - - - - - - + + + > + false + $(pv_name) +$(pv_value) + true Action Button - true - < - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 204 120 + + $(P)$(Q):ax_tweak.B 1 10 + - $(pv_name) -$(pv_value) - 140 - - - false - true - 1 - false - false - - 18 - false - true + false + false - + - Text Input + false + + + + 0 + 1 true - - + Default - 44 - 3 + false + + + + 18 + + Action Button + 0 + $(P)$(Q):ax_tweak.B - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:44b4 - 0.0 - Text Input + true true false - 1 - false - 0 - $(P)$(Q):y_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 210 + + + < + false $(pv_name) $(pv_value) - 45 + true + Action Button + 20 + 140 + 120 - + + + false + false + false + + + false - true - 39872d87:13e14015f61:44b5 - - 18 - Action Button + + + + 3 + 1 + + true + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):y_tweakVal.VAL + + false + 0.0 + true true false - $(P)$(Q):y_tweak.A - - - - - - - Action Button - true - > - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 44 + 45 210 + + $(P)$(Q):y_tweak.A 1 10 + - $(pv_name) -$(pv_value) - 89 - - + false + false + + + false - true - 39872d87:13e14015f61:44b6 - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(Q):y_tweak.A + + true true false - $(P)$(Q):y_tweak.B - - - - - - + + + > + false + $(pv_name) +$(pv_value) + true Action Button - true - < - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 89 210 + + $(P)$(Q):y_tweak.B 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(Q):y_tweak.B + + + + true + true + false + + + + < + false $(pv_name) $(pv_value) + true + Action Button + 20 25 + 210 - - false - true - 1 - false + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 44 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:44b7 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q):ay_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q):ay_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 210 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 44 160 + 210 - + + + + $(P)$(Q):ay_tweak.A + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:44b8 - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(Q):ay_tweak.A + + true true false - $(P)$(Q):ay_tweak.A - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 204 210 + + - $(P)$(Q):ay_tweak.A + $(P)$(Q):ay_tweak.B 1 10 + - $(pv_name) -$(pv_value) - 204 - - + false + false + + + false - true - 39872d87:13e14015f61:44b9 - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(Q):ay_tweak.B + + true true false - $(P)$(Q):ay_tweak.B - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 210 - - - $(P)$(Q):ay_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 140 + 210 - - false - true - 1 - false + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 44 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:44ba - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q):z_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q):z_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 300 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 44 45 + 300 - + + + + $(P)$(Q):z_tweak.A + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:44bb - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(Q):z_tweak.A + + true true false - $(P)$(Q):z_tweak.A - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 89 300 + + - $(P)$(Q):z_tweak.A + $(P)$(Q):z_tweak.B 1 10 + - $(pv_name) -$(pv_value) - 89 - - + false + false + + + false - true - 39872d87:13e14015f61:44bc - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(Q):z_tweak.B + + true true false - $(P)$(Q):z_tweak.B - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 300 - - - $(P)$(Q):z_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) - 25 - - - false true - 1 - false + Action Button + 20 + 25 + 300 + + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 44 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:44bd - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q):az_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q):az_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 300 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 44 160 + 300 - + + + + $(P)$(Q):az_tweak.A + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:44be - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(Q):az_tweak.A + + true true false - $(P)$(Q):az_tweak.A - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 204 300 + + - $(P)$(Q):az_tweak.A + $(P)$(Q):az_tweak.B 1 10 + - $(pv_name) -$(pv_value) - 204 - - + false + false + + + false - true - 39872d87:13e14015f61:44bf - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(Q):az_tweak.B + + true true false - $(P)$(Q):az_tweak.B - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 300 - - - $(P)$(Q):az_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 140 + 300 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:44c0 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 232 - 0 - 0 - - 1 - 1 - true - - - - - 59 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 232 0 + 59 - \ No newline at end of file + diff --git a/opticsApp/op/opi/table_fixedPoints.opi b/opticsApp/op/opi/autoconvert/table_fixedPoints.opi similarity index 79% rename from opticsApp/op/opi/table_fixedPoints.opi rename to opticsApp/op/opi/autoconvert/table_fixedPoints.opi index 346aa20..5a79c3d 100644 --- a/opticsApp/op/opi/table_fixedPoints.opi +++ b/opticsApp/op/opi/autoconvert/table_fixedPoints.opi @@ -1,78 +1,76 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 310 true - 39872d87:13e14015f61:4520 - 3.1.2.20120830 + table_fixedPoints + + true + true + false true - 310 - table_fixedPoints false - false - - - - - - Display - true 330 - - true - 5 - - false - -1 - -1 - - - 363 406 - - false - true - 100.0 - - - - 39872d87:13e14015f61:4562 - - - - - 22 - true - Rectangle - false + 363 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 329 + false + + + + false + 22 + true + + + 0 - 0 + 0 + Rectangle + + @@ -84,62 +82,62 @@ $(P)$(Q)fpSelect.VAL - - 1 - 0 - true - - - - - 47 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4563 - - - - - 22 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 329 + 0 + 47 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 329 + false + + + + false + 22 + true + + + 0 - 0 + 0 + Rectangle + + @@ -151,62 +149,62 @@ $(pv_value) $(P)$(Q)fpSelect.VAL - - 1 - 0 - true - - - - - 67 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4564 - - - - - 22 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 329 + 0 + 67 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 329 + false + + + + false + 22 + true + + + 0 - 0 + 0 + Rectangle + + @@ -218,62 +216,62 @@ $(pv_value) $(P)$(Q)fpSelect.VAL - - 1 - 0 - true - - - - - 87 + + true + true + false + + $(pv_name) $(pv_value) - 0 - false - - - false + false true - 100.0 - - - - 39872d87:13e14015f61:4565 - - - - - 22 - true - Rectangle - false + Rectangle + 329 + 0 + 87 + + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 329 + false + + + + false + 22 + true + + + 0 - 0 + 0 + Rectangle + + @@ -285,62 +283,62 @@ $(pv_value) $(P)$(Q)fpSelect.VAL - - 1 - 0 - true - - - - - 107 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4566 - - - - - 22 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 329 + 0 + 107 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 329 + false + + + + false + 22 + true + + + 0 - 0 + 0 + Rectangle + + @@ -352,62 +350,62 @@ $(pv_value) $(P)$(Q)fpSelect.VAL - - 1 - 0 - true - - - - - 127 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4567 - - - - - 22 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 329 + 0 + 127 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 329 + false + + + + false + 22 + true + + + 0 - 0 + 0 + Rectangle + + @@ -419,62 +417,62 @@ $(pv_value) $(P)$(Q)fpSelect.VAL - - 1 - 0 - true - - - - - 147 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4568 - - - - - 22 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 329 + 0 + 147 + + + + false + 255 + true + false - - - - Rectangle - true - + - - false - - Default - - 329 - 0 + + false + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 22 + true + + + + 0 + 0 + Rectangle + + @@ -486,62 +484,62 @@ $(pv_value) $(P)$(Q)fpSelect.VAL - - 1 - 0 - true - - - - - 167 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4569 - - - - - 22 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 329 + 0 + 167 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 329 + false + + + + false + 22 + true + + + 0 - 0 + 0 + Rectangle + + @@ -553,62 +551,62 @@ $(pv_value) $(P)$(Q)fpSelect.VAL - - 1 - 0 - true - - - - - 187 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:456a - - - - - 22 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 329 + 0 + 187 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 329 + false + + + + false + 22 + true + + + 0 - 0 + 0 + Rectangle + + @@ -620,62 +618,62 @@ $(pv_value) $(P)$(Q)fpSelect.VAL - - 1 - 0 - true - - - - - 207 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:456b - - - - - 22 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 329 + 0 + 207 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 329 + false + + + + false + 22 + true + + + 0 - 0 + 0 + Rectangle + + @@ -687,3429 +685,3644 @@ $(pv_value) $(P)$(Q)fpSelect.VAL - - 1 - 0 - true - - - - - 227 - $(pv_name) -$(pv_value) - 0 - false - - - - true - - true - 39872d87:13e14015f61:455a - - 23 - Grouping Container true true false - true - false + + $(pv_name) +$(pv_value) + false + true + Rectangle + 329 + 0 + 227 + + + + false - + - - - - Grouping Container - true - - Default - - 330 - 0 - - false - 1 - - 0 - - 0 - - true - true - 1 - false - 39872d87:13e14015f61:455b - false - 0.0 - - 20 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(T).DESC - - - - - - - Text Update - true - ###### - false - 0 - - - - 328 - 0 - - - 1 - - - - 1 - - 0 - false - $(pv_name) -$(pv_value) - 1 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:455c - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 327 - 0 - 0 - - - 1 - 1 - true - - - - - 21 - $(pv_name) -$(pv_value) - 1 - - - - true - 1 - 39872d87:13e14015f61:4521 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + + + true + 1 + true + Label + 100 + false + 30 + 0 + + + + false - - - - Label - true - - - - - 100 - 0 - - 1 - 1 - - 0 - true - - 30 - - - true - 1 - 39872d87:13e14015f61:4522 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + USE + + true + 1 + true + Label + 25 + false + 0 + 30 + + + + false - - - - Label - true - USE - - - - 25 - 0 - - 1 - 1 - - 30 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:4523 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + Description + + true + 1 + true + Label + 100 + false + 30 + 25 + + + + false - - - - Label - true - Description - - - - 100 - 0 - - 1 - 1 - - 25 - true - - 30 - - - true - 1 - 39872d87:13e14015f61:4524 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + Sy + + true + 1 + true + Label + 60 + false + 200 + 25 + + + + false - - - - Label - true - Sy - - - - 60 - 0 - - 1 - 1 - - 25 - true - - 200 - - - true - 1 - 39872d87:13e14015f61:4525 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + Sz + + true + 1 + true + Label + 60 + false + 265 + 25 + + + + false - - - - Label - true - Sz - - - - 60 - 0 - - 1 - 1 - - 25 - true - - 265 - - - true - 1 - 39872d87:13e14015f61:4526 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false - - - - - - - Label - true Sx - - - - 60 - 0 - - 1 - - - - 1 - - 25 - true + true + 1 + true + Label + 60 + false 135 + 25 - + + + + $(P)$(Q)fpSelect + 0 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4527 - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(Q)fpSelect + + true true false - $(P)$(Q)fpSelect - - - - - - - Action Button - true + + 0 - false - - Default - - 22 - 0 - 0 - - - true - 1 - - - - 50 - - - $(P)$(Q)fpSelect - 0 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 22 2 + 50 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4528 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp0Name + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp0Name - - - - false - 0 - - - false - - - - 0 - - 50 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 30 + 50 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4529 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp0.DO3 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp0.DO3 - - - - false - 0 - - - false - - - - 0 - - 50 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 200 + 50 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input - true - - - - - 60 + false + + + 3 - 1 + + true + + + + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:452a - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp0.DO4 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp0.DO4 - - - - false - 0 - - - false - - - - 0 - - 50 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 265 + 50 - - true - true - 1 - false - 39872d87:13e14015f61:452b + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(T).LEGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).LEGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 1 - - 40 false - $(pv_name) -$(pv_value) 200 + 40 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:452c - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp0.DO2 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp0.DO2 - - - - false - 0 - - - false - - - - 0 - - 50 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 135 + 50 - + + + + $(P)$(Q)fpSelect + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:452d - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(Q)fpSelect + + true true false - $(P)$(Q)fpSelect - - - - - - - Action Button - true + + 1 - false - - Default - - 22 - 0 - 0 - - - true - 1 - - - - 70 - - - $(P)$(Q)fpSelect - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 22 2 + 70 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:452e - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp1Name + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp1Name - - - - false - 0 - - - false - - - - 0 - - 70 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 30 + 70 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:452f - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp1.DO3 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp1.DO3 - - - - false - 0 - - - false - - - - 0 - - 70 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 200 + 70 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4530 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp1.DO4 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp1.DO4 - - - - false - 0 - - - false - - - - 0 - - 70 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 265 + 70 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4531 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp1.DO2 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp1.DO2 - - - - false - 0 - - - false - - - - 0 - - 70 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 135 + 70 - - false - true - 39872d87:13e14015f61:4532 - - 16 - Action Button - false - - true - true - false - - $(P)$(Q)fpSelect - - - - - - - Action Button - true - 2 - false - - Default - - 22 - 0 - 0 - - - - true - 1 - - - - 90 + $(P)$(Q)fpSelect 2 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + $(P)$(Q)fpSelect + + + + true + true + false + + + + 2 + true $(pv_name) $(pv_value) + true + Action Button + 22 2 + 90 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4533 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp2Name + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp2Name - - - - false - 0 - - - false - - - - 0 - - 90 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 30 + 90 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4534 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp2.DO3 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp2.DO3 - - - - false - 0 - - - false - - - - 0 - - 90 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 200 + 90 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4535 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp2.DO4 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp2.DO4 - - - - false - 0 - - - false - - - - 0 - - 90 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 265 + 90 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4536 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp2.DO2 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp2.DO2 - - - - false - 0 - - - false - - - - 0 - - 90 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 135 + 90 - + + + + $(P)$(Q)fpSelect + 3 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4537 - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(Q)fpSelect + + true true false - $(P)$(Q)fpSelect - - - - - - - Action Button - true + + 3 - false - - Default - - 22 - 0 - 0 - - - true - 1 - - - - 110 - - - $(P)$(Q)fpSelect - 3 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 22 2 + 110 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4538 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp3Name + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp3Name - - - - false - 0 - - - false - - - - 0 - - 110 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 30 + 110 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4539 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp3.DO3 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp3.DO3 - - - - false - 0 - - - false - - - - 0 - - 110 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 200 + 110 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:453a - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp3.DO4 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp3.DO4 - - - - false - 0 - - - false - - - - 0 - - 110 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 265 + 110 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:453b - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp3.DO2 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp3.DO2 - - - - false - 0 - - - false - - - - 0 - - 110 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 135 + 110 - + + + + $(P)$(Q)fpSelect + 4 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:453c - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(Q)fpSelect + + true true false - $(P)$(Q)fpSelect - - - - - - - Action Button - true + + 4 - false - - Default - - 22 - 0 - 0 - - - true - 1 - - - - 130 - - - $(P)$(Q)fpSelect - 4 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 22 2 + 130 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:453d - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp4Name + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp4Name - - - - false - 0 - - - false - - - - 0 - - 130 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 30 + 130 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:453e - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp4.DO3 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp4.DO3 - - - - false - 0 - - - false - - - - 0 - - 130 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 200 + 130 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:453f - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp4.DO4 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp4.DO4 - - - - false - 0 - - - false - - - - 0 - - 130 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 265 + 130 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4540 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp4.DO2 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp4.DO2 - - - - false - 0 - - - false - - - - 0 - - 130 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 135 + 130 - + + + + $(P)$(Q)fpSelect + 5 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4541 - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(Q)fpSelect + + true true false - $(P)$(Q)fpSelect - - - - - - - Action Button - true + + 5 - false - - Default - - 22 - 0 - 0 - - - true - 1 - - - - 150 - - - $(P)$(Q)fpSelect - 5 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 22 2 + 150 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4542 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp5Name + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp5Name - - - - false - 0 - - - false - - - - 0 - - 150 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 30 + 150 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4543 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp5.DO3 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp5.DO3 - - - - false - 0 - - - false - - - - 0 - - 150 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 200 + 150 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4544 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp5.DO4 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp5.DO4 - - - - false - 0 - - - false - - - - 0 - - 150 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 265 + 150 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4545 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp5.DO2 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp5.DO2 - - - - false - 0 - - - false - - - - 0 - - 150 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 135 + 150 - + + + + $(P)$(Q)fpSelect + 6 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4546 - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(Q)fpSelect + + true true false - $(P)$(Q)fpSelect - - - - - - - Action Button - true + + 6 - false - - Default - - 22 - 0 - 0 - - - true - 1 - - - - 170 - - - $(P)$(Q)fpSelect - 6 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 22 2 + 170 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4547 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp6Name + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp6Name - - - - false - 0 - - - false - - - - 0 - - 170 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 30 + 170 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4548 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp6.DO3 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp6.DO3 - - - - false - 0 - - - false - - - - 0 - - 170 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 200 + 170 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4549 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp6.DO4 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp6.DO4 - - - - false - 0 - - - false - - - - 0 - - 170 + false + true + false + false + + $(pv_name) $(pv_value) - 265 - - - false + false true - 1 - false + Text Input + 60 + 265 + 170 + + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:454a - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp6.DO2 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp6.DO2 - - - - false - 0 - - - false - - - - 0 - - 170 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 135 + 170 - + + + + $(P)$(Q)fpSelect + 7 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:454b - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(Q)fpSelect + + true true false - $(P)$(Q)fpSelect - - - - - - - Action Button - true + + 7 - false - - Default - - 22 - 0 - 0 - - - true - 1 - - - - 190 - - - $(P)$(Q)fpSelect - 7 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 22 2 + 190 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:454c - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp7Name + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp7Name - - - - false - 0 - - - false - - - - 0 - - 190 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 30 + 190 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:454d - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp7.DO3 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp7.DO3 - - - - false - 0 - - - false - - - - 0 - - 190 + false + true + false + false + + $(pv_name) $(pv_value) - 200 - - - false + false true - 1 - false + Text Input + 60 + 200 + 190 + + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:454e - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp7.DO4 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp7.DO4 - - - - false - 0 - - - false - - - - 0 - - 190 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 265 + 190 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:454f - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp7.DO2 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp7.DO2 - - - - false - 0 - - - false - - - - 0 - - 190 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 135 + 190 - + + + + $(P)$(Q)fpSelect + 8 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4550 - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(Q)fpSelect + + true true false - $(P)$(Q)fpSelect - - - - - - - Action Button - true + + 8 - false - - Default - - 22 - 0 - 0 - - - true - 1 - - - - 210 - - - $(P)$(Q)fpSelect - 8 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 22 2 + 210 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4551 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp8Name + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp8Name - - - - false - 0 - - - false - - - - 0 - - 210 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 30 + 210 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4552 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp8.DO3 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp8.DO3 - - - - false - 0 - - - false - - - - 0 - - 210 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 200 + 210 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4553 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp8.DO4 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp8.DO4 - - - - false - 0 - - - false - - - - 0 - - 210 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 265 + 210 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4554 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp8.DO2 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp8.DO2 - - - - false - 0 - - - false - - - - 0 - - 210 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 135 + 210 - + + + + $(P)$(Q)fpSelect + 9 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4555 - + + + + 0 + 1 + true + + Default + + false + + + 16 + Action Button - false + 0 + $(P)$(Q)fpSelect + + true true false - $(P)$(Q)fpSelect - - - - - - - Action Button - true + + 9 - false - - Default - - 22 - 0 - 0 - - - true - 1 - - - - 230 - - - $(P)$(Q)fpSelect - 9 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 22 2 + 230 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + + false + + + + 1 + 16 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q)fp9Name + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input 100 + 30 + 230 + + + + false + false + false + + + + false + + + 3 - 1 + + true + + + + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4556 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp9.DO3 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp9Name - - - - false - 0 - - - false - - - - 0 - - 230 + false + true + false + false + + $(pv_name) $(pv_value) - 30 - - - false + false true - 1 - false + Text Input + 60 + 200 + 230 + + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4557 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp9.DO4 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp9.DO3 - - - - false - 0 - - - false - - - - 0 - - 230 + false + true + false + false + + $(pv_name) $(pv_value) - 200 - - - false + false true - 1 - false + Text Input + 60 + 265 + 230 + + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4558 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q)fp9.DO2 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q)fp9.DO4 - - - - false - 0 - - - false - - - - 0 - - 230 + false + true + false + false + + $(pv_name) $(pv_value) - 265 - - - false + false true - 1 - false + Text Input + 60 + 135 + 230 + + + + false false - - 16 - false - true + false - + - Text Input + true + + + + 0 + 1 true - - + - 60 - 3 + false + + + + 1 + 20 + 1 + Text Update + 0 + true + $(P)$(T).DESC - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4559 0.0 - Text Input + true true false - 1 + + false + ###### + $(pv_name) +$(pv_value) false - 0 - $(P)$(Q)fp9.DO2 - - - + 1 + true + Text Update + 328 + false + 1 + 0 + + + + false + 255 + true + 20 + 0 false - 0 - - - false + + + + false - 0 - - 230 + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 135 - - + false true - 1 - 39872d87:13e14015f61:455d + Polyline + 327 + 1 + 21 + + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + NOTE: after changing a description, you must + + true + 1 + true + Label + 320 + false + 5 + 250 + + + + false - - - - Label - true - NOTE: after changing a description, you must - - - - 320 - 0 - - 1 - 0 - - 250 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:455e - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + close and re-open any display containing the + + true + 1 + true + Label + 320 + false + 5 + 265 + + + + false - - - - Label - true - close and re-open any display containing the - - - - 320 - 0 - - 1 - 0 - - 265 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:455f - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true fixed-point menu: - - - - 120 - 0 - - 1 - - - - 0 - - 280 - true + true + 1 + true + Label + 120 + false 5 + 280 - - false - true + + true - 39872d87:13e14015f61:4560 - - 20 - Menu Button - false - - true - true - false - - false - $(P)$(Q)fpSelect + false + false - + - - - - Menu Button - true - false - - Default - - 95 - 6 - - - - 1 + false - 285 - - $(pv_name) -$(pv_value) - 135 - - - false - true - false - 39872d87:13e14015f61:4561 - + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + $(P)$(Q)fpSelect + + true true false + + false + $(pv_name) +$(pv_value) false - - - - - - - + true Menu Button - true - false - - Default - - 90 - 6 - - - - 1 - - - + 95 + 135 285 + + table_fixedPoints_refresh.opi true - 1 + 0 Fixed points + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + Refresh + false $(pv_name) $(pv_value) + true + Action Button + 90 240 + 285 - \ No newline at end of file + diff --git a/opticsApp/op/opi/table_fixedPoints_refresh.opi b/opticsApp/op/opi/autoconvert/table_fixedPoints_refresh.opi similarity index 69% rename from opticsApp/op/opi/table_fixedPoints_refresh.opi rename to opticsApp/op/opi/autoconvert/table_fixedPoints_refresh.opi index fb708b3..ba74716 100644 --- a/opticsApp/op/opi/table_fixedPoints_refresh.opi +++ b/opticsApp/op/opi/autoconvert/table_fixedPoints_refresh.opi @@ -1,86 +1,87 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 310 true - 39872d87:13e14015f61:45b9 - 3.1.2.20120830 + table_fixedPoints_refresh + + true + true + false true - 310 - table_fixedPoints_refresh false - false - - - - - - Display - true 330 - - true - 5 - - false - -1 - -1 - - - 483 551 - - false - true - false - 39872d87:13e14015f61:45ba - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 90 - 6 - - - - 1 - - - - 285 + 483 + table_fixedPoints.opi true - 1 + 0 Fixed points + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + Press again + false $(pv_name) $(pv_value) + true + Action Button + 90 240 + 285 - \ No newline at end of file + diff --git a/opticsApp/op/opi/table_full.opi b/opticsApp/op/opi/autoconvert/table_full.opi similarity index 78% rename from opticsApp/op/opi/table_full.opi rename to opticsApp/op/opi/autoconvert/table_full.opi index d6813a3..d677bed 100644 --- a/opticsApp/op/opi/table_full.opi +++ b/opticsApp/op/opi/autoconvert/table_full.opi @@ -1,135 +1,133 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 400 true - 39872d87:13e14015f61:45be - 3.1.2.20120830 + table_full + + true + true + false true - 400 - table_full false - false - - - - - - Display - true 490 - - true - 5 - - false - -1 - -1 - - - 484 - 100 - - false - true - 100.0 - - - - 39872d87:13e14015f61:45bf - - - - - 27 - true - Rectangle - false + 964 + 512 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 490 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 0.0 + 27 + true - + - 39872d87:13e14015f61:45c8 - - - - - 18 - true + 0 + 0 Rectangle - false - 255 + + + true true false - true - + + $(pv_name) +$(pv_value) + false + true + Rectangle + 490 + 0 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 80 + false + + + + false + 18 + true + + + 0 - 0 + 2 + Rectangle + + @@ -141,62 +139,62 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 280 - $(pv_name) -$(pv_value) - 25 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:45ca - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 80 + 25 + 280 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 80 + false + + + + false + 18 + true + + + 0 - 0 + 2 + Rectangle + + @@ -208,62 +206,62 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 190 - $(pv_name) -$(pv_value) - 25 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:45cc - - - - - 18 - true - Rectangle - false - 255 true true false - true - + + $(pv_name) +$(pv_value) + true + true + Rectangle + 80 + 25 + 190 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 80 + false + + + + false + 18 + true + + + 0 - 0 + 2 + Rectangle + + @@ -275,62 +273,62 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 100 - $(pv_name) -$(pv_value) - 25 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:45e8 - - - - - 22 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 80 + 25 + 100 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 22 + true + + + 0 - 0 + 2 + Rectangle + + @@ -342,62 +340,62 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 98 - $(pv_name) -$(pv_value) - 23 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:45e9 - - - - - 22 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 84 + 23 + 98 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 22 + true + + + 0 - 0 + 2 + Rectangle + + @@ -409,64 +407,64 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 188 - $(pv_name) -$(pv_value) - 23 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:45ea - - - - - 22 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 84 + 23 + 188 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 22 + true + + + 0 - 0 - - + 2 + Rectangle + + + + true @@ -476,62 +474,62 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 278 - $(pv_name) -$(pv_value) - 23 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4600 - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 84 + 23 + 278 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 80 + false + + + + false + 18 + true + + + 0 - 0 + 2 + Rectangle + + @@ -543,62 +541,62 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 100 - $(pv_name) -$(pv_value) - 140 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4601 - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 80 + 140 + 100 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 80 + false + + + + false + 18 + true + + + 0 - 0 + 2 + Rectangle + + @@ -610,62 +608,62 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 190 - $(pv_name) -$(pv_value) - 140 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4602 - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 80 + 140 + 190 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 80 + false + + + + false + 18 + true + + + 0 - 0 + 2 + Rectangle + + @@ -677,62 +675,62 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 280 - $(pv_name) -$(pv_value) - 140 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4603 - - - - - 22 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - - - - - - - + true Rectangle - true - + 80 + 140 + 280 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + - false + 0.0 - Default + Default - 84 + false + + + + false + 22 + true + + + 0 - 0 + 2 + Rectangle + + @@ -744,62 +742,62 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 98 - $(pv_name) -$(pv_value) - 138 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4604 - - - - - 22 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 84 + 138 + 98 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 22 + true + + + 0 - 0 + 2 + Rectangle + + @@ -811,62 +809,62 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 188 - $(pv_name) -$(pv_value) - 138 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4605 - - - - - 22 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 84 + 138 + 188 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 22 + true + + + 0 - 0 + 2 + Rectangle + + @@ -878,64 +876,64 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 278 - $(pv_name) -$(pv_value) - 138 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4615 - - - - - 16 - true - Rectangle - false - 255 true true false - false - + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 138 + 278 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 16 + true + + + 0 - 0 - - + 0 + Rectangle + + + + true @@ -945,62 +943,62 @@ $(pv_value) $(P)$(M1Y).LLS - - 1 - 0 - true - - - - - 270 - $(pv_name) -$(pv_value) - 280 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4616 - - - - - 16 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 280 + 270 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 16 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1012,62 +1010,62 @@ $(pv_value) $(P)$(M0Y).LLS - - 1 - 0 - true - - - - - 180 - $(pv_name) -$(pv_value) - 280 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4617 - - - - - 16 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 280 + 180 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 16 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1079,62 +1077,62 @@ $(pv_value) $(P)$(M0X).LLS - - 1 - 0 - true - - - - - 90 - $(pv_name) -$(pv_value) - 280 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:462f - - - - - 16 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 280 + 90 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 16 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1146,62 +1144,62 @@ $(pv_value) $(P)$(M0X).HLS - - 1 - 0 - true - - - - - 90 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 10 350 - false + 90 - - false - true - 100.0 - - - - 39872d87:13e14015f61:4630 + + + false + 255 + true + false + + + - - 16 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 16 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1213,62 +1211,62 @@ $(pv_value) $(P)$(M0Y).HLS - - 1 - 0 - true - - - - - 180 - $(pv_name) -$(pv_value) - 350 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4631 - - - - - 16 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 350 + 180 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 16 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1280,62 +1278,62 @@ $(pv_value) $(P)$(M1Y).HLS - - 1 - 0 - true - - - - - 270 - $(pv_name) -$(pv_value) - 350 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4632 - - - - - 87 - true - Rectangle - false - 255 true true false - true - + + $(pv_name) +$(pv_value) + false + true + Rectangle + 10 + 350 + 270 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 87 + true + + + 0 - 0 + 2 + Rectangle + + @@ -1347,62 +1345,62 @@ $(pv_value) $(P)$(M0X).DMOV - - 1 - 2 - true - - - - - 88 - $(pv_name) -$(pv_value) - 278 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4633 - - - - - 87 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 84 + 278 + 88 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 87 + true + + + 0 - 0 + 2 + Rectangle + + @@ -1414,62 +1412,62 @@ $(pv_value) $(P)$(M0Y).DMOV - - 1 - 2 - true - - - - - 178 - $(pv_name) -$(pv_value) - 278 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4634 - - - - - 87 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 84 + 278 + 178 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 87 + true + + + 0 - 0 + 2 + Rectangle + + @@ -1481,62 +1479,62 @@ $(pv_value) $(P)$(M1Y).DMOV - - 1 - 2 - true - - - - - 268 - $(pv_name) -$(pv_value) - 278 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4639 - - - - - 16 - true - Rectangle - false - 255 true true false - false - + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 278 + 268 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 16 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1548,62 +1546,62 @@ $(pv_value) $(P)$(M2Z).LLS - - 1 - 0 - true - - - - - 270 - $(pv_name) -$(pv_value) - 400 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:463a - - - - - 16 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 400 + 270 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 16 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1615,62 +1613,62 @@ $(pv_value) $(P)$(M2Y).LLS - - 1 - 0 - true - - - - - 180 - $(pv_name) -$(pv_value) - 400 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:463b - - - - - 16 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle - true + 10 + 400 + 180 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true - false + 100.0 - Default + Default - 10 + false + + + + false + 16 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1682,62 +1680,62 @@ $(pv_value) $(P)$(M2X).LLS - - 1 - 0 - true - - - - - 90 - $(pv_name) -$(pv_value) - 400 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4652 - - - - - 16 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 400 + 90 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 16 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1749,62 +1747,62 @@ $(pv_value) $(P)$(M2X).HLS - - 1 - 0 - true - - - - - 90 - $(pv_name) -$(pv_value) - 470 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4653 - - - - - 16 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 470 + 90 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 16 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1816,62 +1814,62 @@ $(pv_value) $(P)$(M2Y).HLS - - 1 - 0 - true - - - - - 180 - $(pv_name) -$(pv_value) - 470 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4654 - - - - - 16 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 10 + 470 + 180 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 16 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1883,62 +1881,62 @@ $(pv_value) $(P)$(M2Z).HLS - - 1 - 0 - true - - - - - 270 - $(pv_name) -$(pv_value) - 470 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4655 - - - - - 87 - true - Rectangle - false - 255 true true false - true - + + $(pv_name) +$(pv_value) + false + true + Rectangle + 10 + 470 + 270 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 87 + true + + + 0 - 0 + 2 + Rectangle + + @@ -1950,62 +1948,62 @@ $(pv_value) $(P)$(M2X).DMOV - - 1 - 2 - true - - - - - 88 - $(pv_name) -$(pv_value) - 398 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4656 - - - - - 87 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 84 + 398 + 88 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 87 + true + + + 0 - 0 + 2 + Rectangle + + @@ -2017,62 +2015,62 @@ $(pv_value) $(P)$(M2Y).DMOV - - 1 - 2 - true - - - - - 178 - $(pv_name) -$(pv_value) - 398 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4657 - - - - - 87 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 84 + 398 + 178 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 87 + true + + + 0 - 0 + 2 + Rectangle + + @@ -2084,2622 +2082,1627 @@ $(pv_value) $(P)$(M2Z).DMOV - - 1 - 2 - true - - - - - 268 - $(pv_name) -$(pv_value) - 398 - false - - - - true - - true - 39872d87:13e14015f61:460c - - 272 - Grouping Container true true false + + $(pv_name) +$(pv_value) true - false + true + Rectangle + 84 + 398 + 268 + + + + false - + - - - - Grouping Container - true - - Default - - 224 - 0 - - false - 1 - - 86 - - 4 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:460d - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 223 - 0 - 0 - - - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 1 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:460e - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 222 - 0 - 0 - - - 1 - 1 - true - - - - - 91 - $(pv_name) -$(pv_value) - 1 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:460f - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 222 - 0 - 0 - - - 1 - 1 - true - - - - - 181 - $(pv_name) -$(pv_value) - 1 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4610 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 224 - 0 - 0 - - - 1 - 1 - true - - - - - 271 - $(pv_name) -$(pv_value) - 1 - - - - - true - - true - 39872d87:13e14015f61:464e - - 200 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container + 0 + 1 true - Default + - 20 - 0 + + + + 15 + 1 + Label - false - 1 - - - - - 153 - - 460 - - false - true - 39872d87:13e14015f61:464f - - 20 - Action Button - false - - true - true - false - - $(P)$(M2X).TWF - - - - - - - Action Button - true - > - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - - 0 - - - $(P)$(M2X).TWF - 1 - 10 - - - - $(P)$(M2X).TWF - 0 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:4650 - - 20 - Action Button - false - - true - true - false - - $(P)$(M2Y).TWF - - - - - - - Action Button - true - > - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - - 90 - - - $(P)$(M2Y).TWF - 1 - 10 - - - - $(P)$(M2Y).TWF - 0 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:4651 - - 20 - Action Button - false - - true - true - false - - $(P)$(M2Z).TWF - - - - - - - Action Button - true - > - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - - 180 - - - $(P)$(M2Z).TWF - 1 - 10 - - - - $(P)$(M2Z).TWF - 0 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:465c - - 273 - Grouping Container true true false - true + false + ($(P)$(T)) + + true + 1 + true + Label + 245 + false + 245 + 5 + + + + false + false + false - + - - - - Grouping Container - true - - Default - - 2 - 0 - - false - 1 + true - - 85 - - 482 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:465d - 0.0 - - 0 - 272 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 1 - - - - - true - - true - 39872d87:13e14015f61:465e - + 0 + 1 + true + + + + false + + + + 1 20 - Grouping Container + 1 + Text Update + 0 + true + $(P)$(T).DESC + + 0.0 + true true false - true - false + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 285 + false + 405 + 519 + + + + false + false + false - + - - - - Grouping Container + false + + + + 3 + 1 + true - Default + - 75 - 0 + false + + + + 1 + 27 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).DESC + + false + 0.0 - false - 1 - - - - - 365 - - 220 - - true - 1 - 39872d87:13e14015f61:465f - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Moving - - - - 75 - 0 - - - - true - - - false - - $(P)$(Q):done.VAL - - - 1 - - - - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:4660 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Done - - - - 75 - 0 - - - - true - - - false - - $(P)$(Q):done.VAL - - - 1 - - - - 1 - - 0 - true - - 0 - - - - - true - - true - 39872d87:13e14015f61:466f - - 20 - Grouping Container true true false - true - false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 245 + 0 + 0 + + + + false + 255 + true + 20 + 0 + false - + - - - - Grouping Container + false + + + + 0 + 1 true + true + 100.0 - Default + Default - 84 - 0 + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 - false - 1 - - - - - 153 - - 23 - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input - true - - - - - 44 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4670 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(Q):x_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 2 - $(pv_name) -$(pv_value) - 20 - - - false - true - 39872d87:13e14015f61:4671 - - 20 - Action Button - false - - true - true - false - - $(P)$(Q):x_tweak.A - - - - - - - Action Button - true - > - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)$(Q):x_tweak.A - 1 - 10 - - - - $(pv_name) -$(pv_value) - 64 - - - false - true - 39872d87:13e14015f61:4672 - - 20 - Action Button - false - - true - true - false - - $(P)$(Q):x_tweak.B - - - - - - - Action Button - true - < - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)$(Q):x_tweak.B - 1 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:4673 - - 12 - Grouping Container true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Polyline + 487 + 1 + 28 + + + + false + false + false - - - - Grouping Container + true + + + + 0 + 1 true - Default + - 120 - 0 + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(T).HLZ + + 0.0 - false - 1 - - - - - 387 - - 0 - - true - 1 - 39872d87:13e14015f61:4674 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - Record version: - - - - 90 - 0 - - 1 - - - - 0 - - 0 - true - - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:4675 - false - 0.0 - - 12 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(T).VERS - - - - - - - Text Update - true - ###### - false - 0 - - - - 30 - 0 - - - 1 - - - - 0 - - 0 - false - $(pv_name) -$(pv_value) - 90 - - - - true - 1 - 39872d87:13e14015f61:45c0 - false - - 15 - Label true true false - true - false - - - - - - - Label - true - ($(P)$(T)) - - - - 245 - 0 - - 1 + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 25 + 270 + + + + false + false + false + + + + true + 0 + 1 + true + + + + false + + + + 1 + 12 1 - - 5 - true - - 245 - - - true - true - 1 - false - 39872d87:13e14015f61:45c1 - false - 0.0 - - 20 Text Update - false + 0 + true + $(P)$(T).HLY + + 0.0 + true true false - 1 - true - false - $(P)$(T).DESC - - - - - - - Text Update - true + + false ###### - false - 0 - - - - 285 - 0 - - - 1 - - - - 1 - - 519 - false $(pv_name) $(pv_value) - 405 - - - false - true + false 1 - false + true + Text Update + 80 + false + 25 + 180 + + + + false false - - 27 - false - true + false - + - Text Input + true + + + + 0 + 1 true - - + - 245 - 3 + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(T).HLX - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:45c2 0.0 - Text Input + true true false - 1 - false - 0 - $(P)$(T).DESC - - - - false - 0 - - - false - - - - 0 - - 0 + + false + ###### $(pv_name) $(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:45c3 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - false - + 1 + true + Text Update + 80 + false + 25 + 90 + + + + false + false + false - + - - - - Polyline + true + + + + 0 + 1 true - false - Default + - 487 - 0 - 0 - + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(T).EZ - 1 - 1 - true - - - - - 28 - $(pv_name) -$(pv_value) - 1 - - - true - true - 1 - false - 39872d87:13e14015f61:45c4 - false 0.0 - - 12 - Text Update - false + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).HLZ - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 270 false - $(pv_name) -$(pv_value) 25 + 282 - - true - true - 1 - false - 39872d87:13e14015f61:45c5 + + + false false - 0.0 - - 12 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(T).HLY + false - + - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 + true + 0 + 1 + true + + + + false + + + + 1 + 15 1 - - 180 - false - $(pv_name) -$(pv_value) - 25 - - - true - true - 1 - false - 39872d87:13e14015f61:45c6 - false - 0.0 - - 12 Text Update - false + 0 + true + $(P)$(T).EY + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).HLX - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 90 false - $(pv_name) -$(pv_value) 25 + 192 - - true - true - 1 - false - 39872d87:13e14015f61:45c7 + + + false false - 0.0 - - 15 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(T).EZ + false - + - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 + true - 1 - - 282 - false - $(pv_name) -$(pv_value) - 25 - - - true - true - 1 - false - 39872d87:13e14015f61:45c9 - false - 0.0 - + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(T).EX + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).EY - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 192 false - $(pv_name) -$(pv_value) 25 + 102 - - true - true - 1 - false - 39872d87:13e14015f61:45cb - false - 0.0 - - 15 - Text Update + + + false + false + + + + false + + + + 0 + 1 + true + + Default + false + + + + 20 + true + + Choice 1 + Choice 2 + Choice 3 + + true + Choice Button + $(P)$(T).SET + + true true false - 1 - true - false - $(P)$(T).EX - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 102 - false - $(pv_name) -$(pv_value) - 25 - - - false - true - 39872d87:13e14015f61:45cd - 20 - Choice Button - false - - true - true - false - - $(P)$(T).SET - - - - - - - Choice Button - true - false - - Default - - 83 - 0 - - - - Choice 1 - Choice 2 - Choice 3 - - 1 - true - - - - true - - 365 $(pv_name) $(pv_value) - 5 - - - false true - 39872d87:13e14015f61:45ce - - 20 - Action Button - false - - true - true - false - - $(P)$(T).INIT - - - - - - - Action Button - true - Init - false - - Default - - 40 - 0 - 0 - - - - true - 1 - - - + Choice Button + 83 + 5 365 + + $(P)$(T).INIT 1 10 + $(P)$(T).INIT 0 10 + - $(pv_name) -$(pv_value) - 180 - - + false + false + + + false - true - 39872d87:13e14015f61:45cf - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(T).INIT + + true true false - $(P)$(T).SYNC - - - - - - + + + Init + true + $(pv_name) +$(pv_value) + true Action Button - true - Sync - false - - Default - 40 - 0 - 0 - - - - true - 1 - - - + 180 365 + + $(P)$(T).SYNC 1 10 + $(P)$(T).SYNC 0 10 + - $(pv_name) -$(pv_value) - 140 - - + false + false + + + false - true - 39872d87:13e14015f61:45d0 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(T).SYNC + + true true false - $(P)$(T).ZERO - - - - - - + + + Sync + true + $(pv_name) +$(pv_value) + true Action Button - true - Zero - false - - Default - 40 - 0 - 0 - - - - false - 1 - - - + 140 365 + + $(P)$(T).ZERO 1 10 + - $(pv_name) -$(pv_value) - 90 - - + false + false + + + false - true - 39872d87:13e14015f61:45d1 - - 35 - Action Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + $(P)$(T).ZERO + + true true false - $(P)$(Q):stop.VAL - - - - - - + + + Zero + false + $(pv_name) +$(pv_value) + true Action Button - true - Stop Table - false - - Default - - 115 - 0 - 0 - - - - false - 1 - - - + 40 + 90 365 + + $(P)$(Q):stop.VAL 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 35 + + Action Button + 0 + $(P)$(Q):stop.VAL + + + + true + true + false + + + + Stop Table + false $(pv_name) $(pv_value) + true + Action Button + 115 305 + 365 - - false - true - 1 - false + + + false false - - 22 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 22 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:45d2 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).X + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(T).X - - - - false - 0 - - - false - - - - 0 - - 120 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 25 + 120 - - true - 1 - 39872d87:13e14015f61:45d3 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true X - - - - 20 - 0 - - 1 - - - - 0 - - 120 - true + true + 1 + true + Label + 20 + false 10 + 120 - - true - true - 1 - false - 39872d87:13e14015f61:45d4 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 1 Text Update - false + 0 + true + $(P)$(T).LLX + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).LLX - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 143 false - $(pv_name) -$(pv_value) 25 + 143 - - false - true - 1 - false + + + false false - - 22 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:45d5 - 0.0 + false + + + + 1 + 22 + 0 + false + Infinity + -Infinity + false Text Input + 0 + false + 0 + true + $(P)$(T).Y + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(T).Y - - - - false - 0 - - - false - - - - 0 - - 210 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 25 + 210 - - true - 1 - 39872d87:13e14015f61:45d6 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true Y - - - - 20 - 0 - - 1 - - - - 0 - - 210 - true + true + 1 + true + Label + 20 + false 10 + 210 - - false - true - 1 - false + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 44 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:45d7 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q):y_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q):y_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 245 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 44 43 + 245 - - false - true - 39872d87:13e14015f61:45d8 - - 20 - Action Button - false - - true - true - false - - $(P)$(Q):y_tweak.A - - - - - - - Action Button - true - > - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 243 + $(P)$(Q):y_tweak.A 1 10 + - $(pv_name) -$(pv_value) - 87 - - + false + false + + + false - true - 39872d87:13e14015f61:45d9 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(Q):y_tweak.A + + true true false - $(P)$(Q):y_tweak.B - - - - - - + + + > + false + $(pv_name) +$(pv_value) + true Action Button - true - < - false - - Default - 20 - 0 - 0 - - - - false - 1 - - - + 87 243 + + $(P)$(Q):y_tweak.B 1 10 + - $(pv_name) -$(pv_value) - 23 - - - true - true - 1 - false - 39872d87:13e14015f61:45da - false - 0.0 - - 12 - Text Update + false + false + + + + false + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + $(P)$(Q):y_tweak.B + + true true false - 1 - true - false - $(P)$(T).LLY + + + < + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 23 + 243 + + + + false + false + false - + - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 + true + 0 + 1 + true + + + + false + + + + 1 + 12 1 - - 233 - false + Text Update + 0 + true + $(P)$(T).LLY + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 80 + false 25 + 233 - - false - true - 1 - false + + + false false - - 22 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 22 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:45db - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).Z + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(T).Z - - - - false - 0 - - - false - - - - 0 - - 300 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 25 + 300 - - true - 1 - 39872d87:13e14015f61:45dc + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true Z - - - - 20 - 0 - - 1 - - - - 0 - - 300 - true + true + 1 + true + Label + 20 + false 10 + 300 - - false - true - 1 - false + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 44 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:45dd - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(Q):z_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q):z_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 335 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 44 43 + 335 - + + + + $(P)$(Q):z_tweak.A + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:45de - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(Q):z_tweak.A + + true true false - $(P)$(Q):z_tweak.A - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 87 333 + + - $(P)$(Q):z_tweak.A + $(P)$(Q):z_tweak.B 1 10 + - $(pv_name) -$(pv_value) - 87 - - + false + false + + + false - true - 39872d87:13e14015f61:45df - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(Q):z_tweak.B + + true true false - $(P)$(Q):z_tweak.B - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 333 - - - $(P)$(Q):z_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 23 + 333 - - true - true - 1 - false - 39872d87:13e14015f61:45e0 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 1 Text Update - false + 0 + true + $(P)$(T).LLZ + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).LLZ - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 323 false - $(pv_name) -$(pv_value) 25 + 323 - - true - 1 - 39872d87:13e14015f61:45e1 + + false - - 20 - Label - - true - true - false - - true - false - - - - Label + + + + 0 + 1 true - Limit - + - 65 - 0 + + + + 20 + 1 + Label @@ -4711,4505 +3714,5165 @@ $(pv_value) $(P)$(T).LVIO - 1 - - - - 1 - - 55 - true - - 208 - - - true - 1 - 39872d87:13e14015f61:45e2 - false - - 20 - Label true true false - true + false - - - - - - + Limit + + true + 1 + true Label - true - Motors - - - - 230 - 0 - - 1 + 65 + false + 208 + 55 + + + + false + + + + 0 + 1 + true + + + + + + + 20 1 - - 55 - true + Label + + + true + true + false + + + false + Motors + true + 1 + true + Label + 230 + false 248 + 55 - - true - true - 1 - false - 39872d87:13e14015f61:45e3 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(T).LEGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).LEGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 95 - 0 - - - 1 - - - - 1 - - 71 false - $(pv_name) -$(pv_value) 10 + 71 - - true - 1 - 39872d87:13e14015f61:45e4 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true Translate - - - - 115 - 0 - - 1 - - - - 1 - - 55 - true + true + 1 + true + Label + 115 + false 10 + 55 - - false - true + + + false + 255 + true 20 - true - 100.0 - 39872d87:13e14015f61:45e5 - 0.0 - 0 - 272 - true - Polyline - false - 255 - - true - true - true - - - - - - true - + false - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true + false - - 86 - $(pv_name) -$(pv_value) - 6 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:45e6 - 0.0 - - 0 + + Default + + false + + + 272 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 1 + 6 + 86 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 1 + false + + + + 272 + true 0 - 0 - - - 1 1 - true - - - - - 86 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 1 111 + 86 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:45e7 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 487 - 0 - 0 - - 1 - 1 - true - - - - - 53 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 487 1 + 53 - - true - 1 - 39872d87:13e14015f61:45eb + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true AX - - - - 20 - 0 - - 1 - - - - 0 - - 120 - true + true + 1 + true + Label + 20 + false 115 + 120 - + + + + $(P)$(Q):ax_tweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:45ec - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(Q):ax_tweak.B + + true true false - $(P)$(Q):ax_tweak.B - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 153 - - - $(P)$(Q):ax_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 138 + 153 - - true - 1 - 39872d87:13e14015f61:45ed + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true AY - - - - 20 - 0 - - 1 - - - - 0 - - 210 - true + true + 1 + true + Label + 20 + false 115 + 210 - + + + + $(P)$(Q):ay_tweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:45ee - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(Q):ay_tweak.B + + true true false - $(P)$(Q):ay_tweak.B - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 243 - - - $(P)$(Q):ay_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 138 + 243 - - true - 1 - 39872d87:13e14015f61:45ef + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true AZ - - - - 20 - 0 - - 1 - - - - 0 - - 300 - true + true + 1 + true + Label + 20 + false 115 + 300 - + + + + $(P)$(Q):az_tweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:45f0 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(Q):az_tweak.B + + true true false - $(P)$(Q):az_tweak.B - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 333 - - - $(P)$(Q):az_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 138 + 333 - - true - true - 1 - false - 39872d87:13e14015f61:45f1 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(T).AEGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).AEGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 105 - 0 - - - 1 - - - - 1 - - 71 false - $(pv_name) -$(pv_value) 115 + 71 - - true - 1 - 39872d87:13e14015f61:45f2 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true Rotate - - - - 125 - 0 - - 1 - - - - 1 - - 55 - true + true + 1 + true + Label + 125 + false 115 + 55 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:45f3 - 0.0 - - 0 + + Default + + false + + + 273 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - 1 - 1 - true - - - - - 86 - $(pv_name) -$(pv_value) - 226 - - - true - true - 1 - false - 39872d87:13e14015f61:45f4 - false 0.0 - - 12 - Text Update - false + true true - false + true - 1 - true - false - $(P)$(T).HLAX + + $(pv_name) +$(pv_value) + true + true + Polyline + 1 + 226 + 86 + + + + false + false + false - + - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 + true + 0 + 1 + true + + + + false + + + + 1 + 12 1 - - 90 - false - $(pv_name) -$(pv_value) - 140 - - - true - true - 1 - false - 39872d87:13e14015f61:45f5 - false - 0.0 - - 15 Text Update - false + 0 + true + $(P)$(T).HLAX + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).EAX - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 102 false - $(pv_name) -$(pv_value) 140 + 90 - - false - true - 1 - false + + + false false - - 22 - false - true + false - + - Text Input + true + + + + 0 + 1 true - - + - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:45f6 + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(T).EAX + 0.0 - Text Input + true true false - 1 - false - 0 - $(P)$(T).AX - - - - false - 0 - - - false - - - - 0 - - 120 + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 80 + false 140 + 102 - - true - true - 1 - false - 39872d87:13e14015f61:45f7 + + + false false - 0.0 - - 12 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(T).LLAX + false - + - - - - Text Update + false + + + + 3 + 1 + true - ###### - false - 0 - + - 80 - 0 - + false + + + + 1 + 22 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).AX - 1 - - - - 1 - - 143 - false - $(pv_name) -$(pv_value) - 140 - - - true - true - 1 - false - 39872d87:13e14015f61:45f8 - false + false 0.0 - - 12 - Text Update - false + true true false - 1 - true + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - $(P)$(T).HLAY + true + Text Input + 80 + 140 + 120 + + + + false + false + false - + - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 + true + 0 + 1 + true + + + + false + + + + 1 + 12 1 - - 180 - false - $(pv_name) -$(pv_value) - 140 - - - true - true - 1 - false - 39872d87:13e14015f61:45f9 - false - 0.0 - - 15 Text Update - false + 0 + true + $(P)$(T).LLAX + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).EAY - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 192 false - $(pv_name) -$(pv_value) 140 + 143 - - false - true - 1 - false + + + false false - - 22 - false - true + false - + - Text Input + true + + + + 0 + 1 true - - + - 80 - 3 + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(T).HLAY - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:45fa 0.0 - Text Input + true true false - 1 - false - 0 - $(P)$(T).AY - - - - false - 0 - - - false - - - - 0 - - 210 + + false + ###### $(pv_name) $(pv_value) - 140 - - - true - true - 1 - false - 39872d87:13e14015f61:45fb - false - 0.0 - - 12 - Text Update - false - - true - true - false - - 1 - true false - $(P)$(T).LLAY - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 233 false - $(pv_name) -$(pv_value) 140 + 180 - - true - true - 1 - false - 39872d87:13e14015f61:45fc + + + false false - 0.0 - - 12 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(T).HLAZ + false - + - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 + true - 1 - - 270 - false - $(pv_name) -$(pv_value) - 140 - - - true - true - 1 - false - 39872d87:13e14015f61:45fd - false - 0.0 - + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(T).EAY + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).EAZ - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 282 false - $(pv_name) -$(pv_value) 140 + 192 - - false - true - 1 - false + + + false false - - 22 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 22 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:45fe - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).AY + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(T).AZ - - - - false - 0 - - - false - - - - 0 - - 300 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 140 + 210 - - true - true - 1 - false - 39872d87:13e14015f61:45ff + + + false false - 0.0 - - 12 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(T).LLAZ + false - + - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 + true + 0 + 1 + true + + + + false + + + + 1 + 12 1 - - 323 - false + Text Update + 0 + true + $(P)$(T).LLAY + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 80 + false 140 + 233 - - false - true - 1 - false + + + false false - - 18 - false - true + false - + - Text Input + true + + + + 0 + 1 true - - + - 44 - 3 + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(T).HLAZ - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4606 0.0 - Text Input + true true false - 1 + + false + ###### + $(pv_name) +$(pv_value) false - 0 - $(P)$(Q):az_tweakVal.VAL - - - + 1 + true + Text Update + 80 + false + 140 + 270 + + + + false + false false - 0 - - - false + + + + true - 0 - - 335 + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(T).EAZ + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) - 158 - - - false - true + false 1 - false + true + Text Update + 80 + false + 140 + 282 + + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 44 - 3 - - 1 + false + + + + 1 + 22 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4607 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).AZ + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(Q):ay_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 245 + false + true + false + false + + $(pv_name) $(pv_value) - 158 - - - false + false true - 1 - false + Text Input + 80 + 140 + 300 + + + + false false - - 18 - false - true + false - + - Text Input + true + + + + 0 + 1 true - - + - 44 - 3 + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(T).LLAZ - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4608 0.0 - Text Input + true true false - 1 + + false + ###### + $(pv_name) +$(pv_value) false - 0 - $(P)$(Q):ax_tweakVal.VAL - - - + 1 + true + Text Update + 80 + false + 140 + 323 + + + + false + false false - 0 - - - false + + + + false + 3 + 1 + + true + + + + false + + + + 1 + 18 0 - - 155 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):az_tweakVal.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 44 158 + 335 - + + + false + false + false + + + false - true - 39872d87:13e14015f61:4609 - - 20 - Action Button + + + + 3 + 1 + + true + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):ay_tweakVal.VAL + + false + 0.0 + true true false - $(P)$(Q):ax_tweak.A + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 44 + 158 + 245 + + + + false + false + false - + - - - - Action Button + false + + + + 3 + 1 + true - > - false - Default + - 20 - 0 - 0 - - + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):ax_tweakVal.VAL - false - 1 - - - - 153 + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 44 + 158 + 155 + + $(P)$(Q):ax_tweak.A 1 10 + - $(pv_name) -$(pv_value) - 202 - - + false + false + + + false - true - 39872d87:13e14015f61:460a - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(Q):ax_tweak.A + + true true false - $(P)$(Q):ay_tweak.A - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 243 + $(pv_name) +$(pv_value) + true + Action Button + 20 + 202 + 153 + + $(P)$(Q):ay_tweak.A 1 10 + - $(pv_name) -$(pv_value) - 202 - - + false + false + + + false - true - 39872d87:13e14015f61:460b - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(Q):ay_tweak.A + + true true false - $(P)$(Q):az_tweak.A - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 333 + $(pv_name) +$(pv_value) + true + Action Button + 20 + 202 + 243 + + $(P)$(Q):az_tweak.A 1 10 + - $(pv_name) -$(pv_value) - 202 - - - true - 1 - 39872d87:13e14015f61:4611 - false - + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + 20 - Label + + Action Button + 0 + $(P)$(Q):az_tweak.A + + true true false - true - false + + + > + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 202 + 333 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label + false + + + + 0 + 1 true - M1Y + true + 100.0 - + Default - 30 - 0 + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 - 1 - - - - 0 - - 300 - true - - 248 - - - true - 1 - 39872d87:13e14015f61:4612 - false - - 20 - Label true true - false + true + + $(pv_name) +$(pv_value) true - false + true + Polyline + 223 + 5 + 87 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label + false + + + + 0 + 1 true - M0Y + true + 100.0 - + Default - 30 - 0 + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 - 1 - - - - 0 - - 210 - true - - 248 - - - true - 1 - 39872d87:13e14015f61:4613 - false - - 20 - Label true true - false + true + + $(pv_name) +$(pv_value) true - false + true + Polyline + 222 + 5 + 177 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label - true - M0X - - - - 30 - 0 - - 1 + false - 0 - - 120 - true - - 248 - - - false - true - 39872d87:13e14015f61:4614 - - 20 - Action Button + 0 + 1 + true + true + 100.0 + + Default + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true - false + true - $(P)$(M1Y).TWR - - - - - - - Action Button - true - < + + $(pv_name) +$(pv_value) + true + true + Polyline + 222 + 5 + 267 + + + + false + 255 + true + 20 + 0 false + + + + false + + + + 0 + 1 + true + true + 100.0 - Default + Default - 20 + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 224 + 5 + 357 + + + + false + + + + + + 0 - 0 - + 1 + true + + + + + + + 20 + 0 + Label - - true + + true + true + false + + + false + M1Y + + true + 1 + true + Label + 30 + false + 248 + 300 + + + + false + + + + + + + 0 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + M0Y + + true + 1 + true + Label + 30 + false + 248 + 210 + + + + false + + + - 333 + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + M0X + + true + 1 + true + Label + 30 + false + 248 + 120 + + $(P)$(M1Y).TWR 1 10 + $(P)$(M1Y).TWR 0 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(M1Y).TWR + + + + true + true + false + + + + < + true $(pv_name) $(pv_value) + true + Action Button + 20 280 + 333 - - true - true - 1 - false - 39872d87:13e14015f61:4618 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(M2X).EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(M2X).EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 105 - 0 - - - 1 - - - - 1 - - 71 false - $(pv_name) -$(pv_value) 370 + 71 - - true - true - 1 - false - 39872d87:13e14015f61:4619 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(M0X).EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(M0X).EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 115 - 0 - - - 1 - - - - 1 - - 71 false - $(pv_name) -$(pv_value) 248 + 71 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:461a - 0.0 - - 0 + + Default + + false + + + 271 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - 1 - 1 - true - - - - - 86 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 1 247 + 86 - - true - true - 1 - false - 39872d87:13e14015f61:461b + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 1 Text Update - false + 0 + true + $(P)$(M0X).HLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(M0X).HLM - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 64 - 0 - - - 1 - - - - 1 - - 90 false - $(pv_name) -$(pv_value) 288 + 90 - - true - true - 1 - false - 39872d87:13e14015f61:461c + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(M0X).RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(M0X).RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 102 false - $(pv_name) -$(pv_value) 280 + 102 - - false - true - 1 - false + + + false false - - 22 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 22 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:461d - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(M0X).VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(M0X).VAL - - - - false - 0 - - - false - - - - 0 - - 120 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 280 + 120 - - true - true - 1 - false - 39872d87:13e14015f61:461e + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 1 Text Update - false + 0 + true + $(P)$(M0X).LLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(M0X).LLM - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 64 - 0 - - - 1 - - - - 1 - - 143 false - $(pv_name) -$(pv_value) 288 + 143 - - true - true - 1 - false - 39872d87:13e14015f61:461f + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 1 Text Update - false + 0 + true + $(P)$(M0Y).HLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(M0Y).HLM - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 64 - 0 - - - 1 - - - - 1 - - 180 false - $(pv_name) -$(pv_value) 288 + 180 - - true - true - 1 - false - 39872d87:13e14015f61:4620 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(M0Y).RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(M0Y).RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 192 false - $(pv_name) -$(pv_value) 280 + 192 - - false - true - 1 - false + + + false false - - 22 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 22 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4621 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(M0Y).VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(M0Y).VAL - - - - false - 0 - - - false - - - - 0 - - 210 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 280 + 210 - - true - true - 1 - false - 39872d87:13e14015f61:4622 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 1 Text Update - false + 0 + true + $(P)$(M0Y).LLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(M0Y).LLM - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 64 - 0 - - - 1 - - - - 1 - - 233 false - $(pv_name) -$(pv_value) 288 + 233 - - true - true - 1 - false - 39872d87:13e14015f61:4623 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 1 Text Update - false + 0 + true + $(P)$(M1Y).HLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(M1Y).HLM - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 64 - 0 - - - 1 - - - - 1 - - 270 false - $(pv_name) -$(pv_value) 288 + 270 - - true - true - 1 - false - 39872d87:13e14015f61:4624 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(M1Y).RBV + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(M1Y).RBV - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 282 false - $(pv_name) -$(pv_value) 280 + 282 - - false - true - 1 - false + + + false false - - 22 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 22 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4625 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(M1Y).VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(M1Y).VAL - - - - false - 0 - - - false - - - - 0 - - 300 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 280 + 300 - - true - true - 1 - false - 39872d87:13e14015f61:4626 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 1 Text Update - false + 0 + true + $(P)$(M1Y).LLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(M1Y).LLM - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 64 - 0 - - - 1 - - - - 1 - - 323 false - $(pv_name) -$(pv_value) 288 + 323 - - false - true - 39872d87:13e14015f61:4627 - - 20 - Action Button - false - - true - true - false - - $(P)$(M0X).TWR - - - - - - - Action Button - true - < - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - - 153 + $(P)$(M0X).TWR 1 10 + $(P)$(M0X).TWR 0 10 + - $(pv_name) -$(pv_value) - 280 - - + false + false + + + false - true - 39872d87:13e14015f61:4628 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(M0X).TWR + + true true false - $(P)$(M0Y).TWR - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - true - 1 - - - - 243 + $(pv_name) +$(pv_value) + true + Action Button + 20 + 280 + 153 + + $(P)$(M0Y).TWR 1 10 + $(P)$(M0Y).TWR 0 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(M0Y).TWR + + + + true + true + false + + + + < + true $(pv_name) $(pv_value) + true + Action Button + 20 280 + 243 - - false - true - 1 - false + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4629 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(M1Y).TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(M1Y).TWV - - - - false - 0 - - - false - - - - 0 - - 335 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 300 + 335 - - false - true - 1 - false + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:462a - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(M0Y).TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(M0Y).TWV - - - - false - 0 - - - false - - - - 0 - - 245 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 300 + 245 - - false - true - 1 - false + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 40 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:462b - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(M0X).TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(M0X).TWV - - - - false - 0 - - - false - - - - 0 - - 155 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 40 300 + 155 - + + + + $(P)$(M0X).TWF + 1 + 10 + + + + + $(P)$(M0X).TWF + 0 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:462c - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(M0X).TWF + + true true false - $(P)$(M0X).TWF - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - true - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 340 153 + + - $(P)$(M0X).TWF + $(P)$(M0Y).TWF 1 10 + - $(P)$(M0X).TWF + $(P)$(M0Y).TWF 0 10 + - $(pv_name) -$(pv_value) - 340 - - + false + false + + + false - true - 39872d87:13e14015f61:462d - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(M0Y).TWF + + true true false - $(P)$(M0Y).TWF - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - true - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 340 243 + + - $(P)$(M0Y).TWF + $(P)$(M1Y).TWF 1 10 + - $(P)$(M0Y).TWF + $(P)$(M1Y).TWF 0 10 + - $(pv_name) -$(pv_value) - 340 - - + false + false + + + false - true - 39872d87:13e14015f61:462e - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(M1Y).TWF + + true true false - $(P)$(M1Y).TWF + + + > + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 340 + 333 + + + + false - + + + + + 0 + 1 + true + + + - + - Action Button + 20 + 0 + Label + + + true + true + false + + + false + M2Z + + true + 1 + true + Label + 30 + false + 368 + 300 + + + + false + + + + + + + 0 + 1 true - > - false - Default + - 20 - 0 - 0 - + + + + 20 + 0 + Label - - true - 1 + + true + true + false + + + false + M2Y + + true + 1 + true + Label + 30 + false + 368 + 210 + + + + false + + + - 333 + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + M2X + + true + 1 + true + Label + 30 + false + 368 + 120 + + - $(P)$(M1Y).TWF + $(P)$(M2Z).TWR 1 10 + - $(P)$(M1Y).TWF + $(P)$(M2Z).TWR 0 10 + - $(pv_name) -$(pv_value) - 340 - - - true - 1 - 39872d87:13e14015f61:4635 - false - + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + 20 - Label + + Action Button + 0 + $(P)$(M2Z).TWR + + true true false - true - false + + + < + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 400 + 333 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label + false + + + + 0 + 1 true - M2Z + true + 100.0 - + Default - 30 - 0 + false + + + + 271 + true + 0 + 1 + Polyline + + + + + + + 0.0 - 1 - - - - 0 - - 300 - true - - 368 - - - true - 1 - 39872d87:13e14015f61:4636 - false - - 20 - Label true true - false + true + + $(pv_name) +$(pv_value) true - false + true + Polyline + 1 + 365 + 87 + + + + false + false + false - + - - - - Label + true + + + + 0 + 1 true - M2Y - + - 30 - 0 + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(M2X).HLM + + 0.0 - 1 - - - - 0 - - 210 - true - - 368 - - - true - 1 - 39872d87:13e14015f61:4637 - false - - 20 - Label true true false - true - false + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 64 + false + 408 + 90 + + + + false + false + false - + - - - - Label + true + + + + 0 + 1 true - M2X - + - 30 - 0 + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(M2X).RBV + + 0.0 - 1 + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 400 + 102 + + + + false + false + false + + + + false - 0 - - 120 - true - - 368 - - - false - true - 39872d87:13e14015f61:4638 - - 20 - Action Button + 3 + 1 + + true + + + false + + + + 1 + 22 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(M2X).VAL + + false + 0.0 + true true false - $(P)$(M2Z).TWR + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 400 + 120 + + + + false + false + false - + - - - - Action Button + true + + + + 0 + 1 true - < - false - Default + - 20 - 0 - 0 - - + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(M2X).LLM - true - 1 - - - - 333 - - - $(P)$(M2Z).TWR - 1 - 10 - - - - $(P)$(M2Z).TWR - 0 - 10 - - - - $(pv_name) -$(pv_value) - 400 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:463c 0.0 - - 0 - 271 - true - Polyline - false - 255 + true true - true + false - - - - - true - + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 64 + false + 408 + 143 + + + + false + false + false - + - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true + true - - 87 - $(pv_name) -$(pv_value) - 365 - - - true - true - 1 - false - 39872d87:13e14015f61:463d - false - 0.0 - + 0 + 1 + true + + + + false + + + + 1 12 + 1 Text Update - false + 0 + true + $(P)$(M2Y).HLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(M2X).HLM - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 64 - 0 - - - 1 - - - - 1 - - 90 false - $(pv_name) -$(pv_value) 408 + 180 - - true - true - 1 - false - 39872d87:13e14015f61:463e + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(M2Y).RBV + + 0.0 + true true false - 1 - true - false - $(P)$(M2X).RBV - - - - - - - Text Update - true + + false ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 102 - false $(pv_name) $(pv_value) + false + 1 + true + Text Update + 80 + false 400 + 192 - - false - true - 1 - false + + + false false - - 22 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 22 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:463f - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(M2Y).VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(M2X).VAL - - - - false - 0 - - - false - - - - 0 - - 120 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 400 + 210 - - true - true - 1 - false - 39872d87:13e14015f61:4640 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 1 Text Update - false + 0 + true + $(P)$(M2Y).LLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(M2X).LLM - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 64 - 0 - - - 1 - - - - 1 - - 143 false - $(pv_name) -$(pv_value) 408 + 233 - - true - true - 1 - false - 39872d87:13e14015f61:4641 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 1 Text Update - false + 0 + true + $(P)$(M2Z).HLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(M2Y).HLM - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 64 - 0 - - - 1 - - - - 1 - - 180 false - $(pv_name) -$(pv_value) 408 + 270 - - true - true - 1 - false - 39872d87:13e14015f61:4642 + + + false false - 0.0 - - 15 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(M2Y).RBV + false - + - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 + true + 0 + 1 + true + + + + false + + + + 1 + 15 1 - - 192 - false + Text Update + 0 + true + $(P)$(M2Z).RBV + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 80 + false 400 + 282 - - false - true - 1 - false + + + false false - - 22 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 22 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4643 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(M2Z).VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(M2Y).VAL - - - - false - 0 - - - false - - - - 0 - - 210 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 400 + 300 - - true - true - 1 - false - 39872d87:13e14015f61:4644 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 12 + 1 Text Update - false + 0 + true + $(P)$(M2Z).LLM + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(M2Y).LLM - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 64 - 0 - - - 1 - - - - 1 - - 233 false - $(pv_name) -$(pv_value) 408 + 323 - - true - true - 1 - false - 39872d87:13e14015f61:4645 - false - 0.0 - - 12 - Text Update + + + + $(P)$(M2X).TWR + 1 + 10 + + + + + $(P)$(M2X).TWR + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + $(P)$(M2X).TWR + + true true false - 1 - true - false - $(P)$(M2Z).HLM + + + < + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 400 + 153 + + + + + $(P)$(M2Y).TWR + 1 + 10 + + + + + $(P)$(M2Y).TWR + 0 + 10 + + + + + false + false - + - - - - Text Update - true - ###### - false - 0 - - - - 64 - 0 - - - 1 + false - 1 - - 270 - false - $(pv_name) -$(pv_value) - 408 - - - true - true - 1 - false - 39872d87:13e14015f61:4646 - false - 0.0 - - 15 - Text Update + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + $(P)$(M2Y).TWR + + true true false - 1 - true - false - $(P)$(M2Z).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 282 - false + + + < + true $(pv_name) $(pv_value) + true + Action Button + 20 400 + 243 - - false - true - 1 - false + + + false false - - 22 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4647 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(M2X).TWV + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(M2Z).VAL - - - + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 420 + 155 + + + + false + false false - 0 - - - false + + + + false + 3 + 1 + + true + + + + false + + + + 1 + 18 0 - - 300 - $(pv_name) -$(pv_value) - 400 - - - true - true - 1 - false - 39872d87:13e14015f61:4648 - false + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(M2Y).TWV + + false 0.0 - - 12 - Text Update - false + true true false - 1 - true + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - $(P)$(M2Z).LLM + true + Text Input + 40 + 420 + 245 + + + + false + false + false - + - - - - Text Update - true - ###### - false - 0 - - - - 64 - 0 - - - 1 + false - 1 - - 323 - false - $(pv_name) -$(pv_value) - 408 - - - false - true - 39872d87:13e14015f61:4649 - - 20 - Action Button + 3 + 1 + + true + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(M2Z).TWV + + false + 0.0 + true true false - $(P)$(M2X).TWR + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 420 + 335 + + + + + $(P)$(M2X).TWF + 1 + 10 + + + + + $(P)$(M2X).TWF + 0 + 10 + + + + + false + false - + - - - - Action Button + false + + + + 0 + 1 true - < - false - Default + Default - 20 - 0 - 0 + false + + + + 20 - + Action Button + 0 + $(P)$(M2X).TWF + + + true + true + false + + + + > true - 1 - - - + $(pv_name) +$(pv_value) + true + Action Button + 20 + 460 153 + + - $(P)$(M2X).TWR + $(P)$(M2Y).TWF 1 10 + - $(P)$(M2X).TWR + $(P)$(M2Y).TWF 0 10 + - $(pv_name) -$(pv_value) - 400 - - + false + false + + + false - true - 39872d87:13e14015f61:464a - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(M2Y).TWF + + true true false - $(P)$(M2Y).TWR - - - - - - + + + > + true + $(pv_name) +$(pv_value) + true Action Button - true - < - false - - Default - 20 - 0 - 0 - - - - true - 1 - - - + 460 243 + + - $(P)$(M2Y).TWR + $(P)$(M2Z).TWF 1 10 + - $(P)$(M2Y).TWR + $(P)$(M2Z).TWF 0 10 + - $(pv_name) -$(pv_value) - 400 - - - false - true - 1 - false - false - - 18 - false - true + false + false - + - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:464b - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(M2X).TWV - - - - false - 0 - - - false + false - 0 - - 155 - $(pv_name) -$(pv_value) - 420 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input + 0 + 1 true - - + Default - 40 - 3 + false + + + + 20 + + Action Button + 0 + $(P)$(M2Z).TWF - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:464c - 0.0 - Text Input + true true false - 1 - false - 0 - $(P)$(M2Y).TWV - - - - false - 0 - - - false - - - - 0 - - 245 + + + > + true $(pv_name) $(pv_value) - 420 - - - false true - 1 - false - false - - 18 - false - true + Action Button + 20 + 460 + 333 + + + + false + 255 + true + 20 + 0 + false - + - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:464d - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(M2Z).TWV - - - - false - 0 - - - false + false - 0 - - 335 - $(pv_name) -$(pv_value) - 420 - - - false + 0 + 1 + true true - 20 - true - 100.0 - 39872d87:13e14015f61:4658 - 0.0 - - 0 + 100.0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 238 + 246 + 87 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 238 - 0 - 0 - - - 1 - 1 - true + false - - 87 - $(pv_name) -$(pv_value) - 246 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4659 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 239 + 246 + 177 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 239 - 0 - 0 - - - 1 - 1 - true + false - - 177 - $(pv_name) -$(pv_value) - 246 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:465a - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 239 + 246 + 267 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 239 + false + + + + 1 + true 0 - 0 - - - 1 1 - true - - - - - 267 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 238 246 + 357 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:465b - 0.0 - - 0 - 1 - true - Polyline + + Default + false - 255 + + + + 272 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 1 + 483 + 86 + + + + false - + - - - - Polyline - true - false - - Default - - 238 - 0 - 0 - - - 1 - 1 - true - - 357 - $(pv_name) -$(pv_value) - 246 - - - false - true - false - 39872d87:13e14015f61:4661 - - 18 - Menu Button - false + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + + true + + + false + + $(P)$(Q):done.VAL + + true true false - false - + + false + Moving + + true + 1 + true + Label + 75 + false + 220 + 365 + + + + false - + - - - - Menu Button - true - false - - Default - - 18 - 6 - - - - 1 - 88 + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + + true + + + false + + $(P)$(Q):done.VAL + + + + true + true + false + + + false + Done + + true + 1 + true + Label + 75 + false + 220 + 365 + + motorx_tiny.opi @@ -9217,7 +8880,7 @@ $(pv_value) true $(M2X) - 0 + 1 M2X (Tiny) @@ -9226,7 +8889,7 @@ $(pv_value) true $(M2X) - 0 + 1 M2X (Small) @@ -9235,7 +8898,7 @@ $(pv_value) true $(M2X) - 0 + 1 M2X (Medium) @@ -9244,7 +8907,7 @@ $(pv_value) true $(M2X) - 0 + 1 M2X (Setup) @@ -9254,52 +8917,53 @@ $(pv_value) $(M2X) $(M2X) - 0 + 1 Scan parameters - $(pv_name) -$(pv_value) - 366 - - - false - true false - 39872d87:13e14015f61:4662 - + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + 18 + Menu Button - false + + + true true false + + false + $(pv_name) +$(pv_value) false - - - - - - - + true Menu Button - true - false - - Default - 18 - 6 - - - - 1 - - - - 178 + 366 + 88 + + motorx_tiny.opi @@ -9307,7 +8971,7 @@ $(pv_value) true $(M2Y) - 0 + 1 M2Y (Tiny) @@ -9316,7 +8980,7 @@ $(pv_value) true $(M2Y) - 0 + 1 M2Y (Small) @@ -9325,7 +8989,7 @@ $(pv_value) true $(M2Y) - 0 + 1 M2Y (Medium) @@ -9334,7 +8998,7 @@ $(pv_value) true $(M2Y) - 0 + 1 M2Y (Setup) @@ -9344,52 +9008,53 @@ $(pv_value) $(M2Y) $(M2Y) - 0 + 1 Scan parameters - $(pv_name) -$(pv_value) - 366 - - - false - true false - 39872d87:13e14015f61:4663 - + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + 18 + Menu Button - false + + + true true false + + false + $(pv_name) +$(pv_value) false - - - - - - - + true Menu Button - true - false - - Default - 18 - 6 - - - - 1 - - - - 268 + 366 + 178 + + motorx_tiny.opi @@ -9397,7 +9062,7 @@ $(pv_value) true $(M2Z) - 0 + 1 M2Z (Tiny) @@ -9406,7 +9071,7 @@ $(pv_value) true $(M2Z) - 0 + 1 M2Z (Small) @@ -9415,7 +9080,7 @@ $(pv_value) true $(M2Z) - 0 + 1 M2Z (Medium) @@ -9424,7 +9089,7 @@ $(pv_value) true $(M2Z) - 0 + 1 M2Z (Setup) @@ -9434,52 +9099,53 @@ $(pv_value) $(M2Z) $(M2Z) - 0 + 1 Scan parameters - $(pv_name) -$(pv_value) - 366 - - - false - true false - 39872d87:13e14015f61:4664 - + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + 18 + Menu Button - false + + + true true false + + false + $(pv_name) +$(pv_value) false - - - - - - - + true Menu Button - true - false - - Default - 18 - 6 - - - - 1 - - - + 366 268 + + motorx_tiny.opi @@ -9487,7 +9153,7 @@ $(pv_value) true $(M1Y) - 0 + 1 M1Y (Tiny) @@ -9496,7 +9162,7 @@ $(pv_value) true $(M1Y) - 0 + 1 M1Y (Small) @@ -9505,7 +9171,7 @@ $(pv_value) true $(M1Y) - 0 + 1 M1Y (Medium) @@ -9514,7 +9180,7 @@ $(pv_value) true $(M1Y) - 0 + 1 M1Y (Setup) @@ -9524,52 +9190,53 @@ $(pv_value) $(M1Y) $(M1Y) - 0 + 1 Scan parameters - $(pv_name) -$(pv_value) - 248 - - - false - true false - 39872d87:13e14015f61:4665 - + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + 18 + Menu Button - false + + + true true false + + false + $(pv_name) +$(pv_value) false - - - - - - - + true Menu Button - true - false - - Default - 18 - 6 - - - - 1 - - - - 178 + 248 + 268 + + motorx_tiny.opi @@ -9577,7 +9244,7 @@ $(pv_value) true $(M0Y) - 0 + 1 M0Y (Tiny) @@ -9586,7 +9253,7 @@ $(pv_value) true $(M0Y) - 0 + 1 M0Y (Small) @@ -9595,7 +9262,7 @@ $(pv_value) true $(M0Y) - 0 + 1 M0Y (Medium) @@ -9604,7 +9271,7 @@ $(pv_value) true $(M0Y) - 0 + 1 M0Y (Setup) @@ -9614,52 +9281,53 @@ $(pv_value) $(M0Y) $(M0Y) - 0 + 1 Scan parameters - $(pv_name) -$(pv_value) - 248 - - - false - true false - 39872d87:13e14015f61:4666 - + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + 18 + Menu Button - false + + + true true false + + false + $(pv_name) +$(pv_value) false - - - - - - - + true Menu Button - true - false - - Default - 18 - 6 - - - - 1 - - - - 88 + 248 + 178 + + motorx_tiny.opi @@ -9667,7 +9335,7 @@ $(pv_value) true $(M0X) - 0 + 1 M0X (Tiny) @@ -9676,7 +9344,7 @@ $(pv_value) true $(M0X) - 0 + 1 M0X (Small) @@ -9685,7 +9353,7 @@ $(pv_value) true $(M0X) - 0 + 1 M0X (Medium) @@ -9694,7 +9362,7 @@ $(pv_value) true $(M0X) - 0 + 1 M0X (Setup) @@ -9704,52 +9372,53 @@ $(pv_value) $(M0X) $(M0X) - 0 + 1 Scan parameters - $(pv_name) -$(pv_value) - 248 - - - false - true false - 39872d87:13e14015f61:4667 - + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + 18 + Menu Button - false + + + true true false + + false + $(pv_name) +$(pv_value) false - - - - - - - + true Menu Button - true - false - - Default - 18 - 6 - - - - 1 - - - + 248 88 + + scanParmsCustom.opi @@ -9760,52 +9429,54 @@ $(pv_value) $(Q)AX $(T).AEGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 112 - - + false + false + + + false - true - false - 39872d87:13e14015f61:4668 - - 18 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 18 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + + false + $(pv_name) +$(pv_value) + true + Action Button 18 - 6 - - - - 1 - - - - 178 + 112 + 88 + + scanParmsCustom.opi @@ -9816,52 +9487,54 @@ $(pv_value) $(Q)AY $(T).AEGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 112 - - + false + false + + + false - true - false - 39872d87:13e14015f61:4669 - - 18 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 18 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + + false + $(pv_name) +$(pv_value) + true + Action Button 18 - 6 - - - - 1 - - - - 268 + 112 + 178 + + scanParmsCustom.opi @@ -9872,52 +9545,54 @@ $(pv_value) $(Q)AZ $(T).AEGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 112 - - + false + false + + + false - true - false - 39872d87:13e14015f61:466a - - 18 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 18 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + + false + $(pv_name) +$(pv_value) + true + Action Button 18 - 6 - - - - 1 - - - + 112 268 + + scanParmsCustom.opi @@ -9928,52 +9603,54 @@ $(pv_value) $(Q)Z $(T).LEGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 7 - - + false + false + + + false - true - false - 39872d87:13e14015f61:466b - - 18 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 18 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + + false + $(pv_name) +$(pv_value) + true + Action Button 18 - 6 - - - - 1 - - - - 178 + 7 + 268 + + scanParmsCustom.opi @@ -9984,52 +9661,54 @@ $(pv_value) $(Q)Y $(T).LEGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 7 - - + false + false + + + false - true - false - 39872d87:13e14015f61:466c - - 18 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 18 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + + + false + $(pv_name) +$(pv_value) + true + Action Button 18 - 6 - - - - 1 - - - - 88 + 7 + 178 + + scanParmsCustom.opi @@ -10040,59 +9719,61 @@ $(pv_value) $(Q)X $(T).LEGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 7 - - + false + false + + + false - true - false - 39872d87:13e14015f61:466d - - 20 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 18 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - - 380 + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 18 + 7 + 88 + + table_setup_SRI.opi true - 0 + 1 Setup (SRI geometry) @@ -10100,7 +9781,7 @@ $(pv_value) true - 0 + 1 Setup (GEOCARS geometry) @@ -10108,7 +9789,7 @@ $(pv_value) true - 0 + 1 Setup (NEWPORT geometry) @@ -10116,7 +9797,7 @@ $(pv_value) true - 0 + 1 Setup (PNC geometry) @@ -10124,200 +9805,501 @@ $(pv_value) true - 0 + 1 Fixed points + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 40 440 + 380 - + + + + table.opi + + true + + 0 + Small display + + + false + false + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + Less + false + $(pv_name) +$(pv_value) true - false - 39872d87:13e14015f61:466e + Action Button + 40 + 440 + 360 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):x_tweakVal.VAL + + false + 0.0 + + + true + true + false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 44 + 43 + 155 + + + + + $(P)$(Q):x_tweak.A + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + 20 - Menu Button + + Action Button + 0 + $(P)$(Q):x_tweak.A + + + + true + true + false + + + + > + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 87 + 153 + + + + + $(P)$(Q):x_tweak.B + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + $(P)$(Q):x_tweak.B + + true true false - false - + + + < + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 23 + 153 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 40 - 6 - + + + + 10 + 0 + Label - - 1 - - - - 360 - - - table.opi - - true - - 1 - Small display - - - $(pv_name) -$(pv_value) - 440 - - - false - true - false - 39872d87:13e14015f61:4676 - - 20 - Menu Button - false true true false - false - + + false + Record version: + + true + 1 + true + Label + 90 + false + 0 + 387 + + + + false + false + false - + - - - - Menu Button + true + + + + 0 + 1 true - false - Default + - 95 - 6 - - + false + + + + 1 + 12 + 0 + Text Update + 0 + true + $(P)$(T).VERS - 1 - - - - 31 + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 30 + false + 90 + 387 + + table_full_refresh.opi true - 1 + 0 Refresh fixed-point menu - $(pv_name) -$(pv_value) - 395 - - + false + false + + + false - true - true - 39872d87:13e14015f61:4677 - - 20 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + + + true true false - false - $(P)$(Q)fpSelect + + + Refresh menu + false + $(pv_name) +$(pv_value) + true + Action Button + 95 + 395 + 31 + + + + true + false + false - + - - - - Menu Button + false + + + + 6 + 1 true - false - Default + Default - 200 - 6 + false + + + + 20 - + Menu Button + $(P)$(Q)fpSelect - 1 - - - - 31 - + + + true + true + false + + + false $(pv_name) $(pv_value) + false + true + Menu Button + 200 195 + 31 - - true - 1 - 39872d87:13e14015f61:4678 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false - - - - - - - Label - true Fixed point: - - - - 85 - 0 - - 1 - - - - 1 - - 34 - true + true + 1 + true + Label + 85 + false 108 + 34 - \ No newline at end of file + diff --git a/opticsApp/op/opi/table_full_refresh.opi b/opticsApp/op/opi/autoconvert/table_full_refresh.opi similarity index 76% rename from opticsApp/op/opi/table_full_refresh.opi rename to opticsApp/op/opi/autoconvert/table_full_refresh.opi index 09862f6..586bc4b 100644 --- a/opticsApp/op/opi/table_full_refresh.opi +++ b/opticsApp/op/opi/autoconvert/table_full_refresh.opi @@ -1,137 +1,138 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 400 true - 39872d87:13e14015f61:4735 - 3.1.2.20120830 + table_full_refresh + + true + true + false true - 400 - table_full_refresh false - false - - - - - - Display - true 490 - - true - 5 - - false - -1 - -1 - - - 445 313 - - true - true - 1 - false - 39872d87:13e14015f61:4736 + 445 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 1 Text Update - false + 0 + true + $(P)$(T).DESC + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).DESC - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 285 - 0 - - - 1 - - - - 1 - - 519 false - $(pv_name) -$(pv_value) 405 + 519 - - false - true - false - 39872d87:13e14015f61:4737 - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 95 - 6 - - - - 1 - - - - 31 + table_full.opi true - 1 + 0 Refresh fixed-point menu + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + Press again + false $(pv_name) $(pv_value) + true + Action Button + 95 395 + 31 - \ No newline at end of file + diff --git a/opticsApp/op/opi/autoconvert/table_full_soft.opi b/opticsApp/op/opi/autoconvert/table_full_soft.opi new file mode 100644 index 0000000..94d4fe8 --- /dev/null +++ b/opticsApp/op/opi/autoconvert/table_full_soft.opi @@ -0,0 +1,10737 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 400 + + true + + table_full_soft + + + true + true + false + true + false + Display + 490 + 950 + 512 + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 27 + true + + + + 0 + 0 + Rectangle + + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 490 + 0 + 0 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 18 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 80 + 25 + 280 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 18 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 80 + 25 + 190 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 18 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 80 + 25 + 100 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 22 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 23 + 98 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 22 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 23 + 188 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 22 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 23 + 278 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 18 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 80 + 140 + 100 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 18 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 80 + 140 + 190 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 18 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 80 + 140 + 280 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 22 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 138 + 98 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 22 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 138 + 188 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 22 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 138 + 278 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 16 + true + + + + 0 + 0 + Rectangle + + + + + + true + + + false + + $(P)$(M1Y).LLS + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 10 + 280 + 270 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 16 + true + + + + 0 + 0 + Rectangle + + + + + + true + + + false + + $(P)$(M0Y).LLS + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 10 + 280 + 180 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 16 + true + + + + 0 + 0 + Rectangle + + + + + + true + + + false + + $(P)$(M0X).LLS + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 10 + 280 + 90 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 16 + true + + + + 0 + 0 + Rectangle + + + + + + true + + + false + + $(P)$(M0X).HLS + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 10 + 350 + 90 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 16 + true + + + + 0 + 0 + Rectangle + + + + + + true + + + false + + $(P)$(M0Y).HLS + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 10 + 350 + 180 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 16 + true + + + + 0 + 0 + Rectangle + + + + + + true + + + false + + $(P)$(M1Y).HLS + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 10 + 350 + 270 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 87 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(M0X).DMOV + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 278 + 88 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 87 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(M0Y).DMOV + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 278 + 178 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 87 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(M1Y).DMOV + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 278 + 268 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 16 + true + + + + 0 + 0 + Rectangle + + + + + + true + + + false + + $(P)$(M2Z).LLS + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 10 + 400 + 270 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 16 + true + + + + 0 + 0 + Rectangle + + + + + + true + + + false + + $(P)$(M2Y).LLS + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 10 + 400 + 180 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 16 + true + + + + 0 + 0 + Rectangle + + + + + + true + + + false + + $(P)$(M2X).LLS + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 10 + 400 + 90 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 16 + true + + + + 0 + 0 + Rectangle + + + + + + true + + + false + + $(P)$(M2X).HLS + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 10 + 470 + 90 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 16 + true + + + + 0 + 0 + Rectangle + + + + + + true + + + false + + $(P)$(M2Y).HLS + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 10 + 470 + 180 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 16 + true + + + + 0 + 0 + Rectangle + + + + + + true + + + false + + $(P)$(M2Z).HLS + + + + true + true + false + + + $(pv_name) +$(pv_value) + false + true + Rectangle + 10 + 470 + 270 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 87 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(M2X).DMOV + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 398 + 88 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 87 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(M2Y).DMOV + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 398 + 178 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 87 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(M2Z).DMOV + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 398 + 268 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 87 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(Q):x.DMOV + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 86 + 23 + 88 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 87 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(Q):ax.DMOV + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 86 + 138 + 88 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 87 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(Q):y.DMOV + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 86 + 23 + 178 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 87 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(Q):ay.DMOV + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 86 + 138 + 179 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 87 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(Q):z.DMOV + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 86 + 23 + 269 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 87 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(Q):az.DMOV + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 86 + 138 + 269 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 15 + 1 + Label + + + true + true + false + + + false + ($(P)$(T)) + + true + 1 + true + Label + 245 + false + 245 + 5 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 20 + 1 + Text Update + 0 + true + $(P)$(T).DESC + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 285 + false + 405 + 519 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 27 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).DESC + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 245 + 0 + 0 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 487 + 1 + 28 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(Q):z.HLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 25 + 270 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(Q):y.HLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 25 + 180 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(Q):x.HLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 25 + 90 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(Q):z.RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 25 + 282 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(Q):y.RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 25 + 192 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(Q):x.RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 25 + 102 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + true + + Choice 1 + Choice 2 + Choice 3 + + true + Choice Button + $(P)$(T).SET + + + + true + true + false + + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 83 + 5 + 365 + + + + + $(P)$(Q):init + 1 + 10 + + + + + $(P)$(Q):init + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(Q):init + + + + true + true + false + + + + Init + true + $(pv_name) +$(pv_value) + true + Action Button + 40 + 180 + 365 + + + + + $(P)$(Q):sync + 1 + 10 + + + + + $(P)$(Q):sync + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(Q):sync + + + + true + true + false + + + + Sync + true + $(pv_name) +$(pv_value) + true + Action Button + 40 + 140 + 365 + + + + + $(P)$(Q):zero + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(Q):zero + + + + true + true + false + + + + Zero + false + $(pv_name) +$(pv_value) + true + Action Button + 40 + 90 + 365 + + + + + $(P)$(Q):stop.VAL + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 35 + + Action Button + 0 + $(P)$(Q):stop.VAL + + + + true + true + false + + + + Stop Table + false + $(pv_name) +$(pv_value) + true + Action Button + 115 + 305 + 365 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 22 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):x.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 25 + 120 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + X + + true + 1 + true + Label + 20 + false + 10 + 120 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(Q):x.LLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 25 + 143 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 22 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):y.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 25 + 210 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + Y + + true + 1 + true + Label + 20 + false + 10 + 210 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):y.TWV + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 44 + 43 + 245 + + + + + $(P)$(Q):y.TWF + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(Q):y.TWF + + + + true + true + false + + + + > + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 87 + 243 + + + + + $(P)$(Q):y.TWR + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(Q):y.TWR + + + + true + true + false + + + + < + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 23 + 243 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(Q):y.LLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 25 + 233 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 22 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):z.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 25 + 300 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + Z + + true + 1 + true + Label + 20 + false + 10 + 300 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):z.TWV + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 44 + 43 + 335 + + + + + $(P)$(Q):z.TWF + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(Q):z.TWF + + + + true + true + false + + + + > + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 87 + 333 + + + + + $(P)$(Q):z.TWR + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(Q):z.TWR + + + + true + true + false + + + + < + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 23 + 333 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(Q):z.LLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 25 + 323 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + + true + + + false + + $(P)$(T).LVIO + + + + true + true + false + + + false + Limit + + true + 1 + true + Label + 65 + false + 208 + 55 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + Motors + + true + 1 + true + Label + 230 + false + 248 + 55 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(T).LEGU + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 95 + false + 10 + 71 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + Translate + + true + 1 + true + Label + 115 + false + 10 + 55 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 272 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 1 + 6 + 86 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 272 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 1 + 111 + 86 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 487 + 1 + 53 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + AX + + true + 1 + true + Label + 20 + false + 115 + 120 + + + + + $(P)$(Q):ax.TWR + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(Q):ax.TWR + + + + true + true + false + + + + < + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 138 + 153 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + AY + + true + 1 + true + Label + 20 + false + 115 + 210 + + + + + $(P)$(Q):ay.TWR + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(Q):ay.TWR + + + + true + true + false + + + + < + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 138 + 243 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + AZ + + true + 1 + true + Label + 20 + false + 115 + 300 + + + + + $(P)$(Q):az.TWR + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(Q):az.TWR + + + + true + true + false + + + + < + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 138 + 333 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(T).AEGU + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 105 + false + 115 + 71 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + Rotate + + true + 1 + true + Label + 125 + false + 115 + 55 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 273 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 1 + 226 + 86 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(Q):ax.HLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 140 + 90 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(Q):ax.RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 140 + 102 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 22 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):ax.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 140 + 120 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(Q):ax.LLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 140 + 143 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(Q):ay.HLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 140 + 180 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(Q):ay.RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 140 + 192 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 22 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):ay.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 140 + 210 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(Q):ay.LLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 140 + 233 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(Q):az.HLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 140 + 270 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(Q):az.RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 140 + 282 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 22 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):az.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 140 + 300 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(Q):az.LLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 140 + 323 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):az.TWV + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 44 + 158 + 335 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):ay.TWV + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 44 + 158 + 245 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):ax.TWV + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 44 + 158 + 155 + + + + + $(P)$(Q):ax.TWF + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(Q):ax.TWF + + + + true + true + false + + + + > + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 202 + 153 + + + + + $(P)$(Q):ay.TWF + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(Q):ay.TWF + + + + true + true + false + + + + > + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 202 + 243 + + + + + $(P)$(Q):az.TWF + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(Q):az.TWF + + + + true + true + false + + + + > + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 202 + 333 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 223 + 5 + 87 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 222 + 5 + 177 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 222 + 5 + 267 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 224 + 5 + 357 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + M1Y + + true + 1 + true + Label + 30 + false + 248 + 300 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + M0Y + + true + 1 + true + Label + 30 + false + 248 + 210 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + M0X + + true + 1 + true + Label + 30 + false + 248 + 120 + + + + + $(P)$(M1Y).TWR + 1 + 10 + + + + + $(P)$(M1Y).TWR + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(M1Y).TWR + + + + true + true + false + + + + < + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 280 + 333 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(M2X).EGU + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 105 + false + 370 + 71 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(M0X).EGU + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 115 + false + 248 + 71 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 271 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 1 + 247 + 86 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(M0X).HLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 64 + false + 288 + 90 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(M0X).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 280 + 102 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 22 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(M0X).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 280 + 120 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(M0X).LLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 64 + false + 288 + 143 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(M0Y).HLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 64 + false + 288 + 180 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(M0Y).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 280 + 192 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 22 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(M0Y).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 280 + 210 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(M0Y).LLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 64 + false + 288 + 233 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(M1Y).HLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 64 + false + 288 + 270 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(M1Y).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 280 + 282 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 22 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(M1Y).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 280 + 300 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(M1Y).LLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 64 + false + 288 + 323 + + + + + $(P)$(M0X).TWR + 1 + 10 + + + + + $(P)$(M0X).TWR + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(M0X).TWR + + + + true + true + false + + + + < + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 280 + 153 + + + + + $(P)$(M0Y).TWR + 1 + 10 + + + + + $(P)$(M0Y).TWR + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(M0Y).TWR + + + + true + true + false + + + + < + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 280 + 243 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(M1Y).TWV + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 300 + 335 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(M0Y).TWV + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 300 + 245 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(M0X).TWV + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 300 + 155 + + + + + $(P)$(M0X).TWF + 1 + 10 + + + + + $(P)$(M0X).TWF + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(M0X).TWF + + + + true + true + false + + + + > + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 340 + 153 + + + + + $(P)$(M0Y).TWF + 1 + 10 + + + + + $(P)$(M0Y).TWF + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(M0Y).TWF + + + + true + true + false + + + + > + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 340 + 243 + + + + + $(P)$(M1Y).TWF + 1 + 10 + + + + + $(P)$(M1Y).TWF + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(M1Y).TWF + + + + true + true + false + + + + > + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 340 + 333 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + M2Z + + true + 1 + true + Label + 30 + false + 368 + 300 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + M2Y + + true + 1 + true + Label + 30 + false + 368 + 210 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + M2X + + true + 1 + true + Label + 30 + false + 368 + 120 + + + + + $(P)$(M2Z).TWR + 1 + 10 + + + + + $(P)$(M2Z).TWR + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(M2Z).TWR + + + + true + true + false + + + + < + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 400 + 333 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 271 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 1 + 365 + 87 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(M2X).HLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 64 + false + 408 + 90 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(M2X).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 400 + 102 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 22 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(M2X).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 400 + 120 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(M2X).LLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 64 + false + 408 + 143 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(M2Y).HLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 64 + false + 408 + 180 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(M2Y).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 400 + 192 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 22 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(M2Y).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 400 + 210 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(M2Y).LLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 64 + false + 408 + 233 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(M2Z).HLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 64 + false + 408 + 270 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(M2Z).RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 400 + 282 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 22 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(M2Z).VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 400 + 300 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 12 + 1 + Text Update + 0 + true + $(P)$(M2Z).LLM + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 64 + false + 408 + 323 + + + + + $(P)$(M2X).TWR + 1 + 10 + + + + + $(P)$(M2X).TWR + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(M2X).TWR + + + + true + true + false + + + + < + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 400 + 153 + + + + + $(P)$(M2Y).TWR + 1 + 10 + + + + + $(P)$(M2Y).TWR + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(M2Y).TWR + + + + true + true + false + + + + < + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 400 + 243 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(M2X).TWV + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 420 + 155 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(M2Y).TWV + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 420 + 245 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(M2Z).TWV + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 40 + 420 + 335 + + + + + $(P)$(M2X).TWF + 1 + 10 + + + + + $(P)$(M2X).TWF + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(M2X).TWF + + + + true + true + false + + + + > + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 460 + 153 + + + + + $(P)$(M2Y).TWF + 1 + 10 + + + + + $(P)$(M2Y).TWF + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(M2Y).TWF + + + + true + true + false + + + + > + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 460 + 243 + + + + + $(P)$(M2Z).TWF + 1 + 10 + + + + + $(P)$(M2Z).TWF + 0 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(M2Z).TWF + + + + true + true + false + + + + > + true + $(pv_name) +$(pv_value) + true + Action Button + 20 + 460 + 333 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 238 + 246 + 87 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 239 + 246 + 177 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 239 + 246 + 267 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 238 + 246 + 357 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 272 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 1 + 483 + 86 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + + true + + + false + + $(P)$(Q):done.VAL + + + + true + true + false + + + false + Moving + + true + 1 + true + Label + 75 + false + 220 + 365 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + + true + + + false + + $(P)$(Q):done.VAL + + + + true + true + false + + + false + Done + + true + 1 + true + Label + 75 + false + 220 + 365 + + + + + motorx_tiny.opi + + true + $(M2X) + + 1 + M2X (Tiny) + + + motorx.opi + + true + $(M2X) + + 1 + M2X (Small) + + + motorx_more.opi + + true + $(M2X) + + 1 + M2X (Medium) + + + motorx_setup.opi + + true + $(M2X) + + 1 + M2X (Setup) + + + scanParms.opi + + true + $(M2X) + $(M2X) + + 1 + Scan parameters + + + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 18 + + Menu Button + + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 18 + 366 + 88 + + + + + motorx_tiny.opi + + true + $(M2Y) + + 1 + M2Y (Tiny) + + + motorx.opi + + true + $(M2Y) + + 1 + M2Y (Small) + + + motorx_more.opi + + true + $(M2Y) + + 1 + M2Y (Medium) + + + motorx_setup.opi + + true + $(M2Y) + + 1 + M2Y (Setup) + + + scanParms.opi + + true + $(M2Y) + $(M2Y) + + 1 + Scan parameters + + + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 18 + + Menu Button + + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 18 + 366 + 178 + + + + + motorx_tiny.opi + + true + $(M2Z) + + 1 + M2Z (Tiny) + + + motorx.opi + + true + $(M2Z) + + 1 + M2Z (Small) + + + motorx_more.opi + + true + $(M2Z) + + 1 + M2Z (Medium) + + + motorx_setup.opi + + true + $(M2Z) + + 1 + M2Z (Setup) + + + scanParms.opi + + true + $(M2Z) + $(M2Z) + + 1 + Scan parameters + + + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 18 + + Menu Button + + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 18 + 366 + 268 + + + + + motorx_tiny.opi + + true + $(M1Y) + + 1 + M1Y (Tiny) + + + motorx.opi + + true + $(M1Y) + + 1 + M1Y (Small) + + + motorx_more.opi + + true + $(M1Y) + + 1 + M1Y (Medium) + + + motorx_setup.opi + + true + $(M1Y) + + 1 + M1Y (Setup) + + + scanParms.opi + + true + $(M1Y) + $(M1Y) + + 1 + Scan parameters + + + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 18 + + Menu Button + + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 18 + 248 + 268 + + + + + motorx_tiny.opi + + true + $(M0Y) + + 1 + M0Y (Tiny) + + + motorx.opi + + true + $(M0Y) + + 1 + M0Y (Small) + + + motorx_more.opi + + true + $(M0Y) + + 1 + M0Y (Medium) + + + motorx_setup.opi + + true + $(M0Y) + + 1 + M0Y (Setup) + + + scanParms.opi + + true + $(M0Y) + $(M0Y) + + 1 + Scan parameters + + + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 18 + + Menu Button + + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 18 + 248 + 178 + + + + + motorx_tiny.opi + + true + $(M0X) + + 1 + M0X (Tiny) + + + motorx.opi + + true + $(M0X) + + 1 + M0X (Small) + + + motorx_more.opi + + true + $(M0X) + + 1 + M0X (Medium) + + + motorx_setup.opi + + true + $(M0X) + + 1 + M0X (Setup) + + + scanParms.opi + + true + $(M0X) + $(M0X) + + 1 + Scan parameters + + + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 18 + + Menu Button + + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 18 + 248 + 88 + + + + + table_setup_SRI.opi + + true + + 1 + Setup (SRI geometry) + + + table_setup_GEOCARS.opi + + true + + 1 + Setup (GEOCARS geometry) + + + table_setup_NEWPORT.opi + + true + + 1 + Setup (NEWPORT geometry) + + + table_setup_PNC.opi + + true + + 1 + Setup (PNC geometry) + + + table_fixedPoints.opi + + true + + 1 + Fixed points + + + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 40 + 440 + 380 + + + + + table_soft.opi + + true + + 0 + Small display + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + Less + false + $(pv_name) +$(pv_value) + true + Action Button + 40 + 440 + 360 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):x.TWV + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 44 + 43 + 155 + + + + + $(P)$(Q):x.TWF + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(Q):x.TWF + + + + true + true + false + + + + > + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 87 + 153 + + + + + $(P)$(Q):x.TWR + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(Q):x.TWR + + + + true + true + false + + + + < + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 23 + 153 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + Record version: + + true + 1 + true + Label + 90 + false + 0 + 387 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 12 + 0 + Text Update + 0 + true + $(P)$(T).VERS + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 30 + false + 90 + 387 + + + + + table_full_refresh.opi + + true + + 0 + Refresh fixed-point menu + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + Refresh menu + false + $(pv_name) +$(pv_value) + true + Action Button + 95 + 395 + 31 + + + + true + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + $(P)$(Q)fpSelect + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 200 + 195 + 31 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 + Label + + + true + true + false + + + false + Fixed point: + + true + 1 + true + Label + 85 + false + 108 + 34 + + + + + motorx.opi + + true + $(Q):ax + + 1 + M0X (Small) + + + motorx_more.opi + + true + $(Q):ax + + 1 + M0X (Medium) + + + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 18 + + Menu Button + + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 18 + 112 + 88 + + + + + motorx.opi + + true + $(Q):x + + 1 + M0X (Small) + + + motorx_more.opi + + true + $(Q):x + + 1 + M0X (Medium) + + + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 18 + + Menu Button + + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 18 + 7 + 88 + + + + + motorx.opi + + true + $(Q):ay + + 1 + M0X (Small) + + + motorx_more.opi + + true + $(Q):ay + + 1 + M0X (Medium) + + + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 18 + + Menu Button + + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 18 + 112 + 178 + + + + + motorx.opi + + true + $(Q):y + + 1 + M0X (Small) + + + motorx_more.opi + + true + $(Q):y + + 1 + M0X (Medium) + + + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 18 + + Menu Button + + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 18 + 7 + 178 + + + + + motorx.opi + + true + $(Q):az + + 1 + M0X (Small) + + + motorx_more.opi + + true + $(Q):az + + 1 + M0X (Medium) + + + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 18 + + Menu Button + + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 18 + 112 + 268 + + + + + motorx.opi + + true + $(Q):z + + 1 + M0X (Small) + + + motorx_more.opi + + true + $(Q):z + + 1 + M0X (Medium) + + + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 18 + + Menu Button + + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 18 + 7 + 268 + + diff --git a/opticsApp/op/opi/table_help.opi b/opticsApp/op/opi/autoconvert/table_help.opi similarity index 81% rename from opticsApp/op/opi/table_help.opi rename to opticsApp/op/opi/autoconvert/table_help.opi index 700b07d..a0d9a47 100644 --- a/opticsApp/op/opi/table_help.opi +++ b/opticsApp/op/opi/autoconvert/table_help.opi @@ -1,1828 +1,1794 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 360 true - 39872d87:13e14015f61:473c - 3.1.2.20120830 + table_help + + true + true + false true - 360 - table_help false - false - - - - - - Display - true 410 - - true - 5 - - false - -1 - -1 - - - 10 10 - + 10 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 103 + true - 39872d87:13e14015f61:473d - - - - - 103 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 122 + 1 + 1 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 122 - 0 - 0 - - - 1 - 0 - true - - - - - 1 - $(pv_name) -$(pv_value) - 1 + false + + + false - - - false - true - 0.0 + 103 + true - + - 39872d87:13e14015f61:473e - - - - - 103 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 122 + 1 + 1 + + + + false - + - - - - Rectangle + + + + 0 + 1 true - - - - false - Default + - 122 - 0 - 0 + + + + 14 + 0 + Label - - 1 - 2 - true - - - - - 1 - $(pv_name) -$(pv_value) - 1 - false - - - - true - - true - 39872d87:13e14015f61:4742 - - 29 - Grouping Container true true false - true + false + Use: Changes to X, Y, etc. will move table + + true + 1 + true + Label + 300 + false + 101 + 115 + + + + false - + - - - - Grouping Container - true - - Default - - 300 - 0 - - false - 1 - - 170 - - 101 - - true - 1 - 39872d87:13e14015f61:4743 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Redefine current table coordinates as zero - - - - 300 - 0 - - 1 - - - - 0 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:4744 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - (without moving any motors) - - - - 300 - 0 - - 1 - - - - 0 - - 15 - true - - 0 - - - - true - 1 - 39872d87:13e14015f61:473f - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - + Set: Changes to X, Y, etc. will change table + + true + 1 + true Label - true - Use: Changes to X, Y, etc. will move table - - - 300 - 0 - - 1 - - - - 0 - - 115 - true - + false 101 + 130 - - true - 1 - 39872d87:13e14015f61:4740 - false - - 14 - Label - - true - true - false - - true - false + + + false + false - + - - - - Label - true - Set: Changes to X, Y, etc. will change table - - - - 300 - 0 - - 1 + false - 0 - - 130 - true - - 101 - - - false - true - 39872d87:13e14015f61:4741 - - 20 - Choice Button - false - - true - true - false - - $(P)$(T).SET - - - - - - - Choice Button + 0 + 1 true - false - Default + Default - 83 - 0 - - - - - + false + + + + 20 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 115 - $(pv_name) -$(pv_value) - 3 - - - false - true - 39872d87:13e14015f61:4745 - - 20 - Action Button - false + Choice Button + $(P)$(T).SET + + true true false - $(P)$(T).ZERO + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 83 + 3 + 115 + + + + false - + - - - - Action Button - true - Zero - false - - Default - - 40 - 0 - 0 - - - - false - 1 - 170 - - - $(P)$(T).ZERO - 1 - 10 - - - - $(pv_name) -$(pv_value) - 6 - - - true - 1 - 39872d87:13e14015f61:4746 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Redefine current table coordinates as zero + + true + 1 + true + Label + 300 + false + 101 + 170 + + + + false - - - - Label - true - calibration without moving motors - - - - 300 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 145 - true + Label + + + true + true + false + + + false + (without moving any motors) + true + 1 + true + Label + 300 + false 101 + 185 - + + + + $(P)$(T).ZERO + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4747 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(T).ZERO + + true true false - $(P)$(T).SYNC + + + Zero + false + $(pv_name) +$(pv_value) + true + Action Button + 40 + 6 + 170 + + + + false - + - - - - Action Button + + + + 0 + 1 true - Sync - false - Default + - 40 - 0 - 0 - + + + + 14 + 0 + Label - - true - 1 - - - - 220 + + true + true + false + + + false + calibration without moving motors + + true + 1 + true + Label + 300 + false + 101 + 145 + + $(P)$(T).SYNC 1 10 + $(P)$(T).SYNC 0 10 + - $(pv_name) -$(pv_value) - 6 - - - true - 1 - 39872d87:13e14015f61:4748 - false - - 14 - Label + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(T).SYNC + + true true false - true - false + + + Sync + true + $(pv_name) +$(pv_value) + true + Action Button + 40 + 6 + 220 + + + + false - - - - Label - true - Update table coordinates from current - - - - 300 - 0 - - 1 - 0 - - 220 - true - - 101 - - - true - 1 - 39872d87:13e14015f61:4749 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Update table coordinates from current + + true + 1 + true + Label + 300 + false + 101 + 220 + + + + false - - - - Label - true - motor positions; maintain calibration - - - - 300 - 0 - - 1 - 0 - - 235 - true - - 101 - - - true - 1 - 39872d87:13e14015f61:474a - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + motor positions; maintain calibration + + true + 1 + true + Label + 300 + false + 101 + 235 + + + + false - - - - Label - true - motor positions; abandon calibration - - - - 300 - 0 - - 1 - 0 - - 275 - true - - 101 - - - true - 1 - 39872d87:13e14015f61:474b - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + motor positions; abandon calibration + + true + 1 + true + Label + 300 + false + 101 + 275 + + + + false - - - - Label - true - Update table coordinates from current - - - - 300 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 260 - true - - 101 - - - false - true - 39872d87:13e14015f61:474c - - 20 - Action Button - false + Label + true true false - $(P)$(T).INIT - - - - - - - Action Button - true - Init - false - - Default - - 40 - 0 - 0 - - - - true - 1 - - - + + false + Update table coordinates from current + + true + 1 + true + Label + 300 + false + 101 260 + + $(P)$(T).INIT 1 10 + $(P)$(T).INIT 0 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(T).INIT + + + + true + true + false + + + + Init + true $(pv_name) $(pv_value) + true + Action Button + 40 6 + 260 - - false - true - 1 - false + + + false false - - 22 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 22 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:474d - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).X + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(T).X - - - - false - 0 - - - false - - - - 0 - - 49 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 19 + 49 - - true - 1 - 39872d87:13e14015f61:474e + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true X - - - - 20 - 0 - - 1 - - - - 0 - - 49 - true + true + 1 + true + Label + 20 + false 4 + 49 - - true - true - 1 - false - 39872d87:13e14015f61:474f + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 0 Text Update - false + 0 + true + + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 84 false - $(pv_name) -$(pv_value) 19 + 84 - - false - true - 1 - false + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4750 - 0.0 + false Text Input - - true - true - false - - 1 - false - 0 - $(P)$(Q):x_tweak.C - - - - false + 0 + false 0 - - - false - - - - 0 - - 84 - $(pv_name) -$(pv_value) - 39 - - - false - true - 39872d87:13e14015f61:4751 - - 18 - Action Button - false + true + $(P)$(Q):x_tweak.C + + false + 0.0 + true true false - $(P)$(Q):x_inc.VAL - - - - - - - Action Button - true - > - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 39 84 + + $(P)$(Q):x_inc.VAL 1 10 + $(P)$(Q):x_inc.VAL 0 10 + - $(pv_name) -$(pv_value) - 99 - - + false + false + + + false - true - 39872d87:13e14015f61:4752 - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(Q):x_inc.VAL + + true true false - $(P)$(Q):x_dec.VAL - - - - - - + + + > + true + $(pv_name) +$(pv_value) + true Action Button - true - < - false - - Default - 20 - 0 - 0 - - - - true - 1 - - - + 99 84 + + $(P)$(Q):x_dec.VAL 1 10 + $(P)$(Q):x_dec.VAL 0 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(Q):x_dec.VAL + + + + true + true + false + + + + < + true $(pv_name) $(pv_value) + true + Action Button + 20 19 + 84 - - true - true - 1 - false - 39872d87:13e14015f61:4753 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)$(T).LLX + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).LLX - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 69 false - $(pv_name) -$(pv_value) 19 + 69 - - true - 1 - 39872d87:13e14015f61:4754 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Drive value (--{transform}--> motors) + + true + 1 + true + Label + 275 + false + 130 + 52 + + + + false - - - - Label - true - Drive value (--{transform}--> motors) - - - - 275 - 0 - - 1 - 0 - - 52 - true - - 130 - - - true - 1 - 39872d87:13e14015f61:4755 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Low limit (calc'd from motor limits) + + true + 1 + true + Label + 275 + false + 130 + 70 + + + + false - - - - Label - true - Low limit (calc'd from motor limits) - - - - 275 - 0 - - 1 - 0 - - 70 - true - - 130 - - - true - 1 - 39872d87:13e14015f61:4756 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true Tweak (type in step size, press buttons) - - - - 275 - 0 - - 1 - - - - 0 - - 87 - true + true + 1 + true + Label + 275 + false 130 + 87 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4757 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 398 - 0 - 0 - - 1 - 1 - true - - - - - 108 - $(pv_name) -$(pv_value) - 4 - - - true - true - 1 - false - 39872d87:13e14015f61:4758 - false 0.0 - - 14 - Text Update - false + true true - false + true - 1 - true + + $(pv_name) +$(pv_value) false - $(P)$(T).HLX + true + Polyline + 398 + 4 + 108 + + + + false + false + false - + - - - - Text Update - true - ###### - false - 0 - - - - 100 - 0 - - - 1 + true - 1 - - 4 - false - $(pv_name) -$(pv_value) - 19 - - - true - true - 1 - false - 39872d87:13e14015f61:4759 - false - 0.0 - + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)$(T).HLX + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).XRB + 1 + true + Text Update + 100 + false + 19 + 4 + + + + false + false + false - + - - - - Text Update + true + + + + 0 + 1 true - ###### - false - 0 - + - 100 - 0 + false + + + + 1 + 14 + 1 + Text Update + 0 + true + $(P)$(T).XRB + + 0.0 - - 1 - - - - 1 - - 34 - false + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 100 + false 19 + 34 - - true - 1 - 39872d87:13e14015f61:475a + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Drive-value readback + + true + 1 + true + Label + 275 + false + 130 + 34 + + + + false - - - - Label - true - Drive-value readback - - - - 275 - 0 - - 1 - 0 - - 34 - true - - 130 - - - true - 1 - 39872d87:13e14015f61:475b - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true High limit (calc'd from motor limits) - - - - 275 - 0 - - 1 - - - - 0 - - 3 - true + true + 1 + true + Label + 275 + false 130 + 3 - - true - true - 1 - false - 39872d87:13e14015f61:475c + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)$(T).EX + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).EX - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 1 - - 20 false - $(pv_name) -$(pv_value) 19 + 20 - - true - 1 - 39872d87:13e14015f61:475d + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true Encoder readback - - - - 275 - 0 - - 1 - - - - 0 - - 20 - true + true + 1 + true + Label + 275 + false 130 + 20 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:475e - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 398 + 4 + 210 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 398 - 0 - 0 - - - 1 - 1 - true + false - - 210 - $(pv_name) -$(pv_value) - 4 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:475f - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 398 - 0 - 0 - - 1 - 1 - true - - - - - 300 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 398 4 + 300 - - true - 1 - 39872d87:13e14015f61:4760 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + A positive-sense rotation turns table clockwise when + + true + 1 + true + Label + 390 + false + 10 + 310 + + + + false - - - - Label - true - A positive-sense rotation turns table clockwise when - - - - 390 - 0 - - 1 - 0 - - 310 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:4761 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + viewed from the + axis. (For example, increasing AY + + true + 1 + true + Label + 390 + false + 10 + 325 + + + + false - - - - Label - true - viewed from the + axis. (For example, increasing AY - - - - 390 - 0 - - 1 - 0 - - 325 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:4762 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true rotates the table clockwise, as seen from above.) - - - - 390 - 0 - - 1 - - - - 0 - - 340 - true + true + 1 + true + Label + 390 + false 10 + 340 - \ No newline at end of file + diff --git a/opticsApp/op/opi/autoconvert/table_limits.opi b/opticsApp/op/opi/autoconvert/table_limits.opi new file mode 100644 index 0000000..b4d3589 --- /dev/null +++ b/opticsApp/op/opi/autoconvert/table_limits.opi @@ -0,0 +1,2198 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 130 + + true + + table_limits + + + true + true + false + true + false + Display + 700 + 800 + 532 + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + User limits + + true + 1 + true + Label + 110 + false + 5 + 5 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 699 + 1 + 1 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + X + + true + 1 + true + Label + 80 + false + 110 + 9 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + Y + + true + 1 + true + Label + 80 + false + 195 + 9 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + Z + + true + 1 + true + Label + 80 + false + 280 + 9 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + AX + + true + 1 + true + Label + 80 + false + 405 + 9 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + AY + + true + 1 + true + Label + 80 + false + 490 + 9 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + true + true + false + + + false + AZ + + true + 1 + true + Label + 80 + false + 575 + 9 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).UHXR + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 110 + 29 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).UHYR + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 195 + 29 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + High + + true + 1 + true + Label + 40 + false + 60 + 29 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).ULXR + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 110 + 49 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).ULYR + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 195 + 49 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + Low + + true + 1 + true + Label + 20 + false + 60 + 49 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).ULZR + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 280 + 49 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).UHZR + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 280 + 29 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).ULAXR + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 405 + 49 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).UHAXR + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 405 + 29 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).ULAYR + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 490 + 49 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).UHAYR + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 490 + 29 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).ULAZR + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 575 + 49 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).UHAZR + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 575 + 29 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(T).AEGU + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 115 + false + 475 + 114 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(T).LEGU + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 115 + false + 175 + 114 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).UHX + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 110 + 74 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).UHY + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 195 + 74 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + High + + true + 1 + true + Label + 40 + false + 60 + 74 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).ULX + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 110 + 94 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).ULY + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 195 + 94 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + Low + + true + 1 + true + Label + 20 + false + 60 + 94 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).ULZ + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 280 + 94 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).UHZ + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 280 + 74 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).ULAX + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 405 + 94 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).UHAX + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 405 + 74 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).ULAY + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 490 + 94 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).UHAY + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 490 + 74 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).ULAZ + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 575 + 94 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 6 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).UHAZ + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 575 + 74 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + REL + + true + 1 + true + Label + 40 + false + 10 + 39 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + ABS + + true + 1 + true + Label + 40 + false + 10 + 84 + + diff --git a/opticsApp/op/opi/table_refresh.opi b/opticsApp/op/opi/autoconvert/table_refresh.opi similarity index 69% rename from opticsApp/op/opi/table_refresh.opi rename to opticsApp/op/opi/autoconvert/table_refresh.opi index 5f62160..81d11a2 100644 --- a/opticsApp/op/opi/table_refresh.opi +++ b/opticsApp/op/opi/autoconvert/table_refresh.opi @@ -1,86 +1,87 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 375 true - 39872d87:13e14015f61:478b - 3.1.2.20120830 + table_refresh + + true + true + false true - 375 - table_refresh false - false - - - - - - Display - true 230 - - true - 5 - - false - -1 - -1 - - - 291 545 - - false - true - false - 39872d87:13e14015f61:478c - - 15 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 135 - 6 - - - - 1 - - - - 43 + 291 + table.opi true - 1 + 0 Refresh fixed-point menu + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 15 + + Action Button + 0 + + + + + true + true + false + + + + PRESS AGAIN + false $(pv_name) $(pv_value) + true + Action Button + 135 95 + 43 - \ No newline at end of file + diff --git a/opticsApp/op/opi/table_setup_SRI.opi b/opticsApp/op/opi/autoconvert/table_setup_GEOCARS.opi similarity index 68% rename from opticsApp/op/opi/table_setup_SRI.opi rename to opticsApp/op/opi/autoconvert/table_setup_GEOCARS.opi index 88136fa..8296932 100644 --- a/opticsApp/op/opi/table_setup_SRI.opi +++ b/opticsApp/op/opi/autoconvert/table_setup_GEOCARS.opi @@ -1,7994 +1,6610 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 500 true - 39872d87:13e14015f61:4b5c - 3.1.2.20120830 + table_setup_GEOCARS + + true + true + false true - 455 - table_setup_SRI false - false - - - - - - Display - true 700 - - true - 5 - - false - -1 - -1 - - - 505 - 20 - + 729 + 513 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 20 + true - 39872d87:13e14015f61:4b64 - - - - - 20 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 200 + 469 + 241 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 200 - 0 - 0 - - - 1 - 0 - true - - - - - 241 - $(pv_name) -$(pv_value) - 469 + false + + + false - - - false - true - 100.0 + 250 + true - 39872d87:13e14015f61:4ba2 - - - - - 250 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 200 + 230 + 41 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 200 + false + + + + false + 27 + true + + + 0 - 0 - - - 1 0 - true - - - - - 41 + Rectangle + + + + + true + true + false + + $(pv_name) $(pv_value) - 230 - false + false + true + Rectangle + 700 + 0 + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 10 + false true - true - 39872d87:13e14015f61:4b5d - - 10 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 8 - 0 - - false - 1 - - - - - 150 - 125 - - false - true + 150 + + + false + 255 + true 20 - true - 100.0 - 39872d87:13e14015f61:4b5e - 0.0 - 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 3 + 5 + 0 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 3 - 0 - 0 - - - 1 - 1 - true + false - - 0 - $(pv_name) -$(pv_value) - 5 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4b5f - 0.0 - - 0 + + Default + + false + + + 3 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 8 - 0 - 0 - - 1 - 1 - true - - - - - 7 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 8 0 + 7 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 110 + false true - true - 39872d87:13e14015f61:4b69 - - 20 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 170 - 0 - - false - 1 - - - - - 276 - 484 - - true - 1 - 39872d87:13e14015f61:4b6a + true + true + Grouping Container + 98 + 22 + 96 + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - M0 - - - - 20 - 0 - - 1 - 0 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:4b6b - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - + +X + + true + 1 + true Label - true - M1 - - - 20 - 0 - - 1 - - - - 0 - - 0 - true - - 150 + false + 0 + 90 - - true - 1 - 39872d87:13e14015f61:4b6c - false - - 20 - Label - - true - true - false - - true - false + + + false + 255 + true + 20 + 0 + false - + - - - - Label - true - M2 - - - - 20 - 0 - - 1 + false - 0 - - 0 - true - - 75 - - - - - true - - true - 39872d87:13e14015f61:4b7a - - 110 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 98 - 0 - - false - 1 - - - - - 96 - - 22 - - true - 1 - 39872d87:13e14015f61:4b7b - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - +X - - - - 20 0 - 1 - - - - 0 - - 90 - true - - 0 - - - false + true true - 20 - true 100.0 - 39872d87:13e14015f61:4b7c - 0.0 - - 0 + + Default + + false + + + 10 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 13 - 0 - 0 - - 1 - 1 - true - - - - - 94 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 13 29 + 94 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4b7d - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 61 + 29 + 99 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 61 + false + + + + 68 + true 0 - 0 - - - 1 1 - true - - - - - 99 - $(pv_name) -$(pv_value) - 29 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4b7e - 0.0 - - 0 - 68 - true Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 1 + 89 + 32 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true + false - - 32 - $(pv_name) -$(pv_value) - 89 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4b7f - 0.0 - - 0 + + Default + + false + + + 15 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 15 - 0 - 0 - - 1 - 1 - true - - - - - 29 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 15 81 + 29 - - true - 1 - 39872d87:13e14015f61:4b80 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true +Z - - - - 20 - 0 - - 1 - - - - 0 - - 0 - true + true + 1 + true + Label + 20 + false 78 + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 11 + false true - true - 39872d87:13e14015f61:4b9e - - 53 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 20 - 0 - - false - 1 - - - - - 219 - 518 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4b9f - 0.0 - - 0 - 32 - true - Polyline - false + true + true + Grouping Container + 10 + 640 + 261 + + + false 255 - - true - true - true - - - - - - false - + true + false - - - - Polyline - true - false + + + + false + + + + 0 + 1 + true + + + + 0.0 - Default + Default - 1 + false + + + + false + 10 + true + + + 0 - 0 - - - 1 1 - true - - - - - 21 + Rectangle + + + + + true + true + false + + $(pv_name) $(pv_value) - 8 + true + true + Rectangle + 10 + 0 + 0 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4ba0 - 0.0 - - 0 - 13 - true - Polyline + + Default + false - 255 + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 1 + 5 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 13 + false + + + + 10 + true 0 - 0 - - - 1 1 - true - - - - - 18 - $(pv_name) -$(pv_value) - 1 - - - true - 1 - 39872d87:13e14015f61:4ba1 - false - - 14 - Label + Polyline + + + + + + + 0.0 + true true - false + true + + $(pv_name) +$(pv_value) true - false - - - - - - - Label - true - +Y' - - - - 20 - 0 - - 1 - - - - 0 - - 0 - true - - 0 + true + Polyline + 1 + 5 + 1 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 15 + false true - true - 39872d87:13e14015f61:4ba9 - - 5 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 15 - 0 - - false - 1 - - - - - 263 - 236 - - false - true + true + true + Grouping Container + 5 + 252 + 248 + + + false + 255 + true 20 - true - 100.0 - 39872d87:13e14015f61:4baa - 0.0 - 0 - 5 - true - Polyline - false - 255 - - true - true - true - - - - - - - true - + false - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true + false - - 1 - $(pv_name) -$(pv_value) - 1 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4bab - 0.0 - - 0 - 1 - true - Polyline + + Default + false - 255 + + + + 14 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 1 + 3 + 2 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 14 + false + + + + 6 + true 0 - 0 - - - 1 1 - true - - - - - 3 + Polyline + + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 2 + true + true + Polyline + 5 + 1 + 1 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 5 + false true - true - 39872d87:13e14015f61:4bac - - 5 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 15 - 0 - - false - 1 - - - - - 58 - - 311 - + 238 + 263 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4bad - 0.0 - - 0 + + Default + + false + + + 5 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - 1 - 1 - true - - - - - 1 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 7 1 + 1 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4bae - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 14 - 0 - 0 - - 1 - 1 - true - - - - - 3 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 14 2 + 3 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 5 + false true - true - 39872d87:13e14015f61:4baf - - 15 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 5 - 0 - - false - 1 - - - - - 43 - 327 - - false - true + true + true + Grouping Container + 15 + 387 + 163 + + + false + 255 + true 20 - true - 100.0 - 39872d87:13e14015f61:4bb0 - 0.0 - 0 - 14 - true - Polyline - false - 255 - - true - true - true - - - - - - false - + false - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true + false - - 2 - $(pv_name) -$(pv_value) - 3 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4bb1 - 0.0 - - 0 - 6 - true - Polyline + + Default + false - 255 + + + + 5 + true + 0 + 1 + Polyline + + + + + + + + 0.0 + true true true - - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 1 + 1 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 5 + false + + + + 1 + true 0 - 0 - - - 1 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 1 - - - - - true - - true - 39872d87:13e14015f61:4bb3 - - 57 - Grouping Container - - true - true - false - - true - false + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 14 + 2 + 3 + + + + - - - - Grouping Container + + + + 0 + 1 true + false - Default + Default - 64 - 0 - + + + + 11 false - 1 - - - - - 168 + + true + + Grouping Container + + + true + true + false + + + false - 256 - - true - 1 - 39872d87:13e14015f61:4bb4 - false - - 14 - Label - - true - true - false - - true - false + true + true + Grouping Container + 10 + 401 + 262 + + + false + 255 + true + false - + - - - - Label + + + + false + + + + 0 + 1 true - +X' + + + + 0.0 - + Default - 20 - 0 + false + + + + false + 10 + true + + + + 0 + 1 + Rectangle + + - 1 - - - - 0 - - 43 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:4bb5 - false - - 14 - Label true true false + + $(pv_name) +$(pv_value) true - false + true + Rectangle + 10 + 0 + 0 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label - true - +Z' - - - - 20 - 0 - - 1 + false - 0 - - 0 - true - - 44 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4bb6 - 0.0 - - 0 - 32 - true - Polyline + + Default + false - 255 + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - - false - + + $(pv_name) +$(pv_value) + true + true + Polyline + 9 + 1 + 5 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 1 + false + + + + 10 + true 0 - 0 - - - 1 1 - true - - - - - 21 - $(pv_name) -$(pv_value) - 52 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4bb7 - 0.0 - - 0 - 13 - true Polyline - false - 255 - - true - true - true - - - - + + - true - - - - - - - Polyline - true - false - - Default - - 13 - 0 - 0 - - 1 - 1 - true - - - - - 18 - $(pv_name) -$(pv_value) - 45 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4bb8 0.0 - - 0 - 10 - true - Polyline - false - 255 + true true true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 13 - 0 - 0 - - - 1 - 1 - true - - - - - 46 + $(pv_name) $(pv_value) - 22 - - - false - true - 20 + true true - 100.0 - 39872d87:13e14015f61:4bb9 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - Polyline - true - false - - Default - - 27 - 0 - 0 - - - 1 - 1 - true - - - - - 51 - $(pv_name) -$(pv_value) - 25 + 1 + 5 + 1 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 40 + false true - true - 39872d87:13e14015f61:4bba - - 204 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 30 - 0 - - false - 1 - - - - - 63 - 200 - + true + true + Grouping Container + 100 + 460 + 41 + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 11 + false true - true - 39872d87:13e14015f61:4bbd - - 203 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 20 - 0 - - false - 1 - - - - - 1 + true + true + Grouping Container + 10 0 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4bbe - 0.0 - - 0 - 60 - true - Polyline - false + 0 + + + false 255 - - true - true - true - - - - - - false - + true + false - - - - Polyline + + + + false + + + + 0 + 1 true - false + + + + 0.0 - Default + Default - 1 + false + + + + false + 10 + true + + + 0 - 0 - - - 1 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 10 - - - true - 1 - 39872d87:13e14015f61:4bbf - false - - 20 - Label + Rectangle + + + true true false + + $(pv_name) +$(pv_value) true - false + true + Rectangle + 10 + 0 + 0 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label - true - Lz' - - - - 20 - 0 - - 1 + false - 0 - - 60 - true - - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4bc0 - 0.0 - - 0 - 121 - true - Polyline + + Default + false - 255 + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - - false - + + $(pv_name) +$(pv_value) + true + true + Polyline + 9 + 1 + 5 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 1 + false + + + + 10 + true 0 - 0 - - - 1 1 - true - - - - - 82 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 10 + true + true + Polyline + 1 + 5 + 1 - + + + false + 255 + true + false + + + + + + false - true - 20 - true + + + + 0 + 1 + true + + + 100.0 - 39872d87:13e14015f61:4bbb - 0.0 - - 0 - 1 - true - Polyline + + Default + false - 255 + + + + false + 10 + true + + + + 0 + 0 + Ellipse + + + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Ellipse + 10 + 0 + 15 + + + + false + 255 + true + false - - - - Polyline + + + + false + + + + 0 + 1 true - false + + + + 100.0 - Default + Default - 25 + false + + + + false + 10 + true + + + 0 - 0 - + 0 + Ellipse + - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 4 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4bbc - 0.0 - - 0 - 1 - true - Polyline - false - 255 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Ellipse + 10 + 0 + 30 + + + + false - + + + + + 0 + 1 + true + + + - + - Polyline + 10 + 0 + Label + + + true + true + false + + + false + PIVOT POINTS + + true + 1 + true + Label + 80 + false + 20 + 15 + + + + false + + + + + + + 0 + 1 true - false - Default + - 25 - 0 - 0 + + + + 10 + 0 + Label - - 1 - 1 - true + + true + true + false + + + false + LOCAL ORIGIN + + true + 1 + true + Label + 80 + false + 20 + 0 + + + + false + + + - - 203 - $(pv_name) -$(pv_value) - 5 + 0 + 1 + true + + + + + + + 10 + 0 + Label + + + true + true + false + + + false + 'FIXED' POINT + + true + 1 + true + Label + 80 + false + 20 + 30 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 57 + false true - true - 39872d87:13e14015f61:4bc2 - - 11 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 10 - 0 - - false - 1 - - - - - 261 - 639 - - false - true - 0.0 - - - - 39872d87:13e14015f61:4bc3 - + true + true + Grouping Container + 64 + 310 + 196 + + + false + - - - 10 - true - Rectangle - false - 255 + + + + + 0 + 1 + true + + + + + + + 14 + 0 + Label + true true false + + false + +X' + true - + 1 + true + Label + 20 + false + 0 + 43 + + + + false + 255 + true + 20 + 0 + false - - - - Rectangle + false + + + + 0 + 1 true - - - - false + true + 100.0 - Default + Default - 10 + false + + + + 10 + true 0 - 0 - - - 1 1 - true - - - - - 0 + Polyline + + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 0 - false + true + true + Polyline + 13 + 22 + 46 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4bc4 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - - true - + + $(pv_name) +$(pv_value) + false + true + Polyline + 27 + 25 + 51 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 9 + false + + + + 32 + true 0 - 0 - - - 1 1 - true - - - - - 5 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 1 + false + true + Polyline + 1 + 52 + 21 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4bc5 - 0.0 - - 0 - 10 - true - Polyline + + Default + false - 255 + + + + 13 + true + 0 + 1 + Polyline + + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 13 + 45 + 18 + + + + false - + - - - - Polyline + + + + 0 + 1 true - false - Default + - 1 - 0 - 0 + + + + 14 + 0 + Label - - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 5 + + true + true + false + + + false + +Z' + + true + 1 + true + Label + 20 + false + 44 + 0 - - - true - - true - 39872d87:13e14015f61:4bd1 - - 11 - Grouping Container - - true - true - false - - true - false + + - - - - Grouping Container + + + + 0 + 1 true + false - Default + Default - 10 - 0 - + + + + 53 false - 1 - - - - - 41 + + true + + Grouping Container + + + true + true + false + + + false - 460 - - false - true - 0.0 - - - - 39872d87:13e14015f61:4bd2 - - - - - 10 - true - Rectangle - false + true + true + Grouping Container + 20 + 530 + 216 + + + false 255 - - true - true - false - - true - + true + 20 + 0 + false - - - - Rectangle - true - - - - false - - Default - - 10 - 0 - 0 - - - 1 - 1 - true + false - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4bd3 - 0.0 - - 0 - 1 - true - Polyline + + Default + false - 255 + + + + 32 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - - true - + + $(pv_name) +$(pv_value) + false + true + Polyline + 1 + 8 + 21 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 5 - $(pv_name) -$(pv_value) - 1 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4bd4 - 0.0 - - 0 - 10 - true - Polyline + + Default + false - 255 + + + + 13 + true + 0 + 1 + Polyline + + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 13 + 1 + 18 + + + + false - + - - - - Polyline + + + + 0 + 1 true - false - Default + - 1 - 0 - 0 + + + + 14 + 0 + Label - - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 5 - - - - - true - - true - 39872d87:13e14015f61:4be2 - - 11 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 10 - 0 - - false - 1 - - - - - 261 - - 400 - - false - true - 0.0 - - - - 39872d87:13e14015f61:4be3 - - - - - 10 - true - Rectangle - false - 255 true true false - true - - - - - - - - Rectangle - true - - - - false - - Default - - 10 - 0 - 0 - - - 1 - 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4be4 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true - - - - - 5 - $(pv_name) -$(pv_value) - 1 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4be5 - 0.0 - - 0 - 10 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 5 - - - - - true - - true - 39872d87:13e14015f61:4be6 - - 30 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 700 - 0 - - false - 1 - - - - - 0 - - 0 - - false - true - 100.0 - - - - 39872d87:13e14015f61:4be7 - - - - 27 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 700 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4be8 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 697 - 0 - 0 - - - 1 - 1 - true - - - - - 28 - $(pv_name) -$(pv_value) - 1 - - - true - 1 - 39872d87:13e14015f61:4be9 - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - ($(P)$(T)) - - - - 350 - 0 - - 1 - - - - 1 - - 5 - true - - 350 - - - false - true - 1 - false - false - - 27 - false - true - - - - Text Input - true - - - - - 350 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4bea - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(T).DESC - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:4beb - - 60 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 215 - 0 - - false - 1 - - - - - 115 - - 460 - - - true - - true - 39872d87:13e14015f61:4bf1 - - 60 - Grouping Container - - true - true - false - - true false - - - - - - - Grouping Container - true - - Default - - 140 - 0 - - false - 1 - - - - - 0 + +Y' - 0 - - true - 1 - 39872d87:13e14015f61:4bf2 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Rx' - - - - 20 - 0 - - 1 - - - - 0 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:4bf3 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Rz' - - - - 20 - 0 - - 1 - - - - 0 - - 40 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:4bf4 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Ry' - - - - 20 - 0 - - 1 - - - - 0 - - 20 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:4bf5 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Sx' - - - - 20 - 0 - - 1 - - - - 0 - - 0 - true - - 120 - - - true - 1 - 39872d87:13e14015f61:4bf6 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Sz' - - - - 20 - 0 - - 1 - - - - 0 - - 40 - true - - 120 - - - true - 1 - 39872d87:13e14015f61:4bf7 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Sy' - - - - 20 - 0 - - 1 - - - - 0 - - 20 - true - - 120 - - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4bec - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(T).RX - - - - false - 0 - - - false - - - - 0 - - 1 - $(pv_name) -$(pv_value) - 35 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4bed - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(T).RY - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 35 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4bee - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(T).SX - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 155 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4bef - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(T).SZ - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 155 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4bf0 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(T).SY - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 155 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4bf8 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(T).RZ - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 35 - - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4b60 - 0.0 - - 69 - true - Polygon - false - 255 - - true - true - true - - - - - - - - - false - - - - - - - - Polygon - true - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 161 - $(pv_name) -$(pv_value) - 77 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4b61 - - - - - 7 - true - Ellipse - false - 255 - - true - true - true - - false - - - - - - - - Ellipse - true - - - - false - - Default - - 7 - 0 - 0 - - - 1 - 0 - true - - - - - 203 - $(pv_name) -$(pv_value) - 84 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4b62 - - - - - 7 - true - Ellipse - false - 255 - - true - true - true - - false - - - - - - - - Ellipse - true - - - - false - - Default - - 7 - 0 - 0 - - - 1 - 0 - true - - - - - 215 - $(pv_name) -$(pv_value) - 104 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4b63 - - - - - 7 - true - Ellipse - false - 255 - - true - true - true - - false - - - - - - - - Ellipse - true - - - - false - - Default - - 7 - 0 - 0 - - - 1 - 0 - true - - - - - 174 - $(pv_name) -$(pv_value) - 117 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4b65 - - - - - 10 - true - Ellipse - false - 255 - - true - true - true - - false - - - - - - - - Ellipse - true - - - - false - - Default - - 10 - 0 - 0 - - - 1 - 0 - true - - - - - 261 - $(pv_name) -$(pv_value) - 489 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4b66 - - - - - 10 - true - Ellipse - false - 255 - - true - true - true - - false - - - - - - - - Ellipse - true - - - - false - - Default - - 10 - 0 - 0 - - - 1 - 0 - true - - - - - 261 - $(pv_name) -$(pv_value) - 639 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4b67 - - - - - 10 - true - Ellipse - false - 255 - - true - true - true - - false - - - - - - - - Ellipse - true - - - - false - - Default - - 10 - 0 - 0 - - - 1 - 0 - true - - - - - 261 - $(pv_name) -$(pv_value) - 564 - false - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4b68 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 87 - 0 - 0 - - - 1 - 1 - true - - - - - 266 - $(pv_name) -$(pv_value) - 601 + true + 1 + true + Label + 20 + false + 0 + 0 + - - true - 1 - 39872d87:13e14015f61:4b6d - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - (+Y is up) - - - - 120 - 0 - - 1 - - - - 1 + - 316 - true - - 40 - - - false - true - 1 - false - false - - 22 - false - true - + - Text Input - true - - - - - 90 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4b6e - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(T).YANG - - - - false - 0 - - - false - 0 - - 63 - $(pv_name) -$(pv_value) - 95 - - - true - 1 - 39872d87:13e14015f61:4b6f - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - Table angle - - - - 90 0 - 1 - - - - 1 - - 33 - true - - 95 - - - true - 1 - 39872d87:13e14015f61:4b70 - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label true - (degrees) - + Default - 90 - 0 - - 1 - - - - 1 - - 48 - true - - 95 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4b71 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - + - Polyline - true - false - - Default - - 82 - 0 - 0 + + 129 + + true + + Linking Container + table_limits.opi + 2 - - 1 - 1 - true - - - - - 86 - $(pv_name) -$(pv_value) - 98 - - - true - 1 - 39872d87:13e14015f61:4b72 - false - - 15 - Label true true false - true - false - - - - - - - Label - true - +Z' - - - - 20 - 0 - - 1 - - - - 0 - - 128 - true + - 141 - - true - 1 - 39872d87:13e14015f61:4b73 - false - - 15 - Label - - true - true - false - - true - false + Linking Container + 700 + 0 + 371 + + + + false + 255 + true + false - + - - - - Label - true - +X' - - - - 20 - 0 - - 1 + false - 0 - - 155 - true - - 36 - - - false - true - 20 - true + 0 + 1 + true 100.0 - 39872d87:13e14015f61:4b74 - 0.0 - - 0 - 343 - true - Polyline + + Default + false - 255 + + + + 69 + true + + + + 0 + 0 + Polygon + + + + + + + + + + 0.0 + true true true - - - - - true - + + $(pv_name) +$(pv_value) + false + true + Polygon + 64 + 77 + 161 + + + + false + 255 + true + false - - - - Polyline + + + + false + + + + 0 + 1 true - false + + + + 100.0 - Default + Default - 1 + false + + + + false + 7 + true + + + 0 - 0 - + 0 + Ellipse + - 1 - 1 - true - - - - - 31 - $(pv_name) -$(pv_value) - 196 - - - false - true - 29 - 39872d87:13e14015f61:4b75 - 61 - - 90 - true - Arc - false - 255 + true true true - + + $(pv_name) +$(pv_value) + false + true + Ellipse + 7 + 84 + 203 + + + + false + 255 + true + false - - - - Arc + + + + false + + + + 0 + 1 true - false + + + + 100.0 - Default + Default - 90 + false + + + + false + 7 + true + + + 0 - false - 0 - + 0 + Ellipse + - 1 - 1 - - - - - 151 + + + true + true + true + + $(pv_name) $(pv_value) - 65 + false + true + Ellipse + 7 + 116 + 198 - + + + false + 255 + true + false + + + + + + false - true - 20 - true + + + + 0 + 1 + true + + + 100.0 - 39872d87:13e14015f61:4b76 - 0.0 - - 0 - 26 - true - Polyline + + Default + false - 255 + + + + false + 7 + true + + + + 0 + 0 + Ellipse + + + true true true - - - - - true - + + $(pv_name) +$(pv_value) + false + true + Ellipse + 7 + 108 + 168 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 48 - 0 - 0 - - - 1 - 1 - true + false - - 169 - $(pv_name) -$(pv_value) - 63 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4b77 - 0.0 - - 0 - 66 - true - Polyline + + Default + false - 255 + + + + 50 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 1 + 111 + 243 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 22 - 0 - 0 - - - 1 - 1 - true + false - - 87 - $(pv_name) -$(pv_value) - 120 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4b78 - 0.0 - - 0 - 52 - true - Polyline + + Default + false - 255 + + + + 12 + true + 0 + 1 + Polyline + + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 12 + 105 + 242 + + + + false - + - - - - Polyline - true - false - - Default - - 30 - 0 - 0 - - - 1 - 1 - true - - 143 - $(pv_name) -$(pv_value) - 111 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4b79 - + 0 + 1 + true + + + + - - - 7 - true - Ellipse - false - 255 + + 14 + 1 + Label + true true - true + false - false - + + false + BEAM + + true + 1 + true + Label + 30 + false + 97 + 226 + + + + false - - - - - - Ellipse - true - - - false - - Default - - 7 - 0 - 0 - - - 1 - 0 - true + - - 191 - $(pv_name) -$(pv_value) - 113 - false - - - true - 1 - 39872d87:13e14015f61:4b81 - false - - 10 + 0 + 1 + true + + + + + + + 20 + 1 Label + true true false - true + false + (+Y is up) + + true + 1 + true + Label + 120 + false + 40 + 316 + + + + false + false + false - + - - - - Label - true - V5.1 - - - - 30 - 0 - - 1 + false - 0 - - 446 - true - - 0 - - - false - true - true - 39872d87:13e14015f61:4b82 - - 20 - Menu Button + 3 + 1 + + true + + + false + + + + 1 + 22 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).YANG + + false + 0.0 + true true false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - $(P)$(T).GEOM + true + Text Input + 90 + 95 + 63 + + + + false - + - - - - Menu Button - true - false - - Default - - 100 - 6 - - - - 1 - 311 - - $(pv_name) -$(pv_value) - 540 - - - true - 1 - 39872d87:13e14015f61:4b83 - false - - 20 + 0 + 1 + true + + + + + + + 15 + 1 Label + true true false - true + false + Table angle + + true + 1 + true + Label + 90 + false + 95 + 33 + + + + false - - - - Label - true - Geometry - - - - 80 - 0 - - 1 - 0 - - 311 - true - - 450 - - - true - 1 - 39872d87:13e14015f61:4b84 - false - - 14 + 0 + 1 + true + + + + + + + 15 + 1 Label + true true false - true + false + (degrees) + + true + 1 + true + Label + 90 + false + 95 + 48 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label + false + + + + 0 + 1 true - You're using the wrong setup display + true + 100.0 - + Default - 270 - 0 - - - - true - - - false - - $(P)$(Q):geomIsSRI - - - 1 + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 82 + 98 + 86 + + + + false + + + + 0 + 1 + true + + + + + + + 15 0 - - 351 - true - - 425 - - - true - 1 - 39872d87:13e14015f61:4b85 - false - - 14 Label + true true false - true + false + +Z' + + true + 1 + true + Label + 20 + false + 141 + 128 + + + + false - - - - Label - true - This display is for the SRI geometry - - - - 270 - 0 - - - - true - - - false - - $(P)$(Q):geomIsSRI - - - 1 + 0 + 1 + true + + + + + + + 15 0 - - 336 - true - - 425 - - - true - 1 - 39872d87:13e14015f61:4b86 - false - - 20 Label + true true false - true + false + +X' + + true + 1 + true + Label + 20 + false + 36 + 155 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label - true - User limits - - - - 110 - 0 - - 1 + false - 0 - - 376 - true - - 5 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4b87 - 0.0 - - 0 - 1 - true - Polyline + + Default + false - 255 + + + + 343 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - - false - + + $(pv_name) +$(pv_value) + true + true + Polyline + 1 + 196 + 31 + + + + false + 255 + true + false - - - - Polyline - true - false - - Default - - 708 - 0 - 0 - - - 1 - 1 - true + false - - 372 - $(pv_name) -$(pv_value) - 1 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input + 0 + 1 true - + false - + Default - 80 - 3 + false + + + + 90 + 0 + 1 + Arc + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4b88 - 0.0 - Text Input + true true - false + true - 6 - false - 0 - $(P)$(T).UHX - - - + + 61 + $(pv_name) +$(pv_value) + 29 + true + Arc + 90 + 65 + 151 + + + + false + 255 + true + 20 + 0 false - 0 - - - false + + + + false - 0 - - 401 + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 26 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 110 - - - false + true true - 1 - false - false - - 18 - false - true + Polyline + 48 + 63 + 169 + + + + false + 255 + true + 20 + 0 + false - + - Text Input + false + + + + 0 + 1 true - + true + 100.0 - + Default - 80 - 3 + false + + + + 66 + true + 0 + 1 + Polyline + + + + + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4b89 0.0 - Text Input + true true - false + true - 6 - false - 0 - $(P)$(T).UHY - - - - false - 0 - - - false - - - - 0 - - 401 + $(pv_name) $(pv_value) - 195 - - + false true - 1 - 39872d87:13e14015f61:4b8a - false - - 20 - Label - - true - true - false - - true - false + Polyline + 22 + 120 + 87 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label - true - High - - - - 40 - 0 - - 1 + false - 0 - - 401 - true - - 60 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input + 0 + 1 true - + true + 100.0 - + Default - 80 - 3 + false + + + + 52 + true + 0 + 1 + Polyline + + + + + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4b8b 0.0 - Text Input + true true - false + true - 6 - false - 0 - $(P)$(T).ULX - - - - false - 0 - - - false - - - - 0 - - 421 + $(pv_name) $(pv_value) - 110 - - - false + true true - 1 - false - false - - 18 - false - true + Polyline + 30 + 111 + 143 + + + + false + 255 + true + false - + - Text Input + + + + false + + + + 0 + 1 true - + + + + 100.0 - + Default - 80 - 3 + false + + + + false + 7 + true + + + + 0 + 0 + Ellipse + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4b8c - 0.0 - Text Input + true true - false + true - 6 + + $(pv_name) +$(pv_value) false - 0 - $(P)$(T).ULY - - - - false - 0 - - - false + true + Ellipse + 7 + 111 + 189 + + + + false + + + + 0 + 1 + true + + + + + + + 14 0 - - 421 - $(pv_name) -$(pv_value) - 195 - - - true - 1 - 39872d87:13e14015f61:4b8d - false - - 20 Label + + + + true + + + false + + $(P)$(Q):geomIsGEOCARS + + true true false - true + false + You're using the wrong setup display + + true + 1 + true + Label + 280 + false + 415 + 351 + + + + true + false + false - + - - - - Label - true - Low - - - - 20 - 0 - - 1 + false - 0 - - 421 - true - - 60 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input + 6 + 1 true - - + Default - 80 - 3 + false + + + + 20 + + Menu Button + $(P)$(T).GEOM - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4b8e - 0.0 - Text Input + true true false - 6 - false - 0 - $(P)$(T).ULZ - - - - false - 0 - - - false - - - - 0 - - 421 + + false $(pv_name) $(pv_value) - 280 - - - false + false true - 1 - false + Menu Button + 100 + 540 + 311 + + + false - - 18 - false - true - + - Text Input + + + + 0 + 1 true - - + - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4b8f - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)$(T).UHZ - + - false - 0 - - - false - - - - 0 - - 401 - $(pv_name) -$(pv_value) - 280 - - - true - 1 - 39872d87:13e14015f61:4b90 - false - 20 + 0 Label + true true false - true + false + Geometry + + true + 1 + true + Label + 80 + false + 450 + 311 + + + + false - - - - Label - true - X - - - - 80 - 0 - - 1 - 1 - - 381 - true - - 110 - - - true - 1 - 39872d87:13e14015f61:4b91 - false - - 20 + 0 + 1 + true + + + + + + + 14 + 0 Label + + + + true + + + false + + $(P)$(Q):geomIsGEOCARS + + true true false - true + false + This display is for the GEOCARS geometry + + true + 1 + true + Label + 280 + false + 415 + 336 + + + + false + 255 + true + false - + - - - - Label + + + + false + + + + 0 + 1 true - Y + + + + 100.0 - + Default - 80 - 0 + false + + + + false + 10 + true + + + + 0 + 0 + Ellipse + + - 1 - - - - 1 - - 381 - true - - 195 - - - true - 1 - 39872d87:13e14015f61:4b92 - false - - 20 - Label true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Ellipse + 10 + 489 + 261 + + + + false + 255 + true + false - + - - - - Label - true - Z - - - - 80 - 0 - - 1 + + + + false - 1 - - 381 - true - - 280 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input + 0 + 1 true - + + + + 100.0 - + Default - 80 - 3 + false + + + + false + 10 + true + + + + 0 + 0 + Ellipse + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4b93 - 0.0 - Text Input + true true - false + true - 6 - false - 0 - $(P)$(T).ULAX - - - - false - 0 - - - false - - - - 0 - - 421 + $(pv_name) $(pv_value) - 405 - - - false + false true - 1 - false - false - - 18 - false - true + Ellipse + 10 + 639 + 261 + + + + false + 255 + true + 20 + 0 + false - + - Text Input + false + + + + 0 + 1 true - + true + 100.0 - + Default - 80 - 3 + false + + + + 1 + true + 0 + 1 + Polyline + + + + + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4b94 0.0 - Text Input + true true - false + true - 6 - false - 0 - $(P)$(T).UHAX - - - - false - 0 - - - false - - - - 0 - - 401 + $(pv_name) $(pv_value) - 405 - - - false + false true - 1 - false + Polyline + 87 + 601 + 266 + + + false - - 18 - false - true - + - Text Input + + + + 0 + 1 true - - + - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4b95 - 0.0 - Text Input + + + + 20 + 0 + Label + true true false - 6 - false - 0 - $(P)$(T).ULAY - - - - false - 0 - - - false - - - - 0 - - 421 - $(pv_name) -$(pv_value) - 490 + + false + M1,M2 + + true + 1 + true + Label + 20 + false + 484 + 276 - - false - true - 1 - false + + false - - 18 - false - true - + - Text Input + + + + 0 + 1 true - - + - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4b96 - 0.0 - Text Input + + + + 20 + 0 + Label + true true false - 6 - false - 0 - $(P)$(T).UHAY - - - + + false + M0 + + true + 1 + true + Label + 20 + false + 634 + 276 + + + + false + 255 + true false - 0 - - - false + + + + + + + false - 0 - - 401 - $(pv_name) -$(pv_value) - 490 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input + 0 + 1 true - + + + + 100.0 - + Default - 80 - 3 + false + + + + false + 10 + true + + + + 0 + 0 + Ellipse + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4b97 - 0.0 - Text Input + true true - false + true - 6 - false - 0 - $(P)$(T).ULAZ - - - - false - 0 - - - false - - - - 0 - - 421 + $(pv_name) $(pv_value) - 575 - - - false + false true - 1 - false - false - - 18 - false - true + Ellipse + 10 + 250 + 261 + + + + false + 255 + true + false - + - Text Input + + + + false + + + + 0 + 1 true - + + + + 100.0 - + Default - 80 - 3 + false + + + + false + 10 + true + + + + 0 + 0 + Ellipse + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4b98 - 0.0 - Text Input + true true - false + true - 6 + + $(pv_name) +$(pv_value) false - 0 - $(P)$(T).UHAZ - - - + true + Ellipse + 10 + 400 + 161 + + + + false + 255 + true false - 0 - - - false + + + + + + + false - 0 - - 401 - $(pv_name) -$(pv_value) - 575 - - - true - 1 - 39872d87:13e14015f61:4b99 - false - - 20 - Label + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 10 + true + + + + 0 + 0 + Ellipse + + + true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Ellipse + 10 + 250 + 61 + + + + false - - - - Label - true - AX - - - - 80 - 0 - - 1 - 1 - - 381 - true - - 405 - - - true - 1 - 39872d87:13e14015f61:4b9a - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + M2 + + true + 1 + true + Label + 20 + false + 263 + 246 + + + + false - - - - Label - true - AY - - - - 80 - 0 - - 1 - 1 - - 381 - true - - 490 - - - true - 1 - 39872d87:13e14015f61:4b9b - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + M0 + + true + 1 + true + Label + 20 + false + 411 + 159 + + + + false - - - - Label - true - AZ - - - - 80 - 0 - - 1 - 1 - - 381 - true - - 575 - - - true - true - 1 - false - 39872d87:13e14015f61:4b9c - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(T).AEGU - - - - - - - Text Update + 0 + 1 true - ###### - false - 0 - + - 115 - 0 + + + + 20 + 0 + Label - - 1 - - - - 1 - - 441 - false - $(pv_name) -$(pv_value) - 475 - - - true - true - 1 - false - 39872d87:13e14015f61:4b9d - false - 0.0 - - 15 - Text Update - false true true false - 1 - true - false - $(P)$(T).LEGU - - - - - - - Text Update - true - ###### - false - 0 - - - - 115 - 0 - - - 1 - - - - 1 - - 441 + + false + M1 + + true + 1 + true + Label + 20 false - $(pv_name) -$(pv_value) - 175 + 246 + 71 - - false - true - 100.0 - - - - 39872d87:13e14015f61:4ba3 - - - - - 10 - true - Ellipse - false + + + false 255 - - true - true - true - - false - + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 - 0 - 0 - - - 1 - 0 - true - - - - - 261 - $(pv_name) -$(pv_value) - 250 + false + + + false - - - false - true - 100.0 + 10 + true - 39872d87:13e14015f61:4ba4 - - - - - 10 - true + 0 + 0 Ellipse - false - 255 + + + true true true + + $(pv_name) +$(pv_value) false - + true + Ellipse + 10 + 345 + 128 + + + + false + 255 + true + 20 + 0 + false - - - - Ellipse + false + + + + 0 + 1 true - - - - false + true + 100.0 - Default + Default - 10 + false + + + + 38 + true 0 - 0 - + 1 + Polyline + + + + + - 1 - 0 - true + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 1 + 405 + 148 + + + + false + false + false + + + + false - - 56 + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).LZ + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + $(pv_name) $(pv_value) - 325 - false + false + true + Text Input + 60 + 235 + 126 - + + + false + 255 + true + 20 + 0 + false + + + false - true + + + + 0 + 1 + true + true 100.0 - - - - 39872d87:13e14015f61:4ba5 - - - - - 10 - true - Ellipse + + Default + false - 255 + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true + + $(pv_name) +$(pv_value) false - + true + Polyline + 25 + 204 + 66 + + + + false + 255 + true + 20 + 0 + false - - - - Ellipse + false + + + + 0 + 1 true - - - - false + true + 100.0 - Default + Default - 10 + false + + + + 1 + true 0 - 0 - + 1 + Polyline + + + + + - 1 - 0 - true - - - - - 128 - $(pv_name) -$(pv_value) - 345 - false - - - true - 1 - 39872d87:13e14015f61:4ba6 - false - - 20 - Label + 0.0 + true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Polyline + 25 + 205 + 266 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label + false + + + + 0 + 1 true - M0 + true + 100.0 - + Default - 20 - 0 + false + + + + 60 + true + 0 + 1 + Polyline + + + + + + + 0.0 - 1 - - - - 0 - - 250 - true - - 264 - - - true - 1 - 39872d87:13e14015f61:4ba7 - false - - 20 - Label true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Polyline + 1 + 210 + 66 + + + + false - - - - Label - true - M1 - - - - 20 - 0 - - 1 - 0 - - 258 - true - - 378 - - - true - 1 - 39872d87:13e14015f61:4ba8 - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - + Lz' + + true + 1 + true Label - true - M2 - - - 20 - 0 - - 1 + false + 200 + 126 + + + + false + 255 + true + 20 + 0 + false + + + + false - 0 - - 71 - true - - 320 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4bb2 - 0.0 - - 0 - 38 - true - Polyline + + Default + false - 255 + + + + 119 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 1 + 210 + 148 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 1 + false + + + + 23 + true 0 - 0 - - - 1 1 - true - - - - - 247 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 255 - - - false + false true - 100.0 - - - - 39872d87:13e14015f61:4bc1 - + Polyline + 24 + 406 + 267 + + + + false + - - - 10 - true - Ellipse - false - 255 + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + true true - true + false - false - + + false + R + + true + 1 + true + Label + 15 + false + 425 + 294 + + + + false + 255 + true + 20 + 0 + false - - - - Ellipse + false + + + + 0 + 1 true - - - - false + true + 100.0 - Default + Default - 10 + false + + + + 158 + true 0 - 0 - + 1 + Polyline + + + + + - 1 - 0 - true - - - - - 261 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 400 - false - - - false + false true - 1 - false + Polyline + 80 + 350 + 132 + + + false - - 18 - false - true - + - Text Input + + + + 0 + 1 true - - + - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4bc6 - 0.0 - Text Input + + + + 20 + 0 + Label + true true false - 1 - false - 0 - $(P)$(T).LZ - - - + + false + S + + true + 1 + true + Label + 15 + false + 360 + 121 + + + + false + 255 + true + 20 + 0 false - 0 - - - false + + + + false - 0 - - 126 - $(pv_name) -$(pv_value) - 235 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4bc7 - 0.0 - - 0 - 23 - true - Polyline + + Default + false - 255 + + + + 27 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 23 + 645 + 240 + + + + false - + - - - - Polyline - true - false - - Default - - 24 - 0 - 0 - - - 1 - 1 - true - - 267 - $(pv_name) -$(pv_value) - 406 - - - true - 1 - 39872d87:13e14015f61:4bc8 - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true R - - - - 15 - 0 - - 1 - - - - 0 - - 294 - true - 425 + true + 1 + true + Label + 15 + false + 670 + 231 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4bc9 - 0.0 - - 0 - 158 - true - Polyline + + Default + false - 255 + + + + 51 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 74 + 594 + 191 + + + + false + 255 + true + false - - - - Polyline + + + + false + + + + 0 + 1 true - false + + + + 100.0 - Default + Default - 80 + false + + + + false + 10 + true + + + 0 - 0 - + 0 + Ellipse + - 1 - 1 - true - - - - - 132 + + + true + true + true + + $(pv_name) $(pv_value) - 350 - - + false true - 1 - 39872d87:13e14015f61:4bca + Ellipse + 10 + 589 + 186 + + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true S - - - + + true + 1 + true + Label 15 - 0 - - 1 + false + 574 + 192 + + + + false + false + false + + + + false + 3 + 1 + + true + + + + false + + + + 1 + 18 0 - - 121 - true - - 360 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4bcb + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).RX + + false 0.0 - - 0 - 27 - true - Polyline - false - 255 + true true - true + false - - - - + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - + true + Text Input + 60 + 495 + 117 + + + + false + false + false - + - - - - Polyline + false + + + + 3 + 1 + true - false - Default + - 23 - 0 - 0 - + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).RY - 1 - 1 - true - - - - - 240 - $(pv_name) -$(pv_value) - 645 - - - true - 1 - 39872d87:13e14015f61:4bcc - false - - 20 - Label + false + 0.0 + true true false - true - false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 495 + 135 + + + + false + false + false - + - - - - Label - true - R - - - - 15 - 0 - - 1 + false + 3 + 1 + + true + + + + false + + + + 1 + 18 0 - - 231 - true - - 670 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4bcd + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).SX + + false 0.0 - - 0 - 51 - true - Polyline - false - 255 + true true - true + false - - - - + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - + true + Text Input + 60 + 615 + 115 + + + + false + false + false - + - - - - Polyline - true - false - - Default - - 74 - 0 - 0 - - - 1 - 1 - true + false - - 191 - $(pv_name) -$(pv_value) - 594 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4bce - - - - - 10 - true - Ellipse - false - 255 - - true - true - true - - false - - - - - - - - Ellipse + 3 + 1 + true - - - - false - Default + - 10 - 0 - 0 - + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).SZ - 1 - 0 - true - - - - - 186 - $(pv_name) -$(pv_value) - 589 - false - - - true - 1 - 39872d87:13e14015f61:4bcf - false - - 20 - Label + false + 0.0 + true true false - true - false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 615 + 155 + + + + false + false + false - + - - - - Label - true - S - - - - 15 - 0 - - 1 + false - 0 - - 192 - true - - 574 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4bd0 - - - - - 10 - true - Ellipse + 3 + 1 + + true + + + false - 255 + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).SY + + false + 0.0 + true true - true + false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - + true + Text Input + 60 + 615 + 135 + + + + false - + - - - - Ellipse + + + + 0 + 1 true - - - - false - Default + - 10 - 0 - 0 + + + + 20 + 0 + Label - - 1 - 0 - true - - - - - 56 - $(pv_name) -$(pv_value) - 460 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4bd5 - - - - - 10 - true - Ellipse - false - 255 true true - true + false - false - + + false + Lx' + + true + 1 + true + Label + 20 + false + 319 + 301 + + + + false + 255 + true + 20 + 0 + false - - - - Ellipse + false + + + + 0 + 1 true - - - - false + true + 100.0 - Default + Default - 10 + false + + + + 1 + true 0 - 0 - + 1 + Polyline + + + + + - 1 - 0 - true - - - - - 71 - $(pv_name) -$(pv_value) - 460 - false - - - true - 1 - 39872d87:13e14015f61:4bd6 - false - - 10 - Label + 0.0 + true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Polyline + 62 + 345 + 311 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label + false + + + + 0 + 1 true - PIVOT POINTS + true + 100.0 - + Default - 80 - 0 + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 - 1 - - - - 0 - - 56 - true - - 480 - - - true - 1 - 39872d87:13e14015f61:4bd7 - false - - 10 - Label true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Polyline + 59 + 257 + 311 + + + + false + false + false - + - - - - Label + false + + + + 3 + 1 + true - LOCAL ORIGIN - + - 80 - 0 + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).LX + + false + 0.0 - 1 - - - - 0 - - 41 - true - - 480 - - - true - 1 - 39872d87:13e14015f61:4bd8 - false - - 10 - Label true true false - true - false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 300 + 318 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label + false + + + + 0 + 1 true - 'FIXED' POINT + true + 100.0 - + Default - 80 - 0 + false + + + + 25 + true + 0 + 1 + Polyline + + + + + + + 0.0 - 1 - - - - 0 - - 71 - true - - 480 - - - true - 1 - 39872d87:13e14015f61:4bd9 - false - - 20 - Label true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Polyline + 1 + 406 + 297 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label - true - Lx' - - - - 20 - 0 - - 1 + false - 0 - - 301 - true - - 319 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4bda - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 697 + 1 + 28 + + + + false - + - - - - Polyline + + + + 0 + 1 true - false - Default + - 62 - 0 - 0 + + + + 15 + 1 + Label - - 1 - 1 - true + + true + true + false + + + false + ($(P)$(T)) + + true + 1 + true + Label + 350 + false + 350 + 5 + + + + false + false + false + + + + false - - 311 - $(pv_name) -$(pv_value) - 345 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4bdb - 0.0 - - 0 - 1 - true - Polyline + 3 + 1 + + true + + + false - 255 + + + + 1 + 27 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).DESC + + false + 0.0 + true true - true + false - - - - + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - + true + Text Input + 350 + 0 + 0 + + + + false + false + false - + - - - - Polyline + false + + + + 3 + 1 + true - false - Default + - 59 - 0 - 0 - + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).RZ - 1 - 1 - true - - - - - 311 + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + $(pv_name) $(pv_value) - 257 - - - false + false true - 1 - false + Text Input + 60 + 495 + 155 + + + + false false - - 18 - false - true + false - + - Text Input + true + + + + 0 + 1 true - - + - 60 - 3 + false + + + + 1 + 14 + 1 + Text Update + 0 + true + $(P)$(Q)fpSelect.VAL - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4bdc 0.0 - Text Input + true true false - 1 + + false + ###### + $(pv_name) +$(pv_value) false - 0 - $(P)$(T).LX - - - + 1 + true + Text Update + 95 + false + 580 + 58 + + + + true + false false - 0 - - - false + + + + false - 0 - - 318 - $(pv_name) -$(pv_value) - 300 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4bdd - 0.0 - - 0 - 25 - true - Polyline + 6 + 1 + true + + Default + false - 255 + + + + 20 + + Menu Button + $(P)$(Q)fpSelect + + true true - true + false - - - - + + false + $(pv_name) +$(pv_value) false - + true + Menu Button + 95 + 580 + 75 + + + + + table_fixedPoints.opi + + true + + 1 + Fixed points + + + false + false - + - - - - Polyline + false + + + + 0 + 1 true - false - Default + Default - 1 - 0 - 0 - + false + + + + 20 + + Action Button + 0 + - 1 - 1 - true - - - - - 297 + + + true + true + false + + + + Fixed points + false $(pv_name) $(pv_value) - 256 - - - false - true - 20 true - 100.0 - 39872d87:13e14015f61:4bde - 0.0 - - 0 - 25 - true - Polyline - false - 255 + Action Button + 95 + 580 + 35 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + true true - true + false - - - - - false - + + false + Rx' + + true + 1 + true + Label + 30 + false + 460 + 115 + + + + false - + - - - - Polyline + + + + 0 + 1 true - false - Default + - 1 - 0 - 0 + + + + 20 + 0 + Label - - 1 - 1 - true - - - - - 297 - $(pv_name) -$(pv_value) - 406 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4bdf - 0.0 - - 0 - 50 - true - Polyline - false - 255 true true - true + false - - - - - false - + + false + Rz' + + true + 1 + true + Label + 30 + false + 460 + 155 + + + + false - + - - - - Polyline + + + + 0 + 1 true - false - Default + - 1 - 0 - 0 + + + + 20 + 0 + Label - - 1 - 1 - true - - - - - 243 - $(pv_name) -$(pv_value) - 111 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4be0 - 0.0 - - 0 - 12 - true - Polyline - false - 255 true true - true + false - - - - - + + false + Ry' + true - + 1 + true + Label + 30 + false + 460 + 135 + + + + false - + - - - - Polyline - true - false - - Default - - 12 - 0 - 0 - - - 1 - 1 - true - - 242 - $(pv_name) -$(pv_value) - 105 - - - true - 1 - 39872d87:13e14015f61:4be1 - false - - 14 + 0 + 1 + true + + + + + + + 20 + 0 Label + true true false - true + false + Sx' + + true + 1 + true + Label + 30 + false + 580 + 115 + + + + false - - - - Label + + + + 0 + 1 true - BEAM - + - 30 - 0 + + + + 20 + 0 + Label - 1 - - - - 1 - - 226 - true - - 97 - - - true - true - 1 - false - 39872d87:13e14015f61:4bf9 - false - 0.0 - - 14 - Text Update - false true true false - 1 - true - false - $(P)$(Q)fpSelect.VAL + + false + Sz' + + true + 1 + true + Label + 30 + false + 580 + 155 + + + + false - + - - - - Text Update - true - ###### - false - 0 - - - - 95 - 0 - - - 1 - 1 - - 58 - false - $(pv_name) -$(pv_value) - 580 - - - false - true - true - 39872d87:13e14015f61:4bfa - + 0 + 1 + true + + + + + + 20 - Menu Button - false + 0 + Label + true true false - false - $(P)$(Q)fpSelect + + false + Sy' + + true + 1 + true + Label + 30 + false + 580 + 135 + + + + + table_setup_GEOCARS_refresh.opi + + true + + 0 + + + + false + false - + - - - - Menu Button + false + + + + 0 + 1 true - false - Default + Default - 95 - 6 - - + false + + + + 15 + + Action Button + 0 + - 1 - - - - 75 - + + + true + true + false + + + + REFRESH MENU + false $(pv_name) $(pv_value) - 580 + true + Action Button + 85 + 585 + 95 - + + + true + false + false + + + false - true - false - 39872d87:13e14015f61:4bfb - + + + + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + $(P)$(T).AUNIT + + true true false + + false + $(pv_name) +$(pv_value) false - + true + Menu Button + 120 + 290 + 345 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 95 - 6 - + + + + 14 + 0 + Label - - 1 - - - - 35 - - - table_fixedPoints.opi - - true - - 0 - Fixed points - - - $(pv_name) -$(pv_value) - 580 - - - false - true - false - 39872d87:13e14015f61:4bfc - - 15 - Menu Button - false true true false - false - + + false + Angle units + + true + 1 + true + Label + 80 + false + 205 + 348 + + + + false + 255 + true + 20 + 0 + false - + - - - - Menu Button + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 85 - 6 - - + false + + + + 25 + true + 0 + 1 + Polyline + + + + + - 1 - - - - 95 - - - table_setup_SRI_refresh.opi - - true - - 1 - - - + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 585 + false + true + Polyline + 1 + 255 + 297 - \ No newline at end of file + diff --git a/opticsApp/op/opi/table_setup_GEOCARS_refresh.opi b/opticsApp/op/opi/autoconvert/table_setup_GEOCARS_refresh.opi similarity index 69% rename from opticsApp/op/opi/table_setup_GEOCARS_refresh.opi rename to opticsApp/op/opi/autoconvert/table_setup_GEOCARS_refresh.opi index ce397bd..f49c773 100644 --- a/opticsApp/op/opi/table_setup_GEOCARS_refresh.opi +++ b/opticsApp/op/opi/autoconvert/table_setup_GEOCARS_refresh.opi @@ -1,86 +1,87 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 120 true - 39872d87:13e14015f61:48cb - 3.1.2.20120830 + table_setup_GEOCARS_refresh + + true + true + false true - 120 - table_setup_GEOCARS_refresh false - false - - - - - - Display - true 700 - - true - 5 - - false - -1 - -1 - - - 25 36 - - false - true - false - 39872d87:13e14015f61:48cc - - 15 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 85 - 6 - - - - 1 - - - - 95 + 25 + table_setup_GEOCARS.opi true - 1 + 0 + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 15 + + Action Button + 0 + + + + + true + true + false + + + + PRESS AGAIN + false $(pv_name) $(pv_value) + true + Action Button + 85 585 + 95 - \ No newline at end of file + diff --git a/opticsApp/op/opi/table_setup_NEWPORT.opi b/opticsApp/op/opi/autoconvert/table_setup_NEWPORT.opi similarity index 71% rename from opticsApp/op/opi/table_setup_NEWPORT.opi rename to opticsApp/op/opi/autoconvert/table_setup_NEWPORT.opi index 37b3e49..ab0fdff 100644 --- a/opticsApp/op/opi/table_setup_NEWPORT.opi +++ b/opticsApp/op/opi/autoconvert/table_setup_NEWPORT.opi @@ -1,4744 +1,4074 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 500 true - 39872d87:13e14015f61:48d0 - 3.1.2.20120830 + table_setup_NEWPORT + + true + true + false true - 455 - table_setup_NEWPORT false - false - - - - - - Display - true 700 - - true - 5 - - false - -1 - -1 - - - 504 - 33 - - false - true - 100.0 - - - - 39872d87:13e14015f61:48d2 - - - - - 40 - true - Rectangle - false + 699 + 521 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 15 - 0 - 0 - - - 1 - 0 - true - - - - - 226 - $(pv_name) -$(pv_value) - 637 + false + + + false - - - false - true - 100.0 + 40 + true - 39872d87:13e14015f61:4912 - - - - - 250 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 15 + 637 + 226 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 200 - 0 - 0 - - - 1 - 0 - true - - - - - 41 - $(pv_name) -$(pv_value) - 230 + false + + + false - - - false - true - 100.0 + 250 + true - 39872d87:13e14015f61:492f - - - - - 20 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 200 + 230 + 41 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 200 - 0 - 0 - - - 1 - 0 - true - - - - - 216 - $(pv_name) -$(pv_value) - 469 + false + + + false - - - false - true - 100.0 + 20 + true - 39872d87:13e14015f61:493d - - - - - 40 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 200 + 469 + 216 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 15 + false + + + + false + 40 + true + + + 0 - 0 - - - 1 0 - true - - - - - 226 + Rectangle + + + + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 15 485 - false + 226 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 10 + false true - true - 39872d87:13e14015f61:48d3 - - 10 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 8 - 0 - - false - 1 - - - - - 150 - 125 - + 150 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:48d4 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 3 + 5 + 0 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 3 - 0 - 0 - - - 1 - 1 - true + false - - 0 - $(pv_name) -$(pv_value) - 5 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:48d5 - 0.0 - - 0 + + Default + + false + + + 3 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 8 - 0 - 0 - - 1 - 1 - true - - - - - 7 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 8 0 + 7 - - - true - - true - 39872d87:13e14015f61:48e8 - - 110 - Grouping Container - - true - true - false - - true - false + + - - - - Grouping Container + + + + 0 + 1 true + false - Default + Default - 98 - 0 - + + + + 110 false - 1 - - - - - 96 + + true + + Grouping Container + + + true + true + false + + + false + true + true + Grouping Container + 98 22 - - true - 1 - 39872d87:13e14015f61:48e9 + 96 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true +X - - - - 20 - 0 - - 1 - - - - 0 - - 90 - true + true + 1 + true + Label + 20 + false 0 + 90 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:48ea - 0.0 - - 0 + + Default + + false + + + 10 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 13 - 0 - 0 - - 1 - 1 - true - - - - - 94 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 13 29 + 94 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:48eb - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 61 - 0 - 0 - - 1 - 1 - true - - - - - 99 - $(pv_name) -$(pv_value) - 29 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:48ec 0.0 - - 0 - 68 - true - Polyline - false - 255 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 61 + 29 + 99 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 1 + false + + + + 68 + true 0 - 0 - - - 1 1 - true - - - - - 32 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 1 89 + 32 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:48ed - 0.0 - - 0 + + Default + + false + + + 15 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 15 - 0 - 0 - - 1 - 1 - true - - - - - 29 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 15 81 + 29 - - true - 1 - 39872d87:13e14015f61:48ee + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true +Z - - - - 20 - 0 - - 1 - - - - 0 - - 0 - true + true + 1 + true + Label + 20 + false 78 + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 52 + false true - true - 39872d87:13e14015f61:490c - - 52 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 13 - 0 - - false - 1 - - - - - 241 - 104 - + 241 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:490d - 0.0 - - 0 + + Default + + false + + + 50 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - 1 - 1 - true - - - - - 2 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 1 7 + 2 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:490e - 0.0 - - 0 + + Default + + false + + + 12 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 12 - 0 - 0 - - 1 - 1 - true - - - - - 1 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 12 1 + 1 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 15 + false true - true - 39872d87:13e14015f61:491b - - 15 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 5 - 0 - - false - 1 - - - - - 49 - 252 - + 49 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:491c - 0.0 - - 0 + + Default + + false + + + 14 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 1 + 3 + 2 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true + false - - 2 - $(pv_name) -$(pv_value) - 3 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:491d - 0.0 - - 0 + + Default + + false + + + 6 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 5 - 0 - 0 - - 1 - 1 - true - - - - - 1 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 5 1 + 1 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 5 + false true - true - 39872d87:13e14015f61:491e - - 5 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 15 - 0 - - false - 1 - - - - - 63 - 238 - + 63 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:491f - 0.0 - - 0 + + Default + + false + + + 5 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - 1 - 1 - true - - - - - 1 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 7 1 + 1 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4920 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 14 - 0 - 0 - - 1 - 1 - true - - - - - 3 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 14 2 + 3 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 11 + false true - true - 39872d87:13e14015f61:4922 - - 11 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 10 - 0 - - false - 1 - - - - - 262 - 401 - - false - true - 0.0 - - - - 39872d87:13e14015f61:4923 - - - - - 10 - true - Rectangle - false + 262 + + + false 255 - - true - true - false - - true - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 10 + false + + + + false + 10 + true + + + 0 - 0 - - - 1 1 - true - - - - - 0 + Rectangle + + + + + true + true + false + + $(pv_name) $(pv_value) + true + true + Rectangle + 10 0 - false + 0 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4924 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 1 + 5 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 5 - $(pv_name) -$(pv_value) - 1 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4925 - 0.0 - - 0 + + Default + + false + + + 10 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - 1 - 1 - true - - - - - 1 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 1 5 + 1 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 11 + false true - true - 39872d87:13e14015f61:4939 - - 11 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 10 - 0 - - false - 1 - - - - - 266 - 640 - - false - true - 0.0 - - - - 39872d87:13e14015f61:493a - - - - - 10 - true - Rectangle - false + 266 + + + false 255 - - true - true - false - - true - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 10 + false + + + + false + 10 + true + + + 0 - 0 - - - 1 1 - true - - - - - 0 + Rectangle + + + + + true + true + false + + $(pv_name) $(pv_value) + true + true + Rectangle + 10 0 - false + 0 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:493b - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 1 + 5 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 5 - $(pv_name) -$(pv_value) - 1 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:493c - 0.0 - - 0 + + Default + + false + + + 10 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - 1 - 1 - true - - - - - 1 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 1 5 + 1 - - - true - - true - 39872d87:13e14015f61:493e - - 40 - Grouping Container - - true - true - false - - true - false + + - - - - Grouping Container + + + + 0 + 1 true + false - Default + Default - 100 - 0 - + + + + 11 false - 1 - - - - - 41 + + true + + Grouping Container + + + true + true + false + + + false + true + true + Grouping Container + 10 460 - - - true - - true - 39872d87:13e14015f61:4940 - - 11 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 10 - 0 - - false - 1 - - - + 41 + - 0 - - 0 - - false - true - 0.0 - - - - 39872d87:13e14015f61:4941 - - - - - 10 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 10 - 0 - 0 - - - 1 - 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4942 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true - - - - - 5 - $(pv_name) -$(pv_value) - 1 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4943 - 0.0 - - 0 - 10 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 5 - - - - false - true - 100.0 - - - - 39872d87:13e14015f61:493f - - - - - 10 - true - Ellipse - false + false 255 - - true - true - true - - false - + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 10 + false + + + + false + 10 + true + + + 0 - 0 - + 1 + Rectangle + - 1 - 0 - true - - - - - 15 + + + true + true + false + + $(pv_name) $(pv_value) + true + true + Rectangle + 10 0 - false + 0 - + + + false + 255 + true + 20 + 0 + false + + + false - true + + + + 0 + 1 + true + true 100.0 - - - - 39872d87:13e14015f61:4944 - - - - - 10 - true - Ellipse + + Default + false - 255 + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - false - + + $(pv_name) +$(pv_value) + true + true + Polyline + 9 + 1 + 5 + + + + false + 255 + true + 20 + 0 + false - - - - Ellipse + false + + + + 0 + 1 true - - - - false + true + 100.0 - Default + Default - 10 + false + + + + 10 + true 0 - 0 - + 1 + Polyline + + + + + - 1 - 0 - true - - - - - 30 - $(pv_name) -$(pv_value) - 0 - false - - - true - 1 - 39872d87:13e14015f61:4945 - false - - 10 - Label + 0.0 + true true - false + true - true - false - - - - - - - Label - true - PIVOT POINTS - - - - 80 - 0 - - 1 - - - - 0 - - 15 - true - - 20 - - - true - 1 - 39872d87:13e14015f61:4946 - false - 10 - Label - - true - true - false - + $(pv_name) +$(pv_value) true - false - - - - - - - Label - true - LOCAL ORIGIN - - - - 80 - 0 - - 1 - - - - 0 - - 0 - true - - 20 - - true - 1 - 39872d87:13e14015f61:4947 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - 'FIXED' POINT - - - - 80 - 0 - - 1 - - - - 0 - - 30 - true - - 20 + Polyline + 1 + 5 + 1 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 5 + false true - true - 39872d87:13e14015f61:4948 - - 5 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 15 - 0 - - false - 1 - - - - - 263 - 237 - + 263 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4949 - 0.0 - - 0 + + Default + + false + + + 5 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - 1 - 1 - true - - - - - 1 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 7 1 + 1 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:494a - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 14 - 0 - 0 - - 1 - 1 - true - - - - - 3 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 14 2 + 3 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 57 + false true - true - 39872d87:13e14015f61:494c - - 57 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 64 - 0 - - false - 1 - - - - - 196 - 310 - - true - 1 - 39872d87:13e14015f61:494d + 196 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true +X' - - - - 20 - 0 - - 1 - - - - 0 - - 43 - true + true + 1 + true + Label + 20 + false 0 + 43 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:494e - 0.0 - - 0 + + Default + + false + + + 10 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 13 - 0 - 0 - - 1 - 1 - true - - - - - 46 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 13 22 + 46 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:494f - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 27 + 25 + 51 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 27 + false + + + + 32 + true 0 - 0 - - - 1 1 - true - - - - - 51 - $(pv_name) -$(pv_value) - 25 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4950 - 0.0 - - 0 - 32 - true Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 1 + 52 + 21 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true + false - - 21 - $(pv_name) -$(pv_value) - 52 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4951 - 0.0 - - 0 + + Default + + false + + + 13 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 13 - 0 - 0 - - 1 - 1 - true - - - - - 18 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 13 45 + 18 - - true - 1 - 39872d87:13e14015f61:4952 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true +Z' - - - - 20 - 0 - - 1 - - - - 0 - - 0 - true + true + 1 + true + Label + 20 + false 44 + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 53 + false true - true - 39872d87:13e14015f61:4953 - - 53 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 20 - 0 - - false - 1 - - - - - 221 - 552 - - false - true + 221 + + + false + 255 + true 20 - true - 100.0 - 39872d87:13e14015f61:4954 - 0.0 - 0 - 32 - true - Polyline - false - 255 - - true - true - true - - - - - - false - + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 1 + false + + + + 32 + true 0 - 0 - - - 1 1 - true - - - - - 21 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 1 8 + 21 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4955 - 0.0 - - 0 + + Default + + false + + + 13 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 13 - 0 - 0 - - 1 - 1 - true - - - - - 18 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 13 1 + 18 - - true - 1 - 39872d87:13e14015f61:4956 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true +Y' - - - - 20 - 0 - - 1 - - - - 0 - - 0 - true + true + 1 + true + Label + 20 + false 0 + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 30 + false true - true - 39872d87:13e14015f61:4959 - - 30 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 700 - 0 - - false - 1 - - - - - 0 - 0 - - false - true - 100.0 - - - - 39872d87:13e14015f61:495a - - - - - 27 - true - Rectangle - false + 0 + + + false 255 - - true - true - false - - false - + true + false - - - - Rectangle - true - + + + + false + + + + 0 + 1 + true + - false + 100.0 - Default + Default - 700 + false + + + + false + 27 + true + + + 0 - 0 - - - 1 0 - true - - - - - 0 + Rectangle + + + + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 700 0 - false + 0 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:495b - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 697 - 0 - 0 - - 1 - 1 - true - - - - - 28 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 697 1 + 28 - - true - 1 - 39872d87:13e14015f61:495c + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 1 Label + true true false - true + false - - - - - - - Label - true ($(P)$(T)) - - - - 350 - 0 - - 1 - - - - 1 - - 5 - true + true + 1 + true + Label + 350 + false 350 + 5 - - false - true - 1 - false + + + false false - - 27 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 350 - 3 - - 1 + false + + + + 1 + 27 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:495d - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).DESC + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(T).DESC - - - - false - 0 - - - false - - - - 0 - - 0 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 350 0 + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 60 + false true - true - 39872d87:13e14015f61:4962 - - 60 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 215 - 0 - - false - 1 - - - - - 115 + true + true + Grouping Container + 140 460 - - - true - - true - 39872d87:13e14015f61:4968 - - 60 - Grouping Container - - true - true - false - - true - false + 115 + + + false - + - - - - Grouping Container + + + + 0 + 1 true - Default + - 140 - 0 + + + + 20 + 0 + Label - false - 1 - - - - - 0 + + true + true + false + + + false + Rx' + true + 1 + true + Label + 20 + false 0 - - true - 1 - 39872d87:13e14015f61:4969 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Rx' - - - - 20 - 0 - - 1 - - - - 0 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:496a - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Rz' - - - - 20 - 0 - - 1 - - - - 0 - - 40 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:496b - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Ry' - - - - 20 - 0 - - 1 - - - - 0 - - 20 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:496c - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Sx' - - - - 20 - 0 - - 1 - - - - 0 - - 0 - true - - 120 - - - true - 1 - 39872d87:13e14015f61:496d - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Sz' - - - - 20 - 0 - - 1 - - - - 0 - - 40 - true - - 120 - - - true - 1 - 39872d87:13e14015f61:496e - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Sy' - - - - 20 - 0 - - 1 - - - - 0 - - 20 - true - - 120 - + 0 - - false - true - 1 - false + + false - - 18 - false - true - + - Text Input + + + + 0 + 1 true - - + - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4963 - 0.0 - Text Input + + + + 20 + 0 + Label + true true false - 1 - false - 0 - $(P)$(T).RX - - - - false - 0 - - - false - - - - 0 - - 1 - $(pv_name) -$(pv_value) - 35 - - - false - true + + false + Rz' + + true 1 - false + true + Label + 20 + false + 0 + 40 + + + false - - 18 - false - true - + - Text Input + + + + 0 + 1 true - - + - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4964 - 0.0 - Text Input + + + + 20 + 0 + Label + true true false - 1 - false - 0 - $(P)$(T).RY - - - - false - 0 - - - false - - - - 0 - + + false + Ry' + + true + 1 + true + Label + 20 + false + 0 20 - $(pv_name) -$(pv_value) - 35 - - false - true - 1 - false + + false - - 18 - false - true - + - Text Input + + + + 0 + 1 true - - + - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4965 - 0.0 - Text Input + + + + 20 + 0 + Label + true true false - 1 - false - 0 - $(P)$(T).SX - - - - false - 0 - - - false - - - - 0 - + + false + Sx' + + true + 1 + true + Label + 20 + false + 120 0 - $(pv_name) -$(pv_value) - 155 - - false - true - 1 - false + + false - - 18 - false - true - + - Text Input + + + + 0 + 1 true - - + - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4966 - 0.0 - Text Input + + + + 20 + 0 + Label + true true false - 1 - false - 0 - $(P)$(T).SZ - - - - false - 0 - - - false - - - - 0 - + + false + Sz' + + true + 1 + true + Label + 20 + false + 120 40 - $(pv_name) -$(pv_value) - 155 - - false - true - 1 - false + + false - - 18 - false - true - + - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4967 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(T).SY - - - - false - 0 - - - false - 0 - - 20 - $(pv_name) -$(pv_value) - 155 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input + 0 + 1 true - - + - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:496f - 0.0 - Text Input + + + + 20 + 0 + Label + true true false - 1 - false - 0 - $(P)$(T).RZ - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 35 + + false + Sy' + + true + 1 + true + Label + 20 + false + 120 + 20 - - false - true - 100.0 - - - - 39872d87:13e14015f61:48d1 - - - - - 10 - true - Ellipse - false - 255 + + + + + + + + + 0 + 1 + true + + Default + + + + + + 129 + + true + + Linking Container + table_limits.opi + 2 + true true - true + false - false - + + + true + Linking Container + 700 + 0 + 371 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 - 0 - 0 - - - 1 - 0 - true - - - - - 266 - $(pv_name) -$(pv_value) - 639 + false + + + false - - - false - true - 100.0 + 10 + true - 39872d87:13e14015f61:48d6 - 0.0 - - 69 - true - Polygon - false - 255 + 0 + 0 + Ellipse + + + true true true - - - - - - - + + $(pv_name) +$(pv_value) false - + true + Ellipse + 10 + 639 + 266 + + + + false + 255 + true + false - - - - Polygon - true - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true + false - - 161 - $(pv_name) -$(pv_value) - 77 - - - false - true + 0 + 1 + true 100.0 + + Default + + false + + + + 69 + true - 39872d87:13e14015f61:48d7 - - - - - 7 - true - Ellipse - false - 255 + 0 + 0 + Polygon + + + + + + + + + + 0.0 + true true true + + $(pv_name) +$(pv_value) false - + true + Polygon + 64 + 77 + 161 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 7 - 0 - 0 - - - 1 - 0 - true - - - - - 203 - $(pv_name) -$(pv_value) - 84 + false + + + false - - - false - true - 100.0 + 7 + true - 39872d87:13e14015f61:48d8 - - - - - 7 - true + 0 + 0 Ellipse - false - 255 + + + true true true + + $(pv_name) +$(pv_value) false - + true + Ellipse + 7 + 84 + 203 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 7 - 0 - 0 - - - 1 - 0 - true - - - - - 198 - $(pv_name) -$(pv_value) - 116 + false + + + false - - - false - true - 100.0 + 7 + true - 39872d87:13e14015f61:48d9 - - - - - 7 - true + 0 + 0 Ellipse - false - 255 + + + true true true + + $(pv_name) +$(pv_value) false - + true + Ellipse + 7 + 116 + 198 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 7 + false + + + + false + 7 + true + + + 0 - 0 - - - 1 0 - true - - - - - 168 + Ellipse + + + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Ellipse + 7 108 - false + 168 - - true - 1 - 39872d87:13e14015f61:48da + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - BEAM - - - - 30 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 1 - - 226 - true - - 97 - - - true - 1 - 39872d87:13e14015f61:48db - false - - 20 Label + true true false - true + false + BEAM + + true + 1 + true + Label + 30 + false + 97 + 226 + + + + false - - - - Label - true - (+Y is up) - - - - 120 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 1 - - 316 - true + Label + + + true + true + false + + + false + (+Y is up) + true + 1 + true + Label + 120 + false 40 + 316 - - false - true - 1 - false + + + false false - - 22 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 90 - 3 - - 1 + false + + + + 1 + 22 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:48dc - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).YANG + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(T).YANG - - - - false - 0 - - - false - - - - 0 - - 63 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 90 95 + 63 - - true - 1 - 39872d87:13e14015f61:48dd + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 1 Label + true true false - true + false + Table angle + + true + 1 + true + Label + 90 + false + 95 + 33 + + + + false - - - - Label - true - Table angle - - - - 90 - 0 - - 1 - 1 - - 33 - true - - 95 - - - true - 1 - 39872d87:13e14015f61:48de - false - + 0 + 1 + true + + + + + + 15 + 1 Label + true true false - true + false - - - - - - - Label - true (degrees) - - - - 90 - 0 - - 1 - - - - 1 - - 48 - true + true + 1 + true + Label + 90 + false 95 + 48 - - false - true + + + false + 255 + true 20 - true - 100.0 - 39872d87:13e14015f61:48df - 0.0 - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 82 + false + + + + 1 + true 0 - 0 - - - 1 1 - true - - - - - 86 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 82 98 + 86 - - true - 1 - 39872d87:13e14015f61:48e0 + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false + +Z' + + true + 1 + true + Label + 20 + false + 141 + 128 + + + + false - - - - Label - true - +Z' - - - - 20 - 0 - - 1 - 0 - - 128 - true - - 141 - - - true - 1 - 39872d87:13e14015f61:48e1 - false - + 0 + 1 + true + + + + + + 15 + 0 Label + true true false - true + false - - - - - - - Label - true +X' - - - - 20 - 0 - - 1 - - - - 0 - - 155 - true + true + 1 + true + Label + 20 + false 36 + 155 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:48e2 - 0.0 - - 0 + + Default + + false + + + 343 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - 1 - 1 - true - - - - - 31 - $(pv_name) -$(pv_value) - 196 - - - false - true - 29 - 39872d87:13e14015f61:48e3 - 61 - - 90 - true - Arc - false - 255 + 0.0 + true true true - + + $(pv_name) +$(pv_value) + true + true + Polyline + 1 + 196 + 31 + + + + false + 255 + true + false - - - - Arc - true - false + false + + + + 0 + 1 + true + false - Default + Default - 90 + false + + + + 90 0 - false - 0 - - - 1 1 - - - - - 151 + Arc + + + + + true + true + true + + + 61 $(pv_name) $(pv_value) + 29 + true + Arc + 90 65 + 151 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:48e4 - 0.0 - - 0 + + Default + + false + + + 26 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 48 + 63 + 169 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 48 - 0 - 0 - - - 1 - 1 - true + false - - 169 - $(pv_name) -$(pv_value) - 63 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:48e5 - 0.0 - - 0 + + Default + + false + + + 66 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 22 + 120 + 87 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 22 - 0 - 0 - - - 1 - 1 - true + false - - 87 - $(pv_name) -$(pv_value) - 120 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:48e6 - 0.0 - - 0 + + Default + + false + + + 52 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 30 + 111 + 143 + + + + false + 255 + true + false - - - - Polyline + + + + false + + + + 0 + 1 true - false + + + + 100.0 - Default + Default - 30 - 0 - 0 - - - 1 - 1 + false + + + + false + 7 true - - - - - 143 - $(pv_name) -$(pv_value) - 111 - - - false - true - 100.0 - 39872d87:13e14015f61:48e7 - - - - - 7 - true + 0 + 0 Ellipse - false - 255 + + + true true true + + $(pv_name) +$(pv_value) false - - - - - - - + true Ellipse - true - - - - false - - Default - 7 - 0 - 0 - - - 1 - 0 - true - - - - - 189 - $(pv_name) -$(pv_value) 111 - false + 189 - - true - 1 - 39872d87:13e14015f61:48ef + + false - - 10 - Label - - true - true - false - - true - false - - - - Label - true - V5.1 - - - - 30 - 0 - - 1 - 0 - - 446 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:48f0 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label + 0 + 1 true - You're using the wrong setup display - + - 280 - 0 + + + + 14 + 0 + Label @@ -4750,130 +4080,129 @@ $(pv_value) $(P)$(Q):geomIsNEWPORT - 1 - - - - 0 - - 351 - true - - 415 - - - false - true - true - 39872d87:13e14015f61:48f1 - - 20 - Menu Button - false true true false - false - $(P)$(T).GEOM + + false + You're using the wrong setup display + + true + 1 + true + Label + 280 + false + 415 + 351 + + + + true + false + false - + - - - - Menu Button + false + + + + 6 + 1 true - false - Default + Default - 100 - 6 + false + + + + 20 - + Menu Button + $(P)$(T).GEOM - 1 - - - - 311 - - $(pv_name) -$(pv_value) - 540 - - - true - 1 - 39872d87:13e14015f61:48f2 - false - - 20 - Label + true true false - true - false + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 100 + 540 + 311 + + + + false - - - - Label - true - Geometry - - - - 80 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 0 - - 311 - true - - 450 - - - true - 1 - 39872d87:13e14015f61:48f3 - false - - 14 Label + true true false - true + false - - - - - - + Geometry + + true + 1 + true Label + 80 + false + 450 + 311 + + + + false + + + + + + + 0 + 1 true - This display is for the NEWPORT geometry - + - 280 - 0 + + + + 14 + 0 + Label @@ -4885,3086 +4214,2591 @@ $(pv_value) $(P)$(Q):geomIsNEWPORT - 1 - - - - 0 - - 336 - true + + true + true + false + + + false + This display is for the NEWPORT geometry + true + 1 + true + Label + 280 + false 415 + 336 - - true - 1 - 39872d87:13e14015f61:48f4 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + Lx' + + true + 1 + true + Label + 20 + false + 319 + 301 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label - true - User limits - - - - 110 - 0 - - 1 + false - 0 - - 376 - true - - 5 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:48f5 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 62 + 345 + 311 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 708 + false + + + + 1 + true 0 - 0 - - - 1 1 - true - - - - - 372 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 1 - - - false + false true - 1 - false - false - - 18 - false - true + Polyline + 59 + 257 + 311 + + + + false + 255 + true + false - + - Text Input + + + + false + + + + 0 + 1 true - + + + + 100.0 - + Default - 80 - 3 + false + + + + false + 10 + true + + + + 0 + 0 + Ellipse + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:48f6 - 0.0 - Text Input + true true - false + true - 6 + + $(pv_name) +$(pv_value) false - 0 - $(P)$(T).UHX - - - - false - 0 - - - false + true + Ellipse + 10 + 250 + 261 + + + + false + 255 + true + false + + + + + + + false - 0 - - 401 + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 10 + true + + + + 0 + 0 + Ellipse + + + + + true + true + true + + $(pv_name) $(pv_value) - 110 - - - false + false true - 1 - false - false - - 18 - false - true + Ellipse + 10 + 400 + 161 + + + + false + 255 + true + false - + - Text Input + + + + false + + + + 0 + 1 true - + + + + 100.0 - + Default - 80 - 3 + false + + + + false + 10 + true + + + + 0 + 0 + Ellipse + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:48f7 - 0.0 - Text Input + true true - false + true - 6 + + $(pv_name) +$(pv_value) false - 0 - $(P)$(T).UHY - - - + true + Ellipse + 10 + 250 + 61 + + + + false + 255 + true + 20 + 0 false - 0 - - - false + + + + false - 0 - - 401 + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 195 - - + false true - 1 - 39872d87:13e14015f61:48f8 + Polyline + 25 + 204 + 66 + + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + M0 + + true + 1 + true + Label + 20 + false + 263 + 246 + + + + false - - - - Label - true - High - - - - 40 - 0 - - 1 - 0 - - 401 - true - - 60 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input + 0 + 1 true - - + - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:48f9 - 0.0 - Text Input + + + + 20 + 0 + Label + true true false - 6 - false - 0 - $(P)$(T).ULX - - - - false - 0 - - - false - - - - 0 - - 421 - $(pv_name) -$(pv_value) - 110 - - - false - true + + false + M1 + + true 1 - false + true + Label + 20 + false + 400 + 176 + + + false - - 18 - false - true - + - Text Input + + + + 0 + 1 true - - + - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:48fa - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)$(T).ULY - + - false - 0 - - - false - - - - 0 - - 421 - $(pv_name) -$(pv_value) - 195 - - - true - 1 - 39872d87:13e14015f61:48fb - false - 20 + 0 Label + true true false - true + false - - - - - - + M2 + + true + 1 + true Label - true - Low - - - 20 - 0 - - 1 - - - - 0 - - 421 - true - - 60 + false + 246 + 71 - - false - true - 1 - false - false - - 18 - false - true + + + false + 255 + true + false - + - Text Input + + + + false + + + + 0 + 1 true - + + + + 100.0 - + Default - 80 - 3 + false + + + + false + 10 + true + + + + 0 + 0 + Ellipse + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:48fc - 0.0 - Text Input + true true - false + true - 6 - false - 0 - $(P)$(T).ULZ - - - - false - 0 - - - false - - - - 0 - - 421 + $(pv_name) $(pv_value) - 280 - - - false + false true - 1 - false + Ellipse + 10 + 345 + 128 + + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:48fd - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).LZ + + false + 0.0 + true true false - 6 - false + 0 - $(P)$(T).UHZ - - - + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 235 + 126 + + + + false + 255 + true + 20 + 0 false - 0 - - - false + + + + false - 0 - - 401 - $(pv_name) -$(pv_value) - 280 - - - true - 1 - 39872d87:13e14015f61:48fe - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label + 0 + 1 true - X + true + 100.0 - + Default - 80 - 0 + false + + + + 23 + true + 0 + 1 + Polyline + + + + + + + 0.0 - 1 - - - - 1 - - 381 - true - - 110 - - - true - 1 - 39872d87:13e14015f61:48ff - false - - 20 - Label true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Polyline + 24 + 406 + 267 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label + false + + + + 0 + 1 true - Y + true + 100.0 - + Default - 80 - 0 + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 - 1 - - - - 1 - - 381 - true - - 195 - - - true - 1 - 39872d87:13e14015f61:4900 - false - - 20 - Label true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Polyline + 25 + 204 + 265 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label - true - Z - - - - 80 - 0 - - 1 + false - 1 - - 381 - true - - 280 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input + 0 + 1 true - + true + 100.0 - + Default - 80 - 3 + false + + + + 158 + true + 0 + 1 + Polyline + + + + + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4901 0.0 - Text Input + true true - false + true - 6 - false - 0 - $(P)$(T).ULAX - - - - false - 0 - - - false - - - - 0 - - 421 + $(pv_name) $(pv_value) - 405 - - - false + false true - 1 - false + Polyline + 80 + 350 + 132 + + + false - - 18 - false - true - + - Text Input + + + + 0 + 1 true - - + - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4902 - 0.0 - Text Input + + + + 20 + 0 + Label + true true false - 6 - false - 0 - $(P)$(T).UHAX - - - - false - 0 - - - false - - - - 0 - - 401 - $(pv_name) -$(pv_value) - 405 - - - false - true + + false + R + + true 1 - false + true + Label + 15 + false + 425 + 294 + + + false - - 18 - false - true - + - Text Input + + + + 0 + 1 true - - + - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4903 - 0.0 - Text Input + + + + 20 + 0 + Label + true true false - 6 - false - 0 - $(P)$(T).ULAY - - - + + false + S + + true + 1 + true + Label + 15 + false + 360 + 121 + + + + false + 255 + true + 20 + 0 false - 0 - - - false + + + + false - 0 - - 421 - $(pv_name) -$(pv_value) - 490 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input + 0 + 1 true - + true + 100.0 - + Default - 80 - 3 + false + + + + 60 + true + 0 + 1 + Polyline + + + + + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4904 0.0 - Text Input + true true - false + true - 6 - false - 0 - $(P)$(T).UHAY - - - - false - 0 - - - false - - - - 0 - - 401 + $(pv_name) $(pv_value) - 490 - - - false + false true - 1 - false + Polyline + 1 + 210 + 66 + + + false - - 18 - false - true - + - Text Input + + + + 0 + 1 true - - + - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4905 - 0.0 - Text Input + + + + 20 + 0 + Label + true true false - 6 - false - 0 - $(P)$(T).ULAZ - - - + + false + Lz' + + true + 1 + true + Label + 20 + false + 200 + 126 + + + + false + 255 + true + 20 + 0 false - 0 - - - false + + + + false - 0 - - 421 - $(pv_name) -$(pv_value) - 575 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input + 0 + 1 true - + true + 100.0 - + Default - 80 - 3 + false + + + + 119 + true + 0 + 1 + Polyline + + + + + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4906 0.0 - Text Input + true true - false + true - 6 - false - 0 - $(P)$(T).UHAZ - - - + + $(pv_name) +$(pv_value) + false + true + Polyline + 1 + 210 + 148 + + + + false + false false - 0 - - - false + + + + false + 3 + 1 + + true + + + + false + + + + 1 + 18 0 - - 401 - $(pv_name) -$(pv_value) - 575 - - - true - 1 - 39872d87:13e14015f61:4907 - false - - 20 - Label + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).LX + + false + 0.0 + true true false - true - false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 300 + 318 + + + + false + 255 + true + false - + - - - - Label + + + + false + + + + 0 + 1 true - AX + + + + 100.0 - + Default - 80 - 0 + false + + + + false + 10 + true + + + + 0 + 0 + Ellipse + + - 1 - - - - 1 - - 381 - true - - 405 - - - true - 1 - 39872d87:13e14015f61:4908 - false - - 20 - Label true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Ellipse + 10 + 589 + 186 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label + false + + + + 0 + 1 true - AY + true + 100.0 - + Default - 80 - 0 + false + + + + 56 + true + 0 + 1 + Polyline + + + + + + + 0.0 - 1 + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 23 + 645 + 215 + + + + false + + + - 1 - - 381 - true - - 490 - - - true - 1 - 39872d87:13e14015f61:4909 - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + R + + true + 1 + true + Label + 15 + false + 670 + 206 + + + + false - - - - Label + + + + 0 + 1 true - AZ - + - 80 - 0 + + + + 20 + 0 + Label - 1 - - - - 1 - - 381 - true + + true + true + false + + + false + S - 575 - - - true - true + true 1 - false - 39872d87:13e14015f61:490a - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(T).AEGU + true + Label + 15 + false + 574 + 192 + + + + false + 255 + true + 20 + 0 + false - + - - - - Text Update + false + + + + 0 + 1 true - ###### - false - 0 + true + 100.0 - + Default - 115 - 0 - + false + + + + 26 + true + 0 + 1 + Polyline + + + + + - 1 - - - - 1 - - 441 - false - $(pv_name) -$(pv_value) - 475 - - - true - true - 1 - false - 39872d87:13e14015f61:490b - false 0.0 - - 15 - Text Update - false + true true - false + true - 1 - true + + $(pv_name) +$(pv_value) false - $(P)$(T).LEGU + true + Polyline + 74 + 594 + 191 + + + + false + 255 + true + false - + - - - - Text Update + + + + false + + + + 0 + 1 true - ###### - false - 0 + + + + 100.0 - + Default - 115 - 0 - + false + + + + false + 10 + true + + + + 0 + 0 + Ellipse + - 1 - - - - 1 - - 441 - false - $(pv_name) -$(pv_value) - 175 - - - true - 1 - 39872d87:13e14015f61:490f - false - - 20 - Label + true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Ellipse + 10 + 489 + 266 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label - true - Lx' - - - - 20 - 0 - - 1 + false - 0 - - 301 - true - - 319 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4910 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 87 + 601 + 271 + + + + false - + - - - - Polyline + + + + 0 + 1 true - false - Default + - 62 - 0 - 0 + + + + 20 + 0 + Label - - 1 - 1 - true - - - - - 311 - $(pv_name) -$(pv_value) - 345 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4911 - 0.0 - - 0 - 1 - true - Polyline - false - 255 true true - true + false - - - - - false - + + false + M0,M2 + + true + 1 + true + Label + 20 + false + 484 + 281 + + + + false - + - - - - Polyline + + + + 0 + 1 true - false - Default + - 59 - 0 - 0 + + + + 20 + 0 + Label - - 1 - 1 - true - - - - - 311 - $(pv_name) -$(pv_value) - 257 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4913 - - - - - 10 - true - Ellipse - false - 255 true true - true + false - false - + + false + M1 + + true + 1 + true + Label + 20 + false + 634 + 281 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 - 0 - 0 - - - 1 - 0 - true - - - - - 261 - $(pv_name) -$(pv_value) - 250 + false + + + false - - - false - true - 100.0 + 10 + true - 39872d87:13e14015f61:4914 - - - - - 10 - true + 0 + 0 Ellipse - false - 255 + + + true true true + + $(pv_name) +$(pv_value) false - + true + Ellipse + 10 + 460 + 56 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 - 0 - 0 - - - 1 - 0 - true - - - - - 161 - $(pv_name) -$(pv_value) - 400 + false + + + false - - - false - true - 100.0 + 10 + true - 39872d87:13e14015f61:4915 - - - - - 10 - true + 0 + 0 Ellipse - false - 255 + + + true true true + + $(pv_name) +$(pv_value) false - + true + Ellipse + 10 + 460 + 71 + + + + false - + + + + + 0 + 1 + true + + + - + - Ellipse - true - - - - false - - Default - - 10 - 0 - 0 - - - 1 - 0 - true - - - - - 61 - $(pv_name) -$(pv_value) - 250 - false - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4916 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 25 - 0 - 0 - - - 1 - 1 - true - - - - - 66 - $(pv_name) -$(pv_value) - 204 - - - true - 1 - 39872d87:13e14015f61:4917 - false - - 20 + 10 + 0 Label + true true false - true + false + PIVOT POINTS + + true + 1 + true + Label + 80 + false + 480 + 56 + + + + false - - - - Label - true - M0 - - - - 20 - 0 - - 1 + 0 + 1 + true + + + + + + + 10 0 - - 246 - true - - 263 - - - true - 1 - 39872d87:13e14015f61:4918 - false - - 20 Label + true true false - true + false + LOCAL ORIGIN + + true + 1 + true + Label + 80 + false + 480 + 41 + + + + false - - - - Label - true - M1 - - - - 20 - 0 - - 1 + 0 + 1 + true + + + + + + + 10 0 - - 176 - true - - 400 - - - true - 1 - 39872d87:13e14015f61:4919 - false - - 20 Label + true true false - true + false + 'FIXED' POINT + + true + 1 + true + Label + 80 + false + 480 + 71 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label - true - M2 - - - - 20 - 0 - - 1 + false - 0 - - 71 - true - - 246 - - - false - true + 0 + 1 + true + true 100.0 - - - - 39872d87:13e14015f61:491a - - - - - 10 - true - Ellipse + + Default + false - 255 + + + + 38 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true + + $(pv_name) +$(pv_value) false - - - - - - - - Ellipse - true - - - + true + Polyline + 1 + 255 + 248 + + + + false + 255 + true + 20 + 0 false - - Default - - 10 - 0 - 0 - - - 1 - 0 - true + + + + false - - 128 - $(pv_name) -$(pv_value) - 345 - false - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input + 0 + 1 true - + true + 100.0 - + Default - 60 - 3 + false + + + + 25 + true + 0 + 1 + Polyline + + + + + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4921 0.0 - Text Input + true true - false + true - 1 - false - 0 - $(P)$(T).LZ - - - - false - 0 - - - false - - - - 0 - - 126 + $(pv_name) $(pv_value) - 235 + false + true + Polyline + 1 + 256 + 297 - - false - true + + + false + 255 + true 20 - true - 100.0 - 39872d87:13e14015f61:4926 - 0.0 - 0 - 23 - true - Polyline - false - 255 - - true - true - true - - - - - - false - + false - - - - Polyline - true - false - - Default - - 24 - 0 - 0 - - - 1 - 1 - true + false - - 267 - $(pv_name) -$(pv_value) - 406 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4927 - 0.0 - - 0 - 1 - true - Polyline + + Default + false - 255 + + + + 25 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 1 + 406 + 297 + + + + false + false + false - + - - - - Polyline + true + + + + 0 + 1 true - false - Default + - 25 - 0 - 0 - + false + + + + 1 + 14 + 1 + Text Update + 0 + true + $(P)$(Q)fpSelect.VAL - 1 - 1 - true - - - - - 265 - $(pv_name) -$(pv_value) - 204 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4928 0.0 - - 0 - 158 - true - Polyline - false - 255 + true true - true + false - - - - + + false + ###### + $(pv_name) +$(pv_value) false - + 1 + true + Text Update + 95 + false + 581 + 58 + + + + true + false + false - + - - - - Polyline - true - false - - Default - - 80 - 0 - 0 - - - 1 - 1 - true + false - - 132 - $(pv_name) -$(pv_value) - 350 - - - true - 1 - 39872d87:13e14015f61:4929 - false - + 6 + 1 + true + + Default + + false + + + 20 - Label + + Menu Button + $(P)$(Q)fpSelect + + true true false - true - false + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 95 + 581 + 75 + + + + + table_fixedPoints.opi + + true + + 1 + Fixed points + + + false + false - + - - - - Label - true - R - - - - 15 - 0 - - 1 + false - 0 - - 294 - true - - 425 - - - true - 1 - 39872d87:13e14015f61:492a - false - + 0 + 1 + true + + Default + + false + + + 20 - Label + + Action Button + 0 + + + true true false - true - false + + + Fixed points + false + $(pv_name) +$(pv_value) + true + Action Button + 95 + 581 + 35 + + + + + table_setup_NEWPORT_refresh.opi + + true + + 0 + + + + false + false - + - - - - Label - true - S - - - - 15 - 0 - - 1 + false - 0 - - 121 - true - - 360 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:492b - 0.0 - - 0 - 60 - true - Polyline + 0 + 1 + true + + Default + false - 255 + + + + 15 + + Action Button + 0 + + + true true - true + false - - - - - false - + + + REFRESH MENU + false + $(pv_name) +$(pv_value) + true + Action Button + 85 + 586 + 95 + + + + false + false + false - + - - - - Polyline + false + + + + 3 + 1 + true - false - Default + - 1 - 0 - 0 - + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).RX - 1 - 1 - true - - - - - 66 - $(pv_name) -$(pv_value) - 210 - - - true - 1 - 39872d87:13e14015f61:492c - false - - 20 - Label + false + 0.0 + true true false - true - false - - - - - - - Label - true - Lz' - - - - 20 - 0 - - 1 - - - - 0 - - 126 - true - - 200 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:492d - 0.0 - 0 - 119 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true - - - - - 148 + 0 + false + true + false + false + + $(pv_name) $(pv_value) - 210 - - - false + false true - 1 - false + Text Input + 60 + 495 + 116 + + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:492e - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).RY + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(T).LX - - - - false - 0 - - - false - - - - 0 - - 318 + false + true + false + false + + $(pv_name) $(pv_value) - 300 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4930 - - - - - 10 - true - Ellipse - false - 255 - - true - true - true - false - + true + Text Input + 60 + 495 + 135 + + + + false + false + false - + - - - - Ellipse + false + + + + 3 + 1 + true - - - - false - Default + - 10 - 0 - 0 - + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).SX - 1 - 0 - true - - - - - 186 - $(pv_name) -$(pv_value) - 589 - false - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4931 + false 0.0 - - 0 - 56 - true - Polyline - false - 255 + true true - true + false - - - - + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - + true + Text Input + 60 + 615 + 115 + + + + false + false + false - + - - - - Polyline - true - false - - Default - - 23 - 0 - 0 - - - 1 - 1 - true + false - - 215 - $(pv_name) -$(pv_value) - 645 - - - true - 1 - 39872d87:13e14015f61:4932 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - R - - - - 15 - 0 - - 1 - - - - 0 - - 206 - true - - 670 - - - true - 1 - 39872d87:13e14015f61:4933 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - S - - - - 15 - 0 - - 1 - - - - 0 - - 192 - true - - 574 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4934 - 0.0 - - 0 - 26 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 74 - 0 - 0 - - + 3 1 - 1 - true - - - - - 191 - $(pv_name) -$(pv_value) - 594 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4935 - - - - - 10 - true - Ellipse - false - 255 - - true - true - true - - false - - - - - - - - Ellipse + true - - - - false - Default + - 10 - 0 - 0 - - - 1 - 0 - true - - - - - 266 - $(pv_name) -$(pv_value) - 489 - false - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4936 - 0.0 - - 0 - 1 - true - Polyline false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 87 - 0 - 0 - - - 1 - 1 - true - - - - - 271 - $(pv_name) -$(pv_value) - 601 - - - true - 1 - 39872d87:13e14015f61:4937 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - M0,M2 - - - - 20 - 0 - - 1 - - - - 0 - - 281 - true - - 484 - - - true - 1 - 39872d87:13e14015f61:4938 - false - - 20 - Label - - true - true - false - - true - false - - - - + - Label - true - M1 - - - - 20 - 0 - - 1 - - - + 1 + 18 0 - - 281 - true - - 634 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:494b - 0.0 - - 0 - 38 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true - - - - - 248 - $(pv_name) -$(pv_value) - 255 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4957 - 0.0 - - 0 - 25 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true - - - - - 297 - $(pv_name) -$(pv_value) - 256 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4958 - 0.0 - - 0 - 25 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true - - - - - 297 - $(pv_name) -$(pv_value) - 406 - - - true - true - 1 - false - 39872d87:13e14015f61:495e - false + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).SZ + + false 0.0 - - 14 - Text Update - false + true true false - 1 - true + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - $(P)$(Q)fpSelect.VAL + true + Text Input + 60 + 615 + 155 + + + + false + false + false - + - - - - Text Update - true - ###### - false - 0 - - - - 95 - 0 - - - 1 + false - 1 - - 58 - false - $(pv_name) -$(pv_value) - 581 - - - false - true - true - 39872d87:13e14015f61:495f - - 20 - Menu Button + 3 + 1 + + true + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).SY + + false + 0.0 + true true false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - $(P)$(Q)fpSelect + true + Text Input + 60 + 615 + 135 + + + + false + false + false - + - - - - Menu Button - true - false - - Default - - 95 - 6 - - - - 1 + false - 75 - - $(pv_name) -$(pv_value) - 581 - - - false - true - false - 39872d87:13e14015f61:4960 - - 20 - Menu Button + 3 + 1 + + true + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).RZ + + false + 0.0 + true true false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - + true + Text Input + 60 + 495 + 155 + + + + true + false + false - + - - - - Menu Button - true - false - - Default - - 95 - 6 - - - - 1 + false - 35 - - - table_fixedPoints.opi - - true - - 0 - Fixed points - - - $(pv_name) -$(pv_value) - 581 - - - false - true - false - 39872d87:13e14015f61:4961 - - 15 - Menu Button + 6 + 1 + true + + Default + false + + + + 20 + + Menu Button + $(P)$(T).AUNIT + + true true false + + false + $(pv_name) +$(pv_value) false - + true + Menu Button + 120 + 290 + 345 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 85 - 6 - + + + + 14 + 0 + Label - - 1 - - - - 95 - - - table_setup_NEWPORT_refresh.opi - - true - - 1 - - - - $(pv_name) -$(pv_value) - 586 + + true + true + false + + + false + Angle units + + true + 1 + true + Label + 80 + false + 205 + 348 - \ No newline at end of file + diff --git a/opticsApp/op/opi/table_setup_NEWPORT_refresh.opi b/opticsApp/op/opi/autoconvert/table_setup_NEWPORT_refresh.opi similarity index 69% rename from opticsApp/op/opi/table_setup_NEWPORT_refresh.opi rename to opticsApp/op/opi/autoconvert/table_setup_NEWPORT_refresh.opi index 4f8d1ff..9199d5a 100644 --- a/opticsApp/op/opi/table_setup_NEWPORT_refresh.opi +++ b/opticsApp/op/opi/autoconvert/table_setup_NEWPORT_refresh.opi @@ -1,86 +1,87 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 120 true - 39872d87:13e14015f61:4a11 - 3.1.2.20120830 + table_setup_NEWPORT_refresh + + true + true + false true - 120 - table_setup_NEWPORT_refresh false - false - - - - - - Display - true 700 - - true - 5 - - false - -1 - -1 - - - 25 36 - - false - true - false - 39872d87:13e14015f61:4a12 - - 15 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 85 - 6 - - - - 1 - - - - 95 + 25 + table_setup_NEWPORT.opi true - 1 + 0 + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 15 + + Action Button + 0 + + + + + true + true + false + + + + PRESS AGAIN + false $(pv_name) $(pv_value) + true + Action Button + 85 585 + 95 - \ No newline at end of file + diff --git a/opticsApp/op/opi/table_setup_PNC.opi b/opticsApp/op/opi/autoconvert/table_setup_PNC.opi similarity index 73% rename from opticsApp/op/opi/table_setup_PNC.opi rename to opticsApp/op/opi/autoconvert/table_setup_PNC.opi index 849527c..ad0113f 100644 --- a/opticsApp/op/opi/table_setup_PNC.opi +++ b/opticsApp/op/opi/autoconvert/table_setup_PNC.opi @@ -1,7954 +1,6827 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 500 true - 39872d87:13e14015f61:4a16 - 3.1.2.20120830 + table_setup_PNC + + true + true + false true - 455 - table_setup_PNC false - false - - - - - - Display - true 700 - - true - 5 - - false - -1 - -1 - - - 507 743 - + 507 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 250 + true - 39872d87:13e14015f61:4a71 - - - - - 250 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 200 + 230 + 41 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 200 - 0 - 0 - - - 1 - 0 - true - - - - - 41 - $(pv_name) -$(pv_value) - 230 + false + + + false - - - false - true - 100.0 + 20 + true - 39872d87:13e14015f61:4aa1 - - - - - 20 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle - true - - - - false - - Default - 200 - 0 - 0 - - - 1 - 0 - true + 460 + 241 + + + + + + - - 241 - $(pv_name) -$(pv_value) - 460 - false - - + 0 + 1 + true + false + + Default + + + + + 10 + false true - true - 39872d87:13e14015f61:4a17 - - 10 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 8 - 0 - - false - 1 - - - - - 150 - 125 - + 150 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4a18 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 3 - 0 - 0 - - 1 - 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 5 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4a19 0.0 - - 0 - 3 - true - Polyline - false - 255 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 3 + 5 + 0 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 8 + false + + + + 3 + true 0 - 0 - - - 1 1 - true - - - - - 7 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 8 0 + 7 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 110 + false true - true - 39872d87:13e14015f61:4a2b - - 110 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 98 - 0 - - false - 1 - - - - - 96 - 22 - - true - 1 - 39872d87:13e14015f61:4a2c + 96 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true +X - - - - 20 - 0 - - 1 - - - - 0 - - 90 - true + true + 1 + true + Label + 20 + false 0 + 90 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4a2d - 0.0 - - 0 + + Default + + false + + + 10 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 13 - 0 - 0 - - 1 - 1 - true - - - - - 94 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 13 29 + 94 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4a2e - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 61 + 29 + 99 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 61 - 0 - 0 - - - 1 - 1 - true + false - - 99 - $(pv_name) -$(pv_value) - 29 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4a2f - 0.0 - - 0 + + Default + + false + + + 68 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 1 + 89 + 32 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true + false - - 32 - $(pv_name) -$(pv_value) - 89 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4a30 - 0.0 - - 0 + + Default + + false + + + 15 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 15 - 0 - 0 - - 1 - 1 - true - - - - - 29 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 15 81 + 29 - - true - 1 - 39872d87:13e14015f61:4a31 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true +Z - - - - 20 - 0 - - 1 - - - - 0 - - 0 - true + true + 1 + true + Label + 20 + false 78 + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 11 + false true - true - 39872d87:13e14015f61:4a50 - - 11 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 10 - 0 - - false - 1 - - - - - 41 - 460 - - false - true - 0.0 - - - - 39872d87:13e14015f61:4a51 - - - - - 10 - true - Rectangle - false + 41 + + + false 255 - - true - true - false - - true - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 10 + false + + + + false + 10 + true + + + 0 - 0 - - - 1 1 - true - - - - - 0 + Rectangle + + + + + true + true + false + + $(pv_name) $(pv_value) + true + true + Rectangle + 10 0 - false + 0 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4a52 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 1 + 5 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 5 - $(pv_name) -$(pv_value) - 1 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4a53 - 0.0 - - 0 + + Default + + false + + + 10 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - 1 - 1 - true - - - - - 1 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 1 5 + 1 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 30 + false true - true - 39872d87:13e14015f61:4a5b - - 30 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 700 - 0 - - false - 1 - - - - - 0 - 0 - + 0 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 27 + true - 39872d87:13e14015f61:4a5c - - - - - 27 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 700 + 0 + 0 + + + + false + 255 + true + 20 + 0 + false - - - - Rectangle - true - - - - false - - Default - - 700 - 0 - 0 - - - 1 - 0 - true + false - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4a5d - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 697 - 0 - 0 - - 1 - 1 - true - - - - - 28 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 697 1 + 28 - - true - 1 - 39872d87:13e14015f61:4a5e + + false - + + + + + + + 0 + 1 + true + + + + + + 15 + 1 Label + true true false - true + false - - - - - - - Label - true ($(P)$(T)) - - - - 350 - 0 - - 1 - - - - 1 - - 5 - true + true + 1 + true + Label + 350 + false 350 + 5 - - false - true - 1 - false + + + false false - - 27 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 350 - 3 - - 1 + false + + + + 1 + 27 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4a5f - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).DESC + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(T).DESC - - - - false - 0 - - - false - - - - 0 - - 0 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 350 0 + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 5 + false true - true - 39872d87:13e14015f61:4a60 - - 60 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 215 - 0 - - false - 1 - - - - - 115 - 460 - - false - true - 1 - false - false - - 18 - false - true + true + true + Grouping Container + 15 + 311 + 58 + + + false + 255 + true + 20 + 0 + false - + - Text Input + false + + + + 0 + 1 true - + true + 100.0 - + Default - 60 - 3 + false + + + + 5 + true + 0 + 1 + Polyline + + + + + + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4a61 0.0 - Text Input + true true - false + true - 1 - false - 0 - $(P)$(T).RX - - - - false - 0 - - - false - - - - 0 - - 1 + $(pv_name) $(pv_value) - 35 - - - false + true true - 1 - false - false - - 18 - false - true + Polyline + 7 + 1 + 1 + + + + false + 255 + true + 20 + 0 + false - + - Text Input + false + + + + 0 + 1 true - + true + 100.0 - + Default - 60 - 3 + false + + + + 1 + true + 0 + 1 + Polyline + + + + + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4a62 0.0 - Text Input + true true - false + true - 1 + + $(pv_name) +$(pv_value) false - 0 - $(P)$(T).RY - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 35 - - - false true - 1 - false - false - - 18 - false - true + Polyline + 14 + 2 + 3 + + + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 15 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 5 + 327 + 43 + + + false + 255 + true + 20 + 0 + false - + - Text Input + false + + + + 0 + 1 true - + true + 100.0 - + Default - 60 - 3 + false + + + + 14 + true + 0 + 1 + Polyline + + + + + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4a63 0.0 - Text Input + true true - false + true - 1 - false - 0 - $(P)$(T).SX - - - - false - 0 - - - false - - - - 0 - - 0 + $(pv_name) $(pv_value) - 155 - - - false + false true - 1 - false - false - - 18 - false - true + Polyline + 1 + 3 + 2 + + + + false + 255 + true + 20 + 0 + false - + - Text Input + false + + + + 0 + 1 true - + true + 100.0 - + Default - 60 - 3 + false + + + + 6 + true + 0 + 1 + Polyline + + + + + + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4a64 0.0 - Text Input + true true - false + true - 1 - false - 0 - $(P)$(T).SZ - - - - false - 0 - - - false - - - - 0 - - 40 + $(pv_name) $(pv_value) - 155 - - - false + true true - 1 - false - false - - 18 - false - true + Polyline + 5 + 1 + 1 + + + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 204 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 30 + 200 + 63 + + - + - Text Input + + + + 0 + 1 true - + false - + Default - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4a65 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(T).SY - + - false - 0 - + 203 + false + + true + + Grouping Container - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 155 - - - true - 1 - 39872d87:13e14015f61:4a66 - false - - 20 - Label true true false - true + false - - - - - - - Label - true - Rx' - - - - 20 - 0 - - 1 - - - - 0 - - 0 - true + true + true + Grouping Container + 20 0 + 1 + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 60 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 1 + 10 + 0 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + Lz' + + true + 1 + true + Label + 20 + false + 0 + 60 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 121 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 1 + 10 + 82 + - - true - 1 - 39872d87:13e14015f61:4a67 - false - - 20 - Label - - true - true - false - - true - false + + + false + 255 + true + 20 + 0 + false - + - - - - Label + false + + + + 0 + 1 true - Rz' + true + 100.0 - + Default - 20 - 0 + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 - 1 - - - - 0 - - 40 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:4a68 - false - - 20 - Label true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Polyline + 25 + 4 + 1 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label + false + + + + 0 + 1 true - Ry' + true + 100.0 - + Default - 20 - 0 + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 - 1 - - - - 0 - - 20 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:4a69 - false - - 20 - Label true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Polyline + 25 + 5 + 203 + + + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 57 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 64 + 256 + 168 + + + false - - - - Label - true - Sx' - - - - 20 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 0 - true - - 120 - - - true - 1 - 39872d87:13e14015f61:4a6a - false - - 20 Label + true true false - true + false + +X' + + true + 1 + true + Label + 20 + false + 0 + 43 + + + + false - - - - Label - true - Sz' - - - - 20 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 40 - true - - 120 - - - true - 1 - 39872d87:13e14015f61:4a6b - false - - 20 Label + true true false - true + false - - - - - - + +Z' + + true + 1 + true Label - true - Sy' - - - 20 - 0 - - 1 - - - - 0 - - 20 - true - - 120 + false + 44 + 0 - - false - true - 1 - false - false - - 18 - false - true + + + false + 255 + true + 20 + 0 + false - + - Text Input + false + + + + 0 + 1 true - + true + 100.0 - + Default - 60 - 3 + false + + + + 32 + true + 0 + 1 + Polyline + + + + + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4a6c 0.0 - Text Input + true true - false + true - 1 + + $(pv_name) +$(pv_value) false - 0 - $(P)$(T).RZ - - - + true + Polyline + 1 + 52 + 21 + + + + false + 255 + true + 20 + 0 false - 0 - - - false + + + + false - 0 - - 40 - $(pv_name) -$(pv_value) - 35 - - - - - true - - true - 39872d87:13e14015f61:4a74 - - 5 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 15 - 0 - - false - 1 - - - - - 58 - - 311 - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4a75 - 0.0 - - 0 - 5 - true - Polyline + + Default + false - 255 + + + + 13 + true + 0 + 1 + Polyline + + + + + + + + 0.0 + true true true - - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 13 + 45 + 18 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true + false - - 1 - $(pv_name) -$(pv_value) - 1 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4a76 - 0.0 - - 0 - 1 - true - Polyline + + Default + false - 255 + + + + 10 + true + 0 + 1 + Polyline + + + + + + + + 0.0 + true true true - - - - - false - + + $(pv_name) +$(pv_value) + true + true + Polyline + 13 + 22 + 46 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 14 + false + + + + 1 + true 0 - 0 - - - 1 1 - true - - - - - 3 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 2 + false + true + Polyline + 27 + 25 + 51 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 11 + false true - true - 39872d87:13e14015f61:4a77 - - 15 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 5 - 0 - - false - 1 - - - - - 43 - 327 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4a78 - 0.0 - - 0 - 14 - true - Polyline - false + true + true + Grouping Container + 10 + 400 + 261 + + + false 255 - - true - true - true - - - - - - false - + true + false - - - - Polyline + + + + false + + + + 0 + 1 true - false + + + + 0.0 - Default + Default - 1 + false + + + + false + 10 + true + + + 0 - 0 - - - 1 1 - true - - - - - 2 + Rectangle + + + + + true + true + false + + $(pv_name) $(pv_value) - 3 + true + true + Rectangle + 10 + 0 + 0 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4a79 - 0.0 - - 0 - 6 - true - Polyline + + Default + false - 255 + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 1 + 5 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 5 + false + + + + 10 + true 0 - 0 - - - 1 1 - true - - - - - 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 1 + true + true + Polyline + 1 + 5 + 1 - - - true - - true - 39872d87:13e14015f61:4a7a - - 204 - Grouping Container - - true - true - false - - true - false + + - - - - Grouping Container + + + + 0 + 1 true + false - Default + Default - 30 - 0 - + + + + 39 false - 1 - - - - - 63 + + true + + Grouping Container + + + true + true + false + + + false - 200 - + true + true + Grouping Container + 20 + 386 + 247 + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 5 + false true - true - 39872d87:13e14015f61:4a7d - - 203 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 20 - 0 - - false - 1 - - - - - 1 + true + true + Grouping Container + 15 0 - - false - true + 17 + + + false + 255 + true 20 - true - 100.0 - 39872d87:13e14015f61:4a7e - 0.0 - 0 - 60 - true - Polyline - false - 255 - - true - true - true - - - - - - false - + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 1 + false + + + + 5 + true 0 - 0 - - - 1 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 10 - - - true - 1 - 39872d87:13e14015f61:4a7f - false - - 20 - Label + Polyline + + + + + + + + 0.0 + true true - false + true + + $(pv_name) +$(pv_value) true - false + true + Polyline + 7 + 1 + 1 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label - true - Lz' - - - - 20 - 0 - - 1 + false - 0 - - 60 - true - - 0 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4a80 - 0.0 - - 0 - 121 - true - Polyline + + Default + false - 255 + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - - - - - - - + true Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true - - - - - 82 - $(pv_name) -$(pv_value) - 10 + 14 + 2 + 3 - - false - true + + + false + 255 + true 20 - true - 100.0 - 39872d87:13e14015f61:4a7b - 0.0 - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - + false - - - - Polyline - true - false - - Default - - 25 - 0 - 0 - - - 1 - 1 - true + false - - 1 - $(pv_name) -$(pv_value) - 4 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4a7c - 0.0 - - 0 - 1 - true - Polyline + + Default + false - 255 + + + + 38 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - - false - - - - - - - - Polyline - true - false - - Default - - 25 - 0 - 0 - - - 1 - 1 - true - - - - - 203 + $(pv_name) $(pv_value) - 5 + false + true + Polyline + 1 + 19 + 1 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 53 + false true - true - 39872d87:13e14015f61:4a8c - - 57 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 64 - 0 - - false - 1 - - - - - 168 - 256 - - true - 1 - 39872d87:13e14015f61:4a8d - false - - 14 - Label - - true - true - false - - true - false + true + true + Grouping Container + 20 + 509 + 219 + + + false + 255 + true + 20 + 0 + false - + - - - - Label + false + + + + 0 + 1 true - +X' + true + 100.0 - + Default - 20 - 0 + false + + + + 32 + true + 0 + 1 + Polyline + + + + + + + 0.0 - 1 - - - - 0 - - 43 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:4a8e - false - - 14 - Label true true - false + true - true - false - - - - - - - Label - true - +Z' - - - - 20 - 0 - - 1 - - - - 0 - - 0 - true - - 44 + + $(pv_name) +$(pv_value) + false + true + Polyline + 1 + 8 + 21 - - false - true + + + false + 255 + true 20 - true - 100.0 - 39872d87:13e14015f61:4a8f - 0.0 - 0 - 32 - true - Polyline - false - 255 - - true - true - true - - - - - - false - + false - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true + false - - 21 - $(pv_name) -$(pv_value) - 52 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4a90 - 0.0 - - 0 + + Default + + false + + + 13 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + + 0.0 + true true true - - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 13 + 1 + 18 + + + + false - + - - - - Polyline + + + + 0 + 1 true - false - Default + - 13 - 0 - 0 + + + + 14 + 0 + Label - - 1 - 1 - true - - - - - 18 - $(pv_name) -$(pv_value) - 45 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4a91 - 0.0 - - 0 - 10 - true - Polyline - false - 255 true true - true + false - - - - - + + false + +Y' + true - + 1 + true + Label + 20 + false + 0 + 0 + + + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 11 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 10 + 630 + 261 + + + false + 255 + true + false - - - - Polyline + + + + false + + + + 0 + 1 true - false + + + + 0.0 - Default + Default - 13 + false + + + + false + 10 + true + + + 0 - 0 - - - 1 1 - true - - - - - 46 - $(pv_name) -$(pv_value) - 22 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4a92 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false + Rectangle - - - - - - - Polyline - true - false - - Default - - 27 - 0 - 0 - - 1 - 1 - true - - - - - 51 - $(pv_name) -$(pv_value) - 25 - - - - - true - - true - 39872d87:13e14015f61:4a97 - - 11 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 10 - 0 - - false - 1 - - - - - 261 - - 400 - - false - true - 0.0 - - - - 39872d87:13e14015f61:4a98 - - - - - 10 - true - Rectangle - false - 255 + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 10 + 0 + 0 + + + + false + 255 + true + 20 + 0 + false - - - - Rectangle - true - - - - false - - Default - - 10 - 0 - 0 - - - 1 - 1 - true + false - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4a99 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 9 + 1 + 5 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 5 - $(pv_name) -$(pv_value) - 1 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4a9a - 0.0 - - 0 + + Default + + false + + + 10 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 5 - - - - - true - - true - 39872d87:13e14015f61:4a9c - - 39 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 20 - 0 - - false - 1 - - - - - 247 - - 386 - - - true - - true - 39872d87:13e14015f61:4a9d - - 5 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 15 - 0 - - false - 1 - - - - - 17 - - 0 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4a9e - 0.0 - - 0 - 5 - true - Polyline - false - 255 - - true - true - true - - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 1 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4a9f - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 14 - 0 - 0 - - - 1 - 1 - true - - - - - 3 - $(pv_name) -$(pv_value) - 2 - - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4aa0 0.0 - - 0 - 38 - true - Polyline - false - 255 + true true true - - - - - false - - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true - - - - - 1 + $(pv_name) -$(pv_value) - 19 - - - - - true - - true - 39872d87:13e14015f61:4aa9 - - 53 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 20 - 0 - - false - 1 - - - - - 219 - - 509 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4aaa - 0.0 - - 0 - 32 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true - - - - - 21 - $(pv_name) -$(pv_value) - 8 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4aab - 0.0 - - 0 - 13 - true - Polyline - false - 255 - - true - true - true - - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 13 - 0 - 0 - - - 1 - 1 - true - - - - - 18 - $(pv_name) -$(pv_value) - 1 - - - true - 1 - 39872d87:13e14015f61:4aac - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - +Y' - - - - 20 - 0 - - 1 - - - - 0 - - 0 - true - - 0 - - - - - true - - true - 39872d87:13e14015f61:4aad - - 11 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 10 - 0 - - false - 1 - - - - - 261 - - 630 - - false - true - 0.0 - - - - 39872d87:13e14015f61:4aae - - - - - 10 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 10 - 0 - 0 - - - 1 - 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4aaf - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true - - - - - 5 - $(pv_name) -$(pv_value) - 1 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4ab0 - 0.0 - - 0 - 10 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 5 - - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4a1a - 0.0 - - 69 - true - Polygon - false - 255 - - true - true - true - - - - - - - - - false - - - - - - - - Polygon - true - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 161 - $(pv_name) -$(pv_value) - 77 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4a1b - - - - - 7 - true - Ellipse - false - 255 - - true - true - true - - false - - - - - - - - Ellipse - true - - - - false - - Default - - 7 - 0 - 0 - - - 1 - 0 - true - - - - - 203 - $(pv_name) -$(pv_value) - 84 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4a1c - - - - - 7 - true - Ellipse - false - 255 - - true - true - true - - false - - - - - - - - Ellipse - true - - - - false - - Default - - 7 - 0 - 0 - - - 1 - 0 - true - - - - - 215 - $(pv_name) -$(pv_value) - 104 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4a1d - - - - - 7 - true - Ellipse - false - 255 - - true - true - true - - false - - - - - - - - Ellipse - true - - - - false - - Default - - 7 - 0 - 0 - - - 1 - 0 - true - - - - - 174 - $(pv_name) -$(pv_value) - 117 - false - - - true - 1 - 39872d87:13e14015f61:4a1e - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - (+Y is up) - - - - 120 - 0 - - 1 - - - - 1 - - 316 - true - - 40 - - - false - true - 1 - false - false - - 22 - false - true - - - - Text Input - true - - - - - 90 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4a1f - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(T).YANG - - - - false - 0 - - - false - - - - 0 - - 63 - $(pv_name) -$(pv_value) - 95 - - - true - 1 - 39872d87:13e14015f61:4a20 - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - Table angle - - - - 90 - 0 - - 1 - - - - 1 - - 33 - true - - 95 - - - true - 1 - 39872d87:13e14015f61:4a21 - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - (degrees) - - - - 90 - 0 - - 1 - - - - 1 - - 48 - true - - 95 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4a22 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 82 - 0 - 0 - - - 1 - 1 - true - - - - - 86 - $(pv_name) -$(pv_value) - 98 - - - true - 1 - 39872d87:13e14015f61:4a23 - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - +Z' - - - - 20 - 0 - - 1 - - - - 0 - - 128 - true - - 141 - - - true - 1 - 39872d87:13e14015f61:4a24 - false - - 15 - Label - - true - true - false - - true - false +$(pv_value) + true + true + Polyline + 1 + 5 + 1 + + + + - + - - - - Label - true - +X' - - - - 20 - 0 - - 1 - 0 - - 155 - true - - 36 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4a25 - 0.0 - - 0 - 343 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline + 0 + 1 true - false - Default + Default - 1 - 0 - 0 + + + + + 129 + + true + + Linking Container + table_limits.opi + 2 - - 1 - 1 - true - - - - - 31 - $(pv_name) -$(pv_value) - 196 - - - false - true - 29 - 39872d87:13e14015f61:4a26 - 61 - - 90 - true - Arc - false - 255 true true - true + false - + + + true + Linking Container + 700 + 0 + 371 + + + + false + 255 + true + false - - - - Arc - true - false - - Default - - 90 - 0 - false - 0 - - - 1 - 1 + false - - 151 - $(pv_name) -$(pv_value) - 65 - - - false - true - 20 - true + 0 + 1 + true 100.0 - 39872d87:13e14015f61:4a27 - 0.0 - - 0 - 26 - true - Polyline + + Default + false - 255 - - true - true - true - - - - - - true - - - - - + - Polyline - true - false - - Default - - 48 + 69 + true + + + 0 - 0 - + 0 + Polygon + + + + + + + + - 1 - 1 - true - - - - - 169 - $(pv_name) -$(pv_value) - 63 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4a28 0.0 - - 0 - 66 - true - Polyline - false - 255 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polygon + 64 + 77 + 161 + + + + false + 255 + true + false - - - - Polyline - true - false - - Default - - 22 - 0 - 0 - - - 1 - 1 - true - - - - - 87 - $(pv_name) -$(pv_value) - 120 - - - false - true - 20 - true + + + + false + + + + 0 + 1 + true + + + 100.0 - 39872d87:13e14015f61:4a29 - 0.0 - - 0 - 52 - true - Polyline + + Default + false - 255 + + + + false + 7 + true + + + + 0 + 0 + Ellipse + + + true true true - - - - - true - + + $(pv_name) +$(pv_value) + false + true + Ellipse + 7 + 84 + 203 + + + + false + 255 + true + false - - - - Polyline - true - false - - Default - - 30 - 0 - 0 - - - 1 - 1 - true + + + + false - - 143 - $(pv_name) -$(pv_value) - 111 - - - false - true + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 7 + true - 39872d87:13e14015f61:4a2a - - - - - 7 - true + 0 + 0 Ellipse - false - 255 + + + true true true + + $(pv_name) +$(pv_value) false - + true + Ellipse + 7 + 104 + 215 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 7 + false + + + + false + 7 + true + + + 0 - 0 - - - 1 0 - true - - - - - 191 + Ellipse + + + + + true + true + true + + $(pv_name) $(pv_value) - 113 - false - - + false true - 1 - 39872d87:13e14015f61:4a32 + Ellipse + 7 + 117 + 174 + + + false - - 10 + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 Label + true true false - true + false + (+Y is up) + + true + 1 + true + Label + 120 + false + 40 + 316 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 22 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).YANG + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 90 + 95 + 63 + + + + false - - - - Label + + + + 0 + 1 true - V5.1 - + - 30 - 0 + + + + 15 + 1 + Label - 1 - - - - 0 - - 446 - true - - 0 - - - false - true - true - 39872d87:13e14015f61:4a33 - - 20 - Menu Button - false true true false - false - $(P)$(T).GEOM + + false + Table angle + + true + 1 + true + Label + 90 + false + 95 + 33 + + + + false - + - - - - Menu Button - true - false - - Default - - 100 - 6 - - - - 1 - 311 - - $(pv_name) -$(pv_value) - 540 - - - true - 1 - 39872d87:13e14015f61:4a34 - false - - 20 + 0 + 1 + true + + + + + + + 15 + 1 Label + true true false - true + false + (degrees) + + true + 1 + true + Label + 90 + false + 95 + 48 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label + false + + + + 0 + 1 true - Geometry + true + 100.0 - + Default - 80 - 0 + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 - 1 - - - - 0 - - 311 - true - - 450 - - - true - 1 - 39872d87:13e14015f61:4a35 - false - - 14 - Label true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Polyline + 82 + 98 + 86 + + + + false - - - - Label - true - You're using the wrong setup display - - - - 270 - 0 - - - - true - - - false - - $(P)$(T).GEOM - - - 1 + 0 + 1 + true + + + + + + + 15 0 - - 351 - true - - 425 - - - true - 1 - 39872d87:13e14015f61:4a36 - false - - 14 Label + true true false - true + false + +Z' + + true + 1 + true + Label + 20 + false + 141 + 128 + + + + false - - - - Label - true - This display is for the PNC geometry - - - - 270 - 0 - - - - true - - - false - - $(P)$(T).GEOM - - - 1 + 0 + 1 + true + + + + + + + 15 0 - - 336 - true - - 425 - - - true - 1 - 39872d87:13e14015f61:4a37 - false - - 20 Label + true true false - true + false + +X' + + true + 1 + true + Label + 20 + false + 36 + 155 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label - true - User limits - - - - 110 - 0 - - 1 + false - 0 - - 376 - true - - 5 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4a38 - 0.0 - - 0 - 1 - true - Polyline + + Default + false - 255 + + + + 343 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - - false - + + $(pv_name) +$(pv_value) + true + true + Polyline + 1 + 196 + 31 + + + + false + 255 + true + false - - - - Polyline + false + + + + 0 + 1 true - false + false - Default + Default - 708 + false + + + + 90 0 - 0 - - - 1 1 - true - - - - - 372 + Arc + + + + + true + true + true + + + 61 $(pv_name) $(pv_value) - 1 - - - false + 29 true - 1 - false - false - - 18 - false - true + Arc + 90 + 65 + 151 + + + + false + 255 + true + 20 + 0 + false - + - Text Input + false + + + + 0 + 1 true - + true + 100.0 - + Default - 80 - 3 + false + + + + 26 + true + 0 + 1 + Polyline + + + + + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4a39 0.0 - Text Input + true true - false + true - 6 - false - 0 - $(P)$(T).UHX - - - - false - 0 - - - false - - - - 0 - - 401 + $(pv_name) $(pv_value) - 110 - - - false + true true - 1 - false - false - - 18 - false - true + Polyline + 48 + 63 + 169 + + + + false + 255 + true + 20 + 0 + false - + - Text Input + false + + + + 0 + 1 true - + true + 100.0 - + Default - 80 - 3 + false + + + + 66 + true + 0 + 1 + Polyline + + + + + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4a3a 0.0 - Text Input + true true - false + true - 6 - false - 0 - $(P)$(T).UHY - - - - false - 0 - - - false - - - - 0 - - 401 + $(pv_name) $(pv_value) - 195 - - + false true - 1 - 39872d87:13e14015f61:4a3b - false - - 20 - Label - - true - true - false - - true - false + Polyline + 22 + 120 + 87 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label - true - High - - - - 40 - 0 - - 1 + false - 0 - - 401 - true - - 60 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input + 0 + 1 true - + true + 100.0 - + Default - 80 - 3 + false + + + + 52 + true + 0 + 1 + Polyline + + + + + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4a3c 0.0 - Text Input + true true - false + true - 6 - false - 0 - $(P)$(T).ULX - - - - false - 0 - - - false - - - - 0 - - 421 + $(pv_name) $(pv_value) - 110 - - - false + true true - 1 - false - false - - 18 - false - true + Polyline + 30 + 111 + 143 + + + + false + 255 + true + false - + - Text Input + + + + false + + + + 0 + 1 true - + + + + 100.0 - + Default - 80 - 3 + false + + + + false + 7 + true + + + + 0 + 0 + Ellipse + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4a3d - 0.0 - Text Input + true true - false + true - 6 - false - 0 - $(P)$(T).ULY - - - - false - 0 - - - false - - - - 0 - - 421 + $(pv_name) $(pv_value) - 195 - - + false true - 1 - 39872d87:13e14015f61:4a3e - false - - 20 - Label - - true - true - false - - true - false + Ellipse + 7 + 113 + 191 + + + + true + false + false - + - - - - Label - true - Low - - - - 20 - 0 - - 1 + false - 0 - - 421 - true - - 60 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input + 6 + 1 true - - + Default - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4a3f - 0.0 - Text Input + false + + + + 20 + + Menu Button + $(P)$(T).GEOM + + true true false - 6 - false - 0 - $(P)$(T).ULZ - - - - false - 0 - - - false - - - - 0 - - 421 + + false $(pv_name) $(pv_value) - 280 - - - false + false true - 1 - false + Menu Button + 100 + 540 + 311 + + + false - - 18 - false - true - + - Text Input + + + + 0 + 1 true - - + - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4a40 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)$(T).UHZ - + - false - 0 - - - false - - - - 0 - - 401 - $(pv_name) -$(pv_value) - 280 - - - true - 1 - 39872d87:13e14015f61:4a41 - false - 20 + 0 Label + true true false - true + false + Geometry + + true + 1 + true + Label + 80 + false + 450 + 311 + + + + false - - - - Label - true - X - - - - 80 - 0 - - 1 - 1 - - 381 - true - - 110 - - - true - 1 - 39872d87:13e14015f61:4a42 - false - - 20 + 0 + 1 + true + + + + + + + 14 + 0 Label + + + + true + + + false + + $(P)$(T).GEOM + + true true false - true + false + You're using the wrong setup display + + true + 1 + true + Label + 270 + false + 425 + 351 + + + + false - - - - Label - true - Y - - - - 80 - 0 - - 1 - 1 - - 381 - true - - 195 - - - true - 1 - 39872d87:13e14015f61:4a43 - false - - 20 + 0 + 1 + true + + + + + + + 14 + 0 Label + + + + true + + + false + + $(P)$(T).GEOM + + true true false - true + false + This display is for the PNC geometry + + true + 1 + true + Label + 270 + false + 425 + 336 + + + + false + 255 + true + false - + - - - - Label + + + + false + + + + 0 + 1 true - Z + + + + 100.0 - + Default - 80 - 0 + false + + + + false + 10 + true + + + + 0 + 0 + Ellipse + + - 1 - - - - 1 - - 381 - true - - 280 + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Ellipse + 10 + 460 + 56 - - false - true - 1 - false - false - - 18 - false - true + + + false + 255 + true + false - + - Text Input + + + + false + + + + 0 + 1 true - + + + + 100.0 - + Default - 80 - 3 + false + + + + false + 10 + true + + + + 0 + 0 + Ellipse + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4a44 - 0.0 - Text Input + true true - false + true - 6 - false - 0 - $(P)$(T).ULAX - - - - false - 0 - - - false - - - - 0 - - 421 + $(pv_name) $(pv_value) - 405 - - - false + false true - 1 - false + Ellipse + 10 + 460 + 71 + + + false - - 18 - false - true - + - Text Input + + + + 0 + 1 true - - + - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4a45 - 0.0 - Text Input + + + + 10 + 0 + Label + true true false - 6 - false - 0 - $(P)$(T).UHAX - - - - false - 0 - - - false - - - - 0 - - 401 - $(pv_name) -$(pv_value) - 405 - - - false - true + + false + PIVOT POINTS + + true 1 - false + true + Label + 80 + false + 480 + 56 + + + false - - 18 - false - true - + - Text Input + + + + 0 + 1 true - - + - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4a46 - 0.0 - Text Input + + + + 10 + 0 + Label + true true false - 6 - false - 0 - $(P)$(T).ULAY - - - - false - 0 - - - false - - - - 0 - - 421 - $(pv_name) -$(pv_value) - 490 - - - false - true + + false + LOCAL ORIGIN + + true 1 - false + true + Label + 80 + false + 480 + 41 + + + false - - 18 - false - true - + - Text Input + + + + 0 + 1 true - - + - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4a47 - 0.0 - Text Input + + + + 10 + 0 + Label + true true false - 6 - false - 0 - $(P)$(T).UHAY - - - - false - 0 - - - false - - - - 0 - - 401 - $(pv_name) -$(pv_value) - 490 + + false + 'FIXED' POINT + + true + 1 + true + Label + 80 + false + 480 + 71 - - false - true - 1 - false - false - - 18 - false - true + + + false + 255 + true + 20 + 0 + false - + - Text Input + false + + + + 0 + 1 true - + true + 100.0 - + Default - 80 - 3 + false + + + + 50 + true + 0 + 1 + Polyline + + + + + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4a48 0.0 - Text Input + true true - false + true - 6 - false - 0 - $(P)$(T).ULAZ - - - - false - 0 - - - false - - - - 0 - - 421 + $(pv_name) $(pv_value) - 575 - - - false + false true - 1 - false - false - - 18 - false - true + Polyline + 1 + 111 + 243 + + + + false + 255 + true + 20 + 0 + false - + - Text Input + false + + + + 0 + 1 true - + true + 100.0 - + Default - 80 - 3 + false + + + + 12 + true + 0 + 1 + Polyline + + + + + + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4a49 0.0 - Text Input + true true - false + true - 6 - false - 0 - $(P)$(T).UHAZ - - - - false - 0 - - - false - - - - 0 - - 401 + $(pv_name) $(pv_value) - 575 - - + true true - 1 - 39872d87:13e14015f61:4a4a + Polyline + 12 + 105 + 242 + + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - AX - - - - 80 - 0 - - 1 - 1 - - 381 - true - - 405 - - - true - 1 - 39872d87:13e14015f61:4a4b - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label + 0 + 1 true - AY - + - 80 - 0 - - 1 - - - + + + + 14 1 - - 381 - true - - 490 - - - true - 1 - 39872d87:13e14015f61:4a4c - false - - 20 Label + true true false - true + false - - - - - - - Label - true - AZ - - - - 80 - 0 - - 1 - - - - 1 - - 381 - true + BEAM - 575 - - - true - true + true 1 - false - 39872d87:13e14015f61:4a4d + true + Label + 30 + false + 97 + 226 + + + + false false - 0.0 - - 15 - Text Update + false + + + + false + + + + 3 + 1 + + true + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).RX + + false + 0.0 + true true false - 1 - true + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - $(P)$(T).AEGU + true + Text Input + 60 + 495 + 116 + + + + false + false + false - + - - - - Text Update + false + + + + 3 + 1 + true - ###### - false - 0 - + - 115 - 0 - + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).RY - 1 - - - - 1 - - 441 - false - $(pv_name) -$(pv_value) - 475 - - - true - true - 1 - false - 39872d87:13e14015f61:4a4e - false + false 0.0 - - 15 - Text Update - false + true true false - 1 - true + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - $(P)$(T).LEGU + true + Text Input + 60 + 495 + 135 + + + + false + false + false - + - - - - Text Update - true - ###### - false - 0 - - - - 115 - 0 - - - 1 + false - 1 - - 441 - false - $(pv_name) -$(pv_value) - 175 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4a4f - - - - - 10 - true - Ellipse + 3 + 1 + + true + + + false - 255 + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).SX + + false + 0.0 + true true - true + false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - + true + Text Input + 60 + 615 + 115 + + + + false + false + false - + - - - - Ellipse - true - - - - false - - Default - - 10 - 0 - 0 - - - 1 - 0 - true + false - - 56 - $(pv_name) -$(pv_value) - 460 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4a54 - - - - - 10 - true - Ellipse + 3 + 1 + + true + + + false - 255 + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).SZ + + false + 0.0 + true true - true + false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - + true + Text Input + 60 + 615 + 155 + + + + false + false + false - + - - - - Ellipse + false + + + + 3 + 1 + true - - - - false - Default + - 10 - 0 - 0 - + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).SY - 1 - 0 - true - - - - - 71 - $(pv_name) -$(pv_value) - 460 - false - - - true - 1 - 39872d87:13e14015f61:4a55 - false - - 10 - Label + false + 0.0 + true true false - true - false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 615 + 135 + + + + false - - - - Label - true - PIVOT POINTS - - - - 80 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 0 - - 56 - true - - 480 - - - true - 1 - 39872d87:13e14015f61:4a56 - false - - 10 Label + true true false - true + false + Rx' + + true + 1 + true + Label + 20 + false + 460 + 115 + + + + false - - - - Label - true - LOCAL ORIGIN - - - - 80 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 0 - - 41 - true - - 480 - - - true - 1 - 39872d87:13e14015f61:4a57 - false - - 10 Label + true true false - true + false + Rz' + + true + 1 + true + Label + 20 + false + 460 + 155 + + + + false - - - - Label - true - 'FIXED' POINT - - - - 80 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 0 - - 71 - true - - 480 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4a58 - 0.0 - - 0 - 50 - true - Polyline - false - 255 + Label + true true - true + false - - - - - false - + + false + Ry' + + true + 1 + true + Label + 20 + false + 460 + 135 + + + + false - + - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true - - - - 243 - $(pv_name) -$(pv_value) - 111 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4a59 - 0.0 - - 0 - 12 - true - Polyline - false - 255 + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + true true - true + false - - - - - + + false + Sx' + true - + 1 + true + Label + 20 + false + 580 + 115 + + + + false - + - - - - Polyline - true - false - - Default - - 12 - 0 - 0 - - - 1 - 1 - true - - 242 - $(pv_name) -$(pv_value) - 105 - - - true - 1 - 39872d87:13e14015f61:4a5a - false - - 14 + 0 + 1 + true + + + + + + + 20 + 0 Label + true true false - true + false + Sz' + + true + 1 + true + Label + 20 + false + 580 + 155 + + + + false - - - - Label + + + + 0 + 1 true - BEAM - + - 30 - 0 + + + + 20 + 0 + Label - 1 - - - - 1 - - 226 - true + + true + true + false + + + false + Sy' - 97 - - - true - true + true 1 - false - 39872d87:13e14015f61:4a6d + true + Label + 20 + false + 580 + 135 + + + + false false - 0.0 - - 14 - Text Update + false + + + + false + + + + 3 + 1 + + true + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).RZ + + false + 0.0 + true true false - 1 - true + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - $(P)$(Q)fpSelect.VAL + true + Text Input + 60 + 495 + 155 + + + + false + false + false - + - - - - Text Update - true - ###### - false - 0 - - - - 95 - 0 - - - 1 + true - 1 - - 58 - false - $(pv_name) -$(pv_value) - 580 - - - false - true - true - 39872d87:13e14015f61:4a6e - - 20 - Menu Button + 0 + 1 + true + + + false + + + + 1 + 14 + 1 + Text Update + 0 + true + $(P)$(Q)fpSelect.VAL + + 0.0 + true true false + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(Q)fpSelect + 1 + true + Text Update + 95 + false + 580 + 58 + + + + true + false + false - + - - - - Menu Button - true - false - - Default - - 95 - 6 - - - - 1 + false - 75 - - $(pv_name) -$(pv_value) - 580 - - - false - true - false - 39872d87:13e14015f61:4a6f - + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + $(P)$(Q)fpSelect + + true true false + + false + $(pv_name) +$(pv_value) false - - - - - - - + true Menu Button - true - false - - Default - 95 - 6 - - - - 1 - - - - 35 + 580 + 75 + + table_fixedPoints.opi true - 0 + 1 Fixed points - $(pv_name) -$(pv_value) - 580 - - + false + false + + + false - true - false - 39872d87:13e14015f61:4a70 - - 15 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 20 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 85 - 6 - - - - 1 - - - - 95 + + + Fixed points + false + $(pv_name) +$(pv_value) + true + Action Button + 95 + 580 + 35 + + table_setup_PNC_refresh.opi true - 1 + 0 - $(pv_name) -$(pv_value) - 585 - - + false + false + + + false - true - 100.0 - - - - 39872d87:13e14015f61:4a72 - - - - - 10 - true - Ellipse + + + + 0 + 1 + true + + Default + false - 255 + + + + 15 + + Action Button + 0 + + + true true - true + false - false - + + + REFRESH MENU + false + $(pv_name) +$(pv_value) + true + Action Button + 85 + 585 + 95 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 10 + true + + + 0 - 0 - - - 1 0 - true - - - - - 56 + Ellipse + + + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Ellipse + 10 325 - false + 56 - - true - 1 - 39872d87:13e14015f61:4a73 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true M2 - - - - 20 - 0 - - 1 - - - - 0 - - 71 - true + true + 1 + true + Label + 20 + false 320 + 71 - - false - true - 1 - false + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4a81 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).LZ + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(T).LZ - - - - false - 0 - - - false - - - - 0 - - 126 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 235 + 126 - - true - 1 - 39872d87:13e14015f61:4a82 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true Lx' - - - - 20 - 0 - - 1 - - - - 0 - - 301 - true + true + 1 + true + Label + 20 + false 319 + 301 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4a83 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 62 + 345 + 311 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 62 - 0 - 0 - - - 1 - 1 - true + false - - 311 - $(pv_name) -$(pv_value) - 345 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4a84 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 59 - 0 - 0 - - 1 - 1 - true - - - - - 311 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 257 - - - false + false true - 1 - false + Polyline + 59 + 257 + 311 + + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4a85 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).LX + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(T).LX - - - - false - 0 - - - false - - - - 0 - - 318 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 300 + 318 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4a86 - 0.0 - - 0 + + Default + + false + + + 25 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 1 + 256 + 297 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true + false - - 297 - $(pv_name) -$(pv_value) - 256 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4a87 - 0.0 - - 0 + + Default + + false + + + 25 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - 1 - 1 - true - - - - - 297 - $(pv_name) -$(pv_value) - 406 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4a88 - - - - - 10 - true - Ellipse - false - 255 + 0.0 + true true true + + $(pv_name) +$(pv_value) false - + true + Polyline + 1 + 406 + 297 + + + + false + 255 + true + false - - - - Ellipse - true - + - - false - - Default - - 10 - 0 - 0 - - - 1 - 0 - true - - - - - 261 - $(pv_name) -$(pv_value) - 250 - false - - + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 10 + true - 39872d87:13e14015f61:4a89 - - - - - 10 - true + 0 + 0 Ellipse - false - 255 + + + true true true + + $(pv_name) +$(pv_value) false - + true + Ellipse + 10 + 250 + 261 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 10 + true + + + 0 - 0 - - - 1 0 - true - - - - - 128 + Ellipse + + + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Ellipse + 10 345 - false + 128 - - true - 1 - 39872d87:13e14015f61:4a8a + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + M1 + + true + 1 + true + Label + 20 + false + 264 + 250 + + + + false - - - - Label - true - M1 - - - - 20 - 0 - - 1 - 0 - - 250 - true - - 264 - - - true - 1 - 39872d87:13e14015f61:4a8b - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true M0 - - - - 20 - 0 - - 1 - - - - 0 - - 243 - true + true + 1 + true + Label + 20 + false 378 + 243 - - false - true - 100.0 - - - - 39872d87:13e14015f61:4a93 - - - - - 10 - true - Ellipse - false + + + false 255 - - true - true - true - - false - + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 10 + true + + + 0 - 0 - - - 1 0 - true - - - - - 261 + Ellipse + + + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Ellipse + 10 400 - false + 261 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4a94 - 0.0 - - 0 + + Default + + false + + + 23 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 24 + 406 + 267 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 24 - 0 - 0 - - - 1 - 1 - true + false - - 267 - $(pv_name) -$(pv_value) - 406 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4a95 - 0.0 - - 0 + + Default + + false + + + 158 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 80 - 0 - 0 - - 1 - 1 - true - - - - - 132 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 80 350 + 132 - - true - 1 - 39872d87:13e14015f61:4a96 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + S + + true + 1 + true + Label + 15 + false + 360 + 121 + + + + false - - - - Label - true - S - - - - 15 - 0 - - 1 - 0 - - 121 - true - - 360 - - - true - 1 - 39872d87:13e14015f61:4a9b - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true R - - - - 15 - 0 - - 1 - - - - 0 - - 294 - true + true + 1 + true + Label + 15 + false 425 + 294 - - false - true - 100.0 - - - - 39872d87:13e14015f61:4aa2 - - - - - 10 - true - Ellipse - false + + + false 255 - - true - true - true - - false - + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 - 0 - 0 - - - 1 - 0 - true - - - - - 261 - $(pv_name) -$(pv_value) - 480 + false + + + false - - - false - true - 100.0 + 10 + true - 39872d87:13e14015f61:4aa3 - - - - - 10 - true + 0 + 0 Ellipse - false - 255 + + + true true true + + $(pv_name) +$(pv_value) false - + true + Ellipse + 10 + 480 + 261 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 - 0 - 0 - - - 1 - 0 - true - - - - - 261 - $(pv_name) -$(pv_value) - 630 + false + + + false - - - false - true - 100.0 + 10 + true - 39872d87:13e14015f61:4aa4 - - - - - 10 - true + 0 + 0 Ellipse - false - 255 + + + true true true + + $(pv_name) +$(pv_value) false - + true + Ellipse + 10 + 630 + 261 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 10 + true + + + 0 - 0 - - - 1 0 - true - - - - - 261 + Ellipse + + + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Ellipse + 10 555 - false + 261 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4aa5 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 87 - 0 - 0 - - 1 - 1 - true - - - - - 266 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 87 592 + 266 - - true - 1 - 39872d87:13e14015f61:4aa6 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + M1 + + true + 1 + true + Label + 20 + false + 475 + 276 + + + + false - - - - Label - true - M1 - - - - 20 - 0 - - 1 - 0 - - 276 - true - - 475 - - - true - 1 - 39872d87:13e14015f61:4aa7 - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + M0 + + true + 1 + true + Label + 20 + false + 625 + 276 + + + + false - - - - Label - true - M0 - - - - 20 - 0 - - 1 - 0 - - 276 - true - - 625 - - - true - 1 - 39872d87:13e14015f61:4aa8 - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true M2 - - - - 20 - 0 - - 1 - - - - 0 - - 276 - true + true + 1 + true + Label + 20 + false 550 + 276 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4ab1 - 0.0 - - 0 + + Default + + false + + + 27 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 23 - 0 - 0 - - 1 - 1 - true - - - - - 240 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 23 636 + 240 - - true - 1 - 39872d87:13e14015f61:4ab2 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + R + + true + 1 + true + Label + 15 + false + 661 + 231 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label - true - R - - - - 15 - 0 - - 1 + false - 0 - - 231 - true - - 661 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4ab3 - 0.0 - - 0 + + Default + + false + + + 51 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 74 - 0 - 0 - - 1 - 1 - true - - - - - 191 - $(pv_name) -$(pv_value) - 585 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4ab4 - - - - - 10 - true - Ellipse - false - 255 + 0.0 + true true true + + $(pv_name) +$(pv_value) false - + true + Polyline + 74 + 585 + 191 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 10 + true + + + 0 - 0 - - - 1 0 - true - - - - - 186 + Ellipse + + + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Ellipse + 10 580 - false + 186 - - true - 1 - 39872d87:13e14015f61:4ab5 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + S + + true + 1 + true + Label + 15 + false + 565 + 192 + + + + true + false + false - + - - - - Label + false + + + + 6 + 1 true - S - + Default - 15 - 0 + false + + + + 20 + + Menu Button + $(P)$(T).AUNIT + - 1 + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 120 + 290 + 345 + + + + false + + + + 0 + 1 + true + + + + + + + 14 0 - - 192 - true + Label + + + true + true + false + + + false + Angle units - 565 + true + 1 + true + Label + 80 + false + 205 + 348 - \ No newline at end of file + diff --git a/opticsApp/op/opi/table_setup_PNC_refresh.opi b/opticsApp/op/opi/autoconvert/table_setup_PNC_refresh.opi similarity index 69% rename from opticsApp/op/opi/table_setup_PNC_refresh.opi rename to opticsApp/op/opi/autoconvert/table_setup_PNC_refresh.opi index 2ed5853..ee7b280 100644 --- a/opticsApp/op/opi/table_setup_PNC_refresh.opi +++ b/opticsApp/op/opi/autoconvert/table_setup_PNC_refresh.opi @@ -1,86 +1,87 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 120 true - 39872d87:13e14015f61:4b57 - 3.1.2.20120830 + table_setup_PNC_refresh + + true + true + false true - 120 - table_setup_PNC_refresh false - false - - - - - - Display - true 700 - - true - 5 - - false - -1 - -1 - - - 25 36 - - false - true - false - 39872d87:13e14015f61:4b58 - - 15 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 85 - 6 - - - - 1 - - - - 95 + 25 + table_setup_PNC.opi true - 1 + 0 + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 15 + + Action Button + 0 + + + + + true + true + false + + + + PRESS AGAIN + false $(pv_name) $(pv_value) + true + Action Button + 85 585 + 95 - \ No newline at end of file + diff --git a/opticsApp/op/opi/table_setup_GEOCARS.opi b/opticsApp/op/opi/autoconvert/table_setup_SRI.opi similarity index 73% rename from opticsApp/op/opi/table_setup_GEOCARS.opi rename to opticsApp/op/opi/autoconvert/table_setup_SRI.opi index 9f5aefe..bb5a671 100644 --- a/opticsApp/op/opi/table_setup_GEOCARS.opi +++ b/opticsApp/op/opi/autoconvert/table_setup_SRI.opi @@ -1,7801 +1,6867 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 500 true - 39872d87:13e14015f61:4790 - 3.1.2.20120830 + table_setup_SRI + + true + true + false true - 455 - table_setup_GEOCARS false - false - - - - - - Display - true 700 - - true - 5 - - false - -1 - -1 - - - 25 - 36 - + 723 + 30 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 20 + true - 39872d87:13e14015f61:47cc - - - - - 20 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 200 + 469 + 241 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 200 - 0 - 0 - - - 1 - 0 - true - - - - - 241 - $(pv_name) -$(pv_value) - 469 + false + + + false - - - false - true - 100.0 + 250 + true - 39872d87:13e14015f61:47d6 - - - - - 250 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle - true - - - - false - - Default - 200 - 0 - 0 - - - 1 - 0 - true + 230 + 41 + + + + + + - - 41 - $(pv_name) -$(pv_value) - 230 - false - - + 0 + 1 + true + false + + Default + + + + + 10 + false true - true - 39872d87:13e14015f61:4791 - - 10 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 8 - 0 - - false - 1 - - - - - 150 - 125 - + 150 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4792 - 0.0 - - 0 + + Default + + false + + + 7 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true - - - - - - - Polyline - true - false - - Default - - 3 - 0 - 0 - - 1 - 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 5 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4793 0.0 - - 0 - 3 - true - Polyline - false - 255 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 3 + 5 + 0 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 8 + false + + + + 3 + true 0 - 0 - - - 1 1 - true - - - - - 7 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + true + true + Polyline + 8 0 + 7 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 20 + false true - true - 39872d87:13e14015f61:47a8 - - 110 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 98 - 0 - - false - 1 - - - - - 96 - 22 - - true - 1 - 39872d87:13e14015f61:47a9 + true + true + Grouping Container + 170 + 484 + 276 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + M0 + + true + 1 + true + Label + 20 + false + 0 + 0 + + + + false - - - - Label - true - +X - - - - 20 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 0 - - 90 - true - - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:47aa - 0.0 - - 0 - 10 - true - Polyline - false - 255 + Label + true true - true + false - - - - - + + false + M1 + true - + 1 + true + Label + 20 + false + 150 + 0 + + + + false - + - - - - Polyline + + + + 0 + 1 true - false - Default + - 13 - 0 - 0 + + + + 20 + 0 + Label - - 1 - 1 - true - - - - - 94 - $(pv_name) -$(pv_value) - 29 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:47ab - 0.0 - - 0 - 1 - true - Polyline - false - 255 true true - true + false - - - - - false - + + false + M2 + + true + 1 + true + Label + 20 + false + 75 + 0 + + + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 110 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 98 + 22 + 96 + + + false - + - - - - Polyline + + + + 0 + 1 true - false - Default + - 61 - 0 - 0 + + + + 20 + 0 + Label - - 1 - 1 - true - - - - - 99 - $(pv_name) -$(pv_value) - 29 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:47ac - 0.0 - - 0 - 68 - true - Polyline - false - 255 true true - true + false - - - - - false - + + false + +X + + true + 1 + true + Label + 20 + false + 0 + 90 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true + false - - 32 - $(pv_name) -$(pv_value) - 89 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:47ad - 0.0 - - 0 - 15 - true - Polyline + + Default + false - 255 + + + + 10 + true + 0 + 1 + Polyline + + + + + + + + 0.0 + true true true - - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 13 + 29 + 94 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 15 - 0 - 0 - - - 1 - 1 - true + false - - 29 + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 81 - - + false true - 1 - 39872d87:13e14015f61:47ae - false - - 20 - Label + Polyline + 61 + 29 + 99 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 68 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Polyline + 1 + 89 + 32 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label + false + + + + 0 + 1 true - +Z + true + 100.0 - + Default - 20 - 0 + false + + + + 15 + true + 0 + 1 + Polyline + + + + + + + + 0.0 - 1 + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 15 + 81 + 29 + + + + false + + + + 0 + 1 + true + + + + + + + 20 0 - - 0 - true + Label + + + true + true + false + + + false + +Z + true + 1 + true + Label + 20 + false 78 + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 53 + false true - true - 39872d87:13e14015f61:47d2 - - 11 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 10 - 0 - - false - 1 - - - - - 261 - 640 - - false - true - 0.0 - - - - 39872d87:13e14015f61:47d3 - - - - - 10 - true - Rectangle - false + true + true + Grouping Container + 20 + 518 + 219 + + + false 255 - - true - true - false - - true - + true + 20 + 0 + false - - - - Rectangle - true - - - - false - - Default - - 10 - 0 - 0 - - - 1 - 1 - true + false - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:47d4 - 0.0 - - 0 - 1 - true - Polyline + + Default + false - 255 + + + + 32 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - - true - + + $(pv_name) +$(pv_value) + false + true + Polyline + 1 + 8 + 21 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 5 - $(pv_name) -$(pv_value) - 1 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:47d5 - 0.0 - - 0 - 10 - true - Polyline + + Default + false - 255 + + + + 13 + true + 0 + 1 + Polyline + + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 13 + 1 + 18 + + + + false - + - - - - Polyline + + + + 0 + 1 true - false - Default + - 1 - 0 - 0 + + + + 14 + 0 + Label - - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 5 + + true + true + false + + + false + +Y' + + true + 1 + true + Label + 20 + false + 0 + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 5 + false true - true - 39872d87:13e14015f61:47de - - 15 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 5 - 0 - - false - 1 - - - - - 248 - 252 - - false - true + true + true + Grouping Container + 15 + 236 + 263 + + + false + 255 + true 20 - true - 100.0 - 39872d87:13e14015f61:47df - 0.0 - 0 - 14 - true - Polyline - false - 255 - - true - true - true - - - - - - false - + false - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true + false - - 2 - $(pv_name) -$(pv_value) - 3 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:47e0 - 0.0 - - 0 - 6 - true - Polyline + + Default + false - 255 + + + + 5 + true + 0 + 1 + Polyline + + + + + + + + 0.0 + true true true - - - - - + + $(pv_name) +$(pv_value) true - + true + Polyline + 7 + 1 + 1 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 5 + false + + + + 1 + true 0 - 0 - - - 1 1 - true - - - - - 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 1 + false + true + Polyline + 14 + 2 + 3 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 5 + false true - true - 39872d87:13e14015f61:47e1 - - 5 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 15 - 0 - - false - 1 - - - - - 263 - - 238 - + 311 + 58 + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:47e2 - 0.0 - - 0 + + Default + + false + + + 5 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - true + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 7 + 1 + 1 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 7 + false + + + + 1 + true 0 - 0 - - - 1 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 1 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:47e3 - 0.0 - - 0 - 1 - true Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 14 - 0 - 0 - - 1 - 1 - true - - - - - 3 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 14 2 + 3 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 15 + false true - true - 39872d87:13e14015f61:47e4 - - 5 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 15 - 0 - - false - 1 - - - - - 163 - 387 - - false - true + true + true + Grouping Container + 5 + 327 + 43 + + + false + 255 + true 20 - true - 100.0 - 39872d87:13e14015f61:47e5 - 0.0 - 0 - 5 - true - Polyline - false - 255 - - true - true - true - - - - - - - true - + false - - - - Polyline - true - false - - Default - - 7 - 0 - 0 - - - 1 - 1 - true + false - - 1 - $(pv_name) -$(pv_value) - 1 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:47e6 - 0.0 - - 0 - 1 - true - Polyline + + Default + false - 255 + + + + 14 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 1 + 3 + 2 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 14 + false + + + + 6 + true 0 - 0 - - - 1 1 - true - - - - - 3 - $(pv_name) -$(pv_value) - 2 - - - - - true - - true - 39872d87:13e14015f61:47e9 - - 11 - Grouping Container - - true - true - false - - true - false + Polyline + + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 5 + 1 + 1 + + + + - - - - Grouping Container + + + + 0 + 1 true + false - Default + Default - 10 - 0 - + + + + 57 false - 1 - - - - - 262 + + true + + Grouping Container + + + true + true + false + + + false - 401 - - false - true - 0.0 - - - - 39872d87:13e14015f61:47ea - + true + true + Grouping Container + 64 + 256 + 168 + + + false + - - - 10 - true - Rectangle - false - 255 + + + + + 0 + 1 + true + + + + + + + 14 + 0 + Label + true true false + + false + +X' + true - + 1 + true + Label + 20 + false + 0 + 43 + + + + false - + - - - - Rectangle + + + + 0 + 1 true - - - - false - Default + - 10 - 0 - 0 + + + + 14 + 0 + Label - - 1 - 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:47eb - 0.0 - - 0 - 1 - true - Polyline - false - 255 true true - true + false - - - - + + false + +Z' + true - + 1 + true + Label + 20 + false + 44 + 0 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 9 - 0 - 0 - - - 1 - 1 - true + false - - 5 - $(pv_name) -$(pv_value) - 1 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:47ec - 0.0 - - 0 - 10 - true - Polyline + + Default + false - 255 + + + + 32 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - - true - - - - - - - + + $(pv_name) +$(pv_value) + false + true Polyline - true + 1 + 52 + 21 + + + + false + 255 + true + 20 + 0 false + + + + false + + + + 0 + 1 + true + true + 100.0 - Default + Default - 1 + false + + + + 13 + true 0 - 0 - + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 13 + 45 + 18 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 1 - 1 + true + true + 100.0 + + Default + + false + + + + 10 true + 0 + 1 + Polyline + + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + true + true + Polyline + 13 + 22 + 46 + + + + false + 255 + true + 20 + 0 + false + + + + false - - 1 + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 5 + false + true + Polyline + 27 + 25 + 51 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 204 + false true - true - 39872d87:13e14015f61:47fb - - 40 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 100 - 0 - - false - 1 - - - - - 41 - 460 - + true + true + Grouping Container + 30 + 200 + 63 + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 203 + false true - true - 39872d87:13e14015f61:47fd - - 11 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 10 - 0 - - false - 1 - - - - - 0 + true + true + Grouping Container + 20 0 - - false - true - 0.0 - - - - 39872d87:13e14015f61:47fe - - - - - 10 - true - Rectangle - false + 1 + + + false 255 - - true - true - false - - true - + true + 20 + 0 + false - - - - Rectangle - true - - - - false - - Default - - 10 - 0 - 0 - - - 1 - 1 - true + false - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:47ff - 0.0 - - 0 - 1 - true - Polyline + + Default + false - 255 + + + + 60 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - - true - + + $(pv_name) +$(pv_value) + false + true + Polyline + 1 + 10 + 0 + + + + false - + - - - - Polyline + + + + 0 + 1 true - false - Default + - 9 - 0 - 0 + + + + 20 + 0 + Label - - 1 - 1 - true - - - - - 5 - $(pv_name) -$(pv_value) - 1 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4800 - 0.0 - - 0 - 10 - true - Polyline - false - 255 true true - true + false - - - - + + false + Lz' + true - + 1 + true + Label + 20 + false + 0 + 60 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 1 + false + + + + 121 + true 0 - 0 - - - 1 1 - true - - - - - 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 5 + false + true + Polyline + 1 + 10 + 82 - + + + false + 255 + true + 20 + 0 + false + + + false - true + + + + 0 + 1 + true + true 100.0 - - - - 39872d87:13e14015f61:47fc - - - - - 10 - true - Ellipse + + Default + false - 255 + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true + + $(pv_name) +$(pv_value) false - + true + Polyline + 25 + 4 + 1 + + + + false + 255 + true + 20 + 0 + false - - - - Ellipse + false + + + + 0 + 1 true - - - - false + true + 100.0 - Default + Default - 10 + false + + + + 1 + true 0 - 0 - - - 1 - 0 - true - - - - - 15 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4801 - - - - - 10 - true - Ellipse - false - 255 + 1 + Polyline + + + + + + + 0.0 + true true true + + $(pv_name) +$(pv_value) false - + true + Polyline + 25 + 5 + 203 + + + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 11 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 10 + 639 + 261 + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 10 - 0 - 0 - - - 1 - 0 - true - - - - - 30 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - true - 1 - 39872d87:13e14015f61:4802 - false - 10 - Label + true + + + + 0 + 1 + Rectangle + + + true true false + + $(pv_name) +$(pv_value) true - false + true + Rectangle + 10 + 0 + 0 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label + false + + + + 0 + 1 true - PIVOT POINTS + true + 100.0 - + Default - 80 - 0 + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 - 1 - - - - 0 - - 15 - true - - 20 - - - true - 1 - 39872d87:13e14015f61:4803 - false - - 10 - Label true true - false + true + + $(pv_name) +$(pv_value) true - false + true + Polyline + 9 + 1 + 5 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label - true - LOCAL ORIGIN - - - - 80 - 0 - - 1 + false - 0 - - 0 - true - - 20 - - - true - 1 - 39872d87:13e14015f61:4804 - false - + 0 + 1 + true + true + 100.0 + + Default + + false + + + 10 - Label + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true - false + true - true - false - - - - - - - Label - true - 'FIXED' POINT - - - - 80 - 0 - - 1 - - - - 0 - - 30 - true - - 20 + + $(pv_name) +$(pv_value) + true + true + Polyline + 1 + 5 + 1 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 11 + false true - true - 39872d87:13e14015f61:480a - - 26 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 2 - 0 - - false - 1 - - - - - 296 - 255 - - true - 1 - 39872d87:13e14015f61:480b - false - - 20 - Label + true + true + Grouping Container + 10 + 460 + 41 + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 10 + true + + + + 0 + 1 + Rectangle + + + true true false + + $(pv_name) +$(pv_value) true - false + true + Rectangle + 10 + 0 + 0 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label - true - Lx' - - - - 20 - 0 - - 1 + false - 0 - - 5 - true - - 64 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:480c - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - - false - + + $(pv_name) +$(pv_value) + true + true + Polyline + 9 + 1 + 5 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 62 - 0 - 0 - - - 1 - 1 - true + false - - 15 - $(pv_name) -$(pv_value) - 90 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:480d - 0.0 - - 0 - 1 - true - Polyline + + Default + false - 255 + + + + 10 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - - false - + + $(pv_name) +$(pv_value) + true + true + Polyline + 1 + 5 + 1 + + + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 11 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 10 + 400 + 261 + + + false + 255 + true + false - - - - Polyline + + + + false + + + + 0 + 1 true - false + + + + 0.0 - Default + Default - 59 + false + + + + false + 10 + true + + + 0 - 0 - - - 1 1 - true - - - - - 15 + Rectangle + + + + + true + true + false + + $(pv_name) $(pv_value) - 2 - - - false + true true - 1 - false - false - - 18 - false - true + Rectangle + 10 + 0 + 0 + + + + false + 255 + true + 20 + 0 + false - + - Text Input + false + + + + 0 + 1 true - + true + 100.0 - + Default - 60 - 3 + false + + + + 1 + true + 0 + 1 + Polyline + + + + + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:480e 0.0 - Text Input + true true - false + true - 1 - false - 0 - $(P)$(T).LX - - - + + $(pv_name) +$(pv_value) + true + true + Polyline + 9 + 1 + 5 + + + + false + 255 + true + 20 + 0 false - 0 - - - false + + + + false - 0 - - 22 + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 10 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 45 + true + true + Polyline + 1 + 5 + 1 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 30 + false true - true - 39872d87:13e14015f61:4810 - - 57 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - - 64 - 0 - - false - 1 - - - - - 196 - - 310 - - true - 1 - 39872d87:13e14015f61:4811 - false - - 14 - Label - - true - true - false - - true - false + 700 + 0 + 0 + + + false + 255 + true + false - + - - - - Label - true - +X' - - - - 20 - 0 - - 1 + + + + false - 0 - - 43 - true - - 0 - - - false - true - 20 - true + 0 + 1 + true + + + 100.0 - 39872d87:13e14015f61:4812 - 0.0 - - 0 - 10 - true - Polyline + + Default + false - 255 + + + + false + 27 + true + + + + 0 + 0 + Rectangle + + + true true - true + false - - - - - - true - + + $(pv_name) +$(pv_value) + false + true + Rectangle + 700 + 0 + 0 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 13 - 0 - 0 - - - 1 - 1 - true + false - - 46 - $(pv_name) -$(pv_value) - 22 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4813 - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 697 + 1 + 28 + + + + false - + - - - - Polyline + + + + 0 + 1 true - false - Default + - 27 - 0 - 0 + + + + 15 + 1 + Label - - 1 - 1 - true - - - - - 51 - $(pv_name) -$(pv_value) - 25 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4814 - 0.0 - - 0 - 32 - true - Polyline - false - 255 true true - true + false - - - - - false - + + false + ($(P)$(T)) + + true + 1 + true + Label + 350 + false + 350 + 5 + + + + false + false + false - + - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true + false - - 21 - $(pv_name) -$(pv_value) - 52 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4815 - 0.0 - - 0 - 13 - true - Polyline - false - 255 - - true - true - true - - - - - - - true - - - - - - - - Polyline + 3 + 1 + true - false - Default + - 13 - 0 - 0 - + false + + + + 1 + 27 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).DESC - 1 - 1 - true - - - - - 18 - $(pv_name) -$(pv_value) - 45 - - - true - 1 - 39872d87:13e14015f61:4816 - false - - 14 - Label + false + 0.0 + true true false - true - false - - - - - - - Label - true - +Z' - - - - 20 - 0 - - 1 - - - - 0 - + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 350 + 0 0 - true - - 44 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 60 + false true - true - 39872d87:13e14015f61:4817 - - 53 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 20 - 0 - - false - 1 - - - - - 216 - 530 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4818 - 0.0 - - 0 - 32 - true - Polyline - false - 255 - - true - true - true - - - - - - false - + true + true + Grouping Container + 140 + 460 + 115 + + + false - + - - - - Polyline + + + + 0 + 1 true - false - Default + - 1 - 0 - 0 + + + + 20 + 0 + Label - - 1 - 1 - true - - - - - 21 - $(pv_name) -$(pv_value) - 8 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4819 - 0.0 - - 0 - 13 - true - Polyline - false - 255 true true - true + false - - - - - + + false + Rx' + true - - - - - - - - Polyline + 1 + true + Label + 20 + false + 0 + 0 + + + + false + + + + + + + 0 + 1 true - false - Default + - 13 - 0 - 0 + + + + 20 + 0 + Label - - 1 - 1 - true + + true + true + false + + + false + Rz' + + true + 1 + true + Label + 20 + false + 0 + 40 + + + + false + + + - - 18 - $(pv_name) -$(pv_value) - 1 - - - true - 1 - 39872d87:13e14015f61:481a - false - - 14 + 0 + 1 + true + + + + + + + 20 + 0 Label + true true false - true + false + Ry' + + true + 1 + true + Label + 20 + false + 0 + 20 + + + + false + + + + 0 + 1 + true + + + - + + 20 + 0 + Label + + + true + true + false + + + false + Sx' + + true + 1 + true Label + 20 + false + 120 + 0 + + + + false + + + + + + + 0 + 1 true - +Y' - + - 20 - 0 + + + + 20 + 0 + Label - 1 + + true + true + false + + + false + Sz' + + true + 1 + true + Label + 20 + false + 120 + 40 + + + + false + + + + 0 + 1 + true + + + + + + + 20 0 - - 0 - true + Label + + + true + true + false + + + false + Sy' - 0 + true + 1 + true + Label + 20 + false + 120 + 20 - + + + + + + + + + 0 + 1 + true + + Default + + + + + + 129 true - true - 39872d87:13e14015f61:481b - - 30 - Grouping Container + Linking Container + table_limits.opi + 2 + true true false - true - false + + + true + Linking Container + 700 + 0 + 371 + + + + false + 255 + true + false - + - - - - Grouping Container - true - - Default - - 700 - 0 - - false - 1 + false - - 0 - - 0 - - false - true - 100.0 - - - - 39872d87:13e14015f61:481c - - - - - 27 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 700 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:481d - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 697 - 0 - 0 - - - 1 - 1 - true - - - - - 28 - $(pv_name) -$(pv_value) - 1 - - - true - 1 - 39872d87:13e14015f61:481e - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - ($(P)$(T)) - - - - 350 - 0 - - 1 - - - - 1 - - 5 - true - - 350 - - - false - true - 1 - false - false - - 27 - false - true - - - - Text Input - true - - - - - 350 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:481f - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(T).DESC - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:4824 - - 60 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 30 - 0 - - false - 1 - - - - - 115 - - 460 - - true - 1 - 39872d87:13e14015f61:4825 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Rx' - - - - 30 - 0 - - 1 - - - - 0 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:4826 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Rz' - - - - 30 - 0 - - 1 - - - - 0 - - 40 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:4827 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Ry' - - - - 30 - 0 - - 1 - - - - 0 - - 20 - true - - 0 - - - - - true - - true - 39872d87:13e14015f61:4828 - - 60 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 30 - 0 - - false - 1 - - - - - 115 - - 580 - - true - 1 - 39872d87:13e14015f61:4829 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Sx' - - - - 30 - 0 - - 1 - - - - 0 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:482a - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Sz' - - - - 30 - 0 - - 1 - - - - 0 - - 40 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:482b - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Sy' - - - - 30 - 0 - - 1 - - - - 0 - - 20 - true - - 0 - - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4794 - 0.0 - - 69 - true - Polygon - false - 255 - - true - true - true - - - - - - - - - false - - - - - - - - Polygon - true - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 161 - $(pv_name) -$(pv_value) - 77 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4795 - - - - - 7 - true - Ellipse - false - 255 - - true - true - true - - false - - - - - - - - Ellipse - true - - - - false - - Default - - 7 - 0 - 0 - - - 1 - 0 - true - - - - - 203 - $(pv_name) -$(pv_value) - 84 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4796 - - - - - 7 - true - Ellipse - false - 255 - - true - true - true - - false - - - - - - - - Ellipse - true - - - - false - - Default - - 7 - 0 - 0 - - - 1 - 0 - true - - - - - 198 - $(pv_name) -$(pv_value) - 116 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4797 - - - - - 7 - true - Ellipse - false - 255 - - true - true - true - - false - - - - - - - - Ellipse - true - - - - false - - Default - - 7 - 0 - 0 - - - 1 - 0 - true - - - - - 168 - $(pv_name) -$(pv_value) - 108 - false - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4798 - 0.0 - - 0 - 50 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true - - - - - 243 - $(pv_name) -$(pv_value) - 111 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:4799 - 0.0 - - 0 - 12 - true - Polyline - false - 255 - - true - true - true - - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 12 - 0 - 0 - - - 1 - 1 - true - - - - - 242 - $(pv_name) -$(pv_value) - 105 - - - true - 1 - 39872d87:13e14015f61:479a - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - BEAM - - - - 30 - 0 - - 1 - - - - 1 - - 226 - true - - 97 - - - true - 1 - 39872d87:13e14015f61:479b - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - (+Y is up) - - - - 120 - 0 - - 1 - - - - 1 - - 316 - true - - 40 - - - false - true - 1 - false - false - - 22 - false - true - - - - Text Input - true - - - - - 90 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:479c - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(T).YANG - - - - false - 0 - - - false - - - - 0 - - 63 - $(pv_name) -$(pv_value) - 95 - - - true - 1 - 39872d87:13e14015f61:479d - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - Table angle - - - - 90 - 0 - - 1 - - - - 1 - - 33 - true - - 95 - - - true - 1 - 39872d87:13e14015f61:479e - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - (degrees) - - - - 90 - 0 - - 1 - - - - 1 - - 48 - true - - 95 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:479f - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 82 - 0 - 0 - - - 1 - 1 - true - - - - - 86 - $(pv_name) -$(pv_value) - 98 - - - true - 1 - 39872d87:13e14015f61:47a0 - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - +Z' - - - - 20 - 0 - - 1 - - - - 0 - - 128 - true - - 141 - - - true - 1 - 39872d87:13e14015f61:47a1 - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - +X' - - - - 20 - 0 - - 1 - - - - 0 - - 155 - true - - 36 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:47a2 - 0.0 - - 0 - 343 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true - - - - - 31 - $(pv_name) -$(pv_value) - 196 - - - false - true - 29 - 39872d87:13e14015f61:47a3 - 61 - - 90 - true - Arc - false - 255 - - true - true - true - - - - - - - - - Arc - true - false - - Default - - 90 - 0 - false - 0 - - - 1 - 1 - - - - - 151 - $(pv_name) -$(pv_value) - 65 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:47a4 - 0.0 - - 0 - 26 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 48 - 0 - 0 - - - 1 - 1 - true - - - - - 169 - $(pv_name) -$(pv_value) - 63 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:47a5 - 0.0 - - 0 - 66 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 22 - 0 - 0 - - - 1 - 1 - true - - - - - 87 - $(pv_name) -$(pv_value) - 120 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:47a6 - 0.0 - - 0 - 52 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 30 - 0 - 0 - - - 1 - 1 - true - - - - - 143 - $(pv_name) -$(pv_value) - 111 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:47a7 - - - - - 7 - true - Ellipse - false - 255 - - true - true - true - - false - - - - - - - - Ellipse - true - - - - false - - Default - - 7 - 0 - 0 - - - 1 - 0 - true - - - - - 189 - $(pv_name) -$(pv_value) - 111 - false - - - true - 1 - 39872d87:13e14015f61:47af - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - V5.1 - - - - 30 - 0 - - 1 - - - - 0 - - 446 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:47b0 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - You're using the wrong setup display - - - - 280 0 - - - - true - - - false - - $(P)$(Q):geomIsGEOCARS - - - 1 - - - - 0 - - 351 - true - - 415 - - - false - true - true - 39872d87:13e14015f61:47b1 - - 20 - Menu Button + 1 + true + 100.0 + + Default + false + + + + 69 + true + + + + 0 + 0 + Polygon + + + + + + + + + + 0.0 + true true - false + true + + $(pv_name) +$(pv_value) false - $(P)$(T).GEOM + true + Polygon + 64 + 77 + 161 + + + + false + 255 + true + false - + - - - - Menu Button + + + + false + + + + 0 + 1 true - false + + + + 100.0 - Default + Default - 100 - 6 - - + false + + + + false + 7 + true + + + + 0 + 0 + Ellipse + - 1 - - - - 311 - - $(pv_name) -$(pv_value) - 540 - - - true - 1 - 39872d87:13e14015f61:47b2 - false - - 20 - Label + true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Ellipse + 7 + 84 + 203 + + + + false + 255 + true + false - + - - - - Label + + + + false + + + + 0 + 1 true - Geometry + + + + 100.0 - + Default - 80 - 0 + false + + + + false + 7 + true + + + + 0 + 0 + Ellipse + + - 1 - - - - 0 - - 311 - true - - 450 - - - true - 1 - 39872d87:13e14015f61:47b3 - false - - 14 - Label true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Ellipse + 7 + 104 + 215 + + + + false + 255 + true + false - + - - - - Label - true - This display is for the GEOCARS geometry - - - - 280 - 0 - - - - true - - - false - - $(P)$(Q):geomIsGEOCARS - - - 1 + + + + false - 0 - - 336 - true - - 415 - - - true - 1 - 39872d87:13e14015f61:47b4 - false - - 20 - Label + 0 + 1 + true + + + + 100.0 + + Default + + false + + + + false + 7 + true + + + + 0 + 0 + Ellipse + + + true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Ellipse + 7 + 117 + 174 + + + + false + 255 + true + false - + - - - - Label - true - User limits - - - - 110 - 0 - - 1 + + + + false - 0 - - 376 - true - - 5 - - - false - true - 20 - true + 0 + 1 + true + + + 100.0 - 39872d87:13e14015f61:47b5 - 0.0 - - 0 - 1 - true - Polyline + + Default + false - 255 + + + + false + 10 + true + + + + 0 + 0 + Ellipse + + + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Ellipse + 10 + 489 + 261 + + + + false + 255 + true + false - - - - Polyline + + + + false + + + + 0 + 1 true - false + + + + 100.0 - Default + Default - 708 + false + + + + false + 10 + true + + + 0 - 0 - + 0 + Ellipse + - 1 - 1 - true - - - - - 372 + + + true + true + true + + $(pv_name) $(pv_value) - 1 - - - false + false true - 1 - false - false - - 18 - false - true + Ellipse + 10 + 639 + 261 + + + + false + 255 + true + false - + - Text Input + + + + false + + + + 0 + 1 true - + + + + 100.0 - + Default - 80 - 3 + false + + + + false + 10 + true + + + + 0 + 0 + Ellipse + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:47b6 - 0.0 - Text Input + true true - false + true - 6 - false - 0 - $(P)$(T).UHX - - - - false - 0 - - - false - - - - 0 - - 401 + $(pv_name) $(pv_value) - 110 - - - false + false true - 1 - false - false - - 18 - false - true + Ellipse + 10 + 564 + 261 + + + + false + 255 + true + 20 + 0 + false - + - Text Input + false + + + + 0 + 1 true - + true + 100.0 - + Default - 80 - 3 + false + + + + 1 + true + 0 + 1 + Polyline + + + + + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:47b7 0.0 - Text Input + true true - false + true - 6 + + $(pv_name) +$(pv_value) false - 0 - $(P)$(T).UHY - - - - false - 0 - - - false + true + Polyline + 87 + 601 + 266 + + + + false + + + - 0 - - 401 - $(pv_name) -$(pv_value) - 195 - - - true - 1 - 39872d87:13e14015f61:47b8 - false - + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false - - - - - - - Label - true - High - - - - 40 - 0 - - 1 - - - - 0 - - 401 - true + (+Y is up) - 60 - - - false - true + true 1 - false + true + Label + 120 + false + 40 + 316 + + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 22 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:47b9 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).YANG + + false + 0.0 + true true false - 6 - false + 0 - $(P)$(T).ULX - - - - false - 0 - - - false - - - - 0 - - 421 + false + true + false + false + + $(pv_name) $(pv_value) - 110 - - - false + false true - 1 - false + Text Input + 90 + 95 + 63 + + + false - - 18 - false - true - + - Text Input + + + + 0 + 1 true - - + - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:47ba - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)$(T).ULY - + - false - 0 - - - false - - - - 0 - - 421 - $(pv_name) -$(pv_value) - 195 - - - true - 1 - 39872d87:13e14015f61:47bb - false - - 20 + 15 + 1 Label + true true false - true + false + Table angle + + true + 1 + true + Label + 90 + false + 95 + 33 + + + + false - - - - Label - true - Low - - - - 20 - 0 - - 1 - 0 - - 421 - true - - 60 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input + 0 + 1 true - - + - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:47bc - 0.0 - Text Input + + + + 15 + 1 + Label + true true false - 6 - false - 0 - $(P)$(T).ULZ - - - + + false + (degrees) + + true + 1 + true + Label + 90 + false + 95 + 48 + + + + false + 255 + true + 20 + 0 false - 0 - - - false + + + + false - 0 - - 421 - $(pv_name) -$(pv_value) - 280 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input + 0 + 1 true - + true + 100.0 - + Default - 80 - 3 + false + + + + 1 + true + 0 + 1 + Polyline + + + + + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:47bd 0.0 - Text Input + true true - false + true - 6 - false - 0 - $(P)$(T).UHZ - - - - false - 0 - - - false - - - - 0 - - 401 + $(pv_name) $(pv_value) - 280 - - + false true - 1 - 39872d87:13e14015f61:47be + Polyline + 82 + 98 + 86 + + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - X - - - - 80 - 0 - - 1 - 1 - - 381 - true - - 110 - - - true - 1 - 39872d87:13e14015f61:47bf - false - - 20 + 0 + 1 + true + + + + + + + 15 + 0 Label + true true false - true + false + +Z' + + true + 1 + true + Label + 20 + false + 141 + 128 + + + + false - - - - Label - true - Y - - - - 80 - 0 - - 1 - 1 - - 381 - true - - 195 - - - true - 1 - 39872d87:13e14015f61:47c0 - false - - 20 + 0 + 1 + true + + + + + + + 15 + 0 Label + true true false - true + false + +X' + + true + 1 + true + Label + 20 + false + 36 + 155 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label - true - Z - - - - 80 - 0 - - 1 + false - 1 - - 381 - true - - 280 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input + 0 + 1 true - + true + 100.0 - + Default - 80 - 3 + false + + + + 343 + true + 0 + 1 + Polyline + + + + + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:47c1 0.0 - Text Input + true true - false - - 6 - false - 0 - $(P)$(T).ULAX - - - - false - 0 - - - false - - - - 0 - - 421 - $(pv_name) -$(pv_value) - 405 - - - false - true - 1 - false - false + true + - 18 - false - true + $(pv_name) +$(pv_value) + true + true + Polyline + 1 + 196 + 31 + + + + false + 255 + true + false - + - Text Input + false + + + + 0 + 1 true - + false - + Default - 80 - 3 + false + + + + 90 + 0 + 1 + Arc + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:47c2 - 0.0 - Text Input + true true - false + true - 6 - false - 0 - $(P)$(T).UHAX - - - - false - 0 - - - false - - - - 0 - - 401 + + 61 $(pv_name) $(pv_value) - 405 - - - false + 29 true - 1 - false - false - - 18 - false - true + Arc + 90 + 65 + 151 + + + + false + 255 + true + 20 + 0 + false - + - Text Input + false + + + + 0 + 1 true - + true + 100.0 - + Default - 80 - 3 + false + + + + 26 + true + 0 + 1 + Polyline + + + + + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:47c3 0.0 - Text Input + true true - false + true - 6 - false - 0 - $(P)$(T).ULAY - - - - false - 0 - - - false - - - - 0 - - 421 + $(pv_name) $(pv_value) - 490 - - - false + true true - 1 - false - false - - 18 - false - true + Polyline + 48 + 63 + 169 + + + + false + 255 + true + 20 + 0 + false - + - Text Input + false + + + + 0 + 1 true - + true + 100.0 - + Default - 80 - 3 + false + + + + 66 + true + 0 + 1 + Polyline + + + + + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:47c4 0.0 - Text Input + true true - false + true - 6 - false - 0 - $(P)$(T).UHAY - - - - false - 0 - - - false - - - - 0 - - 401 + $(pv_name) $(pv_value) - 490 - - - false + false true - 1 - false - false - - 18 - false - true + Polyline + 22 + 120 + 87 + + + + false + 255 + true + 20 + 0 + false - + - Text Input + false + + + + 0 + 1 true - + true + 100.0 - + Default - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:47c5 + false + + + + 52 + true + 0 + 1 + Polyline + + + + + + 0.0 - Text Input + true true - false + true - 6 - false - 0 - $(P)$(T).ULAZ - - - - false - 0 - - - false - - - - 0 - - 421 + $(pv_name) $(pv_value) - 575 - - - false + true true - 1 - false - false - - 18 - false - true + Polyline + 30 + 111 + 143 + + + + false + 255 + true + false - + - Text Input + + + + false + + + + 0 + 1 true - + + + + 100.0 - + Default - 80 - 3 + false + + + + false + 7 + true + + + + 0 + 0 + Ellipse + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:47c6 - 0.0 - Text Input + true true - false + true - 6 - false - 0 - $(P)$(T).UHAZ - - - - false - 0 - - - false - - - - 0 - - 401 + $(pv_name) $(pv_value) - 575 - - + false true - 1 - 39872d87:13e14015f61:47c7 + Ellipse + 7 + 113 + 191 + + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - AX - - - - 80 - 0 - - 1 - 1 - - 381 - true - - 405 - - - true - 1 - 39872d87:13e14015f61:47c8 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label + 0 + 1 true - AY - + - 80 - 0 - - 1 - - - - 1 - - 381 - true - - 490 - - - true - 1 - 39872d87:13e14015f61:47c9 - false - - 20 + + + + 14 + 0 Label + + + + true + + + false + + $(P)$(Q):geomIsSRI + + true true false - true + false - - - - - - - Label - true - AZ - - - - 80 - 0 - - 1 - - - - 1 - - 381 - true + You're using the wrong setup display - 575 - - - true - true + true 1 - false - 39872d87:13e14015f61:47ca - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(T).AEGU - - - - - - - Text Update - true - ###### - false - 0 - - - - 115 - 0 - - - 1 - - - - 1 - - 441 + true + Label + 270 false - $(pv_name) -$(pv_value) - 475 + 425 + 351 - - true - true - 1 - false - 39872d87:13e14015f61:47cb + + false - 0.0 - - 15 - Text Update - false + + + + + + + 0 + 1 + true + + + + + + + 14 + 0 + Label + + + + true + + + false + + $(P)$(Q):geomIsSRI + + true true false - 1 - true - false - $(P)$(T).LEGU + + false + This display is for the SRI geometry + + true + 1 + true + Label + 270 + false + 425 + 336 + + + + false + 255 + true + false - + - - - - Text Update - true - ###### - false - 0 - - - - 115 - 0 - - - 1 + + + + false - 1 - - 441 - false - $(pv_name) -$(pv_value) - 175 - - - false - true + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 10 + true - 39872d87:13e14015f61:47cd - - - - - 10 - true + 0 + 0 Ellipse - false - 255 + + + true true true + + $(pv_name) +$(pv_value) false - + true + Ellipse + 10 + 250 + 261 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 - 0 - 0 - - - 1 - 0 - true - - - - - 261 - $(pv_name) -$(pv_value) - 489 + false + + + false - - - false - true - 100.0 + 10 + true - 39872d87:13e14015f61:47ce - - - - - 10 - true + 0 + 0 Ellipse - false - 255 + + + true true true + + $(pv_name) +$(pv_value) false - + true + Ellipse + 10 + 325 + 56 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 - 0 - 0 - - - 1 - 0 - true - - - - - 261 - $(pv_name) -$(pv_value) - 639 - false - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:47cf - 0.0 - - 0 - 1 - true - Polyline false - 255 - - true - true - true - - - - - - false - - - - - + - Polyline - true - false - - Default - - 87 - 0 - 0 - - - 1 - 1 + false + 10 true - - - - - 266 + + + + 0 + 0 + Ellipse + + + + + true + true + true + + $(pv_name) $(pv_value) - 601 - - + false true - 1 - 39872d87:13e14015f61:47d0 + Ellipse + 10 + 345 + 128 + + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + M0 + + true + 1 + true + Label + 20 + false + 264 + 250 + + + + false - - - - Label - true - M1,M2 - - - - 20 - 0 - - 1 - 0 - - 276 - true - - 484 - - - true - 1 - 39872d87:13e14015f61:47d1 - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + M1 + + true + 1 + true + Label + 20 + false + 378 + 258 + + + + false - - - - Label - true - M0 - - - - 20 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 0 - - 276 - true - - 634 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:47d7 - - - - - 10 - true - Ellipse - false - 255 + Label + true true - true + false - false - + + false + M2 + + true + 1 + true + Label + 20 + false + 320 + 71 + + + + false + 255 + true + 20 + 0 + false - - - - Ellipse - true - - - - false - - Default - - 10 - 0 - 0 - - - 1 - 0 - true + false - - 261 - $(pv_name) -$(pv_value) - 250 - false - - - false - true + 0 + 1 + true + true 100.0 - - - - 39872d87:13e14015f61:47d8 - - - - - 10 - true - Ellipse + + Default + false - 255 - - true - true - true - - false - - - - - + - Ellipse - true - - - - false - - Default - - 10 + 38 + true 0 - 0 - + 1 + Polyline + + + + + - 1 - 0 - true - - - - - 161 - $(pv_name) -$(pv_value) - 400 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:47d9 - - - - - 10 - true - Ellipse - false - 255 + 0.0 + true true true + + $(pv_name) +$(pv_value) false - + true + Polyline + 1 + 255 + 247 + + + + false + 255 + true + false - - - - Ellipse + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 10 + false + + + + false + 10 + true + + + 0 - 0 - - - 1 0 - true - - - - - 61 + Ellipse + + + + + true + true + true + + $(pv_name) $(pv_value) - 250 - false - - + false true - 1 - 39872d87:13e14015f61:47da + Ellipse + 10 + 400 + 261 + + + + false false - - 20 - Label + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).LZ + + false + 0.0 + true true false - true - false + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 235 + 126 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label + false + + + + 0 + 1 true - M2 + true + 100.0 - + Default - 20 - 0 + false + + + + 23 + true + 0 + 1 + Polyline + + + + + + + 0.0 - 1 + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 24 + 406 + 267 + + + + false + + + - 0 - - 246 - true - - 263 - - - true - 1 - 39872d87:13e14015f61:47db - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + R + + true + 1 + true + Label + 15 + false + 425 + 294 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label + false + + + + 0 + 1 true - M0 + true + 100.0 - + Default - 20 - 0 + false + + + + 158 + true + 0 + 1 + Polyline + + + + + + + 0.0 - 1 - - - - 0 - - 159 - true - - 411 - - - true - 1 - 39872d87:13e14015f61:47dc - false - - 20 - Label true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Polyline + 80 + 350 + 132 + + + + false - - - - Label - true - M1 - - - - 20 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 0 - - 71 - true - - 246 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:47dd - - - - - 10 - true - Ellipse - false - 255 + Label + true true - true + false - false - + + false + S + + true + 1 + true + Label + 15 + false + 360 + 121 + + + + false + 255 + true + 20 + 0 + false - - - - Ellipse - true - - - - false - - Default - - 10 - 0 - 0 - - - 1 - 0 - true + false - - 128 - $(pv_name) -$(pv_value) - 345 - false - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:47e7 - 0.0 - - 0 - 38 - true - Polyline + + Default + false - 255 + + + + 27 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - - false - - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true - - - - - 148 + $(pv_name) $(pv_value) - 405 - - - false + false true - 1 - false + Polyline + 23 + 645 + 240 + + + false - - 18 - false - true - + - Text Input + + + + 0 + 1 true - - + - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:47e8 - 0.0 - Text Input + + + + 20 + 0 + Label + true true false - 1 - false - 0 - $(P)$(T).LZ - - - + + false + R + + true + 1 + true + Label + 15 + false + 670 + 231 + + + + false + 255 + true + 20 + 0 false - 0 - - - false + + + + false - 0 - - 126 - $(pv_name) -$(pv_value) - 235 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:47ed - 0.0 - - 0 - 1 - true + + Default + + false + + + + 51 + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 74 + 594 + 191 + + + + false + 255 + true + false - - - - Polyline - true - false - - Default - - 25 - 0 - 0 - - - 1 - 1 - true + + + + false - - 66 - $(pv_name) -$(pv_value) - 204 - - - false - true - 20 - true + 0 + 1 + true + + + 100.0 - 39872d87:13e14015f61:47ee - 0.0 - - 0 - 1 - true - Polyline + + Default + false - 255 + + + + false + 10 + true + + + + 0 + 0 + Ellipse + + + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Ellipse + 10 + 589 + 186 + + + + false - + - - - - Polyline + + + + 0 + 1 true - false - Default + - 25 - 0 - 0 + + + + 20 + 0 + Label - - 1 - 1 - true + + true + true + false + + + false + S + + true + 1 + true + Label + 15 + false + 574 + 192 + + + + false + 255 + true + false + + + + + + + false - - 266 - $(pv_name) -$(pv_value) - 205 - - - false - true - 20 - true + 0 + 1 + true + + + 100.0 - 39872d87:13e14015f61:47ef - 0.0 - - 0 - 60 - true - Polyline + + Default + false - 255 + + + + false + 10 + true + + + + 0 + 0 + Ellipse + + + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Ellipse + 10 + 460 + 56 + + + + false + 255 + true + false - - - - Polyline + + + + false + + + + 0 + 1 true - false + + + + 100.0 - Default + Default - 1 + false + + + + false + 10 + true + + + 0 - 0 - + 0 + Ellipse + - 1 - 1 - true + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Ellipse + 10 + 460 + 71 + + + + false + + + - - 66 - $(pv_name) -$(pv_value) - 210 - - - true - 1 - 39872d87:13e14015f61:47f0 - false - - 20 + 0 + 1 + true + + + + + + + 10 + 0 Label + true true false - true + false + PIVOT POINTS + + true + 1 + true + Label + 80 + false + 480 + 56 + + + + false - - - - Label - true - Lz' - - - - 20 - 0 - - 1 + 0 + 1 + true + + + + + + + 10 0 - - 126 - true - - 200 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:47f1 - 0.0 - - 0 - 119 - true - Polyline - false - 255 + Label + true true - true + false - - - - - false - + + false + LOCAL ORIGIN + + true + 1 + true + Label + 80 + false + 480 + 41 + + + + false - + - - - - Polyline + + + + 0 + 1 true - false - Default + - 1 - 0 - 0 + + + + 10 + 0 + Label - - 1 - 1 - true - - - - - 148 - $(pv_name) -$(pv_value) - 210 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:47f2 - 0.0 - - 0 - 23 - true - Polyline - false - 255 true true - true + false - - - - - false - + + false + 'FIXED' POINT + + true + 1 + true + Label + 80 + false + 480 + 71 + + + + false - + - - - - Polyline - true - false - - Default - - 24 - 0 - 0 - - - 1 - 1 - true - - 267 - $(pv_name) -$(pv_value) - 406 - - - true - 1 - 39872d87:13e14015f61:47f3 - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + Lx' + + true + 1 + true + Label + 20 + false + 319 + 301 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label - true - R - - - - 15 - 0 - - 1 + false - 0 - - 294 - true - - 425 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:47f4 - 0.0 - - 0 - 158 - true - Polyline + + Default + false - 255 + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 62 + 345 + 311 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 80 + false + + + + 1 + true 0 - 0 - - - 1 1 - true - - - - - 132 - $(pv_name) -$(pv_value) - 350 - - - true - 1 - 39872d87:13e14015f61:47f5 - false - - 20 - Label + Polyline + + + + + + + 0.0 + true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Polyline + 59 + 257 + 311 + + + + false + false + false - + - - - - Label - true - S - - - - 15 - 0 - - 1 + false + 3 + 1 + + true + + + + false + + + + 1 + 18 0 - - 121 - true - - 360 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:47f6 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).LX + + false 0.0 - - 0 - 27 - true - Polyline - false - 255 + true true - true + false - - - - + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - + true + Text Input + 60 + 300 + 318 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 23 + false + + + + 25 + true 0 - 0 - - - 1 1 - true - - - - - 240 - $(pv_name) -$(pv_value) - 645 - - - true - 1 - 39872d87:13e14015f61:47f7 - false - - 20 - Label + Polyline + + + + + + + 0.0 + true true - false + true - true - false + + $(pv_name) +$(pv_value) + false + true + Polyline + 1 + 256 + 297 + + + + false + 255 + true + 20 + 0 + false - + - - - - Label - true - R - - - - 15 - 0 - - 1 + false - 0 - - 231 - true - - 670 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:47f8 - 0.0 - - 0 - 51 - true - Polyline + 0 + 1 + true + true + 100.0 + + Default + false - 255 + + + + 25 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 1 + 406 + 297 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 74 - 0 - 0 - - - 1 - 1 - true + false - - 191 - $(pv_name) -$(pv_value) - 594 - - - false - true + 0 + 1 + true + true 100.0 - - - - 39872d87:13e14015f61:47f9 - - - - - 10 - true - Ellipse + + Default + false - 255 + + + + 50 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true true + + $(pv_name) +$(pv_value) false - + true + Polyline + 1 + 111 + 243 + + + + false + 255 + true + 20 + 0 + false - - - - Ellipse + false + + + + 0 + 1 true - - - - false + true + 100.0 - Default + Default - 10 + false + + + + 12 + true 0 - 0 - + 1 + Polyline + + + + + + - 1 - 0 - true - - - - - 186 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) - 589 - false - - + true true - 1 - 39872d87:13e14015f61:47fa + Polyline + 12 + 105 + 242 + + + false - - 20 + + + + + + + 0 + 1 + true + + + + + + + 14 + 1 Label + true true false - true + false + BEAM + + true + 1 + true + Label + 30 + false + 97 + 226 + + + + false + false + false - + - - - - Label - true - S - - - - 15 - 0 - - 1 + false + 3 + 1 + + true + + + + false + + + + 1 + 18 0 - - 192 - true - - 574 - - - false + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).RX + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false true - 1 - false + Text Input + 60 + 495 + 116 + + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4805 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).RY + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(T).RX - - - - false - 0 - - - false - - - - 0 - - 117 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 495 + 135 - - false - true - 1 - false + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4806 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).SX + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(T).RY - - - - false - 0 - - - false - - - - 0 - - 135 + false + true + false + false + + $(pv_name) $(pv_value) - 495 - - - false + false true - 1 - false + Text Input + 60 + 615 + 115 + + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4807 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).SZ + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(T).SX - - - + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 60 + 615 + 155 + + + + false + false false - 0 - - - false + + + + false + 3 + 1 + + true + + + + false + + + + 1 + 18 0 - - 115 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(T).SY + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 60 615 + 135 - - false - true - 1 - false + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 60 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4808 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).RZ + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(T).SZ - - - - false - 0 - - - false - - - - 0 - - 155 + false + true + false + false + + $(pv_name) $(pv_value) - 615 - - - false + false true - 1 - false + Text Input + 60 + 495 + 155 + + + + false false - - 18 - false - true + false - + - Text Input + true + + + + 0 + 1 true - - + - 60 - 3 + false + + + + 1 + 14 + 1 + Text Update + 0 + true + $(P)$(Q)fpSelect.VAL - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4809 0.0 - Text Input + true true false - 1 + + false + ###### + $(pv_name) +$(pv_value) false - 0 - $(P)$(T).SY - - - + 1 + true + Text Update + 95 + false + 580 + 58 + + + + true + false false - 0 - - - false + + + + false - 0 - - 135 - $(pv_name) -$(pv_value) - 615 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:480f - 0.0 - - 0 - 25 - true - Polyline + 6 + 1 + true + + Default + false - 255 + + + + 20 + + Menu Button + $(P)$(Q)fpSelect + + true true - true + false - - - - + + false + $(pv_name) +$(pv_value) false - + true + Menu Button + 95 + 580 + 75 + + + + + table_fixedPoints.opi + + true + + 1 + Fixed points + + + false + false - + - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true + false - - 297 - $(pv_name) -$(pv_value) - 406 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input + 0 + 1 true - - + Default - 60 - 3 + false + + + + 20 + + Action Button + 0 + - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4820 - 0.0 - Text Input + true true false - 1 - false - 0 - $(P)$(T).RZ - - - + + + Fixed points + false + $(pv_name) +$(pv_value) + true + Action Button + 95 + 580 + 35 + + + + + table_setup_SRI_refresh.opi + + true + + 0 + + + + false false - 0 - - - false + + + + false - 0 - - 155 - $(pv_name) -$(pv_value) - 495 - - - true - true - 1 - false - 39872d87:13e14015f61:4821 - false - 0.0 - - 14 - Text Update + 0 + 1 + true + + Default + false + + + + 15 + + Action Button + 0 + + + true true false - 1 - true - false - $(P)$(Q)fpSelect.VAL + + + REFRESH MENU + false + $(pv_name) +$(pv_value) + true + Action Button + 85 + 585 + 95 + + + + true + false + false - + - - - - Text Update - true - ###### - false - 0 - - - - 95 - 0 - - - 1 + false - 1 - - 58 - false - $(pv_name) -$(pv_value) - 580 - - - false - true - true - 39872d87:13e14015f61:4822 - + 6 + 1 + true + + Default + + false + + + 20 + Menu Button - false + $(P)$(T).GEOM + + true true false + + false + $(pv_name) +$(pv_value) false - $(P)$(Q)fpSelect + true + Menu Button + 100 + 540 + 311 + + + + false - + - - - - Menu Button - true - false - - Default - - 95 - 6 - - - - 1 - 75 - - $(pv_name) -$(pv_value) - 580 - - - false - true - false - 39872d87:13e14015f61:4823 - + 0 + 1 + true + + + + + + 20 - Menu Button - false + 0 + Label + true true false - false - + + false + Geometry + + true + 1 + true + Label + 80 + false + 450 + 311 + + + + true + false + false - + - - - - Menu Button - true - false - - Default - - 95 - 6 - - - - 1 + false - 35 - - - table_fixedPoints.opi - - true - - 0 - Fixed points - - - $(pv_name) -$(pv_value) - 580 - - - false - true - false - 39872d87:13e14015f61:482c - - 15 - Menu Button + 6 + 1 + true + + Default + false + + + + 20 + + Menu Button + $(P)$(T).AUNIT + + true true false + + false + $(pv_name) +$(pv_value) false - + true + Menu Button + 120 + 290 + 345 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 85 - 6 - + + + + 14 + 0 + Label - - 1 - - - - 95 - - - table_setup_GEOCARS_refresh.opi - - true - - 1 - - - - $(pv_name) -$(pv_value) - 585 + + true + true + false + + + false + Angle units + + true + 1 + true + Label + 80 + false + 205 + 348 - \ No newline at end of file + diff --git a/opticsApp/op/opi/table_setup_SRI_refresh.opi b/opticsApp/op/opi/autoconvert/table_setup_SRI_refresh.opi similarity index 69% rename from opticsApp/op/opi/table_setup_SRI_refresh.opi rename to opticsApp/op/opi/autoconvert/table_setup_SRI_refresh.opi index 761bcf4..32bb435 100644 --- a/opticsApp/op/opi/table_setup_SRI_refresh.opi +++ b/opticsApp/op/opi/autoconvert/table_setup_SRI_refresh.opi @@ -1,86 +1,87 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 120 true - 39872d87:13e14015f61:4c9f - 3.1.2.20120830 + table_setup_SRI_refresh + + true + true + false true - 120 - table_setup_SRI_refresh false - false - - - - - - Display - true 700 - - true - 5 - - false - -1 - -1 - - - 25 36 - - false - true - false - 39872d87:13e14015f61:4ca0 - - 15 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 85 - 6 - - - - 1 - - - - 95 + 25 + table_setup_SRI.opi true - 1 + 0 + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 15 + + Action Button + 0 + + + + + true + true + false + + + + PRESS AGAIN + false $(pv_name) $(pv_value) + true + Action Button + 85 585 + 95 - \ No newline at end of file + diff --git a/opticsApp/op/opi/autoconvert/table_soft.opi b/opticsApp/op/opi/autoconvert/table_soft.opi new file mode 100644 index 0000000..3a40dc7 --- /dev/null +++ b/opticsApp/op/opi/autoconvert/table_soft.opi @@ -0,0 +1,4165 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 390 + + true + + table_soft + + + true + true + false + true + false + Display + 230 + 1255 + 241 + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 18 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 80 + 25 + 260 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 18 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 80 + 25 + 80 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 22 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 23 + 78 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 18 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 80 + 140 + 80 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 22 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 138 + 78 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 18 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 80 + 25 + 170 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 22 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 23 + 168 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 18 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 80 + 140 + 170 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 22 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 138 + 168 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 22 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 23 + 258 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 18 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 80 + 140 + 260 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 22 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 138 + 258 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 64 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(Q):x.DMOV + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 90 + 21 + 76 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 64 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(Q):ax.DMOV + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 90 + 136 + 76 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 64 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(Q):y.DMOV + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 90 + 21 + 166 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 64 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(Q):ay.DMOV + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 90 + 136 + 166 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 64 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(Q):z.DMOV + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 90 + 20 + 256 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 64 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(Q):az.DMOV + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 90 + 135 + 257 + + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 20 + false + + true + + Grouping Container + + + true + true + false + + + false + + true + true + Grouping Container + 60 + 120 + 345 + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + + true + + + false + + $(P)$(Q):done.VAL + + + + true + true + false + + + false + Done + + true + 1 + true + Label + 60 + false + 0 + 0 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + + true + + + false + + $(P)$(Q):done.VAL + + + + true + true + false + + + false + Moving + + true + 1 + true + Label + 60 + false + 0 + 0 + + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 20 + 1 + Text Update + 0 + true + $(P)$(T).DESC + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 230 + false + 0 + 0 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 230 + 0 + 21 + + + + + table_refresh.opi + + true + + 0 + Refresh fixed-point menu + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 15 + + Action Button + 0 + + + + + true + true + false + + + + REFRESH MENU + false + $(pv_name) +$(pv_value) + true + Action Button + 135 + 95 + 43 + + + + true + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + $(P)$(Q)fpSelect + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 135 + 95 + 23 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 14 + 0 + Label + + + true + true + false + + + false + Fixed point: + + true + 1 + true + Label + 85 + false + 5 + 27 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(Q):z.RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 25 + 262 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(Q):x.RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 25 + 82 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 18 + 1 + Label + + + + true + + + false + + $(P)$(T).LVIO + + + + true + true + false + + + false + Limit + + true + 1 + true + Label + 60 + false + 90 + 63 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(T).LEGU + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 70 + false + 25 + 63 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + X + + true + 1 + true + Label + 20 + false + 10 + 102 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 22 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):x.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 25 + 100 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(T).AEGU + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 70 + false + 150 + 63 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + AX + + true + 1 + true + Label + 20 + false + 115 + 102 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 22 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):ax.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 140 + 100 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(Q):ax.RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 140 + 82 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + Y + + true + 1 + true + Label + 20 + false + 10 + 193 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 22 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):y.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 25 + 190 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(Q):y.RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 25 + 172 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + AY + + true + 1 + true + Label + 20 + false + 115 + 191 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 22 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):ay.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 140 + 190 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(Q):ay.RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 140 + 172 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + true + + Choice 1 + Choice 2 + Choice 3 + + true + Choice Button + $(P)$(T).SET + + + + true + true + false + + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 80 + 0 + 350 + + + + + $(P)$(Q):sync + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(Q):sync + + + + true + true + false + + + + Sync + false + $(pv_name) +$(pv_value) + true + Action Button + 50 + 0 + 370 + + + + + $(P)$(Q):init + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(Q):init + + + + true + true + false + + + + Init + false + $(pv_name) +$(pv_value) + true + Action Button + 50 + 50 + 370 + + + + + $(P)$(Q):zero + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(Q):zero + + + + true + true + false + + + + Zero + false + $(pv_name) +$(pv_value) + true + Action Button + 35 + 80 + 350 + + + + + $(P)$(Q):stop.VAL + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 25 + + Action Button + 0 + $(P)$(Q):stop.VAL + + + + true + true + false + + + + Stop + false + $(pv_name) +$(pv_value) + true + Action Button + 60 + 120 + 366 + + + + + table_full_soft.opi + + true + + 1 + More + + + table_setup_SRI.opi + + true + + 1 + Setup (SRI geometry) + + + table_setup_GEOCARS.opi + + true + + 1 + Setup (GEOCARS geometry) + + + table_setup_NEWPORT.opi + + true + + 1 + Setup (NEWPORT geometry) + + + table_setup_PNC.opi + + true + + 1 + Setup (PNC geometry) + + + table_fixedPoints.opi + + true + + 1 + Fixed points + + + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 40 + 185 + 370 + + + + + table_tiny_soft.opi + + true + + 0 + Less + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + + + + + true + true + false + + + + Less + false + $(pv_name) +$(pv_value) + true + Action Button + 40 + 185 + 350 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + Z + + true + 1 + true + Label + 20 + false + 10 + 282 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 22 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):z.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 25 + 280 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + AZ + + true + 1 + true + Label + 20 + false + 115 + 281 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 22 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):az.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 140 + 280 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(Q):az.RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 140 + 262 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):x.TWV + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 44 + 45 + 120 + + + + + $(P)$(Q):x.TWF + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(Q):x.TWF + + + + true + true + false + + + + > + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 89 + 120 + + + + + $(P)$(Q):x.TWR + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(Q):x.TWR + + + + true + true + false + + + + < + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 25 + 120 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):ax.TWV + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 44 + 160 + 120 + + + + + $(P)$(Q):ax.TWF + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(Q):ax.TWF + + + + true + true + false + + + + > + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 204 + 120 + + + + + $(P)$(Q):ax.TWR + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(Q):ax.TWR + + + + true + true + false + + + + < + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 140 + 120 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):y.TWV + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 44 + 45 + 210 + + + + + $(P)$(Q):y.TWF + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(Q):y.TWF + + + + true + true + false + + + + > + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 89 + 210 + + + + + $(P)$(Q):y.TWR + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(Q):y.TWR + + + + true + true + false + + + + < + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 25 + 210 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):ay.TWV + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 44 + 160 + 210 + + + + + $(P)$(Q):ay.TWF + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(Q):ay.TWF + + + + true + true + false + + + + > + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 204 + 210 + + + + + $(P)$(Q):ay.TWR + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(Q):ay.TWR + + + + true + true + false + + + + < + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 140 + 210 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):z.TWV + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 44 + 45 + 300 + + + + + $(P)$(Q):z.TWF + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(Q):z.TWF + + + + true + true + false + + + + > + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 89 + 300 + + + + + $(P)$(Q):z.TWR + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(Q):z.TWR + + + + true + true + false + + + + < + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 25 + 300 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 18 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):az.TWV + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 44 + 160 + 300 + + + + + $(P)$(Q):az.TWF + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(Q):az.TWF + + + + true + true + false + + + + > + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 204 + 300 + + + + + $(P)$(Q):az.TWR + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 18 + + Action Button + 0 + $(P)$(Q):az.TWR + + + + true + true + false + + + + < + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 140 + 300 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 232 + 0 + 59 + + diff --git a/opticsApp/op/opi/table_tiny.opi b/opticsApp/op/opi/autoconvert/table_tiny.opi similarity index 74% rename from opticsApp/op/opi/table_tiny.opi rename to opticsApp/op/opi/autoconvert/table_tiny.opi index b07008d..704ef92 100644 --- a/opticsApp/op/opi/table_tiny.opi +++ b/opticsApp/op/opi/autoconvert/table_tiny.opi @@ -1,78 +1,76 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 250 true - 39872d87:13e14015f61:4ca4 - 3.1.2.20120830 + table_tiny + + true + true + false true - 250 - table_tiny false - false - - - - - - Display - true 230 - - true - 5 - - false - -1 - -1 - - - 180 103 - - false - true - 0.0 - - - - 39872d87:13e14015f61:4cc0 - - - - - 22 - true - Rectangle - false + 180 + + + false 255 - - true - true - false - - true - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 18 + true + + + 0 - 0 + 2 + Rectangle + + @@ -84,62 +82,62 @@ $(P)$(T).SET - - 1 - 2 - true - - - - - 38 - $(pv_name) -$(pv_value) - 23 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4cc1 - - - - - 22 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 80 + 25 + 40 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 18 + true + + + 0 - 0 + 2 + Rectangle + + @@ -151,62 +149,62 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 93 - $(pv_name) -$(pv_value) - 23 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4cc2 - - - - - 22 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 80 + 25 + 95 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 18 + true + + + 0 - 0 + 2 + Rectangle + + @@ -218,62 +216,62 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 148 - $(pv_name) -$(pv_value) - 23 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4ccd - - - - - 18 - true - Rectangle - false - 255 true true false - true - + + $(pv_name) +$(pv_value) + true + true + Rectangle + 80 + 25 + 150 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 80 + false + + + + false + 22 + true + + + 0 - 0 + 2 + Rectangle + + @@ -285,62 +283,62 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 40 - $(pv_name) -$(pv_value) - 140 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4cce - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 84 + 23 + 38 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 80 + false + + + + false + 22 + true + + + 0 - 0 + 2 + Rectangle + + @@ -352,62 +350,62 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 95 - $(pv_name) -$(pv_value) - 140 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4ccf - - - - - 18 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 84 + 23 + 93 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 80 + false + + + + false + 22 + true + + + 0 - 0 + 2 + Rectangle + + @@ -419,63 +417,63 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 150 - $(pv_name) -$(pv_value) - 140 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4cd0 - - - - - 22 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 84 + 23 + 148 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 18 + true + + + 0 - 0 - + 2 + Rectangle + + + true @@ -486,62 +484,62 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 38 - $(pv_name) -$(pv_value) - 138 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4cd1 - - - - - 22 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 80 + 140 + 40 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 18 + true + + + 0 - 0 + 2 + Rectangle + + @@ -553,62 +551,129 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 93 + + true + true + false + + $(pv_name) $(pv_value) - 138 - false + true + true + Rectangle + 80 + 140 + 95 - + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 0.0 + + Default + + false + + + + false + 18 + true - + - 39872d87:13e14015f61:4cd2 - - - - - 22 - true + 0 + 2 Rectangle - false - 255 + + + + + + true + + + false + + $(P)$(T).SET + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 80 + 140 + 150 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 84 + false + + + + false + 22 + true + + + 0 - 0 + 2 + Rectangle + + @@ -620,452 +685,215 @@ $(pv_value) $(P)$(T).SET - - 1 - 2 - true - - - - - 148 - $(pv_name) -$(pv_value) - 138 - false - - - - true - - true - 39872d87:13e14015f61:4cb0 - - 20 - Grouping Container true true false + + $(pv_name) +$(pv_value) true - false + true + Rectangle + 84 + 138 + 38 + + + + false + 255 + true + false - + - - - - Grouping Container - true - - Default - - 100 - 0 - - false - 1 + + + + false - - 225 - - 5 - - false - true - 39872d87:13e14015f61:4cb1 - - 20 - Action Button - false - - true - true - false - - $(P)$(T).SYNC - - - - - - - Action Button - true - Sync - false - - Default - - 50 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)$(T).SYNC - 1 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:4cb2 - - 20 - Action Button - false - - true - true - false - - $(P)$(T).INIT - - - - - - - Action Button - true - Init - false - - Default - - 50 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)$(T).INIT - 1 - 10 - - - - $(pv_name) -$(pv_value) - 50 - - - - - true - - true - 39872d87:13e14015f61:4cb4 - - 20 - Grouping Container + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 22 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + true true false + + $(pv_name) +$(pv_value) true - false + true + Rectangle + 84 + 138 + 93 + + + + false + 255 + true + false - + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false - Grouping Container + false + 22 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 138 + 148 + + + + + + + + + + 0 + 1 true + false - Default + Default - 60 - 0 - + + + + 20 false - 1 - - - - - 225 - - 110 - - true - 1 - 39872d87:13e14015f61:4cb5 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Done - - - - 60 - 0 - - - - true - - - false - - $(P)$(Q):done.VAL - - - 1 - - - - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:4cb6 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Moving - - - - 60 - 0 - - - - true - - - false - - $(P)$(Q):done.VAL - - - 1 - - - - 1 - - 0 - true - - 0 - - - true - true - 39872d87:13e14015f61:4cbc - - 128 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 80 - 0 - - false - 1 - - - - - 40 - 25 - - false - true - 0.0 - - - - 39872d87:13e14015f61:4cbd - - - - - 18 - true - Rectangle - false - 255 - - true - true - false - - true - + true + true + Grouping Container + 60 + 110 + 225 + + + false - - - - - - Rectangle - true - - - false - - Default - - 80 - 0 - 0 - - - - true - - - false - - $(P)$(T).SET - - - - 1 - 2 - true + - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4cbe - - - - - 18 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle + 0 + 1 true - - - - false - Default + - 80 - 0 - 0 + + + + 20 + 1 + Label @@ -1074,253 +902,230 @@ $(pv_value) false - $(P)$(T).SET + $(P)$(Q):done.VAL - - 1 - 2 - true - - - - - 55 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4cbf - - - - - 18 - true - Rectangle - false - 255 true true false + + false + Done + true - + 1 + true + Label + 60 + false + 0 + 0 + + + + false - + - - - - Rectangle + + + + 0 + 1 true - - - - false - Default + - 80 - 0 - 0 + + + + 20 + 1 + Label - + true - + false - $(P)$(T).SET + $(P)$(Q):done.VAL - - 1 - 2 - true - - - - - 110 - $(pv_name) -$(pv_value) + + true + true + false + + + false + Moving + + true + 1 + true + Label + 60 + false 0 - false + 0 - - true - true - 1 - false - 39872d87:13e14015f61:4ca5 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(T).EX + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).EX - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 42 false - $(pv_name) -$(pv_value) 25 + 42 - - true - 1 - 39872d87:13e14015f61:4ca6 + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - Z - - - - 20 - 0 - - 1 - 0 - - 172 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:4ca7 - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + Z + + true + 1 + true + Label + 20 + false + 10 + 172 + + + + false - - - - Label - true - Y - - - - 20 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 0 - - 118 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:4ca8 - false - - 18 Label + true true false - true + false + Y + + true + 1 + true + Label + 20 + false + 10 + 118 + + + + false - - - - Label + + + + 0 + 1 true - Limit - - - 50 - 0 + + + + + + 18 + 1 + Label @@ -1332,260 +1137,229 @@ $(pv_value) $(P)$(T).LVIO - 1 - - - - 1 - - 23 - true + + true + true + false + + + false + Limit + true + 1 + true + Label + 50 + false 100 + 23
- - true - true - 1 - false - 39872d87:13e14015f61:4ca9 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(T).LEGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).LEGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 1 - - 23 false - $(pv_name) -$(pv_value) 25 + 23 - - true - 1 - 39872d87:13e14015f61:4caa + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + X + + true + 1 + true + Label + 20 + false + 10 + 62 + + + + false + false + false - - - - Label - true - X - - - - 20 - 0 - - 1 + true - 0 - - 62 - true - - 10 - - - true - true - 1 - false - 39872d87:13e14015f61:4cab - false - 0.0 - + 0 + 1 + true + + + + false + + + + 1 20 + 1 Text Update - false + 0 + true + $(P)$(T).DESC + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).DESC - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 230 - 0 - - - 1 - - - - 1 - - 0 false - $(pv_name) -$(pv_value) 0 + 0 - - false - true + + + false + 255 + true 20 - true - 100.0 - 39872d87:13e14015f61:4cac - 0.0 - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true false - - Default - - 229 - 0 - 0 - - - 1 - 1 - true - - - - - 21 - $(pv_name) -$(pv_value) - 1 - - + + + false - true - false - 39872d87:13e14015f61:4cad - - 20 - Menu Button + + + + 0 + 1 + true + true + 100.0 + + Default + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + true true - false + true + + $(pv_name) +$(pv_value) false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - - 225 + true + Polyline + 229 + 1 + 21 + + table.opi true - 1 + 1 More @@ -1593,7 +1367,7 @@ $(pv_value) true - 0 + 1 Setup (SRI geometry) @@ -1601,7 +1375,7 @@ $(pv_value) true - 0 + 1 Setup (GEOCARS geometry) @@ -1609,7 +1383,7 @@ $(pv_value) true - 0 + 1 Setup (NEWPORT geometry) @@ -1617,929 +1391,1110 @@ $(pv_value) true - 0 + 1 Setup (PNC geometry) - $(pv_name) -$(pv_value) - 180 - - + false + false + false + + + false - true - 39872d87:13e14015f61:4cae - - 20 - Choice Button + + + + 6 + 1 + true + + Default + false + + + + 20 + + Menu Button + + + true true false - $(P)$(T).SET + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 40 + 180 + 225 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 80 - 0 - - - - - + false + + + + 20 + true Choice 1 Choice 2 Choice 3 - 1 - true + true + Choice Button + $(P)$(T).SET + + + + true + true + false + + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 80 + 5 + 200 + + + + + $(P)$(T).ZERO + 1 + 10 + + + + + false + false + + + + false - true - + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(T).ZERO + + + + true + true + false + + + + Zero + false + $(pv_name) +$(pv_value) + true + Action Button + 40 + 90 200 + + + + + $(P)$(T).SYNC + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(T).SYNC + + + + true + true + false + + + + Sync + false $(pv_name) $(pv_value) + true + Action Button + 50 5 + 225 - + + + + $(P)$(T).INIT + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4caf - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(T).INIT + + true true false - $(P)$(T).ZERO - - - - - - - Action Button - true - Zero - false - - Default - - 40 - 0 - 0 - - - + + + Init false - 1 - - - - 200 + $(pv_name) +$(pv_value) + true + Action Button + 50 + 55 + 225 + + - $(P)$(T).ZERO + $(P)$(Q):stop.VAL 1 10 + - $(pv_name) -$(pv_value) - 90 - - + false + false + + + false - true - 39872d87:13e14015f61:4cb3 - + + + + 0 + 1 + true + + Default + + false + + + 25 + Action Button - false + 0 + $(P)$(Q):stop.VAL + + true true false - $(P)$(Q):stop.VAL - - - - - - - Action Button - true + + Stop - false - - Default - - 60 - 0 - 0 - - - false - 1 - - - - 200 - - - $(P)$(Q):stop.VAL - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 60 135 + 200 - - false - true - 1 - false + + + false false - - 22 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 22 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4cb7 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).X + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(T).X - - - - false - 0 - - - false - - - - 0 - - 60 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 25 + 60 - - true - true - 1 - false - 39872d87:13e14015f61:4cb8 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(T).EY + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).EY - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 97 false - $(pv_name) -$(pv_value) 25 + 97 - - false - true - 1 - false + + + false false - - 22 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 22 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4cb9 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).Y + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(T).Y - - - - false - 0 - - - false - - - - 0 - - 115 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 25 + 115 - - true - true - 1 - false - 39872d87:13e14015f61:4cba + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(T).EZ + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).EZ - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 152 false - $(pv_name) -$(pv_value) 25 + 152 - - false - true - 1 - false + + + false false - - 22 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 22 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4cbb - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).Z + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(T).Z - - - - false - 0 - - - false - - - - 0 - - 170 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 25 + 170 - - true - 1 - 39872d87:13e14015f61:4cc3 + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - AZ - - - - 20 - 0 - - 1 - 0 - - 171 - true - - 115 - - - true - 1 - 39872d87:13e14015f61:4cc4 - false - + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false + AZ + + true + 1 + true + Label + 20 + false + 115 + 171 + + + + false - - - - Label - true - AY - - - - 20 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 0 - - 116 - true + Label + + + true + true + false + + + false + AY + true + 1 + true + Label + 20 + false 115 + 116 - - true - true - 1 - false - 39872d87:13e14015f61:4cc5 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(T).AEGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).AEGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 1 - - 23 false - $(pv_name) -$(pv_value) 155 + 23 - - true - 1 - 39872d87:13e14015f61:4cc6 + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 0 Label + true true false - true + false - - - - - - - Label - true AX - - - - 20 - 0 - - 1 - - - - 0 - - 62 - true + true + 1 + true + Label + 20 + false 115 + 62 - - true - true - 1 - false - 39872d87:13e14015f61:4cc7 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(T).EAX + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).EAX - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 42 false - $(pv_name) -$(pv_value) 140 + 42 - - false - true - 1 - false + + + false false - - 22 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 22 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4cc8 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).AX + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(T).AX - - - - false - 0 - - - false - - - - 0 - - 60 + false + true + false + false + + $(pv_name) $(pv_value) - 140 - - - true + false true - 1 - false - 39872d87:13e14015f61:4cc9 + Text Input + 80 + 140 + 60 + + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(T).EAY + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).EAY - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 97 false - $(pv_name) -$(pv_value) 140 + 97 - - false - true - 1 - false + + + false false - - 22 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 22 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4cca - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).AY + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(T).AY - - - - false - 0 - - - false - - - - 0 - - 115 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 140 + 115 - - true - true - 1 - false - 39872d87:13e14015f61:4ccb + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 15 + 1 Text Update - false + 0 + true + $(P)$(T).EAZ + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(T).EAZ - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 152 false - $(pv_name) -$(pv_value) 140 + 152 - - false - true - 1 - false + + + false false - - 22 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 22 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4ccc - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(T).AZ + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(T).AZ - - - - false - 0 - - - false - - - - 0 - - 170 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 140 + 170 -
\ No newline at end of file +
diff --git a/opticsApp/op/opi/autoconvert/table_tiny_soft.opi b/opticsApp/op/opi/autoconvert/table_tiny_soft.opi new file mode 100644 index 0000000..50f8cde --- /dev/null +++ b/opticsApp/op/opi/autoconvert/table_tiny_soft.opi @@ -0,0 +1,2862 @@ + + + + false + -1 + -1 + + false + + + + 5.1.0 + + + + 5 + 250 + + true + + table_tiny_soft + + + true + true + false + true + false + Display + 230 + 1227 + 699 + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 18 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 80 + 25 + 40 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 18 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 80 + 25 + 95 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 18 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 80 + 25 + 150 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 22 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 23 + 38 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 22 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 23 + 93 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 22 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 23 + 148 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 18 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 80 + 140 + 40 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 18 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 80 + 140 + 95 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 18 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 80 + 140 + 150 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 22 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 138 + 38 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 22 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 138 + 93 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 22 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(T).SET + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 84 + 138 + 148 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 47 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(Q):x.DMOV + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 88 + 22 + 37 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 47 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(Q):y.DMOV + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 88 + 22 + 92 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 47 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(Q):z.DMOV + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 88 + 22 + 147 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 47 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(Q):ax.DMOV + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 88 + 136 + 37 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 47 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(Q):ay.DMOV + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 88 + 136 + 92 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 + true + + + + 0.0 + + Default + + false + + + + false + 47 + true + + + + 0 + 2 + Rectangle + + + + + + true + + + false + + $(P)$(Q):az.DMOV + + + + true + true + false + + + $(pv_name) +$(pv_value) + true + true + Rectangle + 88 + 136 + 146 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(Q):x.RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 25 + 42 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + Z + + true + 1 + true + Label + 20 + false + 10 + 172 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + Y + + true + 1 + true + Label + 20 + false + 10 + 118 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 18 + 1 + Label + + + + true + + + false + + $(P)$(T).LVIO + + + + true + true + false + + + false + Limit + + true + 1 + true + Label + 50 + false + 100 + 23 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(T).LEGU + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 25 + 23 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + X + + true + 1 + true + Label + 20 + false + 10 + 62 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 20 + 1 + Text Update + 0 + true + $(P)$(T).DESC + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 230 + false + 0 + 0 + + + + false + 255 + true + 20 + 0 + false + + + + false + + + + 0 + 1 + true + true + 100.0 + + Default + + false + + + + 1 + true + 0 + 1 + Polyline + + + + + + + 0.0 + + + true + true + true + + + $(pv_name) +$(pv_value) + false + true + Polyline + 229 + 1 + 21 + + + + + table_soft.opi + + true + + 1 + More + + + table_setup_SRI.opi + + true + + 1 + Setup (SRI geometry) + + + table_setup_GEOCARS.opi + + true + + 1 + Setup (GEOCARS geometry) + + + table_setup_NEWPORT.opi + + true + + 1 + Setup (NEWPORT geometry) + + + table_setup_PNC.opi + + true + + 1 + Setup (PNC geometry) + + + false + false + false + + + + false + + + + 6 + 1 + true + + Default + + false + + + + 20 + + Menu Button + + + + + true + true + false + + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 40 + 180 + 225 + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + true + + Choice 1 + Choice 2 + Choice 3 + + true + Choice Button + $(P)$(T).SET + + + + true + true + false + + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 80 + 5 + 200 + + + + + $(P)$(Q):zero + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(Q):zero + + + + true + true + false + + + + Zero + false + $(pv_name) +$(pv_value) + true + Action Button + 40 + 90 + 200 + + + + + $(P)$(Q):sync + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(Q):sync + + + + true + true + false + + + + Sync + false + $(pv_name) +$(pv_value) + true + Action Button + 50 + 5 + 225 + + + + + $(P)$(Q):init + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(Q):init + + + + true + true + false + + + + Init + false + $(pv_name) +$(pv_value) + true + Action Button + 50 + 55 + 225 + + + + + $(P)$(Q):stop.VAL + 1 + 10 + + + + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 25 + + Action Button + 0 + $(P)$(Q):stop.VAL + + + + true + true + false + + + + Stop + false + $(pv_name) +$(pv_value) + true + Action Button + 60 + 135 + 200 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + + true + + + false + + $(P)$(Q):done.VAL + + + + true + true + false + + + false + Done + + true + 1 + true + Label + 60 + false + 110 + 225 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 1 + Label + + + + true + + + false + + $(P)$(Q):done.VAL + + + + true + true + false + + + false + Moving + + true + 1 + true + Label + 60 + false + 110 + 225 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 22 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):x.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 25 + 60 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(Q):y.RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 25 + 97 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 22 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):y.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 25 + 115 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(Q):z.RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 25 + 152 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 22 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):z.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 25 + 170 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + AZ + + true + 1 + true + Label + 20 + false + 115 + 171 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + AY + + true + 1 + true + Label + 20 + false + 115 + 116 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(T).AEGU + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 60 + false + 155 + 23 + + + + false + + + + + + + 0 + 1 + true + + + + + + + 20 + 0 + Label + + + true + true + false + + + false + AX + + true + 1 + true + Label + 20 + false + 115 + 62 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(Q):ax.RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 140 + 42 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 22 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):ax.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 140 + 60 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(Q):ay.RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 140 + 97 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 22 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):ay.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 140 + 115 + + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 + 15 + 1 + Text Update + 0 + true + $(P)$(Q):az.RBV + + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 80 + false + 140 + 152 + + + + false + false + false + + + + false + + + + 3 + 1 + + true + + + + false + + + + 1 + 22 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(Q):az.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 80 + 140 + 170 + + diff --git a/opticsApp/op/opi/Io_small.opi b/opticsApp/op/opi/autoconvert/virtualChannelCutMono.opi similarity index 51% rename from opticsApp/op/opi/Io_small.opi rename to opticsApp/op/opi/autoconvert/virtualChannelCutMono.opi index e5e76f3..beb230e 100644 --- a/opticsApp/op/opi/Io_small.opi +++ b/opticsApp/op/opi/autoconvert/virtualChannelCutMono.opi @@ -1,689 +1,621 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 152 true - 39872d87:13e14015f61:21a5 - 3.1.2.20120830 + virtualChannelCutMono + + true + true + false true - 118 - Io_small false - false - - - - - - Display - true - 300 - - true - 5 - - false - -1 - -1 - - - 154 - 698 - + 400 + 992 + 294 + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 95 + false true - true - 39872d87:13e14015f61:21a8 - - 23 Grouping Container + true true false - true + false - - - - - - - Grouping Container - true - - Default - - 299 - 0 - - false - 1 - - - - - 33 - 1 - - true - true - 1 - false - 39872d87:13e14015f61:21a9 + true + true + Grouping Container + 130 + 145 + 40 + + + false false - 0.0 - - 18 - Text Update + false + + + + false + + + + 3 + 1 + + true + + + false + + + + 1 + 20 + 0 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)VCCMono:Energy + + false + 0.0 + true true false - 4 - true + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - $(P)flux.DESC + true + Text Input + 130 + 0 + 0 + + + + false + false + false - + - - - - Text Update - true - ###### - false - 0 - - - - 113 - 0 - - - 1 + false + 3 + 1 + + true + + + + false + + + + 1 + 20 0 - - 2 - false - $(pv_name) -$(pv_value) - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:21aa - false + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)VCCMono:offset + + false 0.0 - - 23 - Text Update - false + true true false - 2 - true + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - $(P)flux + true + Text Input + 130 + 0 + 25 + + + + false + false + false - + - - - - Text Update - true - ###### - false - 0 - - - - 100 - 0 - - - 1 + false + 3 + 1 + + true + + + + false + + + + 1 + 20 0 - - 0 - false - $(pv_name) -$(pv_value) - 114 - - - true - true - 1 - false - 39872d87:13e14015f61:21ab - false + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)VCCMono:deltaD + + false 0.0 - - 15 - Text Update - false + true true false - 4 - true + + 0 + false + true + false + false + + + $(pv_name) +$(pv_value) false - $(P)flux.EGU + true + Text Input + 130 + 0 + 50 + + + + false + false + false - + - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 + false + 3 + 1 + + true + + + + false + + + + 1 + 20 0 - - 4 - false + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)VCCMono:d_spacing + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + $(pv_name) $(pv_value) - 219 + false + true + Text Input + 130 + 0 + 75 - - - true - - true - 39872d87:13e14015f61:21ad - - 23 - Grouping Container - - true - true - false - - true - false + + + false - + - - - - Grouping Container + + + + 0 + 1 true - Default + - 299 - 0 + + + + 20 + 0 + Label - false - 1 - - - - - 61 - - 1 - - true - true - 1 - false - 39872d87:13e14015f61:21ae - false - 0.0 - - 18 - Text Update - false - - true - true - false - - 4 - true - false - $(P)detector.DESC - - - - - - - Text Update - true - ###### - false - 0 - - - - 113 - 0 - - - 1 - - - - 0 - - 2 - false - $(pv_name) -$(pv_value) - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:21af - false - 0.0 - - 23 - Text Update - false - - true - true - false - - 2 - true - false - $(P)detector - - - - - - - Text Update - true - ###### - false - 0 - - - - 100 - 0 - - - 1 - - - - 0 - - 0 - false - $(pv_name) -$(pv_value) - 114 - - - true - true - 1 - false - 39872d87:13e14015f61:21b0 - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 4 - true - false - $(P)detector.EGU - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 0 - - 4 - false - $(pv_name) -$(pv_value) - 219 - - - - true - 1 - 39872d87:13e14015f61:21a6 - false - - 25 - Label true true false - true + false + Energy (keV) + + true + 1 + true + Label + 120 + false + 10 + 40 + + + + + motorx.opi + + true + VCCMono:Energy + + 1 + Energy + + + yyTransform.opi + + true + VCCMono:tFwd + + 1 + tFwd + + + yyTransform.opi + + true + VCCMono:tRev + + 1 + tRev + + + yyCalcoutRecord.opi + + true + VCCMono:calcDone + + 1 + calcDone + + + yyCalcoutRecord.opi + + true + VCCMono:closeGate + + 1 + closeGate + + + false + false + false - + - - - - Label + false + + + + 6 + 1 true - Io - + Default - 40 - 0 + false + + + + 20 + + Menu Button + + - 1 - - - - 1 - - 2 - true - - 136 - - - true - 1 - 39872d87:13e14015f61:21a7 - false - - 10 - Label true true false - true - false + + false + $(pv_name) +$(pv_value) + false + true + Menu Button + 45 + 337 + 125 + + + + false - - - - Label + + + + 0 + 1 true - Io_small.adl - + - 80 - 0 + + + + 20 + 0 + Label - 1 - - - - 1 - - 2 - true - - 215 - - - false - true - false - 39872d87:13e14015f61:21ac - - 23 - Menu Button - false true true false - false - + + false + Offset (mm) + + true + 1 + true + Label + 120 + false + 10 + 65 + + + + false - + - - - - Menu Button - true - false - - Default - - 60 - 6 - - - - 1 - 2 - - - Io.opi - - true - - 1 - all - - - $(pv_name) -$(pv_value) - 2 - - - true - 1 - 39872d87:13e14015f61:21b1 - false - - 18 + 0 + 1 + true + + + + + + + 20 + 0 Label + true true false - true + false + deltaD + + true + 1 + true + Label + 120 + false + 10 + 90 + + + + false - - - - Label + + + + 0 + 1 true - scaler channel - + - 113 - 0 + + + + 20 + 0 + Label - 1 - - - - 1 - - 94 - true - - 18 - - - false - true - true - 39872d87:13e14015f61:21b2 - - 21 - Menu Button - false true true false - false - $(P)scaler + + false + d spacing (A) + + true + 1 + true + Label + 120 + false + 10 + 115 + + + + false + false - + - - - - Menu Button - true - false - - Default - - 35 - 6 - - - - 1 + false - 90 - - $(pv_name) -$(pv_value) - 140 - - - true - true - 1 - false - 39872d87:13e14015f61:21b3 - false - 0.0 - - 18 - Text Update + 0 + 1 + true + + Default + false + + + + 20 + true + + Choice 1 + Choice 2 + Choice 3 + + true + Choice Button + $(P)VCCMono:set + + true true false - 4 - true - false - $(P)scaler.DESC - - - - - - - Text Update - true - ###### - false - 0 - - - - 110 - 0 - - - 1 - - - - 0 - - 94 - false + + + + $(pv_name) $(pv_value) - 186 + true + Choice Button + 100 + 280 + 40 - \ No newline at end of file + diff --git a/opticsApp/op/opi/xia_slit.opi b/opticsApp/op/opi/autoconvert/xia_slit.opi similarity index 82% rename from opticsApp/op/opi/xia_slit.opi rename to opticsApp/op/opi/autoconvert/xia_slit.opi index dc8a22d..29fabaa 100644 --- a/opticsApp/op/opi/xia_slit.opi +++ b/opticsApp/op/opi/autoconvert/xia_slit.opi @@ -1,648 +1,646 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 340 true - 39872d87:13e14015f61:4d03 - 3.1.2.20120830 + xia_slit + + true + true + false true - 340 - xia_slit false - false - - - - - - Display - true 300 - - true - 5 - - false - -1 - -1 - - - 211 556 - + 211 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 20 + true - 39872d87:13e14015f61:4d04 - - - - - 20 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 300 + 0 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 300 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 100.0 + 100 + true - 39872d87:13e14015f61:4d0d - - - - - 100 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 100 + 99 + 125 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 100 - 0 - 0 - - - 1 - 0 - true - - - - - 125 - $(pv_name) -$(pv_value) - 99 + false + + + false - - - false - true - 100.0 + 100 + true - 39872d87:13e14015f61:4d0e - - - - - 100 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 100 + 99 + 200 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 + false + + + + false + 100 + true + + + 0 - 0 - + 2 + Rectangle + - 1 - 0 - true - - - - - 200 - $(pv_name) -$(pv_value) - 99 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4d0f - - - - - 100 - true - Rectangle - false - 255 + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 100 + 99 + 200 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 100 - 0 - 0 - - - 1 - 2 - true - - - - - 200 - $(pv_name) -$(pv_value) - 99 + false + + + false - - - false - true - 100.0 + 100 + true - 39872d87:13e14015f61:4d10 - - - - - 100 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 100 + 99 + 50 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 - 0 - 0 - - - 1 - 0 - true - - - - - 50 - $(pv_name) -$(pv_value) - 99 + false + + + false - - - false - true - 0.0 + 100 + true - + - 39872d87:13e14015f61:4d11 - - - - - 100 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 100 + 99 + 50 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 100 - 0 - 0 - - - 1 - 2 - true - - - - - 50 - $(pv_name) -$(pv_value) - 99 + false + + + false - - - false - true - 100.0 + 100 + true - 39872d87:13e14015f61:4d12 - - - - - 100 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 100 + 19 + 125 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 - 0 - 0 - - - 1 - 0 - true - - - - - 125 - $(pv_name) -$(pv_value) - 19 + false + + + false - - - false - true - 0.0 + 100 + true - + - 39872d87:13e14015f61:4d13 - - - - - 100 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 100 + 19 + 125 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 100 - 0 - 0 - - - 1 - 2 - true - - - - - 125 - $(pv_name) -$(pv_value) - 19 + false + + + false - - - false - true - 100.0 + 100 + true - 39872d87:13e14015f61:4d1d - - - - - 100 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle - true - - - - false - - Default - 100 - 0 - 0 - - - 1 - 0 - true - - - - - 125 - $(pv_name) -$(pv_value) 179 - false + 125 - - false - true - 0.0 - - - - 39872d87:13e14015f61:4d1e - - - - - 100 - true - Rectangle - false + + + false 255 - - true - true - false - - true - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 - 0 - 0 - - - 1 - 2 - true - - - - - 125 - $(pv_name) -$(pv_value) - 179 + false + + + false - - - false - true - 0.0 + 100 + true - + - 39872d87:13e14015f61:4d6a - - - - - 75 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 100 + 179 + 125 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 + false + + + + false + 75 + true + + + 0 - 0 + 4 + Rectangle + + @@ -654,62 +652,62 @@ $(pv_value) $(P)$(HSC)v_Busy - - 1 - 4 - true - - - - - 50 - $(pv_name) -$(pv_value) - 99 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4d6b - - - - - 75 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 100 + 99 + 50 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 + false + + + + false + 75 + true + + + 0 - 0 + 4 + Rectangle + + @@ -721,62 +719,62 @@ $(pv_value) $(P)$(HSC)v_Busy - - 1 - 4 - true - - - - - 225 - $(pv_name) -$(pv_value) - 99 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4d6c - - - - - 82 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 100 + 99 + 225 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 + false + + + + false + 82 + true + + + 0 - 0 + 4 + Rectangle + + @@ -788,62 +786,62 @@ $(pv_value) $(P)$(HSC)h_Busy - - 1 - 4 - true - - - - - 125 - $(pv_name) -$(pv_value) - 19 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4d6d - - - - - 82 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 100 + 19 + 125 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 + false + + + + false + 82 + true + + + 0 - 0 + 4 + Rectangle + + @@ -855,818 +853,798 @@ $(pv_value) $(P)$(HSC)h_Busy - - 1 - 4 - true - - - - - 125 + + true + true + false + + $(pv_name) $(pv_value) + true + true + Rectangle + 100 179 - false + 125 - - false - true + + + false + 255 + true 20 - true - 100.0 - 39872d87:13e14015f61:4d05 - 0.0 - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - + false - - - - Polyline + false + + + + 0 + 1 true - false + true + 100.0 - Default + Default - 297 + false + + + + 1 + true 0 - 0 - - - 1 1 - true - - - - - 21 + Polyline + + + + + + + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 297 1 + 21 - - true - 1 - 39872d87:13e14015f61:4d06 + + false - - 20 - Label - - true - true - false - - true - false - - - - Label - true - $(SLIT) - - - - 170 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:4d07 - false - - 12 Label + true true false - true + false + $(SLIT) + + true + 1 + true + Label + 170 + false + 0 + 0 + + + + false - - - - Label - true - (Looking upstream) - - - - 110 - 0 - - 1 + 0 + 1 + true + + + + + + + 12 1 - - 6 - true - - 170 - - - false - true - false - 39872d87:13e14015f61:4d08 - - 16 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 50 - 6 - - - - 1 - - - - 324 + + false + (Looking upstream) + + true + 1 + true + Label + 110 + false + 170 + 6 + + xia_slit_full.opi true - 1 + 0 more + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + + + + + true + true + false + + + + MORE + false $(pv_name) $(pv_value) + true + Action Button + 50 250 + 324 - - true - true - 1 - false - 39872d87:13e14015f61:4d09 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)v0.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)v0.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 242 false - $(pv_name) -$(pv_value) 204 + 242 - - true - true - 1 - false - 39872d87:13e14015f61:4d0a + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)height.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)height.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 242 false - $(pv_name) -$(pv_value) 14 + 242 - - true - true - 1 - false - 39872d87:13e14015f61:4d0b + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)h0.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)h0.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 37 false - $(pv_name) -$(pv_value) 204 + 37 - - true - true - 1 - false - 39872d87:13e14015f61:4d0c + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)width.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)width.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 37 false - $(pv_name) -$(pv_value) 14 + 37 - - false - true - 39872d87:13e14015f61:4d14 - - 20 - Action Button - false - - true - true - false - - $(P)$(HSC)l_tweak.A - - - - - - - Action Button - true - < - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 184 + $(P)$(HSC)l_tweak.A 1 10 + - $(pv_name) -$(pv_value) - 25 - - - false - true - 1 - false - false - - 16 - false - true + false + false - + - Text Input + false + + + + 0 + 1 true - - + Default - 50 - 3 + false + + + + 20 + + Action Button + 0 + $(P)$(HSC)l_tweak.A - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4d15 - 0.0 - Text Input + true true false - 1 - false - 0 - $(P)$(HSC)l_tweakVal.VAL - - - + + + < + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 25 + 184 + + + + false + false false - 0 - - - false + + + + false + 3 + 1 + + true + + + + false + + + + 1 + 16 0 - - 186 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(HSC)l_tweakVal.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 44 + 186 - + + + + $(P)$(HSC)l_tweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4d16 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(HSC)l_tweak.B + + true true false - $(P)$(HSC)l_tweak.B - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 184 - - - $(P)$(HSC)l_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 93 + 184 - - true - true - 1 - false - 39872d87:13e14015f61:4d17 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)l.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)l.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 135 false - $(pv_name) -$(pv_value) 29 + 135 - - true - true - 1 - false - 39872d87:13e14015f61:4d18 + + + false false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(HSC)lRB + false - + - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 + true + 0 + 1 + true + + + + false + + + + 1 + 14 0 - - 143 - false + Text Update + 0 + true + $(P)$(HSC)lRB + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 60 + false 29 + 143 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4d19 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)l.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)l.VAL - - - - false - 0 - - - false - - - - 0 - - 156 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 29 + 156 - - true - true - 1 - false - 39872d87:13e14015f61:4d1a + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)l.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)l.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 176 false - $(pv_name) -$(pv_value) 29 + 176 - - false - true - false - 39872d87:13e14015f61:4d1b - - 16 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 16 - 6 - - - - 1 - - - - 205 + scanParmsCustom.opi @@ -1677,501 +1655,517 @@ $(pv_value) $(HSC)l $(HSC)l.EGU - 0 + 1 Setup scan parameters + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + + + + + true + true + false + + + + + false $(pv_name) $(pv_value) + true + Action Button + 16 44 + 205 - - true - 1 - 39872d87:13e14015f61:4d1c + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true Scan - - - - 30 - 0 - - 1 - - - - 0 - - 206 - true + true + 1 + true + Label + 30 + false 64 + 206 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4d1f - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)r.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)r.VAL - - - - false - 0 - - - false - - - - 0 - - 156 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 189 + 156 - - true - true - 1 - false - 39872d87:13e14015f61:4d20 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)r.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)r.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 176 false - $(pv_name) -$(pv_value) 189 + 176 - + + + + $(P)$(HSC)r_tweak.A + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4d21 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(HSC)r_tweak.A + + true true false - $(P)$(HSC)r_tweak.A - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 184 - - - $(P)$(HSC)r_tweak.A - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 185 + 184 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4d22 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)r_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)r_tweakVal.VAL - - - - false - 0 - - - false + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 50 + 204 + 186 + + + + + $(P)$(HSC)r_tweak.B + 1 + 10 + + + + + false + false + + + + false - 0 - - 186 - $(pv_name) -$(pv_value) - 204 - - - false - true - 39872d87:13e14015f61:4d23 - + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(HSC)r_tweak.B + + true true false - $(P)$(HSC)r_tweak.B - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 184 - - - $(P)$(HSC)r_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 253 + 184 - - true - true - 1 - false - 39872d87:13e14015f61:4d24 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)r.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)r.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 135 false - $(pv_name) -$(pv_value) 189 + 135 - - true - true - 1 - false - 39872d87:13e14015f61:4d25 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(HSC)rRB + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)rRB - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 0 - - 143 false - $(pv_name) -$(pv_value) 189 + 143 - - true - 1 - 39872d87:13e14015f61:4d26 + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - Scan - - - - 30 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 206 - true - - 224 - - - false - true - false - 39872d87:13e14015f61:4d27 - - 16 - Menu Button - false + Label + true true false - - false - - - - - - - - Menu Button - true - false - - Default - - 16 - 6 - - - - 1 - - - - 205 + + + false + Scan + + true + 1 + true + Label + 30 + false + 224 + 206 + + scanParmsCustom.opi @@ -2182,1026 +2176,1064 @@ $(pv_value) $(HSC)r $(HSC)r.EGU - 0 + 1 Setup scan parameters + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + + + + + true + true + false + + + + + false $(pv_name) $(pv_value) + true + Action Button + 16 204 + 205 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4d28 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)t.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)t.VAL - - - - false - 0 - - - false - - - - 0 - - 76 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 109 + 76 - - true - true - 1 - false - 39872d87:13e14015f61:4d29 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)t.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)t.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 96 false - $(pv_name) -$(pv_value) 109 + 96 - - true - true - 1 - false - 39872d87:13e14015f61:4d2a + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)t.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)t.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 55 false - $(pv_name) -$(pv_value) 109 + 55 - - true - true - 1 - false - 39872d87:13e14015f61:4d2b + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(HSC)tRB + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)tRB - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 0 - - 63 false - $(pv_name) -$(pv_value) 109 + 63 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4d2c - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)b.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)b.VAL - - - - false - 0 - - - false - - - - 0 - - 251 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 109 + 251 - - true - true - 1 - false - 39872d87:13e14015f61:4d2d + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)b.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)b.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 271 false - $(pv_name) -$(pv_value) 109 + 271 - + + + + $(P)$(HSC)b_tweak.A + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4d2e - + + + + 0 + 1 + true + + Default + + false + + + 19 + Action Button - false + 0 + $(P)$(HSC)b_tweak.A + + true true false - $(P)$(HSC)b_tweak.A - - - - - - - Action Button - true + + DN - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 279 - - - $(P)$(HSC)b_tweak.A - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 104 + 279 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4d2f - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)b_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)b_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 280 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 124 + 280 - + + + + $(P)$(HSC)b_tweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4d30 - + + + + 0 + 1 + true + + Default + + false + + + 19 + Action Button - false + 0 + $(P)$(HSC)b_tweak.B + + true true false - $(P)$(HSC)b_tweak.B - - - - - - - Action Button - true + + UP - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 279 - - - $(P)$(HSC)b_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 174 + 279 - - true - true - 1 - false - 39872d87:13e14015f61:4d31 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)b.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)b.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 230 false - $(pv_name) -$(pv_value) 109 + 230 - - true - true - 1 - false - 39872d87:13e14015f61:4d32 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(HSC)bRB + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)bRB - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 0 - - 238 false - $(pv_name) -$(pv_value) 109 + 238 - + + + + $(P)$(HSC)width_tweak.A + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4d33 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(HSC)width_tweak.A + + true true false - $(P)$(HSC)width_tweak.A - - - - - - - Action Button - true + + - - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 86 - - - $(P)$(HSC)width_tweak.A - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 10 + 86 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4d34 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)width_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)width_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 88 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 29 + 88 - + + + + $(P)$(HSC)width_tweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4d35 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(HSC)width_tweak.B + + true true false - $(P)$(HSC)width_tweak.B - - - - - - - Action Button - true + + + - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 86 - - - $(P)$(HSC)width_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 78 + 86 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4d36 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)width.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)width.VAL - - - - false - 0 - - - false - - - - 0 - - 58 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 14 + 58 - - true - true - 1 - false - 39872d87:13e14015f61:4d37 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)width.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)width.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 78 false - $(pv_name) -$(pv_value) 14 + 78 - - true - true - 1 - false - 39872d87:13e14015f61:4d38 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(HSC)widthRB + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)widthRB - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 0 - - 45 false - $(pv_name) -$(pv_value) 14 + 45 - - true - 1 - 39872d87:13e14015f61:4d39 + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - H SIZE - - - - 80 - 0 - - 1 - 1 - - 25 - true - - 14 - - - true - 1 - 39872d87:13e14015f61:4d3a - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + H SIZE + + true + 1 + true + Label + 80 + false + 14 + 25 + + + + false - - - - Label - true - Scan - - - - 30 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 106 - true - - 239 - - - false - true - false - 39872d87:13e14015f61:4d3b - - 16 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 16 - 6 - - - - 1 - - - - 105 + + false + Scan + + true + 1 + true + Label + 30 + false + 239 + 106 + + scanParmsCustom.opi @@ -3209,96 +3241,97 @@ $(pv_value) true $(HSC)h0 $(HSC)h0 - $(HSC)h0 - $(HSC)h0.EGU - - 0 - Setup scan parameters - - - $(pv_name) -$(pv_value) - 219 - - - true - 1 - 39872d87:13e14015f61:4d3c - false - - 14 - Label - - true - true - false - - true - false + $(HSC)h0 + $(HSC)h0.EGU + + 1 + Setup scan parameters + + + false + false - + - - - - Label - true - Scan - - - - 30 - 0 - - 1 + false - 0 - - 106 - true - - 49 -
- - false - true - false - 39872d87:13e14015f61:4d3d - - 16 - Menu Button + 0 + 1 + true + + Default + false + + + + 16 + + Action Button + 0 + + + true true false - false - + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 16 + 219 + 105 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 16 - 6 - + + + + 14 + 0 + Label - - 1 - - - - 105 + + true + true + false + + + false + Scan + + true + 1 + true + Label + 30 + false + 49 + 106 + + scanParmsCustom.opi @@ -3309,1164 +3342,1210 @@ $(pv_value) $(HSC)width $(HSC)width.EGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 29 - - - false - true - 39872d87:13e14015f61:4d3e - - 20 - Action Button - false - - true - true - false - - $(P)$(HSC)h0_tweak.A + false + false - + - - - - Action Button + false + + + + 0 + 1 true - < - false - Default + Default - 20 - 0 - 0 + false + + + + 16 - + Action Button + 0 + + + + true + true + false + + + + false - 1 - - - - 86 + $(pv_name) +$(pv_value) + true + Action Button + 16 + 29 + 105 + + $(P)$(HSC)h0_tweak.A 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 20 + + Action Button + 0 + $(P)$(HSC)h0_tweak.A + + + + true + true + false + + + + < + false $(pv_name) $(pv_value) + true + Action Button + 20 200 + 86 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4d3f - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)h0_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)h0_tweakVal.VAL - - - + false + true + false + false + + + $(pv_name) +$(pv_value) + false + true + Text Input + 50 + 219 + 88 + + + + + $(P)$(HSC)h0_tweak.B + 1 + 10 + + + + + false false - 0 - - - false + + + + false - 0 - - 88 - $(pv_name) -$(pv_value) - 219 - - - false - true - 39872d87:13e14015f61:4d40 - + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(HSC)h0_tweak.B + + true true false - $(P)$(HSC)h0_tweak.B - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 86 - - - $(P)$(HSC)h0_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 268 + 86 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4d41 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)h0.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)h0.VAL - - - - false - 0 - - - false - - - - 0 - - 58 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 204 + 58 - - true - true - 1 - false - 39872d87:13e14015f61:4d42 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)h0.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)h0.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 78 false - $(pv_name) -$(pv_value) 204 + 78 - - true - true - 1 - false - 39872d87:13e14015f61:4d43 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(HSC)h0RB + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)h0RB - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 0 - - 45 false - $(pv_name) -$(pv_value) 204 + 45 - - true - 1 - 39872d87:13e14015f61:4d44 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false - - - - - - - Label - true H CENTER - - - - 80 - 0 - - 1 - - - - 1 - - 25 - true + true + 1 + true + Label + 80 + false 204 + 25 - + + + + $(P)$(HSC)v0_tweak.A + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4d45 - + + + + 0 + 1 + true + + Default + + false + + + 19 + Action Button - false + 0 + $(P)$(HSC)v0_tweak.A + + true true false - $(P)$(HSC)v0_tweak.A - - - - - - - Action Button - true + + DN - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 291 - - - $(P)$(HSC)v0_tweak.A - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 200 + 291 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4d46 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)v0_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)v0_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 292 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 219 + 292 - + + + + $(P)$(HSC)v0_tweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4d47 - + + + + 0 + 1 + true + + Default + + false + + + 19 + Action Button - false + 0 + $(P)$(HSC)v0_tweak.B + + true true false - $(P)$(HSC)v0_tweak.B - - - - - - - Action Button - true + + UP - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 291 - - - $(P)$(HSC)v0_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 268 + 291 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4d48 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)v0.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)v0.VAL - - - - false - 0 - - - false - - - - 0 - - 263 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 204 + 263 - - true - true - 1 - false - 39872d87:13e14015f61:4d49 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)v0.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)v0.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 283 false - $(pv_name) -$(pv_value) 204 + 283 - - true - true - 1 - false - 39872d87:13e14015f61:4d4a + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(HSC)v0RB + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)v0RB - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 0 - - 250 false - $(pv_name) -$(pv_value) 204 + 250 - - true - 1 - 39872d87:13e14015f61:4d4b + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - V CENTER - - - - 80 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 1 - - 230 - true - - 204 - - - false - true - 39872d87:13e14015f61:4d4c - - 20 - Action Button - false + Label + true true false - $(P)$(HSC)height_tweak.A + + false + V CENTER + + true + 1 + true + Label + 80 + false + 204 + 230 + + + + + $(P)$(HSC)height_tweak.A + 1 + 10 + + + + + false + false - + - - - - Action Button + false + + + + 0 + 1 true - - - false - Default + Default - 20 - 0 - 0 + false + + + + 20 - + Action Button + 0 + $(P)$(HSC)height_tweak.A + + + true + true + false + + + + - false - 1 - - - - 291 - - - $(P)$(HSC)height_tweak.A - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 10 + 291 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4d4d - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)height_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)height_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 293 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 29 + 293 - + + + + $(P)$(HSC)height_tweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4d4e - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(HSC)height_tweak.B + + true true false - $(P)$(HSC)height_tweak.B - - - - - - - Action Button - true + + + - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 291 - - - $(P)$(HSC)height_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 78 + 291 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4d4f - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)height.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)height.VAL - - - - false - 0 - - - false - - - - 0 - - 263 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 14 + 263 - - true - true - 1 - false - 39872d87:13e14015f61:4d50 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)height.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)height.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 283 false - $(pv_name) -$(pv_value) 14 + 283 - - true - true - 1 - false - 39872d87:13e14015f61:4d51 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(HSC)heightRB + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)heightRB - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 0 - - 250 false - $(pv_name) -$(pv_value) 14 + 250 - - true - 1 - 39872d87:13e14015f61:4d52 + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - V SIZE - - - - 80 - 0 - - 1 - 1 - - 230 - true - - 14 - - - true - 1 - 39872d87:13e14015f61:4d53 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + V SIZE + + true + 1 + true + Label + 80 + false + 14 + 230 + + + + false - - - - Label - true - Scan - - - - 30 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 131 - true - - 144 - - - false - true - false - 39872d87:13e14015f61:4d54 - - 16 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 16 - 6 - - - - 1 - - - - 130 + + false + Scan + + true + 1 + true + Label + 30 + false + 144 + 131 + + scanParmsCustom.opi @@ -4477,93 +4556,94 @@ $(pv_value) $(HSC)t $(HSC)t.EGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 124 - - - true - 1 - 39872d87:13e14015f61:4d55 - false - - 14 - Label - - true - true - false - - true - false + false + false - + - - - - Label - true - Scan - - - - 30 - 0 - - 1 - - - - 0 - - 206 - true - - 144 - - false - true - false - 39872d87:13e14015f61:4d56 - - 16 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 16 + + Action Button + 0 + + + true true false - false - + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 16 + 124 + 130 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 16 - 6 - + + + + 14 + 0 + Label - - 1 - - - - 205 + + true + true + false + + + false + Scan + + true + 1 + true + Label + 30 + false + 144 + 206 + + scanParmsCustom.opi @@ -4574,93 +4654,94 @@ $(pv_value) $(HSC)b $(HSC)b.EGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 124 - - - true - 1 - 39872d87:13e14015f61:4d57 - false - - 14 - Label - - true - true - false - - true - false + false + false - + - - - - Label - true - Scan - - - - 30 - 0 - - 1 + false - 0 - - 311 - true - - 239 - - - false - true - false - 39872d87:13e14015f61:4d58 - - 16 - Menu Button + 0 + 1 + true + + Default + false + + + + 16 + + Action Button + 0 + + + true true false - false - + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 16 + 124 + 205 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 16 - 6 - + + + + 14 + 0 + Label - - 1 - - - - 310 + + true + true + false + + + false + Scan + + true + 1 + true + Label + 30 + false + 239 + 311 + + scanParmsCustom.opi @@ -4671,93 +4752,94 @@ $(pv_value) $(HSC)v0 $(HSC)v0.EGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 219 - - - true - 1 - 39872d87:13e14015f61:4d59 - false - - 14 - Label + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + + + true true false - true - false + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 16 + 219 + 310 + + + + false - - - - Label - true - Scan - - - - 30 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 311 - true - - 49 - - - false - true - false - 39872d87:13e14015f61:4d5a - - 16 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 16 - 6 - - - - 1 - - - - 310 + + false + Scan + + true + 1 + true + Label + 30 + false + 49 + 311 + + scanParmsCustom.opi @@ -4768,782 +4850,835 @@ $(pv_value) $(HSC)height $(HSC)height.EGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 29 - - - false - true - 39872d87:13e14015f61:4d5b - - 22 - Action Button - false - - true - true - false - - $(P)$(HSC)locate + false + false - + - - - - Action Button + false + + + + 0 + 1 true - Sync - false - Default + Default - 60 - 0 - 0 + false + + + + 16 - + Action Button + 0 + + + + true + true + false + + + + false - 1 - - - - 303 + $(pv_name) +$(pv_value) + true + Action Button + 16 + 29 + 310 + + $(P)$(HSC)locate 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 22 + + Action Button + 0 + $(P)$(HSC)locate + + + + true + true + false + + + + Sync + false $(pv_name) $(pv_value) + true + Action Button + 60 119 + 303 - - true - true - 1 - false - 39872d87:13e14015f61:4d5c + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 20 + 1 Text Update - false + 0 + true + $(P)$(HSC)h_Busy + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)h_Busy - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 1 - - 155 false - $(pv_name) -$(pv_value) 120 + 155 - - true - true - 1 - false - 39872d87:13e14015f61:4d5d + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 2 Text Update - false + 0 + true + $(P)$(HSC)widthRB.EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)widthRB.EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 20 - 0 - - - 1 + false + 75 + 45 + + + + false + false + false + + + + true - 0 - - 45 - false - $(pv_name) -$(pv_value) - 75 - - - true - true - 1 - false - 39872d87:13e14015f61:4d5e - false - 0.0 - + 0 + 1 + true + + + + false + + + + 1 14 + 2 Text Update - false + 0 + true + $(P)$(HSC)lRB.EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)lRB.EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 20 - 0 - - - 1 - - - - 0 - - 143 false - $(pv_name) -$(pv_value) 90 + 143 - - true - true - 1 - false - 39872d87:13e14015f61:4d5f + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 2 Text Update - false + 0 + true + $(P)$(HSC)heightRB.EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)heightRB.EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 20 - 0 - - - 1 - - - - 0 - - 250 false - $(pv_name) -$(pv_value) 75 + 250 - - true - true - 1 - false - 39872d87:13e14015f61:4d60 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 2 Text Update - false + 0 + true + $(P)$(HSC)tRB.EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)tRB.EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 20 - 0 - - - 1 - - - - 0 - - 63 false - $(pv_name) -$(pv_value) 170 + 63 - - true - true - 1 - false - 39872d87:13e14015f61:4d61 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 2 Text Update - false + 0 + true + $(P)$(HSC)h0RB.EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)h0RB.EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 20 - 0 - - - 1 + false + 265 + 45 + + + + false + false + false + + + + true - 0 - - 45 - false - $(pv_name) -$(pv_value) - 265 - - - true - true - 1 - false - 39872d87:13e14015f61:4d62 - false - 0.0 - + 0 + 1 + true + + + + false + + + + 1 14 + 2 Text Update - false + 0 + true + $(P)$(HSC)rRB.EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)rRB.EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 20 - 0 - - - 1 - - - - 0 - - 143 false - $(pv_name) -$(pv_value) 250 + 143 - - true - true - 1 - false - 39872d87:13e14015f61:4d63 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(HSC)bRB.EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)bRB.EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 20 - 0 - - - 1 - - - - 0 - - 238 false - $(pv_name) -$(pv_value) 170 + 238 - - true - true - 1 - false - 39872d87:13e14015f61:4d64 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 2 Text Update - false + 0 + true + $(P)$(HSC)v0RB.EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)v0RB.EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 20 - 0 - - - 1 - - - - 0 - - 250 false - $(pv_name) -$(pv_value) 265 + 250 - + + + + $(P)$(HSC)stop + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4d65 - + + + + 0 + 1 + true + + Default + + false + + + 27 + Action Button - false + 0 + $(P)$(HSC)stop + + true true false - $(P)$(HSC)stop - - - - - - - Action Button - true + + STOP - false - - Default - - 60 - 0 - 0 - - - false - 1 - - - - 23 - - - $(P)$(HSC)stop - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 60 119 + 23 - - true - true - 1 - false - 39872d87:13e14015f61:4d66 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 20 + 1 Text Update - false + 0 + true + $(P)$(HSC)v_Busy + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)v_Busy - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 1 - - 181 false - $(pv_name) -$(pv_value) 120 + 181 - + + + + $(P)$(HSC)t_tweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4d67 - + + + + 0 + 1 + true + + Default + + false + + + 19 + Action Button - false + 0 + $(P)$(HSC)t_tweak.B + + true true false - $(P)$(HSC)t_tweak.B - - - - - - - Action Button - true + + UP - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 104 - - - $(P)$(HSC)t_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 174 + 104 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4d68 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)t_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)t_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 105 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 124 + 105 - + + + + $(P)$(HSC)t_tweak.A + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4d69 - + + + + 0 + 1 + true + + Default + + false + + + 19 + Action Button - false + 0 + $(P)$(HSC)t_tweak.A + + true true false - $(P)$(HSC)t_tweak.A - - - - - - - Action Button - true + + DN - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 104 - - - $(P)$(HSC)t_tweak.A - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 104 + 104 -
\ No newline at end of file + diff --git a/opticsApp/op/opi/xia_slit_calib.opi b/opticsApp/op/opi/autoconvert/xia_slit_calib.opi similarity index 84% rename from opticsApp/op/opi/xia_slit_calib.opi rename to opticsApp/op/opi/autoconvert/xia_slit_calib.opi index 6735f0b..18f05f7 100644 --- a/opticsApp/op/opi/xia_slit_calib.opi +++ b/opticsApp/op/opi/autoconvert/xia_slit_calib.opi @@ -1,678 +1,667 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 310 true - 39872d87:13e14015f61:4dda - 3.1.2.20120830 + xia_slit_calib + + true + true + false true - 310 - xia_slit_calib false - false - - - - - - Display - true 400 - - true - 5 - - false - -1 - -1 - - - 153 71 - - true - 1 - 39872d87:13e14015f61:4ddb + 153 + + false - + + + + + + + 0 + 1 + true + + + + + + 22 + 1 Label + true true false - true + false + Huber Slit Controller $(P)$(HSC) + + true + 1 + true + Label + 380 + false + 10 + 17 + + + + false - - - - Label - true - Huber Slit Controller $(P)$(HSC) - - - - 380 - 0 - - 1 - 1 - - 17 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:4ddc - false - + 0 + 1 + true + + + + + + 8 + 0 Label + true true false - true + false + xiahsc.adl edited: 1999-Dec-08 (prj) + + true + 1 + true + Label + 380 + false + 10 + 4 + + + + false - - - - Label - true - xiahsc.adl edited: 1999-Dec-08 (prj) - - - - 380 - 0 - - 1 - 0 - - 4 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:4ddd - false - + 0 + 1 + true + + + + + + 18 + 0 Label + true true false - true + false + Instructions + + true + 1 + true + Label + 380 + false + 10 + 71 + + + + false - - - - Label - true - Instructions - - - - 380 - 0 - - 1 - 0 - - 71 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:4dde - false - + 0 + 1 + true + + + + + + 22 + 1 Label + true true false - true + false + Calibration + + true + 1 + true + Label + 380 + false + 10 + 44 + + + + false - - - - Label - true - Calibration - - - - 380 - 0 - - 1 - 1 - - 44 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:4ddf - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + step 2: unplug power supply from slit cable + + true + 1 + true + Label + 380 + false + 10 + 114 + + + + false - - - - Label - true - step 2: unplug power supply from slit cable - - - - 380 - 0 - - 1 - 0 - - 114 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:4de0 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + step 3: manually close the slits to 0 + + true + 1 + true + Label + 380 + false + 10 + 133 + + + + false - - - - Label - true - step 3: manually close the slits to 0 - - - - 380 - 0 - - 1 - 0 - - 133 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:4de1 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + step 4: plug the power cable back in + + true + 1 + true + Label + 380 + false + 10 + 152 + + + + false - - - - Label - true - step 4: plug the power cable back in - - - - 380 - 0 - - 1 - 0 - - 152 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:4de2 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + step 1: disable slit software + + true + 1 + true + Label + 380 + false + 10 + 95 + + + + false - - - - Label - true - step 1: disable slit software - - - - 380 - 0 - - 1 - 0 - - 95 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:4de3 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true step 5: enable slit software - - - - 380 - 0 - - 1 - - - - 0 - - 171 - true + true + 1 + true + Label + 380 + false 10 + 171 - + + + + $(P)$(HSC)calib + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4de4 - + + + + 0 + 1 + true + + Default + + false + + + 22 + Action Button - false + 0 + $(P)$(HSC)calib + + true true false - $(P)$(HSC)calib - - - - - - - Action Button - true + + calibrate - false - - Default - - 140 - 0 - 0 - - - false - 1 - - - - 209 - - - $(P)$(HSC)calib - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 140 130 + 209 - - true - 1 - 39872d87:13e14015f61:4de5 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + step 7: you are done + + true + 1 + true + Label + 380 + false + 10 + 236 + + + + false - - - - Label - true - step 7: you are done - - - - 380 - 0 - - 1 - 0 - - 236 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:4de6 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + step 6: press the calibrate button below + + true + 1 + true + Label + 380 + false + 10 + 190 + + + + false - - - - Label - true - step 6: press the calibrate button below - - - - 380 - 0 - - 1 - 0 - - 190 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:4de7 - false - + 0 + 1 + true + + + + + + 14 + 2 Label + true true false - true + false - - - - - - - Label - true serial port: - - - - 147 - 0 - - 1 - - - - 1 - - 282 - true + true + 1 + true + Label + 147 + false 10 + 282 - - true - true - 1 - false - 39872d87:13e14015f61:4de8 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(HSC)port + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)port - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 221 - 0 - - - 1 - - - - 0 - - 282 false - $(pv_name) -$(pv_value) 169 + 282 - - false - true - 39872d87:13e14015f61:4de9 - - 38 - Choice Button - false - - true - true - false - - $(P)$(HSC)enable + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 82 - 0 - - - - - + false + + + + 38 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 62 + Choice Button + $(P)$(HSC)enable + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 82 301 + 62 - \ No newline at end of file + diff --git a/opticsApp/op/opi/xia_slit_full.opi b/opticsApp/op/opi/autoconvert/xia_slit_full.opi similarity index 82% rename from opticsApp/op/opi/xia_slit_full.opi rename to opticsApp/op/opi/autoconvert/xia_slit_full.opi index e692204..184cc4f 100644 --- a/opticsApp/op/opi/xia_slit_full.opi +++ b/opticsApp/op/opi/autoconvert/xia_slit_full.opi @@ -1,420 +1,418 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 460 true - 39872d87:13e14015f61:4dfb - 3.1.2.20120830 + xia_slit_full + + true + true + false true - 460 - xia_slit_full false - false - - - - - - Display - true 300 - - true - 5 - - false - -1 - -1 - - - 337 551 - + 337 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 20 + true - 39872d87:13e14015f61:4dfc - - - - - 20 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 300 + 0 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 300 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 100.0 + 100 + true - 39872d87:13e14015f61:4e13 - - - - - 100 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 100 + 99 + 125 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 100 - 0 - 0 - - - 1 - 0 - true - - - - - 125 - $(pv_name) -$(pv_value) - 99 + false + + + false - - - false - true - 100.0 + 100 + true - 39872d87:13e14015f61:4e1a - - - - - 100 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 100 + 19 + 125 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 + false + + + + false + 100 + true + + + 0 - 0 - + 2 + Rectangle + - 1 - 0 - true - - - - - 125 - $(pv_name) -$(pv_value) - 19 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4e1b - - - - - 100 - true - Rectangle - false - 255 + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 100 + 19 + 125 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 100 - 0 - 0 - - - 1 - 2 - true - - - - - 125 - $(pv_name) -$(pv_value) - 19 + false + + + false - - - false - true - 100.0 + 100 + true - 39872d87:13e14015f61:4e25 - - - - - 100 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle - true - - - - false - - Default - 100 - 0 - 0 - - - 1 - 0 - true - - - - - 125 - $(pv_name) -$(pv_value) 179 - false + 125 - - false - true - 0.0 - - - - 39872d87:13e14015f61:4e26 - - - - - 100 - true - Rectangle - false + + + false 255 - - true - true - false - - true - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 - 0 - 0 - - - 1 - 2 - true - - - - - 125 - $(pv_name) -$(pv_value) - 179 + false + + + false - - - false - true - 0.0 + 100 + true - + - 39872d87:13e14015f61:4e72 - - - - - 75 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 100 + 179 + 125 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 + false + + + + false + 75 + true + + + 0 - 0 + 4 + Rectangle + + @@ -426,62 +424,62 @@ $(pv_value) $(P)$(HSC)v_Busy - - 1 - 4 - true - - - - - 50 - $(pv_name) -$(pv_value) - 99 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4e73 - - - - - 75 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 100 + 99 + 50 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 + false + + + + false + 75 + true + + + 0 - 0 + 4 + Rectangle + + @@ -493,62 +491,62 @@ $(pv_value) $(P)$(HSC)v_Busy - - 1 - 4 - true - - - - - 225 - $(pv_name) -$(pv_value) - 99 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4e74 - - - - - 82 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 100 + 99 + 225 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 + false + + + + false + 82 + true + + + 0 - 0 + 4 + Rectangle + + @@ -560,62 +558,62 @@ $(pv_value) $(P)$(HSC)h_Busy - - 1 - 4 - true - - - - - 125 - $(pv_name) -$(pv_value) - 19 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:4e75 - - - - - 82 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) true - + true + Rectangle + 100 + 19 + 125 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 + false + + + + false + 82 + true + + + 0 - 0 + 4 + Rectangle + + @@ -627,1950 +625,1942 @@ $(pv_value) $(P)$(HSC)h_Busy - - 1 - 4 - true - - - - - 125 + + true + true + false + + $(pv_name) $(pv_value) + true + true + Rectangle + 100 179 - false + 125 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 100 + false true - true - 39872d87:13e14015f61:4e14 - - 100 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 100 - 0 - - false - 1 - - - - - 200 - 99 - + 200 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 100 + true - 39872d87:13e14015f61:4e15 - - - - - 100 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 100 + 0 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 0.0 + 100 + true - + - 39872d87:13e14015f61:4e16 - - - - - 100 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - - - - - - - + true Rectangle - true - - - - false - - Default - 100 - 0 - 0 - - - 1 - 2 - true - - - - - 0 - $(pv_name) -$(pv_value) 0 - false + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 100 + false true - true - 39872d87:13e14015f61:4e17 - - 100 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 100 - 0 - - false - 1 - - - - - 50 - 99 - + 50 + + + false + 255 + true + false + + + + + + false - true + + + + 0 + 1 + true + + + 100.0 + + Default + + false + + + + false + 100 + true - 39872d87:13e14015f61:4e18 - - - - - 100 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 100 + 0 + 0 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 100 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 + false + + + false - - - false - true - 0.0 + 100 + true - + - 39872d87:13e14015f61:4e19 - - - - - 100 - true + 0 + 2 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) true - - - - - - - + true Rectangle - true - - - - false - - Default - 100 - 0 - 0 - - - 1 - 2 - true - - - - - 0 - $(pv_name) -$(pv_value) 0 - false + 0 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 46 + false true - true - 39872d87:13e14015f61:4e76 - - 46 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 60 - 0 - - false - 1 - - - - - 154 - 120 - - true - true - 1 - false - 39872d87:13e14015f61:4e77 + 154 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 20 + 1 Text Update - false + 0 + true + $(P)$(HSC)h_Busy + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)h_Busy - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 1 - - 0 false - $(pv_name) -$(pv_value) 0 + 0 - - true - true - 1 - false - 39872d87:13e14015f61:4e78 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 20 + 1 Text Update - false + 0 + true + $(P)$(HSC)v_Busy + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)v_Busy - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 1 - - 26 false - $(pv_name) -$(pv_value) 0 + 26 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4dfd - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 297 - 0 - 0 - - 1 - 1 - true - - - - - 21 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 297 1 + 21 - - true - 1 - 39872d87:13e14015f61:4dfe + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + $(SLIT) + + true + 1 + true + Label + 170 + false + 0 + 0 + + + + false - - - - Label - true - $(SLIT) - - - - 170 - 0 - - 1 - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:4dff - false - + 0 + 1 + true + + + + + + 12 + 1 Label + true true false - true + false - - - - - - - Label - true (Looking upstream) - - - - 110 - 0 - - 1 - - - - 1 - - 6 - true + true + 1 + true + Label + 110 + false 170 + 6 - - true - true - 1 - false - 39872d87:13e14015f61:4e00 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)$(HSC)errMsg + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)errMsg - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 170 - 0 - - - 1 - - - - 1 - - 335 false - $(pv_name) -$(pv_value) 117 + 335 - - true - true - 1 - false - 39872d87:13e14015f61:4e01 + + + false false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(HSC)error + false - + - - - - Text Update - true - ###### - false - 0 - - - - 40 - 0 - - - 1 + true - 1 - - 335 - false - $(pv_name) -$(pv_value) - 70 - - - true - 1 - 39872d87:13e14015f61:4e02 - false - + 0 + 1 + true + + + + false + + + + 1 14 - Label + 1 + Text Update + 0 + true + $(P)$(HSC)error + + 0.0 + true true false - true - false + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 40 + false + 70 + 335 + + + + false - - - - Label + + + + 0 + 1 true - error: - + - 59 - 0 + + + + 14 + 2 + Label - 1 - - - - 1 - - 335 - true - - 10 - - - false - true - 39872d87:13e14015f61:4e03 - - 18 - Action Button - false true true false - $(P)$(HSC)init - - - - - - - Action Button - true - init - false - - Default - + + false + error: + + true + 1 + true + Label 59 - 0 - 0 - - - - false - 1 - - - - 400 + false + 10 + 335 + + $(P)$(HSC)init 1 10 + - $(pv_name) -$(pv_value) - 10 - - + false + false + + + false - true - 39872d87:13e14015f61:4e04 - - 18 - Choice Button + + + + 0 + 1 + true + + Default + false + + + + 18 + + Action Button + 0 + $(P)$(HSC)init + + true true false - $(P)$(HSC)enable + + + init + false + $(pv_name) +$(pv_value) + true + Action Button + 59 + 10 + 400 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 140 - 0 - - - - - + false + + + + 18 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 400 + Choice Button + $(P)$(HSC)enable + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 140 71 + 400 - - true - 1 - 39872d87:13e14015f61:4e05 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 2 Label + true true false - true + false + hor. ID: + + true + 1 + true + Label + 59 + false + 11 + 356 + + + + false - - - - Label - true - hor. ID: - - - - 59 - 0 - - 1 - 1 - - 356 - true - - 11 - - - true - 1 - 39872d87:13e14015f61:4e06 - false - + 0 + 1 + true + + + + + + 14 + 2 Label + true true false - true + false - - - - - - - Label - true ver. ID: - - - - 59 - 0 - - 1 - - - - 1 - - 379 - true + true + 1 + true + Label + 59 + false 11 + 379 - - false - true - 39872d87:13e14015f61:4e07 - - 15 - Choice Button - false - - true - true - false - - $(P)$(HSC)hOrient + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 60 - 0 - - - - - + false + + + + 15 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 356 - $(pv_name) -$(pv_value) - 230 - - - false - true - 39872d87:13e14015f61:4e08 - - 15 Choice Button - false + $(P)$(HSC)hOrient + + true true false - $(P)$(HSC)vOrient + + + + + $(pv_name) +$(pv_value) + true + Choice Button + 60 + 230 + 356 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 60 - 0 - - - - - + false + + + + 15 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 379 + Choice Button + $(P)$(HSC)vOrient + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 60 230 + 379 - - false - true - 1 - false + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 150 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4e09 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)hID + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)hID - - - - false - 0 - - - false - - - - 0 - - 354 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 150 72 + 354 - - false - true - 1 - false + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 150 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4e0a - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)vID + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)vID - - - - false - 0 - - - false - - - - 0 - - 377 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 150 72 + 377 - - false - true - false - 39872d87:13e14015f61:4e0b - - 18 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 70 - 6 - - - - 1 - - - - 400 + xia_slit_calib.opi true - 0 + 1 calibrate - $(pv_name) -$(pv_value) - 220 - - + false + false + + + false - true - false - 39872d87:13e14015f61:4e0c - - 16 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 18 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 50 - 6 - - - - 1 - - - - 424 + + + CALIBRATE + false + $(pv_name) +$(pv_value) + true + Action Button + 70 + 220 + 400 + + xia_slit.opi true - 1 + 0 more + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + + + + + true + true + false + + + + LESS + false $(pv_name) $(pv_value) + true + Action Button + 50 250 + 424 - - true - true - 1 - false - 39872d87:13e14015f61:4e0d + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 14 + 0 Text Update - false + 0 + true + $(P)$(HSC)port + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)port - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 170 - 0 - - - 1 - - - - 0 - - 422 false - $(pv_name) -$(pv_value) 72 + 422 - - true - 1 - 39872d87:13e14015f61:4e0e + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 2 Label + true true false - true + false - - - - - - - Label - true port: - - - - 59 - 0 - - 1 - - - - 1 - - 422 - true + true + 1 + true + Label + 59 + false 10 + 422 - - true - true - 1 - false - 39872d87:13e14015f61:4e0f + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)v0.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)v0.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 242 false - $(pv_name) -$(pv_value) 204 + 242 - - true - true - 1 - false - 39872d87:13e14015f61:4e10 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)height.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)height.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 242 false - $(pv_name) -$(pv_value) 14 + 242 - - true - true - 1 - false - 39872d87:13e14015f61:4e11 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)h0.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)h0.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 37 false - $(pv_name) -$(pv_value) 204 + 37 - - true - true - 1 - false - 39872d87:13e14015f61:4e12 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)width.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)width.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 37 false - $(pv_name) -$(pv_value) 14 + 37 - + + + + $(P)$(HSC)l_tweak.A + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4e1c - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(HSC)l_tweak.A + + true true false - $(P)$(HSC)l_tweak.A - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 184 - - - $(P)$(HSC)l_tweak.A - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 25 + 184 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4e1d - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)l_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)l_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 186 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 44 + 186 - + + + + $(P)$(HSC)l_tweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4e1e - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(HSC)l_tweak.B + + true true false - $(P)$(HSC)l_tweak.B - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 184 - - - $(P)$(HSC)l_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 93 + 184 - - true - true - 1 - false - 39872d87:13e14015f61:4e1f + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)l.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)l.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 135 false - $(pv_name) -$(pv_value) 29 + 135 - - true - true - 1 - false - 39872d87:13e14015f61:4e20 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(HSC)lRB + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)lRB - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 0 - - 143 false - $(pv_name) -$(pv_value) 29 + 143 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4e21 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)l.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)l.VAL - - - - false - 0 - - - false - - - - 0 - - 156 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 29 + 156 - - true - true - 1 - false - 39872d87:13e14015f61:4e22 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)l.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)l.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 176 false - $(pv_name) -$(pv_value) 29 + 176 - - false - true - false - 39872d87:13e14015f61:4e23 - - 16 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 16 - 6 - - - - 1 - - - - 205 + scanParmsCustom.opi @@ -2581,501 +2571,517 @@ $(pv_value) $(HSC)l $(HSC)l.EGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 44 - - - true - 1 - 39872d87:13e14015f61:4e24 - false - - 14 - Label - - true - true - false - - true - false + false + false - + - - - - Label + false + + + + 0 + 1 true - Scan - + Default - 30 - 0 + false + + + + 16 + + Action Button + 0 + + - 1 + + true + true + false + + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 16 + 44 + 205 + + + + false + + + + 0 + 1 + true + + + + + + + 14 0 - - 206 - true + Label + + + true + true + false + + + false + Scan + true + 1 + true + Label + 30 + false 64 + 206 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4e27 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)r.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)r.VAL - - - - false - 0 - - - false - - - - 0 - - 156 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 189 + 156 - - true - true - 1 - false - 39872d87:13e14015f61:4e28 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)r.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)r.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 176 false - $(pv_name) -$(pv_value) 189 + 176 - - false - true - 39872d87:13e14015f61:4e29 - - 20 - Action Button - false - - true - true - false - - $(P)$(HSC)r_tweak.A - - - - - - - Action Button - true - < - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 184 + $(P)$(HSC)r_tweak.A 1 10 + - $(pv_name) -$(pv_value) - 185 - - - false - true - 1 - false - false - - 16 - false - true + false + false - + - Text Input + false + + + + 0 + 1 true - - + Default - 50 - 3 + false + + + + 20 + + Action Button + 0 + $(P)$(HSC)r_tweak.A - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4e2a - 0.0 - Text Input + true true false - 1 - false - 0 - $(P)$(HSC)r_tweakVal.VAL - - - + + + < + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 185 + 184 + + + + false + false false - 0 - - - false + + + + false + 3 + 1 + + true + + + + false + + + + 1 + 16 0 - - 186 + false + Infinity + -Infinity + false + Text Input + 0 + false + 0 + true + $(P)$(HSC)r_tweakVal.VAL + + false + 0.0 + + + true + true + false + + + 0 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 204 + 186 - + + + + $(P)$(HSC)r_tweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4e2b - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(HSC)r_tweak.B + + true true false - $(P)$(HSC)r_tweak.B - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 184 - - - $(P)$(HSC)r_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 253 + 184 - - true - true - 1 - false - 39872d87:13e14015f61:4e2c + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)r.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)r.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 135 false - $(pv_name) -$(pv_value) 189 + 135 - - true - true - 1 - false - 39872d87:13e14015f61:4e2d + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(HSC)rRB + + 0.0 + true true false - 1 - true - false - $(P)$(HSC)rRB - - - - - - - Text Update - true + + false ###### - false - 0 - - - - 60 - 0 - - - 1 - - - - 0 - - 143 - false $(pv_name) $(pv_value) + false + 1 + true + Text Update + 60 + false 189 + 143 - - true - 1 - 39872d87:13e14015f61:4e2e + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - Scan - - - - 30 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 206 - true - - 224 - - - false - true - false - 39872d87:13e14015f61:4e2f - - 16 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 16 - 6 - - - - 1 - - - - 205 + + false + Scan + + true + 1 + true + Label + 30 + false + 224 + 206 + + scanParmsCustom.opi @@ -3086,1225 +3092,1272 @@ $(pv_value) $(HSC)r $(HSC)r.EGU - 0 + 1 Setup scan parameters + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + + + + + true + true + false + + + + + false $(pv_name) $(pv_value) + true + Action Button + 16 204 + 205 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4e30 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)t.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)t.VAL - - - - false - 0 - - - false - - - - 0 - - 76 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 109 + 76 - - true - true - 1 - false - 39872d87:13e14015f61:4e31 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)t.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)t.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 96 false - $(pv_name) -$(pv_value) 109 + 96 - + + + + $(P)$(HSC)t_tweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4e32 - + + + + 0 + 1 + true + + Default + + false + + + 19 + Action Button - false + 0 + $(P)$(HSC)t_tweak.B + + true true false - $(P)$(HSC)t_tweak.B - - - - - - - Action Button - true + + UP - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 104 - - - $(P)$(HSC)t_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 175 + 104 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4e33 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)t_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)t_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 105 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 124 + 105 - + + + + $(P)$(HSC)t_tweak.A + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4e34 - + + + + 0 + 1 + true + + Default + + false + + + 19 + Action Button - false + 0 + $(P)$(HSC)t_tweak.A + + true true false - $(P)$(HSC)t_tweak.A - - - - - - - Action Button - true + + DN - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 104 - - - $(P)$(HSC)t_tweak.A - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 104 + 104 - - true - true - 1 - false - 39872d87:13e14015f61:4e35 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)t.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)t.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 55 false - $(pv_name) -$(pv_value) 109 + 55 - - true - true - 1 - false - 39872d87:13e14015f61:4e36 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(HSC)tRB + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)tRB - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 0 - - 63 false - $(pv_name) -$(pv_value) 109 + 63 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4e37 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)b.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)b.VAL - - - - false - 0 - - - false - - - - 0 - - 251 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 109 + 251 - - true - true - 1 - false - 39872d87:13e14015f61:4e38 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)b.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)b.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 271 false - $(pv_name) -$(pv_value) 109 + 271 - - false - true - 39872d87:13e14015f61:4e39 - - 19 - Action Button - false - - true - true - false - - $(P)$(HSC)b_tweak.A - - - - - - - Action Button - true - DN - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 279 + $(P)$(HSC)b_tweak.A 1 10 + - $(pv_name) -$(pv_value) - 104 - - + false + false + + + false - true - 1 - false - false - - 16 + + + + 0 + 1 + true + + Default + false - true + + + + 19 + + Action Button + 0 + $(P)$(HSC)b_tweak.A + + + + true + true + false + + + + DN + false + $(pv_name) +$(pv_value) + true + Action Button + 20 + 104 + 279 + + + + false + false + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4e3a - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)b_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)b_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 280 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 124 + 280 - + + + + $(P)$(HSC)b_tweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4e3b - + + + + 0 + 1 + true + + Default + + false + + + 19 + Action Button - false + 0 + $(P)$(HSC)b_tweak.B + + true true false - $(P)$(HSC)b_tweak.B - - - - - - - Action Button - true + + UP - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 279 - - - $(P)$(HSC)b_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 175 + 279 - - true - true - 1 - false - 39872d87:13e14015f61:4e3c + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)b.DRVH + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)b.DRVH - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 230 false - $(pv_name) -$(pv_value) 109 + 230 - - true - true - 1 - false - 39872d87:13e14015f61:4e3d + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(HSC)bRB + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)bRB - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 0 - - 238 false - $(pv_name) -$(pv_value) 109 + 238 - + + + + $(P)$(HSC)width_tweak.A + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4e3e - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(HSC)width_tweak.A + + true true false - $(P)$(HSC)width_tweak.A - - - - - - - Action Button - true + + - - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 86 - - - $(P)$(HSC)width_tweak.A - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 10 + 86 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4e3f - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)width_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)width_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 88 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 29 + 88 - + + + + $(P)$(HSC)width_tweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4e40 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(HSC)width_tweak.B + + true true false - $(P)$(HSC)width_tweak.B - - - - - - - Action Button - true + + + - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 86 - - - $(P)$(HSC)width_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 78 + 86 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4e41 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)width.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)width.VAL - - - - false - 0 - - - false - - - - 0 - - 58 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 14 + 58 - - true - true - 1 - false - 39872d87:13e14015f61:4e42 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)width.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)width.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 78 false - $(pv_name) -$(pv_value) 14 + 78 - - true - true - 1 - false - 39872d87:13e14015f61:4e43 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(HSC)widthRB + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)widthRB - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 0 - - 45 false - $(pv_name) -$(pv_value) 14 + 45 - - true - 1 - 39872d87:13e14015f61:4e44 + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - H SIZE - - - - 80 - 0 - - 1 - 1 - - 25 - true - - 14 - - - true - 1 - 39872d87:13e14015f61:4e45 - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + H SIZE + + true + 1 + true + Label + 80 + false + 14 + 25 + + + + false - - - - Label - true - Scan - - - - 30 - 0 - - 1 - 0 - - 106 - true - - 239 - - - true - 1 - 39872d87:13e14015f61:4e46 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + Scan + + true + 1 + true + Label + 30 + false + 239 + 106 + + + + false - - - - Label - true - Scan - - - - 30 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 106 - true - - 49 - - - false - true - false - 39872d87:13e14015f61:4e47 - - 16 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 16 - 6 - - - - 1 - - - - 105 + + false + Scan + + true + 1 + true + Label + 30 + false + 49 + 106 + + scanParmsCustom.opi @@ -4315,1164 +4368,1210 @@ $(pv_value) $(HSC)width $(HSC)width.EGU - 0 + 1 Setup scan parameters + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + + + + + true + true + false + + + + + false $(pv_name) $(pv_value) + true + Action Button + 16 29 + 105 - + + + + $(P)$(HSC)h0_tweak.A + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4e48 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(HSC)h0_tweak.A + + true true false - $(P)$(HSC)h0_tweak.A - - - - - - - Action Button - true + + < - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 86 - - - $(P)$(HSC)h0_tweak.A - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 200 + 86 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4e49 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)h0_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)h0_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 88 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 219 + 88 - + + + + $(P)$(HSC)h0_tweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4e4a - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(HSC)h0_tweak.B + + true true false - $(P)$(HSC)h0_tweak.B - - - - - - - Action Button - true + + > - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 86 - - - $(P)$(HSC)h0_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 268 + 86 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4e4b - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)h0.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)h0.VAL - - - - false - 0 - - - false - - - - 0 - - 58 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 204 + 58 - - true - true - 1 - false - 39872d87:13e14015f61:4e4c + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)h0.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)h0.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 78 false - $(pv_name) -$(pv_value) 204 + 78 - - true - true - 1 - false - 39872d87:13e14015f61:4e4d + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(HSC)h0RB + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)h0RB - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 0 - - 45 false - $(pv_name) -$(pv_value) 204 + 45 - - true - 1 - 39872d87:13e14015f61:4e4e + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false - - - - - - - Label - true H CENTER - - - - 80 - 0 - - 1 - - - - 1 - - 25 - true + true + 1 + true + Label + 80 + false 204 + 25 - + + + + $(P)$(HSC)v0_tweak.A + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4e4f - + + + + 0 + 1 + true + + Default + + false + + + 19 + Action Button - false + 0 + $(P)$(HSC)v0_tweak.A + + true true false - $(P)$(HSC)v0_tweak.A - - - - - - - Action Button - true + + DN - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 291 - - - $(P)$(HSC)v0_tweak.A - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 200 + 291 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4e50 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)v0_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)v0_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 292 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 219 + 292 - + + + + $(P)$(HSC)v0_tweak.B + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4e51 - + + + + 0 + 1 + true + + Default + + false + + + 19 + Action Button - false + 0 + $(P)$(HSC)v0_tweak.B + + true true false - $(P)$(HSC)v0_tweak.B - - - - - - - Action Button - true + + UP - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 291 - - - $(P)$(HSC)v0_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 268 + 291 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4e52 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)v0.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)v0.VAL - - - - false - 0 - - - false - - - - 0 - - 263 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 204 + 263 - - true - true - 1 - false - 39872d87:13e14015f61:4e53 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)v0.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)v0.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 283 false - $(pv_name) -$(pv_value) 204 + 283 - - true - true - 1 - false - 39872d87:13e14015f61:4e54 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(HSC)v0RB + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)v0RB - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 0 - - 250 false - $(pv_name) -$(pv_value) 204 + 250 - - true - 1 - 39872d87:13e14015f61:4e55 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false - - - - - - - Label - true V CENTER - - - - 80 - 0 - - 1 - - - - 1 - - 230 - true + true + 1 + true + Label + 80 + false 204 + 230 - + + + + $(P)$(HSC)height_tweak.A + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4e56 - + + + + 0 + 1 + true + + Default + + false + + + 20 + Action Button - false + 0 + $(P)$(HSC)height_tweak.A + + true true false - $(P)$(HSC)height_tweak.A - - - - - - - Action Button - true + + - - false - - Default - - 20 - 0 - 0 - - - false - 1 - - - - 291 - - - $(P)$(HSC)height_tweak.A - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 10 + 291 - - false - true - 1 - false + + + false false - - 16 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 50 - 3 - - 1 + false + + + + 1 + 16 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4e57 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)height_tweakVal.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)height_tweakVal.VAL - - - - false - 0 - - - false - - - - 0 - - 293 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 50 29 + 293 - - false - true - 39872d87:13e14015f61:4e58 - - 20 - Action Button - false - - true - true - false - - $(P)$(HSC)height_tweak.B + + + + $(P)$(HSC)height_tweak.B + 1 + 10 + + + + + false + false - + - - - - Action Button + false + + + + 0 + 1 true - + - false - Default + Default - 20 - 0 - 0 + false + + + + 20 - + Action Button + 0 + $(P)$(HSC)height_tweak.B + + + true + true + false + + + + + false - 1 - - - - 291 - - - $(P)$(HSC)height_tweak.B - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 20 78 + 291 - - false - true - 1 - false + + + false false - - 20 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 80 - 3 - - 1 + false + + + + 1 + 20 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4e59 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)height.VAL + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)height.VAL - - - - false - 0 - - - false - - - - 0 - - 263 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 80 14 + 263 - - true - true - 1 - false - 39872d87:13e14015f61:4e5a + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 10 + 1 Text Update - false + 0 + true + $(P)$(HSC)height.DRVL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)height.DRVL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 80 - 0 - - - 1 - - - - 1 - - 283 false - $(pv_name) -$(pv_value) 14 + 283 - - true - true - 1 - false - 39872d87:13e14015f61:4e5b + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(HSC)heightRB + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)heightRB - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 60 - 0 - - - 1 - - - - 0 - - 250 false - $(pv_name) -$(pv_value) 14 + 250 - - true - 1 - 39872d87:13e14015f61:4e5c + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - V SIZE - - - - 80 - 0 - - 1 - 1 - - 230 - true - - 14 - - - true - 1 - 39872d87:13e14015f61:4e5d - false - + 0 + 1 + true + + + + + + 14 + 1 Label + true true false - true + false + V SIZE + + true + 1 + true + Label + 80 + false + 14 + 230 + + + + false - - - - Label - true - Scan - - - - 30 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 131 - true - - 144 - - - false - true - false - 39872d87:13e14015f61:4e5e - - 16 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 16 - 6 - - - - 1 - - - - 130 + + false + Scan + + true + 1 + true + Label + 30 + false + 144 + 131 + + scanParmsCustom.opi @@ -5483,93 +5582,94 @@ $(pv_value) $(HSC)t $(HSC)t.EGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 124 - - - true - 1 - 39872d87:13e14015f61:4e5f - false - - 14 - Label - - true - true - false - - true - false + false + false - + - - - - Label - true - Scan - - - - 30 - 0 - - 1 + false - 0 - - 206 - true - - 144 - - - false - true - false - 39872d87:13e14015f61:4e60 - - 16 - Menu Button + 0 + 1 + true + + Default + false + + + + 16 + + Action Button + 0 + + + true true false - false - + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 16 + 124 + 130 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 16 - 6 - + + + + 14 + 0 + Label - - 1 - - - - 205 + + true + true + false + + + false + Scan + + true + 1 + true + Label + 30 + false + 144 + 206 + + scanParmsCustom.opi @@ -5580,93 +5680,94 @@ $(pv_value) $(HSC)b $(HSC)b.EGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 124 - - - true - 1 - 39872d87:13e14015f61:4e61 - false - - 14 - Label + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + + + true true false - true - false + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 16 + 124 + 205 + + + + false - - - - - Label - true - Scan - - - - 30 - 0 - - 1 + + 0 + 1 + true + + + + + + + 14 0 - - 311 - true - - 239 - - - false - true - false - 39872d87:13e14015f61:4e62 - - 16 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 16 - 6 - - - - 1 - - - - 310 + + false + Scan + + true + 1 + true + Label + 30 + false + 239 + 311 + + scanParmsCustom.opi @@ -5677,93 +5778,94 @@ $(pv_value) $(HSC)v0 $(HSC)v0.EGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 219 - - - true - 1 - 39872d87:13e14015f61:4e63 - false - - 14 - Label - - true - true - false - - true - false + false + false - + - - - - Label - true - Scan - - - - 30 - 0 - - 1 + false - 0 - - 311 - true - - 49 - - - false - true - false - 39872d87:13e14015f61:4e64 - - 16 - Menu Button + 0 + 1 + true + + Default + false + + + + 16 + + Action Button + 0 + + + true true false - false - + + + + false + $(pv_name) +$(pv_value) + true + Action Button + 16 + 219 + 310 + + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 16 - 6 - + + + + 14 + 0 + Label - - 1 - - - - 310 + + true + true + false + + + false + Scan + + true + 1 + true + Label + 30 + false + 49 + 311 + + scanParmsCustom.opi @@ -5774,562 +5876,568 @@ $(pv_value) $(HSC)height $(HSC)height.EGU - 0 + 1 Setup scan parameters - $(pv_name) -$(pv_value) - 29 - - - false - true - 39872d87:13e14015f61:4e65 - - 22 - Action Button - false - - true - true - false - - $(P)$(HSC)locate + false + false - + - - - - Action Button + false + + + + 0 + 1 true - Sync - false - Default + Default - 60 - 0 - 0 + false + + + + 16 - + Action Button + 0 + + + + true + true + false + + + + false - 1 - - - - 303 + $(pv_name) +$(pv_value) + true + Action Button + 16 + 29 + 310 + + $(P)$(HSC)locate 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 22 + + Action Button + 0 + $(P)$(HSC)locate + + + + true + true + false + + + + Sync + false $(pv_name) $(pv_value) + true + Action Button + 60 119 + 303 - - true - true - 1 - false - 39872d87:13e14015f61:4e66 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 2 Text Update - false + 0 + true + $(P)$(HSC)widthRB.EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)widthRB.EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 20 - 0 - - - 1 - - - - 0 - - 45 false - $(pv_name) -$(pv_value) 75 + 45 - - true - true - 1 - false - 39872d87:13e14015f61:4e67 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 2 Text Update - false + 0 + true + $(P)$(HSC)lRB.EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)lRB.EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 20 - 0 - - - 1 - - - - 0 - - 143 false - $(pv_name) -$(pv_value) 90 + 143 - - true - true - 1 - false - 39872d87:13e14015f61:4e68 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 2 Text Update - false + 0 + true + $(P)$(HSC)heightRB.EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)heightRB.EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 20 - 0 - - - 1 - - - - 0 - - 250 false - $(pv_name) -$(pv_value) 75 + 250 - - true - true - 1 - false - 39872d87:13e14015f61:4e69 + + + false false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(HSC)tRB.EGU + false - + - - - - Text Update - true - ###### - false - 0 - - - - 20 - 0 - - - 1 + true - 0 - - 63 - false - $(pv_name) -$(pv_value) - 170 - - - true - true - 1 - false - 39872d87:13e14015f61:4e6a - false - 0.0 - + 0 + 1 + true + + + + false + + + + 1 14 + 2 Text Update - false + 0 + true + $(P)$(HSC)tRB.EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)h0RB.EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 20 - 0 - - - 1 - - - - 0 - - 45 false - $(pv_name) -$(pv_value) - 265 + 170 + 63 - - true - true - 1 - false - 39872d87:13e14015f61:4e6b + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 2 Text Update - false + 0 + true + $(P)$(HSC)h0RB.EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)rRB.EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 20 - 0 - - - 1 - - - - 0 - - 143 false - $(pv_name) -$(pv_value) - 250 + 265 + 45 - - true - true - 1 - false - 39872d87:13e14015f61:4e6c + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 2 Text Update - false + 0 + true + $(P)$(HSC)rRB.EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)bRB.EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 20 - 0 - - - 1 - - - - 0 - - 238 false - $(pv_name) -$(pv_value) - 170 + 250 + 143 - - true - true - 1 - false - 39872d87:13e14015f61:4e6d + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(HSC)bRB.EGU + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)v0RB.EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 20 - 0 - - - 1 - - - - 0 - - 250 false - $(pv_name) -$(pv_value) - 265 + 170 + 238 - - false - true - 39872d87:13e14015f61:4e6e - - 27 - Action Button - false - - true - true - false - - $(P)$(HSC)stop + + + false + false + false - + - - - - Action Button + true + + + + 0 + 1 true - STOP - false - Default + - 60 - 0 - 0 - - + false + + + + 1 + 14 + 2 + Text Update + 0 + true + $(P)$(HSC)v0RB.EGU - false - 1 - - - - 23 + 0.0 + + + true + true + false + + + false + ###### + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 20 + false + 265 + 250 + + $(P)$(HSC)stop 1 10 + - $(pv_name) -$(pv_value) - 119 - - + false + false + + + false - true - false - 39872d87:13e14015f61:4e6f - - 16 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 27 + + Action Button + 0 + $(P)$(HSC)stop + + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 16 - 6 - - - - 1 - - - - 105 + + + STOP + false + $(pv_name) +$(pv_value) + true + Action Button + 60 + 119 + 23 + + scanParmsCustom.opi @@ -6340,109 +6448,153 @@ $(pv_value) $(HSC)h0 $(HSC)h0.EGU - 0 + 1 Setup scan parameters + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + + + + + true + true + false + + + + + false $(pv_name) $(pv_value) + true + Action Button + 16 220 + 105 - - true - 1 - 39872d87:13e14015f61:4e70 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 2 Label + true true false - true + false - - - - - - - Label - true debug: - - - - 59 - 0 - - 1 - - - - 1 - - 442 - true + true + 1 + true + Label + 59 + false 11 + 442 - - false - true - 1 - false + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 30 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4e71 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)debug + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)debug - - - - false - 0 - - - false - - - - 0 - - 440 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 30 75 + 440 - \ No newline at end of file + diff --git a/opticsApp/op/opi/xia_slit_status.opi b/opticsApp/op/opi/autoconvert/xia_slit_status.opi similarity index 85% rename from opticsApp/op/opi/xia_slit_status.opi rename to opticsApp/op/opi/autoconvert/xia_slit_status.opi index 623c3d5..566eca3 100644 --- a/opticsApp/op/opi/xia_slit_status.opi +++ b/opticsApp/op/opi/autoconvert/xia_slit_status.opi @@ -1,2003 +1,1989 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 419 true - 39872d87:13e14015f61:4ef8 - 3.1.2.20120830 + xia_slit_status + + true + true + false true - 419 - xia_slit_status false - false - - - - - - Display - true 421 - - true - 5 - - false - -1 - -1 - - - 24 404 - - true - 1 - 39872d87:13e14015f61:4ef9 + 24 + + false - + + + + + + + 0 + 1 + true + + + + + + 26 + 1 Label + true true false - true + false - - - - - - - Label - true XIA SLIT STATUS - - - - 420 - 0 - - 1 - - - - 1 - - 8 - true + true + 1 + true + Label + 420 + false 0 + 8 - + + + false + 255 + true + 20 + 0 + false + + + false + + + + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4efa - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 + + + + + + + 0.0 + true true true - - - - + + $(pv_name) +$(pv_value) false - + true + Polyline + 408 + 8 + 70 + + + + false + 255 + true + 20 + 0 + false - - - - Polyline - true - false - - Default - - 408 - 0 - 0 - - - 1 - 1 - true + false - - 70 - $(pv_name) -$(pv_value) - 8 - - - false + 0 + 1 + true true - 20 - true 100.0 - 39872d87:13e14015f61:4efb - 0.0 - - 0 + + Default + + false + + + 1 - true + true + 0 + 1 Polyline - false - 255 - - true - true - true - - false - - - - - - - Polyline - true - false - - Default - - 406 - 0 - 0 - - 1 - 1 - true - - - - - 281 + 0.0 + + + true + true + true + + $(pv_name) $(pv_value) + false + true + Polyline + 406 8 + 281 - - true - true - 1 - false - 39872d87:13e14015f61:4efc + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 24 + 0 Text Update - false + 0 + true + $(P)$(HSC)$(BI1) + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)$(BI1) - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 74 - 0 - - - 1 - - - - 0 - - 76 false - $(pv_name) -$(pv_value) 257 + 76 - - true - true - 1 - false - 39872d87:13e14015f61:4efd + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 24 + 0 Text Update - false + 0 + true + $(P)$(HSC)$(BI2) + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)$(BI2) - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 74 - 0 - - - 1 - - - - 0 - - 104 false - $(pv_name) -$(pv_value) 257 + 104 - - true - true - 1 - false - 39872d87:13e14015f61:4efe + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 24 + 0 Text Update - false + 0 + true + $(P)$(HSC)$(BI3) + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)$(BI3) - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 74 - 0 - - - 1 - - - - 0 - - 132 false - $(pv_name) -$(pv_value) 257 + 132 - - true - true - 1 - false - 39872d87:13e14015f61:4eff + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 24 + 0 Text Update - false + 0 + true + $(P)$(HSC)$(BI4) + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)$(BI4) - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 74 - 0 - - - 1 - - - - 0 - - 160 false - $(pv_name) -$(pv_value) 257 + 160 - - true - true - 1 - false - 39872d87:13e14015f61:4f00 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 24 + 0 Text Update - false + 0 + true + $(P)$(HSC)$(BI5) + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)$(BI5) - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 74 - 0 - - - 1 - - - - 0 - - 188 false - $(pv_name) -$(pv_value) 257 + 188 - - true - true - 1 - false - 39872d87:13e14015f61:4f01 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 24 + 0 Text Update - false + 0 + true + $(P)$(HSC)$(BI6) + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)$(BI6) - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 74 - 0 - - - 1 - - - - 0 - - 216 false - $(pv_name) -$(pv_value) 257 + 216 - - true - true - 1 - false - 39872d87:13e14015f61:4f02 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 24 + 0 Text Update - false + 0 + true + $(P)$(HSC)$(BI7) + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)$(BI7) - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 74 - 0 - - - 1 - - - - 0 - - 244 false - $(pv_name) -$(pv_value) 257 + 244 - - true - 1 - 39872d87:13e14015f61:4f03 + + false - + + + + + + + 0 + 1 + true + + + + + + 26 + 1 Label + true true false - true + false - - - - - - - Label - true $(SLIT) - - - - 420 - 0 - - 1 - - - - 1 - - 38 - true + true + 1 + true + Label + 420 + false 0 + 38 - - true - true - 1 - false - 39872d87:13e14015f61:4f04 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 24 + 0 Text Update - false + 0 + true + $(P)$(HSC)$(BI1).DESC + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)$(BI1).DESC - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 220 - 0 - - - 1 - - - - 0 - - 76 false - $(pv_name) -$(pv_value) 13 + 76 - - true - 1 - 39872d87:13e14015f61:4f05 + + false - + + + + + + + 0 + 1 + true + + + + + + 24 + 1 Label + true true false - true + false - - - - - - - Label - true : - - - - 16 - 0 - - 1 - - - - 1 - - 76 - true + true + 1 + true + Label + 16 + false 237 + 76 - - true - true - 1 - false - 39872d87:13e14015f61:4f06 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 24 + 0 Text Update - false + 0 + true + $(P)$(HSC)$(BI2).DESC + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)$(BI2).DESC - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 220 - 0 - - - 1 - - - - 0 - - 104 false - $(pv_name) -$(pv_value) 13 + 104 - - true - 1 - 39872d87:13e14015f61:4f07 + + false - + + + + + + + 0 + 1 + true + + + + + + 24 + 1 Label + true true false - true + false - - - - - - - Label - true : - - - - 16 - 0 - - 1 - - - - 1 - - 104 - true + true + 1 + true + Label + 16 + false 237 + 104 - - true - true - 1 - false - 39872d87:13e14015f61:4f08 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 24 + 0 Text Update - false + 0 + true + $(P)$(HSC)$(BI3).DESC + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)$(BI3).DESC - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 220 - 0 - - - 1 - - - - 0 - - 132 false - $(pv_name) -$(pv_value) 13 + 132 - - true - 1 - 39872d87:13e14015f61:4f09 + + false - - 24 - Label - - true - true - false - - true - false - - - - Label - true - : - - - - 16 - 0 - - 1 + 0 + 1 + true + + + + + + + 24 1 - - 132 - true + Label + + + true + true + false + + + false + : + true + 1 + true + Label + 16 + false 237 + 132 - - true - true - 1 - false - 39872d87:13e14015f61:4f0a + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 24 + 0 Text Update - false + 0 + true + $(P)$(HSC)$(BI4).DESC + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)$(BI4).DESC - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 220 - 0 - - - 1 - - - - 0 - - 160 false - $(pv_name) -$(pv_value) 13 + 160 - - true - 1 - 39872d87:13e14015f61:4f0b + + false - + + + + + + + 0 + 1 + true + + + + + + 24 + 1 Label + true true false - true + false - - - - - - - Label - true : - - - - 16 - 0 - - 1 - - - - 1 - - 160 - true + true + 1 + true + Label + 16 + false 237 + 160 - - true - true - 1 - false - 39872d87:13e14015f61:4f0c + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 24 + 0 Text Update - false + 0 + true + $(P)$(HSC)$(BI5).DESC + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)$(BI5).DESC - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 220 - 0 - - - 1 - - - - 0 - - 188 false - $(pv_name) -$(pv_value) 13 + 188 - - true - 1 - 39872d87:13e14015f61:4f0d + + false - + + + + + + + 0 + 1 + true + + + + + + 24 + 1 Label + true true false - true + false - - - - - - - Label - true : - - - + + true + 1 + true + Label 16 - 0 - - 1 + false + 237 + 188 + + + + false + false + false + + + + true - 1 - - 188 - true - - 237 - - - true - true - 1 - false - 39872d87:13e14015f61:4f0e - false - 0.0 - + 0 + 1 + true + + + + false + + + + 4 24 + 0 Text Update - false + 0 + true + $(P)$(HSC)$(BI6).DESC + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)$(BI6).DESC - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 220 - 0 - - - 1 - - - - 0 - - 216 false - $(pv_name) -$(pv_value) 13 + 216 - - true - 1 - 39872d87:13e14015f61:4f0f + + false - + + + + + + + 0 + 1 + true + + + + + + 24 + 1 Label + true true false - true + false - - - - - - - Label - true : - - - - 16 - 0 - - 1 - - - - 1 - - 216 - true + true + 1 + true + Label + 16 + false 237 + 216 - - true - true - 1 - false - 39872d87:13e14015f61:4f10 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 24 + 0 Text Update - false + 0 + true + $(P)$(HSC)$(BI7).DESC + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)$(BI7).DESC - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 220 - 0 - - - 1 - - - - 0 - - 244 false - $(pv_name) -$(pv_value) 13 + 244 - - true - 1 - 39872d87:13e14015f61:4f11 + + false - + + + + + + + 0 + 1 + true + + + + + + 24 + 1 Label + true true false - true + false - - - - - - - Label - true : - - - - 16 - 0 - - 1 - - - - 1 - - 244 - true + true + 1 + true + Label + 16 + false 237 + 244 - - true - true - 1 - false - 39872d87:13e14015f61:4f12 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 24 + 0 Text Update - false + 0 + true + $(P)$(HSC)$(OL).DESC + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)$(OL).DESC - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 220 - 0 - - - 1 - - - - 0 - - 293 false - $(pv_name) -$(pv_value) 13 + 293 - - true - true - 1 - false - 39872d87:13e14015f61:4f13 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 24 + 0 Text Update - false + 0 + true + $(P)$(HSC)$(OL) + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)$(OL) - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 74 - 0 - - - 1 - - - - 0 - - 293 false - $(pv_name) -$(pv_value) 257 + 293 - - true - true - 1 - false - 39872d87:13e14015f61:4f14 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 24 + 0 Text Update - false + 0 + true + $(P)$(HSC)$(OR) + + 0.0 + true true false - 4 - true - false - $(P)$(HSC)$(OR) - - - - - - - Text Update - true + + false ###### - false - 0 - - - - 74 - 0 - - - 1 - - - - 0 - - 321 + $(pv_name) +$(pv_value) + false + 1 + true + Text Update + 74 false - $(pv_name) -$(pv_value) 257 + 321 - - true - true - 1 - false - 39872d87:13e14015f61:4f15 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 24 + 0 Text Update - false + 0 + true + $(P)$(HSC)$(OR).DESC + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)$(OR).DESC - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 220 - 0 - - - 1 - - - - 0 - - 321 false - $(pv_name) -$(pv_value) 13 + 321 - - true - 1 - 39872d87:13e14015f61:4f16 + + false - + + + + + + + 0 + 1 + true + + + + + + 24 + 1 Label + true true false - true + false + : + + true + 1 + true + Label + 16 + false + 237 + 293 + + + + false - - - - Label - true - : - - - - 16 - 0 - - 1 - 1 - - 293 - true - - 237 - - - true - 1 - 39872d87:13e14015f61:4f17 - false - + 0 + 1 + true + + + + + + 24 + 1 Label + true true false - true + false - - - - - - - Label - true : - - - - 16 - 0 - - 1 - - - - 1 - - 321 - true + true + 1 + true + Label + 16 + false 237 + 321 - - true - true - 1 - false - 39872d87:13e14015f61:4f18 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 24 + 0 Text Update - false + 0 + true + $(P)$(HSC)$(SD).DESC + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)$(SD).DESC - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 220 - 0 - - - 1 - - - - 0 - - 349 false - $(pv_name) -$(pv_value) 13 + 349 - - true - 1 - 39872d87:13e14015f61:4f19 + + false - + + + + + + + 0 + 1 + true + + + + + + 24 + 1 Label + true true false - true + false - - - - - - + : + + true + 1 + true Label - true - : - - - 16 - 0 - - 1 - - - - 1 - - 349 - true - + false 237 + 349 - - true - true - 1 - false - 39872d87:13e14015f61:4f1a + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 24 + 0 Text Update - false + 0 + true + $(P)$(HSC)$(SD) + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)$(SD) - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 74 - 0 - - - 1 - - - - 0 - - 349 false - $(pv_name) -$(pv_value) 257 + 349 - - true - true - 1 - false - 39872d87:13e14015f61:4f1b + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 24 + 0 Text Update - false + 0 + true + $(P)$(HSC)$(GB).DESC + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)$(GB).DESC - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 220 - 0 - - - 1 - - - - 0 - - 377 false - $(pv_name) -$(pv_value) 13 + 377 - - true - 1 - 39872d87:13e14015f61:4f1c + + false - + + + + + + + 0 + 1 + true + + + + + + 24 + 1 Label + true true false - true + false - - - - - - - Label - true : - - - - 16 - 0 - - 1 - - - - 1 - - 377 - true + true + 1 + true + Label + 16 + false 237 + 377 - - true - true - 1 - false - 39872d87:13e14015f61:4f1d + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 24 + 0 Text Update - false + 0 + true + $(P)$(HSC)$(GB) + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)$(GB) - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 74 - 0 - - - 1 - - - - 0 - - 377 false - $(pv_name) -$(pv_value) 257 + 377 - - true - true - 1 - false - 39872d87:13e14015f61:4f1e + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 24 + 0 Text Update - false + 0 + true + $(P)$(HSC)$(OL).EGU + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)$(OL).EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 74 - 0 - - - 1 - - - - 0 - - 293 false - $(pv_name) -$(pv_value) 339 + 293 - - true - true - 1 - false - 39872d87:13e14015f61:4f1f + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 24 + 0 Text Update - false + 0 + true + $(P)$(HSC)$(OR).EGU + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)$(OR).EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 74 - 0 - - - 1 - - - - 0 - - 321 false - $(pv_name) -$(pv_value) 339 + 321 - - true - true - 1 - false - 39872d87:13e14015f61:4f20 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 24 + 0 Text Update - false + 0 + true + $(P)$(HSC)$(SD).EGU + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)$(SD).EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 74 - 0 - - - 1 - - - - 0 - - 349 false - $(pv_name) -$(pv_value) 339 + 349 - - true - true - 1 - false - 39872d87:13e14015f61:4f21 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 4 24 + 0 Text Update - false + 0 + true + $(P)$(HSC)$(GB).EGU + + 0.0 + true true false - 4 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)$(GB).EGU - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 74 - 0 - - - 1 - - - - 0 - - 377 false - $(pv_name) -$(pv_value) 339 + 377 - \ No newline at end of file + diff --git a/opticsApp/op/opi/xiahsc.opi b/opticsApp/op/opi/autoconvert/xiahsc.opi similarity index 76% rename from opticsApp/op/opi/xiahsc.opi rename to opticsApp/op/opi/autoconvert/xiahsc.opi index d401da5..9f59303 100644 --- a/opticsApp/op/opi/xiahsc.opi +++ b/opticsApp/op/opi/autoconvert/xiahsc.opi @@ -1,78 +1,76 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 426 true - 39872d87:13e14015f61:4f4d - 3.1.2.20120830 + xiahsc + + true + true + false true - 426 - xiahsc false - false - - - - - - Display - true 449 - - true - 5 - - false - -1 - -1 - - - 104 85 - - false - true - 0.0 - - - - 39872d87:13e14015f61:4f51 - - - - - 80 - true - Rectangle - false + 104 + + + false 255 - - true - true - false - - true - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 120 + false + + + + false + 80 + true + + + 0 - 0 + 30 + Rectangle + + @@ -84,119 +82,119 @@ $(P)$(HSC)error - - 1 - 30 - true - - - - - 191 - $(pv_name) -$(pv_value) - 166 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4f52 - - - - - 90 - true - Rectangle - false - 255 true true false - false - + + $(pv_name) +$(pv_value) + true + true + Rectangle + 120 + 166 + 191 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 118 - 0 - 0 - - - 1 - 0 - true - - - - - 186 - $(pv_name) -$(pv_value) - 43 + false + + + false - - - false - true - 100.0 + 90 + true - 39872d87:13e14015f61:4f53 - - - - - 72 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 118 + 43 + 186 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 110 + false + + + + false + 72 + true + + + 0 - 0 + 0 + Rectangle + + @@ -208,119 +206,119 @@ $(pv_value) $(P)$(HSC)hBusy - - 1 - 0 - true - - - - - 200 - $(pv_name) -$(pv_value) - 47 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4f58 - - - - - 90 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 110 + 47 + 200 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 118 - 0 - 0 - - - 1 - 0 - true - - - - - 96 - $(pv_name) -$(pv_value) - 167 + false + + + false - - - false - true - 100.0 + 90 + true - 39872d87:13e14015f61:4f59 - - - - - 72 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 118 + 167 + 96 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 110 + false + + + + false + 72 + true + + + 0 - 0 + 0 + Rectangle + + @@ -332,119 +330,119 @@ $(pv_value) $(P)$(HSC)vBusy - - 1 - 0 - true - - - - - 110 - $(pv_name) -$(pv_value) - 171 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4f5e - - - - - 90 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 110 + 171 + 110 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 118 - 0 - 0 - - - 1 - 0 - true - - - - - 276 - $(pv_name) -$(pv_value) - 167 + false + + + false - - - false - true - 100.0 + 90 + true - 39872d87:13e14015f61:4f5f - - - - - 72 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 118 + 167 + 276 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 110 + false + + + + false + 72 + true + + + 0 - 0 + 0 + Rectangle + + @@ -456,119 +454,119 @@ $(pv_value) $(P)$(HSC)vBusy - - 1 - 0 - true - - - - - 290 - $(pv_name) -$(pv_value) - 171 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4f64 - - - - - 90 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 110 + 171 + 290 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 118 - 0 - 0 - - - 1 - 0 - true - - - - - 186 - $(pv_name) -$(pv_value) - 291 + false + + + false - - - false - true - 100.0 + 90 + true - 39872d87:13e14015f61:4f65 - - - - - 72 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 118 + 291 + 186 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 110 + false + + + + false + 72 + true + + + 0 - 0 + 0 + Rectangle + + @@ -580,120 +578,120 @@ $(pv_value) $(P)$(HSC)hBusy - - 1 - 0 - true - - - - - 200 - $(pv_name) -$(pv_value) - 295 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4f6a - - - - - 90 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 110 + 295 + 200 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 118 - 0 - 0 - - - 1 - 0 - true - - - - - 84 - $(pv_name) -$(pv_value) - 24 + false + + + false - - - false - true - 100.0 + 90 + true - 39872d87:13e14015f61:4f6b - - - - - 72 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 118 + 24 + 84 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 110 - 0 - 0 - + false + + + + false + 72 + true + + + + 0 + 0 + Rectangle + + + true @@ -704,119 +702,119 @@ $(pv_value) $(P)$(HSC)hBusy - - 1 - 0 - true - - - - - 98 - $(pv_name) -$(pv_value) - 28 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4f70 - - - - - 90 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 110 + 28 + 98 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 118 - 0 - 0 - - - 1 - 0 - true - - - - - 288 - $(pv_name) -$(pv_value) - 24 + false + + + false - - - false - true - 100.0 + 90 + true - 39872d87:13e14015f61:4f71 - - - - - 72 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 118 + 24 + 288 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 110 + false + + + + false + 72 + true + + + 0 - 0 + 0 + Rectangle + + @@ -828,119 +826,119 @@ $(pv_value) $(P)$(HSC)hBusy - - 1 - 0 - true - - - - - 302 - $(pv_name) -$(pv_value) - 28 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4f76 - - - - - 90 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 110 + 28 + 302 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 118 - 0 - 0 - - - 1 - 0 - true - - - - - 288 - $(pv_name) -$(pv_value) - 310 + false + + + false - - - false - true - 100.0 + 90 + true - 39872d87:13e14015f61:4f77 - - - - - 72 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle + 118 + 310 + 288 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 110 + false + + + + false + 72 + true + + + 0 - 0 + 0 + Rectangle + + @@ -952,119 +950,119 @@ $(pv_value) $(P)$(HSC)vBusy - - 1 - 0 - true - - - - - 302 - $(pv_name) -$(pv_value) - 314 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4f7c - - - - - 90 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 110 + 314 + 302 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 118 - 0 - 0 - - - 1 - 0 - true - - - - - 84 - $(pv_name) -$(pv_value) - 310 + false + + + false - - - false - true - 100.0 + 90 + true - 39872d87:13e14015f61:4f7d - - - - - 72 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 118 + 310 + 84 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 110 + false + + + + false + 72 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1076,2204 +1074,1925 @@ $(pv_value) $(P)$(HSC)vBusy - - 1 - 0 - true - - - - - 98 + + true + true + false + + $(pv_name) $(pv_value) + false + true + Rectangle + 110 314 - false + 98 - + + + + + + + + + 0 + 1 + true + false + + Default + + + + + 41 + false true - true - 39872d87:13e14015f61:4f84 - - 41 Grouping Container + true true false - true + false - - - - - - + + true + true Grouping Container - true - - Default - 410 - 0 - - false - 1 - - - - - 40 - 21 - - true - true - 1 - false - 39872d87:13e14015f61:4f85 + 40 + + + false false - 0.0 - - 13 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(HSC)port.VAL + false - + - - - - Text Update - true - ###### - false - 0 - - - - 410 - 0 - - - 1 + true + 0 + 1 + true + + + + false + + + + 1 + 13 1 - - 28 - false + Text Update + 0 + true + $(P)$(HSC)port.VAL + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 410 + false 0 + 28 - - true - true - 1 - false - 39872d87:13e14015f61:4f86 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 24 + 1 Text Update - false + 0 + true + $(P)$(HSC)port.DESC + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)port.DESC - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 410 - 0 - - - 1 - - - - 1 - - 0 false - $(pv_name) -$(pv_value) 0 + 0 - - true - 1 - 39872d87:13e14015f61:4f4e + + false - + + + + + + + 0 + 1 + true + + + + + + 20 + 1 Label + true true false - true + false + Huber Slit Controller $(P)$(HSC) + + true + 1 + true + Label + 380 + false + 10 + 17 + + + + false - - - - Label - true - Huber Slit Controller $(P)$(HSC) - - - - 380 - 0 - - 1 - 1 - - 17 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:4f4f - false - + 0 + 1 + true + + + + + + 8 + 0 Label + true true false - true + false - - - - - - - Label - true xiahsc.adl edited: 1999-Sept-25 (prj) - - - - 363 - 0 - - 1 - - - - 0 - - 4 - true + true + 1 + true + Label + 363 + false 4 + 4 - + + + + $(P)$(HSC)stop + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4f50 - + + + + 0 + 1 + true + + Default + + false + + + 30 + Action Button - false + 0 + $(P)$(HSC)stop + + true true false - $(P)$(HSC)stop - - - - - - - Action Button - true + + STOP - false - - Default - - 410 - 0 - 0 - - - false - 1 - - - - 382 - - - $(P)$(HSC)stop - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 410 21 + 382 - - false - true - 1 - false + + + false false - - 24 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 24 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4f54 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)l + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)l - - - - false - 0 - - - false - - - - 0 - - 223 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 52 + 223 - - true - true - 1 - false - 39872d87:13e14015f61:4f55 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)$(HSC)lRB + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)lRB - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 204 false - $(pv_name) -$(pv_value) 52 + 204 - - 20.0 - true - true - - - - - - - true - - - - - 20 - 50 - false - 10.0 + + + false + false - + + 1.0 + true + + + + 0 + 1 true - Scaled Slider - true - Default + Default - 100 - true - 0 - true - - true - true + false + + + + 20 + true + true 100.0 - 1 - false - false 0.0 - 39872d87:13e14015f61:4f56 - true - - true - - - - Scaled Slider + Scrollbar + 0.009999999776482582 + $(P)$(HSC)l + + true true false - - - - $(P)$(HSC)l - - - - 1.0 - false - 80.0 - - Default - - 90.0 - - - - - - - - - true - true - - - - 10.0 - 247 - - 52 + + true + 0.009999999776482582 $(pv_name) $(pv_value) - - true - 1 - 39872d87:13e14015f61:4f57 + Scrollbar + 100 + 52 + 247 + + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true left - - - - 110 - 0 - - 1 - - - - 1 - - 190 - true + true + 1 + true + Label + 110 + false 47 + 190 - - false - true - 1 - false + + + false false - - 24 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 24 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4f5a - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)t + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)t - - - - false - 0 - - - false - - - - 0 - - 133 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 176 + 133 - - true - true - 1 - false - 39872d87:13e14015f61:4f5b + + + false false - 0.0 - - 20 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(HSC)tRB + false - + - - - - Text Update - true - ###### - false - 0 - - - - 100 - 0 - - - 1 + true + 0 + 1 + true + + + + false + + + + 1 + 20 0 - - 114 - false + Text Update + 0 + true + $(P)$(HSC)tRB + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 100 + false 176 + 114 - - 20.0 - true - true - - - - - - - true - - - - - 20 - 50 - false - 10.0 + + + false + false - + + 1.0 + true + + + + 0 + 1 true - Scaled Slider - true - Default + Default - 100 - true - 0 - true - - true - true + false + + + + 20 + true + true 100.0 - 1 - false - false 0.0 - 39872d87:13e14015f61:4f5c - true - - true - - - - Scaled Slider + Scrollbar + 0.009999999776482582 + $(P)$(HSC)t + + true true false - - - - $(P)$(HSC)t - - - - 1.0 - false - 80.0 - - Default - - 90.0 - - - - - - - - - true - true - - - - 10.0 - 157 - - 176 + + true + 0.009999999776482582 $(pv_name) $(pv_value) - - true - 1 - 39872d87:13e14015f61:4f5d + Scrollbar + 100 + 176 + 157 + + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true top - - - - 110 - 0 - - 1 - - - - 1 - - 100 - true + true + 1 + true + Label + 110 + false 171 + 100 - - false - true - 1 - false + + + false false - - 24 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 24 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4f60 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)b + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)b - - - - false - 0 - - - false - - - - 0 - - 313 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 176 + 313 - - true - true - 1 - false - 39872d87:13e14015f61:4f61 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)$(HSC)bRB + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)bRB - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 294 false - $(pv_name) -$(pv_value) 176 + 294 - - 20.0 - true - true - - - - - - - true - - - - - 20 - 50 - false - 10.0 + + + false + false - + + 1.0 + true + + + + 0 + 1 true - Scaled Slider - true - Default + Default - 100 - true - 0 - true - - true - true + false + + + + 20 + true + true 100.0 - 1 - false - false 0.0 - 39872d87:13e14015f61:4f62 - true - - true - - - - Scaled Slider + Scrollbar + 0.009999999776482582 + $(P)$(HSC)b + + true true false - - - - $(P)$(HSC)b - - - - 1.0 - false - 80.0 - - Default - - 90.0 - - - - - - - - - true - true - - - - 10.0 - 337 - - 176 + + true + 0.009999999776482582 $(pv_name) $(pv_value) - - true - 1 - 39872d87:13e14015f61:4f63 + Scrollbar + 100 + 176 + 337 + + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true bottom - - - - 110 - 0 - - 1 - - - - 1 - - 280 - true + true + 1 + true + Label + 110 + false 171 + 280 - - false - true - 1 - false + + + false false - - 24 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 24 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4f66 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)r + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)r - - - - false - 0 - - - false - - - - 0 - - 223 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 300 + 223 - - true - true - 1 - false - 39872d87:13e14015f61:4f67 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)$(HSC)rRB + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)rRB - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 204 false - $(pv_name) -$(pv_value) 300 + 204 - - 20.0 - true - true - - - - - - - true - - - - - 20 - 50 - false - 10.0 + + + false + false - + + 1.0 + true + + + + 0 + 1 true - Scaled Slider - true - Default + Default - 100 - true - 0 - true - - true - true + false + + + + 20 + true + true 100.0 - 1 - false - false 0.0 - 39872d87:13e14015f61:4f68 - true - - true - - - - Scaled Slider + Scrollbar + 0.009999999776482582 + $(P)$(HSC)r + + true true false - - - - $(P)$(HSC)r - - - - 1.0 - false - 80.0 - - Default - - 90.0 - - - - - - - - - true - true - - - - 10.0 - 247 - - 300 + + true + 0.009999999776482582 $(pv_name) $(pv_value) - - true - 1 - 39872d87:13e14015f61:4f69 + Scrollbar + 100 + 300 + 247 + + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true right - - - - 110 - 0 - - 1 - - - - 1 - - 190 - true + true + 1 + true + Label + 110 + false 295 + 190 - - false - true - 1 - false + + + false false - - 24 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 24 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4f6c - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)width + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)width - - - - false - 0 - - - false - - - - 0 - - 121 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 33 + 121 - - true - true - 1 - false - 39872d87:13e14015f61:4f6d + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)$(HSC)widthRB + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)widthRB - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 102 false - $(pv_name) -$(pv_value) 33 + 102 - - 20.0 - true - true - - - - - - - true - - - - - 20 - 50 - false - 10.0 + + + false + false - + + 1.0 + true + + + + 0 + 1 true - Scaled Slider - true - Default + Default - 100 - true - 0 - true - - true - true + false + + + + 20 + true + true 100.0 - 1 - false - false 0.0 - 39872d87:13e14015f61:4f6e - true - - true - - - - Scaled Slider + Scrollbar + 0.009999999776482582 + $(P)$(HSC)width + + true true false - - - - $(P)$(HSC)width - - - - 1.0 - false - 80.0 - - Default - - 90.0 - - - - - - - - - true - true - - - - 10.0 - 145 - - 33 + + true + 0.009999999776482582 $(pv_name) $(pv_value) - - true - 1 - 39872d87:13e14015f61:4f6f + Scrollbar + 100 + 33 + 145 + + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true width - - - - 110 - 0 - - 1 - - - - 1 - - 88 - true + true + 1 + true + Label + 110 + false 28 + 88 - - false - true - 1 - false + + + false false - - 24 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 24 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4f72 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)h0 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)h0 - - - - false - 0 - - - false - - - - 0 - - 325 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 33 + 325 - - true - true - 1 - false - 39872d87:13e14015f61:4f73 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)$(HSC)h0RB + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)h0RB - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 306 false - $(pv_name) -$(pv_value) 33 + 306 - - 20.0 - true - true - - - - - - - true - - - - - 20 - 50 - false - 10.0 + + + false + false - + + 1.0 + true + + + + 0 + 1 true - Scaled Slider - true - Default + Default - 100 - true - 0 - true - - true - true + false + + + + 20 + true + true 100.0 - 1 - false - false 0.0 - 39872d87:13e14015f61:4f74 - true - - true - - - - Scaled Slider + Scrollbar + 0.009999999776482582 + $(P)$(HSC)h0 + + true true false - - - - $(P)$(HSC)h0 - - - - 1.0 - false - 80.0 - - Default - - 90.0 - - - - - - - - - true - true - - - - 10.0 - 349 - - 33 + + true + 0.009999999776482582 $(pv_name) $(pv_value) - - true - 1 - 39872d87:13e14015f61:4f75 + Scrollbar + 100 + 33 + 349 + + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true hor. center - - - - 110 - 0 - - 1 - - - - 1 - - 292 - true + true + 1 + true + Label + 110 + false 28 + 292 - - false - true - 1 - false + + + false false - - 24 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 24 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4f78 + false + Text Input + 0 + false + 0 + true + $(P)$(HSC)v0 + + false 0.0 - Text Input + true true false - 1 - false + 0 - $(P)$(HSC)v0 - - - - false - 0 - - - false - - - - 0 - - 325 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 319 + 325 - - true - true - 1 - false - 39872d87:13e14015f61:4f79 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)$(HSC)v0RB + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)v0RB - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 306 false - $(pv_name) -$(pv_value) 319 + 306 - - 20.0 - true - true - - - - - - - true - - - - - 20 - 50 - false - 10.0 + + + false + false - + + 1.0 + true + + + + 0 + 1 true - Scaled Slider - true - Default + Default - 100 - true - 0 - true - - true - true + false + + + + 20 + true + true 100.0 - 1 - false - false 0.0 - 39872d87:13e14015f61:4f7a - true - - true - - - - Scaled Slider + Scrollbar + 0.009999999776482582 + $(P)$(HSC)v0 + + true true false - - - - $(P)$(HSC)v0 - - - - 1.0 - false - 80.0 - - Default - - 90.0 - - - - - - - - - true - true - - - - 10.0 - 349 - - 319 + + true + 0.009999999776482582 $(pv_name) $(pv_value) - - true - 1 - 39872d87:13e14015f61:4f7b + Scrollbar + 100 + 319 + 349 + + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true ver. center - - - - 110 - 0 - - 1 - - - - 1 - - 292 - true + true + 1 + true + Label + 110 + false 314 + 292 - - false - true - 1 - false + + + false false - - 24 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 24 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4f7e - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)height + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)height - - - - false - 0 - - - false - - - - 0 - - 121 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 319 + 121 - - true - true - 1 - false - 39872d87:13e14015f61:4f7f - false - 0.0 - + + + false + false + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)$(HSC)heightRB + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)heightRB - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 102 false - $(pv_name) -$(pv_value) 319 + 102 - - 20.0 - true - true - - - - - - - true - - - - - 20 - 50 - false - 10.0 + + + false + false - + + 1.0 + true + + + + 0 + 1 true - Scaled Slider - true - Default + Default - 100 - true - 0 - true - - true - true + false + + + + 20 + true + true 100.0 - 1 - false - false 0.0 - 39872d87:13e14015f61:4f80 - true - - true - - - - Scaled Slider + Scrollbar + 0.009999999776482582 + $(P)$(HSC)height + + true true false - - - - $(P)$(HSC)height - - - - 1.0 - false - 80.0 - - Default - - 90.0 - - - - - - - - - true - true - - - - 10.0 - 145 - - 319 + + true + 0.009999999776482582 $(pv_name) $(pv_value) - - true - 1 - 39872d87:13e14015f61:4f81 + Scrollbar + 100 + 319 + 145 + + + false - - 10 - Label - - true - true - false - - true - false - - - - Label - true - height - - - - 110 - 0 - - 1 + 0 + 1 + true + + + + + + + 10 1 - - 88 - true - - 314 - - - true - 1 - 39872d87:13e14015f61:4f82 - false - - 14 Label + true true false - true + false + height + + true + 1 + true + Label + 110 + false + 314 + 88 + + + + false - - - - Label + + + + 0 + 1 true - error! - + - 100 - 0 + + + + 14 + 1 + Label @@ -3285,67 +3004,76 @@ $(pv_value) $(P)$(HSC)error - 1 - - - - 1 - - 223 - true - - 176 - - - false - true - false - 39872d87:13e14015f61:4f83 - - 16 - Menu Button - false true true false - false - - - - - - - - Menu Button - true - false - - Default - - 60 - 6 - - - - 1 - - - - 3 + + false + error! + + true + 1 + true + Label + 100 + false + 176 + 223 + + xiahsc_full.opi true - 1 + 0 more + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + + + + + true + true + false + + + + more + false $(pv_name) $(pv_value) + true + Action Button + 60 380 + 3 - \ No newline at end of file + diff --git a/opticsApp/op/opi/xiahsc_calib.opi b/opticsApp/op/opi/autoconvert/xiahsc_calib.opi similarity index 82% rename from opticsApp/op/opi/xiahsc_calib.opi rename to opticsApp/op/opi/autoconvert/xiahsc_calib.opi index 6bfd1e0..b19390d 100644 --- a/opticsApp/op/opi/xiahsc_calib.opi +++ b/opticsApp/op/opi/autoconvert/xiahsc_calib.opi @@ -1,730 +1,721 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 310 true - 39872d87:13e14015f61:4fc2 - 3.1.2.20120830 + xiahsc_calib + + true + true + false true - 310 - xiahsc_calib false - false - - - - - - Display - true 400 - - true - 5 - - false - -1 - -1 - - - 153 71 - - true - 1 - 39872d87:13e14015f61:4fc3 + 153 + + false - + + + + + + + 0 + 1 + true + + + + + + 22 + 1 Label + true true false - true + false + Huber Slit Controller $(P)$(HSC) + + true + 1 + true + Label + 380 + false + 10 + 17 + + + + false - - - - Label - true - Huber Slit Controller $(P)$(HSC) - - - - 380 - 0 - - 1 - 1 - - 17 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:4fc4 - false - + 0 + 1 + true + + + + + + 8 + 0 Label + true true false - true + false + xiahsc.adl edited: 1999-Dec-08 (prj) + + true + 1 + true + Label + 380 + false + 10 + 4 + + + + false - - - - Label - true - xiahsc.adl edited: 1999-Dec-08 (prj) - - - - 380 - 0 - - 1 - 0 - - 4 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:4fc5 - false - + 0 + 1 + true + + + + + + 18 + 0 Label + true true false - true + false + Instructions + + true + 1 + true + Label + 380 + false + 10 + 71 + + + + false - - - - Label - true - Instructions - - - - 380 - 0 - - 1 - 0 - - 71 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:4fc6 - false - + 0 + 1 + true + + + + + + 22 + 1 Label + true true false - true + false + Calibration + + true + 1 + true + Label + 380 + false + 10 + 44 + + + + false - - - - Label - true - Calibration - - - - 380 - 0 - - 1 - 1 - - 44 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:4fc7 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + step 2: unplug power supply from slit cable + + true + 1 + true + Label + 380 + false + 10 + 114 + + + + false - - - - Label - true - step 2: unplug power supply from slit cable - - - - 380 - 0 - - 1 - 0 - - 114 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:4fc8 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + step 3: manually close the slits to 0 + + true + 1 + true + Label + 380 + false + 10 + 133 + + + + false - - - - Label - true - step 3: manually close the slits to 0 - - - - 380 - 0 - - 1 - 0 - - 133 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:4fc9 - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + step 4: plug the power cable back in + + true + 1 + true + Label + 380 + false + 10 + 152 + + + + false - - - - Label - true - step 4: plug the power cable back in - - - - 380 - 0 - - 1 - 0 - - 152 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:4fca - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + step 1: disable slit software + + true + 1 + true + Label + 380 + false + 10 + 95 + + + + false - - - - Label - true - step 1: disable slit software - - - - 380 - 0 - - 1 - 0 - - 95 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:4fcb - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false - - - - - - - Label - true step 5: enable slit software - - - - 380 - 0 - - 1 - - - - 0 - - 171 - true + true + 1 + true + Label + 380 + false 10 + 171 - + + + + $(P)$(HSC)calib + 1 + 10 + + + + + false + false + + + false - true - 39872d87:13e14015f61:4fcc - + + + + 0 + 1 + true + + Default + + false + + + 22 + Action Button - false + 0 + $(P)$(HSC)calib + + true true false - $(P)$(HSC)calib - - - - - - - Action Button - true + + calibrate - false - - Default - - 140 - 0 - 0 - - - false - 1 - - - - 209 - - - $(P)$(HSC)calib - 1 - 10 - - - $(pv_name) $(pv_value) + true + Action Button + 140 130 + 209 - - true - 1 - 39872d87:13e14015f61:4fcd + + false - - 14 - Label - - true - true - false - - true - false - - - - Label - true - step 7: you are done - - - - 380 - 0 - - 1 - 0 - - 236 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:4fce - false - + 0 + 1 + true + + + + + + 14 + 0 Label + true true false - true + false + step 7: you are done + + true + 1 + true + Label + 380 + false + 10 + 236 + + + + false - - - - Label - true - step 6: press the calibrate button below - - - - 380 - 0 - - 1 + 0 + 1 + true + + + + + + + 14 0 - - 190 - true - - 10 - - - false - true - false - 39872d87:13e14015f61:4fcf - - 22 - Menu Button - false + Label + true true false - false - - - - - - - - Menu Button - true - false - - Default - + + false + step 6: press the calibrate button below + + true + 1 + true + Label 380 - 6 - - - - 1 - - - - 255 + false + 10 + 190 + + xiahsc.opi true - 1 + 0 slit control + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 22 + + Action Button + 0 + + + + + true + true + false + + + + return to slit control screen + false $(pv_name) $(pv_value) + true + Action Button + 380 10 + 255 - - true - 1 - 39872d87:13e14015f61:4fd0 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 2 Label + true true false - true + false - - - - - - - Label - true serial port: - - - - 147 - 0 - - 1 - - - - 1 - - 282 - true + true + 1 + true + Label + 147 + false 10 + 282 - - true - true - 1 - false - 39872d87:13e14015f61:4fd1 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 0 Text Update - false + 0 + true + $(P)$(HSC)port + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)port - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 221 - 0 - - - 1 - - - - 0 - - 282 false - $(pv_name) -$(pv_value) 169 + 282 - - false - true - 39872d87:13e14015f61:4fd2 - - 38 - Choice Button - false - - true - true - false - - $(P)$(HSC)enable + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 82 - 0 - - - - - + false + + + + 38 + false Choice 1 Choice 2 Choice 3 - 1 - false - - - true - - 62 + Choice Button + $(P)$(HSC)enable + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 82 301 + 62 - \ No newline at end of file + diff --git a/opticsApp/op/opi/xiahsc_full.opi b/opticsApp/op/opi/autoconvert/xiahsc_full.opi similarity index 77% rename from opticsApp/op/opi/xiahsc_full.opi rename to opticsApp/op/opi/autoconvert/xiahsc_full.opi index 5176e24..751a7c7 100644 --- a/opticsApp/op/opi/xiahsc_full.opi +++ b/opticsApp/op/opi/autoconvert/xiahsc_full.opi @@ -1,78 +1,76 @@ - + + + + false + -1 + -1 + false + + + + 5.1.0 + + + + 5 + 538 true - 39872d87:13e14015f61:4fe5 - 3.1.2.20120830 + xiahsc_full + + true + true + false true - 538 - xiahsc_full false - false - - - - - - Display - true 449 - - true - 5 - - false - -1 - -1 - - - 35 13 - - false - true - 0.0 - - - - 39872d87:13e14015f61:4fe9 - - - - - 80 - true - Rectangle - false + 35 + + + false 255 - - true - true - false - - true - + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 0.0 - Default + Default - 120 + false + + + + false + 80 + true + + + 0 - 0 + 30 + Rectangle + + @@ -84,119 +82,119 @@ $(P)$(HSC)error - - 1 - 30 - true - - - - - 191 - $(pv_name) -$(pv_value) - 166 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4fea - - - - - 90 - true - Rectangle - false - 255 true true false - false - + + $(pv_name) +$(pv_value) + true + true + Rectangle + 120 + 166 + 191 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 118 - 0 - 0 - - - 1 - 0 - true - - - - - 186 - $(pv_name) -$(pv_value) - 43 + false + + + false - - - false - true - 100.0 + 90 + true - 39872d87:13e14015f61:4feb - - - - - 72 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 118 + 43 + 186 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 110 + false + + + + false + 72 + true + + + 0 - 0 + 0 + Rectangle + + @@ -208,119 +206,119 @@ $(pv_value) $(P)$(HSC)hBusy - - 1 - 0 - true - - - - - 200 - $(pv_name) -$(pv_value) - 47 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4ff0 - - - - - 90 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 110 + 47 + 200 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 118 - 0 - 0 - - - 1 - 0 - true - - - - - 96 - $(pv_name) -$(pv_value) - 167 + false + + + false - - - false - true - 100.0 + 90 + true - 39872d87:13e14015f61:4ff1 - - - - - 72 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 118 + 167 + 96 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 110 + false + + + + false + 72 + true + + + 0 - 0 + 0 + Rectangle + + @@ -332,119 +330,119 @@ $(pv_value) $(P)$(HSC)vBusy - - 1 - 0 - true - - - - - 110 - $(pv_name) -$(pv_value) - 171 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4ff6 - - - - - 90 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 110 + 171 + 110 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 118 - 0 - 0 - - - 1 - 0 - true - - - - - 276 - $(pv_name) -$(pv_value) - 167 + false + + + false - - - false - true - 100.0 + 90 + true - 39872d87:13e14015f61:4ff7 - - - - - 72 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 118 + 167 + 276 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 110 + false + + + + false + 72 + true + + + 0 - 0 + 0 + Rectangle + + @@ -456,119 +454,119 @@ $(pv_value) $(P)$(HSC)vBusy - - 1 - 0 - true - - - - - 290 - $(pv_name) -$(pv_value) - 171 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:4ffc - - - - - 90 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 110 + 171 + 290 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 118 - 0 - 0 - - - 1 - 0 - true - - - - - 186 - $(pv_name) -$(pv_value) - 291 + false + + + false - - - false - true - 100.0 + 90 + true - 39872d87:13e14015f61:4ffd - - - - - 72 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 118 + 291 + 186 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 110 + false + + + + false + 72 + true + + + 0 - 0 + 0 + Rectangle + + @@ -580,120 +578,120 @@ $(pv_value) $(P)$(HSC)hBusy - - 1 - 0 - true - - - - - 200 - $(pv_name) -$(pv_value) - 295 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:5002 - - - - - 90 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 110 + 295 + 200 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 118 - 0 - 0 - - - 1 - 0 - true - - - - - 84 - $(pv_name) -$(pv_value) - 24 + false + + + false - - - false - true - 100.0 + 90 + true - 39872d87:13e14015f61:5003 - - - - - 72 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 118 + 24 + 84 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 110 - 0 - 0 - + false + + + + false + 72 + true + + + + 0 + 0 + Rectangle + + + true @@ -704,119 +702,119 @@ $(pv_value) $(P)$(HSC)hBusy - - 1 - 0 - true - - - - - 98 - $(pv_name) -$(pv_value) - 28 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:5008 - - - - - 90 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 110 + 28 + 98 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 118 - 0 - 0 - - - 1 - 0 - true - - - - - 288 - $(pv_name) -$(pv_value) - 24 + false + + + false - - - false - true - 100.0 + 90 + true - 39872d87:13e14015f61:5009 - - - - - 72 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 118 + 24 + 288 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 110 + false + + + + false + 72 + true + + + 0 - 0 + 0 + Rectangle + + @@ -828,119 +826,119 @@ $(pv_value) $(P)$(HSC)hBusy - - 1 - 0 - true - - - - - 302 - $(pv_name) -$(pv_value) - 28 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:500e - - - - - 90 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 110 + 28 + 302 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 118 - 0 - 0 - - - 1 - 0 - true - - - - - 288 - $(pv_name) -$(pv_value) - 310 + false + + + false - - - false - true - 100.0 + 90 + true - 39872d87:13e14015f61:500f - - - - - 72 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - - - - - - - + true Rectangle + 118 + 310 + 288 + + + + false + 255 + true + false + + + + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 110 + false + + + + false + 72 + true + + + 0 - 0 + 0 + Rectangle + + @@ -952,119 +950,119 @@ $(pv_value) $(P)$(HSC)vBusy - - 1 - 0 - true - - - - - 302 - $(pv_name) -$(pv_value) - 314 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:5014 - - - - - 90 - true - Rectangle - false - 255 true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 110 + 314 + 302 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 118 - 0 - 0 - - - 1 - 0 - true - - - - - 84 - $(pv_name) -$(pv_value) - 310 + false + + + false - - - false - true - 100.0 + 90 + true - 39872d87:13e14015f61:5015 - - - - - 72 - true + 0 + 0 Rectangle - false - 255 + + + true true false + + $(pv_name) +$(pv_value) false - + true + Rectangle + 118 + 310 + 84 + + + + false + 255 + true + false - - - - Rectangle + + + + false + + + + 0 + 1 true - false + 100.0 - Default + Default - 110 + false + + + + false + 72 + true + + + 0 - 0 + 0 + Rectangle + + @@ -1076,2610 +1074,2345 @@ $(pv_value) $(P)$(HSC)vBusy - - 1 - 0 - true - - - - - 98 - $(pv_name) -$(pv_value) - 314 - false - - - true - 1 - 39872d87:13e14015f61:4fe6 - false - - 20 - Label true true false - true - false + + $(pv_name) +$(pv_value) + false + true + Rectangle + 110 + 314 + 98 + + + + false - - - - Label - true - Huber Slit Controller $(P)$(HSC) - - - - 380 - 0 - - 1 + 0 + 1 + true + + + + + + + 20 1 - - 17 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:4fe7 - false - - 8 Label + true true false - true + false + Huber Slit Controller $(P)$(HSC) + + true + 1 + true + Label + 380 + false + 10 + 17 + + + + false - - - - Label - true - xiahsc.adl edited: 1999-Sept-25 (prj) - - - - 363 - 0 - - 1 + 0 + 1 + true + + + + + + + 8 0 - - 4 - true - - 4 - - - false - true - 39872d87:13e14015f61:4fe8 - - 30 - Action Button - false + Label + true true false - $(P)$(HSC)stop - - - - - - - Action Button - true - STOP - false - - Default - - 410 - 0 - 0 - - - - false - 1 - - - - 382 + + false + xiahsc.adl edited: 1999-Sept-25 (prj) + + true + 1 + true + Label + 363 + false + 4 + 4 + + $(P)$(HSC)stop 1 10 + + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 30 + + Action Button + 0 + $(P)$(HSC)stop + + + + true + true + false + + + + STOP + false $(pv_name) $(pv_value) + true + Action Button + 410 21 + 382 - - false - true - 1 - false + + + false false - - 24 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 24 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4fec - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)l + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)l - - - - false - 0 - - - false - - - - 0 - - 223 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 52 + 223 - - true - true - 1 - false - 39872d87:13e14015f61:4fed + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)$(HSC)lRB + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)lRB - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 204 false - $(pv_name) -$(pv_value) 52 + 204 - - 20.0 - true - true - - - - - - - true - - - - - 20 - 50 - false - 10.0 + + + false + false - + + 1.0 + true + + + + 0 + 1 true - Scaled Slider - true - Default + Default - 100 - true - 0 - true - - true - true + false + + + + 20 + true + true 100.0 - 1 - false - false 0.0 - 39872d87:13e14015f61:4fee - true - - true - - - - Scaled Slider + Scrollbar + 0.009999999776482582 + $(P)$(HSC)l + + true true false - - - - $(P)$(HSC)l - - - - 1.0 - false - 80.0 - - Default - - 90.0 - - - - - - - - - true - true - - - - 10.0 - 247 - - 52 + + true + 0.009999999776482582 $(pv_name) $(pv_value) - - true - 1 - 39872d87:13e14015f61:4fef + Scrollbar + 100 + 52 + 247 + + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true left - - - - 110 - 0 - - 1 - - - - 1 - - 190 - true + true + 1 + true + Label + 110 + false 47 + 190 - - false - true - 1 - false + + + false false - - 24 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 24 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4ff2 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)t + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)t - - - - false - 0 - - - false - - - - 0 - - 133 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 176 + 133 - - true - true - 1 - false - 39872d87:13e14015f61:4ff3 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)$(HSC)tRB + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)tRB - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 114 false - $(pv_name) -$(pv_value) 176 + 114 - - 20.0 - true - true - - - - - - - true - - - - - 20 - 50 - false - 10.0 + + + false + false - + + 1.0 + true + + + + 0 + 1 true - Scaled Slider - true - Default + Default - 100 - true - 0 - true - - true - true + false + + + + 20 + true + true 100.0 - 1 - false - false 0.0 - 39872d87:13e14015f61:4ff4 - true - - true - - - - Scaled Slider + Scrollbar + 0.009999999776482582 + $(P)$(HSC)t + + true true false - - - - $(P)$(HSC)t - - - - 1.0 - false - 80.0 - - Default - - 90.0 - - - - - - - - - true - true - - - - 10.0 - 157 - - 176 + + true + 0.009999999776482582 $(pv_name) $(pv_value) - - true - 1 - 39872d87:13e14015f61:4ff5 + Scrollbar + 100 + 176 + 157 + + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true top - - - - 110 - 0 - - 1 - - - - 1 - - 100 - true + true + 1 + true + Label + 110 + false 171 + 100 - - false - true - 1 - false + + + false false - - 24 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 24 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4ff8 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)b + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)b - - - - false - 0 - - - false - - - - 0 - - 313 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 176 + 313 - - true - true - 1 - false - 39872d87:13e14015f61:4ff9 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)$(HSC)bRB + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)bRB - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 294 false - $(pv_name) -$(pv_value) 176 + 294 - - 20.0 - true - true - - - - - - - true - - - - - 20 - 50 - false - 10.0 + + + false + false - + + 1.0 + true + + + + 0 + 1 true - Scaled Slider - true - Default + Default - 100 - true - 0 - true - - true - true + false + + + + 20 + true + true 100.0 - 1 - false - false 0.0 - 39872d87:13e14015f61:4ffa - true - - true - - - - Scaled Slider + Scrollbar + 0.009999999776482582 + $(P)$(HSC)b + + true true false - - - - $(P)$(HSC)b - - - - 1.0 - false - 80.0 - - Default - - 90.0 - - - - - - - - - true - true - - - - 10.0 - 337 - - 176 + + true + 0.009999999776482582 $(pv_name) $(pv_value) - - true - 1 - 39872d87:13e14015f61:4ffb + Scrollbar + 100 + 176 + 337 + + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true bottom - - - - 110 - 0 - - 1 - - - - 1 - - 280 - true + true + 1 + true + Label + 110 + false 171 + 280 - - false - true - 1 - false + + + false false - - 24 - false - true + false - + - Text Input - true - - - - - 100 + false + + + 3 - 1 + + true + + + + false + + + + 1 + 24 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:4ffe - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)r + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)r - - - - false - 0 - - - false - - - - 0 - - 223 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 300 + 223 - - true - true - 1 - false - 39872d87:13e14015f61:4fff + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)$(HSC)rRB + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)rRB - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 204 false - $(pv_name) -$(pv_value) 300 + 204 - - 20.0 - true - true - - - - - - - true - - - - - 20 - 50 - false - 10.0 + + + false + false - + + 1.0 + true + + + + 0 + 1 true - Scaled Slider - true - Default + Default - 100 - true - 0 - true - - true - true + false + + + + 20 + true + true 100.0 - 1 - false - false 0.0 - 39872d87:13e14015f61:5000 - true - - true - - - - Scaled Slider + Scrollbar + 0.009999999776482582 + $(P)$(HSC)r + + true true false - - - - $(P)$(HSC)r - - - - 1.0 - false - 80.0 - - Default - - 90.0 - - - - - - - - - true - true - - - - 10.0 - 247 - - 300 + + true + 0.009999999776482582 $(pv_name) $(pv_value) - - true - 1 - 39872d87:13e14015f61:5001 + Scrollbar + 100 + 300 + 247 + + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true right - - - - 110 - 0 - - 1 - - - - 1 - - 190 - true + true + 1 + true + Label + 110 + false 295 + 190 - - false - true - 1 - false + + + false false - - 24 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 24 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:5004 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)width + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)width - - - - false - 0 - - - false - - - - 0 - - 121 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 33 + 121 - - true - true - 1 - false - 39872d87:13e14015f61:5005 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)$(HSC)widthRB + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)widthRB - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 102 false - $(pv_name) -$(pv_value) 33 + 102 - - 20.0 - true - true - - - - - - - true - - - - - 20 - 50 - false - 10.0 + + + false + false - + + 1.0 + true + + + + 0 + 1 true - Scaled Slider - true - Default + Default - 100 - true - 0 - true - - true - true + false + + + + 20 + true + true 100.0 - 1 - false - false 0.0 - 39872d87:13e14015f61:5006 - true - - true - - - - Scaled Slider + Scrollbar + 0.009999999776482582 + $(P)$(HSC)width + + true true false - - - - $(P)$(HSC)width - - - - 1.0 - false - 80.0 - - Default - - 90.0 - - - - - - - - - true - true - - - - 10.0 - 145 - - 33 + + true + 0.009999999776482582 $(pv_name) $(pv_value) - - true - 1 - 39872d87:13e14015f61:5007 + Scrollbar + 100 + 33 + 145 + + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true width - - - - 110 - 0 - - 1 - - - - 1 - - 88 - true + true + 1 + true + Label + 110 + false 28 + 88 - - false - true - 1 - false + + + false false - - 24 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 24 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:500a - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)h0 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)h0 - - - - false - 0 - - - false - - - - 0 - - 325 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 33 + 325 - - true - true - 1 - false - 39872d87:13e14015f61:500b + + + false false - 0.0 - - 20 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(HSC)h0RB + false - + - - - - Text Update - true - ###### - false - 0 - - - - 100 - 0 - - - 1 + true + 0 + 1 + true + + + + false + + + + 1 + 20 0 - - 306 - false + Text Update + 0 + true + $(P)$(HSC)h0RB + + 0.0 + + + true + true + false + + + false + ###### $(pv_name) $(pv_value) + false + 1 + true + Text Update + 100 + false 33 + 306 - - 20.0 - true - true - - - - - - - true - - - - - 20 - 50 - false - 10.0 + + + false + false - + + 1.0 + true + + + + 0 + 1 true - Scaled Slider - true - Default + Default - 100 - true - 0 - true - - true - true + false + + + + 20 + true + true 100.0 - 1 - false - false 0.0 - 39872d87:13e14015f61:500c - true - - true - - - - Scaled Slider + Scrollbar + 0.009999999776482582 + $(P)$(HSC)h0 + + true true false - - - - $(P)$(HSC)h0 - - - - 1.0 - false - 80.0 - - Default - - 90.0 - - - - - - - - - true - true - - - - 10.0 - 349 - - 33 + + true + 0.009999999776482582 $(pv_name) $(pv_value) - - true - 1 - 39872d87:13e14015f61:500d + Scrollbar + 100 + 33 + 349 + + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true hor. center - - - - 110 - 0 - - 1 - - - - 1 - - 292 - true + true + 1 + true + Label + 110 + false 28 + 292 - - false - true - 1 - false + + + false false - - 24 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 24 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:5010 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)v0 + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)v0 - - - - false - 0 - - - false - - - - 0 - - 325 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 319 + 325 - - true - true - 1 - false - 39872d87:13e14015f61:5011 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)$(HSC)v0RB + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)v0RB + 1 + true + Text Update + 100 + false + 319 + 306 + + + + false + false - + + 1.0 + true + + + + 0 + 1 + true + + Default + + false - + - Text Update - true - ###### - false - 0 - - - - 100 - 0 - - - 1 - - - - 0 - - 306 - false - $(pv_name) -$(pv_value) - 319 - - - 20.0 - true - true - - - - - - - true - - - - 20 - 50 - false - 10.0 - - - - true - Scaled Slider - true - - Default - - 100 - true - 0 - true - - true - true + true + true 100.0 - 1 - false - false 0.0 - 39872d87:13e14015f61:5012 - true - - true - - - - Scaled Slider + Scrollbar + 0.009999999776482582 + $(P)$(HSC)v0 + + true true false - - - - $(P)$(HSC)v0 - - - - 1.0 - false - 80.0 - - Default - - 90.0 - - - - - - - - - true - true - - - - 10.0 - 349 - - 319 + + true + 0.009999999776482582 $(pv_name) $(pv_value) - - true - 1 - 39872d87:13e14015f61:5013 + Scrollbar + 100 + 319 + 349 + + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true ver. center - - - - 110 - 0 - - 1 - - - - 1 - - 292 - true + true + 1 + true + Label + 110 + false 314 + 292 - - false - true - 1 - false + + + false false - - 24 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 100 - 3 - - 1 + false + + + + 1 + 24 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:5016 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)height + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)height - - - - false - 0 - - - false - - - - 0 - - 121 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 100 319 + 121 - - true - true - 1 - false - 39872d87:13e14015f61:5017 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 20 + 0 Text Update - false + 0 + true + $(P)$(HSC)heightRB + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)heightRB - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 100 - 0 - - - 1 - - - - 0 - - 102 false - $(pv_name) -$(pv_value) 319 + 102 - - 20.0 - true - true - - - - - - - true - - - - - 20 - 50 - false - 10.0 + + + false + false - + + 1.0 + true + + + + 0 + 1 true - Scaled Slider - true - Default + Default - 100 - true - 0 - true - - true - true + false + + + + 20 + true + true 100.0 - 1 - false - false 0.0 - 39872d87:13e14015f61:5018 - true - - true - - - - Scaled Slider + Scrollbar + 0.009999999776482582 + $(P)$(HSC)height + + true true false - - - - $(P)$(HSC)height - - - - 1.0 - false - 80.0 - - Default - - 90.0 - - - - - - - - - true - true - - - - 10.0 - 145 - - 319 + + true + 0.009999999776482582 $(pv_name) $(pv_value) - - true - 1 - 39872d87:13e14015f61:5019 + Scrollbar + 100 + 319 + 145 + + + false - + + + + + + + 0 + 1 + true + + + + + + 10 + 1 Label + true true false - true + false - - - - - - - Label - true height - - - - 110 - 0 - - 1 - - - - 1 - - 88 - true + true + 1 + true + Label + 110 + false 314 + 88 - - true - true - 1 - false - 39872d87:13e14015f61:501a + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)$(HSC)errMsg + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)errMsg - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 240 - 0 - - - 1 - - - - 1 - - 420 false - $(pv_name) -$(pv_value) 187 + 420 - - false - true - 39872d87:13e14015f61:501b - - 18 - Action Button - false - - true - true - false - - $(P)$(HSC)init - - - - - - - Action Button - true - init - false - - Default - - 112 - 0 - 0 - - - - false - 1 - - - - 439 + $(P)$(HSC)init 1 10 + - $(pv_name) -$(pv_value) - 21 - - + false + false + + + false - true - 39872d87:13e14015f61:501c - + + + + 0 + 1 + true + + Default + + false + + + 18 + Action Button - false + 0 + $(P)$(HSC)init + + true true false - $(P)$(HSC)locate - - - - - - + + + init + false + $(pv_name) +$(pv_value) + true Action Button - true - locate - false - - Default - 112 - 0 - 0 - - - - false - 1 - - - + 21 439 + + $(P)$(HSC)locate 1 10 + - $(pv_name) -$(pv_value) - 319 - - + false + false + + + false - true - 39872d87:13e14015f61:501d - - 18 - Choice Button + + + + 0 + 1 + true + + Default + false + + + + 18 + + Action Button + 0 + $(P)$(HSC)locate + + true true false - $(P)$(HSC)enable + + + locate + false + $(pv_name) +$(pv_value) + true + Action Button + 112 + 319 + 439 + + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 168 - 0 + false + + + + 18 + true + + Choice 1 + Choice 2 + Choice 3 + + true + Choice Button + $(P)$(HSC)enable + + + + true + true + false + + - - - - Choice 1 - Choice 2 - Choice 3 - - 1 - true - - - - true - - 439 $(pv_name) $(pv_value) + true + Choice Button + 168 142 + 439 - - true - 1 - 39872d87:13e14015f61:501e + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 2 Label + true true false - true + false - - - - - - - Label - true hor. ID: - - - - 112 - 0 - - 1 - - - - 1 - - 464 - true + true + 1 + true + Label + 112 + false 21 + 464 - - false - true - 1 - false + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 168 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:501f - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)hID + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)hID - - - - false - 0 - - - false - - - - 0 - - 462 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 168 142 + 462 - - false - true - 39872d87:13e14015f61:5020 - - 15 - Choice Button - false - - true - true - false - - $(P)$(HSC)hOrient + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 112 - 0 - - - - - + false + + + + 15 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 464 + Choice Button + $(P)$(HSC)hOrient + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 112 319 + 464 - - true - 1 - 39872d87:13e14015f61:5021 + + false - + + + + + + + 0 + 1 + true + + + + + + 14 + 2 Label + true true false - true + false - - - - - - - Label - true ver. ID: - - - - 112 - 0 - - 1 - - - - 1 - - 487 - true + true + 1 + true + Label + 112 + false 21 + 487 - - false - true - 1 - false + + + false false - - 18 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 168 - 3 - - 1 + false + + + + 1 + 18 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:5022 - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)vID + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)vID - - - - false - 0 - - - false - - - - 0 - - 485 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 168 142 + 485 - - false - true - 39872d87:13e14015f61:5023 - - 15 - Choice Button - false - - true - true - false - - $(P)$(HSC)vOrient + + + false + false - + - - - - Choice Button + false + + + + 0 + 1 true - false - Default + Default - 112 - 0 - - - - - + false + + + + 15 + true Choice 1 Choice 2 Choice 3 - 1 - true - - - true - - 487 + Choice Button + $(P)$(HSC)vOrient + + + + true + true + false + + + + + $(pv_name) $(pv_value) + true + Choice Button + 112 319 + 487 - - true - true - 1 - false - 39872d87:13e14015f61:5024 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 14 + 1 Text Update - false + 0 + true + $(P)$(HSC)error + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)error - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 40 - 0 - - - 1 - - - - 1 - - 420 false - $(pv_name) -$(pv_value) 140 + 420 - - true - 1 - 39872d87:13e14015f61:5025 + + false - - 14 - Label - - true - true - false - - true - false - - - - Label + + + + 0 + 1 true - error! - + - 100 - 0 + + + + 14 + 1 + Label @@ -3691,267 +3424,283 @@ $(pv_value) $(P)$(HSC)error - 1 - - - - 1 - - 223 - true - - 176 - - - true - 1 - 39872d87:13e14015f61:5026 - false - - 14 - Label true true false - true + false - - - - - - + error! + + true + 1 + true Label - true - error: - - - 100 - 0 - - 1 - - - - 1 - - 420 - true - - 20 + false + 176 + 223 - - false - true - false - 39872d87:13e14015f61:5027 - - 18 - Menu Button - false - - true - true - false - - false - + + + false - + - - - - Menu Button + + + + 0 + 1 true - false - Default + - 112 - 6 - + + + + 14 + 2 + Label - - 1 - - - - 509 + + true + true + false + + + false + error: + + true + 1 + true + Label + 100 + false + 20 + 420 + + xiahsc_calib.opi true - 0 + 1 calibrate - $(pv_name) -$(pv_value) - 319 - - + false + false + + + false - true - false - 39872d87:13e14015f61:5028 - - 16 - Menu Button + + + + 0 + 1 + true + + Default + false + + + + 18 + + Action Button + 0 + + + true true false - false - - - - - - - - Menu Button - true - false - - Default - - 60 - 6 - - - - 1 - - - - 3 + + + calibrate... + false + $(pv_name) +$(pv_value) + true + Action Button + 112 + 319 + 509 + + xiahsc.opi true - 1 + 0 less + false + false + + + + false + + + + 0 + 1 + true + + Default + + false + + + + 16 + + Action Button + 0 + + + + + true + true + false + + + + less + false $(pv_name) $(pv_value) + true + Action Button + 60 384 + 3 - - true - true - 1 - false - 39872d87:13e14015f61:5029 + + + false false - 0.0 - + false + + + + true + + + + 0 + 1 + true + + + + false + + + + 1 13 + 1 Text Update - false + 0 + true + $(P)$(HSC)port.VAL + + 0.0 + true true false - 1 - true + + false + ###### + $(pv_name) +$(pv_value) false - $(P)$(HSC)port.VAL - - - - - - + 1 + true Text Update - true - ###### - false - 0 - - - 410 - 0 - - - 1 - - - - 1 - - 68 false - $(pv_name) -$(pv_value) 21 + 68 - - false - true - 1 - false + + + false false - - 28 - false - true + false - + - Text Input + false + + + + 3 + 1 + true - - + - 410 - 3 - - 1 + false + + + + 1 + 28 + 0 + false Infinity -Infinity - false - 39872d87:13e14015f61:502a - 0.0 + false Text Input + 0 + false + 0 + true + $(P)$(HSC)port.DESC + + false + 0.0 + true true false - 1 - false + 0 - $(P)$(HSC)port.DESC - - - - false - 0 - - - false - - - - 0 - - 40 + false + true + false + false + + $(pv_name) $(pv_value) + false + true + Text Input + 410 21 + 40 - \ No newline at end of file + diff --git a/opticsApp/op/opi/filter_16_0_more.opi b/opticsApp/op/opi/filter_16_0_more.opi deleted file mode 100644 index 04dd153..0000000 --- a/opticsApp/op/opi/filter_16_0_more.opi +++ /dev/null @@ -1,1950 +0,0 @@ - - false - - true - - 39872d87:13e14015f61:2cad - 3.1.2.20120830 - - true - 400 - filter_16_0_more - false - false - - - - - - - Display - true - 680 - - true - 5 - - false - -1 - -1 - - - 300 - 300 - - false - true - 100.0 - - - - 39872d87:13e14015f61:2cae - - - - - 21 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 150 - 0 - 0 - - - 1 - 0 - true - - - - - 40 - $(pv_name) -$(pv_value) - 5 - false - - - - true - - true - 39872d87:13e14015f61:2cb7 - - 170 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 671 - 0 - - false - 1 - - - - - 225 - - 5 - - - true - 13 - 14 - 15 - 16 - - true - 39872d87:13e14015f61:2cb8 - false - - true - 170 - Linking Container - - true - true - false - - filterbox_more.opi - - - - - - - - Linking Container - true - - Default - - 130 - 3 - - 1 - - - - - 0 - - 35 - - - - true - 9 - 10 - 11 - 12 - - true - 39872d87:13e14015f61:2cb9 - false - - true - 170 - Linking Container - - true - true - false - - filterbox_more.opi - - - - - - - - Linking Container - true - - Default - - 130 - 3 - - 1 - - - - - 0 - - 175 - - - - true - 5 - 6 - 7 - 8 - - true - 39872d87:13e14015f61:2cba - false - - true - 170 - Linking Container - - true - true - false - - filterbox_more.opi - - - - - - - - Linking Container - true - - Default - - 130 - 3 - - 1 - - - - - 0 - - 370 - - - - true - 1 - 2 - 3 - 4 - - true - 39872d87:13e14015f61:2cbb - false - - true - 170 - Linking Container - - true - true - false - - filterbox_more.opi - - - - - - - - Linking Container - true - - Default - - 130 - 3 - - 1 - - - - - 0 - - 510 - - - - true - - true - 39872d87:13e14015f61:2cbc - - 85 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 671 - 0 - - false - 1 - - - - - 55 - - 0 - - - true - - true - 39872d87:13e14015f61:2cbd - - 19 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 79 - 0 - - false - 1 - - - - - 0 - - 298 - - - true - - true - 39872d87:13e14015f61:2cbe - - 19 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 35 - 0 - - false - 1 - - - - - 0 - - 22 - - - true - - true - 39872d87:13e14015f61:2cc0 - - 10 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 35 - 0 - - false - 1 - - - - - 0 - - 0 - - true - 1 - 39872d87:13e14015f61:2cc1 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - lock - - - - 21 - 0 - - 1 - - - - 0 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:2cc2 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - / - - - - 10 - 0 - - 1 - - - - 0 - - 0 - true - - 25 - - - - true - 1 - 39872d87:13e14015f61:2cbf - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - free - - - - 21 - 0 - - 1 - - - - 0 - - 9 - true - - 1 - - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2cc3 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 19 - 0 - 0 - - - 1 - 1 - true - - - - - 5 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2cc4 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 19 - 0 - 0 - - - 1 - 1 - true - - - - - 5 - $(pv_name) -$(pv_value) - 60 - - - - - true - - true - 39872d87:13e14015f61:2cc5 - - 15 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 671 - 0 - - false - 1 - - - - - 38 - - 0 - - - true - - true - 39872d87:13e14015f61:2cc6 - - 15 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 20 - 0 - - false - 1 - - - - - 0 - - 0 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2cc7 - 0.0 - - 0 - 8 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 20 - 0 - 0 - - - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 1 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2cc8 - 0.0 - - 0 - 8 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 20 - 0 - 0 - - - 1 - 1 - true - - - - - 7 - $(pv_name) -$(pv_value) - 1 - - - - - true - - true - 39872d87:13e14015f61:2cc9 - - 15 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 20 - 0 - - false - 1 - - - - - 0 - - 330 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2cca - 0.0 - - 0 - 8 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 20 - 0 - 0 - - - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 1 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2ccb - 0.0 - - 0 - 8 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 20 - 0 - 0 - - - 1 - 1 - true - - - - - 7 - $(pv_name) -$(pv_value) - 1 - - - - - true - - true - 39872d87:13e14015f61:2ccc - - 15 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 20 - 0 - - false - 1 - - - - - 0 - - 646 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2ccd - 0.0 - - 0 - 8 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 20 - 0 - 0 - - - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 1 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2cce - 0.0 - - 0 - 8 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 20 - 0 - 0 - - - 1 - 1 - true - - - - - 7 - $(pv_name) -$(pv_value) - 1 - - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2ccf - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 670 - 0 - 0 - - - 1 - 1 - true - - - - - 8 - $(pv_name) -$(pv_value) - 1 - - - - - true - - true - 39872d87:13e14015f61:2cd0 - - 20 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 79 - 0 - - false - 1 - - - - - 65 - - 298 - - - true - - true - 39872d87:13e14015f61:2cd2 - - 20 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 45 - 0 - - false - 1 - - - - - 0 - - 17 - - true - 1 - 39872d87:13e14015f61:2cd3 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - remove - - - - 45 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:2cd4 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - insert - - - - 45 - 0 - - 1 - - - - 1 - - 10 - true - - 0 - - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2cd1 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 19 - 0 - 0 - - - 1 - 1 - true - - - - - 7 - $(pv_name) -$(pv_value) - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2cd5 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 19 - 0 - 0 - - - 1 - 1 - true - - - - - 7 - $(pv_name) -$(pv_value) - 60 - - - - - - - true - - true - 39872d87:13e14015f61:2cd6 - false - - true - 168 - Linking Container - - true - true - false - - filter_drive_more.opi - - - - - - - - Linking Container - true - - Default - - 490 - 3 - - 1 - - - - - 40 - - 175 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2caf - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 680 - 0 - 0 - - - 1 - 1 - true - - - - - 220 - $(pv_name) -$(pv_value) - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:2cb0 - false - 0.0 - - 25 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(R)Description - - - - - - - Text Update - true - ###### - false - 0 - - - - 670 - 0 - - - 1 - - - - 1 - - 5 - false - $(pv_name) -$(pv_value) - 5 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2cb1 - 0.0 - - 0 - 191 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true - - - - - 30 - $(pv_name) -$(pv_value) - 165 - - - true - 1 - 39872d87:13e14015f61:2cb2 - false - - 13 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(R) - - - - 150 - 0 - - 1 - - - - 1 - - 44 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:2cb3 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - filter_16_0_more.adl - - - - 118 - 0 - - 1 - - - - 0 - - 95 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:2cb4 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - 2013-01-31 (CMS) - - - - 118 - 0 - - 1 - - - - 0 - - 110 - true - - 5 - - - false - true - false - 39872d87:13e14015f61:2cb5 - - 18 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 70 - 6 - - - - 1 - - - - 70 - - - filter_drive_config.opi - - true - - 0 - configure - - - $(pv_name) -$(pv_value) - 85 - - - false - true - false - 39872d87:13e14015f61:2cb6 - - 18 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 70 - 6 - - - - 1 - - - - 70 - - - filter_16_0_less.opi - - true - - 1 - less - - - $(pv_name) -$(pv_value) - 5 - - \ No newline at end of file diff --git a/opticsApp/op/opi/filter_4_4_more.opi b/opticsApp/op/opi/filter_4_4_more.opi deleted file mode 100644 index 917d860..0000000 --- a/opticsApp/op/opi/filter_4_4_more.opi +++ /dev/null @@ -1,1852 +0,0 @@ - - false - - true - - 39872d87:13e14015f61:2da5 - 3.1.2.20120830 - - true - 400 - filter_4_4_more - false - false - - - - - - - Display - true - 510 - - true - 5 - - false - -1 - -1 - - - 300 - 300 - - - true - - true - 39872d87:13e14015f61:2da8 - - 180 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 496 - 0 - - false - 1 - - - - - 220 - - 10 - - false - true - 100.0 - - - - 39872d87:13e14015f61:2da9 - - - - - 21 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 115 - 0 - 0 - - - 1 - 0 - true - - - - - 30 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:2dad - - - - - 21 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 115 - 0 - 0 - - - 1 - 0 - true - - - - - 7 - $(pv_name) -$(pv_value) - 0 - false - - - - true - 5 - 6 - 7 - 8 - - true - 39872d87:13e14015f61:2daa - false - - true - 170 - Linking Container - - true - true - false - - filterbox_more.opi - - - - - - - - Linking Container - true - - Default - - 130 - 3 - - 1 - - - - - 5 - - 170 - - - - true - 1 - 2 - 3 - 4 - - true - 39872d87:13e14015f61:2dab - false - - true - 170 - Linking Container - - true - true - false - - filterbox_more.opi - - - - - - - - Linking Container - true - - Default - - 130 - 3 - - 1 - - - - - 5 - - 345 - - - - true - - true - 39872d87:13e14015f61:2db4 - - 88 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 379 - 0 - - false - 1 - - - - - 55 - - 117 - - - true - - true - 39872d87:13e14015f61:2db5 - - 88 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 62 - 0 - - false - 1 - - - - - 0 - - 0 - - - true - - true - 39872d87:13e14015f61:2db6 - - 20 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 50 - 0 - - false - 1 - - - - - 0 - - 12 - - - true - - true - 39872d87:13e14015f61:2db8 - - 20 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 34 - 0 - - false - 1 - - - - - 0 - - 0 - - - true - - true - 39872d87:13e14015f61:2dba - - 10 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 34 - 0 - - false - 1 - - - - - 0 - - 0 - - true - 1 - 39872d87:13e14015f61:2dbb - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - / - - - - 10 - 0 - - 1 - - - - 0 - - 0 - true - - 24 - - - true - 1 - 39872d87:13e14015f61:2dbc - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - lock - - - - 20 - 0 - - 1 - - - - 0 - - 0 - true - - 0 - - - - true - 1 - 39872d87:13e14015f61:2db9 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - free - - - - 20 - 0 - - 1 - - - - 0 - - 10 - true - - 0 - - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2db7 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 19 - 0 - 0 - - - 1 - 1 - true - - - - - 10 - $(pv_name) -$(pv_value) - 31 - - - - - true - - true - 39872d87:13e14015f61:2dbd - - 20 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 60 - 0 - - false - 1 - - - - - 68 - - 0 - - - true - - true - 39872d87:13e14015f61:2dbf - - 20 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 55 - 0 - - false - 1 - - - - - 0 - - 0 - - true - 1 - 39872d87:13e14015f61:2dc0 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - remove - - - - 55 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:2dc1 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - insert - - - - 55 - 0 - - 1 - - - - 1 - - 10 - true - - 0 - - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2dbe - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 18 - 0 - 0 - - - 1 - 1 - true - - - - - 9 - $(pv_name) -$(pv_value) - 42 - - - - - - true - - true - 39872d87:13e14015f61:2dc2 - - 26 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 358 - 0 - - false - 1 - - - - - 37 - - 21 - - false - true - 100.0 - - - - 39872d87:13e14015f61:2dcb - - - - - 26 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 15 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - - true - - true - 39872d87:13e14015f61:2dc4 - - 15 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 16 - 0 - - false - 1 - - - - - 6 - - 162 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2dc5 - 0.0 - - 0 - 8 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 17 - 0 - 0 - - - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 1 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2dc6 - 0.0 - - 0 - 8 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 17 - 0 - 0 - - - 1 - 1 - true - - - - - 7 - $(pv_name) -$(pv_value) - 1 - - - - - true - - true - 39872d87:13e14015f61:2dc7 - - 15 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 16 - 0 - - false - 1 - - - - - 6 - - 338 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2dc8 - 0.0 - - 0 - 8 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 17 - 0 - 0 - - - 1 - 1 - true - - - - - 1 - $(pv_name) -$(pv_value) - 1 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2dc9 - 0.0 - - 0 - 8 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 17 - 0 - 0 - - - 1 - 1 - true - - - - - 7 - $(pv_name) -$(pv_value) - 1 - - - - false - true - 100.0 - - - - 39872d87:13e14015f61:2dc3 - - - - - 22 - true - Ellipse - false - 255 - - true - true - true - - false - - - - - - - - Ellipse - true - - - - false - - Default - - 22 - 0 - 0 - - - 1 - 0 - true - - - - - 2 - $(pv_name) -$(pv_value) - 180 - false - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2dca - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 345 - 0 - 0 - - - 1 - 1 - true - - - - - 14 - $(pv_name) -$(pv_value) - 13 - - - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2dac - 0.0 - - 0 - 181 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 1 - 0 - 0 - - - 1 - 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 120 - - - true - 1 - 39872d87:13e14015f61:2dae - false - - 13 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(R) - - - - 115 - 0 - - 1 - - - - 1 - - 34 - true - - 0 - - - false - true - false - 39872d87:13e14015f61:2daf - - 18 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 50 - 6 - - - - 1 - - - - 56 - - - filter_4_4_less.opi - - true - - 1 - less - - - $(pv_name) -$(pv_value) - 0 - - - false - true - false - 39872d87:13e14015f61:2db0 - - 18 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 60 - 6 - - - - 1 - - - - 55 - - - filter_drive_config.opi - - true - - 0 - configure - - - $(pv_name) -$(pv_value) - 55 - - - true - 1 - 39872d87:13e14015f61:2db1 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - filter_4_4_more.adl - - - - 118 - 0 - - 1 - - - - 0 - - 77 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:2db2 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - 2013-01-24 (CMS) - - - - 118 - 0 - - 1 - - - - 0 - - 92 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:2db3 - false - - 13 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P) - - - - 115 - 0 - - 1 - - - - 1 - - 11 - true - - 0 - - - - - true - - true - 39872d87:13e14015f61:2dcc - false - - true - 168 - Linking Container - - true - true - false - - filter_drive_more.opi - - - - - - - - Linking Container - true - - Default - - 490 - 3 - - 1 - - - - - 40 - - 10 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:2da6 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 515 - 0 - 0 - - - 1 - 1 - true - - - - - 220 - $(pv_name) -$(pv_value) - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:2da7 - false - 0.0 - - 25 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(R)Description - - - - - - - Text Update - true - ###### - false - 0 - - - - 500 - 0 - - - 1 - - - - 1 - - 5 - false - $(pv_name) -$(pv_value) - 5 - - \ No newline at end of file diff --git a/opticsApp/op/opi/filter_drive.opi b/opticsApp/op/opi/filter_drive.opi deleted file mode 100644 index dcbbfb6..0000000 --- a/opticsApp/op/opi/filter_drive.opi +++ /dev/null @@ -1,1871 +0,0 @@ - - false - - true - - 39872d87:13e14015f61:2fdd - 3.1.2.20120830 - - true - 130 - filter_drive - false - false - - - - - - - Display - true - 500 - - true - 5 - - false - -1 - -1 - - - 92 - 89 - - false - true - 100.0 - - - - 39872d87:13e14015f61:2fde - - - - - 15 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 10 - 0 - 0 - - - - true - - - false - - $(P)$(R)EnergySelect - - - - 1 - 0 - true - - - - - 20 - $(pv_name) -$(pv_value) - 75 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:2fdf - - - - - 15 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 10 - 0 - 0 - - - - true - - - false - - $(P)$(R)EnergySelect - - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 75 - false - - - - true - - true - 39872d87:13e14015f61:2ff3 - - 108 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 155 - 0 - - false - 1 - - - - - 0 - - 230 - - false - true - 39872d87:13e14015f61:2ff4 - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionFactor - - - - - - - Action Button - true - /1000 - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)$(R)TransmissionFactor - 0.001 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:2ff5 - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionSetpoint - - - - - - - Action Button - true - 1e-2 - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)$(R)TransmissionSetpoint - 1.0e-2 - 10 - - - - $(pv_name) -$(pv_value) - 110 - - - false - true - 39872d87:13e14015f61:2ff6 - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionSetpoint - - - - - - - Action Button - true - 1e-4 - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 22 - - - $(P)$(R)TransmissionSetpoint - 1.0e-4 - 10 - - - - $(pv_name) -$(pv_value) - 110 - - - false - true - 39872d87:13e14015f61:2ff7 - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionSetpoint - - - - - - - Action Button - true - 1e-6 - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 44 - - - $(P)$(R)TransmissionSetpoint - 1.0e-6 - 10 - - - - $(pv_name) -$(pv_value) - 110 - - - false - true - 39872d87:13e14015f61:2ff8 - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionSetpoint - - - - - - - Action Button - true - 1e-8 - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 66 - - - $(P)$(R)TransmissionSetpoint - 1.0e-8 - 10 - - - - $(pv_name) -$(pv_value) - 110 - - - false - true - 39872d87:13e14015f61:2ff9 - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionSetpoint - - - - - - - Action Button - true - 1e-10 - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 88 - - - $(P)$(R)TransmissionSetpoint - 1.0e-10 - 10 - - - - $(pv_name) -$(pv_value) - 110 - - - false - true - 39872d87:13e14015f61:2ffa - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionFactor - - - - - - - Action Button - true - /10 - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 22 - - - $(P)$(R)TransmissionFactor - 0.1 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:2ffb - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionFactor - - - - - - - Action Button - true - /2 - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 44 - - - $(P)$(R)TransmissionFactor - .5 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:2ffc - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionFactor - - - - - - - Action Button - true - -10% - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 66 - - - $(P)$(R)TransmissionFactor - 0.9 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:2ffd - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionStepDown - - - - - - - Action Button - true - - - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 88 - - - $(P)$(R)TransmissionStepDown - 1 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:2ffe - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionStepUp - - - - - - - Action Button - true - + - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 88 - - - $(P)$(R)TransmissionStepUp - 1 - 10 - - - - $(pv_name) -$(pv_value) - 50 - - - false - true - 39872d87:13e14015f61:2fff - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionFactor - - - - - - - Action Button - true - *1000 - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)$(R)TransmissionFactor - 1000 - 10 - - - - $(pv_name) -$(pv_value) - 50 - - - false - true - 39872d87:13e14015f61:3000 - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionFactor - - - - - - - Action Button - true - *10 - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 22 - - - $(P)$(R)TransmissionFactor - 10 - 10 - - - - $(pv_name) -$(pv_value) - 50 - - - false - true - 39872d87:13e14015f61:3001 - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionFactor - - - - - - - Action Button - true - *2 - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 44 - - - $(P)$(R)TransmissionFactor - 2 - 10 - - - - $(pv_name) -$(pv_value) - 50 - - - false - true - 39872d87:13e14015f61:3002 - - 20 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionFactor - - - - - - - Action Button - true - +10% - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 66 - - - $(P)$(R)TransmissionFactor - 1.1 - 10 - - - - $(pv_name) -$(pv_value) - 50 - - - - false - true - 39872d87:13e14015f61:2fe0 - - 37 - Choice Button - false - - true - true - false - - $(P)$(R)EnergySelect - - - - - - - Choice Button - true - false - - Default - - 65 - 0 - - - - - - - Choice 1 - Choice 2 - Choice 3 - - 1 - false - - - - true - - 0 - $(pv_name) -$(pv_value) - 5 - - - true - true - 1 - false - 39872d87:13e14015f61:2fe1 - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(R)EnergyBeamline - - - - - - - Text Update - true - ###### - false - 0 - - - - 85 - 0 - - - 1 - - - - 0 - - 0 - false - $(pv_name) -$(pv_value) - 90 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 85 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2fe2 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(R)EnergyLocal - - - - false - 0 - - - false - - - - 0 - - 17 - $(pv_name) -$(pv_value) - 90 - - - true - 1 - 39872d87:13e14015f61:2fe3 - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - Message - - - - 60 - 0 - - 1 - - - - 0 - - 113 - true - - 6 - - - true - true - 1 - false - 39872d87:13e14015f61:2fe4 - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 4 - true - false - $(P)$(R)Message - - - - - - - Text Update - true - ###### - false - 0 - - - - 415 - 0 - - - 1 - - - - 0 - - 113 - false - $(pv_name) -$(pv_value) - 80 - - - false - true - 39872d87:13e14015f61:2fe5 - - 28 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionSetpoint - - - - - - - Action Button - true - ALL IN - false - - Default - - 95 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)$(R)TransmissionSetpoint - 0 - 10 - - - - $(pv_name) -$(pv_value) - 400 - - - false - true - 39872d87:13e14015f61:2fe6 - - 28 - Action Button - false - - true - true - false - - $(P)$(R)TransmissionSetpoint - - - - - - - Action Button - true - ALL OUT - false - - Default - - 95 - 0 - 0 - - - - false - 1 - - - - 30 - - - $(P)$(R)TransmissionSetpoint - 1 - 10 - - - - $(pv_name) -$(pv_value) - 400 - - - true - 1 - 39872d87:13e14015f61:2fe7 - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - Setpoint - - - - 86 - 0 - - 1 - - - - 0 - - 65 - true - - 400 - - - false - true - 1 - false - false - - 25 - false - true - - - - Text Input - true - - - - - 95 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:2fe8 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)$(R)TransmissionSetpoint - - - - false - 0 - - - false - - - - 0 - - 83 - $(pv_name) -$(pv_value) - 400 - - - true - 1 - 39872d87:13e14015f61:2fe9 - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - Mask - - - - 60 - 0 - - 1 - - - - 0 - - 93 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:2fea - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - Transm - - - - 60 - 0 - - 1 - - - - 0 - - 71 - true - - 5 - - - true - true - 1 - false - 39872d87:13e14015f61:2feb - false - 0.0 - - 13 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(R)FilterMask - - - - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 - - - - 0 - - 94 - false - $(pv_name) -$(pv_value) - 75 - - - true - true - 1 - false - 39872d87:13e14015f61:2fec - false - 0.0 - - 20 - Text Update - false - - true - true - false - - 2 - true - false - $(P)$(R)Transmission - - - - - - - Text Update - true - ###### - false - 0 - - - - 140 - 0 - - - 1 - - - - 0 - - 68 - false - $(pv_name) -$(pv_value) - 75 - - - true - 1 - 39872d87:13e14015f61:2fed - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - Status - - - - 60 - 0 - - 1 - - - - 0 - - 49 - true - - 5 - - - true - true - 1 - false - 39872d87:13e14015f61:2fee - false - 0.0 - - 20 - Text Update - true - - true - true - false - - 4 - true - false - $(P)$(R)Status - - - - - - - Text Update - true - ###### - false - 0 - - - - 140 - 0 - - - 1 - - - - 0 - - 46 - false - $(pv_name) -$(pv_value) - 75 - - - true - true - 1 - false - 39872d87:13e14015f61:2fef - false - 0.0 - - 13 - Text Update - false - - true - true - false - - 3 - true - false - $(P)$(R)FilterMask - - - - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 - - - - 0 - - 94 - false - $(pv_name) -$(pv_value) - 155 - - - true - 1 - 39872d87:13e14015f61:2ff0 - false - - 13 - Label - - true - true - false - - true - false - - - - - - - Label - true - = - - - - 10 - 0 - - 1 - - - - 0 - - 94 - true - - 140 - - - true - 1 - 39872d87:13e14015f61:2ff1 - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - keV - - - - 34 - 0 - - 1 - - - - 0 - - 0 - true - - 180 - - - true - 1 - 39872d87:13e14015f61:2ff2 - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - keV - - - - 34 - 0 - - 1 - - - - 0 - - 20 - true - - 180 - - \ No newline at end of file diff --git a/opticsApp/op/opi/filterbox_config.opi b/opticsApp/op/opi/filterbox_config.opi deleted file mode 100644 index b2860f8..0000000 --- a/opticsApp/op/opi/filterbox_config.opi +++ /dev/null @@ -1,1322 +0,0 @@ - - false - - true - - 39872d87:13e14015f61:3094 - 3.1.2.20120830 - - true - 125 - filterbox_config - false - false - - - - - - - Display - true - 425 - - true - 5 - - false - -1 - -1 - - - 200 - 300 - - - true - - true - 39872d87:13e14015f61:3095 - - 15 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 325 - 0 - - false - 1 - - - - - 5 - - 5 - - true - 1 - 39872d87:13e14015f61:3096 - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - Filter - - - - 45 - 0 - - 1 - - - - 0 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:3097 - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - Material - - - - 70 - 0 - - 1 - - - - 0 - - 0 - true - - 65 - - - true - 1 - 39872d87:13e14015f61:3098 - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - Thickness - - - - 70 - 0 - - 1 - - - - 0 - - 0 - true - - 145 - - - true - 1 - 39872d87:13e14015f61:3099 - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - Enable - - - - 50 - 0 - - 1 - - - - 0 - - 0 - true - - 275 - - - - - true - - true - 39872d87:13e14015f61:309a - - 20 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 415 - 0 - - false - 1 - - - - - 25 - - 5 - - true - 1 - 39872d87:13e14015f61:309b - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(N1): - - - - 45 - 0 - - 1 - - - - 0 - - 2 - true - - 0 - - - false - true - true - 39872d87:13e14015f61:309c - - 20 - Menu Button - false - - true - true - false - - false - $(P)$(R)Fi$(N1):Material - - - - - - - Menu Button - true - false - - Default - - 70 - 6 - - - - 1 - - - - 0 - - $(pv_name) -$(pv_value) - 65 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:309d - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(R)Fi$(N1):Thickness - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 145 - - - false - true - 39872d87:13e14015f61:309e - - 20 - Choice Button - true - - true - true - false - - $(P)$(R)Fi$(N1):Enable - - - - - - - Choice Button - true - false - - Default - - 140 - 0 - - - - - - - Choice 1 - Choice 2 - Choice 3 - - 1 - true - - - - true - - 0 - $(pv_name) -$(pv_value) - 275 - - - true - 1 - 39872d87:13e14015f61:309f - false - - 17 - Label - - true - true - false - - true - false - - - - - - - Label - true - um - - - - 16 - 0 - - 1 - - - - 0 - - 1 - true - - 250 - - - - - true - - true - 39872d87:13e14015f61:30a0 - - 20 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 415 - 0 - - false - 1 - - - - - 50 - - 5 - - false - true - true - 39872d87:13e14015f61:30a1 - - 20 - Menu Button - false - - true - true - false - - false - $(P)$(R)Fi$(N2):Material - - - - - - - Menu Button - true - false - - Default - - 70 - 6 - - - - 1 - - - - 0 - - $(pv_name) -$(pv_value) - 65 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:30a2 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(R)Fi$(N2):Thickness - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 145 - - - false - true - 39872d87:13e14015f61:30a3 - - 20 - Choice Button - true - - true - true - false - - $(P)$(R)Fi$(N2):Enable - - - - - - - Choice Button - true - false - - Default - - 140 - 0 - - - - - - - Choice 1 - Choice 2 - Choice 3 - - 1 - true - - - - true - - 0 - $(pv_name) -$(pv_value) - 275 - - - true - 1 - 39872d87:13e14015f61:30a4 - false - - 17 - Label - - true - true - false - - true - false - - - - - - - Label - true - um - - - - 16 - 0 - - 1 - - - - 0 - - 1 - true - - 250 - - - true - 1 - 39872d87:13e14015f61:30a5 - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(N2): - - - - 45 - 0 - - 1 - - - - 0 - - 2 - true - - 0 - - - - - true - - true - 39872d87:13e14015f61:30a6 - - 20 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 415 - 0 - - false - 1 - - - - - 75 - - 5 - - true - 1 - 39872d87:13e14015f61:30a7 - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(N3): - - - - 45 - 0 - - 1 - - - - 0 - - 2 - true - - 0 - - - false - true - true - 39872d87:13e14015f61:30a8 - - 20 - Menu Button - false - - true - true - false - - false - $(P)$(R)Fi$(N3):Material - - - - - - - Menu Button - true - false - - Default - - 70 - 6 - - - - 1 - - - - 0 - - $(pv_name) -$(pv_value) - 65 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:30a9 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(R)Fi$(N3):Thickness - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 145 - - - true - 1 - 39872d87:13e14015f61:30aa - false - - 17 - Label - - true - true - false - - true - false - - - - - - - Label - true - um - - - - 16 - 0 - - 1 - - - - 0 - - 1 - true - - 250 - - - false - true - 39872d87:13e14015f61:30ab - - 20 - Choice Button - true - - true - true - false - - $(P)$(R)Fi$(N3):Enable - - - - - - - Choice Button - true - false - - Default - - 140 - 0 - - - - - - - Choice 1 - Choice 2 - Choice 3 - - 1 - true - - - - true - - 0 - $(pv_name) -$(pv_value) - 275 - - - - - true - - true - 39872d87:13e14015f61:30ac - - 20 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 415 - 0 - - false - 1 - - - - - 100 - - 5 - - false - true - 39872d87:13e14015f61:30ad - - 20 - Choice Button - true - - true - true - false - - $(P)$(R)Fi$(N4):Enable - - - - - - - Choice Button - true - false - - Default - - 140 - 0 - - - - - - - Choice 1 - Choice 2 - Choice 3 - - 1 - true - - - - true - - 0 - $(pv_name) -$(pv_value) - 275 - - - true - 1 - 39872d87:13e14015f61:30ae - false - - 17 - Label - - true - true - false - - true - false - - - - - - - Label - true - um - - - - 16 - 0 - - 1 - - - - 0 - - 1 - true - - 250 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:30af - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(R)Fi$(N4):Thickness - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 145 - - - false - true - true - 39872d87:13e14015f61:30b0 - - 20 - Menu Button - false - - true - true - false - - false - $(P)$(R)Fi$(N4):Material - - - - - - - Menu Button - true - false - - Default - - 70 - 6 - - - - 1 - - - - 0 - - $(pv_name) -$(pv_value) - 65 - - - true - 1 - 39872d87:13e14015f61:30b1 - false - - 15 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(N4): - - - - 45 - 0 - - 1 - - - - 0 - - 2 - true - - 0 - - - \ No newline at end of file diff --git a/opticsApp/op/opi/filterbox_less.opi b/opticsApp/op/opi/filterbox_less.opi deleted file mode 100644 index f5baea6..0000000 --- a/opticsApp/op/opi/filterbox_less.opi +++ /dev/null @@ -1,379 +0,0 @@ - - false - - true - - 39872d87:13e14015f61:30d1 - 3.1.2.20120830 - - true - 110 - filterbox_less - false - false - - - - - - - Display - true - 140 - - true - 5 - - false - -1 - -1 - - - 254 - 1591 - - - true - - true - 39872d87:13e14015f61:30d2 - - 100 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 130 - 0 - - false - 1 - - - - - 5 - - 5 - - - true - - true - 39872d87:13e14015f61:30d3 - - 100 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 130 - 0 - - false - 1 - - - - - 0 - - 0 - - false - true - 0.0 - - - - 39872d87:13e14015f61:30d4 - - - - - 100 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 130 - 0 - 0 - - - 1 - 2 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - - - true - $(N4) - - true - 39872d87:13e14015f61:30d5 - false - - true - 88 - Linking Container - - true - true - false - - filter_blade.opi - - - - - - - - Linking Container - true - - Default - - 26 - 3 - - - - true - - - false - - $(P)$(R)Fi$(N4):Enable - - - 1 - - - - - 6 - - 7 - - - - true - $(N3) - - true - 39872d87:13e14015f61:30d6 - false - - true - 88 - Linking Container - - true - true - false - - filter_blade.opi - - - - - - - - Linking Container - true - - Default - - 26 - 3 - - - - true - - - false - - $(P)$(R)Fi$(N3):Enable - - - 1 - - - - - 6 - - 38 - - - - true - $(N2) - - true - 39872d87:13e14015f61:30d7 - false - - true - 88 - Linking Container - - true - true - false - - filter_blade.opi - - - - - - - - Linking Container - true - - Default - - 26 - 3 - - - - true - - - false - - $(P)$(R)Fi$(N2):Enable - - - 1 - - - - - 6 - - 69 - - - - true - $(N1) - - true - 39872d87:13e14015f61:30d8 - false - - true - 88 - Linking Container - - true - true - false - - filter_blade.opi - - - - - - - - Linking Container - true - - Default - - 26 - 3 - - - - true - - - false - - $(P)$(R)Fi$(N1):Enable - - - 1 - - - - - 6 - - 100 - - - \ No newline at end of file diff --git a/opticsApp/op/opi/filterbox_more.opi b/opticsApp/op/opi/filterbox_more.opi deleted file mode 100644 index 7b47554..0000000 --- a/opticsApp/op/opi/filterbox_more.opi +++ /dev/null @@ -1,1571 +0,0 @@ - - false - - true - - 39872d87:13e14015f61:310a - 3.1.2.20120830 - - true - 170 - filterbox_more - false - false - - - - - - - Display - true - 140 - - true - 5 - - false - -1 - -1 - - - 753 - 2375 - - - true - - true - 39872d87:13e14015f61:310b - - 100 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 130 - 0 - - false - 1 - - - - - 48 - - 5 - - false - true - 0.0 - - - - 39872d87:13e14015f61:310c - - - - - 100 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 130 - 0 - 0 - - - 1 - 2 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - - - true - - true - 39872d87:13e14015f61:3112 - - 10 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 127 - 0 - - - - true - - - false - - $(P)$(R)Fi$(N2):Enable - - - false - 1 - - - - - 12 - - 5 - - true - 1 - 39872d87:13e14015f61:3113 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(N2): - - - - 15 - 0 - - 1 - - - - 0 - - 0 - true - - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:3114 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 4 - true - false - $(P)$(R)Fi$(N2):Material - - - - - - - Text Update - true - ###### - false - 0 - - - - 12 - 0 - - - 1 - - - - 0 - - 0 - false - $(pv_name) -$(pv_value) - 19 - - - true - true - 1 - false - 39872d87:13e14015f61:3115 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 6 - true - false - $(P)$(R)Fi$(N2):Thickness - - - - - - - Text Update - true - ###### - false - 0 - - - - 38 - 0 - - - 1 - - - - 0 - - 0 - false - $(pv_name) -$(pv_value) - 35 - - - true - true - 1 - false - 39872d87:13e14015f61:3116 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 2 - true - false - $(P)$(R)Fi$(N2):Transmission - - - - - - - Text Update - true - ###### - false - 0 - - - - 50 - 0 - - - 1 - - - - 0 - - 0 - false - $(pv_name) -$(pv_value) - 77 - - - - - true - - true - 39872d87:13e14015f61:3117 - - 10 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 127 - 0 - - - - true - - - false - - $(P)$(R)Fi$(N1):Enable - - - false - 1 - - - - - 0 - - 5 - - true - 1 - 39872d87:13e14015f61:3118 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(N1): - - - - 15 - 0 - - 1 - - - - 0 - - 0 - true - - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:3119 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 4 - true - false - $(P)$(R)Fi$(N1):Material - - - - - - - Text Update - true - ###### - false - 0 - - - - 12 - 0 - - - 1 - - - - 0 - - 0 - false - $(pv_name) -$(pv_value) - 19 - - - true - true - 1 - false - 39872d87:13e14015f61:311a - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 6 - true - false - $(P)$(R)Fi$(N1):Thickness - - - - - - - Text Update - true - ###### - false - 0 - - - - 38 - 0 - - - 1 - - - - 0 - - 0 - false - $(pv_name) -$(pv_value) - 35 - - - true - true - 1 - false - 39872d87:13e14015f61:311b - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 2 - true - false - $(P)$(R)Fi$(N1):Transmission - - - - - - - Text Update - true - ###### - false - 0 - - - - 50 - 0 - - - 1 - - - - 0 - - 0 - false - $(pv_name) -$(pv_value) - 77 - - - - - true - - true - 39872d87:13e14015f61:311c - - 10 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 127 - 0 - - - - true - - - false - - $(P)$(R)Fi$(N3):Enable - - - false - 1 - - - - - 24 - - 5 - - true - 1 - 39872d87:13e14015f61:311d - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(N3): - - - - 15 - 0 - - 1 - - - - 0 - - 0 - true - - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:311e - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 4 - true - false - $(P)$(R)Fi$(N3):Material - - - - - - - Text Update - true - ###### - false - 0 - - - - 12 - 0 - - - 1 - - - - 0 - - 0 - false - $(pv_name) -$(pv_value) - 19 - - - true - true - 1 - false - 39872d87:13e14015f61:311f - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 6 - true - false - $(P)$(R)Fi$(N3):Thickness - - - - - - - Text Update - true - ###### - false - 0 - - - - 38 - 0 - - - 1 - - - - 0 - - 0 - false - $(pv_name) -$(pv_value) - 35 - - - true - true - 1 - false - 39872d87:13e14015f61:3120 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 2 - true - false - $(P)$(R)Fi$(N3):Transmission - - - - - - - Text Update - true - ###### - false - 0 - - - - 50 - 0 - - - 1 - - - - 0 - - 0 - false - $(pv_name) -$(pv_value) - 77 - - - - - true - - true - 39872d87:13e14015f61:3121 - - 10 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 127 - 0 - - - - true - - - false - - $(P)$(R)Fi$(N4):Enable - - - false - 1 - - - - - 36 - - 5 - - true - 1 - 39872d87:13e14015f61:3122 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(N4): - - - - 15 - 0 - - 1 - - - - 0 - - 0 - true - - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:3123 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 4 - true - false - $(P)$(R)Fi$(N4):Material - - - - - - - Text Update - true - ###### - false - 0 - - - - 12 - 0 - - - 1 - - - - 0 - - 0 - false - $(pv_name) -$(pv_value) - 19 - - - true - true - 1 - false - 39872d87:13e14015f61:3124 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 6 - true - false - $(P)$(R)Fi$(N4):Thickness - - - - - - - Text Update - true - ###### - false - 0 - - - - 38 - 0 - - - 1 - - - - 0 - - 0 - false - $(pv_name) -$(pv_value) - 35 - - - true - true - 1 - false - 39872d87:13e14015f61:3125 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 2 - true - false - $(P)$(R)Fi$(N4):Transmission - - - - - - - Text Update - true - ###### - false - 0 - - - - 50 - 0 - - - 1 - - - - 0 - - 0 - false - $(pv_name) -$(pv_value) - 77 - - - - - true - $(N4) - - true - 39872d87:13e14015f61:3126 - false - - true - 88 - Linking Container - - true - true - false - - filter_blade.opi - - - - - - - - Linking Container - true - - Default - - 26 - 3 - - - - true - - - false - - $(P)$(R)Fi$(N4):Enable - - - 1 - - - - - 54 - - 12 - - - - true - $(N3) - - true - 39872d87:13e14015f61:3127 - false - - true - 88 - Linking Container - - true - true - false - - filter_blade.opi - - - - - - - - Linking Container - true - - Default - - 26 - 3 - - - - true - - - false - - $(P)$(R)Fi$(N3):Enable - - - 1 - - - - - 54 - - 43 - - - - true - $(N2) - - true - 39872d87:13e14015f61:3128 - false - - true - 88 - Linking Container - - true - true - false - - filter_blade.opi - - - - - - - - Linking Container - true - - Default - - 26 - 3 - - - - true - - - false - - $(P)$(R)Fi$(N2):Enable - - - 1 - - - - - 54 - - 74 - - - - true - $(N1) - - true - 39872d87:13e14015f61:3129 - false - - true - 88 - Linking Container - - true - true - false - - filter_blade.opi - - - - - - - - Linking Container - true - - Default - - 26 - 3 - - - - true - - - false - - $(P)$(R)Fi$(N1):Enable - - - 1 - - - - - 54 - - 105 - - - false - true - false - 39872d87:13e14015f61:310d - - 18 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 110 - 6 - - - - 1 - - - - 152 - - - filterbox_config.opi - - true - - 0 - Configure - - - $(pv_name) -$(pv_value) - 15 - - - true - 1 - 39872d87:13e14015f61:310e - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(N1): Disabled - - - - 71 - 0 - - - - true - - - false - - $(P)$(R)Fi$(N1):Enable - - - 1 - - - - 0 - - 0 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:310f - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(N2): Disabled - - - - 71 - 0 - - - - true - - - false - - $(P)$(R)Fi$(N2):Enable - - - 1 - - - - 0 - - 12 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:3110 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(N3): Disabled - - - - 71 - 0 - - - - true - - - false - - $(P)$(R)Fi$(N3):Enable - - - 1 - - - - 0 - - 24 - true - - 5 - - - true - 1 - 39872d87:13e14015f61:3111 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(N4): Disabled - - - - 71 - 0 - - - - true - - - false - - $(P)$(R)Fi$(N4):Enable - - - 1 - - - - 0 - - 36 - true - - 5 - - \ No newline at end of file diff --git a/opticsApp/op/opi/hr_nested.opi b/opticsApp/op/opi/hr_nested.opi deleted file mode 100644 index 9b63bf1..0000000 --- a/opticsApp/op/opi/hr_nested.opi +++ /dev/null @@ -1,1245 +0,0 @@ - - false - - true - - 39872d87:13e14015f61:326c - 3.1.2.20120830 - - true - 289 - hr_nested - false - false - - - - - - - Display - true - 456 - - true - 5 - - false - -1 - -1 - - - 448 - 243 - - 0 - 0 - true - 39872d87:13e14015f61:326d - true - - 289 - Image - true - - true - true - false - - - - - - - - Image - true - - Default - - 456 - false - 0 - 0 - - 0 - 1 - hr_nested.gif - - - - - 0 - - 0 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:326f - - - - - 42 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 242 - $(pv_name) -$(pv_value) - 26 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3270 - - - - - 42 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 242 - $(pv_name) -$(pv_value) - 26 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:3274 - - - - - 42 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 158 - $(pv_name) -$(pv_value) - 326 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3275 - - - - - 42 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 158 - $(pv_name) -$(pv_value) - 326 - false - - - - true - - true - 39872d87:13e14015f61:3279 - - 38 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 64 - 0 - - false - 1 - - - - - 222 - - 253 - - false - true - 100.0 - - - - 39872d87:13e14015f61:327a - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:327b - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - true - true - 1 - false - 39872d87:13e14015f61:327c - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)HR$(N)_phi1RdbkAI - - - - - - - Text Update - true - ###### - false - 0 - - - - 61 - 0 - - - 1 - - - - 0 - - 16 - false - $(pv_name) -$(pv_value) - 2 - - - true - 1 - 39872d87:13e14015f61:327d - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Phi1 - - - - 60 - 0 - - 1 - - - - 1 - - 0 - true - - 2 - - - true - true - 1 - false - 39872d87:13e14015f61:327e - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)HR$(N)_phi1AO - - - - - - - Text Update - true - ###### - false - 0 - - - - 61 - 0 - - - 1 - - - - 0 - - 26 - false - $(pv_name) -$(pv_value) - 2 - - - - - true - - true - 39872d87:13e14015f61:327f - - 38 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 64 - 0 - - false - 1 - - - - - 70 - - 354 - - false - true - 100.0 - - - - 39872d87:13e14015f61:3280 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3281 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - true - true - 1 - false - 39872d87:13e14015f61:3282 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)HR$(N)_phi2RdbkAI - - - - - - - Text Update - true - ###### - false - 0 - - - - 61 - 0 - - - 1 - - - - 0 - - 16 - false - $(pv_name) -$(pv_value) - 2 - - - true - 1 - 39872d87:13e14015f61:3283 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Phi2 - - - - 60 - 0 - - 1 - - - - 1 - - 0 - true - - 2 - - - true - true - 1 - false - 39872d87:13e14015f61:3284 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)HR$(N)_phi2AO - - - - - - - Text Update - true - ###### - false - 0 - - - - 61 - 0 - - - 1 - - - - 0 - - 26 - false - $(pv_name) -$(pv_value) - 2 - - - - false - true - 39872d87:13e14015f61:326e - - 28 - Action Button - false - - true - true - false - - $(P)allstop.VAL - - - - - - - Action Button - true - All Stop - false - - Default - - 88 - 0 - 0 - - - - false - 1 - - - - 255 - - - $(P)allstop.VAL - 1 - 10 - - - - $(pv_name) -$(pv_value) - 351 - - - true - true - 1 - false - 39872d87:13e14015f61:3271 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)HR$(N)_Theta1RdbkAO - - - - - - - Text Update - true - ###### - false - 0 - - - - 61 - 0 - - - 1 - - - - 0 - - 258 - false - $(pv_name) -$(pv_value) - 28 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 61 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3272 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)HR$(N)_Theta1AO.VAL - - - - false - 0 - - - false - - - - 0 - - 268 - $(pv_name) -$(pv_value) - 28 - - - true - 1 - 39872d87:13e14015f61:3273 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Theta1 - - - - 60 - 0 - - 1 - - - - 1 - - 242 - true - - 28 - - - true - true - 1 - false - 39872d87:13e14015f61:3276 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)HR$(N)_Theta2RdbkAO - - - - - - - Text Update - true - ###### - false - 0 - - - - 61 - 0 - - - 1 - - - - 0 - - 174 - false - $(pv_name) -$(pv_value) - 328 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 61 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3277 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)HR$(N)_Theta2AO.VAL - - - - false - 0 - - - false - - - - 0 - - 184 - $(pv_name) -$(pv_value) - 328 - - - true - 1 - 39872d87:13e14015f61:3278 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Theta2 - - - - 60 - 0 - - 1 - - - - 1 - - 158 - true - - 328 - - \ No newline at end of file diff --git a/opticsApp/op/opi/hr_symmetric.opi b/opticsApp/op/opi/hr_symmetric.opi deleted file mode 100644 index c67c1ab..0000000 --- a/opticsApp/op/opi/hr_symmetric.opi +++ /dev/null @@ -1,1245 +0,0 @@ - - false - - true - - 39872d87:13e14015f61:329f - 3.1.2.20120830 - - true - 290 - hr_symmetric - false - false - - - - - - - Display - true - 456 - - true - 5 - - false - -1 - -1 - - - 85 - 30 - - 0 - 0 - true - 39872d87:13e14015f61:32a0 - true - - 290 - Image - true - - true - true - false - - - - - - - - Image - true - - Default - - 460 - false - 0 - 0 - - 0 - 1 - hr_symmetric.gif - - - - - 0 - - 0 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:32a2 - - - - - 42 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 200 - $(pv_name) -$(pv_value) - 65 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:32a3 - - - - - 42 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 200 - $(pv_name) -$(pv_value) - 65 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:32a7 - - - - - 42 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 200 - $(pv_name) -$(pv_value) - 300 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:32a8 - - - - - 42 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 200 - $(pv_name) -$(pv_value) - 300 - false - - - - true - - true - 39872d87:13e14015f61:32ac - - 38 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 64 - 0 - - false - 1 - - - - - 235 - - 145 - - false - true - 100.0 - - - - 39872d87:13e14015f61:32ad - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:32ae - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - true - true - 1 - false - 39872d87:13e14015f61:32af - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)HR$(N)_phi1RdbkAI - - - - - - - Text Update - true - ###### - false - 0 - - - - 61 - 0 - - - 1 - - - - 0 - - 16 - false - $(pv_name) -$(pv_value) - 2 - - - true - 1 - 39872d87:13e14015f61:32b0 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Phi1 - - - - 60 - 0 - - 1 - - - - 1 - - 0 - true - - 2 - - - true - true - 1 - false - 39872d87:13e14015f61:32b1 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)HR$(N)_phi1AO - - - - - - - Text Update - true - ###### - false - 0 - - - - 61 - 0 - - - 1 - - - - 0 - - 26 - false - $(pv_name) -$(pv_value) - 2 - - - - - true - - true - 39872d87:13e14015f61:32b2 - - 38 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 64 - 0 - - false - 1 - - - - - 235 - - 215 - - false - true - 100.0 - - - - 39872d87:13e14015f61:32b3 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:32b4 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - true - true - 1 - false - 39872d87:13e14015f61:32b5 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)HR$(N)_phi2RdbkAI - - - - - - - Text Update - true - ###### - false - 0 - - - - 61 - 0 - - - 1 - - - - 0 - - 16 - false - $(pv_name) -$(pv_value) - 2 - - - true - 1 - 39872d87:13e14015f61:32b6 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Phi2 - - - - 60 - 0 - - 1 - - - - 1 - - 0 - true - - 2 - - - true - true - 1 - false - 39872d87:13e14015f61:32b7 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)HR$(N)_phi2AO - - - - - - - Text Update - true - ###### - false - 0 - - - - 61 - 0 - - - 1 - - - - 0 - - 26 - false - $(pv_name) -$(pv_value) - 2 - - - - false - true - 39872d87:13e14015f61:32a1 - - 28 - Action Button - false - - true - true - false - - $(P)allstop.VAL - - - - - - - Action Button - true - All Stop - false - - Default - - 88 - 0 - 0 - - - - false - 1 - - - - 255 - - - $(P)allstop.VAL - 1 - 10 - - - - $(pv_name) -$(pv_value) - 351 - - - true - true - 1 - false - 39872d87:13e14015f61:32a4 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)HR$(N)_Theta1RdbkAO - - - - - - - Text Update - true - ###### - false - 0 - - - - 61 - 0 - - - 1 - - - - 0 - - 216 - false - $(pv_name) -$(pv_value) - 67 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 61 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:32a5 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)HR$(N)_Theta1AO.VAL - - - - false - 0 - - - false - - - - 0 - - 226 - $(pv_name) -$(pv_value) - 67 - - - true - 1 - 39872d87:13e14015f61:32a6 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Theta1 - - - - 60 - 0 - - 1 - - - - 1 - - 200 - true - - 67 - - - true - true - 1 - false - 39872d87:13e14015f61:32a9 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)HR$(N)_Theta2RdbkAO - - - - - - - Text Update - true - ###### - false - 0 - - - - 61 - 0 - - - 1 - - - - 0 - - 216 - false - $(pv_name) -$(pv_value) - 302 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 61 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:32aa - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)HR$(N)_Theta2AO.VAL - - - - false - 0 - - - false - - - - 0 - - 226 - $(pv_name) -$(pv_value) - 302 - - - true - 1 - 39872d87:13e14015f61:32ab - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Theta2 - - - - 60 - 0 - - 1 - - - - 1 - - 200 - true - - 302 - - \ No newline at end of file diff --git a/opticsApp/op/opi/kohzu2Graphic.opi b/opticsApp/op/opi/kohzu2Graphic.opi deleted file mode 100644 index db27e04..0000000 --- a/opticsApp/op/opi/kohzu2Graphic.opi +++ /dev/null @@ -1,3022 +0,0 @@ - - false - - true - - 39872d87:13e14015f61:32d2 - 3.1.2.20120830 - - true - 340 - kohzu2Graphic - false - false - - - - - - - Display - true - 440 - - true - 5 - - false - -1 - -1 - - - 10 - 10 - - 0 - 0 - true - 39872d87:13e14015f61:32d3 - true - - 340 - Image - true - - true - true - false - - - - - - - - Image - true - - Default - - 440 - false - 0 - 0 - - 0 - 1 - kohzu2.gif - - - - - 0 - - 0 - - - false - true - 0.0 - - - - 39872d87:13e14015f61:32d6 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 220 - $(pv_name) -$(pv_value) - 296 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:32d9 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 105 - $(pv_name) -$(pv_value) - 74 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:32da - - - - - 40 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 281 - $(pv_name) -$(pv_value) - 51 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:32dd - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 87 - $(pv_name) -$(pv_value) - 357 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:32e1 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 87 - $(pv_name) -$(pv_value) - 357 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:32e2 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 27 - $(pv_name) -$(pv_value) - 100 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:32e9 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 105 - $(pv_name) -$(pv_value) - 74 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:32ea - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 27 - $(pv_name) -$(pv_value) - 100 - false - - - - true - - true - 39872d87:13e14015f61:32ee - - 38 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 64 - 0 - - false - 1 - - - - - 25 - - 213 - - false - true - 0.0 - - - - 39872d87:13e14015f61:32f0 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - true - true - 1 - false - 39872d87:13e14015f61:32ef - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mZ2).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 - - - - 0 - - 12 - false - $(pv_name) -$(pv_value) - 2 - - - true - 1 - 39872d87:13e14015f61:32f1 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mZ2) - - - - 60 - 0 - - 1 - - - - 0 - - 2 - true - - 2 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:32f2 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(mZ2).VAL - - - - false - 0 - - - false - - - - 0 - - 22 - $(pv_name) -$(pv_value) - 2 - - - - - true - - true - 39872d87:13e14015f61:32f4 - - 38 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 64 - 0 - - false - 1 - - - - - 166 - - 196 - - false - true - 100.0 - - - - 39872d87:13e14015f61:32f5 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:32f9 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - true - 1 - 39872d87:13e14015f61:32f6 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mY2) - - - - 60 - 0 - - 1 - - - - 0 - - 2 - true - - 2 - - - true - true - 1 - false - 39872d87:13e14015f61:32f7 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mY2).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 - - - - 0 - - 12 - false - $(pv_name) -$(pv_value) - 2 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:32f8 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(mY2).VAL - - - - false - 0 - - - false - - - - 0 - - 22 - $(pv_name) -$(pv_value) - 2 - - - - - true - - true - 39872d87:13e14015f61:32fd - - 38 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 64 - 0 - - false - 1 - - - - - 18 - - 342 - - false - true - 100.0 - - - - 39872d87:13e14015f61:32fe - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3302 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - true - 1 - 39872d87:13e14015f61:32ff - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mY) - - - - 61 - 0 - - 1 - - - - 0 - - 2 - true - - 2 - - - true - true - 1 - false - 39872d87:13e14015f61:3300 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mY).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 61 - 0 - - - 1 - - - - 0 - - 12 - false - $(pv_name) -$(pv_value) - 2 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 61 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3301 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(mY).VAL - - - - false - 0 - - - false - - - - 0 - - 22 - $(pv_name) -$(pv_value) - 2 - - - - - true - - true - 39872d87:13e14015f61:3308 - - 52 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 64 - 0 - - false - 1 - - - - - 198 - - 81 - - false - true - 100.0 - - - - 39872d87:13e14015f61:3309 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 14 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:330a - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 14 - $(pv_name) -$(pv_value) - 0 - false - - - true - true - 1 - false - 39872d87:13e14015f61:330b - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mTH).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 61 - 0 - - - 1 - - - - 0 - - 26 - false - $(pv_name) -$(pv_value) - 2 - - - true - 1 - 39872d87:13e14015f61:330c - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mTH) - - - - 61 - 0 - - 1 - - - - 0 - - 16 - true - - 2 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 61 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:330d - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(mTH).VAL - - - - false - 0 - - - false - - - - 0 - - 36 - $(pv_name) -$(pv_value) - 2 - - - true - 1 - 39872d87:13e14015f61:330e - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Theta - - - - 60 - 0 - - 1 - - - - 1 - - 0 - true - - 2 - - - - false - true - 39872d87:13e14015f61:32d4 - - 28 - Action Button - false - - true - true - false - - $(P)allstop.VAL - - - - - - - Action Button - true - All Stop - false - - Default - - 88 - 0 - 0 - - - - false - 1 - - - - 276 - - - $(P)allstop.VAL - 1 - 10 - - - - $(pv_name) -$(pv_value) - 175 - - - true - true - 1 - false - 39872d87:13e14015f61:32d5 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mX).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 61 - 0 - - - 1 - - - - 0 - - 232 - false - $(pv_name) -$(pv_value) - 298 - - - true - 1 - 39872d87:13e14015f61:32d7 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mX) - - - - 61 - 0 - - 1 - - - - 0 - - 222 - true - - 298 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 61 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:32d8 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(mX).VAL - - - - false - 0 - - - false - - - - 0 - - 242 - $(pv_name) -$(pv_value) - 298 - - - true - true - 1 - false - 39872d87:13e14015f61:32db - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)BraggThetaRdbkAO - - - - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 - - - - 0 - - 295 - false - $(pv_name) -$(pv_value) - 53 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:32dc - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)BraggThetaAO - - - - false - 0 - - - false - - - - 0 - - 305 - $(pv_name) -$(pv_value) - 53 - - - true - 1 - 39872d87:13e14015f61:32de - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mX2) - - - - 61 - 0 - - 1 - - - - 0 - - 89 - true - - 359 - - - true - true - 1 - false - 39872d87:13e14015f61:32df - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mX2).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 61 - 0 - - - 1 - - - - 0 - - 99 - false - $(pv_name) -$(pv_value) - 359 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 61 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:32e0 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(mX2).VAL - - - - false - 0 - - - false - - - - 0 - - 109 - $(pv_name) -$(pv_value) - 359 - - - true - 1 - 39872d87:13e14015f61:32e3 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mTH2) - - - - 61 - 0 - - 1 - - - - 0 - - 29 - true - - 102 - - - true - true - 1 - false - 39872d87:13e14015f61:32e4 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mTH2).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 61 - 0 - - - 1 - - - - 0 - - 39 - false - $(pv_name) -$(pv_value) - 102 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 61 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:32e5 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(mTH2).VAL - - - - false - 0 - - - false - - - - 0 - - 49 - $(pv_name) -$(pv_value) - 102 - - - true - true - 1 - false - 39872d87:13e14015f61:32e6 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mCHI2).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 61 - 0 - - - 1 - - - - 0 - - 117 - false - $(pv_name) -$(pv_value) - 76 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 61 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:32e7 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(mCHI2).VAL - - - - false - 0 - - - false - - - - 0 - - 127 - $(pv_name) -$(pv_value) - 76 - - - true - 1 - 39872d87:13e14015f61:32e8 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mCHI2) - - - - 61 - 0 - - 1 - - - - 0 - - 107 - true - - 76 - - - true - 1 - 39872d87:13e14015f61:32eb - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - Theta(Y,Z) - - - - 60 - 0 - - 1 - - - - 1 - - 283 - true - - 53 - - - true - 1 - 39872d87:13e14015f61:32ec - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Chi - - - - 60 - 0 - - 1 - - - - 1 - - 91 - true - - 76 - - - true - 1 - 39872d87:13e14015f61:32ed - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Theta2 - - - - 60 - 0 - - 1 - - - - 1 - - 13 - true - - 102 - - - true - 1 - 39872d87:13e14015f61:32f3 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Z2 - - - - 60 - 0 - - 1 - - - - 1 - - 11 - true - - 215 - - - true - 1 - 39872d87:13e14015f61:32fa - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Y2 - - - - 60 - 0 - - 1 - - - - 1 - - 152 - true - - 198 - - - true - 1 - 39872d87:13e14015f61:32fb - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - X - - - - 60 - 0 - - 1 - - - - 1 - - 206 - true - - 298 - - - true - 1 - 39872d87:13e14015f61:32fc - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - X2 - - - - 60 - 0 - - 1 - - - - 1 - - 73 - true - - 359 - - - true - 1 - 39872d87:13e14015f61:3303 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Y - - - - 60 - 0 - - 1 - - - - 1 - - 4 - true - - 344 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:3304 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 27 - 0 - 0 - - - 1 - 1 - true - - - - - 122 - $(pv_name) -$(pv_value) - 140 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:3305 - 0.0 - - 0 - 45 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 44 - 0 - 0 - - - 1 - 1 - true - - - - - 57 - $(pv_name) -$(pv_value) - 165 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:3306 - 0.0 - - 0 - 28 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 4 - 0 - 0 - - - 1 - 1 - true - - - - - 63 - $(pv_name) -$(pv_value) - 249 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:3307 - 0.0 - - 0 - 44 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 15 - 0 - 0 - - - 1 - 1 - true - - - - - 123 - $(pv_name) -$(pv_value) - 204 - - \ No newline at end of file diff --git a/opticsApp/op/opi/kohzuGraphic.opi b/opticsApp/op/opi/kohzuGraphic.opi deleted file mode 100644 index 82b7da4..0000000 --- a/opticsApp/op/opi/kohzuGraphic.opi +++ /dev/null @@ -1,3082 +0,0 @@ - - false - - true - - 39872d87:13e14015f61:3497 - 3.1.2.20120830 - - true - 340 - kohzuGraphic - false - false - - - - - - - Display - true - 440 - - true - 5 - - false - -1 - -1 - - - 10 - 10 - - 0 - 0 - true - 39872d87:13e14015f61:3498 - true - - 340 - Image - true - - true - true - false - - - - - - - - Image - true - - Default - - 440 - false - 0 - 0 - - 0 - 1 - kohzu.gif - - - - - 0 - - 0 - - - - true - - true - 39872d87:13e14015f61:349a - - 40 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 64 - 0 - - false - 1 - - - - - 288 - - 38 - - false - true - 100.0 - - - - 39872d87:13e14015f61:349b - - - - - 40 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - true - true - 1 - false - 39872d87:13e14015f61:349c - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)BraggThetaRdbkAO - - - - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 - - - - 0 - - 14 - false - $(pv_name) -$(pv_value) - 2 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:349d - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)BraggThetaAO - - - - false - 0 - - - false - - - - 0 - - 24 - $(pv_name) -$(pv_value) - 2 - - - true - 1 - 39872d87:13e14015f61:349e - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - Theta(Y,Z) - - - - 60 - 0 - - 1 - - - - 1 - - 2 - true - - 2 - - - - - true - - true - 39872d87:13e14015f61:349f - - 52 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 64 - 0 - - false - 1 - - - - - 218 - - 73 - - false - true - 100.0 - - - - 39872d87:13e14015f61:34a0 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 14 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:34a1 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 14 - $(pv_name) -$(pv_value) - 0 - false - - - true - true - 1 - false - 39872d87:13e14015f61:34a2 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mTH).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 61 - 0 - - - 1 - - - - 0 - - 26 - false - $(pv_name) -$(pv_value) - 2 - - - true - 1 - 39872d87:13e14015f61:34a3 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mTH) - - - - 61 - 0 - - 1 - - - - 0 - - 16 - true - - 2 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 61 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:34a4 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(mTH).VAL - - - - false - 0 - - - false - - - - 0 - - 36 - $(pv_name) -$(pv_value) - 2 - - - true - 1 - 39872d87:13e14015f61:34a5 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Theta - - - - 60 - 0 - - 1 - - - - 1 - - 0 - true - - 2 - - - - - true - - true - 39872d87:13e14015f61:34a6 - - 52 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 64 - 0 - - false - 1 - - - - - 117 - - 77 - - false - true - 100.0 - - - - 39872d87:13e14015f61:34a7 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 14 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:34ab - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 14 - $(pv_name) -$(pv_value) - 0 - false - - - true - true - 1 - false - 39872d87:13e14015f61:34a8 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mCHI2).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 61 - 0 - - - 1 - - - - 0 - - 26 - false - $(pv_name) -$(pv_value) - 2 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 61 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:34a9 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(mCHI2).VAL - - - - false - 0 - - - false - - - - 0 - - 36 - $(pv_name) -$(pv_value) - 2 - - - true - 1 - 39872d87:13e14015f61:34aa - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mCHI2) - - - - 61 - 0 - - 1 - - - - 0 - - 16 - true - - 2 - - - true - 1 - 39872d87:13e14015f61:34ac - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Chi - - - - 60 - 0 - - 1 - - - - 1 - - 0 - true - - 2 - - - - - true - - true - 39872d87:13e14015f61:34ad - - 52 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 64 - 0 - - false - 1 - - - - - 28 - - 160 - - false - true - 100.0 - - - - 39872d87:13e14015f61:34ae - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 14 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:34b2 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 14 - $(pv_name) -$(pv_value) - 0 - false - - - true - 1 - 39872d87:13e14015f61:34af - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mTH2) - - - - 61 - 0 - - 1 - - - - 0 - - 16 - true - - 2 - - - true - true - 1 - false - 39872d87:13e14015f61:34b0 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mTH2).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 61 - 0 - - - 1 - - - - 0 - - 26 - false - $(pv_name) -$(pv_value) - 2 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 61 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:34b1 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(mTH2).VAL - - - - false - 0 - - - false - - - - 0 - - 36 - $(pv_name) -$(pv_value) - 2 - - - true - 1 - 39872d87:13e14015f61:34b3 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Theta2 - - - - 60 - 0 - - 1 - - - - 1 - - 0 - true - - 2 - - - - - true - - true - 39872d87:13e14015f61:34b4 - - 52 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 64 - 0 - - false - 1 - - - - - 59 - - 231 - - - true - - true - 39872d87:13e14015f61:34b5 - - 38 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 64 - 0 - - false - 1 - - - - - 14 - - 0 - - false - true - 0.0 - - - - 39872d87:13e14015f61:34b7 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - true - true - 1 - false - 39872d87:13e14015f61:34b6 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mZ2).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 - - - - 0 - - 12 - false - $(pv_name) -$(pv_value) - 2 - - - true - 1 - 39872d87:13e14015f61:34b8 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mZ2) - - - - 60 - 0 - - 1 - - - - 0 - - 2 - true - - 2 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:34b9 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(mZ2).VAL - - - - false - 0 - - - false - - - - 0 - - 22 - $(pv_name) -$(pv_value) - 2 - - - - true - 1 - 39872d87:13e14015f61:34ba - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Z2 - - - - 60 - 0 - - 1 - - - - 1 - - 0 - true - - 2 - - - - - true - - true - 39872d87:13e14015f61:34bb - - 52 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 64 - 0 - - false - 1 - - - - - 10 - - 374 - - - true - - true - 39872d87:13e14015f61:34bc - - 38 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 64 - 0 - - false - 1 - - - - - 14 - - 0 - - false - true - 100.0 - - - - 39872d87:13e14015f61:34bd - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:34c1 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - true - 1 - 39872d87:13e14015f61:34be - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mY) - - - - 61 - 0 - - 1 - - - - 0 - - 2 - true - - 2 - - - true - true - 1 - false - 39872d87:13e14015f61:34bf - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mY).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 61 - 0 - - - 1 - - - - 0 - - 12 - false - $(pv_name) -$(pv_value) - 2 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 61 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:34c0 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(mY).VAL - - - - false - 0 - - - false - - - - 0 - - 22 - $(pv_name) -$(pv_value) - 2 - - - - true - 1 - 39872d87:13e14015f61:34c2 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Y - - - - 60 - 0 - - 1 - - - - 1 - - 0 - true - - 2 - - - - - true - - true - 39872d87:13e14015f61:34c3 - - 52 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 64 - 0 - - false - 1 - - - - - 66 - - 317 - - false - true - 100.0 - - - - 39872d87:13e14015f61:34c4 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 14 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:34c8 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 14 - $(pv_name) -$(pv_value) - 0 - false - - - true - 1 - 39872d87:13e14015f61:34c5 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mX2) - - - - 61 - 0 - - 1 - - - - 0 - - 16 - true - - 2 - - - true - true - 1 - false - 39872d87:13e14015f61:34c6 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mX2).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 61 - 0 - - - 1 - - - - 0 - - 26 - false - $(pv_name) -$(pv_value) - 2 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 61 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:34c7 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(mX2).VAL - - - - false - 0 - - - false - - - - 0 - - 36 - $(pv_name) -$(pv_value) - 2 - - - true - 1 - 39872d87:13e14015f61:34c9 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - X2 - - - - 60 - 0 - - 1 - - - - 1 - - 0 - true - - 2 - - - - - true - - true - 39872d87:13e14015f61:34ca - - 52 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 64 - 0 - - false - 1 - - - - - 228 - - 315 - - false - true - 0.0 - - - - 39872d87:13e14015f61:34cc - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 14 - $(pv_name) -$(pv_value) - 0 - false - - - true - true - 1 - false - 39872d87:13e14015f61:34cb - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mX).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 61 - 0 - - - 1 - - - - 0 - - 26 - false - $(pv_name) -$(pv_value) - 2 - - - true - 1 - 39872d87:13e14015f61:34cd - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mX) - - - - 61 - 0 - - 1 - - - - 0 - - 16 - true - - 2 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 61 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:34ce - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(mX).VAL - - - - false - 0 - - - false - - - - 0 - - 36 - $(pv_name) -$(pv_value) - 2 - - - true - 1 - 39872d87:13e14015f61:34cf - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - X - - - - 60 - 0 - - 1 - - - - 1 - - 0 - true - - 2 - - - - - true - - true - 39872d87:13e14015f61:34d0 - - 52 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 64 - 0 - - false - 1 - - - - - 182 - - 214 - - false - true - 100.0 - - - - 39872d87:13e14015f61:34d1 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 14 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:34d5 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 14 - $(pv_name) -$(pv_value) - 0 - false - - - true - 1 - 39872d87:13e14015f61:34d2 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mY1) - - - - 60 - 0 - - 1 - - - - 0 - - 16 - true - - 2 - - - true - true - 1 - false - 39872d87:13e14015f61:34d3 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mY1).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 - - - - 0 - - 26 - false - $(pv_name) -$(pv_value) - 2 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:34d4 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(mY1).VAL - - - - false - 0 - - - false - - - - 0 - - 36 - $(pv_name) -$(pv_value) - 2 - - - true - 1 - 39872d87:13e14015f61:34d6 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Y1 - - - - 60 - 0 - - 1 - - - - 1 - - 0 - true - - 2 - - - - false - true - 39872d87:13e14015f61:3499 - - 28 - Action Button - false - - true - true - false - - $(P)allstop.VAL - - - - - - - Action Button - true - All Stop - false - - Default - - 88 - 0 - 0 - - - - false - 1 - - - - 281 - - - $(P)allstop.VAL - 1 - 10 - - - - $(pv_name) -$(pv_value) - 181 - - \ No newline at end of file diff --git a/opticsApp/op/opi/kohzuGraphicLarge.opi b/opticsApp/op/opi/kohzuGraphicLarge.opi deleted file mode 100644 index 21171aa..0000000 --- a/opticsApp/op/opi/kohzuGraphicLarge.opi +++ /dev/null @@ -1,2380 +0,0 @@ - - false - - true - - 39872d87:13e14015f61:3518 - 3.1.2.20120830 - - true - 680 - kohzuGraphicLarge - false - false - - - - - - - Display - true - 880 - - true - 5 - - false - -1 - -1 - - - 10 - 10 - - 0 - 0 - true - 39872d87:13e14015f61:3519 - true - - 680 - Image - true - - true - true - false - - - - - - - - Image - true - - Default - - 880 - false - 0 - 0 - - 0 - 1 - kohzu.gif - - - - - 0 - - 0 - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3530 - - - - - 32 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 42 - 0 - 0 - - - 1 - 1 - true - - - - - 243 - $(pv_name) -$(pv_value) - 287 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:353b - - - - - 32 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 42 - 0 - 0 - - - 1 - 1 - true - - - - - 210 - $(pv_name) -$(pv_value) - 735 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3540 - - - - - 32 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 42 - 0 - 0 - - - 1 - 1 - true - - - - - 34 - $(pv_name) -$(pv_value) - 750 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3545 - - - - - 32 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 42 - 0 - 0 - - - 1 - 1 - true - - - - - 459 - $(pv_name) -$(pv_value) - 543 - false - - - - true - - true - 39872d87:13e14015f61:351a - - 42 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 42 - 0 - - false - 1 - - - - - 186 - - 453 - - - true - - true - 39872d87:13e14015f61:351b - - 32 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 42 - 0 - - false - 1 - - - - - 10 - - 0 - - false - true - 0.0 - - - - 39872d87:13e14015f61:351f - - - - - 32 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 42 - 0 - 0 - - - 1 - 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - true - true - 1 - false - 39872d87:13e14015f61:351c - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mZ2).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 40 - 0 - - - 1 - - - - 0 - - 1 - false - $(pv_name) -$(pv_value) - 1 - - - false - true - 39872d87:13e14015f61:351d - - 20 - Action Button - false - - true - true - false - - $(P)$(mZ2).JOGF - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - - 11 - - - $(P)$(mZ2).JOGF - 1 - 10 - - - - $(P)$(mZ2).JOGF - 0 - 10 - - - - $(pv_name) -$(pv_value) - 21 - - - false - true - 39872d87:13e14015f61:351e - - 20 - Action Button - false - - true - true - false - - $(P)$(mZ2).JOGR - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - - 11 - - - $(P)$(mZ2).JOGR - 1 - 10 - - - - $(P)$(mZ2).JOGR - 0 - 10 - - - - $(pv_name) -$(pv_value) - 1 - - - - true - 1 - 39872d87:13e14015f61:3520 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mZ2) - - - - 40 - 0 - - 1 - - - - 0 - - 0 - true - - 0 - - - - - true - - true - 39872d87:13e14015f61:3521 - - 42 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 42 - 0 - - false - 1 - - - - - 343 - - 389 - - false - true - 0.0 - - - - 39872d87:13e14015f61:3525 - - - - - 32 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 42 - 0 - 0 - - - 1 - 1 - true - - - - - 10 - $(pv_name) -$(pv_value) - 0 - false - - - true - true - 1 - false - 39872d87:13e14015f61:3522 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mY1).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 40 - 0 - - - 1 - - - - 0 - - 11 - false - $(pv_name) -$(pv_value) - 1 - - - false - true - 39872d87:13e14015f61:3523 - - 20 - Action Button - false - - true - true - false - - $(P)$(mY1).JOGF - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - - 21 - - - $(P)$(mY1).JOGF - 1 - 10 - - - - $(P)$(mY1).JOGF - 0 - 10 - - - - $(pv_name) -$(pv_value) - 21 - - - false - true - 39872d87:13e14015f61:3524 - - 20 - Action Button - false - - true - true - false - - $(P)$(mY1).JOGR - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - - 21 - - - $(P)$(mY1).JOGR - 1 - 10 - - - - $(P)$(mY1).JOGR - 0 - 10 - - - - $(pv_name) -$(pv_value) - 1 - - - true - 1 - 39872d87:13e14015f61:3526 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mY1) - - - - 40 - 0 - - 1 - - - - 0 - - 0 - true - - 1 - - - - - true - - true - 39872d87:13e14015f61:3527 - - 42 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 42 - 0 - - false - 1 - - - - - 433 - - 208 - - false - true - 0.0 - - - - 39872d87:13e14015f61:352b - - - - - 32 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 42 - 0 - 0 - - - 1 - 1 - true - - - - - 10 - $(pv_name) -$(pv_value) - 0 - false - - - true - true - 1 - false - 39872d87:13e14015f61:3528 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mTH).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 40 - 0 - - - 1 - - - - 0 - - 11 - false - $(pv_name) -$(pv_value) - 1 - - - false - true - 39872d87:13e14015f61:3529 - - 20 - Action Button - false - - true - true - false - - $(P)$(mTH).JOGF - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - - 21 - - - $(P)$(mTH).JOGF - 1 - 10 - - - - $(P)$(mTH).JOGF - 0 - 10 - - - - $(pv_name) -$(pv_value) - 21 - - - false - true - 39872d87:13e14015f61:352a - - 20 - Action Button - false - - true - true - false - - $(P)$(mTH).JOGR - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - - 21 - - - $(P)$(mTH).JOGR - 1 - 10 - - - - $(P)$(mTH).JOGR - 0 - 10 - - - - $(pv_name) -$(pv_value) - 1 - - - true - 1 - 39872d87:13e14015f61:352c - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mTH) - - - - 40 - 0 - - 1 - - - - 0 - - 0 - true - - 1 - - - - - true - - true - 39872d87:13e14015f61:3532 - - 42 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 42 - 0 - - false - 1 - - - - - 123 - - 320 - - false - true - 0.0 - - - - 39872d87:13e14015f61:3536 - - - - - 32 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 42 - 0 - 0 - - - 1 - 1 - true - - - - - 10 - $(pv_name) -$(pv_value) - 0 - false - - - true - true - 1 - false - 39872d87:13e14015f61:3533 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mTH2).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 40 - 0 - - - 1 - - - - 0 - - 11 - false - $(pv_name) -$(pv_value) - 1 - - - false - true - 39872d87:13e14015f61:3534 - - 20 - Action Button - false - - true - true - false - - $(P)$(mTH2).JOGF - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - - 21 - - - $(P)$(mTH2).JOGF - 1 - 10 - - - - $(P)$(mTH2).JOGF - 0 - 10 - - - - $(pv_name) -$(pv_value) - 21 - - - false - true - 39872d87:13e14015f61:3535 - - 20 - Action Button - false - - true - true - false - - $(P)$(mTH2).JOGR - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - - 21 - - - $(P)$(mTH2).JOGR - 1 - 10 - - - - $(P)$(mTH2).JOGR - 0 - 10 - - - - $(pv_name) -$(pv_value) - 1 - - - true - 1 - 39872d87:13e14015f61:3537 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mTH2) - - - - 40 - 0 - - 1 - - - - 0 - - 0 - true - - 1 - - - - true - true - 1 - false - 39872d87:13e14015f61:352d - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mCHI2).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 40 - 0 - - - 1 - - - - 0 - - 244 - false - $(pv_name) -$(pv_value) - 288 - - - false - true - 39872d87:13e14015f61:352e - - 20 - Action Button - false - - true - true - false - - $(P)$(mCHI2).JOGF - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - - 254 - - - $(P)$(mCHI2).JOGF - 1 - 10 - - - - $(P)$(mCHI2).JOGF - 0 - 10 - - - - $(pv_name) -$(pv_value) - 308 - - - false - true - 39872d87:13e14015f61:352f - - 20 - Action Button - false - - true - true - false - - $(P)$(mCHI2).JOGR - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - - 254 - - - $(P)$(mCHI2).JOGR - 1 - 10 - - - - $(P)$(mCHI2).JOGR - 0 - 10 - - - - $(pv_name) -$(pv_value) - 288 - - - true - 1 - 39872d87:13e14015f61:3531 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mCHI2) - - - - 40 - 0 - - 1 - - - - 0 - - 233 - true - - 288 - - - true - true - 1 - false - 39872d87:13e14015f61:3538 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mX2).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 40 - 0 - - - 1 - - - - 0 - - 211 - false - $(pv_name) -$(pv_value) - 736 - - - false - true - 39872d87:13e14015f61:3539 - - 20 - Action Button - false - - true - true - false - - $(P)$(mX2).JOGF - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - - 221 - - - $(P)$(mX2).JOGF - 1 - 10 - - - - $(P)$(mX2).JOGF - 0 - 10 - - - - $(pv_name) -$(pv_value) - 756 - - - false - true - 39872d87:13e14015f61:353a - - 20 - Action Button - false - - true - true - false - - $(P)$(mX2).JOGR - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - - 221 - - - $(P)$(mX2).JOGR - 1 - 10 - - - - $(P)$(mX2).JOGR - 0 - 10 - - - - $(pv_name) -$(pv_value) - 736 - - - true - 1 - 39872d87:13e14015f61:353c - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mX2) - - - - 40 - 0 - - 1 - - - - 0 - - 200 - true - - 736 - - - true - true - 1 - false - 39872d87:13e14015f61:353d - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mY).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 40 - 0 - - - 1 - - - - 0 - - 35 - false - $(pv_name) -$(pv_value) - 751 - - - false - true - 39872d87:13e14015f61:353e - - 20 - Action Button - false - - true - true - false - - $(P)$(mY).JOGF - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - - 45 - - - $(P)$(mY).JOGF - 1 - 10 - - - - $(P)$(mY).JOGF - 0 - 10 - - - - $(pv_name) -$(pv_value) - 771 - - - false - true - 39872d87:13e14015f61:353f - - 20 - Action Button - false - - true - true - false - - $(P)$(mY).JOGR - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - - 45 - - - $(P)$(mY).JOGR - 1 - 10 - - - - $(P)$(mY).JOGR - 0 - 10 - - - - $(pv_name) -$(pv_value) - 751 - - - true - 1 - 39872d87:13e14015f61:3541 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mY) - - - - 40 - 0 - - 1 - - - - 0 - - 24 - true - - 751 - - - true - true - 1 - false - 39872d87:13e14015f61:3542 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mX).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 40 - 0 - - - 1 - - - - 0 - - 460 - false - $(pv_name) -$(pv_value) - 544 - - - false - true - 39872d87:13e14015f61:3543 - - 20 - Action Button - false - - true - true - false - - $(P)$(mX).JOGF - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - - 470 - - - $(P)$(mX).JOGF - 1 - 10 - - - - $(P)$(mX).JOGF - 0 - 10 - - - - $(pv_name) -$(pv_value) - 564 - - - false - true - 39872d87:13e14015f61:3544 - - 20 - Action Button - false - - true - true - false - - $(P)$(mX).JOGR - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - true - 1 - - - - 470 - - - $(P)$(mX).JOGR - 1 - 10 - - - - $(P)$(mX).JOGR - 0 - 10 - - - - $(pv_name) -$(pv_value) - 544 - - - true - 1 - 39872d87:13e14015f61:3546 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mX) - - - - 40 - 0 - - 1 - - - - 0 - - 449 - true - - 544 - - \ No newline at end of file diff --git a/opticsApp/op/opi/kohzuSeqCtl_tiny.opi b/opticsApp/op/opi/kohzuSeqCtl_tiny.opi deleted file mode 100644 index 7802dac..0000000 --- a/opticsApp/op/opi/kohzuSeqCtl_tiny.opi +++ /dev/null @@ -1,1500 +0,0 @@ - - false - - true - - 39872d87:13e14015f61:36bf - 3.1.2.20120830 - - true - 140 - kohzuSeqCtl_tiny - false - false - - - - - - - Display - true - 215 - - true - 5 - - false - -1 - -1 - - - 258 - 300 - - false - true - 100.0 - - - - 39872d87:13e14015f61:36c8 - - - - - 32 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 105 - 0 - 0 - - - 1 - 0 - true - - - - - 105 - $(pv_name) -$(pv_value) - 0 - false - - - - true - - true - 39872d87:13e14015f61:36ce - - 137 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 105 - 0 - - false - 1 - - - - - 0 - - 110 - - false - true - 100.0 - - - - 39872d87:13e14015f61:36d7 - - - - - 32 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 105 - 0 - 0 - - - 1 - 0 - true - - - - - 105 - $(pv_name) -$(pv_value) - 0 - false - - - true - 1 - 39872d87:13e14015f61:36cf - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - TH (deg.) - - - - 105 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:36d0 - false - 0.0 - - 20 - Text Update - false - - true - true - false - - 1 - true - false - $(P)BraggThetaRdbkAO - - - - - - - Text Update - true - ###### - false - 0 - - - - 105 - 0 - - - 1 - - - - 0 - - 32 - false - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 25 - false - true - - - - Text Input - true - - - - - 105 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:36d1 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)BraggThetaAO.VAL - - - - false - 0 - - - false - - - - 0 - - 48 - $(pv_name) -$(pv_value) - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:36d2 - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 1 - true - false - $(P)BraggThetaAO.DRVH - - - - - - - Text Update - true - ###### - false - 0 - - - - 105 - 0 - - - 1 - - - - 1 - - 19 - false - $(pv_name) -$(pv_value) - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:36d3 - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 1 - true - false - $(P)BraggThetaAO.DRVL - - - - - - - Text Update - true - ###### - false - 0 - - - - 105 - 0 - - - 1 - - - - 1 - - 71 - false - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:36d4 - - 20 - Action Button - false - - true - true - false - - $(P)BraggThetaIncBO.VAL - - - - - - - Action Button - true - > - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 84 - - - $(P)BraggThetaIncBO.VAL - 1 - 10 - - - - $(pv_name) -$(pv_value) - 85 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 65 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:36d5 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)BraggThetaTweakAI - - - - false - 0 - - - false - - - - 0 - - 84 - $(pv_name) -$(pv_value) - 20 - - - false - true - 39872d87:13e14015f61:36d6 - - 20 - Action Button - false - - true - true - false - - $(P)BraggThetaDecBO.VAL - - - - - - - Action Button - true - < - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 84 - - - $(P)BraggThetaDecBO.VAL - 1 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - true - 1 - 39872d87:13e14015f61:36d8 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - SCAN CONTROL - - - - 105 - 0 - - 1 - - - - 1 - - 105 - true - - 0 - - - false - true - 39872d87:13e14015f61:36d9 - - 20 - Action Button - false - - true - true - false - - $(P)allstop.VAL - - - - - - - Action Button - true - Abort - false - - Default - - 40 - 0 - 0 - - - - false - 1 - - - - 115 - - - $(P)allstop.VAL - 1 - 10 - - - - $(pv_name) -$(pv_value) - 64 - - - false - true - 39872d87:13e14015f61:36da - - 20 - Action Button - false - - true - true - false - - $(P)BraggTheta:scanParms.GO - - - - - - - Action Button - true - Go - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 115 - - - $(P)BraggTheta:scanParms.GO - 1 - 10 - - - - $(pv_name) -$(pv_value) - 43 - - - false - true - 39872d87:13e14015f61:36db - - 20 - Action Button - false - - true - true - false - - $(P)BraggTheta:scanParms.LOAD - - - - - - - Action Button - true - Ld - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 115 - - - $(P)BraggTheta:scanParms.LOAD - 1 - 10 - - - - $(pv_name) -$(pv_value) - 22 - - - false - true - false - 39872d87:13e14015f61:36dc - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 115 - - - scanParms.opi - - true - BraggTheta - BraggThetaAO - - 0 - Theta-scan parameters - - - $(pv_name) -$(pv_value) - 1 - - - - true - true - 1 - false - 39872d87:13e14015f61:36c0 - false - 0.0 - - 20 - Text Update - false - - true - true - false - - 1 - true - false - $(P)BraggERdbkAO - - - - - - - Text Update - true - ###### - false - 0 - - - - 105 - 0 - - - 1 - - - - 0 - - 32 - false - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 25 - false - true - - - - Text Input - true - - - - - 105 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:36c1 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)BraggEAO.VAL - - - - false - 0 - - - false - - - - 0 - - 48 - $(pv_name) -$(pv_value) - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:36c2 - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 1 - true - false - $(P)BraggEAO.DRVH - - - - - - - Text Update - true - ###### - false - 0 - - - - 105 - 0 - - - 1 - - - - 1 - - 19 - false - $(pv_name) -$(pv_value) - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:36c3 - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 1 - true - false - $(P)BraggEAO.DRVL - - - - - - - Text Update - true - ###### - false - 0 - - - - 105 - 0 - - - 1 - - - - 1 - - 71 - false - $(pv_name) -$(pv_value) - 0 - - - true - 1 - 39872d87:13e14015f61:36c4 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - E (keV) - - - - 105 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 65 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:36c5 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)BraggETweakAI - - - - false - 0 - - - false - - - - 0 - - 84 - $(pv_name) -$(pv_value) - 20 - - - false - true - 39872d87:13e14015f61:36c6 - - 20 - Action Button - false - - true - true - false - - $(P)BraggEDecBO.VAL - - - - - - - Action Button - true - < - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 84 - - - $(P)BraggEDecBO.VAL - 1 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:36c7 - - 20 - Action Button - false - - true - true - false - - $(P)BraggEIncBO.VAL - - - - - - - Action Button - true - > - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 84 - - - $(P)BraggEIncBO.VAL - 1 - 10 - - - - $(pv_name) -$(pv_value) - 85 - - - true - 1 - 39872d87:13e14015f61:36c9 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - SCAN CONTROL - - - - 105 - 0 - - 1 - - - - 1 - - 105 - true - - 0 - - - false - true - 39872d87:13e14015f61:36ca - - 20 - Action Button - false - - true - true - false - - $(P)allstop.VAL - - - - - - - Action Button - true - Abort - false - - Default - - 40 - 0 - 0 - - - - false - 1 - - - - 115 - - - $(P)allstop.VAL - 1 - 10 - - - - $(pv_name) -$(pv_value) - 64 - - - false - true - 39872d87:13e14015f61:36cb - - 20 - Action Button - false - - true - true - false - - $(P)BraggE:scanParms.GO - - - - - - - Action Button - true - Go - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 115 - - - $(P)BraggE:scanParms.GO - 1 - 10 - - - - $(pv_name) -$(pv_value) - 43 - - - false - true - 39872d87:13e14015f61:36cc - - 20 - Action Button - false - - true - true - false - - $(P)BraggE:scanParms.LOAD - - - - - - - Action Button - true - Ld - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 115 - - - $(P)BraggE:scanParms.LOAD - 1 - 10 - - - - $(pv_name) -$(pv_value) - 22 - - - false - true - false - 39872d87:13e14015f61:36cd - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 115 - - - scanParms.opi - - true - BraggE - BraggEAO - - 0 - Energy-scan parameters - - - $(pv_name) -$(pv_value) - 1 - - \ No newline at end of file diff --git a/opticsApp/op/opi/ml_monoGraphic.opi b/opticsApp/op/opi/ml_monoGraphic.opi deleted file mode 100644 index dc7c41c..0000000 --- a/opticsApp/op/opi/ml_monoGraphic.opi +++ /dev/null @@ -1,4485 +0,0 @@ - - false - - true - - 39872d87:13e14015f61:36fc - 3.1.2.20120830 - - true - 400 - ml_monoGraphic - false - false - - - - - - - Display - true - 400 - - true - 5 - - false - -1 - -1 - - - 333 - 626 - - false - true - 100.0 - - - - 39872d87:13e14015f61:36fd - - - - - 131 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 381 - 0 - 0 - - - 1 - 0 - true - - - - - 25 - $(pv_name) -$(pv_value) - 10 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:36fe - - - - - 131 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 381 - 0 - 0 - - - 1 - 3 - true - - - - - 25 - $(pv_name) -$(pv_value) - 10 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:3704 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 255 - $(pv_name) -$(pv_value) - 235 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3708 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 255 - $(pv_name) -$(pv_value) - 235 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:3711 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 190 - $(pv_name) -$(pv_value) - 310 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3715 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 190 - $(pv_name) -$(pv_value) - 310 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:3717 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 255 - $(pv_name) -$(pv_value) - 15 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:371b - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 255 - $(pv_name) -$(pv_value) - 15 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:3733 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 320 - $(pv_name) -$(pv_value) - 15 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3737 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 320 - $(pv_name) -$(pv_value) - 15 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:3739 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 320 - $(pv_name) -$(pv_value) - 90 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:373d - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 320 - $(pv_name) -$(pv_value) - 90 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:3746 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 320 - $(pv_name) -$(pv_value) - 235 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:374a - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 320 - $(pv_name) -$(pv_value) - 235 - false - - - - true - - true - 39872d87:13e14015f61:370a - - 58 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 64 - 0 - - false - 1 - - - - - 170 - - 235 - - false - true - 100.0 - - - - 39872d87:13e14015f61:370b - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 20 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:370f - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 20 - $(pv_name) -$(pv_value) - 0 - false - - - true - 1 - 39872d87:13e14015f61:370c - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mY1) - - - - 60 - 0 - - 1 - - - - 0 - - 22 - true - - 2 - - - true - true - 1 - false - 39872d87:13e14015f61:370d - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mY1).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 - - - - 0 - - 32 - false - $(pv_name) -$(pv_value) - 2 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:370e - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(mY1).VAL - - - - false - 0 - - - false - - - - 0 - - 42 - $(pv_name) -$(pv_value) - 2 - - - false - true - false - 39872d87:13e14015f61:3710 - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 64 - 6 - - - - 1 - - - - 0 - - - motorx.opi - - true - $(mY1) - - 0 - - - - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:371d - - 58 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 64 - 0 - - false - 1 - - - - - 170 - - 15 - - - true - - true - 39872d87:13e14015f61:371f - - 38 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 64 - 0 - - false - 1 - - - - - 20 - - 0 - - false - true - 100.0 - - - - 39872d87:13e14015f61:3720 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3724 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - true - 1 - 39872d87:13e14015f61:3721 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mB) - - - - 60 - 0 - - 1 - - - - 0 - - 2 - true - - 2 - - - true - true - 1 - false - 39872d87:13e14015f61:3722 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mB).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 - - - - 0 - - 12 - false - $(pv_name) -$(pv_value) - 2 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3723 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(mB).VAL - - - - false - 0 - - - false - - - - 0 - - 22 - $(pv_name) -$(pv_value) - 2 - - - - false - true - false - 39872d87:13e14015f61:371e - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 64 - 6 - - - - 1 - - - - 0 - - - motorx.opi - - true - $(mB) - - 0 - - - - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:3725 - - 58 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 64 - 0 - - false - 1 - - - - - 170 - - 90 - - false - true - 100.0 - - - - 39872d87:13e14015f61:3726 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 20 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:372a - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 20 - $(pv_name) -$(pv_value) - 0 - false - - - true - 1 - 39872d87:13e14015f61:3727 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mY2) - - - - 60 - 0 - - 1 - - - - 0 - - 22 - true - - 2 - - - true - true - 1 - false - 39872d87:13e14015f61:3728 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mY2).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 - - - - 0 - - 32 - false - $(pv_name) -$(pv_value) - 2 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3729 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(mY2).VAL - - - - false - 0 - - - false - - - - 0 - - 42 - $(pv_name) -$(pv_value) - 2 - - - false - true - false - 39872d87:13e14015f61:372b - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 64 - 6 - - - - 1 - - - - 0 - - - motorx.opi - - true - $(mY2) - - 0 - - - - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:372c - - 58 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 64 - 0 - - false - 1 - - - - - 235 - - 90 - - false - true - 100.0 - - - - 39872d87:13e14015f61:372d - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 20 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3731 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 20 - $(pv_name) -$(pv_value) - 0 - false - - - true - 1 - 39872d87:13e14015f61:372e - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mZ2) - - - - 60 - 0 - - 1 - - - - 0 - - 22 - true - - 2 - - - true - true - 1 - false - 39872d87:13e14015f61:372f - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mZ2).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 - - - - 0 - - 32 - false - $(pv_name) -$(pv_value) - 2 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3730 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(mZ2).VAL - - - - false - 0 - - - false - - - - 0 - - 42 - $(pv_name) -$(pv_value) - 2 - - - false - true - false - 39872d87:13e14015f61:3732 - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 64 - 6 - - - - 1 - - - - 0 - - - motorx.opi - - true - $(mZ2) - - 0 - - - - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:373f - - 58 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 64 - 0 - - false - 1 - - - - - 84 - - 63 - - false - true - 100.0 - - - - 39872d87:13e14015f61:3740 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 20 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3744 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 20 - $(pv_name) -$(pv_value) - 0 - false - - - true - 1 - 39872d87:13e14015f61:3741 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mT2) - - - - 60 - 0 - - 1 - - - - 0 - - 22 - true - - 2 - - - true - true - 1 - false - 39872d87:13e14015f61:3742 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mT2).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 - - - - 0 - - 32 - false - $(pv_name) -$(pv_value) - 2 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3743 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(mT2).VAL - - - - false - 0 - - - false - - - - 0 - - 42 - $(pv_name) -$(pv_value) - 2 - - - false - true - false - 39872d87:13e14015f61:3745 - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 64 - 6 - - - - 1 - - - - 0 - - - motorx.opi - - true - $(mT2) - - 0 - - - - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:374c - - 58 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 64 - 0 - - false - 1 - - - - - 47 - - 261 - - false - true - 100.0 - - - - 39872d87:13e14015f61:374d - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 0 - true - - - - - 20 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3751 - - - - - 38 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - 1 - 1 - true - - - - - 20 - $(pv_name) -$(pv_value) - 0 - false - - - true - 1 - 39872d87:13e14015f61:374e - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mT1) - - - - 60 - 0 - - 1 - - - - 0 - - 22 - true - - 2 - - - true - true - 1 - false - 39872d87:13e14015f61:374f - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mT1).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 - - - - 0 - - 32 - false - $(pv_name) -$(pv_value) - 2 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3750 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(mT1).VAL - - - - false - 0 - - - false - - - - 0 - - 42 - $(pv_name) -$(pv_value) - 2 - - - false - true - false - 39872d87:13e14015f61:3752 - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 64 - 6 - - - - 1 - - - - 0 - - - motorx.opi - - true - $(mT1) - - 0 - - - - $(pv_name) -$(pv_value) - 0 - - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:36ff - 0.0 - - 0 - 22 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 96 - 0 - 0 - - - 1 - 1 - true - - - - - 53 - $(pv_name) -$(pv_value) - 75 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:3700 - 0.0 - - 0 - 22 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 96 - 0 - 0 - - - 1 - 1 - true - - - - - 117 - $(pv_name) -$(pv_value) - 223 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:3701 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 110 - 0 - 0 - - - 1 - 1 - true - - - - - 124 - $(pv_name) -$(pv_value) - 273 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:3702 - 0.0 - - 0 - 59 - true - Polyline - false - 255 - - true - true - true - - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 244 - 0 - 0 - - - 1 - 1 - true - - - - - 66 - $(pv_name) -$(pv_value) - 28 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:3703 - 0.0 - - 0 - 11 - true - Polyline - false - 255 - - true - true - true - - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 16 - 0 - 0 - - - 1 - 1 - true - - - - - 61 - $(pv_name) -$(pv_value) - 25 - - - true - 1 - 39872d87:13e14015f61:3705 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mZ1) - - - - 60 - 0 - - 1 - - - - 0 - - 257 - true - - 237 - - - true - true - 1 - false - 39872d87:13e14015f61:3706 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mZ1).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 - - - - 0 - - 267 - false - $(pv_name) -$(pv_value) - 237 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3707 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(mZ1).VAL - - - - false - 0 - - - false - - - - 0 - - 277 - $(pv_name) -$(pv_value) - 237 - - - false - true - false - 39872d87:13e14015f61:3709 - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 64 - 6 - - - - 1 - - - - 235 - - - motorx.opi - - true - $(mZ1) - - 0 - - - - $(pv_name) -$(pv_value) - 235 - - - true - 1 - 39872d87:13e14015f61:3712 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mC1) - - - - 60 - 0 - - 1 - - - - 0 - - 192 - true - - 312 - - - true - true - 1 - false - 39872d87:13e14015f61:3713 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mC1).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 - - - - 0 - - 202 - false - $(pv_name) -$(pv_value) - 312 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3714 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(mC1).VAL - - - - false - 0 - - - false - - - - 0 - - 212 - $(pv_name) -$(pv_value) - 312 - - - false - true - false - 39872d87:13e14015f61:3716 - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 64 - 6 - - - - 1 - - - - 170 - - - motorx.opi - - true - $(mC1) - - 0 - - - - $(pv_name) -$(pv_value) - 310 - - - true - 1 - 39872d87:13e14015f61:3718 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mP2) - - - - 60 - 0 - - 1 - - - - 0 - - 257 - true - - 17 - - - true - true - 1 - false - 39872d87:13e14015f61:3719 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mP2).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 - - - - 0 - - 267 - false - $(pv_name) -$(pv_value) - 17 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:371a - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(mP2).VAL - - - - false - 0 - - - false - - - - 0 - - 277 - $(pv_name) -$(pv_value) - 17 - - - false - true - false - 39872d87:13e14015f61:371c - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 64 - 6 - - - - 1 - - - - 235 - - - motorx.opi - - true - $(mP2) - - 0 - - - - $(pv_name) -$(pv_value) - 15 - - - true - 1 - 39872d87:13e14015f61:3734 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mC2) - - - - 60 - 0 - - 1 - - - - 0 - - 322 - true - - 17 - - - true - true - 1 - false - 39872d87:13e14015f61:3735 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mC2).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 - - - - 0 - - 332 - false - $(pv_name) -$(pv_value) - 17 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3736 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(mC2).VAL - - - - false - 0 - - - false - - - - 0 - - 342 - $(pv_name) -$(pv_value) - 17 - - - false - true - false - 39872d87:13e14015f61:3738 - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 64 - 6 - - - - 1 - - - - 300 - - - motorx.opi - - true - $(mC2) - - 0 - - - - $(pv_name) -$(pv_value) - 15 - - - true - 1 - 39872d87:13e14015f61:373a - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mX2) - - - - 60 - 0 - - 1 - - - - 0 - - 322 - true - - 92 - - - true - true - 1 - false - 39872d87:13e14015f61:373b - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mX2).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 - - - - 0 - - 332 - false - $(pv_name) -$(pv_value) - 92 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:373c - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(mX2).VAL - - - - false - 0 - - - false - - - - 0 - - 342 - $(pv_name) -$(pv_value) - 92 - - - false - true - false - 39872d87:13e14015f61:373e - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 64 - 6 - - - - 1 - - - - 300 - - - motorx.opi - - true - $(mX2) - - 0 - - - - $(pv_name) -$(pv_value) - 90 - - - true - 1 - 39872d87:13e14015f61:3747 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - $(P)$(mX1) - - - - 60 - 0 - - 1 - - - - 0 - - 322 - true - - 237 - - - true - true - 1 - false - 39872d87:13e14015f61:3748 - false - 0.0 - - 10 - Text Update - false - - true - true - false - - 1 - true - false - $(P)$(mX1).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 - - - - 0 - - 332 - false - $(pv_name) -$(pv_value) - 237 - - - false - true - 1 - false - false - - 15 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3749 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(mX1).VAL - - - - false - 0 - - - false - - - - 0 - - 342 - $(pv_name) -$(pv_value) - 237 - - - false - true - false - 39872d87:13e14015f61:374b - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 64 - 6 - - - - 1 - - - - 300 - - - motorx.opi - - true - $(mX1) - - 0 - - - - $(pv_name) -$(pv_value) - 235 - - \ No newline at end of file diff --git a/opticsApp/op/opi/ml_monoSeqCtl_tiny.opi b/opticsApp/op/opi/ml_monoSeqCtl_tiny.opi deleted file mode 100644 index 917868b..0000000 --- a/opticsApp/op/opi/ml_monoSeqCtl_tiny.opi +++ /dev/null @@ -1,1500 +0,0 @@ - - false - - true - - 39872d87:13e14015f61:38df - 3.1.2.20120830 - - true - 140 - ml_monoSeqCtl_tiny - false - false - - - - - - - Display - true - 215 - - true - 5 - - false - -1 - -1 - - - 258 - 300 - - false - true - 100.0 - - - - 39872d87:13e14015f61:38e8 - - - - - 32 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 105 - 0 - 0 - - - 1 - 0 - true - - - - - 105 - $(pv_name) -$(pv_value) - 0 - false - - - - true - - true - 39872d87:13e14015f61:38ee - - 137 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 105 - 0 - - false - 1 - - - - - 0 - - 110 - - false - true - 100.0 - - - - 39872d87:13e14015f61:38f7 - - - - - 32 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 105 - 0 - 0 - - - 1 - 0 - true - - - - - 105 - $(pv_name) -$(pv_value) - 0 - false - - - true - 1 - 39872d87:13e14015f61:38ef - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - TH (deg.) - - - - 105 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:38f0 - false - 0.0 - - 20 - Text Update - false - - true - true - false - - 1 - true - false - $(P)ml_monoThetaRdbk - - - - - - - Text Update - true - ###### - false - 0 - - - - 105 - 0 - - - 1 - - - - 0 - - 32 - false - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 25 - false - true - - - - Text Input - true - - - - - 105 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:38f1 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)ml_monoTheta.VAL - - - - false - 0 - - - false - - - - 0 - - 48 - $(pv_name) -$(pv_value) - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:38f2 - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 1 - true - false - $(P)ml_monoTheta.DRVH - - - - - - - Text Update - true - ###### - false - 0 - - - - 105 - 0 - - - 1 - - - - 1 - - 19 - false - $(pv_name) -$(pv_value) - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:38f3 - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 1 - true - false - $(P)ml_monoTheta.DRVL - - - - - - - Text Update - true - ###### - false - 0 - - - - 105 - 0 - - - 1 - - - - 1 - - 71 - false - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:38f4 - - 20 - Action Button - false - - true - true - false - - $(P)ml_monoThetaInc.VAL - - - - - - - Action Button - true - > - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 84 - - - $(P)ml_monoThetaInc.VAL - 1 - 10 - - - - $(pv_name) -$(pv_value) - 85 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 65 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:38f5 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)ml_monoThetaTweak - - - - false - 0 - - - false - - - - 0 - - 84 - $(pv_name) -$(pv_value) - 20 - - - false - true - 39872d87:13e14015f61:38f6 - - 20 - Action Button - false - - true - true - false - - $(P)ml_monoThetaDec.VAL - - - - - - - Action Button - true - < - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 84 - - - $(P)ml_monoThetaDec.VAL - 1 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - true - 1 - 39872d87:13e14015f61:38f8 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - SCAN CONTROL - - - - 105 - 0 - - 1 - - - - 1 - - 105 - true - - 0 - - - false - true - 39872d87:13e14015f61:38f9 - - 20 - Action Button - false - - true - true - false - - $(P)allstop.VAL - - - - - - - Action Button - true - Abort - false - - Default - - 40 - 0 - 0 - - - - false - 1 - - - - 115 - - - $(P)allstop.VAL - 1 - 10 - - - - $(pv_name) -$(pv_value) - 64 - - - false - true - 39872d87:13e14015f61:38fa - - 20 - Action Button - false - - true - true - false - - $(P)ml_monoTheta:scanParms.GO - - - - - - - Action Button - true - Go - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 115 - - - $(P)ml_monoTheta:scanParms.GO - 1 - 10 - - - - $(pv_name) -$(pv_value) - 43 - - - false - true - 39872d87:13e14015f61:38fb - - 20 - Action Button - false - - true - true - false - - $(P)ml_monoTheta:scanParms.LOAD - - - - - - - Action Button - true - Ld - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 115 - - - $(P)ml_monoTheta:scanParms.LOAD - 1 - 10 - - - - $(pv_name) -$(pv_value) - 22 - - - false - true - false - 39872d87:13e14015f61:38fc - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 115 - - - scanParms.opi - - true - ml_monoTheta - ml_monoTheta - - 0 - Theta-scan parameters - - - $(pv_name) -$(pv_value) - 1 - - - - true - true - 1 - false - 39872d87:13e14015f61:38e0 - false - 0.0 - - 20 - Text Update - false - - true - true - false - - 1 - true - false - $(P)ml_monoERdbk - - - - - - - Text Update - true - ###### - false - 0 - - - - 105 - 0 - - - 1 - - - - 0 - - 32 - false - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 25 - false - true - - - - Text Input - true - - - - - 105 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:38e1 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)ml_monoE.VAL - - - - false - 0 - - - false - - - - 0 - - 48 - $(pv_name) -$(pv_value) - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:38e2 - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 1 - true - false - $(P)ml_monoE.DRVH - - - - - - - Text Update - true - ###### - false - 0 - - - - 105 - 0 - - - 1 - - - - 1 - - 19 - false - $(pv_name) -$(pv_value) - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:38e3 - false - 0.0 - - 15 - Text Update - false - - true - true - false - - 1 - true - false - $(P)ml_monoE.DRVL - - - - - - - Text Update - true - ###### - false - 0 - - - - 105 - 0 - - - 1 - - - - 1 - - 71 - false - $(pv_name) -$(pv_value) - 0 - - - true - 1 - 39872d87:13e14015f61:38e4 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - E (keV) - - - - 105 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 65 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:38e5 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)ml_monoETweak - - - - false - 0 - - - false - - - - 0 - - 84 - $(pv_name) -$(pv_value) - 20 - - - false - true - 39872d87:13e14015f61:38e6 - - 20 - Action Button - false - - true - true - false - - $(P)ml_monoEDec.VAL - - - - - - - Action Button - true - < - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 84 - - - $(P)ml_monoEDec.VAL - 1 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:38e7 - - 20 - Action Button - false - - true - true - false - - $(P)ml_monoEInc.VAL - - - - - - - Action Button - true - > - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 84 - - - $(P)ml_monoEInc.VAL - 1 - 10 - - - - $(pv_name) -$(pv_value) - 85 - - - true - 1 - 39872d87:13e14015f61:38e9 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - SCAN CONTROL - - - - 105 - 0 - - 1 - - - - 1 - - 105 - true - - 0 - - - false - true - 39872d87:13e14015f61:38ea - - 20 - Action Button - false - - true - true - false - - $(P)allstop.VAL - - - - - - - Action Button - true - Abort - false - - Default - - 40 - 0 - 0 - - - - false - 1 - - - - 115 - - - $(P)allstop.VAL - 1 - 10 - - - - $(pv_name) -$(pv_value) - 64 - - - false - true - 39872d87:13e14015f61:38eb - - 20 - Action Button - false - - true - true - false - - $(P)ml_monoE:scanParms.GO - - - - - - - Action Button - true - Go - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 115 - - - $(P)ml_monoE:scanParms.GO - 1 - 10 - - - - $(pv_name) -$(pv_value) - 43 - - - false - true - 39872d87:13e14015f61:38ec - - 20 - Action Button - false - - true - true - false - - $(P)ml_monoE:scanParms.LOAD - - - - - - - Action Button - true - Ld - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 115 - - - $(P)ml_monoE:scanParms.LOAD - 1 - 10 - - - - $(pv_name) -$(pv_value) - 22 - - - false - true - false - 39872d87:13e14015f61:38ed - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 20 - 6 - - - - 1 - - - - 115 - - - scanParms.opi - - true - ml_monoE - ml_monoE - - 0 - Energy-scan parameters - - - $(pv_name) -$(pv_value) - 1 - - \ No newline at end of file diff --git a/opticsApp/op/opi/orient.opi b/opticsApp/op/opi/orient.opi deleted file mode 100644 index c6204a9..0000000 --- a/opticsApp/op/opi/orient.opi +++ /dev/null @@ -1,4351 +0,0 @@ - - false - - true - - 39872d87:13e14015f61:391c - 3.1.2.20120830 - - true - 245 - orient - false - false - - - - - - - Display - true - 490 - - true - 5 - - false - -1 - -1 - - - 81 - 82 - - false - true - 100.0 - - - - 39872d87:13e14015f61:391d - - - - - 20 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 490 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:391e - - - - - 3 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 490 - 0 - 0 - - - 1 - 0 - true - - - - - 20 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3926 - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 85 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):TTH_busy - - - - 1 - 2 - true - - - - - 97 - $(pv_name) -$(pv_value) - 161 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:392b - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 85 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):TH_busy - - - - 1 - 2 - true - - - - - 121 - $(pv_name) -$(pv_value) - 161 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:392c - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 85 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):CHI_busy - - - - 1 - 2 - true - - - - - 143 - $(pv_name) -$(pv_value) - 161 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:392d - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 85 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):PHI_busy - - - - 1 - 2 - true - - - - - 166 - $(pv_name) -$(pv_value) - 161 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3935 - - - - - 22 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 420 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):Alert - - - - 1 - 3 - true - - - - - 22 - $(pv_name) -$(pv_value) - 10 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:393b - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 84 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):L_busy - - - - 1 - 2 - true - - - - - 177 - $(pv_name) -$(pv_value) - 23 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3944 - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 84 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):H_busy - - - - 1 - 2 - true - - - - - 59 - $(pv_name) -$(pv_value) - 23 - false - - - - true - - true - 39872d87:13e14015f61:3930 - - 34 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 55 - 0 - - false - 1 - - - - - 97 - - 280 - - false - true - true - 39872d87:13e14015f61:3931 - - 14 - Menu Button - false - - true - true - false - - false - $(P)orient$(O):motPut_Auto - - - - - - - Menu Button - true - false - - Default - - 55 - 6 - - - - 1 - - - - 0 - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:3932 - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):motPut - - - - - - - Action Button - true - Move - false - - Default - - 55 - 0 - 0 - - - - false - 1 - - - - 14 - - - $(P)orient$(O):motPut - 1 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:393d - - 24 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 97 - 0 - - false - 1 - - - - - 117 - - 10 - - false - true - 0.0 - - - - 39872d87:13e14015f61:3940 - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 84 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):K_busy - - - - 1 - 2 - true - - - - - 0 - $(pv_name) -$(pv_value) - 13 - false - - - true - 1 - 39872d87:13e14015f61:393e - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - K - - - - 10 - 0 - - 1 - - - - 0 - - 3 - true - - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:393f - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):K - - - - false - 0 - - - false - - - - 0 - - 2 - $(pv_name) -$(pv_value) - 15 - - - - - true - - true - 39872d87:13e14015f61:3945 - - 37 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 111 - 0 - - false - 1 - - - - - 145 - - 252 - - - true - - true - 39872d87:13e14015f61:3946 - - 34 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 55 - 0 - - false - 1 - - - - - 0 - - 28 - - false - true - true - 39872d87:13e14015f61:3947 - - 14 - Menu Button - false - - true - true - false - - false - $(P)orient$(O):motGet_Auto - - - - - - - Menu Button - true - false - - Default - - 55 - 6 - - - - 1 - - - - 0 - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:3948 - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):motGet - - - - - - - Action Button - true - Read - false - - Default - - 55 - 0 - 0 - - - - false - 1 - - - - 14 - - - $(P)orient$(O):motGet - 1 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:3949 - 0.0 - - 0 - 2 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 94 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):motGet - $(P)orient$(O):motGet_Auto - - - - 1 - 1 - true - - - - - 23 - $(pv_name) -$(pv_value) - 15 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:394a - 0.0 - - 27 - true - Polygon - false - 255 - - true - true - true - - - - - - - - false - - - - - - - - Polygon - true - false - - Default - - 24 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):motGet - $(P)orient$(O):motGet_Auto - - - - 1 - 0 - true - - - - - 11 - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:3950 - - 20 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 80 - 0 - - false - 1 - - - - - 199 - - 25 - - false - true - 39872d87:13e14015f61:3951 - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):L_tweak.A - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)orient$(O):L_tweak.A - 1 - 10 - - - - $(pv_name) -$(pv_value) - 60 - - - false - true - 39872d87:13e14015f61:3952 - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):L_tweak.B - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)orient$(O):L_tweak.B - 1 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3953 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):L_tweak.C - - - - false - 0 - - - false - - - - 0 - - 2 - $(pv_name) -$(pv_value) - 20 - - - - - true - - true - 39872d87:13e14015f61:3954 - - 20 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 80 - 0 - - false - 1 - - - - - 139 - - 25 - - false - true - 39872d87:13e14015f61:3955 - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):K_tweak.A - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)orient$(O):K_tweak.A - 1 - 10 - - - - $(pv_name) -$(pv_value) - 60 - - - false - true - 39872d87:13e14015f61:3956 - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):K_tweak.B - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)orient$(O):K_tweak.B - 1 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3957 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):K_tweak.C - - - - false - 0 - - - false - - - - 0 - - 2 - $(pv_name) -$(pv_value) - 20 - - - - - true - - true - 39872d87:13e14015f61:3958 - - 177 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 114 - 0 - - false - 1 - - - - - 46 - - 365 - - false - true - 0.0 - - - - 39872d87:13e14015f61:395a - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 84 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):motCHI_Connected - - - - 1 - 2 - true - - - - - 94 - $(pv_name) -$(pv_value) - 30 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:395c - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 84 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):waiting4motCHI - - - - 1 - 2 - true - - - - - 94 - $(pv_name) -$(pv_value) - 30 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:395d - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 84 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):motTH_Connected - - - - 1 - 2 - true - - - - - 54 - $(pv_name) -$(pv_value) - 30 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:395e - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 84 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):waiting4motTH - - - - 1 - 2 - true - - - - - 54 - $(pv_name) -$(pv_value) - 30 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3962 - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 84 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):motTTH_Connected - - - - 1 - 2 - true - - - - - 14 - $(pv_name) -$(pv_value) - 30 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3964 - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 84 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):waiting4motTTH - - - - 1 - 2 - true - - - - - 14 - $(pv_name) -$(pv_value) - 30 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3967 - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 84 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):motPHI_Connected - - - - 1 - 2 - true - - - - - 134 - $(pv_name) -$(pv_value) - 30 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3969 - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 84 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):waiting4motPHI - - - - 1 - 2 - true - - - - - 134 - $(pv_name) -$(pv_value) - 30 - false - - - true - true - 1 - false - 39872d87:13e14015f61:3959 - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(PM)$(mCHI).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 80 - false - $(pv_name) -$(pv_value) - 32 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:395b - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(PM)$(mCHI) - - - - false - 0 - - - false - - - - 0 - - 96 - $(pv_name) -$(pv_value) - 32 - - - true - true - 1 - false - 39872d87:13e14015f61:395f - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(PM)$(mTH).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 40 - false - $(pv_name) -$(pv_value) - 32 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3960 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(PM)$(mTH) - - - - false - 0 - - - false - - - - 0 - - 56 - $(pv_name) -$(pv_value) - 32 - - - true - true - 1 - false - 39872d87:13e14015f61:3961 - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(PM)$(mTTH).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 0 - false - $(pv_name) -$(pv_value) - 32 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3963 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(PM)$(mTTH) - - - - false - 0 - - - false - - - - 0 - - 16 - $(pv_name) -$(pv_value) - 32 - - - true - 1 - 39872d87:13e14015f61:3965 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Moving - - - - 84 - 0 - - - - true - - - false - - $(P)orient$(O):waiting4Mot - - - 1 - - - - 1 - - 157 - true - - 30 - - - true - true - 1 - false - 39872d87:13e14015f61:3966 - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(PM)$(mPHI).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 120 - false - $(pv_name) -$(pv_value) - 32 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3968 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(PM)$(mPHI) - - - - false - 0 - - - false - - - - 0 - - 136 - $(pv_name) -$(pv_value) - 32 - - - true - 1 - 39872d87:13e14015f61:396a - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - TTH - - - - 30 - 0 - - 1 - - - - 1 - - 17 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:396b - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - TH - - - - 30 - 0 - - 1 - - - - 1 - - 57 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:396c - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - CHI - - - - 30 - 0 - - 1 - - - - 1 - - 97 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:396d - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - PHI - - - - 30 - 0 - - 1 - - - - 1 - - 137 - true - - 0 - - - - true - 1 - 39872d87:13e14015f61:391f - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Diffractometer $(P)orient$(O) - - - - 490 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:3920 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - CONSTRAINT: - - - - 115 - 0 - - 1 - - - - 1 - - 64 - true - - 132 - - - false - true - true - 39872d87:13e14015f61:3921 - - 20 - Menu Button - false - - true - true - false - - false - $(P)orient$(O):Mode - - - - - - - Menu Button - true - false - - Default - - 115 - 6 - - - - 1 - - - - 75 - - $(pv_name) -$(pv_value) - 132 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3922 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):TTH - - - - false - 0 - - - false - - - - 0 - - 99 - $(pv_name) -$(pv_value) - 164 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3923 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):TH - - - - false - 0 - - - false - - - - 0 - - 122 - $(pv_name) -$(pv_value) - 164 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3924 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):CHI - - - - false - 0 - - - false - - - - 0 - - 145 - $(pv_name) -$(pv_value) - 164 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3925 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):PHI - - - - false - 0 - - - false - - - - 0 - - 168 - $(pv_name) -$(pv_value) - 164 - - - true - 1 - 39872d87:13e14015f61:3927 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - TTH - - - - 30 - 0 - - 1 - - - - 1 - - 100 - true - - 131 - - - true - 1 - 39872d87:13e14015f61:3928 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - TH - - - - 30 - 0 - - 1 - - - - 1 - - 123 - true - - 131 - - - true - 1 - 39872d87:13e14015f61:3929 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - CHI - - - - 30 - 0 - - 1 - - - - 1 - - 146 - true - - 131 - - - true - 1 - 39872d87:13e14015f61:392a - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - PHI - - - - 30 - 0 - - 1 - - - - 1 - - 169 - true - - 131 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:392e - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 94 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):motPut - $(P)orient$(O):motPut_Auto - - - - 1 - 1 - true - - - - - 121 - $(pv_name) -$(pv_value) - 257 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:392f - 0.0 - - 27 - true - Polygon - false - 255 - - true - true - true - - - - - - - - false - - - - - - - - Polygon - true - false - - Default - - 24 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):motPut - $(P)orient$(O):motPut_Auto - - - - 1 - 0 - true - - - - - 108 - $(pv_name) -$(pv_value) - 344 - - - false - true - 39872d87:13e14015f61:3933 - - 28 - Action Button - false - - true - true - false - - $(P)orient$(O):stopMotors - - - - - - - Action Button - true - Stop Motors - false - - Default - - 120 - 0 - 0 - - - - false - 1 - - - - 202 - - - $(P)orient$(O):stopMotors - 1 - 10 - - - - $(pv_name) -$(pv_value) - 249 - - - false - true - 39872d87:13e14015f61:3934 - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):OperAck - - - - - - - Action Button - true - Erase - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 23 - - - $(P)orient$(O):OperAck - 1 - 10 - - - - $(pv_name) -$(pv_value) - 430 - - - true - true - 1 - false - 39872d87:13e14015f61:3936 - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - - - - - - - - Text Update - true - ###### - false - 0 - - - - 412 - 0 - - - 1 - - - - 0 - - 27 - false - $(pv_name) -$(pv_value) - 14 - - - true - true - 1 - false - 39872d87:13e14015f61:3937 - false - 0.0 - - 20 - Text Update - false - - true - true - false - - 4 - true - false - $(P)orient$(O):Busy - - - - - - - Text Update - true - ###### - false - 0 - - - - 55 - 0 - - - 1 - - - - 1 - - 70 - false - $(pv_name) -$(pv_value) - 280 - - - true - true - 1 - false - 39872d87:13e14015f61:3938 - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(P)orient$(O):H_RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 46 - false - $(pv_name) -$(pv_value) - 26 - - - true - 1 - 39872d87:13e14015f61:3939 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - L - - - - 10 - 0 - - 1 - - - - 0 - - 180 - true - - 10 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:393a - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):L - - - - false - 0 - - - false - - - - 0 - - 179 - $(pv_name) -$(pv_value) - 25 - - - true - true - 1 - false - 39872d87:13e14015f61:393c - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(P)orient$(O):L_RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 163 - false - $(pv_name) -$(pv_value) - 26 - - - true - true - 1 - false - 39872d87:13e14015f61:3941 - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(P)orient$(O):K_RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 103 - false - $(pv_name) -$(pv_value) - 26 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3942 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):H - - - - false - 0 - - - false - - - - 0 - - 61 - $(pv_name) -$(pv_value) - 25 - - - true - 1 - 39872d87:13e14015f61:3943 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - H - - - - 10 - 0 - - 1 - - - - 0 - - 62 - true - - 10 - - - false - true - false - 39872d87:13e14015f61:394b - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - - 225 - - - orient_full.opi - - true - - 1 - Everything - - - motor4x.opi - - true -

$(PM)

- $(mTTH) - $(mTH) - $(mCHI) - $(mPHI) -
- 0 - Motors -
-
- $(pv_name) -$(pv_value) - 450 -
- - false - true - false - 39872d87:13e14015f61:394c - - 21 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - - 225 - - - orient_HKL.opi - - true - - 1 - HKL only - - - $(pv_name) -$(pv_value) - 412 - - - false - true - 39872d87:13e14015f61:394d - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):H_tweak.A - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 81 - - - $(P)orient$(O):H_tweak.A - 1 - 10 - - - - $(pv_name) -$(pv_value) - 85 - - - false - true - 39872d87:13e14015f61:394e - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):H_tweak.B - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 81 - - - $(P)orient$(O):H_tweak.B - 1 - 10 - - - - $(pv_name) -$(pv_value) - 25 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:394f - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):H_tweak.C - - - - false - 0 - - - false - - - - 0 - - 83 - $(pv_name) -$(pv_value) - 45 - -
\ No newline at end of file diff --git a/opticsApp/op/opi/orient_HKL.opi b/opticsApp/op/opi/orient_HKL.opi deleted file mode 100644 index b4d296e..0000000 --- a/opticsApp/op/opi/orient_HKL.opi +++ /dev/null @@ -1,1501 +0,0 @@ - - false - - true - - 39872d87:13e14015f61:3aa8 - 3.1.2.20120830 - - true - 85 - orient_HKL - false - false - - - - - - - Display - true - 340 - - true - 5 - - false - -1 - -1 - - - 192 - 885 - - false - true - 100.0 - - - - 39872d87:13e14015f61:3aa9 - - - - - 20 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 300 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:3aaa - - - - - 3 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 300 - 0 - 0 - - - 1 - 0 - true - - - - - 20 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3ab2 - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 84 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):H_busy - - - - 1 - 2 - true - - - - - 37 - $(pv_name) -$(pv_value) - 23 - false - - - - true - - true - 39872d87:13e14015f61:3ab3 - - 24 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 97 - 0 - - false - 1 - - - - - 37 - - 120 - - false - true - 0.0 - - - - 39872d87:13e14015f61:3ab6 - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 84 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):K_busy - - - - 1 - 2 - true - - - - - 0 - $(pv_name) -$(pv_value) - 13 - false - - - true - 1 - 39872d87:13e14015f61:3ab4 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - K - - - - 10 - 0 - - 1 - - - - 0 - - 3 - true - - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3ab5 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):K - - - - false - 0 - - - false - - - - 0 - - 2 - $(pv_name) -$(pv_value) - 15 - - - - - true - - true - 39872d87:13e14015f61:3ab7 - - 24 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 97 - 0 - - false - 1 - - - - - 37 - - 230 - - false - true - 0.0 - - - - 39872d87:13e14015f61:3aba - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 84 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):L_busy - - - - 1 - 2 - true - - - - - 0 - $(pv_name) -$(pv_value) - 13 - false - - - true - 1 - 39872d87:13e14015f61:3ab8 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - L - - - - 10 - 0 - - 1 - - - - 0 - - 3 - true - - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3ab9 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):L - - - - false - 0 - - - false - - - - 0 - - 2 - $(pv_name) -$(pv_value) - 15 - - - - - true - - true - 39872d87:13e14015f61:3abb - - 20 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 300 - 0 - - false - 1 - - - - - 59 - - 25 - - false - true - 39872d87:13e14015f61:3abc - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):H_tweak.A - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)orient$(O):H_tweak.A - 1 - 10 - - - - $(pv_name) -$(pv_value) - 60 - - - false - true - 39872d87:13e14015f61:3abd - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):H_tweak.B - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)orient$(O):H_tweak.B - 1 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3abe - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):H_tweak.C - - - - false - 0 - - - false - - - - 0 - - 2 - $(pv_name) -$(pv_value) - 20 - - - false - true - 39872d87:13e14015f61:3abf - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):K_tweak.A - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)orient$(O):K_tweak.A - 1 - 10 - - - - $(pv_name) -$(pv_value) - 170 - - - false - true - 39872d87:13e14015f61:3ac0 - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):K_tweak.B - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)orient$(O):K_tweak.B - 1 - 10 - - - - $(pv_name) -$(pv_value) - 110 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3ac1 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):K_tweak.C - - - - false - 0 - - - false - - - - 0 - - 2 - $(pv_name) -$(pv_value) - 130 - - - false - true - 39872d87:13e14015f61:3ac2 - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):L_tweak.A - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)orient$(O):L_tweak.A - 1 - 10 - - - - $(pv_name) -$(pv_value) - 280 - - - false - true - 39872d87:13e14015f61:3ac3 - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):L_tweak.B - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 0 - - - $(P)orient$(O):L_tweak.B - 1 - 10 - - - - $(pv_name) -$(pv_value) - 220 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3ac4 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):L_tweak.C - - - - false - 0 - - - false - - - - 0 - - 2 - $(pv_name) -$(pv_value) - 240 - - - - true - 1 - 39872d87:13e14015f61:3aab - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Diffractometer $(P)orient$(O) - - - - 300 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - false - true - false - 39872d87:13e14015f61:3aac - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 40 - 6 - - - - 1 - - - - 0 - - - orient.opi - - true - - 1 - HKL, Angles, Motors - - - orient_full.opi - - true - - 1 - Everything - - - motor4x.opi - - true -

$(PM)

- $(mTTH) - $(mTH) - $(mCHI) - $(mPHI) -
- 0 - Motors -
-
- $(pv_name) -$(pv_value) - 300 -
- - true - true - 1 - false - 39872d87:13e14015f61:3aad - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(P)orient$(O):H_RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 24 - false - $(pv_name) -$(pv_value) - 26 - - - true - true - 1 - false - 39872d87:13e14015f61:3aae - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(P)orient$(O):K_RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 24 - false - $(pv_name) -$(pv_value) - 136 - - - true - true - 1 - false - 39872d87:13e14015f61:3aaf - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(P)orient$(O):L_RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 24 - false - $(pv_name) -$(pv_value) - 246 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3ab0 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):H - - - - false - 0 - - - false - - - - 0 - - 39 - $(pv_name) -$(pv_value) - 25 - - - true - 1 - 39872d87:13e14015f61:3ab1 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - H - - - - 10 - 0 - - 1 - - - - 0 - - 40 - true - - 10 - -
\ No newline at end of file diff --git a/opticsApp/op/opi/orient_XTALs.opi b/opticsApp/op/opi/orient_XTALs.opi deleted file mode 100644 index 10c0b42..0000000 --- a/opticsApp/op/opi/orient_XTALs.opi +++ /dev/null @@ -1,4671 +0,0 @@ - - false - - true - - 39872d87:13e14015f61:3b18 - 3.1.2.20120830 - - true - 215 - orient_XTALs - false - false - - - - - - - Display - true - 560 - - true - 5 - - false - -1 - -1 - - - 289 - 53 - - - true - - true - 39872d87:13e14015f61:3b19 - - 186 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 550 - 0 - - false - 1 - - - - - 25 - - 5 - - - true - - true - 39872d87:13e14015f61:3b23 - - 176 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 25 - 0 - - false - 1 - - - - - 10 - - 525 - - false - true - 39872d87:13e14015f61:3b24 - - 16 - Action Button - false - - true - true - false - - $(P)orient$(O):xtal_7_get.PROC - - - - - - - Action Button - true - 7 - false - - Default - - 25 - 0 - 0 - - - - false - 1 - - - - 140 - - - $(P)orient$(O):xtal_7_get.PROC - 7 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - true - 1 - 39872d87:13e14015f61:3b25 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Get - - - - 25 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - false - true - 39872d87:13e14015f61:3b26 - - 16 - Action Button - false - - true - true - false - - $(P)orient$(O):xtal_1_get.PROC - - - - - - - Action Button - true - 1 - false - - Default - - 25 - 0 - 0 - - - - false - 1 - - - - 20 - - - $(P)orient$(O):xtal_1_get.PROC - 1 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:3b27 - - 16 - Action Button - false - - true - true - false - - $(P)orient$(O):xtal_2_get.PROC - - - - - - - Action Button - true - 2 - false - - Default - - 25 - 0 - 0 - - - - false - 1 - - - - 40 - - - $(P)orient$(O):xtal_2_get.PROC - 2 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:3b28 - - 16 - Action Button - false - - true - true - false - - $(P)orient$(O):xtal_3_get.PROC - - - - - - - Action Button - true - 3 - false - - Default - - 25 - 0 - 0 - - - - false - 1 - - - - 60 - - - $(P)orient$(O):xtal_3_get.PROC - 3 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:3b29 - - 16 - Action Button - false - - true - true - false - - $(P)orient$(O):xtal_4_get.PROC - - - - - - - Action Button - true - 4 - false - - Default - - 25 - 0 - 0 - - - - false - 1 - - - - 80 - - - $(P)orient$(O):xtal_4_get.PROC - 4 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:3b2a - - 16 - Action Button - false - - true - true - false - - $(P)orient$(O):xtal_5_get.PROC - - - - - - - Action Button - true - 5 - false - - Default - - 25 - 0 - 0 - - - - false - 1 - - - - 100 - - - $(P)orient$(O):xtal_5_get.PROC - 5 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:3b2b - - 16 - Action Button - false - - true - true - false - - $(P)orient$(O):xtal_6_get.PROC - - - - - - - Action Button - true - 6 - false - - Default - - 25 - 0 - 0 - - - - false - 1 - - - - 120 - - - $(P)orient$(O):xtal_6_get.PROC - 6 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:3b2c - - 16 - Action Button - false - - true - true - false - - $(P)orient$(O):xtal_8_get.PROC - - - - - - - Action Button - true - 8 - false - - Default - - 25 - 0 - 0 - - - - false - 1 - - - - 160 - - - $(P)orient$(O):xtal_8_get.PROC - 8 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - - true - 1 - 39872d87:13e14015f61:3b1a - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - USE - - - - 25 - 0 - - 1 - - - - 1 - - 10 - true - - 0 - - - false - true - 39872d87:13e14015f61:3b1b - - 16 - Action Button - false - - true - true - false - - $(P)orient$(O):xtal_1.PROC - - - - - - - Action Button - true - 1 - false - - Default - - 25 - 0 - 0 - - - - false - 1 - - - - 30 - - - $(P)orient$(O):xtal_1.PROC - 1 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:3b1c - - 16 - Action Button - false - - true - true - false - - $(P)orient$(O):xtal_2.PROC - - - - - - - Action Button - true - 2 - false - - Default - - 25 - 0 - 0 - - - - false - 1 - - - - 50 - - - $(P)orient$(O):xtal_2.PROC - 2 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:3b1d - - 16 - Action Button - false - - true - true - false - - $(P)orient$(O):xtal_3.PROC - - - - - - - Action Button - true - 3 - false - - Default - - 25 - 0 - 0 - - - - false - 1 - - - - 70 - - - $(P)orient$(O):xtal_3.PROC - 3 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:3b1e - - 16 - Action Button - false - - true - true - false - - $(P)orient$(O):xtal_4.PROC - - - - - - - Action Button - true - 4 - false - - Default - - 25 - 0 - 0 - - - - false - 1 - - - - 90 - - - $(P)orient$(O):xtal_4.PROC - 4 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:3b1f - - 16 - Action Button - false - - true - true - false - - $(P)orient$(O):xtal_5.PROC - - - - - - - Action Button - true - 5 - false - - Default - - 25 - 0 - 0 - - - - false - 1 - - - - 110 - - - $(P)orient$(O):xtal_5.PROC - 5 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:3b20 - - 16 - Action Button - false - - true - true - false - - $(P)orient$(O):xtal_6.PROC - - - - - - - Action Button - true - 6 - false - - Default - - 25 - 0 - 0 - - - - false - 1 - - - - 130 - - - $(P)orient$(O):xtal_6.PROC - 6 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:3b21 - - 16 - Action Button - false - - true - true - false - - $(P)orient$(O):xtal_7.PROC - - - - - - - Action Button - true - 7 - false - - Default - - 25 - 0 - 0 - - - - false - 1 - - - - 150 - - - $(P)orient$(O):xtal_7.PROC - 7 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:3b22 - - 16 - Action Button - false - - true - true - false - - $(P)orient$(O):xtal_8.PROC - - - - - - - Action Button - true - 8 - false - - Default - - 25 - 0 - 0 - - - - false - 1 - - - - 170 - - - $(P)orient$(O):xtal_8.PROC - 8 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b2d - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_7.STR1 - - - - false - 0 - - - false - - - - 0 - - 150 - $(pv_name) -$(pv_value) - 30 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b2e - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_7.DO3 - - - - false - 0 - - - false - - - - 0 - - 150 - $(pv_name) -$(pv_value) - 200 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b2f - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_7.DO4 - - - - false - 0 - - - false - - - - 0 - - 150 - $(pv_name) -$(pv_value) - 265 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b30 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_7.DO5 - - - - false - 0 - - - false - - - - 0 - - 150 - $(pv_name) -$(pv_value) - 330 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b31 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_7.DO6 - - - - false - 0 - - - false - - - - 0 - - 150 - $(pv_name) -$(pv_value) - 395 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b32 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_7.DO7 - - - - false - 0 - - - false - - - - 0 - - 150 - $(pv_name) -$(pv_value) - 460 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b33 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_7.DO2 - - - - false - 0 - - - false - - - - 0 - - 150 - $(pv_name) -$(pv_value) - 135 - - - true - 1 - 39872d87:13e14015f61:3b34 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - crystal - - - - 100 - 0 - - 1 - - - - 1 - - 0 - true - - 30 - - - true - 1 - 39872d87:13e14015f61:3b35 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - description - - - - 100 - 0 - - 1 - - - - 1 - - 15 - true - - 30 - - - true - 1 - 39872d87:13e14015f61:3b36 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - b - - - - 60 - 0 - - 1 - - - - 1 - - 0 - true - - 200 - - - true - 1 - 39872d87:13e14015f61:3b37 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - c - - - - 60 - 0 - - 1 - - - - 1 - - 0 - true - - 265 - - - true - 1 - 39872d87:13e14015f61:3b38 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - alpha - - - - 60 - 0 - - 1 - - - - 1 - - 0 - true - - 330 - - - true - 1 - 39872d87:13e14015f61:3b39 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - beta - - - - 60 - 0 - - 1 - - - - 1 - - 0 - true - - 395 - - - true - 1 - 39872d87:13e14015f61:3b3a - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - gamma - - - - 60 - 0 - - 1 - - - - 1 - - 0 - true - - 460 - - - true - 1 - 39872d87:13e14015f61:3b3b - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - a - - - - 60 - 0 - - 1 - - - - 1 - - 0 - true - - 135 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b3c - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_1.STR1 - - - - false - 0 - - - false - - - - 0 - - 30 - $(pv_name) -$(pv_value) - 30 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b3d - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_1.DO3 - - - - false - 0 - - - false - - - - 0 - - 30 - $(pv_name) -$(pv_value) - 200 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b3e - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_1.DO4 - - - - false - 0 - - - false - - - - 0 - - 30 - $(pv_name) -$(pv_value) - 265 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b3f - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_1.DO5 - - - - false - 0 - - - false - - - - 0 - - 30 - $(pv_name) -$(pv_value) - 330 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b40 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_1.DO6 - - - - false - 0 - - - false - - - - 0 - - 30 - $(pv_name) -$(pv_value) - 395 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b41 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_1.DO7 - - - - false - 0 - - - false - - - - 0 - - 30 - $(pv_name) -$(pv_value) - 460 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b42 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_1.DO2 - - - - false - 0 - - - false - - - - 0 - - 30 - $(pv_name) -$(pv_value) - 135 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b43 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_2.STR1 - - - - false - 0 - - - false - - - - 0 - - 50 - $(pv_name) -$(pv_value) - 30 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b44 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_2.DO3 - - - - false - 0 - - - false - - - - 0 - - 50 - $(pv_name) -$(pv_value) - 200 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b45 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_2.DO4 - - - - false - 0 - - - false - - - - 0 - - 50 - $(pv_name) -$(pv_value) - 265 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b46 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_2.DO5 - - - - false - 0 - - - false - - - - 0 - - 50 - $(pv_name) -$(pv_value) - 330 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b47 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_2.DO6 - - - - false - 0 - - - false - - - - 0 - - 50 - $(pv_name) -$(pv_value) - 395 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b48 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_2.DO7 - - - - false - 0 - - - false - - - - 0 - - 50 - $(pv_name) -$(pv_value) - 460 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b49 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_2.DO2 - - - - false - 0 - - - false - - - - 0 - - 50 - $(pv_name) -$(pv_value) - 135 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b4a - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_3.STR1 - - - - false - 0 - - - false - - - - 0 - - 70 - $(pv_name) -$(pv_value) - 30 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b4b - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_3.DO3 - - - - false - 0 - - - false - - - - 0 - - 70 - $(pv_name) -$(pv_value) - 200 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b4c - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_3.DO4 - - - - false - 0 - - - false - - - - 0 - - 70 - $(pv_name) -$(pv_value) - 265 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b4d - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_3.DO5 - - - - false - 0 - - - false - - - - 0 - - 70 - $(pv_name) -$(pv_value) - 330 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b4e - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_3.DO6 - - - - false - 0 - - - false - - - - 0 - - 70 - $(pv_name) -$(pv_value) - 395 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b4f - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_3.DO7 - - - - false - 0 - - - false - - - - 0 - - 70 - $(pv_name) -$(pv_value) - 460 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b50 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_3.DO2 - - - - false - 0 - - - false - - - - 0 - - 70 - $(pv_name) -$(pv_value) - 135 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b51 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_4.STR1 - - - - false - 0 - - - false - - - - 0 - - 90 - $(pv_name) -$(pv_value) - 30 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b52 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_4.DO3 - - - - false - 0 - - - false - - - - 0 - - 90 - $(pv_name) -$(pv_value) - 200 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b53 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_4.DO4 - - - - false - 0 - - - false - - - - 0 - - 90 - $(pv_name) -$(pv_value) - 265 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b54 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_4.DO5 - - - - false - 0 - - - false - - - - 0 - - 90 - $(pv_name) -$(pv_value) - 330 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b55 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_4.DO6 - - - - false - 0 - - - false - - - - 0 - - 90 - $(pv_name) -$(pv_value) - 395 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b56 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_4.DO7 - - - - false - 0 - - - false - - - - 0 - - 90 - $(pv_name) -$(pv_value) - 460 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b57 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_4.DO2 - - - - false - 0 - - - false - - - - 0 - - 90 - $(pv_name) -$(pv_value) - 135 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b58 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_5.STR1 - - - - false - 0 - - - false - - - - 0 - - 110 - $(pv_name) -$(pv_value) - 30 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b59 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_5.DO3 - - - - false - 0 - - - false - - - - 0 - - 110 - $(pv_name) -$(pv_value) - 200 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b5a - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_5.DO4 - - - - false - 0 - - - false - - - - 0 - - 110 - $(pv_name) -$(pv_value) - 265 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b5b - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_5.DO5 - - - - false - 0 - - - false - - - - 0 - - 110 - $(pv_name) -$(pv_value) - 330 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b5c - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_5.DO6 - - - - false - 0 - - - false - - - - 0 - - 110 - $(pv_name) -$(pv_value) - 395 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b5d - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_5.DO7 - - - - false - 0 - - - false - - - - 0 - - 110 - $(pv_name) -$(pv_value) - 460 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b5e - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_5.DO2 - - - - false - 0 - - - false - - - - 0 - - 110 - $(pv_name) -$(pv_value) - 135 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b5f - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_6.STR1 - - - - false - 0 - - - false - - - - 0 - - 130 - $(pv_name) -$(pv_value) - 30 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b60 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_6.DO3 - - - - false - 0 - - - false - - - - 0 - - 130 - $(pv_name) -$(pv_value) - 200 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b61 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_6.DO4 - - - - false - 0 - - - false - - - - 0 - - 130 - $(pv_name) -$(pv_value) - 265 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b62 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_6.DO5 - - - - false - 0 - - - false - - - - 0 - - 130 - $(pv_name) -$(pv_value) - 330 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b63 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_6.DO6 - - - - false - 0 - - - false - - - - 0 - - 130 - $(pv_name) -$(pv_value) - 395 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b64 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_6.DO7 - - - - false - 0 - - - false - - - - 0 - - 130 - $(pv_name) -$(pv_value) - 460 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b65 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_6.DO2 - - - - false - 0 - - - false - - - - 0 - - 130 - $(pv_name) -$(pv_value) - 135 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b66 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_8.STR1 - - - - false - 0 - - - false - - - - 0 - - 170 - $(pv_name) -$(pv_value) - 30 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b67 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_8.DO3 - - - - false - 0 - - - false - - - - 0 - - 170 - $(pv_name) -$(pv_value) - 200 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b68 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_8.DO4 - - - - false - 0 - - - false - - - - 0 - - 170 - $(pv_name) -$(pv_value) - 265 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b69 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_8.DO5 - - - - false - 0 - - - false - - - - 0 - - 170 - $(pv_name) -$(pv_value) - 330 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b6a - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_8.DO6 - - - - false - 0 - - - false - - - - 0 - - 170 - $(pv_name) -$(pv_value) - 395 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b6b - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_8.DO7 - - - - false - 0 - - - false - - - - 0 - - 170 - $(pv_name) -$(pv_value) - 460 - - - false - true - 1 - false - false - - 16 - false - true - - - - Text Input - true - - - - - 60 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3b6c - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):xtal_8.DO2 - - - - false - 0 - - - false - - - - 0 - - 170 - $(pv_name) -$(pv_value) - 135 - - - - - true - - true - 39872d87:13e14015f61:3b6d - - 23 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 560 - 0 - - false - 1 - - - - - 0 - - 0 - - false - true - 100.0 - - - - 39872d87:13e14015f61:3b6e - - - - - 20 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 560 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:3b70 - - - - - 3 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 560 - 0 - 0 - - - 1 - 0 - true - - - - - 20 - $(pv_name) -$(pv_value) - 0 - false - - - true - 1 - 39872d87:13e14015f61:3b6f - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Diffractometer $(P)orient$(O) crystals - - - - 560 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - \ No newline at end of file diff --git a/opticsApp/op/opi/orient_full.opi b/opticsApp/op/opi/orient_full.opi deleted file mode 100644 index a2dc62e..0000000 --- a/opticsApp/op/opi/orient_full.opi +++ /dev/null @@ -1,10265 +0,0 @@ - - false - - true - - 39872d87:13e14015f61:3bcb - 3.1.2.20120830 - - true - 565 - orient_full - false - false - - - - - - - Display - true - 550 - - true - 5 - - false - -1 - -1 - - - 233 - 204 - - false - true - 0.0 - - - - 39872d87:13e14015f61:3bd8 - - - - - 67 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 217 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):A0_state - - - - 1 - 3 - true - - - - - 450 - $(pv_name) -$(pv_value) - 309 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:3be5 - - - - - 20 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 550 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:3be6 - - - - - 3 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 550 - 0 - 0 - - - 1 - 0 - true - - - - - 20 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3bea - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 406 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):refGet1 - $(P)orient$(O):refPut1 - - - - 1 - 2 - true - - - - - 258 - $(pv_name) -$(pv_value) - 70 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3beb - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 406 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):refGet2 - $(P)orient$(O):refPut2 - - - - 1 - 2 - true - - - - - 284 - $(pv_name) -$(pv_value) - 70 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3c0c - - - - - 67 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 217 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):OMTX_state - - - - 1 - 3 - true - - - - - 332 - $(pv_name) -$(pv_value) - 305 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3c11 - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 84 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):L_busy - - - - 1 - 2 - true - - - - - 188 - $(pv_name) -$(pv_value) - 23 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3c23 - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 84 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):H_busy - - - - 1 - 2 - true - - - - - 70 - $(pv_name) -$(pv_value) - 23 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3c2e - - - - - 22 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 485 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):Alert - - - - 1 - 3 - true - - - - - 22 - $(pv_name) -$(pv_value) - 10 - false - - - - true - - true - 39872d87:13e14015f61:3bdc - - 25 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 12 - 0 - - false - 1 - - - - - 455 - - 78 - - true - 1 - 39872d87:13e14015f61:3bdd - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - A - - - - 10 - 0 - - 1 - - - - 0 - - 5 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:3bde - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - o - - - - 10 - 0 - - 1 - - - - 0 - - 0 - true - - 2 - - - - - true - - true - 39872d87:13e14015f61:3bdf - - 25 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 12 - 0 - - false - 1 - - - - - 475 - - 78 - - true - 1 - 39872d87:13e14015f61:3be0 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - A - - - - 10 - 0 - - 1 - - - - 0 - - 5 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:3be1 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - o - - - - 10 - 0 - - 1 - - - - 0 - - 0 - true - - 2 - - - - - true - - true - 39872d87:13e14015f61:3be2 - - 25 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 12 - 0 - - false - 1 - - - - - 495 - - 78 - - true - 1 - 39872d87:13e14015f61:3be3 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - A - - - - 10 - 0 - - 1 - - - - 0 - - 5 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:3be4 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - o - - - - 10 - 0 - - 1 - - - - 0 - - 0 - true - - 2 - - - - - true - - true - 39872d87:13e14015f61:3c16 - - 24 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 97 - 0 - - false - 1 - - - - - 128 - - 10 - - false - true - 0.0 - - - - 39872d87:13e14015f61:3c19 - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 84 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):K_busy - - - - 1 - 2 - true - - - - - 0 - $(pv_name) -$(pv_value) - 13 - false - - - true - 1 - 39872d87:13e14015f61:3c17 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - K - - - - 10 - 0 - - 1 - - - - 0 - - 3 - true - - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c18 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):K - - - - false - 0 - - - false - - - - 0 - - 2 - $(pv_name) -$(pv_value) - 15 - - - - - true - - true - 39872d87:13e14015f61:3c24 - - 20 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 55 - 0 - - false - 1 - - - - - 258 - - 10 - - true - 1 - 39872d87:13e14015f61:3c25 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - PRIMARY - - - - 55 - 0 - - 1 - - - - 0 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:3c26 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - REFLECTION - - - - 55 - 0 - - 1 - - - - 0 - - 10 - true - - 0 - - - - - true - - true - 39872d87:13e14015f61:3c30 - - 60 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 70 - 0 - - false - 1 - - - - - 336 - - 379 - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c31 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):OMTX_12 - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c32 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):OMTX_22 - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c33 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):OMTX_32 - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:3c34 - - 60 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 70 - 0 - - false - 1 - - - - - 336 - - 449 - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c35 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):OMTX_13 - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c36 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):OMTX_23 - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c37 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):OMTX_33 - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:3c38 - - 60 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 70 - 0 - - false - 1 - - - - - 336 - - 309 - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c39 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):OMTX_11 - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c3a - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):OMTX_21 - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c3b - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):OMTX_31 - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:3c3c - - 60 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 70 - 0 - - false - 1 - - - - - 454 - - 313 - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c3d - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):A0_11 - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c3e - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):A0_21 - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c3f - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):A0_31 - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:3c40 - - 60 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 70 - 0 - - false - 1 - - - - - 454 - - 383 - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c41 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):A0_12 - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c42 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):A0_22 - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c43 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):A0_32 - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:3c44 - - 60 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 70 - 0 - - false - 1 - - - - - 454 - - 453 - - - true - - true - 39872d87:13e14015f61:3c45 - - 60 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 70 - 0 - - false - 1 - - - - - 0 - - 0 - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c46 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):A0_13 - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c47 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):A0_23 - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c48 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):A0_33 - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 0 - - - - - - true - - true - 39872d87:13e14015f61:3c4c - - 60 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 70 - 0 - - false - 1 - - - - - 457 - - 155 - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c4d - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):alpha - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c4e - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):beta - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c4f - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):gamma - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:3c50 - - 20 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 47 - 0 - - false - 1 - - - - - 475 - - 246 - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:3c51 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 26 - 0 - 0 - - - 1 - 1 - true - - - - - 10 - $(pv_name) -$(pv_value) - 3 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:3c52 - 0.0 - - 21 - true - Polygon - false - 255 - - true - true - true - - - - - - - - - false - - - - - - - - Polygon - true - false - - Default - - 21 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 27 - - - - - true - - true - 39872d87:13e14015f61:3c54 - - 25 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 164 - 0 - - false - 1 - - - - - 518 - - 13 - - - true - - true - 39872d87:13e14015f61:3c57 - - 25 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 12 - 0 - - false - 1 - - - - - 0 - - 152 - - true - 1 - 39872d87:13e14015f61:3c58 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - A - - - - 10 - 0 - - 1 - - - - 0 - - 5 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:3c59 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - o - - - - 10 - 0 - - 1 - - - - 0 - - 0 - true - - 2 - - - - true - 1 - 39872d87:13e14015f61:3c55 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Wavelength: - - - - 75 - 0 - - 1 - - - - 1 - - 4 - true - - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c56 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):lambda - - - - false - 0 - - - false - - - - 0 - - 3 - $(pv_name) -$(pv_value) - 81 - - - - - true - - true - 39872d87:13e14015f61:3c5d - - 169 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 121 - 0 - - false - 1 - - - - - 62 - - 299 - - - true - - true - 39872d87:13e14015f61:3c60 - - 94 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 115 - 0 - - false - 1 - - - - - 35 - - 6 - - - true - - true - 39872d87:13e14015f61:3c63 - - 34 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 55 - 0 - - false - 1 - - - - - 0 - - 28 - - false - true - true - 39872d87:13e14015f61:3c64 - - 14 - Menu Button - false - - true - true - false - - false - $(P)orient$(O):motPut_Auto - - - - - - - Menu Button - true - false - - Default - - 55 - 6 - - - - 1 - - - - 0 - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:3c65 - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):motPut - - - - - - - Action Button - true - Move - false - - Default - - 55 - 0 - 0 - - - - false - 1 - - - - 14 - - - $(P)orient$(O):motPut - 1 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:3c66 - - 34 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 55 - 0 - - false - 1 - - - - - 57 - - 28 - - false - true - true - 39872d87:13e14015f61:3c67 - - 14 - Menu Button - false - - true - true - false - - false - $(P)orient$(O):motGet_Auto - - - - - - - Menu Button - true - false - - Default - - 55 - 6 - - - - 1 - - - - 0 - - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:3c68 - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):motGet - - - - - - - Action Button - true - Read - false - - Default - - 55 - 0 - 0 - - - - false - 1 - - - - 14 - - - $(P)orient$(O):motGet - 1 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:3c61 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 94 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):motPut - $(P)orient$(O):motPut_Auto - - - - 1 - 1 - true - - - - - 24 - $(pv_name) -$(pv_value) - 5 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:3c62 - 0.0 - - 27 - true - Polygon - false - 255 - - true - true - true - - - - - - - - false - - - - - - - - Polygon - true - false - - Default - - 24 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):motPut - $(P)orient$(O):motPut_Auto - - - - 1 - 0 - true - - - - - 11 - $(pv_name) -$(pv_value) - 92 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:3c69 - 0.0 - - 0 - 2 - true - Polyline - false - 255 - - true - true - true - - - - - - true - - - - - - - - Polyline - true - false - - Default - - 94 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):motGet - $(P)orient$(O):motGet_Auto - - - - 1 - 1 - true - - - - - 80 - $(pv_name) -$(pv_value) - 15 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:3c6a - 0.0 - - 27 - true - Polygon - false - 255 - - true - true - true - - - - - - - - false - - - - - - - - Polygon - true - false - - Default - - 24 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):motGet - $(P)orient$(O):motGet_Auto - - - - 1 - 0 - true - - - - - 68 - $(pv_name) -$(pv_value) - 0 - - - - false - true - 39872d87:13e14015f61:3c5e - - 28 - Action Button - false - - true - true - false - - $(P)orient$(O):stopMotors - - - - - - - Action Button - true - Stop Motors - false - - Default - - 120 - 0 - 0 - - - - false - 1 - - - - 141 - - - $(P)orient$(O):stopMotors - 1 - 10 - - - - $(pv_name) -$(pv_value) - 0 - - - false - true - true - 39872d87:13e14015f61:3c5f - - 20 - Menu Button - false - - true - true - false - - false - $(P)orient$(O):Busy - - - - - - - Menu Button - true - false - - Default - - 50 - 6 - - - - 1 - - - - 0 - - $(pv_name) -$(pv_value) - 36 - - - - - true - - true - 39872d87:13e14015f61:3c6b - - 131 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 121 - 0 - - false - 1 - - - - - 66 - - 180 - - false - true - 0.0 - - - - 39872d87:13e14015f61:3c74 - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 85 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):TH_busy - - - - 1 - 2 - true - - - - - 62 - $(pv_name) -$(pv_value) - 30 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3c75 - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 85 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):CHI_busy - - - - 1 - 2 - true - - - - - 84 - $(pv_name) -$(pv_value) - 30 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3c76 - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 85 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):PHI_busy - - - - 1 - 2 - true - - - - - 107 - $(pv_name) -$(pv_value) - 30 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3c78 - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 85 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):TTH_busy - - - - 1 - 2 - true - - - - - 38 - $(pv_name) -$(pv_value) - 30 - false - - - true - 1 - 39872d87:13e14015f61:3c6c - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - HKL/ANGLE CONSTRAINT: - - - - 120 - 0 - - 1 - - - - 1 - - 0 - true - - 1 - - - false - true - true - 39872d87:13e14015f61:3c6d - - 20 - Menu Button - false - - true - true - false - - false - $(P)orient$(O):Mode - - - - - - - Menu Button - true - false - - Default - - 120 - 6 - - - - 1 - - - - 11 - - $(pv_name) -$(pv_value) - 1 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c6e - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):TH - - - - false - 0 - - - false - - - - 0 - - 63 - $(pv_name) -$(pv_value) - 33 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c6f - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):CHI - - - - false - 0 - - - false - - - - 0 - - 86 - $(pv_name) -$(pv_value) - 33 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c70 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):PHI - - - - false - 0 - - - false - - - - 0 - - 109 - $(pv_name) -$(pv_value) - 33 - - - true - 1 - 39872d87:13e14015f61:3c71 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - TH - - - - 30 - 0 - - 1 - - - - 0 - - 64 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:3c72 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - CHI - - - - 30 - 0 - - 1 - - - - 0 - - 87 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:3c73 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - PHI - - - - 30 - 0 - - 1 - - - - 0 - - 110 - true - - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c77 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):TTH - - - - false - 0 - - - false - - - - 0 - - 40 - $(pv_name) -$(pv_value) - 33 - - - true - 1 - 39872d87:13e14015f61:3c79 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - TTH - - - - 30 - 0 - - 1 - - - - 0 - - 41 - true - - 0 - - - - - true - - true - 39872d87:13e14015f61:3c7a - - 25 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 20 - 0 - - false - 1 - - - - - 135 - - 132 - - false - true - 0.0 - - - - 39872d87:13e14015f61:3c7d - - - - - 25 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 20 - 0 - 0 - - - 1 - 2 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - true - 1 - 39872d87:13e14015f61:3c7b - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - OM - - - - 10 - 0 - - 1 - - - - 1 - - 3 - true - - 4 - - - true - 1 - 39872d87:13e14015f61:3c7c - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - A0 - - - - 10 - 0 - - 1 - - - - 1 - - 14 - true - - 4 - - - - - true - - true - 39872d87:13e14015f61:3c81 - - 177 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 114 - 0 - - false - 1 - - - - - 53 - - 425 - - false - true - 0.0 - - - - 39872d87:13e14015f61:3c83 - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 84 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):motCHI_Connected - - - - 1 - 2 - true - - - - - 94 - $(pv_name) -$(pv_value) - 30 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3c85 - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 84 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):waiting4motCHI - - - - 1 - 2 - true - - - - - 94 - $(pv_name) -$(pv_value) - 30 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3c86 - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 84 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):motTH_Connected - - - - 1 - 2 - true - - - - - 54 - $(pv_name) -$(pv_value) - 30 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3c87 - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 84 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):waiting4motTH - - - - 1 - 2 - true - - - - - 54 - $(pv_name) -$(pv_value) - 30 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3c8b - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 84 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):motTTH_Connected - - - - 1 - 2 - true - - - - - 14 - $(pv_name) -$(pv_value) - 30 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3c8d - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 84 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):waiting4motTTH - - - - 1 - 2 - true - - - - - 14 - $(pv_name) -$(pv_value) - 30 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3c90 - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 84 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):motPHI_Connected - - - - 1 - 2 - true - - - - - 134 - $(pv_name) -$(pv_value) - 30 - false - - - false - true - 0.0 - - - - 39872d87:13e14015f61:3c92 - - - - - 24 - true - Rectangle - false - 255 - - true - true - false - - true - - - - - - - - Rectangle - true - - - - false - - Default - - 84 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):waiting4motPHI - - - - 1 - 2 - true - - - - - 134 - $(pv_name) -$(pv_value) - 30 - false - - - true - true - 1 - false - 39872d87:13e14015f61:3c82 - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(PM)$(mCHI).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 80 - false - $(pv_name) -$(pv_value) - 32 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c84 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(PM)$(mCHI) - - - - false - 0 - - - false - - - - 0 - - 96 - $(pv_name) -$(pv_value) - 32 - - - true - true - 1 - false - 39872d87:13e14015f61:3c88 - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(PM)$(mTH).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 40 - false - $(pv_name) -$(pv_value) - 32 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c89 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(PM)$(mTH) - - - - false - 0 - - - false - - - - 0 - - 56 - $(pv_name) -$(pv_value) - 32 - - - true - true - 1 - false - 39872d87:13e14015f61:3c8a - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(PM)$(mTTH).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 0 - false - $(pv_name) -$(pv_value) - 32 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c8c - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(PM)$(mTTH) - - - - false - 0 - - - false - - - - 0 - - 16 - $(pv_name) -$(pv_value) - 32 - - - true - 1 - 39872d87:13e14015f61:3c8e - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Moving - - - - 84 - 0 - - - - true - - - false - - $(P)orient$(O):waiting4Mot - - - 1 - - - - 1 - - 157 - true - - 30 - - - true - true - 1 - false - 39872d87:13e14015f61:3c8f - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(PM)$(mPHI).RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 120 - false - $(pv_name) -$(pv_value) - 32 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c91 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(PM)$(mPHI) - - - - false - 0 - - - false - - - - 0 - - 136 - $(pv_name) -$(pv_value) - 32 - - - true - 1 - 39872d87:13e14015f61:3c93 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - TTH - - - - 30 - 0 - - 1 - - - - 1 - - 17 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:3c94 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - TH - - - - 30 - 0 - - 1 - - - - 1 - - 57 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:3c95 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - CHI - - - - 30 - 0 - - 1 - - - - 1 - - 97 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:3c96 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - PHI - - - - 30 - 0 - - 1 - - - - 1 - - 137 - true - - 0 - - - - true - 1 - 39872d87:13e14015f61:3bcc - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - a - - - - 10 - 0 - - 1 - - - - 0 - - 458 - true - - 13 - - - true - 1 - 39872d87:13e14015f61:3bcd - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - b - - - - 10 - 0 - - 1 - - - - 0 - - 478 - true - - 13 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 50 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3bce - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):a - - - - false - 0 - - - false - - - - 0 - - 457 - $(pv_name) -$(pv_value) - 28 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 50 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3bcf - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):b - - - - false - 0 - - - false - - - - 0 - - 477 - $(pv_name) -$(pv_value) - 28 - - - true - 1 - 39872d87:13e14015f61:3bd0 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Lattice parameters - - - - 190 - 0 - - 1 - - - - 1 - - 418 - true - - 13 - - - true - 1 - 39872d87:13e14015f61:3bd1 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - c - - - - 10 - 0 - - 1 - - - - 0 - - 498 - true - - 13 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 50 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3bd2 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):c - - - - false - 0 - - - false - - - - 0 - - 497 - $(pv_name) -$(pv_value) - 28 - - - true - 1 - 39872d87:13e14015f61:3bd3 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - A0 - - - - 240 - 0 - - 1 - - - - 1 - - 436 - true - - 283 - - - false - true - false - 39872d87:13e14015f61:3bd4 - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 45 - 6 - - - - 1 - - - - 434 - - - orient_XTALs.opi - - true - - 0 - crystals - - - $(pv_name) -$(pv_value) - 13 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input - true - - - - - 165 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3bd5 - 0.0 - Text Input - - true - true - false - - 4 - false - 0 - $(P)orient$(O):XTAL - - - - false - 0 - - - false - - - - 0 - - 434 - $(pv_name) -$(pv_value) - 60 - - - false - true - true - 39872d87:13e14015f61:3bd6 - - 20 - Menu Button - false - - true - true - false - - false - $(P)orient$(O):Debug - - - - - - - Menu Button - true - false - - Default - - 60 - 6 - - - - 1 - - - - 533 - - $(pv_name) -$(pv_value) - 330 - - - true - 1 - 39872d87:13e14015f61:3bd7 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - debug - - - - 40 - 0 - - 1 - - - - 0 - - 537 - true - - 285 - - - true - 1 - 39872d87:13e14015f61:3bd9 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - alpha - - - - 50 - 0 - - 1 - - - - 0 - - 458 - true - - 100 - - - true - 1 - 39872d87:13e14015f61:3bda - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - beta - - - - 50 - 0 - - 1 - - - - 0 - - 478 - true - - 100 - - - true - 1 - 39872d87:13e14015f61:3bdb - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - gamma - - - - 50 - 0 - - 1 - - - - 0 - - 498 - true - - 100 - - - true - 1 - 39872d87:13e14015f61:3be7 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - Diffractometer $(P)orient$(O) - - - - 550 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - false - true - false - 39872d87:13e14015f61:3be8 - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 50 - 6 - - - - 1 - - - - 540 - - - orient.opi - - true - - 1 - HKL, Angles, Motors - - - $(pv_name) -$(pv_value) - 450 - - - false - true - false - 39872d87:13e14015f61:3be9 - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 50 - 6 - - - - 1 - - - - 540 - - - motor4x.opi - - true -

$(PM)

- $(mTTH) - $(mTH) - $(mCHI) - $(mPHI) -
- 0 - Motors -
-
- $(pv_name) -$(pv_value) - 500 -
- - true - 1 - 39872d87:13e14015f61:3bec - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - TTH - - - - 75 - 0 - - 1 - - - - 1 - - 243 - true - - 174 - - - true - 1 - 39872d87:13e14015f61:3bed - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - TH - - - - 75 - 0 - - 1 - - - - 1 - - 243 - true - - 249 - - - true - 1 - 39872d87:13e14015f61:3bee - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - CHI - - - - 75 - 0 - - 1 - - - - 1 - - 243 - true - - 324 - - - true - 1 - 39872d87:13e14015f61:3bef - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - PHI - - - - 75 - 0 - - 1 - - - - 1 - - 243 - true - - 399 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 75 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3bf0 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):TTH1 - - - - false - 0 - - - false - - - - 0 - - 260 - $(pv_name) -$(pv_value) - 174 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 75 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3bf1 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):TH1 - - - - false - 0 - - - false - - - - 0 - - 260 - $(pv_name) -$(pv_value) - 249 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 75 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3bf2 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):CHI1 - - - - false - 0 - - - false - - - - 0 - - 260 - $(pv_name) -$(pv_value) - 324 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 75 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3bf3 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):PHI1 - - - - false - 0 - - - false - - - - 0 - - 260 - $(pv_name) -$(pv_value) - 399 - - - true - 1 - 39872d87:13e14015f61:3bf4 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - = - - - - 10 - 0 - - 1 - - - - 1 - - 262 - true - - 163 - - - true - 1 - 39872d87:13e14015f61:3bf5 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - ^ - - - - 10 - 0 - - 1 - - - - 1 - - 259 - true - - 163 - - - false - true - 39872d87:13e14015f61:3bf6 - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):refGet1 - - - - - - - Action Button - true - Get - false - - Default - - 30 - 0 - 0 - - - - false - 1 - - - - 260 - - - $(P)orient$(O):refGet1 - 1 - 10 - - - - $(pv_name) -$(pv_value) - 478 - - - false - true - 39872d87:13e14015f61:3bf7 - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):refPut1 - - - - - - - Action Button - true - Put - false - - Default - - 30 - 0 - 0 - - - - false - 1 - - - - 260 - - - $(P)orient$(O):refPut1 - 1 - 10 - - - - $(pv_name) -$(pv_value) - 509 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 75 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3bf8 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):TTH2 - - - - false - 0 - - - false - - - - 0 - - 286 - $(pv_name) -$(pv_value) - 174 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 75 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3bf9 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):TH2 - - - - false - 0 - - - false - - - - 0 - - 286 - $(pv_name) -$(pv_value) - 249 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 75 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3bfa - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):CHI2 - - - - false - 0 - - - false - - - - 0 - - 286 - $(pv_name) -$(pv_value) - 324 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 75 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3bfb - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):PHI2 - - - - false - 0 - - - false - - - - 0 - - 286 - $(pv_name) -$(pv_value) - 399 - - - true - 1 - 39872d87:13e14015f61:3bfc - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - = - - - - 10 - 0 - - 1 - - - - 1 - - 288 - true - - 163 - - - true - 1 - 39872d87:13e14015f61:3bfd - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - ^ - - - - 10 - 0 - - 1 - - - - 1 - - 285 - true - - 163 - - - false - true - 39872d87:13e14015f61:3bfe - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):refGet2 - - - - - - - Action Button - true - Get - false - - Default - - 30 - 0 - 0 - - - - false - 1 - - - - 285 - - - $(P)orient$(O):refGet2 - 1 - 10 - - - - $(pv_name) -$(pv_value) - 478 - - - false - true - 39872d87:13e14015f61:3bff - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):refPut2 - - - - - - - Action Button - true - Put - false - - Default - - 30 - 0 - 0 - - - - false - 1 - - - - 285 - - - $(P)orient$(O):refPut2 - 1 - 10 - - - - $(pv_name) -$(pv_value) - 509 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 30 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c00 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):L1 - - - - false - 0 - - - false - - - - 0 - - 260 - $(pv_name) -$(pv_value) - 132 - - - true - 1 - 39872d87:13e14015f61:3c01 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - L - - - - 30 - 0 - - 1 - - - - 1 - - 243 - true - - 132 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 30 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c02 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):L2 - - - - false - 0 - - - false - - - - 0 - - 286 - $(pv_name) -$(pv_value) - 132 - - - true - 1 - 39872d87:13e14015f61:3c03 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - K - - - - 30 - 0 - - 1 - - - - 1 - - 243 - true - - 102 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 30 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c04 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):K1 - - - - false - 0 - - - false - - - - 0 - - 260 - $(pv_name) -$(pv_value) - 102 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 30 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c05 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):K2 - - - - false - 0 - - - false - - - - 0 - - 286 - $(pv_name) -$(pv_value) - 102 - - - true - 1 - 39872d87:13e14015f61:3c06 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - H - - - - 30 - 0 - - 1 - - - - 1 - - 243 - true - - 72 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 30 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c07 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):H1 - - - - false - 0 - - - false - - - - 0 - - 260 - $(pv_name) -$(pv_value) - 72 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 30 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c08 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):H2 - - - - false - 0 - - - false - - - - 0 - - 286 - $(pv_name) -$(pv_value) - 72 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:3c09 - 0.0 - - 21 - true - Polygon - false - 255 - - true - true - true - - - - - - - - false - - - - - - - - Polygon - true - false - - Default - - 21 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):refGet1 - $(P)orient$(O):refGet2 - - - - 1 - 0 - true - - - - - 229 - $(pv_name) -$(pv_value) - 167 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:3c0a - 0.0 - - 21 - true - Polygon - false - 255 - - true - true - true - - - - - - - - false - - - - - - - - Polygon - true - false - - Default - - 21 - 0 - 0 - - - - true - - - false - - $(P)orient$(O):refPut1 - $(P)orient$(O):refPut2 - - - - 1 - 0 - true - - - - - 229 - $(pv_name) -$(pv_value) - 157 - - - false - true - 39872d87:13e14015f61:3c0b - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):OMTX_Calc - - - - - - - Action Button - true - Calc OMTX - false - - Default - - 90 - 0 - 0 - - - - false - 1 - - - - 340 - - - $(P)orient$(O):OMTX_Calc - 1 - 10 - - - - $(pv_name) -$(pv_value) - 182 - - - true - 1 - 39872d87:13e14015f61:3c0d - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - OM - - - - 240 - 0 - - 1 - - - - 1 - - 318 - true - - 279 - - - true - true - 1 - false - 39872d87:13e14015f61:3c0e - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(P)orient$(O):H_RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 57 - false - $(pv_name) -$(pv_value) - 26 - - - true - 1 - 39872d87:13e14015f61:3c0f - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - L - - - - 10 - 0 - - 1 - - - - 0 - - 191 - true - - 10 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c10 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):L - - - - false - 0 - - - false - - - - 0 - - 190 - $(pv_name) -$(pv_value) - 25 - - - false - true - 39872d87:13e14015f61:3c12 - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):L_tweak.A - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 210 - - - $(P)orient$(O):L_tweak.A - 1 - 10 - - - - $(pv_name) -$(pv_value) - 85 - - - false - true - 39872d87:13e14015f61:3c13 - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):L_tweak.B - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 210 - - - $(P)orient$(O):L_tweak.B - 1 - 10 - - - - $(pv_name) -$(pv_value) - 25 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c14 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):L_tweak.C - - - - false - 0 - - - false - - - - 0 - - 212 - $(pv_name) -$(pv_value) - 45 - - - true - true - 1 - false - 39872d87:13e14015f61:3c15 - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(P)orient$(O):L_RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 174 - false - $(pv_name) -$(pv_value) - 26 - - - false - true - 39872d87:13e14015f61:3c1a - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):K_tweak.A - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 150 - - - $(P)orient$(O):K_tweak.A - 1 - 10 - - - - $(pv_name) -$(pv_value) - 85 - - - false - true - 39872d87:13e14015f61:3c1b - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):K_tweak.B - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 150 - - - $(P)orient$(O):K_tweak.B - 1 - 10 - - - - $(pv_name) -$(pv_value) - 25 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c1c - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):K_tweak.C - - - - false - 0 - - - false - - - - 0 - - 152 - $(pv_name) -$(pv_value) - 45 - - - true - true - 1 - false - 39872d87:13e14015f61:3c1d - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(P)orient$(O):K_RBV - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 114 - false - $(pv_name) -$(pv_value) - 26 - - - false - true - 39872d87:13e14015f61:3c1e - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):H_tweak.A - - - - - - - Action Button - true - + - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 92 - - - $(P)orient$(O):H_tweak.A - 1 - 10 - - - - $(pv_name) -$(pv_value) - 85 - - - false - true - 39872d87:13e14015f61:3c1f - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):H_tweak.B - - - - - - - Action Button - true - - - false - - Default - - 20 - 0 - 0 - - - - false - 1 - - - - 92 - - - $(P)orient$(O):H_tweak.B - 1 - 10 - - - - $(pv_name) -$(pv_value) - 25 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c20 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):H_tweak.C - - - - false - 0 - - - false - - - - 0 - - 94 - $(pv_name) -$(pv_value) - 45 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c21 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):H - - - - false - 0 - - - false - - - - 0 - - 72 - $(pv_name) -$(pv_value) - 25 - - - true - 1 - 39872d87:13e14015f61:3c22 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - H - - - - 10 - 0 - - 1 - - - - 0 - - 73 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:3c27 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - SECONDARY - - - - 55 - 0 - - 1 - - - - 0 - - 286 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:3c28 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - REFLECTION - - - - 55 - 0 - - 1 - - - - 0 - - 296 - true - - 10 - - - true - 1 - 39872d87:13e14015f61:3c29 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - errAngle: - - - - 60 - 0 - - 1 - - - - 1 - - 362 - true - - 118 - - - true - true - 1 - false - 39872d87:13e14015f61:3c2a - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(P)orient$(O):errAngle - - - - - - - Text Update - true - ###### - false - 0 - - - - 90 - 0 - - - 1 - - - - 0 - - 362 - false - $(pv_name) -$(pv_value) - 182 - - - true - 1 - 39872d87:13e14015f61:3c2b - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - maxErr: - - - - 60 - 0 - - 1 - - - - 1 - - 380 - true - - 118 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 90 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c2c - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):errAngleThresh - - - - false - 0 - - - false - - - - 0 - - 378 - $(pv_name) -$(pv_value) - 182 - - - false - true - 39872d87:13e14015f61:3c2d - - 20 - Action Button - false - - true - true - false - - $(P)orient$(O):OperAck - - - - - - - Action Button - true - Erase - false - - Default - - 45 - 0 - 0 - - - - false - 1 - - - - 24 - - - $(P)orient$(O):OperAck - 1 - 10 - - - - $(pv_name) -$(pv_value) - 495 - - - true - true - 1 - false - 39872d87:13e14015f61:3c2f - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 1 - true - false - $(P)orient$(O):Msg - - - - - - - Text Update - true - ###### - false - 0 - - - - 475 - 0 - - - 1 - - - - 0 - - 27 - false - $(pv_name) -$(pv_value) - 15 - - - true - 1 - 39872d87:13e14015f61:3c49 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - o - - - - 10 - 0 - - 1 - - - - 0 - - 457 - true - - 228 - - - true - 1 - 39872d87:13e14015f61:3c4a - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - o - - - - 10 - 0 - - 1 - - - - 0 - - 478 - true - - 228 - - - true - 1 - 39872d87:13e14015f61:3c4b - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - o - - - - 10 - 0 - - 1 - - - - 0 - - 498 - true - - 228 - - - true - 1 - 39872d87:13e14015f61:3c53 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - AUTO - - - - 30 - 0 - - 1 - - - - 1 - - 461 - true - - 254 - - - true - 1 - 39872d87:13e14015f61:3c5a - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - Energy: - - - - 75 - 0 - - 1 - - - - 1 - - 542 - true - - 13 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 70 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:3c5b - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)orient$(O):energy - - - - false - 0 - - - false - - - - 0 - - 541 - $(pv_name) -$(pv_value) - 94 - - - true - 1 - 39872d87:13e14015f61:3c5c - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - keV - - - - 10 - 0 - - 1 - - - - 0 - - 543 - true - - 165 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:3c7e - 0.0 - - 18 - true - Polygon - false - 255 - - true - true - true - - - - - - - - - false - - - - - - - - Polygon - true - false - - Default - - 18 - 0 - 0 - - - 1 - 0 - true - - - - - 140 - $(pv_name) -$(pv_value) - 152 - - - false - true - 100.0 - - - - 39872d87:13e14015f61:3c7f - 0.0 - - 18 - true - Polygon - false - 255 - - true - true - true - - - - - - - - - false - - - - - - - - Polygon - true - false - - Default - - 18 - 0 - 0 - - - 1 - 0 - true - - - - - 140 - $(pv_name) -$(pv_value) - 115 - - - true - 1 - 39872d87:13e14015f61:3c80 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - AUTO - - - - 30 - 0 - - 1 - - - - 1 - - 117 - true - - 128 - -
\ No newline at end of file diff --git a/opticsApp/op/opi/pf4Bankmore.opi b/opticsApp/op/opi/pf4Bankmore.opi deleted file mode 100644 index ab888e2..0000000 --- a/opticsApp/op/opi/pf4Bankmore.opi +++ /dev/null @@ -1,2352 +0,0 @@ - - false - - true - - 39872d87:13e14015f61:3fe5 - 3.1.2.20120830 - - true - 535 - pf4Bankmore - false - false - - - - - - - Display - true - 140 - - true - 5 - - false - -1 - -1 - - - 500 - 862 - - false - true - 100.0 - - - - 39872d87:13e14015f61:3fe6 - - - - - 25 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 140 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - - true - - true - 39872d87:13e14015f61:3fea - false - - true - 130 - Linking Container - - true - true - false - - pf4Bank_bare.opi - - - - - - - - Linking Container - true - - Default - - 125 - 3 - - 1 - - - - - 25 - - 5 - - - - true - - true - 39872d87:13e14015f61:3fed - - 346 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 138 - 0 - - false - 1 - - - - - 185 - - 6 - - - true - - true - 39872d87:13e14015f61:3fee - - 346 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 64 - 0 - - false - 1 - - - - - 0 - - 0 - - false - true - 100.0 - - - - 39872d87:13e14015f61:3fef - - - - - 346 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - - true - - - false - - $(P)$(H)fPos$(B) - - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:3ff0 - - - - - 346 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - - true - - - false - - $(P)$(H)fPos$(B) - - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:3ff1 - - - - - 346 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 64 - 0 - 0 - - - - true - - - false - - $(P)$(H)bank$(B) - - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - true - true - 39872d87:13e14015f61:3ff2 - false - - false - 0 - - - - 336 - Byte Monitor - false - - true - true - false - - - - - $(P)$(H)bitFlag$(B) - - - - - - - Byte Monitor - true - false - 16 - - Default - - 10 - 0 - true - - - 1 - true - - - - - 4 - $(pv_name) -$(pv_value) - 4 - - - - true - true - 1 - false - 39872d87:13e14015f61:3ff3 - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 4 - true - false - $(P)$(H)fPos$(B).THST - - - - - - - Text Update - true - ###### - false - 0 - - - - 70 - 0 - - - 1 - - - - 0 - - 69 - false - $(pv_name) -$(pv_value) - 68 - - - true - true - 1 - false - 39872d87:13e14015f61:3ff4 - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 4 - true - false - $(P)$(H)fPos$(B).TWST - - - - - - - Text Update - true - ###### - false - 0 - - - - 70 - 0 - - - 1 - - - - 0 - - 48 - false - $(pv_name) -$(pv_value) - 68 - - - true - true - 1 - false - 39872d87:13e14015f61:3ff5 - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 4 - true - false - $(P)$(H)fPos$(B).ONST - - - - - - - Text Update - true - ###### - false - 0 - - - - 70 - 0 - - - 1 - - - - 0 - - 27 - false - $(pv_name) -$(pv_value) - 68 - - - true - true - 1 - false - 39872d87:13e14015f61:3ff6 - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 4 - true - false - $(P)$(H)fPos$(B).ZRST - - - - - - - Text Update - true - ###### - false - 0 - - - - 70 - 0 - - - 1 - - - - 0 - - 6 - false - $(pv_name) -$(pv_value) - 68 - - - true - true - 1 - false - 39872d87:13e14015f61:3ff7 - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 4 - true - false - $(P)$(H)fPos$(B).FRST - - - - - - - Text Update - true - ###### - false - 0 - - - - 70 - 0 - - - 1 - - - - 0 - - 91 - false - $(pv_name) -$(pv_value) - 68 - - - true - true - 1 - false - 39872d87:13e14015f61:3ff8 - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 4 - true - false - $(P)$(H)fPos$(B).FVST - - - - - - - Text Update - true - ###### - false - 0 - - - - 70 - 0 - - - 1 - - - - 0 - - 112 - false - $(pv_name) -$(pv_value) - 68 - - - true - true - 1 - false - 39872d87:13e14015f61:3ff9 - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 4 - true - false - $(P)$(H)fPos$(B).SXST - - - - - - - Text Update - true - ###### - false - 0 - - - - 70 - 0 - - - 1 - - - - 0 - - 133 - false - $(pv_name) -$(pv_value) - 68 - - - true - true - 1 - false - 39872d87:13e14015f61:3ffa - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 4 - true - false - $(P)$(H)fPos$(B).SVST - - - - - - - Text Update - true - ###### - false - 0 - - - - 70 - 0 - - - 1 - - - - 0 - - 154 - false - $(pv_name) -$(pv_value) - 68 - - - true - true - 1 - false - 39872d87:13e14015f61:3ffb - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 4 - true - false - $(P)$(H)fPos$(B).EIST - - - - - - - Text Update - true - ###### - false - 0 - - - - 70 - 0 - - - 1 - - - - 0 - - 175 - false - $(pv_name) -$(pv_value) - 68 - - - true - true - 1 - false - 39872d87:13e14015f61:3ffc - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 4 - true - false - $(P)$(H)fPos$(B).NIST - - - - - - - Text Update - true - ###### - false - 0 - - - - 70 - 0 - - - 1 - - - - 0 - - 196 - false - $(pv_name) -$(pv_value) - 68 - - - true - true - 1 - false - 39872d87:13e14015f61:3ffd - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 4 - true - false - $(P)$(H)fPos$(B).TEST - - - - - - - Text Update - true - ###### - false - 0 - - - - 70 - 0 - - - 1 - - - - 0 - - 217 - false - $(pv_name) -$(pv_value) - 68 - - - true - true - 1 - false - 39872d87:13e14015f61:3ffe - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 4 - true - false - $(P)$(H)fPos$(B).ELST - - - - - - - Text Update - true - ###### - false - 0 - - - - 70 - 0 - - - 1 - - - - 0 - - 238 - false - $(pv_name) -$(pv_value) - 68 - - - true - true - 1 - false - 39872d87:13e14015f61:3fff - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 4 - true - false - $(P)$(H)fPos$(B).TVST - - - - - - - Text Update - true - ###### - false - 0 - - - - 70 - 0 - - - 1 - - - - 0 - - 259 - false - $(pv_name) -$(pv_value) - 68 - - - true - true - 1 - false - 39872d87:13e14015f61:4000 - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 4 - true - false - $(P)$(H)fPos$(B).TTST - - - - - - - Text Update - true - ###### - false - 0 - - - - 70 - 0 - - - 1 - - - - 0 - - 280 - false - $(pv_name) -$(pv_value) - 68 - - - true - true - 1 - false - 39872d87:13e14015f61:4001 - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 4 - true - false - $(P)$(H)fPos$(B).FTST - - - - - - - Text Update - true - ###### - false - 0 - - - - 70 - 0 - - - 1 - - - - 0 - - 301 - false - $(pv_name) -$(pv_value) - 68 - - - true - true - 1 - false - 39872d87:13e14015f61:4002 - false - 0.0 - - 14 - Text Update - false - - true - true - false - - 4 - true - false - $(P)$(H)fPos$(B).FFST - - - - - - - Text Update - true - ###### - false - 0 - - - - 70 - 0 - - - 1 - - - - 0 - - 322 - false - $(pv_name) -$(pv_value) - 68 - - - false - true - 39872d87:13e14015f61:4003 - - 18 - Action Button - false - - true - true - false - - $(P)$(H)fPos$(B) - - - - - - - Action Button - true - B 0 - false - - Default - - 40 - 0 - 0 - - - - true - 1 - - - - 6 - - - $(P)$(H)fPos$(B) - 0 - 10 - - - - $(pv_name) -$(pv_value) - 18 - - - false - true - 39872d87:13e14015f61:4004 - - 18 - Action Button - false - - true - true - false - - $(P)$(H)fPos$(B) - - - - - - - Action Button - true - B 1 - false - - Default - - 40 - 0 - 0 - - - - true - 1 - - - - 27 - - - $(P)$(H)fPos$(B) - 1 - 10 - - - - $(pv_name) -$(pv_value) - 18 - - - false - true - 39872d87:13e14015f61:4005 - - 18 - Action Button - false - - true - true - false - - $(P)$(H)fPos$(B) - - - - - - - Action Button - true - B 2 - false - - Default - - 40 - 0 - 0 - - - - true - 1 - - - - 48 - - - $(P)$(H)fPos$(B) - 2 - 10 - - - - $(pv_name) -$(pv_value) - 18 - - - false - true - 39872d87:13e14015f61:4006 - - 18 - Action Button - false - - true - true - false - - $(P)$(H)fPos$(B) - - - - - - - Action Button - true - B 3 - false - - Default - - 40 - 0 - 0 - - - - true - 1 - - - - 69 - - - $(P)$(H)fPos$(B) - 3 - 10 - - - - $(pv_name) -$(pv_value) - 18 - - - false - true - 39872d87:13e14015f61:4007 - - 18 - Action Button - false - - true - true - false - - $(P)$(H)fPos$(B) - - - - - - - Action Button - true - B 4 - false - - Default - - 40 - 0 - 0 - - - - true - 1 - - - - 91 - - - $(P)$(H)fPos$(B) - 4 - 10 - - - - $(pv_name) -$(pv_value) - 18 - - - false - true - 39872d87:13e14015f61:4008 - - 18 - Action Button - false - - true - true - false - - $(P)$(H)fPos$(B) - - - - - - - Action Button - true - B 5 - false - - Default - - 40 - 0 - 0 - - - - true - 1 - - - - 112 - - - $(P)$(H)fPos$(B) - 5 - 10 - - - - $(pv_name) -$(pv_value) - 18 - - - false - true - 39872d87:13e14015f61:4009 - - 18 - Action Button - false - - true - true - false - - $(P)$(H)fPos$(B) - - - - - - - Action Button - true - B 6 - false - - Default - - 40 - 0 - 0 - - - - true - 1 - - - - 133 - - - $(P)$(H)fPos$(B) - 6 - 10 - - - - $(pv_name) -$(pv_value) - 18 - - - false - true - 39872d87:13e14015f61:400a - - 18 - Action Button - false - - true - true - false - - $(P)$(H)fPos$(B) - - - - - - - Action Button - true - B 7 - false - - Default - - 40 - 0 - 0 - - - - true - 1 - - - - 154 - - - $(P)$(H)fPos$(B) - 7 - 10 - - - - $(pv_name) -$(pv_value) - 18 - - - false - true - 39872d87:13e14015f61:400b - - 18 - Action Button - false - - true - true - false - - $(P)$(H)fPos$(B) - - - - - - - Action Button - true - B 8 - false - - Default - - 40 - 0 - 0 - - - - true - 1 - - - - 175 - - - $(P)$(H)fPos$(B) - 8 - 10 - - - - $(pv_name) -$(pv_value) - 18 - - - false - true - 39872d87:13e14015f61:400c - - 18 - Action Button - false - - true - true - false - - $(P)$(H)fPos$(B) - - - - - - - Action Button - true - B 9 - false - - Default - - 40 - 0 - 0 - - - - true - 1 - - - - 196 - - - $(P)$(H)fPos$(B) - 9 - 10 - - - - $(pv_name) -$(pv_value) - 18 - - - false - true - 39872d87:13e14015f61:400d - - 18 - Action Button - false - - true - true - false - - $(P)$(H)fPos$(B) - - - - - - - Action Button - true - B 10 - false - - Default - - 40 - 0 - 0 - - - - true - 1 - - - - 217 - - - $(P)$(H)fPos$(B) - 10 - 10 - - - - $(pv_name) -$(pv_value) - 18 - - - false - true - 39872d87:13e14015f61:400e - - 18 - Action Button - false - - true - true - false - - $(P)$(H)fPos$(B) - - - - - - - Action Button - true - B 11 - false - - Default - - 40 - 0 - 0 - - - - true - 1 - - - - 238 - - - $(P)$(H)fPos$(B) - 11 - 10 - - - - $(pv_name) -$(pv_value) - 18 - - - false - true - 39872d87:13e14015f61:400f - - 18 - Action Button - false - - true - true - false - - $(P)$(H)fPos$(B) - - - - - - - Action Button - true - B 12 - false - - Default - - 40 - 0 - 0 - - - - true - 1 - - - - 259 - - - $(P)$(H)fPos$(B) - 12 - 10 - - - - $(pv_name) -$(pv_value) - 18 - - - false - true - 39872d87:13e14015f61:4010 - - 18 - Action Button - false - - true - true - false - - $(P)$(H)fPos$(B) - - - - - - - Action Button - true - B 13 - false - - Default - - 40 - 0 - 0 - - - - true - 1 - - - - 280 - - - $(P)$(H)fPos$(B) - 13 - 10 - - - - $(pv_name) -$(pv_value) - 18 - - - false - true - 39872d87:13e14015f61:4011 - - 18 - Action Button - false - - true - true - false - - $(P)$(H)fPos$(B) - - - - - - - Action Button - true - B 14 - false - - Default - - 40 - 0 - 0 - - - - true - 1 - - - - 301 - - - $(P)$(H)fPos$(B) - 14 - 10 - - - - $(pv_name) -$(pv_value) - 18 - - - false - true - 39872d87:13e14015f61:4012 - - 18 - Action Button - false - - true - true - false - - $(P)$(H)fPos$(B) - - - - - - - Action Button - true - B 15 - false - - Default - - 40 - 0 - 0 - - - - true - 1 - - - - 322 - - - $(P)$(H)fPos$(B) - 15 - 10 - - - - $(pv_name) -$(pv_value) - 18 - - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:3fe7 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 140 - 0 - 0 - - - 1 - 1 - true - - - - - 181 - $(pv_name) -$(pv_value) - 1 - - - true - 1 - 39872d87:13e14015f61:3fe8 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - PF4 filter - - - - 135 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - false - true - 20 - true - 100.0 - 39872d87:13e14015f61:3fe9 - 0.0 - - 0 - 1 - true - Polyline - false - 255 - - true - true - true - - - - - - false - - - - - - - - Polyline - true - false - - Default - - 140 - 0 - 0 - - - 1 - 1 - true - - - - - 23 - $(pv_name) -$(pv_value) - 1 - - - false - true - false - 39872d87:13e14015f61:3feb - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 55 - 6 - - - - 1 - - - - 155 - - - pf4Bankconfig.opi - - true - - 1 - all - - - $(pv_name) -$(pv_value) - 30 - - - false - true - false - 39872d87:13e14015f61:3fec - - 20 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 50 - 6 - - - - 1 - - - - 155 - - - pf4Bank.opi - - true - - 1 - PF4 mono filter computed controls - - - $(pv_name) -$(pv_value) - 85 - - \ No newline at end of file diff --git a/opticsApp/op/opi/pf4_other_bare.opi b/opticsApp/op/opi/pf4_other_bare.opi deleted file mode 100644 index ce98b0a..0000000 --- a/opticsApp/op/opi/pf4_other_bare.opi +++ /dev/null @@ -1,191 +0,0 @@ - - false - - true - - 39872d87:13e14015f61:40d2 - 3.1.2.20120830 - - true - 22 - pf4_other_bare - false - false - - - - - - - Display - true - 50 - - true - 5 - - false - -1 - -1 - - - 230 - 230 - - - true - - true - 39872d87:13e14015f61:40d3 - - 22 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 50 - 0 - - - - true - - - false - - $(P)$(H)Z$(N)$(B) - - - false - 1 - - - - - 0 - - 0 - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 40 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:40d4 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)$(H)Other$(N)$(B) - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 0 - - - true - 1 - 39872d87:13e14015f61:40d5 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - X - - - - 10 - 0 - - - - true - - - false - - $(P)$(H)OtherLegal$(N)$(B) - - - 1 - - - - 0 - - 2 - true - - 40 - - - \ No newline at end of file diff --git a/opticsApp/op/opi/qxbpm.opi b/opticsApp/op/opi/qxbpm.opi deleted file mode 100644 index 7cd0ca1..0000000 --- a/opticsApp/op/opi/qxbpm.opi +++ /dev/null @@ -1,3200 +0,0 @@ - - false - - true - - 39872d87:13e14015f61:429a - 3.1.2.20120830 - - true - 370 - qxbpm - false - false - - - - - - - Display - true - 555 - - true - 5 - - false - -1 - -1 - - - 30 - 19 - - false - true - 100.0 - - - - 39872d87:13e14015f61:42a4 - - - - - 45 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 280 - 0 - 0 - - - 1 - 0 - true - - - - - 275 - $(pv_name) -$(pv_value) - 26 - false - - - - true - - true - 39872d87:13e14015f61:42a5 - - 43 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 268 - 0 - - false - 1 - - - - - 276 - - 32 - - - true - - true - 39872d87:13e14015f61:42a6 - - 43 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 12 - 0 - - false - 1 - - - - - 0 - - 0 - - false - true - 100.0 - - - - 39872d87:13e14015f61:42a7 - - - - - 11 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 12 - 0 - 0 - - - - true - - - false - - $(P)current:ok - $(P)current:low - - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:42a8 - - - - - 11 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 12 - 0 - 0 - - - - true - - - false - - $(P)current:ok - $(P)current:low - - - - 1 - 0 - true - - - - - 16 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:42a9 - - - - - 11 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 12 - 0 - 0 - - - - true - - - false - - $(P)current:ok - $(P)current:low - - - - 1 - 0 - true - - - - - 32 - $(pv_name) -$(pv_value) - 0 - false - - - - - true - - true - 39872d87:13e14015f61:42aa - - 39 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 250 - 0 - - false - 1 - - - - - 2 - - 18 - - - true - - true - 39872d87:13e14015f61:42ab - - 20 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 250 - 0 - - false - 1 - - - - - 0 - - 0 - - true - 1 - 39872d87:13e14015f61:42ac - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - diode currents OK - - - - 250 - 0 - - - - true - - - false - - $(P)current:ok - $(P)current:low - - - 1 - - - - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:42ad - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - diode currents OK - - - - 250 - 0 - - - - true - - - false - - $(P)current:ok - $(P)current:low - - - 1 - - - - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:42ae - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - diode currents too low - - - - 250 - 0 - - - - true - - - false - - $(P)current:ok - $(P)current:low - - - 1 - - - - 1 - - 0 - true - - 0 - - - - - true - - true - 39872d87:13e14015f61:42af - - 19 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 250 - 0 - - false - 1 - - - - - 20 - - 0 - - - true - - true - 39872d87:13e14015f61:42b0 - - 12 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 250 - 0 - - false - 1 - - - - - 0 - - 0 - - true - 1 - 39872d87:13e14015f61:42b1 - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - not all diodes above threshold - - - - 250 - 0 - - - - true - - - false - - $(P)current:ok - - - 1 - - - - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:42b2 - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - all diodes above threshold - - - - 250 - 0 - - - - true - - - false - - $(P)current:ok - - - 1 - - - - 1 - - 0 - true - - 0 - - - - - true - - true - 39872d87:13e14015f61:42b3 - - 10 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 250 - 0 - - false - 1 - - - - - 9 - - 0 - - true - 1 - 39872d87:13e14015f61:42b4 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - not all diodes below threshold - - - - 250 - 0 - - - - true - - - false - - $(P)current:low - - - 1 - - - - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:42b5 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - all diodes below threshold - - - - 250 - 0 - - - - true - - - false - - $(P)current:low - - - 1 - - - - 1 - - 0 - true - - 0 - - - - - - - - true - - true - 39872d87:13e14015f61:42b6 - - 96 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 263 - 0 - - false - 1 - - - - - 174 - - 42 - - true - true - 1 - false - 39872d87:13e14015f61:42b7 - false - 0.0 - - 20 - Text Update - false - - true - true - false - - 2 - true - false - $(P)current:a - - - - - - - Text Update - true - ###### - false - 0 - - - - 100 - 0 - - - 1 - - - - 1 - - 18 - false - $(pv_name) -$(pv_value) - 28 - - - true - true - 1 - false - 39872d87:13e14015f61:42b8 - false - 0.0 - - 20 - Text Update - false - - true - true - false - - 2 - true - false - $(P)current:c - - - - - - - Text Update - true - ###### - false - 0 - - - - 100 - 0 - - - 1 - - - - 1 - - 18 - false - $(pv_name) -$(pv_value) - 141 - - - true - 1 - 39872d87:13e14015f61:42b9 - false - - 16 - Label - - true - true - false - - true - false - - - - - - - Label - true - A - - - - 20 - 0 - - 1 - - - - 1 - - 20 - true - - 1 - - - true - 1 - 39872d87:13e14015f61:42ba - false - - 16 - Label - - true - true - false - - true - false - - - - - - - Label - true - C - - - - 20 - 0 - - 1 - - - - 1 - - 20 - true - - 243 - - - true - true - 1 - false - 39872d87:13e14015f61:42bb - false - 0.0 - - 20 - Text Update - false - - true - true - false - - 2 - true - false - $(P)current:b - - - - - - - Text Update - true - ###### - false - 0 - - - - 100 - 0 - - - 1 - - - - 1 - - 46 - false - $(pv_name) -$(pv_value) - 27 - - - true - true - 1 - false - 39872d87:13e14015f61:42bc - false - 0.0 - - 20 - Text Update - false - - true - true - false - - 2 - true - false - $(P)current:d - - - - - - - Text Update - true - ###### - false - 0 - - - - 100 - 0 - - - 1 - - - - 1 - - 46 - false - $(pv_name) -$(pv_value) - 140 - - - true - 1 - 39872d87:13e14015f61:42bd - false - - 16 - Label - - true - true - false - - true - false - - - - - - - Label - true - B - - - - 20 - 0 - - 1 - - - - 1 - - 48 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:42be - false - - 16 - Label - - true - true - false - - true - false - - - - - - - Label - true - D - - - - 20 - 0 - - 1 - - - - 1 - - 48 - true - - 242 - - - true - 1 - 39872d87:13e14015f61:42bf - false - - 16 - Label - - true - true - false - - true - false - - - - - - - Label - true - photodiode currents - - - - 200 - 0 - - 1 - - - - 1 - - 0 - true - - 35 - - - true - 1 - 39872d87:13e14015f61:42c0 - false - - 16 - Label - - true - true - false - - true - false - - - - - - - Label - true - A+B+C+D - - - - 20 - 0 - - 1 - - - - 1 - - 78 - true - - 57 - - - true - true - 1 - false - 39872d87:13e14015f61:42c1 - false - 0.0 - - 20 - Text Update - false - - true - true - false - - 2 - true - false - $(P)current:total - - - - - - - Text Update - true - ###### - false - 0 - - - - 100 - 0 - - - 1 - - - - 1 - - 76 - false - $(pv_name) -$(pv_value) - 84 - - - - - true - - true - 39872d87:13e14015f61:42c7 - - 20 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 275 - 0 - - false - 1 - - - - - 140 - - 11 - - false - true - false - 39872d87:13e14015f61:42c8 - - 18 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 18 - 6 - - - - 1 - - - - 0 - - - userCalcOut.opi - - true - diff:x - - 0 - calculation - - - $(pv_name) -$(pv_value) - 147 - - - false - true - false - 39872d87:13e14015f61:42c9 - - 18 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 18 - 6 - - - - 1 - - - - 0 - - - userCalcOut.opi - - true - diff:y - - 0 - calculation - - - $(pv_name) -$(pv_value) - 257 - - - true - 1 - 39872d87:13e14015f61:42ca - false - - 16 - Label - - true - true - false - - true - false - - - - - - - Label - true - diff - - - - 50 - 0 - - 1 - - - - 1 - - 1 - true - - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:42cb - false - 0.0 - - 20 - Text Update - false - - true - true - false - - 1 - true - false - $(P)diff:x - - - - - - - Text Update - true - ###### - false - 0 - - - - 84 - 0 - - - 1 - - - - 1 - - 0 - false - $(pv_name) -$(pv_value) - 60 - - - true - true - 1 - false - 39872d87:13e14015f61:42cc - false - 0.0 - - 20 - Text Update - false - - true - true - false - - 1 - true - false - $(P)diff:y - - - - - - - Text Update - true - ###### - false - 0 - - - - 84 - 0 - - - 1 - - - - 1 - - 0 - false - $(pv_name) -$(pv_value) - 173 - - - - - true - - true - 39872d87:13e14015f61:42cd - - 20 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 273 - 0 - - false - 1 - - - - - 114 - - 11 - - true - 1 - 39872d87:13e14015f61:42ce - false - - 16 - Label - - true - true - false - - true - false - - - - - - - Label - true - ref - - - - 50 - 0 - - 1 - - - - 1 - - 2 - true - - 0 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:42cf - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)ref:x - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 60 - - - false - true - 1 - false - false - - 20 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:42d0 - 0.0 - Text Input - - true - true - false - - 1 - false - 0 - $(P)ref:y - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 173 - - - - true - 1 - 39872d87:13e14015f61:429b - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - qxbpm.adl - - - - 200 - 0 - - 1 - - - - 0 - - 3 - true - - 2 - - - true - 1 - 39872d87:13e14015f61:429c - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - last edited: 2007-Jan-30 (prj) - - - - 200 - 0 - - 1 - - - - 0 - - 18 - true - - 2 - - - true - 1 - 39872d87:13e14015f61:429d - false - - 22 - Label - - true - true - false - - true - false - - - - - - - Label - true - Oxford Quad Beam Position Monitor - - - - 500 - 0 - - 1 - - - - 1 - - 35 - true - - 8 - - - false - true - false - 39872d87:13e14015f61:429e - - 14 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 93 - 6 - - - - 1 - - - - 3 - - - qxbpm_config.opi - - true - - 0 - configure - - - $(pv_name) -$(pv_value) - 457 - - - false - true - 39872d87:13e14015f61:429f - - 14 - Choice Button - false - - true - true - false - - $(P)enable - - - - - - - Choice Button - true - false - - Default - - 200 - 0 - - - - - - - Choice 1 - Choice 2 - Choice 3 - - 1 - true - - - - true - - 4 - $(pv_name) -$(pv_value) - 227 - - - true - true - - 100 - 0 - 0 - 100 - 1 - 0 - true - - - - - 0 - 100 - 0 - true - 0 - 0.0 - - true - - 100 - 100 - 0 - 100 - 0 - 4 - 1 - 0 - 0 - 0 - 100 - 1 - true - - true - - true - false - true - - 1 - false - 0 - 4 - $(trace_19_y_pv) - true - true - 0 - 1 - 0 - 0 - 1 - 0 - $(trace_1_y_pv) - $(trace_17_y_pv) - true - - - - 0 - 0.0 - 1 - 4 - - true - 0 - 0 - true - 0 - 1 - - - - 81 - 0 - 319 - - - - true - - - true - - - 220 - 100.0 - $(trace_10_y_pv) - - - - - $(trace_9_y_pv) - 100 - 0 - 0 - true - 1 - - - - - - 100 - - - - 1 - true - 0 - true - $(trace_3_y_pv) - 0 - - - - - 0 - 0 - - 100 - XY Graph - 0 - 0.0 - true - 100 - - 1 - true - 1 - 0 - 0 - 0 - - true - true - - 100 - 100 - 0 - true - 0 - $(trace_15_y_pv) - - - - 0 - 100 - true - 1 - - 1 - 0 - 1 - 0.0 - 0 - 0 - $(trace_0_y_pv) - true - 0.0 - - 1 - 4 - 100.0 - 0 - true - true - 1 - - - 100 - - 1 - - - - $(trace_14_y_pv) - 39872d87:13e14015f61:42a0 - 100 - - - - - - - 4 - 0 - - - - 0 - 0 - false - - true - - 1 - - 0 - true - 0 - 100.0 - 100 - true - 4 - 100 - 0 - $(trace_16_y_pv) - - Default - - 1 - 0 - true - $(trace_12_y_pv) - 4 - 0 - 0 - 1 - 0 - 0 - 0 - - 0 - $(trace_8_y_pv) - 0 - - - 0 - - true - true - - - - - - 0 - true - - true - $(trace_5_y_pv) - true - 100 - 1 - 0 - 0 - false - - 1 - 0 - - - 0 - - 1 - 0.0 - - 100 - - $(trace_13_y_pv) - - true - 0 - 100.0 - 0 - - - - - - - - - 100 - true - 100 - 0 - true - true - true - true - 0 - 0 - true - 0 - 0 - - - 4 - - - - false - 0 - 0 - - - 1 - true - - $(trace_4_y_pv) - 1 - true - true - 100 - 0 - 0 - $(P)diff:x - 100 - 0 - true - 1 - $(P)diff:y - $(trace_18_y_pv) - - true - - 4 - - 4 - - 0 - - - - 100 - - 0 - true - 0 - 100 - 1 - 4 - true - 100 - 1 - 0 - 0 - - - - true - - true - false - - - - Secondary Axis (2) - - true - 0 - XY Graph - true - 220 - 100 - 0 - - - - 1 - 0 - 100 - 100 - - 0 - - - - 0 - 1 - 100 - - - - 2 - $(trace_2_y_pv) - true - 4 - true - false - true - 0 - true - true - - 100 - - 0 - 0 - true - 100 - - - - 0 - 1 - 4 - - 0 - $(trace_0_y_pv) -$(trace_0_y_pv_value) - $(trace_11_y_pv) - true - - - - - 4 - 0 - 100 - $(trace_6_y_pv) - 4 - 0 - 1 - true - 0 - 1 - true - - Default - - 0 - 0 - 1 - 0 - - - - true - 0 - - Default - - 4 - - 0 - true - 0 - - Secondary Axis (3) - false - true - 0 - 100 - - - true - 0 - - 0.0 - - - - 0 - 4 - - true - 1 - - Default - - true - - - 0.0 - - - - - - - - - - - 100 - 4 - true - 100 - true - 1 - true - - true - true - - 0 - - - - 0 - 1 - - - - - - - true - 100 - - - - - - - - 4 - - - - true - 0 - - - - - - - 1 - - 0 - true - - 0 - 1 - - 0 - true - 1 - true - true - - - true - true - false - - - true - - 100 - 1 - 0 - - - - 0 - - - - - true - 100 - - - - true - 4 - true - $(trace_7_y_pv) - - - true - 1 - 39872d87:13e14015f61:42a1 - false - - 16 - Label - - true - true - false - - true - false - - - - - - - Label - true - X - - - - 50 - 0 - - 1 - - - - 1 - - 60 - true - - 96 - - - true - 1 - 39872d87:13e14015f61:42a2 - false - - 16 - Label - - true - true - false - - true - false - - - - - - - Label - true - Y - - - - 50 - 0 - - 1 - - - - 1 - - 60 - true - - 209 - - - true - 1 - 39872d87:13e14015f61:42a3 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - pos - ref (mm) - - - - 220 - 0 - - 1 - - - - 1 - - 60 - true - - 318 - - - true - 1 - 39872d87:13e14015f61:42c2 - false - - 16 - Label - - true - true - false - - true - false - - - - - - - Label - true - pos - - - - 50 - 0 - - 1 - - - - 1 - - 82 - true - - 11 - - - true - 1 - 39872d87:13e14015f61:42c3 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - threshold: - - - - 76 - 0 - - 1 - - - - 0 - - 309 - true - - 318 - - - true - true - 1 - false - 39872d87:13e14015f61:42c4 - false - 0.0 - - 12 - Text Update - false - - true - true - false - - 1 - true - false - $(P)current:low:raw - - - - - - - Text Update - true - ###### - false - 0 - - - - 76 - 0 - - - 1 - - - - 1 - - 308 - false - $(pv_name) -$(pv_value) - 402 - - - true - 1 - 39872d87:13e14015f61:42c5 - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - amplifier range (all photodiodes use same range) - - - - 400 - 0 - - 1 - - - - 0 - - 330 - true - - 13 - - - false - true - 39872d87:13e14015f61:42c6 - - 18 - Choice Button - false - - true - true - false - - $(P)gain - - - - - - - Choice Button - true - false - - Default - - 530 - 0 - - - - - - - Choice 1 - Choice 2 - Choice 3 - - 1 - true - - - - true - - 342 - $(pv_name) -$(pv_value) - 14 - - - true - true - 1 - false - 39872d87:13e14015f61:42d1 - false - 0.0 - - 24 - Text Update - false - - true - true - false - - 1 - true - false - $(P)pos:x - - - - - - - Text Update - true - ###### - false - 0 - - - - 100 - 0 - - - 1 - - - - 1 - - 81 - false - $(pv_name) -$(pv_value) - 71 - - - true - true - 1 - false - 39872d87:13e14015f61:42d2 - false - 0.0 - - 24 - Text Update - false - - true - true - false - - 1 - true - false - $(P)pos:y - - - - - - - Text Update - true - ###### - false - 0 - - - - 100 - 0 - - - 1 - - - - 1 - - 81 - false - $(pv_name) -$(pv_value) - 184 - - \ No newline at end of file diff --git a/opticsApp/op/opi/qxbpm_config.opi b/opticsApp/op/opi/qxbpm_config.opi deleted file mode 100644 index dce8b02..0000000 --- a/opticsApp/op/opi/qxbpm_config.opi +++ /dev/null @@ -1,7139 +0,0 @@ - - false - - true - - 39872d87:13e14015f61:4342 - 3.1.2.20120830 - - true - 438 - qxbpm_config - false - false - - - - - - - Display - true - 776 - - true - 5 - - false - -1 - -1 - - - 65 - 71 - - - true - - true - 39872d87:13e14015f61:4349 - - 45 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 280 - 0 - - false - 1 - - - - - 152 - - 26 - - false - true - 100.0 - - - - 39872d87:13e14015f61:434a - - - - - 45 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 280 - 0 - 0 - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - - true - - true - 39872d87:13e14015f61:434b - - 43 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 268 - 0 - - false - 1 - - - - - 1 - - 6 - - - true - - true - 39872d87:13e14015f61:434c - - 43 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 12 - 0 - - false - 1 - - - - - 0 - - 0 - - false - true - 100.0 - - - - 39872d87:13e14015f61:434d - - - - - 11 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 12 - 0 - 0 - - - - true - - - false - - $(P)current:ok - $(P)current:low - - - - 1 - 0 - true - - - - - 0 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:434e - - - - - 11 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 12 - 0 - 0 - - - - true - - - false - - $(P)current:ok - $(P)current:low - - - - 1 - 0 - true - - - - - 16 - $(pv_name) -$(pv_value) - 0 - false - - - false - true - 100.0 - - - - 39872d87:13e14015f61:434f - - - - - 11 - true - Rectangle - false - 255 - - true - true - false - - false - - - - - - - - Rectangle - true - - - - false - - Default - - 12 - 0 - 0 - - - - true - - - false - - $(P)current:ok - $(P)current:low - - - - 1 - 0 - true - - - - - 32 - $(pv_name) -$(pv_value) - 0 - false - - - - - true - - true - 39872d87:13e14015f61:4350 - - 39 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 250 - 0 - - false - 1 - - - - - 2 - - 18 - - - true - - true - 39872d87:13e14015f61:4351 - - 20 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 250 - 0 - - false - 1 - - - - - 0 - - 0 - - true - 1 - 39872d87:13e14015f61:4352 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - diode currents OK - - - - 250 - 0 - - - - true - - - false - - $(P)current:ok - $(P)current:low - - - 1 - - - - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:4353 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - diode currents OK - - - - 250 - 0 - - - - true - - - false - - $(P)current:ok - $(P)current:low - - - 1 - - - - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:4354 - false - - 20 - Label - - true - true - false - - true - false - - - - - - - Label - true - diode currents too low - - - - 250 - 0 - - - - true - - - false - - $(P)current:ok - $(P)current:low - - - 1 - - - - 1 - - 0 - true - - 0 - - - - - true - - true - 39872d87:13e14015f61:4355 - - 19 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 250 - 0 - - false - 1 - - - - - 20 - - 0 - - - true - - true - 39872d87:13e14015f61:4356 - - 12 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 250 - 0 - - false - 1 - - - - - 0 - - 0 - - true - 1 - 39872d87:13e14015f61:4357 - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - not all diodes above threshold - - - - 250 - 0 - - - - true - - - false - - $(P)current:ok - - - 1 - - - - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:4358 - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - all diodes above threshold - - - - 250 - 0 - - - - true - - - false - - $(P)current:ok - - - 1 - - - - 1 - - 0 - true - - 0 - - - - - true - - true - 39872d87:13e14015f61:4359 - - 10 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 250 - 0 - - false - 1 - - - - - 9 - - 0 - - true - 1 - 39872d87:13e14015f61:435a - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - not all diodes below threshold - - - - 250 - 0 - - - - true - - - false - - $(P)current:low - - - 1 - - - - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:435b - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - all diodes below threshold - - - - 250 - 0 - - - - true - - - false - - $(P)current:low - - - 1 - - - - 1 - - 0 - true - - 0 - - - - - - - - - true - - true - 39872d87:13e14015f61:435c - - 150 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 740 - 0 - - false - 1 - - - - - 280 - - 20 - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:435d - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r1:A1 - - - - false - 0 - - - false - - - - 0 - - 28 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:435e - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r1:B1 - - - - false - 0 - - - false - - - - 0 - - 28 - $(pv_name) -$(pv_value) - 85 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:435f - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r1:C1 - - - - false - 0 - - - false - - - - 0 - - 28 - $(pv_name) -$(pv_value) - 170 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4360 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r1:D1 - - - - false - 0 - - - false - - - - 0 - - 28 - $(pv_name) -$(pv_value) - 255 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4361 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r2:A1 - - - - false - 0 - - - false - - - - 0 - - 49 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4362 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r2:B1 - - - - false - 0 - - - false - - - - 0 - - 49 - $(pv_name) -$(pv_value) - 85 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4363 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r2:C1 - - - - false - 0 - - - false - - - - 0 - - 49 - $(pv_name) -$(pv_value) - 170 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4364 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r2:D1 - - - - false - 0 - - - false - - - - 0 - - 49 - $(pv_name) -$(pv_value) - 255 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4365 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r3:A1 - - - - false - 0 - - - false - - - - 0 - - 70 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4366 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r3:B1 - - - - false - 0 - - - false - - - - 0 - - 70 - $(pv_name) -$(pv_value) - 85 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4367 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r3:C1 - - - - false - 0 - - - false - - - - 0 - - 70 - $(pv_name) -$(pv_value) - 170 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4368 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r3:D1 - - - - false - 0 - - - false - - - - 0 - - 70 - $(pv_name) -$(pv_value) - 255 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4369 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r4:A1 - - - - false - 0 - - - false - - - - 0 - - 91 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:436a - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r4:B1 - - - - false - 0 - - - false - - - - 0 - - 91 - $(pv_name) -$(pv_value) - 85 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:436b - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r4:C1 - - - - false - 0 - - - false - - - - 0 - - 91 - $(pv_name) -$(pv_value) - 170 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:436c - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r4:D1 - - - - false - 0 - - - false - - - - 0 - - 91 - $(pv_name) -$(pv_value) - 255 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:436d - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r5:A1 - - - - false - 0 - - - false - - - - 0 - - 112 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:436e - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r5:B1 - - - - false - 0 - - - false - - - - 0 - - 112 - $(pv_name) -$(pv_value) - 85 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:436f - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r5:C1 - - - - false - 0 - - - false - - - - 0 - - 112 - $(pv_name) -$(pv_value) - 170 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4370 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r5:D1 - - - - false - 0 - - - false - - - - 0 - - 112 - $(pv_name) -$(pv_value) - 255 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4371 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r6:A1 - - - - false - 0 - - - false - - - - 0 - - 133 - $(pv_name) -$(pv_value) - 0 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4372 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r6:B1 - - - - false - 0 - - - false - - - - 0 - - 133 - $(pv_name) -$(pv_value) - 85 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4373 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r6:C1 - - - - false - 0 - - - false - - - - 0 - - 133 - $(pv_name) -$(pv_value) - 170 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4374 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r6:D1 - - - - false - 0 - - - false - - - - 0 - - 133 - $(pv_name) -$(pv_value) - 255 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4375 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r1:A2 - - - - false - 0 - - - false - - - - 0 - - 28 - $(pv_name) -$(pv_value) - 405 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4376 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r1:B2 - - - - false - 0 - - - false - - - - 0 - - 28 - $(pv_name) -$(pv_value) - 490 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4377 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r1:C2 - - - - false - 0 - - - false - - - - 0 - - 28 - $(pv_name) -$(pv_value) - 575 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4378 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r1:D2 - - - - false - 0 - - - false - - - - 0 - - 28 - $(pv_name) -$(pv_value) - 660 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4379 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r2:A2 - - - - false - 0 - - - false - - - - 0 - - 49 - $(pv_name) -$(pv_value) - 405 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:437a - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r2:B2 - - - - false - 0 - - - false - - - - 0 - - 49 - $(pv_name) -$(pv_value) - 490 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:437b - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r2:C2 - - - - false - 0 - - - false - - - - 0 - - 49 - $(pv_name) -$(pv_value) - 575 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:437c - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r2:D2 - - - - false - 0 - - - false - - - - 0 - - 49 - $(pv_name) -$(pv_value) - 660 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:437d - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r3:A2 - - - - false - 0 - - - false - - - - 0 - - 70 - $(pv_name) -$(pv_value) - 405 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:437e - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r3:B2 - - - - false - 0 - - - false - - - - 0 - - 70 - $(pv_name) -$(pv_value) - 490 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:437f - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r3:C2 - - - - false - 0 - - - false - - - - 0 - - 70 - $(pv_name) -$(pv_value) - 575 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4380 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r3:D2 - - - - false - 0 - - - false - - - - 0 - - 70 - $(pv_name) -$(pv_value) - 660 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4381 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r4:A2 - - - - false - 0 - - - false - - - - 0 - - 91 - $(pv_name) -$(pv_value) - 405 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4382 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r4:B2 - - - - false - 0 - - - false - - - - 0 - - 91 - $(pv_name) -$(pv_value) - 490 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4383 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r4:C2 - - - - false - 0 - - - false - - - - 0 - - 91 - $(pv_name) -$(pv_value) - 575 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4384 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r4:D2 - - - - false - 0 - - - false - - - - 0 - - 91 - $(pv_name) -$(pv_value) - 660 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4385 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r5:A2 - - - - false - 0 - - - false - - - - 0 - - 112 - $(pv_name) -$(pv_value) - 405 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4386 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r5:B2 - - - - false - 0 - - - false - - - - 0 - - 112 - $(pv_name) -$(pv_value) - 490 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4387 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r5:C2 - - - - false - 0 - - - false - - - - 0 - - 112 - $(pv_name) -$(pv_value) - 575 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4388 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r5:D2 - - - - false - 0 - - - false - - - - 0 - - 112 - $(pv_name) -$(pv_value) - 660 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:4389 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r6:A2 - - - - false - 0 - - - false - - - - 0 - - 133 - $(pv_name) -$(pv_value) - 405 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:438a - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r6:B2 - - - - false - 0 - - - false - - - - 0 - - 133 - $(pv_name) -$(pv_value) - 490 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:438b - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r6:C2 - - - - false - 0 - - - false - - - - 0 - - 133 - $(pv_name) -$(pv_value) - 575 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:438c - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)r6:D2 - - - - false - 0 - - - false - - - - 0 - - 133 - $(pv_name) -$(pv_value) - 660 - - - true - true - 1 - false - 39872d87:13e14015f61:438d - false - 0.0 - - 12 - Text Update - false - - true - true - false - - 6 - true - false - $(P)gain.ZRST - - - - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 - - - - 1 - - 28 - false - $(pv_name) -$(pv_value) - 340 - - - true - true - 1 - false - 39872d87:13e14015f61:438e - false - 0.0 - - 12 - Text Update - false - - true - true - false - - 6 - true - false - $(P)gain.ONST - - - - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 - - - - 1 - - 49 - false - $(pv_name) -$(pv_value) - 340 - - - true - true - 1 - false - 39872d87:13e14015f61:438f - false - 0.0 - - 12 - Text Update - false - - true - true - false - - 6 - true - false - $(P)gain.TWST - - - - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 - - - - 1 - - 70 - false - $(pv_name) -$(pv_value) - 340 - - - true - true - 1 - false - 39872d87:13e14015f61:4390 - false - 0.0 - - 12 - Text Update - false - - true - true - false - - 6 - true - false - $(P)gain.THST - - - - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 - - - - 1 - - 91 - false - $(pv_name) -$(pv_value) - 340 - - - true - true - 1 - false - 39872d87:13e14015f61:4391 - false - 0.0 - - 12 - Text Update - false - - true - true - false - - 6 - true - false - $(P)gain.FRST - - - - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 - - - - 1 - - 112 - false - $(pv_name) -$(pv_value) - 340 - - - true - true - 1 - false - 39872d87:13e14015f61:4392 - false - 0.0 - - 12 - Text Update - false - - true - true - false - - 6 - true - false - $(P)gain.FVST - - - - - - - Text Update - true - ###### - false - 0 - - - - 60 - 0 - - - 1 - - - - 1 - - 133 - false - $(pv_name) -$(pv_value) - 340 - - - true - 1 - 39872d87:13e14015f61:4393 - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - diode A - - - - 80 - 0 - - 1 - - - - 1 - - 18 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:4394 - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - diode B - - - - 80 - 0 - - 1 - - - - 1 - - 18 - true - - 85 - - - true - 1 - 39872d87:13e14015f61:4395 - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - diode C - - - - 80 - 0 - - 1 - - - - 1 - - 18 - true - - 170 - - - true - 1 - 39872d87:13e14015f61:4396 - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - diode D - - - - 80 - 0 - - 1 - - - - 1 - - 18 - true - - 255 - - - true - 1 - 39872d87:13e14015f61:4397 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - cG : photodiode gain multiplier adjustment (float) - - - - 300 - 0 - - 1 - - - - 1 - - 0 - true - - 17 - - - true - 1 - 39872d87:13e14015f61:4398 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - cB : photodiode gain raw offset (integer) - - - - 300 - 0 - - 1 - - - - 1 - - 0 - true - - 422 - - - true - 1 - 39872d87:13e14015f61:4399 - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - diode A - - - - 80 - 0 - - 1 - - - - 1 - - 18 - true - - 405 - - - true - 1 - 39872d87:13e14015f61:439a - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - diode B - - - - 80 - 0 - - 1 - - - - 1 - - 18 - true - - 490 - - - true - 1 - 39872d87:13e14015f61:439b - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - diode C - - - - 80 - 0 - - 1 - - - - 1 - - 18 - true - - 575 - - - true - 1 - 39872d87:13e14015f61:439c - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - diode D - - - - 80 - 0 - - 1 - - - - 1 - - 18 - true - - 660 - - - true - 1 - 39872d87:13e14015f61:439d - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - range - - - - 60 - 0 - - 1 - - - - 1 - - 18 - true - - 340 - - - - - true - - true - 39872d87:13e14015f61:439f - - 29 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 100 - 0 - - false - 1 - - - - - 221 - - 18 - - true - 1 - 39872d87:13e14015f61:43a0 - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - VxWorks debug level - - - - 100 - 0 - - 1 - - - - 0 - - 0 - true - - 0 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input - true - - - - - 100 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:43a1 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)debug - - - - false - 0 - - - false - - - - 0 - - 11 - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:43af - - 93 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 300 - 0 - - false - 1 - - - - - 49 - - 14 - - - true - - true - 39872d87:13e14015f61:43b2 - - 51 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 300 - 0 - - false - 1 - - - - - 42 - - 0 - - true - 1 - 39872d87:13e14015f61:43b3 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - # measurements for AVERAGE or WINDOW - - - - 300 - 0 - - 1 - - - - 0 - - 0 - true - - 0 - - - 20.0 - true - true - - - - - - - true - - - - - 40 - 50 - false - 10.0 - - - - true - Scaled Slider - true - - Default - - 300 - true - 0 - true - - true - true - 100.0 - 1 - false - false - 0.0 - 39872d87:13e14015f61:43b4 - true - - true - - - - Scaled Slider - - true - true - false - - - - - $(P)buflen - - - - 1.0 - false - 80.0 - - Default - - 90.0 - - - - - - - - - true - true - - - - 10.0 - 11 - - 0 - $(pv_name) -$(pv_value) - - - - false - true - 39872d87:13e14015f61:43b0 - - 16 - Choice Button - false - - true - true - false - - $(P)enable - - - - - - - Choice Button - true - false - - Default - - 300 - 0 - - - - - - - Choice 1 - Choice 2 - Choice 3 - - 1 - true - - - - true - - 0 - $(pv_name) -$(pv_value) - 0 - - - false - true - 39872d87:13e14015f61:43b1 - - 16 - Choice Button - false - - true - true - false - - $(P)mode - - - - - - - Choice Button - true - false - - Default - - 300 - 0 - - - - - - - Choice 1 - Choice 2 - Choice 3 - - 1 - true - - - - true - - 21 - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:43b5 - - 63 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 130 - 0 - - false - 1 - - - - - 49 - - 334 - - - true - - true - 39872d87:13e14015f61:43b6 - - 29 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 130 - 0 - - false - 1 - - - - - 0 - - 0 - - true - 1 - 39872d87:13e14015f61:43b7 - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - RS232 poll period, s - - - - 130 - 0 - - 1 - - - - 0 - - 0 - true - - 0 - - - false - true - 1 - false - false - - 18 - false - true - - - - Text Input - true - - - - - 130 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:43b8 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)period - - - - false - 0 - - - false - - - - 0 - - 11 - $(pv_name) -$(pv_value) - 0 - - - - - true - - true - 39872d87:13e14015f61:43b9 - - 29 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 130 - 0 - - false - 1 - - - - - 34 - - 0 - - true - 1 - 39872d87:13e14015f61:43ba - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - device address - - - - 130 - 0 - - 1 - - - - 0 - - 0 - true - - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:43bb - false - 0.0 - - 18 - Text Update - false - - true - true - false - - 6 - true - false - $(P)address - - - - - - - Text Update - true - ###### - false - 0 - - - - 130 - 0 - - - 1 - - - - 0 - - 11 - false - $(pv_name) -$(pv_value) - 0 - - - - - - true - - true - 39872d87:13e14015f61:43bc - - 63 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 295 - 0 - - false - 1 - - - - - 49 - - 476 - - true - 1 - 39872d87:13e14015f61:43bd - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - RS232 port - - - - 90 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:43be - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - RS232 out - - - - 90 - 0 - - 1 - - - - 1 - - 17 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:43bf - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - RS232 in - - - - 90 - 0 - - 1 - - - - 1 - - 34 - true - - 0 - - - true - 1 - 39872d87:13e14015f61:43c0 - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - RS232 status - - - - 90 - 0 - - 1 - - - - 1 - - 51 - true - - 0 - - - true - true - 1 - false - 39872d87:13e14015f61:43c1 - false - 0.0 - - 12 - Text Update - false - - true - true - false - - 6 - true - false - $(S).SEVR - - - - - - - Text Update - true - ###### - false - 0 - - - - 200 - 0 - - - 1 - - - - 0 - - 51 - false - $(pv_name) -$(pv_value) - 95 - - - true - true - 1 - false - 39872d87:13e14015f61:43c2 - false - 0.0 - - 12 - Text Update - false - - true - true - false - - 6 - true - false - $(S).AINP - - - - - - - Text Update - true - ###### - false - 0 - - - - 200 - 0 - - - 1 - - - - 0 - - 34 - false - $(pv_name) -$(pv_value) - 95 - - - true - true - 1 - false - 39872d87:13e14015f61:43c3 - false - 0.0 - - 12 - Text Update - false - - true - true - false - - 6 - true - false - $(S).AOUT - - - - - - - Text Update - true - ###### - false - 0 - - - - 200 - 0 - - - 1 - - - - 0 - - 17 - false - $(pv_name) -$(pv_value) - 95 - - - true - true - 1 - false - 39872d87:13e14015f61:43c4 - false - 0.0 - - 12 - Text Update - false - - true - true - false - - 6 - true - false - $(P)port - - - - - - - Text Update - true - ###### - false - 0 - - - - 200 - 0 - - - 1 - - - - 0 - - 0 - false - $(pv_name) -$(pv_value) - 95 - - - - - true - - true - 39872d87:13e14015f61:43c5 - - 56 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 440 - 0 - - false - 1 - - - - - 219 - - 156 - - - true - - true - 39872d87:13e14015f61:43c7 - - 37 - Grouping Container - - true - true - false - - true - false - - - - - - - Grouping Container - true - - Default - - 440 - 0 - - false - 1 - - - - - 19 - - 0 - - true - 1 - 39872d87:13e14015f61:43c8 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - position_X = - - - - 100 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:43c9 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)GX - - - - false - 0 - - - false - - - - 0 - - 0 - $(pv_name) -$(pv_value) - 105 - - - true - 1 - 39872d87:13e14015f61:43ca - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - * ( I_B - I_D ) / ( I_B + I_D ) - - - - 250 - 0 - - 1 - - - - 0 - - 0 - true - - 190 - - - true - 1 - 39872d87:13e14015f61:43cb - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - position_Y = - - - - 100 - 0 - - 1 - - - - 1 - - 20 - true - - 0 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:43cc - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)GY - - - - false - 0 - - - false - - - - 0 - - 20 - $(pv_name) -$(pv_value) - 105 - - - true - 1 - 39872d87:13e14015f61:43cd - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - * ( I_A - I_C ) / ( I_A + I_C ) - - - - 250 - 0 - - 1 - - - - 0 - - 20 - true - - 190 - - - - true - 1 - 39872d87:13e14015f61:43c6 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - photodiode current, I_n = cG * (raw_signal - cB) - - - - 440 - 0 - - 1 - - - - 1 - - 0 - true - - 0 - - - - true - 1 - 39872d87:13e14015f61:4343 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - qxbpm_config.adl - - - - 200 - 0 - - 1 - - - - 0 - - 3 - true - - 2 - - - true - 1 - 39872d87:13e14015f61:4344 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - last edited: 2007-Mar-01 (prj) - - - - 200 - 0 - - 1 - - - - 0 - - 18 - true - - 2 - - - true - 1 - 39872d87:13e14015f61:4345 - false - - 22 - Label - - true - true - false - - true - false - - - - - - - Label - true - Oxford Quad XBPM Configuration - - - - 400 - 0 - - 1 - - - - 1 - - 6 - true - - 231 - - - false - true - false - 39872d87:13e14015f61:4346 - - 14 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 93 - 6 - - - - 1 - - - - 8 - - - qxbpm.opi - - true - - 0 - main screen - - - $(pv_name) -$(pv_value) - 674 - - - false - true - 39872d87:13e14015f61:4347 - - 14 - Choice Button - false - - true - true - false - - $(P)gain - - - - - - - Choice Button - true - false - - Default - - 440 - 0 - - - - - - - Choice 1 - Choice 2 - Choice 3 - - 1 - true - - - - true - - 120 - $(pv_name) -$(pv_value) - 332 - - - true - 1 - 39872d87:13e14015f61:4348 - false - - 10 - Label - - true - true - false - - true - false - - - - - - - Label - true - the BPM controller needs ~3 sec to fill 100 sample buffer (~30 ms/sample) - - - - 400 - 0 - - 1 - - - - 1 - - 32 - true - - 228 - - - false - true - 39872d87:13e14015f61:439e - - 17 - Action Button - false - - true - true - false - - $(P)init - - - - - - - Action Button - true - initialize - false - - Default - - 104 - 0 - 0 - - - - true - 1 - - - - 254 - - - $(P)init - 1 - 10 - - - - $(pv_name) -$(pv_value) - 15 - - - false - true - 1 - false - false - - 17 - false - true - - - - Text Input - true - - - - - 80 - 3 - - 1 - Infinity - -Infinity - false - 39872d87:13e14015f61:43a2 - 0.0 - Text Input - - true - true - false - - 6 - false - 0 - $(P)current:low:raw - - - - false - 0 - - - false - - - - 0 - - 190 - $(pv_name) -$(pv_value) - 328 - - - true - 1 - 39872d87:13e14015f61:43a3 - false - - 14 - Label - - true - true - false - - true - false - - - - - - - Label - true - raw diode signal lower threshold - - - - 300 - 0 - - 1 - - - - 0 - - 191 - true - - 413 - - - true - 1 - 39872d87:13e14015f61:43a4 - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - raw diode values - - - - 104 - 0 - - 1 - - - - 1 - - 151 - true - - 328 - - - true - true - 1 - false - 39872d87:13e14015f61:43a5 - false - 0.0 - - 17 - Text Update - false - - true - true - false - - 1 - true - false - $(P)current:a:raw - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 149 - false - $(pv_name) -$(pv_value) - 433 - - - true - true - 1 - false - 39872d87:13e14015f61:43a6 - false - 0.0 - - 17 - Text Update - false - - true - true - false - - 1 - true - false - $(P)current:b:raw - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 149 - false - $(pv_name) -$(pv_value) - 518 - - - true - true - 1 - false - 39872d87:13e14015f61:43a7 - false - 0.0 - - 17 - Text Update - false - - true - true - false - - 1 - true - false - $(P)current:c:raw - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 149 - false - $(pv_name) -$(pv_value) - 603 - - - true - true - 1 - false - 39872d87:13e14015f61:43a8 - false - 0.0 - - 17 - Text Update - false - - true - true - false - - 1 - true - false - $(P)current:d:raw - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 149 - false - $(pv_name) -$(pv_value) - 688 - - - true - 1 - 39872d87:13e14015f61:43a9 - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - diode current, A - - - - 104 - 0 - - 1 - - - - 1 - - 170 - true - - 327 - - - true - true - 1 - false - 39872d87:13e14015f61:43aa - false - 0.0 - - 17 - Text Update - false - - true - true - false - - 2 - true - false - $(P)current:a - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 168 - false - $(pv_name) -$(pv_value) - 432 - - - true - true - 1 - false - 39872d87:13e14015f61:43ab - false - 0.0 - - 17 - Text Update - false - - true - true - false - - 2 - true - false - $(P)current:b - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 168 - false - $(pv_name) -$(pv_value) - 517 - - - true - true - 1 - false - 39872d87:13e14015f61:43ac - false - 0.0 - - 17 - Text Update - false - - true - true - false - - 2 - true - false - $(P)current:c - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 168 - false - $(pv_name) -$(pv_value) - 602 - - - true - true - 1 - false - 39872d87:13e14015f61:43ad - false - 0.0 - - 17 - Text Update - false - - true - true - false - - 2 - true - false - $(P)current:d - - - - - - - Text Update - true - ###### - false - 0 - - - - 80 - 0 - - - 1 - - - - 1 - - 168 - false - $(pv_name) -$(pv_value) - 687 - - - false - true - false - 39872d87:13e14015f61:43ae - - 14 - Menu Button - false - - true - true - false - - false - - - - - - - - Menu Button - true - false - - Default - - 93 - 6 - - - - 1 - - - - 259 - - - qxbpm_calib.opi - - true - - 0 - main screen - - - $(pv_name) -$(pv_value) - 664 - - - true - 1 - 39872d87:13e14015f61:43ce - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - 1/A/top - - - - 80 - 0 - - 1 - - - - 1 - - 136 - true - - 433 - - - true - 1 - 39872d87:13e14015f61:43cf - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - 2/B/left - - - - 80 - 0 - - 1 - - - - 1 - - 136 - true - - 518 - - - true - 1 - 39872d87:13e14015f61:43d0 - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - 3/C/bottom - - - - 80 - 0 - - 1 - - - - 1 - - 136 - true - - 603 - - - true - 1 - 39872d87:13e14015f61:43d1 - false - - 12 - Label - - true - true - false - - true - false - - - - - - - Label - true - 4/D/right - - - - 80 - 0 - - 1 - - - - 1 - - 136 - true - - 688 - - \ No newline at end of file diff --git a/opticsApp/op/ui/.gitignore b/opticsApp/op/ui/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/opticsApp/op/ui/ASRPmirrorTable_small.ui b/opticsApp/op/ui/ASRPmirrorTable_small.ui deleted file mode 100644 index 5b69a63..0000000 --- a/opticsApp/op/ui/ASRPmirrorTable_small.ui +++ /dev/null @@ -1,311 +0,0 @@ - - -MainWindow - - - - 640 - 511 - 180 - 95 - - - - - -QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - - - - - - - caGraphics::Rectangle - - - - 0 - 0 - 180 - 20 - - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - - - - 140 - 75 - 40 - 20 - - - - - 255 - 255 - 255 - - - - - 51 - 153 - 0 - - - - -More - - - Menu - - - small - - - ASRPmirrorTable.adl - - - P=xxx:,TBL=$(TBL),VERT=$(VERT),PITCH=$(PITCH) - - - true - - - - - QFrame::NoFrame - - - - 0 - 0 - 180 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - ASRP Mirror Table - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 0 - 20 - 181 - 3 - - - - 3 - - - - 10 - 0 - 184 - - - - Filled - - - - 10 - 0 - 184 - - - - Solid - - - 1,1;179,1; - - - - - - 27 - 28 - 125 - 46 - - - - - - 0 - 24 - 100 - 20 - - - - caLineEdit::Height - - - $(P)$(TBL):tran.F - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 0 - 0 - 100 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - PITCH - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 103 - 26 - 20 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - (mR) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - caRectangle_0 - caLabel_0 - caPolyLine_0 - caLabel_1 - caLabel_2 - caFrame_0 - caRelatedDisplay_0 - caTextEntry_0 - - - \ No newline at end of file diff --git a/opticsApp/op/ui/CoarseFineMotorShow.ui b/opticsApp/op/ui/CoarseFineMotorShow.ui deleted file mode 100644 index 6ecd666..0000000 --- a/opticsApp/op/ui/CoarseFineMotorShow.ui +++ /dev/null @@ -1,546 +0,0 @@ - - -MainWindow - - - - 375 - 268 - 470 - 100 - - - - - -QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - - - - - - - - 5 - 45 - 95 - 20 - - - - $(P)mode - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caMenu::Static - - - - - QFrame::NoFrame - - - - 5 - 25 - 100 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Mode - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - caGraphics::Rectangle - - - - 0 - 0 - 130 - 23 - - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - - - QFrame::NoFrame - - - - 0 - 0 - 130 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Coarse/Fine - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 102 - 35 - 25 - 30 - - - - - 255 - 255 - 255 - - - - - 40 - 147 - 21 - - - - -? - - - Menu - - - help - - - CoarseFineMotorHelp.adl - - - P=$(P) - - - false - - - - - - 163 - 24 - 267 - 55 - - - - - - 15 - 28 - 250 - 25 - - - - $(PM)$(CM).RBV - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caThermo::Channel - - - caThermo::Channel - - - 0.0 - - - 1.0 - - - Right - - - NoScale - - - NoScale - - - 21 - - - QwtThermoMarker::Marker - - - caThermo::Static - - - - - - 65 - 0 - 150 - 25 - - - - $(PM)$(FM).RBV - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caThermo::Channel - - - caThermo::Channel - - - 0.0 - - - 1.0 - - - Right - - - NoScale - - - NoScale - - - 21 - - - QwtThermoMarker::Marker - - - caThermo::Static - - - - - QFrame::NoFrame - - - - 50 - 3 - 10 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - F - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 33 - 10 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - C - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - - 430 - 85 - 40 - 15 - - - - - 105 - 105 - 105 - - - - - 218 - 218 - 218 - - - - -DEBUG - - - Menu - - - limitProc;moveCF;closeGate calc;fineModeCalc;done calc;RBV calc - - - yyTransform_full.adl;yyTransform_full.adl;yyCalcoutRecord.adl;yyCalcoutRecord.adl;yyCalcoutRecord.adl;yyCalcoutRecord.adl - - - P=$(P),T=limitProc;P=$(P),T=moveCF;P=$(P),C=closeGate;P=$(P),C=fineModeCalc;P=$(P),C=doneCalc;P=$(P),C=RBV - - - false;false;false;false;false;false - - - - - - 5 - 75 - 127 - 22 - - - - - - 0 - 0 - 55 - 20 - - - - - 255 - 255 - 255 - - - - - 40 - 147 - 21 - - - - -Motors - - - Menu - - - Combined (soft) motor;Actual motors - - - motorx.adl;motor2x.adl - - - P=$(P),M=MOT;P=$(PM),M1=$(CM),M2=$(FM) - - - false;false - - - - - - 85 - 0 - 40 - 20 - - - - - 255 - 255 - 255 - - - - - 51 - 153 - 0 - - - - -Less - - - Menu - - - Small display - - - CoarseFineMotor.adl - - - P=$(P),M=MOT,PM=$(PM),CM=$(CM),FM=$(FM) - - - true - - - - caLabel_0 - caRectangle_0 - caLabel_1 - caLabel_2 - caLabel_3 - caFrame_0 - caFrame_1 - caMenu_0 - caRelatedDisplay_0 - caThermoM_0 - caThermoM_1 - caRelatedDisplay_1 - caRelatedDisplay_2 - caRelatedDisplay_3 - - - \ No newline at end of file diff --git a/opticsApp/op/ui/Io.ui b/opticsApp/op/ui/Io.ui deleted file mode 100644 index 5c5decd..0000000 --- a/opticsApp/op/ui/Io.ui +++ /dev/null @@ -1,3472 +0,0 @@ - - -MainWindow - - - - 366 - 194 - 545 - 460 - - - - - -QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - - - - - - - QFrame::NoFrame - - - - 255 - 2 - 60 - 25 - - - - - 130 - 4 - 0 - - - - - 130 - 4 - 0 - - - - Io - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 461 - 2 - 80 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Io.adl - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - - - 10 - 291 - 248 - 27 - - - - - - 0 - 5 - 131 - 15 - - - - caLineEdit::Height - - - $(P)HePath.DESC - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 132 - 0 - 60 - 25 - - - - caLineEdit::Height - - - $(P)HePath - - - - 0 - 0 - 0 - - - - - 200 - 200 - 200 - - - - caLineEdit::Static - - - decimal - - - - - - 196 - 5 - 50 - 15 - - - - caLineEdit::Height - - - $(P)HePath.EGU - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - - 10 - 321 - 248 - 27 - - - - - - 0 - 5 - 131 - 15 - - - - caLineEdit::Height - - - $(P)airPath.DESC - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 132 - 0 - 60 - 25 - - - - caLineEdit::Height - - - $(P)airPath - - - - 0 - 0 - 0 - - - - - 200 - 200 - 200 - - - - caLineEdit::Static - - - decimal - - - - - - 196 - 5 - 50 - 15 - - - - caLineEdit::Height - - - $(P)airPath.EGU - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - - 272 - 291 - 247 - 27 - - - - - - 0 - 5 - 131 - 15 - - - - caLineEdit::Height - - - $(P)Be.DESC - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 131 - 0 - 60 - 25 - - - - caLineEdit::Height - - - $(P)Be - - - - 0 - 0 - 0 - - - - - 200 - 200 - 200 - - - - caLineEdit::Static - - - decimal - - - - - - 195 - 5 - 50 - 15 - - - - caLineEdit::Height - - - $(P)Be.EGU - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - - 265 - 158 - 248 - 27 - - - - - - 0 - 5 - 131 - 15 - - - - caLineEdit::Height - - - $(P)v2f.DESC - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 132 - 0 - 60 - 25 - - - - caLineEdit::Height - - - $(P)v2f - - - - 0 - 0 - 0 - - - - - 200 - 200 - 200 - - - - caLineEdit::Static - - - exponential - - - - - - 196 - 5 - 50 - 15 - - - - caLineEdit::Height - - - $(P)v2f.EGU - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - - 1 - 30 - 301 - 25 - - - - - - 0 - 2 - 113 - 18 - - - - caLineEdit::Height - - - $(P)flux.DESC - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 114 - 0 - 100 - 23 - - - - caLineEdit::Height - - - $(P)flux - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - exponential - - - caLineEdit::Static - - - - - - 219 - 4 - 80 - 15 - - - - caLineEdit::Height - - - $(P)flux.EGU - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - - 2 - 2 - 60 - 23 - - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - small - - - Menu - - - small - - - Io_small.adl - - - P=$(P) - - - true - - - - - - 1 - 58 - 301 - 25 - - - - - - 0 - 2 - 113 - 18 - - - - caLineEdit::Height - - - $(P)detector.DESC - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 114 - 0 - 100 - 23 - - - - caLineEdit::Height - - - $(P)detector - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - exponential - - - caLineEdit::Static - - - - - - 219 - 4 - 80 - 15 - - - - caLineEdit::Height - - - $(P)detector.EGU - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - - 1 - 110 - 301 - 20 - - - - - - 114 - 0 - 100 - 18 - - - - caLineEdit::Height - - - $(P)ionAbs - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - compact - - - caLineEdit::Static - - - - - - 0 - 1 - 113 - 16 - - - - caLineEdit::Height - - - $(P)ionAbs.DESC - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 219 - 2 - 80 - 15 - - - - caLineEdit::Height - - - $(P)ionAbs.EGU - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - - 1 - 86 - 301 - 20 - - - - - - 0 - 1 - 113 - 16 - - - - caLineEdit::Height - - - $(P)ionPhotons.DESC - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 114 - 0 - 100 - 18 - - - - caLineEdit::Height - - - $(P)ionPhotons - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - exponential - - - caLineEdit::Static - - - - - - 219 - 2 - 80 - 15 - - - - caLineEdit::Height - - - $(P)ionPhotons.EGU - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - - 292 - 37 - 262 - 70 - - - - - - 105 - 25 - 80 - 18 - - - - caLineEdit::Height - - - $(S).S1 - - - - 0 - 0 - 0 - - - - - 200 - 200 - 200 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - exponential - - - caLineEdit::Static - - - - - - 105 - 0 - 80 - 18 - - - - caLineEdit::Height - - - $(S).FREQ - - - - 0 - 0 - 0 - - - - - 200 - 200 - 200 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - exponential - - - caLineEdit::Static - - - - - QFrame::NoFrame - - - - 190 - 2 - 70 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Hz - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 190 - 27 - 70 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - scaler cnts - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 190 - 52 - 70 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - scaler cnts - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 2 - 95 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - counter clock - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 27 - 95 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - clock ticks - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 52 - 95 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Io counts - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - - - 105 - 50 - 80 - 18 - - - - caLineEdit::Height - - - $(S).S5 - - - - 0 - 0 - 0 - - - - - 200 - 200 - 200 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - - 272 - 321 - 273 - 42 - - - - - QFrame::NoFrame - - - - 105 - 28 - 140 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - 2'' proportional cntr - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - - - 132 - 1 - 60 - 25 - - - - caLineEdit::Height - - - $(P)efficiency - - - - 0 - 0 - 0 - - - - - 200 - 200 - 200 - - - - caLineEdit::Static - - - decimal - - - - - - 196 - 0 - 75 - 23 - - - - $(P)ArPcntr - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - caMenu::Static - - - - - - 0 - 6 - 131 - 15 - - - - caLineEdit::Height - - - $(P)efficiency.DESC - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - - 10 - 367 - 525 - 4 - - - - 4 - - - - 0 - 0 - 0 - - - - Filled - - - - 0 - 0 - 0 - - - - Solid - - - 2,2;523,2; - - - - - - 10 - 375 - 510 - 85 - - - - - - 262 - 29 - 248 - 27 - - - - - - 0 - 5 - 131 - 15 - - - - caLineEdit::Height - - - $(P)kapton2.DESC - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 132 - 0 - 60 - 25 - - - - caLineEdit::Height - - - $(P)kapton2 - - - - 0 - 0 - 0 - - - - - 200 - 200 - 200 - - - - caLineEdit::Static - - - decimal - - - - - - 196 - 5 - 50 - 15 - - - - caLineEdit::Height - - - $(P)kapton2.EGU - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - - 262 - 0 - 248 - 27 - - - - - - 0 - 5 - 131 - 15 - - - - caLineEdit::Height - - - $(P)kapton1.DESC - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 132 - 0 - 60 - 25 - - - - caLineEdit::Height - - - $(P)kapton1 - - - - 0 - 0 - 0 - - - - - 200 - 200 - 200 - - - - caLineEdit::Static - - - decimal - - - - - - 196 - 5 - 50 - 15 - - - - caLineEdit::Height - - - $(P)kapton1.EGU - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - - 0 - 0 - 248 - 27 - - - - - - 0 - 5 - 131 - 15 - - - - caLineEdit::Height - - - $(P)activeLen.DESC - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 132 - 0 - 60 - 25 - - - - caLineEdit::Height - - - $(P)activeLen - - - - 0 - 0 - 0 - - - - - 200 - 200 - 200 - - - - caLineEdit::Static - - - decimal - - - - - - 196 - 5 - 50 - 15 - - - - caLineEdit::Height - - - $(P)activeLen.EGU - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - - 0 - 29 - 248 - 27 - - - - - - 0 - 5 - 131 - 15 - - - - caLineEdit::Height - - - $(P)deadFront.DESC - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 132 - 0 - 60 - 25 - - - - caLineEdit::Height - - - $(P)deadFront - - - - 0 - 0 - 0 - - - - - 200 - 200 - 200 - - - - caLineEdit::Static - - - decimal - - - - - - 196 - 5 - 50 - 15 - - - - caLineEdit::Height - - - $(P)deadFront.EGU - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - - 0 - 58 - 248 - 27 - - - - - - 0 - 5 - 131 - 15 - - - - caLineEdit::Height - - - $(P)deadRear.DESC - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 132 - 0 - 60 - 25 - - - - caLineEdit::Height - - - $(P)deadRear - - - - 0 - 0 - 0 - - - - - 200 - 200 - 200 - - - - caLineEdit::Static - - - decimal - - - - - - 196 - 5 - 50 - 15 - - - - caLineEdit::Height - - - $(P)deadRear.EGU - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - - - 104 - 210 - 402 - 77 - - - - - QFrame::NoFrame - - - - 72 - 8 - 250 - 15 - - - - - 39 - 84 - 141 - - - - - 39 - 84 - 141 - - - - ion chamber fill gas (atm) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - caGraphics::Rectangle - - - - 0 - 0 - 400 - 75 - - - - 5 - - - - 39 - 84 - 141 - - - - - 39 - 84 - 141 - - - - - 39 - 84 - 141 - - - - Solid - - - - - - 238 - 27 - 62 - 42 - - - - - - 0 - 15 - 60 - 25 - - - - caLineEdit::Height - - - $(P)xAr - - - - 0 - 0 - 0 - - - - - 200 - 200 - 200 - - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 0 - 0 - 60 - 15 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Argon - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - - 308 - 27 - 62 - 42 - - - - - - 0 - 15 - 60 - 25 - - - - caLineEdit::Height - - - $(P)xAr - - - - 0 - 0 - 0 - - - - - 200 - 200 - 200 - - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 0 - 0 - 60 - 15 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - CO2 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - - 168 - 27 - 62 - 42 - - - - - - 0 - 15 - 60 - 25 - - - - caLineEdit::Height - - - $(P)xHe - - - - 0 - 0 - 0 - - - - - 200 - 200 - 200 - - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 0 - 0 - 60 - 15 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - He - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - - 28 - 27 - 62 - 42 - - - - - QFrame::NoFrame - - - - 0 - 0 - 60 - 15 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Air - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 0 - 15 - 60 - 25 - - - - caLineEdit::Height - - - $(P)xAir - - - - 0 - 0 - 0 - - - - - 200 - 200 - 200 - - - - caLineEdit::Static - - - decimal - - - - - - - 98 - 27 - 62 - 42 - - - - - QFrame::NoFrame - - - - 0 - 0 - 60 - 15 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Nitrogen - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 0 - 15 - 60 - 25 - - - - caLineEdit::Height - - - $(P)xN2 - - - - 0 - 0 - 0 - - - - - 200 - 200 - 200 - - - - caLineEdit::Static - - - decimal - - - - - - - QFrame::NoFrame - - - - 306 - 444 - 236 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - CHESS chamber (17.5, 60, 17.5 mm) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - - - 3 - 132 - 280 - 20 - - - - - - 168 - 3 - 110 - 15 - - - - caLineEdit::Height - - - $(P)scaler.DESC - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 125 - 0 - 35 - 18 - - - - $(P)scaler - - - - 0 - 0 - 0 - - - - - 187 - 187 - 187 - - - - caMenu::Static - - - - - QFrame::NoFrame - - - - 0 - 3 - 120 - 15 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - scaler channel - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - - - - 24 - 160 - 242 - 46 - - - - - - 4 - 26 - 238 - 20 - - - - - QFrame::NoFrame - - - - 0 - 2 - 95 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - using - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - - - 101 - 0 - 80 - 18 - - - - caLineEdit::Height - - - $(P)E_using - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - decimal - - - - - - 186 - 2 - 50 - 14 - - - - caLineEdit::Height - - - $(P)E_using.EGU - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - - 0 - 0 - 242 - 20 - - - - - QFrame::NoFrame - - - - 0 - 4 - 95 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - monochromator - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - - - 105 - 0 - 80 - 18 - - - - caLineEdit::Height - - - $(MONO) - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 190 - 4 - 50 - 14 - - - - caLineEdit::Height - - - $(MONO).EGU - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - - - 396 - 133 - 80 - 18 - - - - caLineEdit::Height - - - $(P)VperA - - - - 0 - 0 - 0 - - - - - 200 - 200 - 200 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - exponential - - - caLineEdit::Static - - - - - - 293 - 110 - 242 - 20 - - - - - QFrame::NoFrame - - - - 0 - 2 - 95 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Current Amp - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - - - 103 - 0 - 80 - 18 - - - - caLineEdit::Height - - - $(P)VperA - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - exponential - - - - - - 190 - 2 - 50 - 14 - - - - caLineEdit::Height - - - $(P)VperA.EGU - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - caLabel_0 - caLabel_1 - caFrame_0 - caFrame_1 - caFrame_2 - caFrame_3 - caFrame_4 - caFrame_5 - caFrame_6 - caFrame_7 - caLabel_2 - caLabel_3 - caLabel_4 - caLabel_5 - caLabel_6 - caLabel_7 - caFrame_8 - caLabel_8 - caFrame_9 - caPolyLine_0 - caFrame_11 - caFrame_12 - caFrame_13 - caFrame_14 - caFrame_15 - caFrame_10 - caLabel_9 - caRectangle_0 - caLabel_10 - caFrame_17 - caLabel_11 - caFrame_18 - caLabel_12 - caFrame_19 - caLabel_13 - caFrame_20 - caLabel_14 - caFrame_21 - caFrame_16 - caLabel_15 - caLabel_16 - caFrame_22 - caLabel_17 - caFrame_24 - caLabel_18 - caFrame_25 - caFrame_23 - caLabel_19 - caFrame_26 - caLineEdit_0 - caTextEntry_0 - caLineEdit_1 - caLineEdit_2 - caTextEntry_1 - caLineEdit_3 - caLineEdit_4 - caTextEntry_2 - caLineEdit_5 - caLineEdit_6 - caTextEntry_3 - caLineEdit_7 - caLineEdit_8 - caLineEdit_9 - caLineEdit_10 - caRelatedDisplay_0 - caLineEdit_11 - caLineEdit_12 - caLineEdit_13 - caLineEdit_14 - caLineEdit_15 - caLineEdit_16 - caLineEdit_17 - caLineEdit_18 - caLineEdit_19 - caLineEdit_20 - caLineEdit_21 - caLineEdit_22 - caTextEntry_4 - caMenu_0 - caLineEdit_23 - caLineEdit_24 - caTextEntry_5 - caLineEdit_25 - caLineEdit_26 - caTextEntry_6 - caLineEdit_27 - caLineEdit_28 - caTextEntry_7 - caLineEdit_29 - caLineEdit_30 - caTextEntry_8 - caLineEdit_31 - caLineEdit_32 - caTextEntry_9 - caLineEdit_33 - caTextEntry_10 - caTextEntry_11 - caTextEntry_12 - caTextEntry_13 - caTextEntry_14 - caLineEdit_34 - caMenu_1 - caTextEntry_15 - caLineEdit_35 - caLineEdit_36 - caLineEdit_37 - caLineEdit_38 - caTextEntry_16 - caLineEdit_39 - - - \ No newline at end of file diff --git a/opticsApp/op/ui/SGM_gratings.ui b/opticsApp/op/ui/SGM_gratings.ui deleted file mode 100644 index 7e30aad..0000000 --- a/opticsApp/op/ui/SGM_gratings.ui +++ /dev/null @@ -1,10049 +0,0 @@ - - -MainWindow - - - - 173 - 166 - 600 - 395 - - - - - -QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - - - - - - - - 0 - 20 - 27 - 340 - - - - - QFrame::NoFrame - - - - 0 - 0 - 25 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - USE - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 2 - 140 - 22 - 16 - - - - EPushButton::Height - - - $(P)SGM$(N):grating - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 7 - - - 6 - - - caMessageButton::Static - - - - - - 2 - 160 - 22 - 16 - - - - EPushButton::Height - - - $(P)SGM$(N):grating - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 8 - - - 7 - - - caMessageButton::Static - - - - - - 2 - 180 - 22 - 16 - - - - EPushButton::Height - - - $(P)SGM$(N):grating - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 9 - - - 8 - - - caMessageButton::Static - - - - - - 2 - 200 - 22 - 16 - - - - EPushButton::Height - - - $(P)SGM$(N):grating - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 10 - - - 9 - - - caMessageButton::Static - - - - - caGraphics::Rectangle - - - - 0 - 158 - 25 - 20 - - - - 2 - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::IfZero - - - $(P)SGM$(N):sel_exists_1.DO8 - - - - - caGraphics::Rectangle - - - - 0 - 138 - 25 - 20 - - - - 2 - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::IfZero - - - $(P)SGM$(N):sel_exists_1.DO7 - - - - - caGraphics::Rectangle - - - - 0 - 178 - 25 - 20 - - - - 2 - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::IfZero - - - $(P)SGM$(N):sel_exists_1.DO9 - - - - - caGraphics::Rectangle - - - - 0 - 198 - 25 - 20 - - - - 2 - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::IfZero - - - $(P)SGM$(N):sel_exists_1.DOA - - - - - - 2 - 20 - 22 - 16 - - - - EPushButton::Height - - - $(P)SGM$(N):grating - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 1 - - - 0 - - - caMessageButton::Static - - - - - - 2 - 40 - 22 - 16 - - - - EPushButton::Height - - - $(P)SGM$(N):grating - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 2 - - - 1 - - - caMessageButton::Static - - - - - - 2 - 60 - 22 - 16 - - - - EPushButton::Height - - - $(P)SGM$(N):grating - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 3 - - - 2 - - - caMessageButton::Static - - - - - - 2 - 80 - 22 - 16 - - - - EPushButton::Height - - - $(P)SGM$(N):grating - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 4 - - - 3 - - - caMessageButton::Static - - - - - - 2 - 100 - 22 - 16 - - - - EPushButton::Height - - - $(P)SGM$(N):grating - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 5 - - - 4 - - - caMessageButton::Static - - - - - caGraphics::Rectangle - - - - 0 - 58 - 25 - 20 - - - - 2 - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::IfZero - - - $(P)SGM$(N):sel_exists_1.DO3 - - - - - caGraphics::Rectangle - - - - 0 - 38 - 25 - 20 - - - - 2 - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::IfZero - - - $(P)SGM$(N):sel_exists_1.DO2 - - - - - caGraphics::Rectangle - - - - 0 - 18 - 25 - 20 - - - - 2 - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::IfZero - - - $(P)SGM$(N):sel_exists_1.DO1 - - - - - caGraphics::Rectangle - - - - 0 - 78 - 25 - 20 - - - - 2 - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::IfZero - - - $(P)SGM$(N):sel_exists_1.DO4 - - - - - caGraphics::Rectangle - - - - 0 - 98 - 25 - 20 - - - - 2 - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::IfZero - - - $(P)SGM$(N):sel_exists_1.DO5 - - - - - - 2 - 120 - 22 - 16 - - - - EPushButton::Height - - - $(P)SGM$(N):grating - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 6 - - - 5 - - - caMessageButton::Static - - - - - caGraphics::Rectangle - - - - 0 - 118 - 25 - 20 - - - - 2 - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::IfZero - - - $(P)SGM$(N):sel_exists_1.DO6 - - - - - - 2 - 220 - 22 - 16 - - - - EPushButton::Height - - - $(P)SGM$(N):grating - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 11 - - - 10 - - - caMessageButton::Static - - - - - - 2 - 240 - 22 - 16 - - - - EPushButton::Height - - - $(P)SGM$(N):grating - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 12 - - - 11 - - - caMessageButton::Static - - - - - - 2 - 260 - 22 - 16 - - - - EPushButton::Height - - - $(P)SGM$(N):grating - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 13 - - - 12 - - - caMessageButton::Static - - - - - - 2 - 280 - 22 - 16 - - - - EPushButton::Height - - - $(P)SGM$(N):grating - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 14 - - - 13 - - - caMessageButton::Static - - - - - - 2 - 300 - 22 - 16 - - - - EPushButton::Height - - - $(P)SGM$(N):grating - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 15 - - - 14 - - - caMessageButton::Static - - - - - caGraphics::Rectangle - - - - 0 - 258 - 25 - 20 - - - - 2 - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::IfZero - - - $(P)SGM$(N):sel_exists_2.DO3 - - - - - caGraphics::Rectangle - - - - 0 - 238 - 25 - 20 - - - - 2 - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::IfZero - - - $(P)SGM$(N):sel_exists_2.DO2 - - - - - caGraphics::Rectangle - - - - 0 - 218 - 25 - 20 - - - - 2 - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::IfZero - - - $(P)SGM$(N):sel_exists_2.DO1 - - - - - caGraphics::Rectangle - - - - 0 - 278 - 25 - 20 - - - - 2 - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::IfZero - - - $(P)SGM$(N):sel_exists_2.DO4 - - - - - caGraphics::Rectangle - - - - 0 - 298 - 25 - 20 - - - - 2 - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::IfZero - - - $(P)SGM$(N):sel_exists_2.DO5 - - - - - - 2 - 320 - 22 - 16 - - - - EPushButton::Height - - - $(P)SGM$(N):grating - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 16 - - - 15 - - - caMessageButton::Static - - - - - caGraphics::Rectangle - - - - 0 - 318 - 25 - 20 - - - - 2 - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::IfZero - - - $(P)SGM$(N):sel_exists_2.DO6 - - - - - - - 30 - 40 - 567 - 348 - - - - - - 525 - 0 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_exists_1.DO1 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 525 - 20 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_exists_1.DO2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 525 - 40 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_exists_1.DO3 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 525 - 60 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_exists_1.DO4 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 525 - 80 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_exists_1.DO5 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 525 - 100 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_exists_1.DO6 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 525 - 120 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_exists_1.DO7 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 525 - 140 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_exists_1.DO8 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 525 - 160 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_exists_1.DO9 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 525 - 180 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_exists_1.DOA - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 525 - 200 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_exists_2.DO1 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 525 - 220 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_exists_2.DO2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 525 - 240 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_exists_2.DO3 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 525 - 260 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_exists_2.DO4 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 525 - 280 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_exists_2.DO5 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 525 - 300 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_exists_2.DO6 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 0 - 100 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_desc_1.STR1 - - - - 0 - 0 - 0 - - - - - 236 - 236 - 236 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 20 - 100 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_desc_1.STR2 - - - - 0 - 0 - 0 - - - - - 236 - 236 - 236 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 40 - 100 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_desc_1.STR3 - - - - 0 - 0 - 0 - - - - - 236 - 236 - 236 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 60 - 100 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_desc_1.STR4 - - - - 0 - 0 - 0 - - - - - 236 - 236 - 236 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 80 - 100 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_desc_1.STR5 - - - - 0 - 0 - 0 - - - - - 236 - 236 - 236 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 100 - 100 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_desc_1.STR6 - - - - 0 - 0 - 0 - - - - - 236 - 236 - 236 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 120 - 100 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_desc_1.STR7 - - - - 0 - 0 - 0 - - - - - 236 - 236 - 236 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 140 - 100 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_desc_1.STR8 - - - - 0 - 0 - 0 - - - - - 236 - 236 - 236 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 160 - 100 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_desc_1.STR9 - - - - 0 - 0 - 0 - - - - - 236 - 236 - 236 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 180 - 100 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_desc_1.STRA - - - - 0 - 0 - 0 - - - - - 236 - 236 - 236 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 200 - 100 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_desc_2.STR1 - - - - 0 - 0 - 0 - - - - - 236 - 236 - 236 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 220 - 100 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_desc_2.STR2 - - - - 0 - 0 - 0 - - - - - 236 - 236 - 236 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 240 - 100 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_desc_2.STR3 - - - - 0 - 0 - 0 - - - - - 236 - 236 - 236 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 260 - 100 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_desc_2.STR4 - - - - 0 - 0 - 0 - - - - - 236 - 236 - 236 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 280 - 100 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_desc_2.STR5 - - - - 0 - 0 - 0 - - - - - 236 - 236 - 236 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 300 - 100 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_desc_2.STR6 - - - - 0 - 0 - 0 - - - - - 236 - 236 - 236 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 105 - 120 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_m_1.DO7 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 150 - 120 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_den_1.DO7 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 215 - 120 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_R_1.DO7 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 280 - 120 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Wlow_1.DO7 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 345 - 120 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Whigh_1.DO7 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 410 - 120 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_loc_1.DO7 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 105 - 140 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_m_1.DO8 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 150 - 140 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_den_1.DO8 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 215 - 140 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_R_1.DO8 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 280 - 140 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Wlow_1.DO8 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 345 - 140 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Whigh_1.DO8 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 410 - 140 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_loc_1.DO8 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 105 - 160 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_m_1.DO9 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 150 - 160 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_den_1.DO9 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 215 - 160 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_R_1.DO9 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 280 - 160 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Wlow_1.DO9 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 345 - 160 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Whigh_1.DO9 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 410 - 160 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_loc_1.DO9 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 105 - 180 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_m_1.DOA - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 150 - 180 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_den_1.DOA - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 215 - 180 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_R_1.DOA - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 280 - 180 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Wlow_1.DOA - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 345 - 180 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Whigh_1.DOA - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 410 - 180 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_loc_1.DOA - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 105 - 0 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_m_1.DO1 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 150 - 0 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_den_1.DO1 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 215 - 0 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_R_1.DO1 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 280 - 0 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Wlow_1.DO1 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 345 - 0 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Whigh_1.DO1 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 410 - 0 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_loc_1.DO1 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 105 - 20 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_m_1.DO2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 150 - 20 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_den_1.DO2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 215 - 20 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_R_1.DO2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 280 - 20 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Wlow_1.DO2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 345 - 20 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Whigh_1.DO2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 410 - 20 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_loc_1.DO2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 105 - 40 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_m_1.DO3 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 150 - 40 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_den_1.DO3 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 215 - 40 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_R_1.DO3 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 280 - 40 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Wlow_1.DO3 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 345 - 40 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Whigh_1.DO3 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 410 - 40 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_loc_1.DO3 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 105 - 60 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_m_1.DO4 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 150 - 60 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_den_1.DO4 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 215 - 60 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_R_1.DO4 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 280 - 60 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Wlow_1.DO4 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 345 - 60 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Whigh_1.DO4 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 410 - 60 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_loc_1.DO4 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 105 - 80 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_m_1.DO5 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 150 - 80 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_den_1.DO5 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 215 - 80 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_R_1.DO5 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 280 - 80 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Wlow_1.DO5 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 345 - 80 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Whigh_1.DO5 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 410 - 80 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_loc_1.DO6 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 105 - 100 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_m_1.DO6 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 150 - 100 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_den_1.DO6 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 215 - 100 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_R_1.DO6 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 280 - 100 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Wlow_1.DO6 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 345 - 100 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Whigh_1.DO6 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 410 - 100 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_loc_1.DO6 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 105 - 200 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_m_2.DO1 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 150 - 200 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_den_2.DO1 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 215 - 200 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_R_2.DO1 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 280 - 200 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Wlow_2.DO1 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 345 - 200 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Whigh_2.DO1 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 410 - 200 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_loc_2.DO1 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 105 - 220 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_m_2.DO2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 150 - 220 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_den_2.DO2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 215 - 220 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_R_2.DO2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 280 - 220 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Wlow_2.DO2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 345 - 220 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Whigh_2.DO2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 410 - 220 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_loc_2.DO2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 105 - 240 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_m_2.DO3 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 150 - 240 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_den_2.DO3 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 215 - 240 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_R_2.DO3 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 280 - 240 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Wlow_2.DO3 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 345 - 240 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Whigh_2.DO3 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 410 - 240 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_loc_2.DO3 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 105 - 260 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_m_2.DO4 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 150 - 260 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_den_2.DO4 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 215 - 260 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_R_2.DO4 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 280 - 260 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Wlow_2.DO4 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 345 - 260 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Whigh_2.DO4 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 410 - 260 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_loc_2.DO4 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 105 - 280 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_m_2.DO5 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 150 - 280 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_den_2.DO5 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 215 - 280 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_R_2.DO5 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 280 - 280 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Wlow_2.DO5 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 345 - 280 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Whigh_2.DO5 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 410 - 280 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_loc_2.DO6 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 105 - 300 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_m_2.DO6 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 150 - 300 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_den_2.DO6 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 215 - 300 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_R_2.DO6 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 280 - 300 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Wlow_2.DO6 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 345 - 300 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_Whigh_2.DO6 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 410 - 300 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_loc_2.DO6 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 475 - 0 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_xOff_1.DO1 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 475 - 20 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_xOff_1.DO2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 475 - 40 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_xOff_1.DO3 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 475 - 60 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_xOff_1.DO4 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 475 - 80 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_xOff_1.DO5 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 475 - 100 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_xOff_1.DO6 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 475 - 120 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_xOff_1.DO7 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 475 - 140 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_xOff_1.DO8 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 475 - 160 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_xOff_1.DO9 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 475 - 180 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_xOff_1.DOA - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 475 - 200 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_xOff_2.DO1 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 475 - 220 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_xOff_2.DO2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 475 - 240 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_xOff_2.DO3 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 475 - 260 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_xOff_2.DO4 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 475 - 280 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_xOff_2.DO5 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 475 - 300 - 40 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):sel_xOff_2.DO6 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 315 - 330 - 157 - 18 - - - - - - 95 - 0 - 60 - 16 - - - - caLineEdit::Height - - - $(P)SGM$(N):StripeWidth - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 0 - 0 - 90 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - Stripe width: - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - - - - QFrame::NoFrame - - - - 30 - 0 - 100 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - grating - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 135 - 0 - 40 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - diffract - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 180 - 0 - 60 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - line - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 245 - 0 - 60 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - grating - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 310 - 0 - 60 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - Wavelen - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 375 - 0 - 60 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - Wavelen - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 440 - 0 - 60 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - grating - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 505 - 0 - 40 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - X-motor - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 555 - 0 - 40 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - OK to - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 30 - 15 - 100 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - description - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 135 - 15 - 40 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - order - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 180 - 15 - 60 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - density - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 245 - 15 - 60 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - radius - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 310 - 15 - 60 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - Lo Lim - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 375 - 15 - 60 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - Hi Lim - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 440 - 15 - 60 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - index - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 505 - 15 - 40 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - offset - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 555 - 15 - 40 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - use? - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 30 - 30 - 100 - 10 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 135 - 30 - 40 - 10 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 180 - 30 - 60 - 10 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - [lines/mm] - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 245 - 30 - 60 - 10 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - [m] - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 310 - 30 - 60 - 10 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - [Angstroms] - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 375 - 30 - 60 - 10 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - [Angstroms] - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 440 - 30 - 60 - 10 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - (stripe #) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 505 - 30 - 40 - 10 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - [mm] - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 555 - 30 - 40 - 10 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - 1==YES - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLabel_0 - caRectangle_0 - caRectangle_1 - caRectangle_2 - caRectangle_3 - caRectangle_4 - caRectangle_5 - caRectangle_6 - caRectangle_7 - caRectangle_8 - caRectangle_9 - caRectangle_10 - caRectangle_11 - caRectangle_12 - caRectangle_13 - caRectangle_14 - caRectangle_15 - caFrame_0 - caLabel_1 - caFrame_2 - caFrame_1 - caLabel_2 - caLabel_3 - caLabel_4 - caLabel_5 - caLabel_6 - caLabel_7 - caLabel_8 - caLabel_9 - caLabel_10 - caLabel_11 - caLabel_12 - caLabel_13 - caLabel_14 - caLabel_15 - caLabel_16 - caLabel_17 - caLabel_18 - caLabel_19 - caLabel_20 - caLabel_21 - caLabel_22 - caLabel_23 - caLabel_24 - caLabel_25 - caLabel_26 - caLabel_27 - caLabel_28 - caMessageButton_0 - caMessageButton_1 - caMessageButton_2 - caMessageButton_3 - caMessageButton_4 - caMessageButton_5 - caMessageButton_6 - caMessageButton_7 - caMessageButton_8 - caMessageButton_9 - caMessageButton_10 - caMessageButton_11 - caMessageButton_12 - caMessageButton_13 - caMessageButton_14 - caMessageButton_15 - caTextEntry_0 - caTextEntry_1 - caTextEntry_2 - caTextEntry_3 - caTextEntry_4 - caTextEntry_5 - caTextEntry_6 - caTextEntry_7 - caTextEntry_8 - caTextEntry_9 - caTextEntry_10 - caTextEntry_11 - caTextEntry_12 - caTextEntry_13 - caTextEntry_14 - caTextEntry_15 - caTextEntry_16 - caTextEntry_17 - caTextEntry_18 - caTextEntry_19 - caTextEntry_20 - caTextEntry_21 - caTextEntry_22 - caTextEntry_23 - caTextEntry_24 - caTextEntry_25 - caTextEntry_26 - caTextEntry_27 - caTextEntry_28 - caTextEntry_29 - caTextEntry_30 - caTextEntry_31 - caTextEntry_32 - caTextEntry_33 - caTextEntry_34 - caTextEntry_35 - caTextEntry_36 - caTextEntry_37 - caTextEntry_38 - caTextEntry_39 - caTextEntry_40 - caTextEntry_41 - caTextEntry_42 - caTextEntry_43 - caTextEntry_44 - caTextEntry_45 - caTextEntry_46 - caTextEntry_47 - caTextEntry_48 - caTextEntry_49 - caTextEntry_50 - caTextEntry_51 - caTextEntry_52 - caTextEntry_53 - caTextEntry_54 - caTextEntry_55 - caTextEntry_56 - caTextEntry_57 - caTextEntry_58 - caTextEntry_59 - caTextEntry_60 - caTextEntry_61 - caTextEntry_62 - caTextEntry_63 - caTextEntry_64 - caTextEntry_65 - caTextEntry_66 - caTextEntry_67 - caTextEntry_68 - caTextEntry_69 - caTextEntry_70 - caTextEntry_71 - caTextEntry_72 - caTextEntry_73 - caTextEntry_74 - caTextEntry_75 - caTextEntry_76 - caTextEntry_77 - caTextEntry_78 - caTextEntry_79 - caTextEntry_80 - caTextEntry_81 - caTextEntry_82 - caTextEntry_83 - caTextEntry_84 - caTextEntry_85 - caTextEntry_86 - caTextEntry_87 - caTextEntry_88 - caTextEntry_89 - caTextEntry_90 - caTextEntry_91 - caTextEntry_92 - caTextEntry_93 - caTextEntry_94 - caTextEntry_95 - caTextEntry_96 - caTextEntry_97 - caTextEntry_98 - caTextEntry_99 - caTextEntry_100 - caTextEntry_101 - caTextEntry_102 - caTextEntry_103 - caTextEntry_104 - caTextEntry_105 - caTextEntry_106 - caTextEntry_107 - caTextEntry_108 - caTextEntry_109 - caTextEntry_110 - caTextEntry_111 - caTextEntry_112 - caTextEntry_113 - caTextEntry_114 - caTextEntry_115 - caTextEntry_116 - caTextEntry_117 - caTextEntry_118 - caTextEntry_119 - caTextEntry_120 - caTextEntry_121 - caTextEntry_122 - caTextEntry_123 - caTextEntry_124 - caTextEntry_125 - caTextEntry_126 - caTextEntry_127 - caTextEntry_128 - caTextEntry_129 - caTextEntry_130 - caTextEntry_131 - caTextEntry_132 - caTextEntry_133 - caTextEntry_134 - caTextEntry_135 - caTextEntry_136 - caTextEntry_137 - caTextEntry_138 - caTextEntry_139 - caTextEntry_140 - caTextEntry_141 - caTextEntry_142 - caTextEntry_143 - caTextEntry_144 - - - \ No newline at end of file diff --git a/opticsApp/op/ui/TheBox_graphic_try.ui b/opticsApp/op/ui/TheBox_graphic_try.ui deleted file mode 100644 index 4652af8..0000000 --- a/opticsApp/op/ui/TheBox_graphic_try.ui +++ /dev/null @@ -1,3375 +0,0 @@ - - -MainWindow - - - - 10 - 10 - 525 - 350 - - - - - -QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - - - - - - - caGraphics::Rectangle - - - - 10 - 25 - 500 - 320 - - - - - - caGraphics::Rectangle - - - - 10 - 25 - 500 - 320 - - - - - - caGraphics::Rectangle - - - - 73 - 90 - 100 - 203 - - - - - - caGraphics::Rectangle - - - - 73 - 90 - 100 - 203 - - - - - - caGraphics::Rectangle - - - - 76 - 178 - 175 - 75 - - - - - - caGraphics::Rectangle - - - - 76 - 178 - 175 - 75 - - - - - - caGraphics::Circle - - - - 180 - 185 - 60 - 60 - - - - - - caGraphics::Circle - - - - 180 - 185 - 60 - 60 - - - - - - caGraphics::Rectangle - - - - 368 - 92 - 100 - 169 - - - - - - caGraphics::Rectangle - - - - 368 - 92 - 100 - 169 - - - - - - - 411 - 94 - 11 - 104 - - - - - - 1 - 0 - 10 - 102 - - - - - - - 1 - 0 - 8 - 6 - - - - 0,0;8,5; - - - - - - - 412 - 100 - 8 - 6 - - - - 0,0;8,6; - - - - - - 412 - 106 - 8 - 6 - - - - 0,0;8,6; - - - - - - 412 - 112 - 8 - 6 - - - - 0,0;8,6; - - - - - - 412 - 119 - 8 - 6 - - - - 0,0;8,5; - - - - - - 412 - 125 - 8 - 6 - - - - 0,0;8,6; - - - - - - 412 - 131 - 8 - 6 - - - - 0,0;8,6; - - - - - - 412 - 137 - 8 - 6 - - - - 0,0;8,6; - - - - - - 412 - 144 - 8 - 6 - - - - 0,0;8,6; - - - - - - 412 - 150 - 8 - 6 - - - - 0,0;8,6; - - - - - - 412 - 157 - 8 - 6 - - - - 0,0;8,6; - - - - - - 412 - 163 - 8 - 6 - - - - 0,0;8,6; - - - - - - 412 - 169 - 8 - 6 - - - - 0,0;8,6; - - - - - - 412 - 175 - 8 - 6 - - - - 0,0;8,6; - - - - - - 412 - 181 - 8 - 6 - - - - 0,0;8,6; - - - - - - 412 - 188 - 8 - 6 - - - - 0,0;8,6; - - - - - caGraphics::Rectangle - - - - 411 - 94 - 9 - 102 - - - - - - - 121 - 92 - 11 - 104 - - - - - - 1 - 0 - 10 - 102 - - - - - - - 1 - 0 - 8 - 6 - - - - 0,0;8,5; - - - - - - - 122 - 98 - 8 - 6 - - - - 0,0;8,6; - - - - - - 122 - 104 - 8 - 6 - - - - 0,0;8,6; - - - - - - 122 - 110 - 8 - 6 - - - - 0,0;8,6; - - - - - - 122 - 117 - 8 - 6 - - - - 0,0;8,5; - - - - - - 122 - 123 - 8 - 6 - - - - 0,0;8,6; - - - - - - 122 - 129 - 8 - 6 - - - - 0,0;8,6; - - - - - - 122 - 135 - 8 - 6 - - - - 0,0;8,6; - - - - - - 122 - 142 - 8 - 6 - - - - 0,0;8,6; - - - - - - 122 - 148 - 8 - 6 - - - - 0,0;8,6; - - - - - - 122 - 155 - 8 - 6 - - - - 0,0;8,6; - - - - - - 122 - 161 - 8 - 6 - - - - 0,0;8,6; - - - - - - 122 - 167 - 8 - 6 - - - - 0,0;8,6; - - - - - - 122 - 173 - 8 - 6 - - - - 0,0;8,6; - - - - - - 122 - 179 - 8 - 6 - - - - 0,0;8,6; - - - - - - 122 - 186 - 8 - 6 - - - - 0,0;8,6; - - - - - caGraphics::Rectangle - - - - 121 - 92 - 9 - 102 - - - - - - caGraphics::Rectangle - - - - 290 - 97 - 175 - 75 - - - - - - - 226 - 145 - 27 - 32 - - - - - - caGraphics::Rectangle - - - - 226 - 145 - 25 - 30 - - - - - - QFrame::NoFrame - - - - 229 - 153 - 20 - 14 - - - - TH1 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 197 - 209 - 29 - 12 - - - - 1,10;27,1; - - - - - - 236 - 176 - 8 - 52 - - - - - - 0 - 0 - 7 - 51 - - - - - - - 0 - 0 - 5 - 5 - - - - 0,0;6,4; - - - - - - - 236 - 181 - 5 - 5 - - - - 0,0;6,5; - - - - - - 236 - 186 - 5 - 5 - - - - 0,0;6,4; - - - - - - 236 - 190 - 5 - 5 - - - - 0,0;6,5; - - - - - - 236 - 196 - 5 - 5 - - - - 0,0;6,4; - - - - - - 236 - 201 - 5 - 5 - - - - 0,0;6,4; - - - - - - 236 - 205 - 5 - 5 - - - - 0,0;6,5; - - - - - - 236 - 210 - 5 - 5 - - - - 0,0;6,5; - - - - - - 236 - 215 - 5 - 5 - - - - 0,0;6,5; - - - - - - 236 - 220 - 5 - 5 - - - - 0,0;6,5; - - - - - caGraphics::Rectangle - - - - 236 - 176 - 6 - 50 - - - - - - - 250 - 145 - 20 - 20 - - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Menu - - - mTheta1 (S);mTheta1 (M);mTheta1 (L);;;;; - - - motorx.adl;motorx_more.adl;motorx_all.adl;;;;; - - - P=$(P), M=$(mTH1);P=$(P), M=$(mTH1);P=$(P), M=$(mTH1);;;;; - - - false;false;false;false;false;false;false;false - - - - - caGraphics::Rectangle - - - - 73 - 295 - 100 - 30 - - - - - - - 115 - 300 - 44 - 22 - - - - - - caGraphics::Circle - - - - 115 - 300 - 20 - 20 - - - - - - QFrame::NoFrame - - - - 118 - 303 - 15 - 14 - - - - X1 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 137 - 300 - 20 - 20 - - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Menu - - - mX1 (S);mX1 (M);mX1 (L);;;;; - - - motorx.adl;motorx_more.adl;motorx_all.adl;;;;; - - - P=$(P), M=$(mX1);P=$(P), M=$(mX1);P=$(P), M=$(mX1);;;;; - - - false;false;false;false;false;false;false;false - - - - - caGraphics::Rectangle - - - - 236 - 295 - 250 - 30 - - - - - - caGraphics::Rectangle - - - - 205 - 300 - 30 - 20 - - - - - - QFrame::NoFrame - - - - 212 - 303 - 15 - 14 - - - - Z2 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 205 - 279 - 20 - 20 - - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Menu - - - mZ2 (S);mZ2 (M);mZ2 (L);;;;; - - - motorx.adl;motorx_more.adl;motorx_all.adl;;;;; - - - P=$(P), M=$(mZ2);P=$(P), M=$(mZ2);P=$(P), M=$(mZ2);;;;; - - - false;false;false;false;false;false;false;false - - - - - caGraphics::Rectangle - - - - 368 - 263 - 100 - 30 - - - - - - caGraphics::Circle - - - - 409 - 268 - 20 - 20 - - - - - - QFrame::NoFrame - - - - 412 - 271 - 15 - 14 - - - - X2 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 431 - 268 - 20 - 20 - - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Menu - - - mX2 (S);mX2 (M);mX2 (L);;;;; - - - motorx.adl;motorx_more.adl;motorx_all.adl;;;;; - - - P=$(P), M=$(mX2);P=$(P), M=$(mX2);P=$(P), M=$(mX2);;;;; - - - false;false;false;false;false;false;false;false - - - - - caGraphics::Rectangle - - - - 404 - 61 - 25 - 30 - - - - - - QFrame::NoFrame - - - - 409 - 69 - 15 - 14 - - - - Y2 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 430 - 61 - 20 - 20 - - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Menu - - - mY2 (S);mY2 (M);mY2 (L);;;;; - - - motorx.adl;motorx_more.adl;motorx_all.adl;;;;; - - - P=$(P), M=$(mY2);P=$(P), M=$(mY2);P=$(P), M=$(mY2);;;;; - - - false;false;false;false;false;false;false;false - - - - - caGraphics::Rectangle - - - - 114 - 59 - 25 - 30 - - - - - - QFrame::NoFrame - - - - 119 - 67 - 15 - 14 - - - - Y1 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 138 - 59 - 20 - 20 - - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Menu - - - mY1 (S);mY1 (M);mY1 (L);;;;; - - - motorx.adl;motorx_more.adl;motorx_all.adl;;;;; - - - P=$(P), M=$(mY1);P=$(P), M=$(mY1);P=$(P), M=$(mY1);;;;; - - - false;false;false;false;false;false;false;false - - - - - caGraphics::Rectangle - - - - 290 - 97 - 175 - 75 - - - - - - caGraphics::Circle - - - - 300 - 105 - 60 - 60 - - - - - - - 317 - 129 - 29 - 12 - - - - 1,10;27,1; - - - - - caGraphics::Rectangle - - - - 288 - 66 - 25 - 30 - - - - - - QFrame::NoFrame - - - - 291 - 74 - 20 - 14 - - - - TH2 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 313 - 66 - 20 - 20 - - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Menu - - - mTheta2 (S);mTheta2 (M);mTheta2 (L);;;;; - - - motorx.adl;motorx_more.adl;motorx_all.adl;;;;; - - - P=$(P), M=$(mTH2);P=$(P), M=$(mTH2);P=$(P), M=$(mTH2);;;;; - - - false;false;false;false;false;false;false;false - - - - - - -1 - 212 - 213 - 3 - - - - 211,1;1,1; - - - - - - 209 - 135 - 123 - 80 - - - - 0,79;122,0; - - - - - - 331 - 135 - 190 - 1 - - - - 0,0;189,0; - - - - - - 17 - 203 - 40 - 6 - - - - 0,5;39,5;34,0; - - - - - QFrame::NoFrame - - - - 509 - 127 - 13 - 20 - - - - > - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - - - 298 - 98 - 8 - 52 - - - - - - 0 - 0 - 7 - 51 - - - - - - - 0 - 0 - 5 - 5 - - - - 0,0;6,4; - - - - - - - 298 - 103 - 5 - 5 - - - - 0,0;6,5; - - - - - - 298 - 108 - 5 - 5 - - - - 0,0;6,4; - - - - - - 298 - 112 - 5 - 5 - - - - 0,0;6,5; - - - - - - 298 - 118 - 5 - 5 - - - - 0,0;6,4; - - - - - - 298 - 123 - 5 - 5 - - - - 0,0;6,4; - - - - - - 298 - 127 - 5 - 5 - - - - 0,0;6,5; - - - - - - 298 - 132 - 5 - 5 - - - - 0,0;6,5; - - - - - - 298 - 137 - 5 - 5 - - - - 0,0;6,5; - - - - - - 298 - 142 - 5 - 5 - - - - 0,0;6,5; - - - - - caGraphics::Rectangle - - - - 298 - 98 - 6 - 50 - - - - - - - 366 - 148 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mTH2).TWR - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - - - - - 1 - - - 0 - - - caMessageButton::Static - - - - - - 366 - 100 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mTH2).TWF - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - + - - - 1 - - - 0 - - - caMessageButton::Static - - - - - - 425 - 100 - 22 - 70 - - - - - - 0 - 48 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mY2).TWR - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - - - - - 1 - - - 0 - - - caMessageButton::Static - - - - - - 0 - 0 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mY2).TWF - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - + - - - 1 - - - 0 - - - caMessageButton::Static - - - - - - - 155 - 181 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mTH1).TWR - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - - - - - 1 - - - 0 - - - caMessageButton::Static - - - - - - 155 - 229 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mTH1).TWF - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - + - - - 1 - - - 0 - - - caMessageButton::Static - - - - - - 372 - 236 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mZ2).TWR - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - - - - - 1 - - - 0 - - - caMessageButton::Static - - - - - - 443 - 236 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mZ2).TWF - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - + - - - 1 - - - 0 - - - caMessageButton::Static - - - - - - 75 - 301 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mX1).TWR - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - - - - - 1 - - - 0 - - - caMessageButton::Static - - - - - - 95 - 301 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mX1).TWF - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - + - - - 1 - - - 0 - - - caMessageButton::Static - - - - - - 370 - 269 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mX2).TWR - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - - - - - 1 - - - 0 - - - caMessageButton::Static - - - - - - 390 - 269 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mX2).TWF - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - + - - - 1 - - - 0 - - - caMessageButton::Static - - - - - caGraphics::Circle - - - - 300 - 105 - 60 - 60 - - - - - - - 262 - 195 - 100 - 40 - - - - EPushButton::Height - - - $(P)allstop.VAL - - - - 251 - 243 - 74 - - - - - 253 - 0 - 0 - - - - All Stop - - - 1 - - - - - - caMessageButton::Static - - - - - - 21 - 297 - 52 - 27 - - - - - - 0 - 10 - 50 - 15 - - - - caLineEdit::Height - - - $(P)$(mX1).VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - decimal - - - - - - 0 - 0 - 50 - 12 - - - - caLineEdit::Height - - - $(P)$(mX1).RBV - - - - 10 - 0 - 184 - - - - - 255 - 255 - 255 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - - 315 - 265 - 50 - 12 - - - - caLineEdit::Height - - - $(P)$(mX2).RBV - - - - 10 - 0 - 184 - - - - - 255 - 255 - 255 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - QFrame::NoFrame - - - - 10 - 0 - 500 - 25 - - - - Prototype Monochromator - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 178 - 228 - 10 - 18 - - - - 1,1;9,17;2,13; - - - - - - 179 - 183 - 13 - 18 - - - - 1,17;1,17;12,1;6,4; - - - - - - 348 - 104 - 19 - 25 - - - - 18,24;1,1;11,4; - - - - - - 349 - 142 - 18 - 22 - - - - 17,1;1,21;12,20; - - - - - - 447 - 101 - 8 - 69 - - - - - - - 447 - 101 - 5 - 25 - - - - 1,24;1,1;4,8;4,8;4,8; - - - - - - 447 - 141 - 6 - 27 - - - - 1,1;1,26;5,18; - - - - - - 428 - 225 - 35 - 6 - - - - 1,5;34,5;25,1; - - - - - - 371 - 225 - 37 - 6 - - - - 36,5;1,5;10,1; - - - - - - 393 - 222 - 52 - 27 - - - - - - 0 - 10 - 50 - 15 - - - - caLineEdit::Height - - - $(P)$(mZ2).VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - decimal - - - - - - 0 - 0 - 50 - 12 - - - - caLineEdit::Height - - - $(P)$(mZ2).RBV - - - - 10 - 0 - 184 - - - - - 255 - 255 - 255 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - - 140 - 203 - 50 - 12 - - - - caLineEdit::Height - - - $(P)$(mTH1).RBV - - - - 10 - 0 - 184 - - - - - 255 - 255 - 255 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 140 - 213 - 50 - 15 - - - - caLineEdit::Height - - - $(P)$(mTH1).VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - decimal - - - - - - 315 - 275 - 50 - 15 - - - - caLineEdit::Height - - - $(P)$(mX2).VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - decimal - - - - - - 350 - 131 - 50 - 15 - - - - caLineEdit::Height - - - $(P)$(mTH2).VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - decimal - - - - - - 351 - 121 - 50 - 12 - - - - caLineEdit::Height - - - $(P)$(mTH2).RBV - - - - 10 - 0 - 184 - - - - - 255 - 255 - 255 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 410 - 121 - 52 - 27 - - - - - - 0 - 10 - 50 - 15 - - - - caLineEdit::Height - - - $(P)$(mY2).VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - decimal - - - - - - 0 - 0 - 50 - 12 - - - - caLineEdit::Height - - - $(P)$(mY2).RBV - - - - 10 - 0 - 184 - - - - - 255 - 255 - 255 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - - 80 - 181 - 52 - 70 - - - - - - 15 - 48 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mY1).TWR - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - - - - - 1 - - - 0 - - - caMessageButton::Static - - - - - - 0 - 32 - 50 - 15 - - - - caLineEdit::Height - - - $(P)$(mY1).VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - decimal - - - - - - 0 - 22 - 50 - 12 - - - - caLineEdit::Height - - - $(P)$(mY1).RBV - - - - 10 - 0 - 184 - - - - - 255 - 255 - 255 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 15 - 0 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mY1).TWF - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - + - - - 1 - - - 0 - - - caMessageButton::Static - - - - - - - 86 - 181 - 7 - 22 - - - - 6,21;6,1;1,8; - - - - - - 86 - 226 - 7 - 24 - - - - 6,1;6,23;1,14; - - - - - QFrame::NoFrame - - - - 99 - 46 - 50 - 12 - - - - $(mY1) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 21 - 284 - 50 - 12 - - - - $(mX1) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 191 - 267 - 50 - 12 - - - - $(mZ2) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 213 - 132 - 50 - 12 - - - - $(mTH1) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 276 - 53 - 50 - 12 - - - - $(mTH2) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 390 - 48 - 50 - 12 - - - - $(mY2) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 315 - 252 - 50 - 12 - - - - $(mX2) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caRectangle_0 - caRectangle_1 - caRectangle_2 - caRectangle_3 - caRectangle_4 - caRectangle_5 - caGraphics_0 - caGraphics_1 - caRectangle_6 - caRectangle_7 - caFrame_1 - caPolyLine_0 - caFrame_0 - caPolyLine_1 - caPolyLine_2 - caPolyLine_3 - caPolyLine_4 - caPolyLine_5 - caPolyLine_6 - caPolyLine_7 - caPolyLine_8 - caPolyLine_9 - caPolyLine_10 - caPolyLine_11 - caPolyLine_12 - caPolyLine_13 - caPolyLine_14 - caPolyLine_15 - caRectangle_8 - caFrame_3 - caPolyLine_16 - caFrame_2 - caPolyLine_17 - caPolyLine_18 - caPolyLine_19 - caPolyLine_20 - caPolyLine_21 - caPolyLine_22 - caPolyLine_23 - caPolyLine_24 - caPolyLine_25 - caPolyLine_26 - caPolyLine_27 - caPolyLine_28 - caPolyLine_29 - caPolyLine_30 - caPolyLine_31 - caRectangle_9 - caRectangle_10 - caFrame_4 - caRectangle_11 - caLabel_0 - caPolyLine_32 - caFrame_6 - caPolyLine_33 - caFrame_5 - caPolyLine_34 - caPolyLine_35 - caPolyLine_36 - caPolyLine_37 - caPolyLine_38 - caPolyLine_39 - caPolyLine_40 - caPolyLine_41 - caPolyLine_42 - caRectangle_12 - caRectangle_13 - caFrame_7 - caGraphics_2 - caLabel_1 - caRectangle_14 - caRectangle_15 - caLabel_2 - caRectangle_16 - caGraphics_3 - caLabel_3 - caRectangle_17 - caLabel_4 - caRectangle_18 - caLabel_5 - caRectangle_19 - caGraphics_4 - caPolyLine_43 - caRectangle_20 - caLabel_6 - caPolyLine_44 - caPolyLine_45 - caPolyLine_46 - caPolyLine_47 - caLabel_7 - caFrame_9 - caPolyLine_48 - caFrame_8 - caPolyLine_49 - caPolyLine_50 - caPolyLine_51 - caPolyLine_52 - caPolyLine_53 - caPolyLine_54 - caPolyLine_55 - caPolyLine_56 - caPolyLine_57 - caRectangle_21 - caFrame_10 - caGraphics_5 - caFrame_11 - caLabel_8 - caPolyLine_58 - caPolyLine_59 - caPolyLine_60 - caPolyLine_61 - caFrame_12 - caPolyLine_62 - caPolyLine_63 - caPolyLine_64 - caPolyLine_65 - caFrame_13 - caFrame_14 - caFrame_15 - caPolyLine_66 - caPolyLine_67 - caLabel_9 - caLabel_10 - caLabel_11 - caLabel_12 - caLabel_13 - caLabel_14 - caLabel_15 - caRelatedDisplay_0 - caRelatedDisplay_1 - caRelatedDisplay_2 - caRelatedDisplay_3 - caRelatedDisplay_4 - caRelatedDisplay_5 - caRelatedDisplay_6 - caMessageButton_0 - caMessageButton_1 - caMessageButton_2 - caMessageButton_3 - caMessageButton_4 - caMessageButton_5 - caMessageButton_6 - caMessageButton_7 - caMessageButton_8 - caMessageButton_9 - caMessageButton_10 - caMessageButton_11 - caMessageButton_12 - caTextEntry_0 - caLineEdit_0 - caLineEdit_1 - caTextEntry_1 - caLineEdit_2 - caLineEdit_3 - caTextEntry_2 - caTextEntry_3 - caTextEntry_4 - caLineEdit_4 - caTextEntry_5 - caLineEdit_5 - caMessageButton_13 - caTextEntry_6 - caLineEdit_6 - caMessageButton_14 - - - \ No newline at end of file diff --git a/opticsApp/op/ui/autoconvert/.gitignore b/opticsApp/op/ui/autoconvert/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/opticsApp/op/ui/2filter.ui b/opticsApp/op/ui/autoconvert/2filter.ui similarity index 79% rename from opticsApp/op/ui/2filter.ui rename to opticsApp/op/ui/autoconvert/2filter.ui index c8d56ed..0b0306a 100644 --- a/opticsApp/op/ui/2filter.ui +++ b/opticsApp/op/ui/autoconvert/2filter.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -82,14 +170,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 5 - 46 - 90 - 18 - - 0 @@ -108,24 +188,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} upstream - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 100 - 45 + 5 + 46 90 18 + + + + QFrame::NoFrame + 0 @@ -144,24 +224,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} downstream - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 100 + 45 + 90 + 18 + + QFrame::NoFrame - - - 0 - 0 - 195 - 20 - - 0 @@ -180,11 +260,19 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} User Filters - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 0 + 195 + 20 + + diff --git a/opticsApp/op/ui/2filter_setup.ui b/opticsApp/op/ui/autoconvert/2filter_setup.ui similarity index 71% rename from opticsApp/op/ui/2filter_setup.ui rename to opticsApp/op/ui/autoconvert/2filter_setup.ui index 46896c0..ffde12a 100644 --- a/opticsApp/op/ui/2filter_setup.ui +++ b/opticsApp/op/ui/autoconvert/2filter_setup.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -55,14 +143,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 5 - 292 - 400 - 14 - - 0 @@ -81,7 +161,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} close and re-open any screen that displays it. - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 292 + 400 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -91,14 +179,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 5 - 255 - 115 - 18 - - 0 @@ -117,7 +197,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Motor-drive PV - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 255 + 115 + 18 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -133,7 +221,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q1)motorOut.OUTN @@ -152,6 +240,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -163,14 +266,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 180 - 247 - 40 - 10 - - 253 @@ -195,7 +290,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} INVALID - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 180 + 247 + 40 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -211,7 +314,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q1)pos5.VAL @@ -230,6 +333,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -247,7 +365,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q1)pos4.VAL @@ -266,6 +384,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -283,7 +416,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q1)pos3.VAL @@ -302,6 +435,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -319,7 +467,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q1)pos2.VAL @@ -338,6 +486,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -355,7 +518,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q1)posHome.VAL @@ -374,6 +537,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -391,7 +569,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q1)pos1.VAL @@ -410,6 +588,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -451,14 +644,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 235 - 255 - 115 - 18 - - 0 @@ -477,7 +662,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Motor-drive PV - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 235 + 255 + 115 + 18 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -493,7 +686,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q2)motorOut.OUTN @@ -512,6 +705,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -519,231 +727,311 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} string - + 385 125 - 72 - 122 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q2)pos5.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 385 + 145 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q2)pos4.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 385 + 165 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q2)pos3.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 385 + 185 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q2)pos2.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 385 + 225 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q2)posHome.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 385 + 205 + 70 + 20 - - - - 0 - 0 - 70 - 20 - - - - caLineEdit::Height - - - $(P)$(Q2)pos5.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - decimal - - - - - - 0 - 20 - 70 - 20 - - - - caLineEdit::Height - - - $(P)$(Q2)pos4.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - decimal - - - - - - 0 - 40 - 70 - 20 - - - - caLineEdit::Height - - - $(P)$(Q2)pos3.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - decimal - - - - - - 0 - 60 - 70 - 20 - - - - caLineEdit::Height - - - $(P)$(Q2)pos2.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - decimal - - - - - - 0 - 100 - 70 - 20 - - - - caLineEdit::Height - - - $(P)$(Q2)posHome.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - decimal - - - - - - 0 - 80 - 70 - 20 - - - - caLineEdit::Height - - - $(P)$(Q2)pos1.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - decimal - - + + caLineEdit::WidthAndHeight + + + $(P)$(Q2)pos1.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + @@ -779,14 +1067,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 410 - 245 - 40 - 10 - - 253 @@ -811,7 +1091,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} INVALID - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 410 + 245 + 40 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -827,7 +1115,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q1)name5 @@ -846,6 +1134,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -863,7 +1166,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q1)name4 @@ -882,6 +1185,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -899,7 +1217,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q1)name3 @@ -918,6 +1236,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -935,7 +1268,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q1)name2 @@ -954,6 +1287,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -971,7 +1319,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q1)nameHome @@ -990,6 +1338,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1007,7 +1370,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q1)name1 @@ -1026,6 +1389,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1043,7 +1421,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q2)name5 @@ -1062,6 +1440,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1079,7 +1472,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q2)name4 @@ -1098,6 +1491,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1115,7 +1523,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q2)name3 @@ -1134,6 +1542,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1151,7 +1574,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q2)name2 @@ -1170,6 +1593,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1187,7 +1625,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q2)nameHome @@ -1206,6 +1644,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1223,7 +1676,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q2)name1 @@ -1242,6 +1695,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1253,14 +1721,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 155 - 100 - 70 - 14 - - 0 @@ -1279,24 +1739,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} position - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 80 + 155 100 70 14 + + + + QFrame::NoFrame + 0 @@ -1315,24 +1775,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} control - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 5 + 80 100 70 14 + + + + QFrame::NoFrame + 0 @@ -1351,24 +1811,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} material - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - 155 - 85 + 5 + 100 70 14 + + + + QFrame::NoFrame + 0 @@ -1387,24 +1847,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} motor - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 80 + 155 85 70 14 + + + + QFrame::NoFrame + 0 @@ -1422,19 +1882,19 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 5 + 80 85 70 14 + + + + QFrame::NoFrame + 0 @@ -1453,24 +1913,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} filter - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 5 + 85 + 70 + 14 + + QFrame::NoFrame - - - 0 - 0 - 460 - 18 - - 0 @@ -1489,11 +1949,19 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} User Filter $(P)$(Q1) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 0 + 460 + 18 + + @@ -1532,14 +2000,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 175 - 45 - 40 - 10 - - 253 @@ -1564,7 +2024,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} INVALID - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 175 + 45 + 40 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1580,7 +2048,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(LOCK1)lockOut.OUTN @@ -1599,6 +2067,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1610,14 +2093,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 0 - 42 - 55 - 18 - - 0 @@ -1636,7 +2111,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Lock_PV - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 42 + 55 + 18 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1675,7 +2158,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Solid - 1,1;458,1; + 458,1; @@ -1711,21 +2194,13 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Solid - 1,1;458,1; + 458,1; QFrame::NoFrame - - - 5 - 65 - 220 - 20 - - 0 @@ -1744,24 +2219,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} upstream - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 235 + 5 65 220 20 + + + + QFrame::NoFrame + 0 @@ -1780,24 +2255,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} downstream - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 235 + 65 + 220 + 20 + + QFrame::NoFrame - - - 385 - 100 - 70 - 14 - - 0 @@ -1816,24 +2291,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} position - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 310 + 385 100 70 14 + + + + QFrame::NoFrame + 0 @@ -1852,24 +2327,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} control - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 235 + 310 100 70 14 + + + + QFrame::NoFrame + 0 @@ -1888,24 +2363,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} material - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 385 - 85 + 235 + 100 70 14 + + + + QFrame::NoFrame + 0 @@ -1924,24 +2399,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} motor - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 310 + 385 85 70 14 + + + + QFrame::NoFrame + 0 @@ -1959,19 +2434,19 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 235 + 310 85 70 14 + + + + QFrame::NoFrame + 0 @@ -1990,11 +2465,19 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} filter - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 235 + 85 + 70 + 14 + + @@ -2029,21 +2512,13 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Solid - 1,1;1,211; + 1,211; QFrame::NoFrame - - - 5 - 278 - 450 - 14 - - 0 @@ -2062,7 +2537,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} NOTE: After changing filter-material description, you must - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 278 + 450 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2101,7 +2584,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Solid - 1,1;458,1; + 458,1; @@ -2141,14 +2624,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 405 - 45 - 40 - 10 - - 253 @@ -2173,7 +2648,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} INVALID - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 405 + 45 + 40 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2189,7 +2672,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(LOCK2)lockOut.OUTN @@ -2208,6 +2691,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -2219,14 +2717,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 230 - 42 - 55 - 18 - - 0 @@ -2245,7 +2735,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Lock_PV - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 230 + 42 + 55 + 18 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2256,7 +2754,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} caLabel_1 caLabel_2 caLabel_3 - caFrame_0 caLabel_4 caLabel_5 caLabel_6 diff --git a/opticsApp/op/ui/2iddMicroscope.ui b/opticsApp/op/ui/autoconvert/2iddMicroscope.ui similarity index 97% rename from opticsApp/op/ui/2iddMicroscope.ui rename to opticsApp/op/ui/autoconvert/2iddMicroscope.ui index c21f5b8..7c3a974 100644 --- a/opticsApp/op/ui/2iddMicroscope.ui +++ b/opticsApp/op/ui/autoconvert/2iddMicroscope.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -88,14 +176,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 3 - 605 - 14 - - 0 @@ -114,11 +194,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 2IDD X-Ray Microscope - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 3 + 605 + 14 + + @@ -153,7 +241,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 604,1;1,1; + 1,1; @@ -219,7 +307,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Dash - 0,0;161,55; + 161,55; @@ -270,7 +358,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;50,0; + 50,0; @@ -303,7 +391,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,22;26,0; + 26,0; @@ -336,21 +424,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,37;0,0; + 0,0; QFrame::NoFrame - - - 58 - 49 - 10 - 14 - - 0 @@ -369,7 +449,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Z - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 58 + 49 + 10 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -379,14 +467,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 32 - 19 - 10 - 14 - - 0 @@ -405,7 +485,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} X - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 32 + 19 + 10 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -415,14 +503,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 0 - 10 - 14 - - 0 @@ -441,7 +521,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Y - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 0 + 10 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -453,14 +541,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 160 - 140 - 130 - 20 - - 0 @@ -479,11 +559,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Zone Plate 2 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 160 + 140 + 130 + 20 + + @@ -559,14 +647,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 310 - 140 - 135 - 20 - - 0 @@ -585,11 +665,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} OSA - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 310 + 140 + 135 + 20 + + @@ -628,14 +716,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 460 - 140 - 135 - 20 - - 0 @@ -654,11 +734,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Sample - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 460 + 140 + 135 + 20 + + @@ -785,7 +873,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m20.RBV @@ -824,7 +912,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m20.VAL @@ -860,7 +948,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m20.TWF @@ -899,7 +987,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m20.TWR @@ -1055,7 +1143,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m20.TWV @@ -1091,7 +1179,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m19.RBV @@ -1130,7 +1218,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m19.VAL @@ -1166,7 +1254,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m19.TWF @@ -1205,7 +1293,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m19.TWR @@ -1439,7 +1527,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m19.TWV @@ -1469,14 +1557,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 330 - 167 - 10 - 14 - - 0 @@ -1495,7 +1575,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Y - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 330 + 167 + 10 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1550,7 +1638,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m12.RBV @@ -1589,7 +1677,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m12.VAL @@ -1625,7 +1713,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m12.TWF @@ -1664,7 +1752,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m12.TWR @@ -1898,7 +1986,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m12.TWV @@ -1928,14 +2016,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 330 - 197 - 10 - 14 - - 0 @@ -1954,7 +2034,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} X - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 330 + 197 + 10 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2009,7 +2097,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m11.RBV @@ -2048,7 +2136,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m11.VAL @@ -2084,7 +2172,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m11.TWF @@ -2123,7 +2211,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m11.TWR @@ -2357,7 +2445,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m11.TWV @@ -2471,7 +2559,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m18.RBV @@ -2510,7 +2598,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m18.VAL @@ -2663,7 +2751,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m18.TWF @@ -2702,7 +2790,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m18.TWR @@ -2741,7 +2829,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m18.TWV @@ -2808,14 +2896,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 480 - 167 - 10 - 14 - - 0 @@ -2834,7 +2914,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Y - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 480 + 167 + 10 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2889,7 +2977,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m14.RBV @@ -2928,7 +3016,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m14.VAL @@ -3159,7 +3247,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m14.TWF @@ -3198,7 +3286,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m14.TWR @@ -3231,14 +3319,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 480 - 197 - 10 - 14 - - 0 @@ -3257,7 +3337,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} X - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 480 + 197 + 10 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3312,7 +3400,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m13.RBV @@ -3351,7 +3439,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m13.VAL @@ -3582,7 +3670,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m13.TWF @@ -3621,7 +3709,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m13.TWR @@ -3660,7 +3748,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m14.TWV @@ -3696,7 +3784,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m13.TWV @@ -3885,14 +3973,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 180 - 167 - 10 - 14 - - 0 @@ -3911,7 +3991,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Y - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 180 + 167 + 10 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3921,14 +4009,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 180 - 197 - 10 - 14 - - 0 @@ -3947,7 +4027,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} X - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 180 + 197 + 10 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3957,14 +4045,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 180 - 227 - 10 - 14 - - 0 @@ -3983,7 +4063,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Z - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 180 + 227 + 10 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -4026,14 +4114,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 10 - 140 - 130 - 20 - - 0 @@ -4052,11 +4132,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Zone Plate 1 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 10 + 140 + 130 + 20 + + @@ -4146,7 +4234,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m4.RBV @@ -4185,7 +4273,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m4.TWF @@ -4224,7 +4312,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m4.TWR @@ -4380,7 +4468,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m4.VAL @@ -4416,7 +4504,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m4.TWV @@ -4452,7 +4540,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m3.RBV @@ -4491,7 +4579,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m3.VAL @@ -4527,7 +4615,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m3.TWF @@ -4566,7 +4654,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m3.TWR @@ -4800,7 +4888,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m3.TWV @@ -4914,7 +5002,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m22.RBV @@ -4953,7 +5041,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m22.VAL @@ -4989,7 +5077,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m22.TWF @@ -5028,7 +5116,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m22.TWR @@ -5184,7 +5272,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m4.TWV @@ -5368,14 +5456,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 30 - 167 - 10 - 14 - - 0 @@ -5394,7 +5474,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Y - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 30 + 167 + 10 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -5404,14 +5492,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 30 - 197 - 10 - 14 - - 0 @@ -5430,7 +5510,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} X - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 30 + 197 + 10 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -5440,14 +5528,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 30 - 227 - 10 - 14 - - 0 @@ -5466,7 +5546,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Z - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 30 + 227 + 10 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -5482,7 +5570,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -5610,7 +5698,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;300,100; + 300,100; @@ -5643,7 +5731,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,100;300,0; + 300,0; @@ -5932,7 +6020,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 6,0;0,3; + 0,3; @@ -6076,7 +6164,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 5,0;0,0; + 0,0; @@ -6180,7 +6268,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 6,0;0,1; + 0,1; @@ -6214,7 +6302,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 125,0;0,0; + 0,0; @@ -6247,7 +6335,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 125,0;0,0; + 0,0; @@ -6263,14 +6351,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 0 - 50 - 10 - - 255 @@ -6289,24 +6369,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} ORDER - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 0 - 10 + 0 50 10 + + + + QFrame::NoFrame + 255 @@ -6325,24 +6405,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} SORTING - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 0 - 20 + 10 50 10 + + + + QFrame::NoFrame + 255 @@ -6361,11 +6441,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} APERTURE - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 20 + 50 + 10 + + @@ -6398,7 +6486,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Dash - 0,0;88,88; + 88,88; @@ -6431,7 +6519,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Dash - 0,88;88,0; + 88,0; @@ -6508,14 +6596,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 480 - 97 - 10 - 14 - - 0 @@ -6534,7 +6614,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} X - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 480 + 97 + 10 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -6589,7 +6677,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m23.RBV @@ -6628,7 +6716,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m23.VAL @@ -6853,14 +6941,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 460 - 40 - 135 - 20 - - 0 @@ -6879,11 +6959,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Camera - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 460 + 40 + 135 + 20 + + @@ -6932,7 +7020,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m23.TWF @@ -6971,7 +7059,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m23.TWR @@ -7004,14 +7092,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 480 - 67 - 10 - 14 - - 0 @@ -7030,7 +7110,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Y - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 480 + 67 + 10 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -7085,7 +7173,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m24.RBV @@ -7124,7 +7212,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m24.VAL @@ -7355,7 +7443,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m24.TWF @@ -7394,7 +7482,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m24.TWR @@ -7433,7 +7521,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m24.TWV @@ -7469,7 +7557,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m23.TWV @@ -7669,7 +7757,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Dash - 0,0;25,37; + 25,37; caRectangle_0 diff --git a/opticsApp/op/ui/2iddMicroscope_full.ui b/opticsApp/op/ui/autoconvert/2iddMicroscope_full.ui similarity index 97% rename from opticsApp/op/ui/2iddMicroscope_full.ui rename to opticsApp/op/ui/autoconvert/2iddMicroscope_full.ui index 5b4c81a..a96ed6d 100644 --- a/opticsApp/op/ui/2iddMicroscope_full.ui +++ b/opticsApp/op/ui/autoconvert/2iddMicroscope_full.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -48,7 +136,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Dash - 0,0;40,55; + 40,55; @@ -88,14 +176,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 1 - 3 - 760 - 14 - - 0 @@ -114,11 +194,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 2IDD X-Ray Microscope - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 1 + 3 + 760 + 14 + + @@ -153,7 +241,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 752,1;1,1; + 1,1; @@ -255,7 +343,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;300,100; + 300,100; @@ -288,7 +376,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,100;300,0; + 300,0; @@ -577,7 +665,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 6,0;0,3; + 0,3; @@ -721,7 +809,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 5,0;0,0; + 0,0; @@ -825,7 +913,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 6,0;0,1; + 0,1; @@ -859,7 +947,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 125,0;0,0; + 0,0; @@ -892,7 +980,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 125,0;0,0; + 0,0; @@ -908,14 +996,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 0 - 50 - 10 - - 255 @@ -934,24 +1014,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} ORDER - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 0 - 10 + 0 50 10 + + + + QFrame::NoFrame + 255 @@ -970,24 +1050,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} SORTING - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 0 - 20 + 10 50 10 + + + + QFrame::NoFrame + 255 @@ -1006,11 +1086,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} APERTURE - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 20 + 50 + 10 + + @@ -1043,7 +1131,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Dash - 0,0;88,88; + 88,88; @@ -1076,7 +1164,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Dash - 0,88;88,0; + 88,0; @@ -1127,7 +1215,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;50,0; + 50,0; @@ -1160,7 +1248,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,22;26,0; + 26,0; @@ -1193,21 +1281,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,37;0,0; + 0,0; QFrame::NoFrame - - - 58 - 49 - 10 - 14 - - 0 @@ -1226,7 +1306,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Z - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 58 + 49 + 10 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1236,14 +1324,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 32 - 19 - 10 - 14 - - 0 @@ -1262,7 +1342,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} X - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 32 + 19 + 10 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1272,14 +1360,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 0 - 10 - 14 - - 0 @@ -1298,7 +1378,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Y - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 0 + 10 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1389,7 +1477,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).EY @@ -1428,7 +1516,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).Y @@ -1458,14 +1546,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 255 - 371 - 10 - 14 - - 0 @@ -1484,7 +1564,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Y - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 255 + 371 + 10 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1500,7 +1588,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).EX @@ -1539,7 +1627,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).X @@ -1569,14 +1657,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 135 - 371 - 10 - 14 - - 0 @@ -1595,7 +1675,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} X - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 135 + 371 + 10 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1605,14 +1693,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 368 - 372 - 70 - 10 - - 253 @@ -1637,11 +1717,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} MOTOR LIMIT - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 368 + 372 + 70 + 10 + + @@ -1656,14 +1744,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 20 - 0 - 50 - 20 - - 0 @@ -1682,11 +1762,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Table - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 20 + 0 + 50 + 20 + + @@ -1738,7 +1826,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q):x_tweak.D @@ -1774,7 +1862,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q):y_tweak.D @@ -1810,7 +1898,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):x_dec.VAL @@ -1849,7 +1937,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):x_inc.VAL @@ -1888,7 +1976,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):y_dec.VAL @@ -1927,7 +2015,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):y_inc.VAL @@ -2116,14 +2204,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 140 - 150 - 20 - - 0 @@ -2142,11 +2222,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Zone Plate 1 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 5 + 140 + 150 + 20 + + @@ -2236,7 +2324,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m22.RBV @@ -2275,7 +2363,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m22.VAL @@ -2311,7 +2399,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m22.TWF @@ -2350,7 +2438,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m22.TWR @@ -2506,7 +2594,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m4.TWV @@ -2620,7 +2708,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m4.RBV @@ -2659,7 +2747,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m4.TWF @@ -2698,7 +2786,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m4.TWR @@ -2854,7 +2942,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m4.VAL @@ -2890,7 +2978,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m4.TWV @@ -2926,7 +3014,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m3.RBV @@ -2965,7 +3053,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m3.VAL @@ -3001,7 +3089,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m3.TWF @@ -3040,7 +3128,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m3.TWR @@ -3274,7 +3362,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m3.TWV @@ -3310,7 +3398,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m0.RBV @@ -3349,7 +3437,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m0.VAL @@ -3385,7 +3473,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m0.TWF @@ -3424,7 +3512,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m0.TWR @@ -3658,7 +3746,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m0.TWV @@ -3694,7 +3782,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m0.RBV @@ -3733,7 +3821,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m0.VAL @@ -3769,7 +3857,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m0.TWF @@ -3808,7 +3896,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m0.TWR @@ -4042,7 +4130,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m0.TWV @@ -4078,7 +4166,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m0.RBV @@ -4117,7 +4205,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m0.VAL @@ -4153,7 +4241,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m0.TWF @@ -4192,7 +4280,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m0.TWR @@ -4426,7 +4514,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m0.TWV @@ -4456,14 +4544,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 30 - 317 - 15 - 14 - - 0 @@ -4482,7 +4562,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Z - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 30 + 317 + 15 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -4531,14 +4619,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 30 - 167 - 15 - 14 - - 0 @@ -4557,7 +4637,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Y - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 30 + 167 + 15 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -4606,14 +4694,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 30 - 197 - 15 - 14 - - 0 @@ -4632,7 +4712,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} X - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 30 + 197 + 15 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -4681,14 +4769,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 30 - 227 - 15 - 14 - - 0 @@ -4707,10 +4787,18 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + ESimpleLabel::WidthAndHeight + + + + 30 + 227 + 15 + 14 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -4744,14 +4832,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 30 - 227 - 15 - 14 - - 0 @@ -4770,7 +4850,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 0Y - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 30 + 227 + 15 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -4780,14 +4868,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 30 - 257 - 15 - 14 - - 0 @@ -4806,15 +4886,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame + ESimpleLabel::WidthAndHeight @@ -4824,6 +4896,14 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 14 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 0 @@ -4842,7 +4922,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 0X - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 30 + 257 + 15 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -4879,14 +4967,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 30 - 287 - 15 - 14 - - 0 @@ -4905,15 +4985,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame + ESimpleLabel::WidthAndHeight @@ -4923,6 +4995,14 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 14 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 0 @@ -4941,7 +5021,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 0Z - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 30 + 287 + 15 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -5214,14 +5302,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 160 - 140 - 150 - 20 - - 0 @@ -5240,11 +5320,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Zone Plate 2 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 160 + 140 + 150 + 20 + + @@ -5320,14 +5408,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 320 - 140 - 135 - 20 - - 0 @@ -5346,11 +5426,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} OSA - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 320 + 140 + 135 + 20 + + @@ -5389,14 +5477,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 470 - 140 - 135 - 20 - - 0 @@ -5415,11 +5495,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Sample - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 470 + 140 + 135 + 20 + + @@ -5462,14 +5550,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 490 - 197 - 10 - 14 - - 0 @@ -5488,7 +5568,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Y - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 490 + 197 + 10 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -5543,7 +5631,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m14.RBV @@ -5582,7 +5670,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m14.VAL @@ -5891,7 +5979,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m20.RBV @@ -5930,7 +6018,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m20.VAL @@ -5966,7 +6054,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m20.TWF @@ -6005,7 +6093,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m20.TWR @@ -6161,7 +6249,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m20.TWV @@ -6197,7 +6285,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m19.RBV @@ -6236,7 +6324,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m19.VAL @@ -6272,7 +6360,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m19.TWF @@ -6311,7 +6399,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m19.TWR @@ -6545,7 +6633,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m19.TWV @@ -6581,7 +6669,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m0.RBV @@ -6620,7 +6708,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m0.VAL @@ -6656,7 +6744,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m0.TWF @@ -6695,7 +6783,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m0.TWR @@ -6929,7 +7017,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m0.TWV @@ -7043,7 +7131,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m18.RBV @@ -7082,7 +7170,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m18.VAL @@ -7235,7 +7323,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m18.TWF @@ -7274,7 +7362,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m18.TWR @@ -7313,7 +7401,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m18.TWV @@ -7349,7 +7437,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m0.RBV @@ -7388,7 +7476,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m0.VAL @@ -7619,7 +7707,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m0.TWF @@ -7658,7 +7746,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m0.TWR @@ -7697,7 +7785,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m0.TWV @@ -7733,7 +7821,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m0.RBV @@ -7772,7 +7860,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m0.VAL @@ -7808,7 +7896,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m0.TWF @@ -7847,7 +7935,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m0.TWR @@ -8081,7 +8169,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m0.TWV @@ -8111,14 +8199,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 340 - 167 - 10 - 14 - - 0 @@ -8137,7 +8217,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Y - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 340 + 167 + 10 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -8192,7 +8280,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m12.RBV @@ -8231,7 +8319,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m12.VAL @@ -8267,7 +8355,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m12.TWF @@ -8306,7 +8394,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m12.TWR @@ -8540,7 +8628,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m12.TWV @@ -8570,14 +8658,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 340 - 197 - 10 - 14 - - 0 @@ -8596,7 +8676,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} X - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 340 + 197 + 10 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -8651,7 +8739,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m11.RBV @@ -8690,7 +8778,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m11.VAL @@ -8726,7 +8814,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m11.TWF @@ -8765,7 +8853,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m11.TWR @@ -8999,7 +9087,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m11.TWV @@ -9035,7 +9123,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m14.TWF @@ -9074,7 +9162,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m14.TWR @@ -9107,14 +9195,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 490 - 167 - 10 - 14 - - 0 @@ -9133,7 +9213,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Z - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 490 + 167 + 10 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -9188,7 +9276,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m0.RBV @@ -9227,7 +9315,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m0.VAL @@ -9458,7 +9546,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m0.TWF @@ -9497,7 +9585,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m0.TWR @@ -9530,14 +9618,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 490 - 227 - 10 - 14 - - 0 @@ -9556,7 +9636,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} X - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 490 + 227 + 10 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -9611,7 +9699,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m13.RBV @@ -9650,7 +9738,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m13.VAL @@ -9881,7 +9969,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m13.TWF @@ -9920,7 +10008,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m13.TWR @@ -9959,7 +10047,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m0.TWV @@ -9995,7 +10083,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m14.TWV @@ -10031,7 +10119,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m13.TWV @@ -10061,14 +10149,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 185 - 167 - 15 - 14 - - 0 @@ -10087,7 +10167,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Y - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 185 + 167 + 15 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -10136,14 +10224,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 185 - 197 - 15 - 14 - - 0 @@ -10162,7 +10242,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} X - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 185 + 197 + 15 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -10211,14 +10299,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 185 - 227 - 15 - 14 - - 0 @@ -10237,7 +10317,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 185 + 227 + 15 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -10274,14 +10362,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 185 - 227 - 15 - 14 - - 0 @@ -10300,7 +10380,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 0Y - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 185 + 227 + 15 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -10310,14 +10398,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 185 - 317 - 15 - 14 - - 0 @@ -10336,7 +10416,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Z - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 185 + 317 + 15 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -10385,14 +10473,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 185 - 287 - 15 - 14 - - 0 @@ -10411,15 +10491,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame + ESimpleLabel::WidthAndHeight @@ -10429,6 +10501,14 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 14 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 0 @@ -10447,7 +10527,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 0Z - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 185 + 287 + 15 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -10484,14 +10572,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 185 - 257 - 15 - 14 - - 0 @@ -10510,15 +10590,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame + ESimpleLabel::WidthAndHeight @@ -10528,6 +10600,14 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 14 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 0 @@ -10546,7 +10626,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 0X - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 185 + 257 + 15 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -10662,14 +10750,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 20 - 55 - 75 - 10 - - 0 @@ -10688,7 +10768,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} DISABLED - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 20 + 55 + 75 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -10698,14 +10786,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 20 - 45 - 75 - 10 - - 0 @@ -10724,7 +10804,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} MOTOR - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 20 + 45 + 75 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -10734,14 +10822,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 20 - 35 - 75 - 10 - - 251 @@ -10760,7 +10840,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} SOFT LIMIT - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 20 + 35 + 75 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -10770,14 +10858,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 20 - 25 - 75 - 10 - - 115 @@ -10796,7 +10876,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} MOVING - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 20 + 25 + 75 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -10806,14 +10894,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 20 - 15 - 75 - 10 - - 253 @@ -10832,7 +10912,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} LIMIT SWITCH - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 20 + 15 + 75 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -10875,14 +10963,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 0 - 90 - 14 - - 0 @@ -10901,7 +10981,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Legend: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 0 + 90 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -11054,7 +11142,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -11120,14 +11208,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 410 - 250 - 310 - 20 - - 0 @@ -11146,11 +11226,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Huber 430 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 410 + 250 + 310 + 20 + + @@ -11199,7 +11287,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m16.RBV @@ -11238,7 +11326,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m16.VAL @@ -11469,7 +11557,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m16.TWR @@ -11508,7 +11596,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m16.TWF @@ -11547,7 +11635,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m15.RBV @@ -11586,7 +11674,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m15.VAL @@ -11817,7 +11905,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m15.TWR @@ -11856,7 +11944,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m15.TWF @@ -11895,7 +11983,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m10.RBV @@ -11934,7 +12022,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m10.VAL @@ -12165,7 +12253,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m10.TWR @@ -12204,7 +12292,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m10.TWF @@ -12243,7 +12331,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m15.TWV @@ -12279,7 +12367,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m16.TWV @@ -12315,7 +12403,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m10.TWV @@ -12345,14 +12433,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 595 - 307 - 15 - 14 - - 0 @@ -12371,15 +12451,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 0X - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame + ESimpleLabel::WidthAndHeight @@ -12389,6 +12461,14 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 14 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 0 @@ -12407,7 +12487,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 595 + 307 + 15 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -12456,14 +12544,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 555 - 310 - 15 - 10 - - 0 @@ -12482,7 +12562,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} PHI - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 555 + 310 + 15 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -12492,14 +12580,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 595 - 277 - 15 - 14 - - 0 @@ -12518,15 +12598,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame + ESimpleLabel::WidthAndHeight @@ -12536,6 +12608,14 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 14 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 0 @@ -12554,7 +12634,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 0Z - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 595 + 277 + 15 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -12603,14 +12691,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 555 - 280 - 15 - 10 - - 0 @@ -12629,7 +12709,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} CHI - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 555 + 280 + 15 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -12639,14 +12727,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 595 - 337 - 15 - 14 - - 0 @@ -12665,7 +12745,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Z - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 595 + 337 + 15 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -12720,7 +12808,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m7.RBV @@ -12759,7 +12847,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m7.VAL @@ -12990,7 +13078,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m7.TWR @@ -13029,7 +13117,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m7.TWF @@ -13068,7 +13156,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m9.RBV @@ -13107,7 +13195,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m9.VAL @@ -13338,7 +13426,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m9.TWR @@ -13377,7 +13465,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m9.TWF @@ -13416,7 +13504,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m8.RBV @@ -13455,7 +13543,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m8.VAL @@ -13686,7 +13774,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m8.TWR @@ -13725,7 +13813,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m8.TWF @@ -13764,7 +13852,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m9.TWV @@ -13800,7 +13888,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m7.TWV @@ -13836,7 +13924,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m8.TWV @@ -13866,14 +13954,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 430 - 307 - 15 - 14 - - 0 @@ -13892,15 +13972,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame + ESimpleLabel::WidthAndHeight @@ -13910,6 +13982,14 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 14 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 0 @@ -13928,7 +14008,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 0 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 430 + 307 + 15 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -13977,14 +14065,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 430 - 277 - 15 - 14 - - 0 @@ -14003,7 +14083,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} X - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 430 + 277 + 15 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -14052,14 +14140,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 430 - 337 - 15 - 14 - - 0 @@ -14078,15 +14158,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame + ESimpleLabel::WidthAndHeight @@ -14096,6 +14168,14 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 14 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 0 @@ -14114,7 +14194,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 20 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 430 + 337 + 15 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -14330,14 +14418,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 600 - 97 - 10 - 14 - - 0 @@ -14356,7 +14436,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} X - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 600 + 97 + 10 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -14411,7 +14499,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m23.RBV @@ -14450,7 +14538,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m23.VAL @@ -14675,14 +14763,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 580 - 40 - 135 - 20 - - 0 @@ -14701,11 +14781,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Camera - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 580 + 40 + 135 + 20 + + @@ -14754,7 +14842,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m23.TWF @@ -14793,7 +14881,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m23.TWR @@ -14826,14 +14914,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 600 - 67 - 10 - 14 - - 0 @@ -14852,7 +14932,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Y - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 600 + 67 + 10 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -14907,7 +14995,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m24.RBV @@ -14946,7 +15034,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m24.VAL @@ -15177,7 +15265,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m24.TWF @@ -15216,7 +15304,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)m24.TWR @@ -15255,7 +15343,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m24.TWV @@ -15291,7 +15379,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)m23.TWV diff --git a/opticsApp/op/ui/2postMirror.ui b/opticsApp/op/ui/autoconvert/2postMirror.ui similarity index 95% rename from opticsApp/op/ui/2postMirror.ui rename to opticsApp/op/ui/autoconvert/2postMirror.ui index 765a355..ba9dd8f 100644 --- a/opticsApp/op/ui/2postMirror.ui +++ b/opticsApp/op/ui/autoconvert/2postMirror.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -170,14 +258,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 0 - 10 - 20 - - 0 @@ -196,24 +276,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Y - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 0 + 10 + 20 + + QFrame::NoFrame - - - 10 - 8 - 60 - 12 - - 0 @@ -232,7 +312,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} AVERAGE - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 8 + 60 + 12 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -249,7 +337,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)t2.D @@ -288,7 +376,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)avg.VAL @@ -324,7 +412,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)avg_tweak.A @@ -363,7 +451,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)avg_tweakVal @@ -399,7 +487,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)avg_tweak.B @@ -438,7 +526,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)t3.G @@ -477,7 +565,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)t3.H @@ -516,7 +604,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)avg.EGU @@ -549,14 +637,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 237 - 112 - 60 - 20 - - 0 @@ -575,11 +655,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Angle - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 237 + 112 + 60 + 20 + + @@ -591,7 +679,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)t2.C @@ -630,7 +718,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)angl.VAL @@ -666,7 +754,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)angl_tweak.A @@ -705,7 +793,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)angl_tweakVal @@ -741,7 +829,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)angl_tweak.B @@ -780,7 +868,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)up_tweak.A @@ -819,7 +907,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)up_tweakVal @@ -855,7 +943,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)up_tweak.B @@ -894,7 +982,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)t3.E @@ -933,7 +1021,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)t3.F @@ -972,7 +1060,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)angl.EGU @@ -1014,14 +1102,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 0 - 10 - 20 - - 0 @@ -1040,24 +1120,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Y - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 0 + 10 + 20 + + QFrame::NoFrame - - - 10 - 8 - 60 - 12 - - 0 @@ -1076,7 +1156,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} DOWNSTREAM - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 8 + 60 + 12 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1093,7 +1181,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)t2.A @@ -1132,7 +1220,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)dn.VAL @@ -1168,7 +1256,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)dn_tweak.A @@ -1207,7 +1295,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)dn_tweakVal @@ -1243,7 +1331,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)dn_tweak.B @@ -1282,7 +1370,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mDn).LLM @@ -1321,7 +1409,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mDn).HLM @@ -1393,7 +1481,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mDn).EGU @@ -1435,14 +1523,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 0 - 10 - 20 - - 0 @@ -1461,7 +1541,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Y - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 0 + 10 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1471,14 +1559,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 10 - 8 - 60 - 12 - - 0 @@ -1497,7 +1577,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} UPSTREAM - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 8 + 60 + 12 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1514,7 +1602,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)t2.B @@ -1553,7 +1641,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)up.VAL @@ -1589,7 +1677,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mUp).LLM @@ -1628,7 +1716,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mUp).HLM @@ -1667,7 +1755,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mUp).EGU @@ -1742,7 +1830,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 3,3;230,29; + 230,29; @@ -1778,7 +1866,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 155,1;1,1; + 1,1; @@ -1824,7 +1912,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;0,24; + 0,24; @@ -1861,7 +1949,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;10,0; + 10,0; @@ -1898,7 +1986,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;5,0; + 5,0; @@ -1935,7 +2023,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;5,0; + 5,0; @@ -1972,7 +2060,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;5,0; + 5,0; @@ -2009,7 +2097,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;5,0; + 5,0; @@ -2046,7 +2134,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;5,0; + 5,0; @@ -2083,7 +2171,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;5,0; + 5,0; @@ -2120,7 +2208,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;10,0; + 10,0; @@ -2157,7 +2245,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;10,0; + 10,0; @@ -2204,7 +2292,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;0,24; + 0,24; @@ -2241,7 +2329,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;10,0; + 10,0; @@ -2278,7 +2366,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;5,0; + 5,0; @@ -2315,7 +2403,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;5,0; + 5,0; @@ -2352,7 +2440,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;5,0; + 5,0; @@ -2389,7 +2477,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;5,0; + 5,0; @@ -2426,7 +2514,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;5,0; + 5,0; @@ -2463,7 +2551,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;5,0; + 5,0; @@ -2500,7 +2588,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;10,0; + 10,0; @@ -2537,7 +2625,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;10,0; + 10,0; @@ -2584,7 +2672,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;0,24; + 0,24; @@ -2621,7 +2709,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;10,0; + 10,0; @@ -2658,7 +2746,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;5,0; + 5,0; @@ -2695,7 +2783,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;5,0; + 5,0; @@ -2732,7 +2820,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;5,0; + 5,0; @@ -2769,7 +2857,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;5,0; + 5,0; @@ -2806,7 +2894,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;5,0; + 5,0; @@ -2843,7 +2931,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;5,0; + 5,0; @@ -2880,7 +2968,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;10,0; + 10,0; @@ -2917,7 +3005,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;10,0; + 10,0; @@ -2954,7 +3042,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 106,28;1,1; + 1,1; @@ -3000,21 +3088,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 100,5;0,5;15,0; + 15,0; QFrame::NoFrame - - - 21 - 0 - 80 - 10 - - 255 @@ -3033,7 +3113,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} INCIDENT BEAM - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 21 + 0 + 80 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3073,7 +3161,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 20,2;1,1; + 1,1; @@ -3174,7 +3262,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,38;0,30;76,0; + 76,0; @@ -3207,7 +3295,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,26;0,19;65,0; + 65,0; @@ -3240,7 +3328,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 66,18;66,10;0,0; + 0,0; @@ -3277,7 +3365,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,43;0,17;27,0; + 27,0; @@ -3317,14 +3405,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 240 - 270 - 60 - 20 - - 0 @@ -3343,7 +3423,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} length - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 240 + 270 + 60 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3359,7 +3447,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)length.EGU @@ -3440,7 +3528,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)sync.PROC @@ -3479,7 +3567,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)length.VAL @@ -3518,7 +3606,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -3845,7 +3933,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)avg:scanParms.LOAD @@ -3884,7 +3972,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)avg:scanParms.GO @@ -3923,7 +4011,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -3962,7 +4050,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)angl:scanParms.LOAD @@ -4001,7 +4089,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)angl:scanParms.GO @@ -4040,7 +4128,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -4079,7 +4167,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)up:scanParms.LOAD @@ -4118,7 +4206,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)up:scanParms.GO @@ -4157,7 +4245,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -4196,7 +4284,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -4235,7 +4323,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)dn:scanParms.GO @@ -4274,7 +4362,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)dn:scanParms.LOAD @@ -4346,7 +4434,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)mirror-$(Q).DESC @@ -4376,14 +4464,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 355 - 4 - 100 - 10 - - 0 @@ -4402,11 +4482,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Mirror $(Q) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 355 + 4 + 100 + 10 + + @@ -4441,7 +4529,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;459,1; + 459,1; caRectangle_0 diff --git a/opticsApp/op/ui/2slit.ui b/opticsApp/op/ui/autoconvert/2slit.ui similarity index 95% rename from opticsApp/op/ui/2slit.ui rename to opticsApp/op/ui/autoconvert/2slit.ui index 8d2dba5..4444c72 100644 --- a/opticsApp/op/ui/2slit.ui +++ b/opticsApp/op/ui/autoconvert/2slit.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -154,14 +242,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 42 - 106 - 20 - - 0 @@ -180,11 +260,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(SLIT) - - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 5 + 42 + 106 + 20 + + @@ -263,14 +351,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 326 - 42 - 106 - 20 - - 0 @@ -289,11 +369,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Center - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 326 + 42 + 106 + 20 + + @@ -305,7 +393,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)t2.D @@ -359,7 +447,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(SLIT)center_tweak.A @@ -398,7 +486,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)center_tweakVal.VAL @@ -449,7 +537,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(SLIT)center_tweak.B @@ -488,7 +576,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)center.DRVL @@ -542,7 +630,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)center.DRVH @@ -630,14 +718,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 220 - 42 - 106 - 20 - - 0 @@ -656,11 +736,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Size - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 220 + 42 + 106 + 20 + + @@ -672,7 +760,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)t2.C @@ -726,7 +814,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)size.VAL @@ -777,7 +865,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(SLIT)size_tweak.A @@ -816,7 +904,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)size_tweakVal.VAL @@ -867,7 +955,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(SLIT)size_tweak.B @@ -906,7 +994,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)size.DRVL @@ -960,7 +1048,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)size.DRVH @@ -1048,14 +1136,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 109 - 42 - 106 - 20 - - 0 @@ -1074,11 +1154,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(SLIT) + - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 109 + 42 + 106 + 20 + + @@ -1090,7 +1178,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)t2.A @@ -1144,7 +1232,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)xp.VAL @@ -1195,7 +1283,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(SLIT)xp_tweak.A @@ -1234,7 +1322,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)xp_tweakVal.VAL @@ -1285,7 +1373,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(SLIT)xp_tweak.B @@ -1324,7 +1412,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)xp.DRVL @@ -1378,7 +1466,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)xp.DRVH @@ -1472,7 +1560,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)t2.B @@ -1526,7 +1614,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)xn.VAL @@ -1577,7 +1665,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(SLIT)xn_tweak.A @@ -1616,7 +1704,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)xn_tweakVal.VAL @@ -1667,7 +1755,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(SLIT)xn_tweak.B @@ -1706,7 +1794,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)xn.DRVL @@ -1760,7 +1848,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)xn.DRVH @@ -1856,7 +1944,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -1895,7 +1983,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(SLIT)sync.PROC @@ -1928,14 +2016,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 7 - 5 - 21 - - 0 @@ -1954,7 +2034,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 7 + 5 + 21 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2138,7 +2226,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)center.VAL @@ -2183,14 +2271,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 10 - 25 - 100 - 10 - - 0 @@ -2209,24 +2289,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} LOOKING UPSTREAM - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 10 + 25 + 100 + 10 + + QFrame::NoFrame - - - -1 - -3 - 5 - 21 - - 0 @@ -2245,7 +2325,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} + - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + -1 + -3 + 5 + 21 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2292,6 +2380,9 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Right + + noDeco + NoScale @@ -2352,6 +2443,9 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Right + + noDeco + NoScale @@ -2419,6 +2513,9 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Left + + noDeco + NoScale @@ -2446,7 +2543,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)CoordSys @@ -2494,14 +2591,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 130 - 25 - 110 - 10 - - 0 @@ -2520,11 +2609,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} COORDINATE SYSTEM: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 130 + 25 + 110 + 10 + + caRectangle_0 caRectangle_1 diff --git a/opticsApp/op/ui/2slit_soft.ui b/opticsApp/op/ui/autoconvert/2slit_soft.ui similarity index 90% rename from opticsApp/op/ui/2slit_soft.ui rename to opticsApp/op/ui/autoconvert/2slit_soft.ui index 9be8e3f..913bce9 100644 --- a/opticsApp/op/ui/2slit_soft.ui +++ b/opticsApp/op/ui/autoconvert/2slit_soft.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -22,14 +110,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 1 - 164 - 45 - 16 - - 0 @@ -48,7 +128,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Calib: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 1 + 164 + 45 + 16 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -58,14 +146,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 163 - 45 - 16 - - 251 @@ -90,7 +170,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Calib: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 163 + 45 + 16 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -106,7 +194,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)xn.DESC @@ -128,6 +216,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -259,14 +362,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 28 - 146 - 60 - 15 - - 115 @@ -291,24 +386,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Moving - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 28 - 152 + 146 60 - 10 + 15 + + + + QFrame::NoFrame + 251 @@ -333,11 +428,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Calibrate - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 28 + 152 + 60 + 10 + + @@ -349,7 +452,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -388,7 +491,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(SLIT)xn:scanParms.GO @@ -454,14 +557,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 207 - 30 - 13 - - 0 @@ -480,11 +575,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Scan - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 207 + 30 + 13 + + @@ -496,7 +599,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(SLIT)xn:scanParms.LOAD @@ -535,7 +638,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(SLIT)xn.STOP @@ -603,7 +706,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} P=$(P),M=$(SLIT)xn;P=$(P),M=$(SLIT)xn;P=$(P),M=$(SLIT)xn;P=$(P),M=$(SLIT)xn;P=$(P),Q=$(SLIT)xn,PV=$(SLIT)xn;P=$(P),M=$(SLIT)xn - true;false;false;false;false;false + false;false;false;false;false;false @@ -616,7 +719,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(SLIT)xn.TWR @@ -655,7 +758,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)xn.TWV @@ -674,6 +777,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -691,7 +809,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(SLIT)xn.TWF @@ -730,7 +848,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)xn.VAL @@ -749,6 +867,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -844,7 +977,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)xn.EGU @@ -866,6 +999,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -913,14 +1061,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 46 - 116 - 10 - - 255 @@ -939,11 +1079,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} ($(P)$(SLIT)xn) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 46 + 116 + 10 + + @@ -1047,7 +1195,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)xn.RBV @@ -1069,6 +1217,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -1080,14 +1243,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 28 - 144 - 60 - 10 - - 251 @@ -1112,11 +1267,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Soft limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 28 + 144 + 60 + 10 + + @@ -1155,14 +1318,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 126 - 164 - 45 - 16 - - 0 @@ -1181,7 +1336,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Calib: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 126 + 164 + 45 + 16 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1191,14 +1354,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 125 - 163 - 45 - 16 - - 251 @@ -1223,7 +1378,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Calib: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 125 + 163 + 45 + 16 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1239,7 +1402,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)xp.DESC @@ -1261,6 +1424,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -1392,14 +1570,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 153 - 146 - 60 - 15 - - 115 @@ -1424,24 +1594,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Moving - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 153 - 152 + 146 60 - 10 + 15 + + + + QFrame::NoFrame + 251 @@ -1466,11 +1636,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Calibrate - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 153 + 152 + 60 + 10 + + @@ -1482,7 +1660,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -1521,7 +1699,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(SLIT)xp:scanParms.GO @@ -1587,14 +1765,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 125 - 207 - 30 - 13 - - 0 @@ -1613,11 +1783,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Scan - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 125 + 207 + 30 + 13 + + @@ -1629,7 +1807,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(SLIT)xp:scanParms.LOAD @@ -1668,7 +1846,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(SLIT)xp.STOP @@ -1736,7 +1914,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} P=$(P),M=$(SLIT)xp;P=$(P),M=$(SLIT)xp;P=$(P),M=$(SLIT)xp;P=$(P),M=$(SLIT)xp;P=$(P),Q=$(SLIT)xp,PV=$(SLIT)xp;P=$(P),M=$(SLIT)xp - true;false;false;false;false;false + false;false;false;false;false;false @@ -1749,7 +1927,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(SLIT)xp.TWR @@ -1788,7 +1966,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)xp.TWV @@ -1807,6 +1985,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1824,7 +2017,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(SLIT)xp.TWF @@ -1863,7 +2056,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)xp.VAL @@ -1882,6 +2075,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1977,7 +2185,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)xp.EGU @@ -1999,6 +2207,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -2046,14 +2269,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 125 - 46 - 116 - 10 - - 255 @@ -2072,13 +2287,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} ($(P)$(SLIT)xp) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - + + + 125 + 46 + 116 + 10 + + + + caGraphics::Rectangle @@ -2180,7 +2403,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)xp.RBV @@ -2202,6 +2425,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -2213,14 +2451,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 153 - 144 - 60 - 10 - - 251 @@ -2245,11 +2475,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Soft limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 153 + 144 + 60 + 10 + + @@ -2288,14 +2526,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 256 - 164 - 45 - 16 - - 0 @@ -2314,7 +2544,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Calib: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 256 + 164 + 45 + 16 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2324,14 +2562,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 255 - 163 - 45 - 16 - - 251 @@ -2356,7 +2586,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Calib: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 255 + 163 + 45 + 16 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2372,7 +2610,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)size.DESC @@ -2394,6 +2632,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -2525,14 +2778,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 283 - 146 - 60 - 15 - - 115 @@ -2557,24 +2802,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Moving - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 283 - 152 + 146 60 - 10 + 15 + + + + QFrame::NoFrame + 251 @@ -2599,11 +2844,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Calibrate - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 283 + 152 + 60 + 10 + + @@ -2615,7 +2868,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -2654,7 +2907,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(SLIT)size:scanParms.GO @@ -2720,14 +2973,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 255 - 207 - 30 - 13 - - 0 @@ -2746,11 +2991,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Scan - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 255 + 207 + 30 + 13 + + @@ -2762,7 +3015,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(SLIT)size:scanParms.LOAD @@ -2801,7 +3054,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(SLIT)size.STOP @@ -2869,7 +3122,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} P=$(P),M=$(SLIT)size;P=$(P),M=$(SLIT)size;P=$(P),M=$(SLIT)size;P=$(P),M=$(SLIT)size;P=$(P),Q=$(SLIT)size,PV=$(SLIT)size;P=$(P),M=$(SLIT)size - true;false;false;false;false;false + false;false;false;false;false;false @@ -2882,7 +3135,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(SLIT)size.TWR @@ -2921,7 +3174,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)size.TWV @@ -2940,6 +3193,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -2957,7 +3225,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(SLIT)size.TWF @@ -2996,7 +3264,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)size.VAL @@ -3015,6 +3283,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -3110,7 +3393,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)size.EGU @@ -3132,6 +3415,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -3179,14 +3477,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 255 - 46 - 116 - 10 - - 255 @@ -3205,11 +3495,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} ($(P)$(SLIT)size) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 255 + 46 + 116 + 10 + + @@ -3313,7 +3611,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)size.RBV @@ -3335,6 +3633,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -3346,14 +3659,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 283 - 144 - 60 - 10 - - 251 @@ -3378,11 +3683,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Soft limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 283 + 144 + 60 + 10 + + @@ -3421,14 +3734,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 381 - 164 - 45 - 16 - - 0 @@ -3447,7 +3752,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Calib: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 381 + 164 + 45 + 16 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3457,14 +3770,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 380 - 163 - 45 - 16 - - 251 @@ -3489,7 +3794,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Calib: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 380 + 163 + 45 + 16 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3505,7 +3818,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)center.DESC @@ -3527,6 +3840,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -3658,14 +3986,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 408 - 146 - 60 - 15 - - 115 @@ -3690,24 +4010,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Moving - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 408 - 152 + 146 60 - 10 + 15 + + + + QFrame::NoFrame + 251 @@ -3732,11 +4052,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Calibrate - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 408 + 152 + 60 + 10 + + @@ -3748,7 +4076,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -3787,7 +4115,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(SLIT)center:scanParms.GO @@ -3853,14 +4181,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 380 - 207 - 30 - 13 - - 0 @@ -3879,11 +4199,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Scan - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 380 + 207 + 30 + 13 + + @@ -3895,7 +4223,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(SLIT)center:scanParms.LOAD @@ -3934,7 +4262,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(SLIT)center.STOP @@ -4002,7 +4330,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} P=$(P),M=$(SLIT)center;P=$(P),M=$(SLIT)center;P=$(P),M=$(SLIT)center;P=$(P),M=$(SLIT)center;P=$(P),Q=$(SLIT)center,PV=$(SLIT)center;P=$(P),M=$(SLIT)center - true;false;false;false;false;false + false;false;false;false;false;false @@ -4015,7 +4343,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(SLIT)center.TWR @@ -4054,7 +4382,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)center.TWV @@ -4073,6 +4401,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -4090,7 +4433,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(SLIT)center.TWF @@ -4129,7 +4472,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)center.VAL @@ -4148,6 +4491,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -4243,7 +4601,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)center.EGU @@ -4265,6 +4623,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -4312,14 +4685,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 380 - 46 - 116 - 10 - - 255 @@ -4338,11 +4703,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} ($(P)$(SLIT)center) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 380 + 46 + 116 + 10 + + @@ -4446,7 +4819,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)center.RBV @@ -4468,6 +4841,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -4479,14 +4867,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 408 - 144 - 60 - 10 - - 251 @@ -4511,11 +4891,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Soft limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 408 + 144 + 60 + 10 + + @@ -4583,84 +4971,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caChoice::Static - - - - 260 - 234 - 60 - 27 - - - - EPushButton::Height - - - $(P)$(SLIT)stop.PROC - - - - 251 - 243 - 74 - - - - - 253 - 0 - 0 - - - - Stop - - - 1 - - - caMessageButton::Static - - - - - - 85 - 240 - 110 - 20 - - - - EPushButton::Height - - - $(P)$(SLIT)sync.PROC - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Sync to motors - - - 1 - - - caMessageButton::Static - - @@ -4691,16 +5001,16 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Menu - drive transform;readback transform + drive transform;readback transform;limits transform;calcDone;monitorStop;doStop;spectator;syncCalc;sync - yyTransform_full.adl;yyTransform_full.adl + yyTransform_full.adl;yyTransform_full.adl;yyTransform_full.adl;yyCalcoutRecord.adl;yyTransform_full.adl;yySeq_full.adl;yyTransform.adl;yyTransform.adl;yyTransform.adl - P=$(P),T=$(SLIT)t1;P=$(P),T=$(SLIT)t2 + P=$(P),T=$(SLIT)tFwd;P=$(P),T=$(SLIT)tRev;P=$(P),T=$(SLIT)tLimits;P=$(P),C=$(SLIT)calcDone;P=$(P),T=$(SLIT)monitorStop;P=$(P),S=$(SLIT)doStop;P=$(P),T=$(SLIT)spectator;P=$(P),T=$(SLIT)tSyncCalc;P=$(P),T=$(SLIT)tSync - false;false + false;false;false;false;false;false;false;false;false @@ -4772,21 +5082,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(SLIT)center.DESC - 1,1;499,1; + 499,1; QFrame::NoFrame - - - 0 - 0 - 500 - 22 - - 0 @@ -4805,24 +5107,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Slit $(SLIT) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 0 + 500 + 22 + + QFrame::NoFrame - - - 355 - 250 - 50 - 10 - - 0 @@ -4841,24 +5143,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} X+ MOTOR: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - QFrame::NoFrame - 355 - 235 + 250 50 10 + + + + QFrame::NoFrame + 0 @@ -4877,11 +5179,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} X- MOTOR: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 355 + 235 + 50 + 10 + + @@ -4893,7 +5203,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)mXp_nameCalc.SVAL @@ -4912,6 +5222,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 200 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -4932,7 +5257,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(SLIT)mXn_nameCalc.SVAL @@ -4951,6 +5276,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 200 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -5083,8 +5423,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLineEdit_11 caChoice_3 caChoice_4 - caMessageButton_24 - caMessageButton_25 caRelatedDisplay_4 caLineEdit_12 caLineEdit_13 diff --git a/opticsApp/op/ui/4filter.ui b/opticsApp/op/ui/autoconvert/4filter.ui similarity index 85% rename from opticsApp/op/ui/4filter.ui rename to opticsApp/op/ui/autoconvert/4filter.ui index 661a0f0..3b6ab5b 100644 --- a/opticsApp/op/ui/4filter.ui +++ b/opticsApp/op/ui/autoconvert/4filter.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -115,14 +203,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 5 - 46 - 90 - 18 - - 0 @@ -141,24 +221,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} upstream - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 5 + 46 + 90 + 18 + + QFrame::NoFrame - - - 0 - 0 - 390 - 20 - - 0 @@ -177,11 +257,19 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} User Filters - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 0 + 390 + 20 + + @@ -313,14 +401,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 290 - 45 - 90 - 18 - - 0 @@ -339,11 +419,19 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} downstream - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 290 + 45 + 90 + 18 + + diff --git a/opticsApp/op/ui/4filter_setup.ui b/opticsApp/op/ui/autoconvert/4filter_setup.ui similarity index 74% rename from opticsApp/op/ui/4filter_setup.ui rename to opticsApp/op/ui/autoconvert/4filter_setup.ui index 497244e..52720e3 100644 --- a/opticsApp/op/ui/4filter_setup.ui +++ b/opticsApp/op/ui/autoconvert/4filter_setup.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -55,14 +143,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 5 - 278 - 920 - 14 - - 0 @@ -81,24 +161,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} NOTE: After changing filter-material description, you must close and reopen any screen that displays it. - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 5 - 255 - 115 - 18 + 278 + 920 + 14 + + + + QFrame::NoFrame + 0 @@ -117,7 +197,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Motor-drive PV - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 255 + 115 + 18 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -133,7 +221,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q1)motorOut.OUTN @@ -152,6 +240,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -163,14 +266,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 180 - 247 - 40 - 10 - - 253 @@ -195,7 +290,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} INVALID - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 180 + 247 + 40 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -211,7 +314,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q1)pos5.VAL @@ -230,6 +333,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -247,7 +365,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q1)pos4.VAL @@ -266,6 +384,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -283,7 +416,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q1)pos3.VAL @@ -302,6 +435,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -319,7 +467,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q1)pos2.VAL @@ -338,6 +486,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -355,7 +518,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q1)posHome.VAL @@ -374,6 +537,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -391,7 +569,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q1)pos1.VAL @@ -410,6 +588,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -541,14 +734,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 235 - 255 - 115 - 18 - - 0 @@ -567,7 +752,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Motor-drive PV - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 235 + 255 + 115 + 18 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -583,7 +776,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q2)motorOut.OUTN @@ -602,6 +795,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -609,244 +817,316 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} string - + 385 125 - 72 - 122 + 70 + 20 - - - - 0 - 0 - 70 - 20 - - - - caLineEdit::Height - - - $(P)$(Q2)pos5.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - decimal - - - - - - 0 - 20 - 70 - 20 - - - - caLineEdit::Height - - - $(P)$(Q2)pos4.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - decimal - - - - - - 0 - 40 - 70 - 20 - - - - caLineEdit::Height - - - $(P)$(Q2)pos3.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - decimal - - - - - - 0 - 60 - 70 - 20 - - - - caLineEdit::Height - - - $(P)$(Q2)pos2.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - decimal - - - - - - 0 - 100 - 70 - 20 - - - - caLineEdit::Height - - - $(P)$(Q2)posHome.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - decimal - - - - - - 0 - 80 - 70 - 20 - - - - caLineEdit::Height - - - $(P)$(Q2)pos1.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - decimal - - + + caLineEdit::WidthAndHeight + + + $(P)$(Q2)pos5.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + - - - QFrame::NoFrame + + + + 385 + 145 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q2)pos4.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + decimal + + + - 410 - 245 - 40 - 10 + 385 + 165 + 70 + 20 + + caLineEdit::WidthAndHeight + + + $(P)$(Q2)pos3.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 385 + 185 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q2)pos2.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 385 + 225 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q2)posHome.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 385 + 205 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q2)pos1.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + 253 @@ -871,7 +1151,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} INVALID - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 410 + 245 + 40 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -887,7 +1175,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q2)name5 @@ -906,6 +1194,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -923,7 +1226,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q2)name4 @@ -942,6 +1245,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -959,7 +1277,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q2)name3 @@ -978,6 +1296,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -995,7 +1328,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q2)name2 @@ -1014,6 +1347,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1031,7 +1379,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q2)nameHome @@ -1050,6 +1398,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1067,7 +1430,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q2)name1 @@ -1086,6 +1449,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1097,14 +1475,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 385 - 100 - 70 - 14 - - 0 @@ -1123,24 +1493,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} position - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 310 + 385 100 70 14 + + + + QFrame::NoFrame + 0 @@ -1159,24 +1529,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} control - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 235 + 310 100 70 14 + + + + QFrame::NoFrame + 0 @@ -1195,24 +1565,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} material - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 385 - 85 + 235 + 100 70 14 + + + + QFrame::NoFrame + 0 @@ -1231,24 +1601,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} motor - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 310 + 385 85 70 14 + + + + QFrame::NoFrame + 0 @@ -1266,19 +1636,19 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 235 + 310 85 70 14 + + + + QFrame::NoFrame + 0 @@ -1297,11 +1667,19 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} filter - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 235 + 85 + 70 + 14 + + @@ -1336,7 +1714,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Solid - 1,1;1,211; + 1,211; @@ -1376,14 +1754,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 405 - 45 - 40 - 10 - - 253 @@ -1408,7 +1778,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} INVALID - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 405 + 45 + 40 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1424,7 +1802,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(LOCK2)lockOut.OUTN @@ -1443,6 +1821,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1454,14 +1847,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 230 - 42 - 55 - 18 - - 0 @@ -1480,7 +1865,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Lock_PV - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 230 + 42 + 55 + 18 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1496,7 +1889,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q1)name5 @@ -1515,6 +1908,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1532,7 +1940,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q1)name4 @@ -1551,6 +1959,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1568,7 +1991,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q1)name3 @@ -1587,6 +2010,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1604,7 +2042,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q1)name2 @@ -1623,6 +2061,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1640,7 +2093,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q1)nameHome @@ -1659,6 +2112,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1676,7 +2144,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q1)name1 @@ -1695,6 +2163,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1706,14 +2189,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 155 - 100 - 70 - 14 - - 0 @@ -1732,24 +2207,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} position - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 80 + 155 100 70 14 + + + + QFrame::NoFrame + 0 @@ -1768,24 +2243,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} control - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 5 + 80 100 70 14 + + + + QFrame::NoFrame + 0 @@ -1804,24 +2279,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} material - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 155 - 85 + 5 + 100 70 14 + + + + QFrame::NoFrame + 0 @@ -1840,24 +2315,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} motor - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 80 + 155 85 70 14 + + + + QFrame::NoFrame + 0 @@ -1875,19 +2350,19 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 5 + 80 85 70 14 + + + + QFrame::NoFrame + 0 @@ -1906,24 +2381,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} filter - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 5 + 85 + 70 + 14 + + QFrame::NoFrame - - - 0 - 0 - 920 - 18 - - 0 @@ -1942,11 +2417,19 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} User Filter $(P)$(Q1) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 0 + 920 + 18 + + @@ -1985,14 +2468,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 175 - 45 - 40 - 10 - - 253 @@ -2017,7 +2492,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} INVALID - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 175 + 45 + 40 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2033,7 +2516,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(LOCK1)lockOut.OUTN @@ -2052,6 +2535,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -2063,14 +2561,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 0 - 42 - 55 - 18 - - 0 @@ -2089,7 +2579,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Lock_PV - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 42 + 55 + 18 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2128,7 +2626,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Solid - 1,1;916,1; + 916,1; @@ -2164,21 +2662,13 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Solid - 1,1;916,1; + 916,1; QFrame::NoFrame - - - 5 - 65 - 220 - 20 - - 0 @@ -2197,11 +2687,19 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} upstream - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 5 + 65 + 220 + 20 + + @@ -2236,21 +2734,13 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Solid - 1,1;916,1; + 916,1; QFrame::NoFrame - - - 465 - 255 - 115 - 18 - - 0 @@ -2269,7 +2759,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Motor-drive PV - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 465 + 255 + 115 + 18 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2285,7 +2783,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q3)motorOut.OUTN @@ -2304,6 +2802,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -2321,7 +2834,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q3)pos5.VAL @@ -2340,6 +2853,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -2357,7 +2885,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q3)pos4.VAL @@ -2376,6 +2904,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -2393,7 +2936,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q3)pos3.VAL @@ -2412,6 +2955,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -2429,7 +2987,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q3)pos2.VAL @@ -2448,6 +3006,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -2465,7 +3038,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q3)posHome.VAL @@ -2484,6 +3057,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -2501,7 +3089,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q3)pos1.VAL @@ -2520,6 +3108,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -2531,14 +3134,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 640 - 245 - 40 - 10 - - 253 @@ -2563,7 +3158,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} INVALID - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 640 + 245 + 40 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2579,7 +3182,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q3)name5 @@ -2598,6 +3201,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -2615,7 +3233,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q3)name4 @@ -2634,6 +3252,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -2651,7 +3284,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q3)name3 @@ -2670,6 +3303,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -2687,7 +3335,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q3)name2 @@ -2706,6 +3354,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -2723,7 +3386,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q3)nameHome @@ -2742,6 +3405,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -2759,7 +3437,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q3)name1 @@ -2778,6 +3456,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -2789,14 +3482,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 615 - 100 - 70 - 14 - - 0 @@ -2815,24 +3500,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} position - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 540 + 615 100 70 14 + + + + QFrame::NoFrame + 0 @@ -2851,24 +3536,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} control - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 465 + 540 100 70 14 + + + + QFrame::NoFrame + 0 @@ -2887,24 +3572,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} material - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 615 - 85 + 465 + 100 70 14 + + + + QFrame::NoFrame + 0 @@ -2923,24 +3608,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} motor - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 540 + 615 85 70 14 + + + + QFrame::NoFrame + 0 @@ -2958,19 +3643,19 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 465 + 540 85 70 14 + + + + QFrame::NoFrame + 0 @@ -2989,11 +3674,19 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} filter - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 465 + 85 + 70 + 14 + + @@ -3028,7 +3721,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Solid - 1,1;1,211; + 1,211; @@ -3068,14 +3761,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 635 - 45 - 40 - 10 - - 253 @@ -3100,7 +3785,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} INVALID - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 635 + 45 + 40 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3116,7 +3809,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(LOCK3)lockOut.OUTN @@ -3135,6 +3828,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -3146,14 +3854,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 460 - 42 - 55 - 18 - - 0 @@ -3172,7 +3872,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Lock_PV - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 460 + 42 + 55 + 18 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3182,14 +3890,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 695 - 255 - 115 - 18 - - 0 @@ -3208,7 +3908,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Motor-drive PV - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 695 + 255 + 115 + 18 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3224,7 +3932,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q4)motorOut.OUTN @@ -3243,6 +3951,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -3260,7 +3983,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q4)pos5.VAL @@ -3279,6 +4002,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -3296,7 +4034,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q4)pos4.VAL @@ -3315,6 +4053,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -3332,7 +4085,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q4)pos3.VAL @@ -3351,6 +4104,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -3368,7 +4136,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q4)pos2.VAL @@ -3387,6 +4155,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -3404,7 +4187,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q4)posHome.VAL @@ -3423,6 +4206,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -3440,7 +4238,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q4)pos1.VAL @@ -3459,6 +4257,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -3470,14 +4283,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 870 - 245 - 40 - 10 - - 253 @@ -3502,7 +4307,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} INVALID - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 870 + 245 + 40 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3518,7 +4331,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q4)name5 @@ -3537,6 +4350,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -3554,7 +4382,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q4)name4 @@ -3573,6 +4401,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -3590,7 +4433,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q4)name3 @@ -3609,6 +4452,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -3626,7 +4484,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q4)name2 @@ -3645,6 +4503,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -3662,7 +4535,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q4)nameHome @@ -3681,6 +4554,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -3698,7 +4586,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q4)name1 @@ -3717,6 +4605,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -3728,14 +4631,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 695 - 65 - 220 - 20 - - 0 @@ -3754,24 +4649,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} downstream - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 695 + 65 + 220 + 20 + + QFrame::NoFrame - - - 845 - 100 - 70 - 14 - - 0 @@ -3790,24 +4685,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} position - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 770 + 845 100 70 14 + + + + QFrame::NoFrame + 0 @@ -3826,24 +4721,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} control - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 695 + 770 100 70 14 + + + + QFrame::NoFrame + 0 @@ -3862,24 +4757,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} material - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 845 - 85 + 695 + 100 70 14 + + + + QFrame::NoFrame + 0 @@ -3898,24 +4793,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} motor - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 770 + 845 85 70 14 + + + + QFrame::NoFrame + 0 @@ -3933,19 +4828,19 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 695 + 770 85 70 14 + + + + QFrame::NoFrame + 0 @@ -3964,11 +4859,19 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} filter - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 695 + 85 + 70 + 14 + + @@ -4003,7 +4906,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Solid - 1,1;1,211; + 1,211; @@ -4043,14 +4946,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 865 - 45 - 40 - 10 - - 253 @@ -4075,7 +4970,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} INVALID - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 865 + 45 + 40 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -4091,7 +4994,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(LOCK4)lockOut.OUTN @@ -4110,6 +5013,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -4121,14 +5039,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 690 - 42 - 55 - 18 - - 0 @@ -4147,7 +5057,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Lock_PV - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 690 + 42 + 55 + 18 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -4158,7 +5076,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} caLabel_1 caLabel_2 caLabel_3 - caFrame_0 caLabel_4 caLabel_5 caLabel_6 diff --git a/opticsApp/op/ui/4slitGraphic.ui b/opticsApp/op/ui/autoconvert/4slitGraphic.ui similarity index 96% rename from opticsApp/op/ui/4slitGraphic.ui rename to opticsApp/op/ui/autoconvert/4slitGraphic.ui index 265f8da..d072bc0 100644 --- a/opticsApp/op/ui/4slitGraphic.ui +++ b/opticsApp/op/ui/autoconvert/4slitGraphic.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -123,21 +211,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;279,1; + 279,1; QFrame::NoFrame - - - 0 - 0 - 170 - 20 - - 2 @@ -159,11 +239,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(SLIT) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 0 + 170 + 20 + + @@ -175,7 +263,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)center.DRVH @@ -229,7 +317,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)size.DRVH @@ -283,7 +371,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)center.DRVH @@ -337,7 +425,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)size.DRVH @@ -630,7 +718,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)xn_tweak.A @@ -669,7 +757,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)xn_tweakVal.VAL @@ -720,7 +808,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)xn_tweak.B @@ -759,7 +847,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)xn.DRVH @@ -813,7 +901,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)t2.B @@ -867,7 +955,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)xn.VAL @@ -918,7 +1006,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)xn.DRVL @@ -1005,14 +1093,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 55 - 206 - 30 - 14 - - 0 @@ -1031,7 +1111,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Scan - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 55 + 206 + 30 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1120,7 +1208,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)xp.VAL @@ -1171,7 +1259,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)xp.DRVL @@ -1225,7 +1313,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)xp_tweak.A @@ -1264,7 +1352,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)xp_tweakVal.VAL @@ -1315,7 +1403,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)xp_tweak.B @@ -1354,7 +1442,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)xp.DRVH @@ -1408,7 +1496,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)t2.A @@ -1456,14 +1544,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 215 - 206 - 30 - 14 - - 0 @@ -1482,7 +1562,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Scan - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 215 + 206 + 30 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1537,7 +1625,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)xp.VAL @@ -1588,7 +1676,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)xp.DRVL @@ -1642,7 +1730,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(V)xp_tweak.B @@ -1681,7 +1769,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)xp_tweakVal.VAL @@ -1732,7 +1820,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(V)xp_tweak.A @@ -1771,7 +1859,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)xp.DRVH @@ -1825,7 +1913,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)t2.A @@ -1879,7 +1967,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)xn.VAL @@ -1930,7 +2018,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)xn.DRVL @@ -1984,7 +2072,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(V)xn_tweak.A @@ -2023,7 +2111,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)xn_tweakVal.VAL @@ -2074,7 +2162,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(V)xn_tweak.B @@ -2113,7 +2201,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)xn.DRVH @@ -2167,7 +2255,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)t2.B @@ -2221,7 +2309,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)size_tweak.A @@ -2260,7 +2348,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)size_tweakVal.VAL @@ -2311,7 +2399,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)size_tweak.B @@ -2350,7 +2438,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)size.VAL @@ -2401,7 +2489,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)size.DRVL @@ -2455,7 +2543,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)t2.C @@ -2503,14 +2591,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 25 - 80 - 14 - - 130 @@ -2529,24 +2609,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} H SIZE - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 230 - 106 - 30 + 5 + 25 + 80 14 + + + + QFrame::NoFrame + 0 @@ -2565,7 +2645,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Scan - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 230 + 106 + 30 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2614,14 +2702,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 40 - 106 - 30 - 14 - - 0 @@ -2640,7 +2720,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Scan - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 40 + 106 + 30 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2695,7 +2783,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)center_tweak.A @@ -2734,7 +2822,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)center_tweakVal.VAL @@ -2785,7 +2873,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)center_tweak.B @@ -2824,7 +2912,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)center.VAL @@ -2875,7 +2963,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)center.DRVL @@ -2929,7 +3017,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)t2.D @@ -2977,14 +3065,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 195 - 25 - 80 - 14 - - 130 @@ -3003,11 +3083,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} H CENTER - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 195 + 25 + 80 + 14 + + @@ -3019,7 +3107,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(V)center_tweak.A @@ -3058,7 +3146,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)center_tweakVal.VAL @@ -3109,7 +3197,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(V)center_tweak.B @@ -3148,7 +3236,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)center.VAL @@ -3199,7 +3287,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)center.DRVL @@ -3253,7 +3341,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)t2.D @@ -3301,14 +3389,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 195 - 230 - 80 - 14 - - 130 @@ -3327,11 +3407,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} V CENTER - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 195 + 230 + 80 + 14 + + @@ -3343,7 +3431,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(V)size_tweak.A @@ -3382,7 +3470,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)size_tweakVal.VAL @@ -3433,7 +3521,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(V)size_tweak.B @@ -3472,7 +3560,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)size.VAL @@ -3523,7 +3611,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)size.DRVL @@ -3577,7 +3665,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)t2.C @@ -3625,14 +3713,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 230 - 80 - 14 - - 130 @@ -3651,24 +3731,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} V SIZE - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 135 - 131 - 30 + 5 + 230 + 80 14 + + + + QFrame::NoFrame + 0 @@ -3687,7 +3767,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Scan - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 135 + 131 + 30 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3736,14 +3824,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 135 - 206 - 30 - 14 - - 0 @@ -3762,7 +3842,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Scan - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 135 + 206 + 30 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3811,14 +3899,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 230 - 311 - 30 - 14 - - 0 @@ -3837,7 +3917,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Scan - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 230 + 311 + 30 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3886,14 +3974,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 40 - 311 - 30 - 14 - - 0 @@ -3912,7 +3992,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Scan - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 40 + 311 + 30 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3967,7 +4055,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)sync.PROC @@ -4006,7 +4094,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(V)sync.PROC @@ -4039,14 +4127,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 170 - 6 - 110 - 12 - - 2 @@ -4068,24 +4148,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} (Looking upstream) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 170 + 6 + 110 + 12 + + QFrame::NoFrame - - - 135 - 170 - 7 - 14 - - 255 @@ -4104,7 +4184,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} + - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 135 + 170 + 7 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -4149,7 +4237,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;13,0; + 13,0; @@ -4185,7 +4273,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;10,6;1,10; + 1,10; @@ -4228,7 +4316,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;13,0; + 13,0; @@ -4264,7 +4352,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;10,6;1,10; + 1,10; @@ -4313,7 +4401,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,13;0,0; + 0,0; @@ -4349,7 +4437,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,10;6,1;10,10; + 10,10; @@ -4392,7 +4480,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,13;0,0; + 0,0; @@ -4428,7 +4516,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,10;6,1;10,10; + 10,10; @@ -4477,7 +4565,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;0,13; + 0,13; @@ -4513,7 +4601,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 10,1;5,10;1,1; + 1,1; @@ -4562,7 +4650,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 13,0;0,0; + 0,0; @@ -4598,7 +4686,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 10,1;1,6;10,10; + 10,10; diff --git a/opticsApp/op/ui/4slitGraphic_soft.ui b/opticsApp/op/ui/autoconvert/4slitGraphic_soft.ui similarity index 95% rename from opticsApp/op/ui/4slitGraphic_soft.ui rename to opticsApp/op/ui/autoconvert/4slitGraphic_soft.ui index f28cb36..cdce04e 100644 --- a/opticsApp/op/ui/4slitGraphic_soft.ui +++ b/opticsApp/op/ui/autoconvert/4slitGraphic_soft.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -87,21 +175,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;279,1; + 279,1; QFrame::NoFrame - - - 0 - 0 - 280 - 20 - - 2 @@ -123,11 +203,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(SLIT) (Looking upstream) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 0 + 280 + 20 + + @@ -139,7 +227,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)center.HLM @@ -193,7 +281,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)size.HLM @@ -247,7 +335,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)center.HLM @@ -301,7 +389,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)size.HLM @@ -630,7 +718,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)xn.TWR @@ -669,7 +757,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)xn.TWV @@ -720,7 +808,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)xn.TWF @@ -759,7 +847,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)xn.HLM @@ -813,7 +901,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)xn.RBV @@ -867,7 +955,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)xn.VAL @@ -918,7 +1006,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)xn.LLM @@ -1087,7 +1175,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)xp.VAL @@ -1138,7 +1226,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)xp.LLM @@ -1192,7 +1280,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)xp.TWR @@ -1231,7 +1319,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)xp.TWV @@ -1282,7 +1370,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)xp.TWF @@ -1321,7 +1409,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)xp.HLM @@ -1375,7 +1463,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)xp.RBV @@ -1471,7 +1559,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)xp.VAL @@ -1522,7 +1610,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)xp.LLM @@ -1576,7 +1664,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(V)xp.TWF @@ -1615,7 +1703,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)xp.TWV @@ -1666,7 +1754,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(V)xp.TWR @@ -1705,7 +1793,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)xp.HLM @@ -1759,7 +1847,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)xp.RBV @@ -1813,7 +1901,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)xn.VAL @@ -1864,7 +1952,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)xn.LLM @@ -1918,7 +2006,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(V)xn.TWR @@ -1957,7 +2045,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)xn.TWV @@ -2008,7 +2096,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(V)xn.TWF @@ -2047,7 +2135,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)xn.HLM @@ -2101,7 +2189,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)xn.RBV @@ -2155,7 +2243,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)size.TWR @@ -2194,7 +2282,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)size.TWV @@ -2245,7 +2333,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)size.TWF @@ -2284,7 +2372,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)size.VAL @@ -2335,7 +2423,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)size.LLM @@ -2389,7 +2477,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)size.RBV @@ -2437,14 +2525,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 25 - 80 - 14 - - 130 @@ -2463,11 +2543,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} H SIZE - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 5 + 25 + 80 + 14 + + @@ -2563,7 +2651,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)center.TWR @@ -2602,7 +2690,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)center.TWV @@ -2653,7 +2741,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)center.TWF @@ -2692,7 +2780,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)center.VAL @@ -2743,7 +2831,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)center.LLM @@ -2797,7 +2885,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)center.RBV @@ -2845,14 +2933,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 195 - 25 - 80 - 14 - - 130 @@ -2871,11 +2951,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} H CENTER - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 195 + 25 + 80 + 14 + + @@ -2887,7 +2975,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(V)center.TWR @@ -2926,7 +3014,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)center.TWV @@ -2977,7 +3065,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(V)center.TWF @@ -3016,7 +3104,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)center.VAL @@ -3067,7 +3155,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)center.LLM @@ -3121,7 +3209,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)center.RBV @@ -3169,14 +3257,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 195 - 230 - 80 - 14 - - 130 @@ -3195,11 +3275,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} V CENTER - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 195 + 230 + 80 + 14 + + @@ -3211,7 +3299,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(V)size.TWR @@ -3250,7 +3338,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)size.TWV @@ -3301,7 +3389,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(V)size.TWF @@ -3340,7 +3428,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)size.VAL @@ -3391,7 +3479,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)size.LLM @@ -3445,7 +3533,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(V)size.RBV @@ -3493,14 +3581,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 230 - 80 - 14 - - 130 @@ -3519,11 +3599,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} V SIZE - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 5 + 230 + 80 + 14 + + @@ -3697,72 +3785,33 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 110 - 25 - 60 - 22 + 305 + 53 + 20 - EPushButton::Height + EPushButton::WidthAndHeight - $(P)$(H)sync.PROC + $(P)$(H)xn.STOP - 0 - 0 - 0 + 249 + 218 + 60 - 115 - 223 - 255 - - - - Sync H - - - 1 - - - caMessageButton::Static - - - - - - 110 - 303 - 60 - 22 - - - - EPushButton::Height - - - $(P)$(V)sync.PROC - - - - 0 + 253 0 0 - - - 235 - 241 - 181 - - - Sync V + STOP 1 @@ -3854,7 +3903,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caRelatedDisplay_6 caRelatedDisplay_7 caMessageButton_16 - caMessageButton_17 \ No newline at end of file diff --git a/opticsApp/op/ui/ASRPmirrorTable.ui b/opticsApp/op/ui/autoconvert/ASRPmirrorTable.ui similarity index 94% rename from opticsApp/op/ui/ASRPmirrorTable.ui rename to opticsApp/op/ui/autoconvert/ASRPmirrorTable.ui index 716ecad..2ea604b 100644 --- a/opticsApp/op/ui/ASRPmirrorTable.ui +++ b/opticsApp/op/ui/autoconvert/ASRPmirrorTable.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -64,7 +152,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(TBL):tran.F @@ -109,14 +197,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 357 - 107 - 100 - 10 - - 0 @@ -135,11 +215,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} COUPLED PITCH - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 357 + 107 + 100 + 10 + + @@ -187,14 +275,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 357 - 120 - 100 - 10 - - 0 @@ -213,11 +293,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} (DRIVES PITCH & VERT) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 357 + 120 + 100 + 10 + + @@ -286,7 +374,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 0,40;15,40;6,0;0,40; + 0,40; caPolyLine::Polygon @@ -331,7 +419,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 0,10;10,10;4,0;0,10; + 0,10; caPolyLine::Polygon @@ -367,7 +455,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 0,0;10,0;4,10;0,0; + 0,0; caPolyLine::Polygon @@ -406,7 +494,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 1,1;1,24; + 1,24; @@ -486,7 +574,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 0,10;10,10;4,0;0,10; + 0,10; caPolyLine::Polygon @@ -522,7 +610,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 0,0;10,0;4,10;0,0; + 0,0; caPolyLine::Polygon @@ -561,7 +649,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 1,1;1,24; + 1,24; @@ -575,7 +663,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(VERT).VAL @@ -620,14 +708,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 187 - 127 - 60 - 10 - - 0 @@ -646,11 +726,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} VERT MOTOR - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 187 + 127 + 60 + 10 + + @@ -662,7 +750,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(PITCH).VAL @@ -713,7 +801,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(TBL):pitchArmLen @@ -758,14 +846,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 152 - 77 - 60 - 10 - - 0 @@ -784,11 +864,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} PITCH ARM - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 152 + 77 + 60 + 10 + + @@ -823,7 +911,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Dash - 38,0;0,0; + 0,0; @@ -859,7 +947,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 1,1;10,6;1,10; + 1,10; @@ -895,7 +983,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Dash - 38,0;0,0; + 0,0; @@ -931,7 +1019,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 10,1;1,6;10,10; + 10,10; @@ -944,7 +1032,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(TBL):fixedPointZ @@ -989,14 +1077,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 75 - 5 - 60 - 10 - - 0 @@ -1015,11 +1095,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} FIXED POINT - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 75 + 5 + 60 + 10 + + @@ -1051,21 +1139,13 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 0,19;0,0; + 0,0; QFrame::NoFrame - - - 86 - 34 - 10 - 20 - - 0 @@ -1084,24 +1164,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 112 + 86 34 10 20 + + + + QFrame::NoFrame + 0 @@ -1120,11 +1200,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} + - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 112 + 34 + 10 + 20 + + @@ -1168,7 +1256,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Dash - 38,0;0,0; + 0,0; @@ -1204,7 +1292,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 10,1;1,6;10,10; + 10,10; @@ -1240,7 +1328,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Dash - 0,0;38,0; + 38,0; @@ -1276,7 +1364,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 1,1;10,6;1,10; + 1,10; @@ -1313,7 +1401,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 0,0;34,0; + 34,0; @@ -1350,7 +1438,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Dash - 0,0;0,44; + 0,44; @@ -1386,7 +1474,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 10,1;5,10;1,1; + 1,1; @@ -1422,21 +1510,13 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 10,10;5,1;1,10; + 1,10; QFrame::NoFrame - - - 315 - 46 - 10 - 20 - - 0 @@ -1455,24 +1535,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} + - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 315 - 65 + 46 10 20 + + + + QFrame::NoFrame + 0 @@ -1491,24 +1571,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 315 + 65 + 10 + 20 + + QFrame::NoFrame - - - 460 - 133 - 20 - 14 - - 0 @@ -1527,11 +1607,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} (mR) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 460 + 133 + 20 + 14 + + @@ -1570,7 +1658,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 1,62;1,1;160,1; + 160,1; @@ -1610,7 +1698,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 159,1;159,59;1,59; + 1,59; @@ -1665,7 +1753,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(PITCH).RBV @@ -1713,14 +1801,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 337 - 30 - 60 - 10 - - 0 @@ -1739,11 +1819,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} PITCH MOTOR - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 337 + 30 + 60 + 10 + + @@ -1755,7 +1843,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(VERT).RBV diff --git a/opticsApp/op/ui/autoconvert/ASRPmirrorTable_small.ui b/opticsApp/op/ui/autoconvert/ASRPmirrorTable_small.ui new file mode 100644 index 0000000..60cf4bd --- /dev/null +++ b/opticsApp/op/ui/autoconvert/ASRPmirrorTable_small.ui @@ -0,0 +1,388 @@ + + +MainWindow + + + + 640 + 511 + 180 + 95 + + + + + +QWidget#centralWidget {background: rgba(218, 218, 218, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + caGraphics::Rectangle + + + + 0 + 0 + 180 + 20 + + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + + 140 + 75 + 40 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -More + + + Menu + + + small + + + ASRPmirrorTable.adl + + + P=xxx:,TBL=$(TBL),VERT=$(VERT),PITCH=$(PITCH) + + + true + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + ASRP Mirror Table + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 0 + 0 + 180 + 20 + + + + + + + 0 + 20 + 181 + 3 + + + + 3 + + + + 10 + 0 + 184 + + + + Filled + + + + 10 + 0 + 184 + + + + Solid + + + 179,1; + + + + + + 27 + 52 + 100 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(TBL):tran.F + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + PITCH + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 27 + 28 + 100 + 20 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + (mR) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 130 + 54 + 20 + 14 + + + + caRectangle_0 + caLabel_0 + caPolyLine_0 + caLabel_1 + caLabel_2 + caRelatedDisplay_0 + caTextEntry_0 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/CoarseFineMotor.ui b/opticsApp/op/ui/autoconvert/CoarseFineMotor.ui similarity index 58% rename from opticsApp/op/ui/CoarseFineMotor.ui rename to opticsApp/op/ui/autoconvert/CoarseFineMotor.ui index 52058ea..36d144e 100644 --- a/opticsApp/op/ui/CoarseFineMotor.ui +++ b/opticsApp/op/ui/autoconvert/CoarseFineMotor.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -52,14 +140,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 5 - 25 - 100 - 20 - - 0 @@ -78,11 +158,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Mode - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 5 + 25 + 100 + 20 + + @@ -121,14 +209,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 0 - 0 - 130 - 20 - - 0 @@ -147,11 +227,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Coarse/Fine - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 0 + 130 + 20 + + @@ -195,104 +283,93 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} false - + + + + 90 + 75 + 40 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -More + + + Menu + + + Graphic of stage + + + CoarseFineMotorShow.adl + + + P=$(P),M=MOT,PM=$(PM),CM=$(CM),FM=$(FM) + + + true + + + 5 75 - 127 - 22 + 55 + 20 - - - - 85 - 0 - 40 - 20 - - - - - 255 - 255 - 255 - - - - - 51 - 153 - 0 - - - - -More - - - Menu - - - Graphic of stage - - - CoarseFineMotorShow.adl - - - P=$(P),M=MOT,PM=$(PM),CM=$(CM),FM=$(FM) - - - true - - - - - - 0 - 0 - 55 - 20 - - - - - 255 - 255 - 255 - - - - - 40 - 147 - 21 - - - - -Motors - - - Menu - - - Combined (soft) motor;Actual motors - - - motorx.adl;motor2x.adl - - - P=$(P),M=MOT;P=$(PM),M1=$(CM),M2=$(FM) - - - false;false - - + + + 255 + 255 + 255 + + + + + 40 + 147 + 21 + + + + -Motors + + + Menu + + + Combined (soft) motor;Actual motors + + + motorx.adl;motor2x.adl + + + P=$(P),M=MOT;P=$(PM),M1=$(CM),M2=$(FM) + + + false;false + caLabel_0 caRectangle_0 caLabel_1 - caFrame_0 caMenu_0 caRelatedDisplay_0 caRelatedDisplay_1 diff --git a/opticsApp/op/ui/CoarseFineMotorHelp.ui b/opticsApp/op/ui/autoconvert/CoarseFineMotorHelp.ui similarity index 90% rename from opticsApp/op/ui/CoarseFineMotorHelp.ui rename to opticsApp/op/ui/autoconvert/CoarseFineMotorHelp.ui index 4d54b4a..4cb95c0 100644 --- a/opticsApp/op/ui/CoarseFineMotorHelp.ui +++ b/opticsApp/op/ui/autoconvert/CoarseFineMotorHelp.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -55,14 +143,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 0 - 0 - 400 - 20 - - 0 @@ -81,24 +161,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Coarse/Fine Mode choices - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 5 - 25 - 80 + 0 + 0 + 400 20 + + + + QFrame::NoFrame + 0 @@ -117,24 +197,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Mode - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 5 - 45 + 25 80 - 14 + 20 + + + + QFrame::NoFrame + 0 @@ -153,24 +233,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} AUTO - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 100 + 5 45 - 300 + 80 14 + + + + QFrame::NoFrame + 0 @@ -189,7 +269,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} FINE SCAN+ or FINE SCAN-, depending on - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 100 + 45 + 300 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -199,14 +287,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 100 - 60 - 300 - 14 - - 0 @@ -225,7 +305,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} the preferred direction (BDST field) of - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 100 + 60 + 300 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -261,7 +349,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 0,0;390,0; + 390,0; @@ -335,21 +423,13 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 0,0;0,138; + 0,138; QFrame::NoFrame - - - 5 - 95 - 80 - 14 - - 0 @@ -368,24 +448,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} FINE SCAN+ - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 100 + 5 95 - 300 + 80 14 + + + + QFrame::NoFrame + 0 @@ -404,7 +484,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Move fine motor only, if possible. - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 100 + 95 + 300 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -414,14 +502,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 100 - 110 - 300 - 14 - - 0 @@ -440,7 +520,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} If coarse motor must move, position it so - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 100 + 110 + 300 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -450,14 +538,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 100 - 125 - 300 - 14 - - 0 @@ -476,7 +556,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} that fine motor is at it's low limit. - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 100 + 125 + 300 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -495,14 +583,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 0 - 0 - 80 - 14 - - 0 @@ -521,24 +601,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} FINE SCAN- - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 95 + 0 0 - 300 + 80 14 + + + + QFrame::NoFrame + 0 @@ -557,7 +637,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} ...high limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 95 + 0 + 300 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -577,14 +665,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 0 - 0 - 80 - 14 - - 0 @@ -603,24 +683,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} FINE WANDER - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 95 + 0 0 - 300 + 80 14 + + + + QFrame::NoFrame + 0 @@ -639,7 +719,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} ...midpoint - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 95 + 0 + 300 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -650,14 +738,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 5 - 185 - 390 - 14 - - 0 @@ -676,7 +756,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} For coarse-only, or fine-only motions, use the coarse - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 185 + 390 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -712,7 +800,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 0,0;390,0; + 390,0; @@ -745,7 +833,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 0,0;390,0; + 390,0; @@ -778,21 +866,13 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 0,0;390,0; + 390,0; QFrame::NoFrame - - - 100 - 75 - 300 - 14 - - 0 @@ -811,7 +891,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} the fine motor - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 100 + 75 + 300 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -821,14 +909,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 5 - 200 - 390 - 14 - - 0 @@ -847,7 +927,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} or fine motor directly. This software will cooperate. - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 200 + 390 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter diff --git a/opticsApp/op/ui/autoconvert/CoarseFineMotorShow.ui b/opticsApp/op/ui/autoconvert/CoarseFineMotorShow.ui new file mode 100644 index 0000000..bb2bcea --- /dev/null +++ b/opticsApp/op/ui/autoconvert/CoarseFineMotorShow.ui @@ -0,0 +1,618 @@ + + +MainWindow + + + + 375 + 268 + 470 + 100 + + + + + +QWidget#centralWidget {background: rgba(218, 218, 218, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + + 5 + 45 + 95 + 20 + + + + $(P)mode + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caMenu::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Mode + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 5 + 25 + 100 + 20 + + + + + + caGraphics::Rectangle + + + + 0 + 0 + 130 + 23 + + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Coarse/Fine + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 0 + 0 + 130 + 20 + + + + + + + 102 + 35 + 25 + 30 + + + + + 255 + 255 + 255 + + + + + 40 + 147 + 21 + + + + -? + + + Menu + + + help + + + CoarseFineMotorHelp.adl + + + P=$(P) + + + false + + + + + + 178 + 52 + 250 + 25 + + + + $(PM)$(CM).RBV + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caThermo::Channel + + + caThermo::Channel + + + 0.0 + + + 1.0 + + + Right + + + noDeco + + + NoScale + + + NoScale + + + 21 + + + QwtThermoMarker::Marker + + + caThermo::Static + + + + + + 228 + 24 + 150 + 25 + + + + $(PM)$(FM).RBV + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caThermo::Channel + + + caThermo::Channel + + + 0.0 + + + 1.0 + + + Right + + + noDeco + + + NoScale + + + NoScale + + + 21 + + + QwtThermoMarker::Marker + + + caThermo::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + F + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 213 + 27 + 10 + 20 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + C + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 163 + 57 + 10 + 20 + + + + + + + 430 + 85 + 40 + 15 + + + + + 105 + 105 + 105 + + + + + 218 + 218 + 218 + + + + -DEBUG + + + Menu + + + limitProc;moveCF;closeGate calc;fineModeCalc;done calc;RBV calc + + + yyTransform_full.adl;yyTransform_full.adl;yyCalcoutRecord.adl;yyCalcoutRecord.adl;yyCalcoutRecord.adl;yyCalcoutRecord.adl + + + P=$(P),T=limitProc;P=$(P),T=moveCF;P=$(P),C=closeGate;P=$(P),C=fineModeCalc;P=$(P),C=doneCalc;P=$(P),C=RBV + + + false;false;false;false;false;false + + + + + + 5 + 75 + 55 + 20 + + + + + 255 + 255 + 255 + + + + + 40 + 147 + 21 + + + + -Motors + + + Menu + + + Combined (soft) motor;Actual motors + + + motorx.adl;motor2x.adl + + + P=$(P),M=MOT;P=$(PM),M1=$(CM),M2=$(FM) + + + false;false + + + + + + 90 + 75 + 40 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -Less + + + Menu + + + Small display + + + CoarseFineMotor.adl + + + P=$(P),M=MOT,PM=$(PM),CM=$(CM),FM=$(FM) + + + true + + + caLabel_0 + caRectangle_0 + caLabel_1 + caLabel_2 + caLabel_3 + caMenu_0 + caRelatedDisplay_0 + caThermoM_0 + caThermoM_1 + caRelatedDisplay_1 + caRelatedDisplay_2 + caRelatedDisplay_3 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/autoconvert/Io.ui b/opticsApp/op/ui/autoconvert/Io.ui new file mode 100644 index 0000000..dddce40 --- /dev/null +++ b/opticsApp/op/ui/autoconvert/Io.ui @@ -0,0 +1,4118 @@ + + +MainWindow + + + + 366 + 194 + 545 + 460 + + + + + +QWidget#centralWidget {background: rgba(218, 218, 218, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + QFrame::NoFrame + + + + 130 + 4 + 0 + + + + + 130 + 4 + 0 + + + + Io + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 255 + 2 + 60 + 25 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Io.adl + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + + 461 + 2 + 80 + 10 + + + + + + + 10 + 296 + 131 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)HePath.DESC + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + string + + + caLineEdit::Static + + + + + + 142 + 291 + 60 + 25 + + + + caLineEdit::WidthAndHeight + + + $(P)HePath + + + + 0 + 0 + 0 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 206 + 296 + 50 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)HePath.EGU + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 10 + 326 + 131 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)airPath.DESC + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + string + + + caLineEdit::Static + + + + + + 142 + 321 + 60 + 25 + + + + caLineEdit::WidthAndHeight + + + $(P)airPath + + + + 0 + 0 + 0 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 206 + 326 + 50 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)airPath.EGU + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 272 + 296 + 131 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)Be.DESC + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + string + + + caLineEdit::Static + + + + + + 403 + 291 + 60 + 25 + + + + caLineEdit::WidthAndHeight + + + $(P)Be + + + + 0 + 0 + 0 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 467 + 296 + 50 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)Be.EGU + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 265 + 163 + 131 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)v2f.DESC + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + string + + + caLineEdit::Static + + + + + + 397 + 158 + 60 + 25 + + + + caLineEdit::WidthAndHeight + + + $(P)v2f + + + + 0 + 0 + 0 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + exponential + + + + + + 461 + 163 + 50 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)v2f.EGU + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 1 + 32 + 113 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)flux.DESC + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + string + + + caLineEdit::Static + + + + + + 115 + 30 + 100 + 23 + + + + caLineEdit::WidthAndHeight + + + $(P)flux + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + exponential + + + caLineEdit::Static + + + + + + 220 + 34 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)flux.EGU + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 2 + 2 + 60 + 23 + + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + small + + + Menu + + + small + + + Io_small.adl + + + P=$(P) + + + true + + + + + + 1 + 60 + 113 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)detector.DESC + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + string + + + caLineEdit::Static + + + + + + 115 + 58 + 100 + 23 + + + + caLineEdit::WidthAndHeight + + + $(P)detector + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + exponential + + + caLineEdit::Static + + + + + + 220 + 62 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)detector.EGU + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 115 + 110 + 100 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)ionAbs + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + compact + + + caLineEdit::Static + + + + + + 1 + 111 + 113 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)ionAbs.DESC + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + string + + + caLineEdit::Static + + + + + + 220 + 112 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)ionAbs.EGU + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 1 + 87 + 113 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)ionPhotons.DESC + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + string + + + caLineEdit::Static + + + + + + 115 + 86 + 100 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)ionPhotons + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + exponential + + + caLineEdit::Static + + + + + + 220 + 88 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)ionPhotons.EGU + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 397 + 62 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(S).S1 + + + + 0 + 0 + 0 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + exponential + + + caLineEdit::Static + + + + + + 397 + 37 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(S).FREQ + + + + 0 + 0 + 0 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + exponential + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Hz + + + ESimpleLabel::WidthAndHeight + + + + 482 + 39 + 70 + 14 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + scaler cnts + + + ESimpleLabel::WidthAndHeight + + + + 482 + 64 + 70 + 14 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + scaler cnts + + + ESimpleLabel::WidthAndHeight + + + + 482 + 89 + 70 + 14 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + counter clock + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + + 292 + 39 + 95 + 14 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + clock ticks + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + + 292 + 64 + 95 + 14 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Io counts + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + + 292 + 89 + 95 + 14 + + + + + + + 397 + 87 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(S).S5 + + + + 0 + 0 + 0 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + 2'' proportional cntr + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + + 377 + 349 + 140 + 12 + + + + + + + 404 + 322 + 60 + 25 + + + + caLineEdit::WidthAndHeight + + + $(P)efficiency + + + + 0 + 0 + 0 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 468 + 321 + 75 + 23 + + + + $(P)ArPcntr + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caMenu::Static + + + + + + 272 + 327 + 131 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)efficiency.DESC + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + string + + + caLineEdit::Static + + + + + + 10 + 367 + 525 + 4 + + + + 4 + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + 523,2; + + + + + + 272 + 409 + 131 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)kapton2.DESC + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + string + + + caLineEdit::Static + + + + + + 404 + 404 + 60 + 25 + + + + caLineEdit::WidthAndHeight + + + $(P)kapton2 + + + + 0 + 0 + 0 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 468 + 409 + 50 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)kapton2.EGU + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 272 + 380 + 131 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)kapton1.DESC + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + string + + + caLineEdit::Static + + + + + + 404 + 375 + 60 + 25 + + + + caLineEdit::WidthAndHeight + + + $(P)kapton1 + + + + 0 + 0 + 0 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 468 + 380 + 50 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)kapton1.EGU + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 10 + 380 + 131 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)activeLen.DESC + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + string + + + caLineEdit::Static + + + + + + 142 + 375 + 60 + 25 + + + + caLineEdit::WidthAndHeight + + + $(P)activeLen + + + + 0 + 0 + 0 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 206 + 380 + 50 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)activeLen.EGU + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 10 + 409 + 131 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)deadFront.DESC + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + string + + + caLineEdit::Static + + + + + + 142 + 404 + 60 + 25 + + + + caLineEdit::WidthAndHeight + + + $(P)deadFront + + + + 0 + 0 + 0 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 206 + 409 + 50 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)deadFront.EGU + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 10 + 438 + 131 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)deadRear.DESC + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + string + + + caLineEdit::Static + + + + + + 142 + 433 + 60 + 25 + + + + caLineEdit::WidthAndHeight + + + $(P)deadRear + + + + 0 + 0 + 0 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 206 + 438 + 50 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)deadRear.EGU + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 39 + 84 + 141 + + + + + 39 + 84 + 141 + + + + ion chamber fill gas (atm) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 176 + 218 + 250 + 15 + + + + + + caGraphics::Rectangle + + + + 104 + 210 + 400 + 75 + + + + 5 + + + + 39 + 84 + 141 + + + + + 39 + 84 + 141 + + + + + 39 + 84 + 141 + + + + Solid + + + + + + 342 + 252 + 60 + 25 + + + + caLineEdit::WidthAndHeight + + + $(P)xAr + + + + 0 + 0 + 0 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Argon + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 342 + 237 + 60 + 15 + + + + + + + 412 + 252 + 60 + 25 + + + + caLineEdit::WidthAndHeight + + + $(P)xAr + + + + 0 + 0 + 0 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + CO2 + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 412 + 237 + 60 + 15 + + + + + + + 272 + 252 + 60 + 25 + + + + caLineEdit::WidthAndHeight + + + $(P)xHe + + + + 0 + 0 + 0 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + He + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 272 + 237 + 60 + 15 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Air + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 132 + 237 + 60 + 15 + + + + + + + 132 + 252 + 60 + 25 + + + + caLineEdit::WidthAndHeight + + + $(P)xAir + + + + 0 + 0 + 0 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Nitrogen + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 202 + 237 + 60 + 15 + + + + + + + 202 + 252 + 60 + 25 + + + + caLineEdit::WidthAndHeight + + + $(P)xN2 + + + + 0 + 0 + 0 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + CHESS chamber (17.5, 60, 17.5 mm) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + + 306 + 444 + 236 + 14 + + + + + + + 171 + 135 + 110 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)scaler.DESC + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 128 + 132 + 35 + 18 + + + + $(P)scaler + + + + 0 + 0 + 0 + + + + + 187 + 187 + 187 + + + + caMenu::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + scaler channel + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + + 3 + 135 + 120 + 15 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + using + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + + 28 + 188 + 95 + 14 + + + + + + + 129 + 186 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)E_using + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 214 + 188 + 50 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)E_using.EGU + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + monochromator + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + + 24 + 164 + 95 + 14 + + + + + + + 129 + 160 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(MONO) + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 214 + 164 + 50 + 14 + + + + caLineEdit::WidthAndHeight + + + $(MONO).EGU + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 396 + 133 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)VperA + + + + 0 + 0 + 0 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + exponential + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Current Amp + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + + 293 + 112 + 95 + 14 + + + + + + + 396 + 110 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)VperA + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + exponential + + + + + + 483 + 112 + 50 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)VperA.EGU + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + caLabel_0 + caLabel_1 + caLabel_2 + caLabel_3 + caLabel_4 + caLabel_5 + caLabel_6 + caLabel_7 + caLabel_8 + caPolyLine_0 + caLabel_9 + caRectangle_0 + caLabel_10 + caLabel_11 + caLabel_12 + caLabel_13 + caLabel_14 + caLabel_15 + caLabel_16 + caLabel_17 + caLabel_18 + caLabel_19 + caLineEdit_0 + caTextEntry_0 + caLineEdit_1 + caLineEdit_2 + caTextEntry_1 + caLineEdit_3 + caLineEdit_4 + caTextEntry_2 + caLineEdit_5 + caLineEdit_6 + caTextEntry_3 + caLineEdit_7 + caLineEdit_8 + caLineEdit_9 + caLineEdit_10 + caRelatedDisplay_0 + caLineEdit_11 + caLineEdit_12 + caLineEdit_13 + caLineEdit_14 + caLineEdit_15 + caLineEdit_16 + caLineEdit_17 + caLineEdit_18 + caLineEdit_19 + caLineEdit_20 + caLineEdit_21 + caLineEdit_22 + caTextEntry_4 + caMenu_0 + caLineEdit_23 + caLineEdit_24 + caTextEntry_5 + caLineEdit_25 + caLineEdit_26 + caTextEntry_6 + caLineEdit_27 + caLineEdit_28 + caTextEntry_7 + caLineEdit_29 + caLineEdit_30 + caTextEntry_8 + caLineEdit_31 + caLineEdit_32 + caTextEntry_9 + caLineEdit_33 + caTextEntry_10 + caTextEntry_11 + caTextEntry_12 + caTextEntry_13 + caTextEntry_14 + caLineEdit_34 + caMenu_1 + caTextEntry_15 + caLineEdit_35 + caLineEdit_36 + caLineEdit_37 + caLineEdit_38 + caTextEntry_16 + caLineEdit_39 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/autoconvert/Io_small.ui b/opticsApp/op/ui/autoconvert/Io_small.ui new file mode 100644 index 0000000..415da20 --- /dev/null +++ b/opticsApp/op/ui/autoconvert/Io_small.ui @@ -0,0 +1,681 @@ + + +MainWindow + + + + 698 + 154 + 300 + 118 + + + + + +QWidget#centralWidget {background: rgba(218, 218, 218, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + QFrame::NoFrame + + + + 130 + 4 + 0 + + + + + 130 + 4 + 0 + + + + Io + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 136 + 2 + 40 + 25 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Io_small.adl + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + + 215 + 2 + 80 + 10 + + + + + + + 1 + 35 + 113 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)flux.DESC + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + string + + + caLineEdit::Static + + + + + + 115 + 33 + 100 + 23 + + + + caLineEdit::WidthAndHeight + + + $(P)flux + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + exponential + + + caLineEdit::Static + + + + + + 220 + 37 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)flux.EGU + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 2 + 2 + 60 + 23 + + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + all + + + Menu + + + all + + + Io.adl + + + P=$(P),MONO=$(MONO),S=$(S) + + + true + + + + + + 1 + 63 + 113 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)detector.DESC + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + string + + + caLineEdit::Static + + + + + + 115 + 61 + 100 + 23 + + + + caLineEdit::WidthAndHeight + + + $(P)detector + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + exponential + + + caLineEdit::Static + + + + + + 220 + 65 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)detector.EGU + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + scaler channel + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + + 18 + 94 + 113 + 18 + + + + + + + 140 + 90 + 35 + 21 + + + + $(P)scaler + + + + 0 + 0 + 0 + + + + + 187 + 187 + 187 + + + + caMenu::Static + + + + + + 186 + 94 + 110 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)scaler.DESC + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + caLabel_0 + caLabel_1 + caLabel_2 + caLineEdit_0 + caLineEdit_1 + caLineEdit_2 + caRelatedDisplay_0 + caLineEdit_3 + caLineEdit_4 + caLineEdit_5 + caMenu_0 + caLineEdit_6 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/autoconvert/MLLH.ui b/opticsApp/op/ui/autoconvert/MLLH.ui new file mode 100644 index 0000000..1a8d50a --- /dev/null +++ b/opticsApp/op/ui/autoconvert/MLLH.ui @@ -0,0 +1,302 @@ + + +MainWindow + + + + 503 + 49 + 390 + 250 + + + + + +QWidget#centralWidget {background: rgba(200, 200, 200, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + + 0 + 0 + 392 + 212 + + + + + 0 + 0 + 390 + 210 + + + + MLLH_bare.adl + + + P=$(P),Q=$(Q) + + + + + + 290 + 215 + 45 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -debug + + + Menu + + + th;z;x;t1;t2;t3;calcDone;softPut + + + motorx.adl;motorx.adl;motorx.adl;yyTransform.adl;yyTransform.adl;yyTransform.adl;yyCalcoutRecord.adl;yySeq.adl + + + P=$(P),M=$(Q)th;P=$(P),M=$(Q)z;P=$(P),M=$(Q)x;P=$(P),T=$(Q)t1;P=$(P),T=$(Q)t2;P=$(P),T=$(Q)t3;P=$(P),C=$(Q)calcDone;P=$(P),S=$(Q)softPut + + + false;false;false;false;false;false;false;false + + + + + + 340 + 215 + 40 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -More + + + Menu + + + more + + + MLLH_more.adl + + + P=$(P),Q=$(Q) + + + true + + + + + + 20 + 215 + 110 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q)sync + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Sync to Motors + + + 1 + + + caMessageButton::Static + + + + + + 160 + 215 + 100 + 30 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q)stop + + + + 251 + 243 + 74 + + + + + 253 + 0 + 0 + + + + Stop MLLH + + + 1 + + + caMessageButton::Static + + + caInclude_0 + caRelatedDisplay_0 + caRelatedDisplay_1 + caMessageButton_0 + caMessageButton_1 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/autoconvert/MLLH_bare.ui b/opticsApp/op/ui/autoconvert/MLLH_bare.ui new file mode 100644 index 0000000..b27b79d --- /dev/null +++ b/opticsApp/op/ui/autoconvert/MLLH_bare.ui @@ -0,0 +1,294 @@ + + +MainWindow + + + + 945 + 281 + 390 + 210 + + + + + +QWidget#centralWidget {background: rgba(200, 200, 200, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + caGraphics::Rectangle + + + + 0 + 0 + 390 + 25 + + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + + 10 + 30 + 120 + 180 + + + + + 10 + 30 + 118 + 178 + + + + motorx_bare.adl + + + P=$(P),M=$(Q)th + + + + + + 135 + 30 + 120 + 180 + + + + + 135 + 30 + 118 + 178 + + + + motorx_bare.adl + + + P=$(P),M=$(Q)z + + + + + + 260 + 30 + 120 + 180 + + + + + 260 + 30 + 118 + 178 + + + + motorx_bare.adl + + + P=$(P),M=$(Q)x + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + MLL H stage + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 10 + 0 + 370 + 22 + + + + + + + 0 + 22 + 389 + 3 + + + + 3 + + + + 10 + 0 + 184 + + + + Filled + + + + 10 + 0 + 184 + + + + Solid + + + 387,1; + + + caRectangle_0 + caInclude_0 + caInclude_1 + caInclude_2 + caLabel_0 + caPolyLine_0 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/autoconvert/MLLH_more.ui b/opticsApp/op/ui/autoconvert/MLLH_more.ui new file mode 100644 index 0000000..8c758ef --- /dev/null +++ b/opticsApp/op/ui/autoconvert/MLLH_more.ui @@ -0,0 +1,1261 @@ + + +MainWindow + + + + 993 + 401 + 390 + 420 + + + + + +QWidget#centralWidget {background: rgba(200, 200, 200, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + caGraphics::Rectangle + + + + 104 + 347 + 237 + 33 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + caGraphics::Circle + + + + 115 + 357 + 12 + 12 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + caGraphics::Circle + + + + 318 + 357 + 12 + 12 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + caGraphics::Arc + + + + 120 + 290 + 23 + 21 + + + + + 120 + 290 + 23 + 21 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + 120 + 290 + 23 + 21 + + + + 120 + + + + 120 + 290 + 23 + 21 + + + + 125 + + + + + caGraphics::Arc + + + + 91 + 291 + 23 + 21 + + + + + 91 + 291 + 23 + 21 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + 91 + 291 + 23 + 21 + + + + 295 + + + + 91 + 291 + 23 + 21 + + + + 125 + + + + + + 107 + 311 + 1 + 36 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 0,36; + + + + + + 128 + 311 + 1 + 36 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 0,36; + + + + + + 107 + 271 + 1 + 20 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 0,20; + + + + + + 128 + 271 + 1 + 20 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 0,20; + + + + + + 108 + 270 + 20 + 1 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 20,0; + + + + + + 191 + 306 + 60 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q)xLen + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 28 + 324 + 60 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q)zBendLen + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 92 + 303 + 1 + 60 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + $(P)$(Q)xLen + + + 0,60; + + + + + + 215 + 384 + 1 + 16 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + $(P)$(Q)xLen + + + 0,16; + + + + + + 233 + 391 + 60 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q)zNoseLen + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 119 + 331 + 202 + 1 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + $(P)$(Q)xLen + + + 202,0; + + + + + + 210 + 381 + 10 + 10 + + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + $(P)$(Q)zBendLen + + + 0,10; + + + caPolyLine::Polygon + + + + + + 312 + 326 + 10 + 10 + + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + $(P)$(Q)zBendLen + + + 0,0; + + + caPolyLine::Polygon + + + + + + 120 + 326 + 10 + 10 + + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + $(P)$(Q)zBendLen + + + 10,0; + + + caPolyLine::Polygon + + + + + + 210 + 393 + 10 + 10 + + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + $(P)$(Q)zBendLen + + + 10,0; + + + caPolyLine::Polygon + + + + + + 86 + 354 + 10 + 10 + + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + $(P)$(Q)zBendLen + + + 10,0; + + + caPolyLine::Polygon + + + + + + 87 + 301 + 10 + 10 + + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + $(P)$(Q)zBendLen + + + 0,10; + + + caPolyLine::Polygon + + + + + + 0 + 0 + 392 + 212 + + + + + 0 + 0 + 390 + 210 + + + + MLLH_bare.adl + + + P=$(P),Q=$(Q) + + + + + + 290 + 230 + 45 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -debug + + + Menu + + + th;z;x;t1;t2;t3;calcDone;softPut + + + motorx.adl;motorx.adl;motorx.adl;yyTransform.adl;yyTransform.adl;yyTransform.adl;yyCalcoutRecord.adl;yySeq.adl + + + P=$(P),M=$(Q)th;P=$(P),M=$(Q)z;P=$(P),M=$(Q)x;P=$(P),T=$(Q)t1;P=$(P),T=$(Q)t2;P=$(P),T=$(Q)t3;P=$(P),C=$(Q)calcDone;P=$(P),S=$(Q)softPut + + + false;false;false;false;false;false;false;false + + + + + + 340 + 230 + 40 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -Less + + + Menu + + + more + + + MLLH.adl + + + P=$(P),Q=$(Q) + + + true + + + + + + 10 + 230 + 40 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q)sync + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Sync + + + 1 + + + caMessageButton::Static + + + + + + 160 + 215 + 100 + 30 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q)stop + + + + 251 + 243 + 74 + + + + + 253 + 0 + 0 + + + + Stop MLLH + + + 1 + + + caMessageButton::Static + + + caRectangle_0 + caGraphics_0 + caGraphics_1 + caArc_0 + caArc_1 + caPolyLine_0 + caPolyLine_1 + caPolyLine_2 + caPolyLine_3 + caPolyLine_4 + caPolyLine_5 + caPolyLine_6 + caPolyLine_7 + caPolygon_0 + caPolygon_1 + caPolygon_2 + caPolygon_3 + caPolygon_4 + caPolygon_5 + caInclude_0 + caTextEntry_0 + caTextEntry_1 + caTextEntry_2 + caRelatedDisplay_0 + caRelatedDisplay_1 + caMessageButton_0 + caMessageButton_1 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/autoconvert/MLLV.ui b/opticsApp/op/ui/autoconvert/MLLV.ui new file mode 100644 index 0000000..8299dc1 --- /dev/null +++ b/opticsApp/op/ui/autoconvert/MLLV.ui @@ -0,0 +1,302 @@ + + +MainWindow + + + + 261 + 346 + 640 + 250 + + + + + +QWidget#centralWidget {background: rgba(200, 200, 200, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + + 0 + 0 + 642 + 212 + + + + + 0 + 0 + 640 + 210 + + + + MLLV_bare.adl + + + P=$(P),Q=$(Q) + + + + + + 480 + 215 + 70 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -debug + + + Menu + + + th;z;y;chi;x;tFwd;tRev;tLimits;tLimits1;calcDone;closeGate;misc;softPut + + + motorx.adl;motorx.adl;motorx.adl;motorx.adl;motorx.adl;yyTransform.adl;yyTransform.adl;yyTransform.adl;yyTransform.adl;yyCalcoutRecord.adl;yyCalcoutRecord.adl;MLLV_misc.adl;yySeq.adl + + + P=$(P),M=$(Q)th;P=$(P),M=$(Q)z;P=$(P),M=$(Q)y;P=$(P),M=$(Q)chi;P=$(P),M=$(Q)x;P=$(P),T=$(Q)tFwd;P=$(P),T=$(Q)tRev;P=$(P),T=$(Q)tLimits;P=$(P),T=$(Q)tLimits1;P=$(P),C=$(Q)calcDone;P=$(P),C=$(Q)closeGate;P=$(P),Q=$(Q);P=$(P),S=$(Q)softPut + + + false;false;false;false;false;false;false;false;false;false;false;false;false + + + + + + 555 + 215 + 70 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -More + + + Menu + + + more + + + MLLV_more.adl + + + P=$(P),Q=$(Q) + + + true + + + + + + 20 + 215 + 110 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q)sync + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Sync to motors + + + 1 + + + caMessageButton::Static + + + + + + 270 + 215 + 100 + 30 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q)stop + + + + 251 + 243 + 74 + + + + + 253 + 0 + 0 + + + + Stop MLLV + + + 1 + + + caMessageButton::Static + + + caInclude_0 + caRelatedDisplay_0 + caRelatedDisplay_1 + caMessageButton_0 + caMessageButton_1 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/autoconvert/MLLV_bare.ui b/opticsApp/op/ui/autoconvert/MLLV_bare.ui new file mode 100644 index 0000000..06045c5 --- /dev/null +++ b/opticsApp/op/ui/autoconvert/MLLV_bare.ui @@ -0,0 +1,344 @@ + + +MainWindow + + + + 600 + 268 + 640 + 210 + + + + + +QWidget#centralWidget {background: rgba(200, 200, 200, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + caGraphics::Rectangle + + + + 0 + 0 + 640 + 25 + + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + + 10 + 30 + 120 + 180 + + + + + 10 + 30 + 118 + 178 + + + + motorx_bare.adl + + + P=$(P),M=$(Q)th + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + MLL V stage + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 10 + 0 + 620 + 22 + + + + + + + 0 + 22 + 638 + 3 + + + + 3 + + + + 10 + 0 + 184 + + + + Filled + + + + 10 + 0 + 184 + + + + Solid + + + 636,1; + + + + + + 135 + 30 + 120 + 180 + + + + + 135 + 30 + 118 + 178 + + + + motorx_bare.adl + + + P=$(P),M=$(Q)z + + + + + + 260 + 30 + 120 + 180 + + + + + 260 + 30 + 118 + 178 + + + + motorx_bare.adl + + + P=$(P),M=$(Q)y + + + + + + 385 + 30 + 120 + 180 + + + + + 385 + 30 + 118 + 178 + + + + motorx_bare.adl + + + P=$(P),M=$(Q)chi + + + + + + 510 + 30 + 120 + 180 + + + + + 510 + 30 + 118 + 178 + + + + motorx_bare.adl + + + P=$(P),M=$(Q)x + + + caRectangle_0 + caInclude_0 + caLabel_0 + caPolyLine_0 + caInclude_1 + caInclude_2 + caInclude_3 + caInclude_4 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/autoconvert/MLLV_more.ui b/opticsApp/op/ui/autoconvert/MLLV_more.ui new file mode 100644 index 0000000..fe1820d --- /dev/null +++ b/opticsApp/op/ui/autoconvert/MLLV_more.ui @@ -0,0 +1,302 @@ + + +MainWindow + + + + 905 + 346 + 640 + 250 + + + + + +QWidget#centralWidget {background: rgba(200, 200, 200, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + + 0 + 0 + 642 + 212 + + + + + 0 + 0 + 640 + 210 + + + + MLLV_bare.adl + + + P=$(P),Q=$(Q) + + + + + + 555 + 215 + 70 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -Less + + + Menu + + + more + + + MLLV.adl + + + P=$(P),Q=$(Q) + + + true + + + + + + 20 + 215 + 110 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q)sync + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Sync to motors + + + 1 + + + caMessageButton::Static + + + + + + 270 + 215 + 100 + 30 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q)stop + + + + 251 + 243 + 74 + + + + + 253 + 0 + 0 + + + + Stop MLLV + + + 1 + + + caMessageButton::Static + + + + + + 480 + 215 + 70 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -debug + + + Menu + + + th;z;y;chi;x;tFwd;tRev;tLimits;tLimits1;calcDone;closeGate;misc;softPut + + + motorx.adl;motorx.adl;motorx.adl;motorx.adl;motorx.adl;yyTransform.adl;yyTransform.adl;yyTransform.adl;yyTransform.adl;yyCalcoutRecord.adl;yyCalcoutRecord.adl;MLLV_misc.adl;yySeq.adl + + + P=$(P),M=$(Q)th;P=$(P),M=$(Q)z;P=$(P),M=$(Q)y;P=$(P),M=$(Q)chi;P=$(P),M=$(Q)x;P=$(P),T=$(Q)tFwd;P=$(P),T=$(Q)tRev;P=$(P),T=$(Q)tLimits;P=$(P),T=$(Q)tLimits1;P=$(P),C=$(Q)calcDone;P=$(P),C=$(Q)closeGate;P=$(P),Q=$(Q);P=$(P),S=$(Q)softPut + + + false;false;false;false;false;false;false;false;false;false;false;false;false + + + caInclude_0 + caRelatedDisplay_0 + caMessageButton_0 + caMessageButton_1 + caRelatedDisplay_1 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/SGM.ui b/opticsApp/op/ui/autoconvert/SGM.ui similarity index 87% rename from opticsApp/op/ui/SGM.ui rename to opticsApp/op/ui/autoconvert/SGM.ui index 91ccc99..ed9dc19 100644 --- a/opticsApp/op/ui/SGM.ui +++ b/opticsApp/op/ui/autoconvert/SGM.ui @@ -4,8 +4,8 @@ - 381 - 44 + 812 + 582 592 290 @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -258,7 +346,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Dash - 60,0;0,0; + 0,0; @@ -298,7 +386,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,17;9,1; + 9,1; @@ -338,21 +426,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;10,17; + 10,17; QFrame::NoFrame - - - 549 - 205 - 20 - 20 - - 251 @@ -371,24 +451,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} r' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - QFrame::NoFrame - - 428 + 549 205 - 10 + 20 20 + + + + QFrame::NoFrame + 251 @@ -407,11 +487,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} r - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 428 + 205 + 10 + 20 + + @@ -450,21 +538,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Dash - 0,0;0,89; + 0,89; QFrame::NoFrame - - - 484 - 266 - 10 - 20 - - 251 @@ -483,11 +563,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} x - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 484 + 266 + 10 + 20 + + @@ -526,7 +614,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 9,0;0,38;9,38; + 9,38; @@ -603,14 +691,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 429 - 256 - 30 - 20 - - 251 @@ -629,11 +709,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} phi - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 429 + 256 + 30 + 20 + + @@ -672,14 +760,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 0 - 595 - 20 - - 0 @@ -698,11 +778,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Spherical Grating Monochromator - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 0 + 595 + 20 + + @@ -743,7 +831,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)SGM$(N):auto - 0,0;0,15;10,7;0,0; + 0,0; caPolyLine::Polygon @@ -824,21 +912,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;1,286; + 1,286; QFrame::NoFrame - - - 325 - 125 - 60 - 10 - - 45 @@ -857,7 +937,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Calib: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 325 + 125 + 60 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -903,7 +991,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)SGM$(N):move.PROC @@ -999,14 +1087,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 130 - 100 - 10 - - 0 @@ -1025,11 +1105,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} SCAN CONTROL - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 5 + 130 + 100 + 10 + + @@ -1041,7 +1129,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -1080,7 +1168,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)SGM$(N):Energy:scanParms.GO @@ -1119,7 +1207,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)SGM$(N):Energy:scanParms.LOAD @@ -1197,7 +1285,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):EnergyRBV @@ -1251,7 +1339,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):Energy @@ -1302,7 +1390,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)SGM$(N):EnergyTweak.A @@ -1341,7 +1429,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):EnergyTweak.C @@ -1392,7 +1480,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)SGM$(N):EnergyTweak.B @@ -1431,7 +1519,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):Energy.DRVL @@ -1485,7 +1573,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):Energy.DRVH @@ -1533,14 +1621,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 25 - 100 - 20 - - 0 @@ -1559,24 +1639,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Energy(eV) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 390 + 5 25 - 200 - 10 + 100 + 20 + + + + QFrame::NoFrame + 255 @@ -1595,11 +1675,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} SGM Motors - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 390 + 25 + 200 + 10 + + @@ -1611,7 +1699,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -1673,7 +1761,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;1,140; + 1,140; @@ -1713,21 +1801,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;593,1; + 593,1; QFrame::NoFrame - - - 110 - 25 - 100 - 20 - - 0 @@ -1746,11 +1826,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Wavelen(A) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 110 + 25 + 100 + 20 + + @@ -1762,7 +1850,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):LambdaRBV @@ -1816,7 +1904,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):Lambda @@ -1867,7 +1955,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):Lambda.DRVH @@ -1921,7 +2009,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):Lambda.DRVL @@ -2002,14 +2090,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 110 - 130 - 100 - 10 - - 0 @@ -2028,11 +2108,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} SCAN CONTROL - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 110 + 130 + 100 + 10 + + @@ -2044,7 +2132,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -2083,7 +2171,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)SGM$(N):Lambda:scanParms.GO @@ -2122,7 +2210,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)SGM$(N):Lambda:scanParms.LOAD @@ -2200,7 +2288,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)SGM$(N):LambdaTweak.A @@ -2239,7 +2327,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):LambdaTweak.C @@ -2290,7 +2378,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)SGM$(N):LambdaTweak.B @@ -2356,14 +2444,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 215 - 130 - 100 - 10 - - 0 @@ -2382,11 +2462,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} SCAN CONTROL - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 215 + 130 + 100 + 10 + + @@ -2398,7 +2486,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -2437,7 +2525,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)SGM$(N):phi:scanParms.GO @@ -2476,7 +2564,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)SGM$(N):phi:scanParms.LOAD @@ -2554,7 +2642,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):phiRBV @@ -2608,7 +2696,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):phi @@ -2659,7 +2747,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)SGM$(N):phiTweak.A @@ -2698,7 +2786,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):phiTweak.C @@ -2749,7 +2837,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)SGM$(N):phiTweak.B @@ -2788,7 +2876,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):phi.DRVL @@ -2842,7 +2930,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):phi.DRVH @@ -2890,14 +2978,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 215 - 25 - 100 - 20 - - 0 @@ -2916,11 +2996,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Phi(deg) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 215 + 25 + 100 + 20 + + @@ -2959,7 +3047,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;595,1; + 595,1; @@ -2972,7 +3060,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)SGM$(N):sync.PROC @@ -3034,7 +3122,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;94,50;112,51;0,0; + 0,0; caPolyLine::Polygon @@ -3070,7 +3158,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 102,0;18,52;0,50;102,0; + 102,0; caPolyLine::Polygon @@ -3110,7 +3198,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Dash - 24,0;0,7; + 0,7; @@ -3147,7 +3235,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 5,0;0,3;5,6; + 5,6; @@ -3271,7 +3359,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,23;46,0;38,0; + 38,0; @@ -3350,14 +3438,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 212 - 100 - 10 - - 253 @@ -3382,7 +3462,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} THAT GRATING IS - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 212 + 100 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3392,14 +3480,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 222 - 100 - 10 - - 253 @@ -3424,7 +3504,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} NOT INSTALLED. - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 222 + 100 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3434,14 +3522,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 232 - 100 - 10 - - 253 @@ -3466,11 +3546,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} (NOTHING DONE) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 5 + 232 + 100 + 10 + + @@ -3518,14 +3606,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 400 - 35 - 60 - 10 - - 251 @@ -3550,24 +3630,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Soft limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 530 + 400 35 60 10 + + + + QFrame::NoFrame + 251 @@ -3592,24 +3672,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Soft limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 465 + 530 35 60 10 + + + + QFrame::NoFrame + 251 @@ -3634,24 +3714,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Soft limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 400 + 465 35 60 10 + + + + QFrame::NoFrame + 253 @@ -3676,16 +3756,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Low limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 400 @@ -3694,6 +3769,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 10 + + + + QFrame::NoFrame + 253 @@ -3718,24 +3798,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} High limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 465 + 400 35 60 10 + + + + QFrame::NoFrame + 253 @@ -3760,16 +3840,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} High limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 465 @@ -3778,6 +3853,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 10 + + + + QFrame::NoFrame + 253 @@ -3802,24 +3882,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Low limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 530 + 465 35 60 10 + + + + QFrame::NoFrame + 253 @@ -3844,16 +3924,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Low limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 530 @@ -3862,6 +3937,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 10 + + + + QFrame::NoFrame + 253 @@ -3886,24 +3966,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} High limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 531 + 530 35 - 56 + 60 10 + + + + QFrame::NoFrame + 251 @@ -3928,225 +4008,85 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} AT LIMIT - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 531 + 35 + 56 + 10 + + - + + + caGraphics::Rectangle + 462 120 - 67 - 40 - - - - - caGraphics::Rectangle - - - - 0 - 0 - 65 - 38 - - - - - 120 - 120 - 120 - - - - Filled - - - - 120 - 120 - 120 - - - - Solid - - - - - - 5 - 2 - 56 - 10 - - - - caLineEdit::Height - - - $(P)$(M_x).RRBV - - - - 10 - 0 - 184 - - - - - 120 - 120 - 120 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - - 5 - 10 - 56 - 16 - - - - caLineEdit::Height - - - $(P)$(M_x).RVAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 0 - 28 - 65 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - steps - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - + 65 + 38 + + + + + 120 + 120 + 120 + + + + Filled + + + + 120 + 120 + 120 + + + + Solid + - + 467 - 87 + 122 56 - 20 + 10 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)$(M_x).VAL + $(P)$(M_x).RRBV - 0 + 10 0 - 0 + 184 - 115 - 223 - 255 + 120 + 120 + 120 + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + caLineEdit::Channel @@ -4162,45 +4102,42 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 1.0 - - caLineEdit::Static - decimal + + caLineEdit::Static + - + 467 - 74 + 130 56 - 14 + 16 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)$(M_x).RBV + $(P)$(M_x).RVAL - 10 + 0 0 - 184 + 0 - 200 - 200 - 200 + 115 + 223 + 255 - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - caLineEdit::Channel @@ -4216,77 +4153,210 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 1.0 - - decimal - caLineEdit::Static - - - - caGraphics::Rectangle - - - - 465 - 72 - 60 - 37 - + + decimal - - 2 + + + + QFrame::NoFrame - 115 - 255 - 107 + 0 + 0 + 0 - 115 - 255 - 107 - - - - - 115 - 255 - 107 + 0 + 0 + 0 - - Solid - - - caGraphics::IfZero + + steps - - $(P)$(M_x).DMOV + + ESimpleLabel::WidthAndHeight - - - - QFrame::NoFrame + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - 465 - 62 - 60 + 462 + 148 + 65 10 - - - 45 - 45 - 45 - + + + + + 467 + 87 + 56 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M_x).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 467 + 74 + 56 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M_x).RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + caGraphics::Rectangle + + + + 465 + 72 + 60 + 37 + + + + 2 + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(M_x).DMOV + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + @@ -4299,11 +4369,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(M_x) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 465 + 62 + 60 + 10 + + @@ -4315,7 +4393,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M_rOut).RBV @@ -4363,14 +4441,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 530 - 62 - 60 - 10 - - 45 @@ -4389,11 +4459,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(M_rOut) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 530 + 62 + 60 + 10 + + @@ -4405,7 +4483,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M_rOut).VAL @@ -4502,7 +4580,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M_rIn).RBV @@ -4550,14 +4628,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 400 - 62 - 60 - 10 - - 45 @@ -4576,11 +4646,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(M_rIn) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 400 + 62 + 60 + 10 + + @@ -4592,7 +4670,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M_rIn).VAL @@ -4667,7 +4745,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;0,107; + 0,107; @@ -4704,7 +4782,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;0,107; + 0,107; @@ -4763,7 +4841,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):T2.H @@ -4817,7 +4895,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):T2.G @@ -4895,14 +4973,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 430 - 52 - 30 - 10 - - 45 @@ -4921,24 +4991,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} (m) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 495 + 430 52 30 10 + + + + QFrame::NoFrame + 45 @@ -4957,24 +5027,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} (mm) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 560 + 495 52 30 10 + + + + QFrame::NoFrame + 45 @@ -4993,24 +5063,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} (m) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 400 - 45 + 560 + 52 30 - 20 + 10 + + + + QFrame::NoFrame + 0 @@ -5029,25 +5099,25 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} r - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - QFrame::NoFrame - - 465 + 400 45 30 20 - + + + + QFrame::NoFrame + + 0 0 @@ -5065,24 +5135,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} x - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - QFrame::NoFrame - - 530 + 465 45 30 20 + + + + QFrame::NoFrame + 0 @@ -5101,24 +5171,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} r' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 530 + 45 + 30 + 20 + + QFrame::NoFrame - - - 0 - 0 - 20 - 8 - - 0 @@ -5137,7 +5207,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} V1.8 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 0 + 20 + 8 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -5147,14 +5225,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 100 - 169 - 95 - 18 - - 45 @@ -5173,7 +5243,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Description: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 100 + 169 + 95 + 18 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -5183,14 +5261,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 100 - 249 - 150 - 14 - - 45 @@ -5209,24 +5279,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} tangent-arm length: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - QFrame::NoFrame - 100 - 269 + 249 150 14 + + + + QFrame::NoFrame + 45 @@ -5245,24 +5315,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} included angle: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - QFrame::NoFrame - 100 - 229 + 269 150 14 + + + + QFrame::NoFrame + 45 @@ -5281,24 +5351,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} radius of curvature: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - QFrame::NoFrame - 100 - 189 + 229 150 14 + + + + QFrame::NoFrame + 45 @@ -5317,24 +5387,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} diffraction order: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - QFrame::NoFrame - 100 - 209 + 189 150 14 + + + + QFrame::NoFrame + 45 @@ -5353,11 +5423,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} grating line density: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 100 + 209 + 150 + 14 + + @@ -5369,7 +5447,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):len @@ -5420,7 +5498,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):2Theta @@ -5471,7 +5549,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):R @@ -5525,7 +5603,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):gDensity @@ -5569,359 +5647,329 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLineEdit::Static - + + + + 320 + 269 + 65 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):2Theta.EGU + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 320 + 249 + 65 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):len.EGU + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + 320 209 - 67 - 76 - - - - - - 0 - 40 - 67 - 36 - - - - - - 0 - 20 - 65 - 14 - - - - caLineEdit::Height - - - $(P)SGM$(N):2Theta.EGU - - - - 10 - 0 - 184 - - - - - 200 - 200 - 200 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 0 - 0 - 65 - 14 - - - - caLineEdit::Height - - - $(P)SGM$(N):len.EGU - - - - 10 - 0 - 184 - - - - - 200 - 200 - 200 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - - 0 - 0 - 65 - 14 - - - - caLineEdit::Height - - - $(P)SGM$(N):gDensity.EGU - - - - 10 - 0 - 184 - - - - - 200 - 200 - 200 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 0 - 20 - 65 - 14 - - - - caLineEdit::Height - - - $(P)SGM$(N):R.EGU - - - - 10 - 0 - 184 - - - - - 200 - 200 - 200 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - + 65 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):gDensity.EGU + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 320 + 229 + 65 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):R.EGU + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 325 + 189 + 60 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):m.EGU + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + 255 189 - 132 - 16 + 65 + 14 - - - - 70 - 0 - 60 - 14 - - - - caLineEdit::Height - - - $(P)SGM$(N):m.EGU - - - - 10 - 0 - 184 - - - - - 200 - 200 - 200 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 0 - 0 - 65 - 14 - - - - caLineEdit::Height - - - $(P)SGM$(N):m - - - - 10 - 0 - 184 - - - - - 200 - 200 - 200 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):m + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + @@ -5933,7 +5981,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):stripeDesc @@ -6031,7 +6079,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLabel_25 caRectangle_8 caLabel_26 - caFrame_0 caRectangle_9 caLabel_27 caLabel_28 @@ -6053,9 +6100,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLabel_40 caLabel_41 caLabel_42 - caFrame_2 - caFrame_1 - caFrame_3 caChoice_0 caMessageButton_0 caMenu_0 diff --git a/opticsApp/op/ui/autoconvert/SGM_gratings.ui b/opticsApp/op/ui/autoconvert/SGM_gratings.ui new file mode 100644 index 0000000..3d160e5 --- /dev/null +++ b/opticsApp/op/ui/autoconvert/SGM_gratings.ui @@ -0,0 +1,10104 @@ + + +MainWindow + + + + 173 + 166 + 600 + 395 + + + + + +QWidget#centralWidget {background: rgba(200, 200, 200, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + USE + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 0 + 20 + 25 + 14 + + + + + + + 2 + 160 + 22 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)SGM$(N):grating + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 7 + + + 6 + + + caMessageButton::Static + + + + + + 2 + 180 + 22 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)SGM$(N):grating + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 8 + + + 7 + + + caMessageButton::Static + + + + + + 2 + 200 + 22 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)SGM$(N):grating + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 9 + + + 8 + + + caMessageButton::Static + + + + + + 2 + 220 + 22 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)SGM$(N):grating + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 10 + + + 9 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + + + + 0 + 178 + 25 + 20 + + + + 2 + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfZero + + + $(P)SGM$(N):sel_exists_1.DO8 + + + + + caGraphics::Rectangle + + + + 0 + 158 + 25 + 20 + + + + 2 + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfZero + + + $(P)SGM$(N):sel_exists_1.DO7 + + + + + caGraphics::Rectangle + + + + 0 + 198 + 25 + 20 + + + + 2 + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfZero + + + $(P)SGM$(N):sel_exists_1.DO9 + + + + + caGraphics::Rectangle + + + + 0 + 218 + 25 + 20 + + + + 2 + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfZero + + + $(P)SGM$(N):sel_exists_1.DOA + + + + + + 2 + 40 + 22 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)SGM$(N):grating + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 2 + 60 + 22 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)SGM$(N):grating + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 2 + + + 1 + + + caMessageButton::Static + + + + + + 2 + 80 + 22 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)SGM$(N):grating + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 3 + + + 2 + + + caMessageButton::Static + + + + + + 2 + 100 + 22 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)SGM$(N):grating + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 4 + + + 3 + + + caMessageButton::Static + + + + + + 2 + 120 + 22 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)SGM$(N):grating + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 5 + + + 4 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + + + + 0 + 78 + 25 + 20 + + + + 2 + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfZero + + + $(P)SGM$(N):sel_exists_1.DO3 + + + + + caGraphics::Rectangle + + + + 0 + 58 + 25 + 20 + + + + 2 + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfZero + + + $(P)SGM$(N):sel_exists_1.DO2 + + + + + caGraphics::Rectangle + + + + 0 + 38 + 25 + 20 + + + + 2 + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfZero + + + $(P)SGM$(N):sel_exists_1.DO1 + + + + + caGraphics::Rectangle + + + + 0 + 98 + 25 + 20 + + + + 2 + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfZero + + + $(P)SGM$(N):sel_exists_1.DO4 + + + + + caGraphics::Rectangle + + + + 0 + 118 + 25 + 20 + + + + 2 + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfZero + + + $(P)SGM$(N):sel_exists_1.DO5 + + + + + + 2 + 140 + 22 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)SGM$(N):grating + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 6 + + + 5 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + + + + 0 + 138 + 25 + 20 + + + + 2 + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfZero + + + $(P)SGM$(N):sel_exists_1.DO6 + + + + + + 2 + 240 + 22 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)SGM$(N):grating + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 11 + + + 10 + + + caMessageButton::Static + + + + + + 2 + 260 + 22 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)SGM$(N):grating + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 12 + + + 11 + + + caMessageButton::Static + + + + + + 2 + 280 + 22 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)SGM$(N):grating + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 13 + + + 12 + + + caMessageButton::Static + + + + + + 2 + 300 + 22 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)SGM$(N):grating + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 14 + + + 13 + + + caMessageButton::Static + + + + + + 2 + 320 + 22 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)SGM$(N):grating + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 15 + + + 14 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + + + + 0 + 278 + 25 + 20 + + + + 2 + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfZero + + + $(P)SGM$(N):sel_exists_2.DO3 + + + + + caGraphics::Rectangle + + + + 0 + 258 + 25 + 20 + + + + 2 + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfZero + + + $(P)SGM$(N):sel_exists_2.DO2 + + + + + caGraphics::Rectangle + + + + 0 + 238 + 25 + 20 + + + + 2 + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfZero + + + $(P)SGM$(N):sel_exists_2.DO1 + + + + + caGraphics::Rectangle + + + + 0 + 298 + 25 + 20 + + + + 2 + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfZero + + + $(P)SGM$(N):sel_exists_2.DO4 + + + + + caGraphics::Rectangle + + + + 0 + 318 + 25 + 20 + + + + 2 + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfZero + + + $(P)SGM$(N):sel_exists_2.DO5 + + + + + + 2 + 340 + 22 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)SGM$(N):grating + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 16 + + + 15 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + + + + 0 + 338 + 25 + 20 + + + + 2 + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfZero + + + $(P)SGM$(N):sel_exists_2.DO6 + + + + + + 555 + 40 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_exists_1.DO1 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 555 + 60 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_exists_1.DO2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 555 + 80 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_exists_1.DO3 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 555 + 100 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_exists_1.DO4 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 555 + 120 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_exists_1.DO5 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 555 + 140 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_exists_1.DO6 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 555 + 160 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_exists_1.DO7 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 555 + 180 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_exists_1.DO8 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 555 + 200 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_exists_1.DO9 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 555 + 220 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_exists_1.DOA + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 555 + 240 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_exists_2.DO1 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 555 + 260 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_exists_2.DO2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 555 + 280 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_exists_2.DO3 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 555 + 300 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_exists_2.DO4 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 555 + 320 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_exists_2.DO5 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 555 + 340 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_exists_2.DO6 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 30 + 40 + 100 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_desc_1.STR1 + + + + 0 + 0 + 0 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 30 + 60 + 100 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_desc_1.STR2 + + + + 0 + 0 + 0 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 30 + 80 + 100 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_desc_1.STR3 + + + + 0 + 0 + 0 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 30 + 100 + 100 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_desc_1.STR4 + + + + 0 + 0 + 0 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 30 + 120 + 100 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_desc_1.STR5 + + + + 0 + 0 + 0 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 30 + 140 + 100 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_desc_1.STR6 + + + + 0 + 0 + 0 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 30 + 160 + 100 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_desc_1.STR7 + + + + 0 + 0 + 0 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 30 + 180 + 100 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_desc_1.STR8 + + + + 0 + 0 + 0 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 30 + 200 + 100 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_desc_1.STR9 + + + + 0 + 0 + 0 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 30 + 220 + 100 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_desc_1.STRA + + + + 0 + 0 + 0 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 30 + 240 + 100 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_desc_2.STR1 + + + + 0 + 0 + 0 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 30 + 260 + 100 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_desc_2.STR2 + + + + 0 + 0 + 0 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 30 + 280 + 100 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_desc_2.STR3 + + + + 0 + 0 + 0 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 30 + 300 + 100 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_desc_2.STR4 + + + + 0 + 0 + 0 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 30 + 320 + 100 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_desc_2.STR5 + + + + 0 + 0 + 0 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 30 + 340 + 100 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_desc_2.STR6 + + + + 0 + 0 + 0 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 135 + 160 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_m_1.DO7 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 180 + 160 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_den_1.DO7 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 245 + 160 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_R_1.DO7 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 310 + 160 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Wlow_1.DO7 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 375 + 160 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Whigh_1.DO7 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 440 + 160 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_loc_1.DO7 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 135 + 180 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_m_1.DO8 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 180 + 180 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_den_1.DO8 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 245 + 180 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_R_1.DO8 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 310 + 180 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Wlow_1.DO8 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 375 + 180 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Whigh_1.DO8 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 440 + 180 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_loc_1.DO8 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 135 + 200 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_m_1.DO9 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 180 + 200 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_den_1.DO9 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 245 + 200 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_R_1.DO9 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 310 + 200 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Wlow_1.DO9 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 375 + 200 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Whigh_1.DO9 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 440 + 200 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_loc_1.DO9 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 135 + 220 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_m_1.DOA + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 180 + 220 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_den_1.DOA + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 245 + 220 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_R_1.DOA + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 310 + 220 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Wlow_1.DOA + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 375 + 220 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Whigh_1.DOA + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 440 + 220 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_loc_1.DOA + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 135 + 40 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_m_1.DO1 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 180 + 40 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_den_1.DO1 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 245 + 40 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_R_1.DO1 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 310 + 40 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Wlow_1.DO1 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 375 + 40 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Whigh_1.DO1 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 440 + 40 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_loc_1.DO1 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 135 + 60 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_m_1.DO2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 180 + 60 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_den_1.DO2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 245 + 60 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_R_1.DO2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 310 + 60 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Wlow_1.DO2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 375 + 60 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Whigh_1.DO2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 440 + 60 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_loc_1.DO2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 135 + 80 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_m_1.DO3 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 180 + 80 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_den_1.DO3 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 245 + 80 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_R_1.DO3 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 310 + 80 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Wlow_1.DO3 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 375 + 80 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Whigh_1.DO3 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 440 + 80 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_loc_1.DO3 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 135 + 100 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_m_1.DO4 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 180 + 100 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_den_1.DO4 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 245 + 100 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_R_1.DO4 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 310 + 100 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Wlow_1.DO4 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 375 + 100 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Whigh_1.DO4 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 440 + 100 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_loc_1.DO4 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 135 + 120 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_m_1.DO5 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 180 + 120 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_den_1.DO5 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 245 + 120 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_R_1.DO5 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 310 + 120 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Wlow_1.DO5 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 375 + 120 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Whigh_1.DO5 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 440 + 120 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_loc_1.DO6 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 135 + 140 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_m_1.DO6 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 180 + 140 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_den_1.DO6 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 245 + 140 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_R_1.DO6 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 310 + 140 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Wlow_1.DO6 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 375 + 140 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Whigh_1.DO6 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 440 + 140 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_loc_1.DO6 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 135 + 240 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_m_2.DO1 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 180 + 240 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_den_2.DO1 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 245 + 240 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_R_2.DO1 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 310 + 240 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Wlow_2.DO1 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 375 + 240 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Whigh_2.DO1 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 440 + 240 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_loc_2.DO1 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 135 + 260 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_m_2.DO2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 180 + 260 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_den_2.DO2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 245 + 260 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_R_2.DO2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 310 + 260 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Wlow_2.DO2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 375 + 260 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Whigh_2.DO2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 440 + 260 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_loc_2.DO2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 135 + 280 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_m_2.DO3 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 180 + 280 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_den_2.DO3 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 245 + 280 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_R_2.DO3 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 310 + 280 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Wlow_2.DO3 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 375 + 280 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Whigh_2.DO3 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 440 + 280 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_loc_2.DO3 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 135 + 300 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_m_2.DO4 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 180 + 300 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_den_2.DO4 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 245 + 300 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_R_2.DO4 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 310 + 300 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Wlow_2.DO4 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 375 + 300 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Whigh_2.DO4 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 440 + 300 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_loc_2.DO4 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 135 + 320 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_m_2.DO5 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 180 + 320 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_den_2.DO5 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 245 + 320 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_R_2.DO5 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 310 + 320 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Wlow_2.DO5 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 375 + 320 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Whigh_2.DO5 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 440 + 320 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_loc_2.DO6 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 135 + 340 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_m_2.DO6 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 180 + 340 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_den_2.DO6 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 245 + 340 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_R_2.DO6 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 310 + 340 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Wlow_2.DO6 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 375 + 340 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_Whigh_2.DO6 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 440 + 340 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_loc_2.DO6 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 505 + 40 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_xOff_1.DO1 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 505 + 60 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_xOff_1.DO2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 505 + 80 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_xOff_1.DO3 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 505 + 100 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_xOff_1.DO4 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 505 + 120 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_xOff_1.DO5 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 505 + 140 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_xOff_1.DO6 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 505 + 160 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_xOff_1.DO7 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 505 + 180 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_xOff_1.DO8 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 505 + 200 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_xOff_1.DO9 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 505 + 220 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_xOff_1.DOA + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 505 + 240 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_xOff_2.DO1 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 505 + 260 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_xOff_2.DO2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 505 + 280 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_xOff_2.DO3 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 505 + 300 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_xOff_2.DO4 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 505 + 320 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_xOff_2.DO5 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 505 + 340 + 40 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):sel_xOff_2.DO6 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 440 + 370 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)SGM$(N):StripeWidth + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + Stripe width: + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + + 345 + 370 + 90 + 14 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + grating + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 30 + 0 + 100 + 14 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + diffract + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 135 + 0 + 40 + 14 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + line + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 180 + 0 + 60 + 14 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + grating + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 245 + 0 + 60 + 14 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + Wavelen + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 310 + 0 + 60 + 14 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + Wavelen + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 375 + 0 + 60 + 14 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + grating + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 440 + 0 + 60 + 14 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + X-motor + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 505 + 0 + 40 + 14 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + OK to + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 555 + 0 + 40 + 14 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + description + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 30 + 15 + 100 + 14 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + order + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 135 + 15 + 40 + 14 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + density + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 180 + 15 + 60 + 14 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + radius + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 245 + 15 + 60 + 14 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + Lo Lim + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 310 + 15 + 60 + 14 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + Hi Lim + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 375 + 15 + 60 + 14 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + index + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 440 + 15 + 60 + 14 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + offset + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 505 + 15 + 40 + 14 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + use? + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 555 + 15 + 40 + 14 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 30 + 30 + 100 + 10 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 135 + 30 + 40 + 10 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + [lines/mm] + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 180 + 30 + 60 + 10 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + [m] + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 245 + 30 + 60 + 10 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + [Angstroms] + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 310 + 30 + 60 + 10 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + [Angstroms] + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 375 + 30 + 60 + 10 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + (stripe #) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 440 + 30 + 60 + 10 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + [mm] + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 505 + 30 + 40 + 10 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + 1==YES + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 555 + 30 + 40 + 10 + + + + caLabel_0 + caRectangle_0 + caRectangle_1 + caRectangle_2 + caRectangle_3 + caRectangle_4 + caRectangle_5 + caRectangle_6 + caRectangle_7 + caRectangle_8 + caRectangle_9 + caRectangle_10 + caRectangle_11 + caRectangle_12 + caRectangle_13 + caRectangle_14 + caRectangle_15 + caLabel_1 + caLabel_2 + caLabel_3 + caLabel_4 + caLabel_5 + caLabel_6 + caLabel_7 + caLabel_8 + caLabel_9 + caLabel_10 + caLabel_11 + caLabel_12 + caLabel_13 + caLabel_14 + caLabel_15 + caLabel_16 + caLabel_17 + caLabel_18 + caLabel_19 + caLabel_20 + caLabel_21 + caLabel_22 + caLabel_23 + caLabel_24 + caLabel_25 + caLabel_26 + caLabel_27 + caLabel_28 + caMessageButton_0 + caMessageButton_1 + caMessageButton_2 + caMessageButton_3 + caMessageButton_4 + caMessageButton_5 + caMessageButton_6 + caMessageButton_7 + caMessageButton_8 + caMessageButton_9 + caMessageButton_10 + caMessageButton_11 + caMessageButton_12 + caMessageButton_13 + caMessageButton_14 + caMessageButton_15 + caTextEntry_0 + caTextEntry_1 + caTextEntry_2 + caTextEntry_3 + caTextEntry_4 + caTextEntry_5 + caTextEntry_6 + caTextEntry_7 + caTextEntry_8 + caTextEntry_9 + caTextEntry_10 + caTextEntry_11 + caTextEntry_12 + caTextEntry_13 + caTextEntry_14 + caTextEntry_15 + caTextEntry_16 + caTextEntry_17 + caTextEntry_18 + caTextEntry_19 + caTextEntry_20 + caTextEntry_21 + caTextEntry_22 + caTextEntry_23 + caTextEntry_24 + caTextEntry_25 + caTextEntry_26 + caTextEntry_27 + caTextEntry_28 + caTextEntry_29 + caTextEntry_30 + caTextEntry_31 + caTextEntry_32 + caTextEntry_33 + caTextEntry_34 + caTextEntry_35 + caTextEntry_36 + caTextEntry_37 + caTextEntry_38 + caTextEntry_39 + caTextEntry_40 + caTextEntry_41 + caTextEntry_42 + caTextEntry_43 + caTextEntry_44 + caTextEntry_45 + caTextEntry_46 + caTextEntry_47 + caTextEntry_48 + caTextEntry_49 + caTextEntry_50 + caTextEntry_51 + caTextEntry_52 + caTextEntry_53 + caTextEntry_54 + caTextEntry_55 + caTextEntry_56 + caTextEntry_57 + caTextEntry_58 + caTextEntry_59 + caTextEntry_60 + caTextEntry_61 + caTextEntry_62 + caTextEntry_63 + caTextEntry_64 + caTextEntry_65 + caTextEntry_66 + caTextEntry_67 + caTextEntry_68 + caTextEntry_69 + caTextEntry_70 + caTextEntry_71 + caTextEntry_72 + caTextEntry_73 + caTextEntry_74 + caTextEntry_75 + caTextEntry_76 + caTextEntry_77 + caTextEntry_78 + caTextEntry_79 + caTextEntry_80 + caTextEntry_81 + caTextEntry_82 + caTextEntry_83 + caTextEntry_84 + caTextEntry_85 + caTextEntry_86 + caTextEntry_87 + caTextEntry_88 + caTextEntry_89 + caTextEntry_90 + caTextEntry_91 + caTextEntry_92 + caTextEntry_93 + caTextEntry_94 + caTextEntry_95 + caTextEntry_96 + caTextEntry_97 + caTextEntry_98 + caTextEntry_99 + caTextEntry_100 + caTextEntry_101 + caTextEntry_102 + caTextEntry_103 + caTextEntry_104 + caTextEntry_105 + caTextEntry_106 + caTextEntry_107 + caTextEntry_108 + caTextEntry_109 + caTextEntry_110 + caTextEntry_111 + caTextEntry_112 + caTextEntry_113 + caTextEntry_114 + caTextEntry_115 + caTextEntry_116 + caTextEntry_117 + caTextEntry_118 + caTextEntry_119 + caTextEntry_120 + caTextEntry_121 + caTextEntry_122 + caTextEntry_123 + caTextEntry_124 + caTextEntry_125 + caTextEntry_126 + caTextEntry_127 + caTextEntry_128 + caTextEntry_129 + caTextEntry_130 + caTextEntry_131 + caTextEntry_132 + caTextEntry_133 + caTextEntry_134 + caTextEntry_135 + caTextEntry_136 + caTextEntry_137 + caTextEntry_138 + caTextEntry_139 + caTextEntry_140 + caTextEntry_141 + caTextEntry_142 + caTextEntry_143 + caTextEntry_144 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/SGM_tiny.ui b/opticsApp/op/ui/autoconvert/SGM_tiny.ui similarity index 91% rename from opticsApp/op/ui/SGM_tiny.ui rename to opticsApp/op/ui/autoconvert/SGM_tiny.ui index 32e6a1b..e991d9d 100644 --- a/opticsApp/op/ui/SGM_tiny.ui +++ b/opticsApp/op/ui/autoconvert/SGM_tiny.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -22,14 +110,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 80 - 164 - 75 - 10 - - 253 @@ -54,16 +134,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Motor limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 80 @@ -72,6 +147,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 10 + + + + QFrame::NoFrame + 253 @@ -96,16 +176,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Motor limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 80 @@ -114,6 +189,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 10 + + + + QFrame::NoFrame + 251 @@ -138,16 +218,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Motor limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 80 @@ -156,6 +231,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 10 + + + + QFrame::NoFrame + 251 @@ -180,16 +260,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Motor limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 80 @@ -198,6 +273,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 10 + + + + QFrame::NoFrame + 251 @@ -222,16 +302,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Motor limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 80 @@ -240,6 +315,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 10 + + + + QFrame::NoFrame + 253 @@ -264,16 +344,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Motor limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 80 @@ -282,6 +357,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 10 + + + + QFrame::NoFrame + 253 @@ -306,16 +386,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Motor limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 80 @@ -324,6 +399,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 10 + + + + QFrame::NoFrame + 253 @@ -348,16 +428,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Motor limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 80 @@ -366,6 +441,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 10 + + + + QFrame::NoFrame + 253 @@ -390,11 +470,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Motor limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 80 + 164 + 75 + 10 + + @@ -426,93 +514,83 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caMenu::Static - + 80 144 - 77 - 22 + 35 + 20 - - - - 0 - 0 - 35 - 20 - - - - EPushButton::Height - - - $(P)SGM$(N):move.PROC - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Move - - - 1 - - - caMessageButton::Static - - - - - - 40 - 0 - 35 - 20 - - - - EPushButton::Height - - - $(P)SGM$(N):sync.PROC - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Sync - - - 1 - - - caMessageButton::Static - - + + EPushButton::WidthAndHeight + + + $(P)SGM$(N):move.PROC + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Move + + + 1 + + + caMessageButton::Static + + + + + + 120 + 144 + 35 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)SGM$(N):sync.PROC + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Sync + + + 1 + + + caMessageButton::Static + @@ -551,14 +629,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 107 - 100 - 10 - - 0 @@ -577,11 +647,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} SCAN CONTROL - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 5 + 107 + 100 + 10 + + @@ -593,7 +671,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -632,7 +710,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)SGM$(N):Energy:scanParms.GO @@ -671,7 +749,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)SGM$(N):Energy:scanParms.LOAD @@ -749,7 +827,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)SGM$(N):EnergyTweak.A @@ -788,7 +866,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):EnergyTweak.C @@ -839,7 +917,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)SGM$(N):EnergyTweak.B @@ -905,7 +983,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;320,1; + 320,1; @@ -987,14 +1065,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 110 - 107 - 100 - 10 - - 0 @@ -1013,11 +1083,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} SCAN CONTROL - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 110 + 107 + 100 + 10 + + @@ -1029,7 +1107,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)AbortScans.VAL @@ -1068,7 +1146,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)SGM$(N):Lambda:scanParms.GO @@ -1107,7 +1185,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)SGM$(N):Lambda:scanParms.LOAD @@ -1185,7 +1263,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)SGM$(N):LambdaTweak.A @@ -1224,7 +1302,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):LambdaTweak.C @@ -1275,7 +1353,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)SGM$(N):LambdaTweak.B @@ -1341,14 +1419,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 215 - 107 - 100 - 10 - - 0 @@ -1367,11 +1437,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} SCAN CONTROL - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 215 + 107 + 100 + 10 + + @@ -1383,7 +1461,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -1422,7 +1500,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)SGM$(N):phi:scanParms.GO @@ -1461,7 +1539,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)SGM$(N):phi:scanParms.LOAD @@ -1539,7 +1617,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)SGM$(N):phiTweak.A @@ -1578,7 +1656,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):phiTweak.C @@ -1629,7 +1707,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)SGM$(N):phiTweak.B @@ -1662,14 +1740,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 175 - 144 - 25 - 10 - - 0 @@ -1688,24 +1758,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} EXIT - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 175 - 154 + 144 25 10 + + + + QFrame::NoFrame + 0 @@ -1724,11 +1794,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} SLIT - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 175 + 154 + 25 + 10 + + @@ -1770,7 +1848,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):EnergyRBV @@ -1824,7 +1902,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):Energy @@ -1875,7 +1953,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):LambdaRBV @@ -1929,7 +2007,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):Lambda @@ -1980,7 +2058,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):phiRBV @@ -2034,7 +2112,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)SGM$(N):phi @@ -2112,14 +2190,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 3 - 320 - 20 - - 0 @@ -2138,24 +2208,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Spherical Grating Monochromator - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 5 - 25 - 100 + 0 + 3 + 320 20 + + + + QFrame::NoFrame + 0 @@ -2174,24 +2244,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Energy(eV) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 110 + 5 25 100 20 + + + + QFrame::NoFrame + 0 @@ -2210,24 +2280,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Wavelen(A) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 215 + 110 25 100 20 + + + + QFrame::NoFrame + 0 @@ -2246,11 +2316,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Phi(deg) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 215 + 25 + 100 + 20 + + @@ -2289,21 +2367,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;319,1; + 319,1; QFrame::NoFrame - - - 175 - 164 - 75 - 10 - - 251 @@ -2328,24 +2398,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} r' AT LIMIT - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 175 + 164 + 75 + 10 + + QFrame::NoFrame - - - 1 - 165 - 20 - 8 - - 0 @@ -2364,7 +2434,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} V1.4 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 1 + 165 + 20 + 8 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2379,7 +2457,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLabel_6 caLabel_7 caLabel_8 - caFrame_0 caRectangle_0 caLabel_9 caPolyLine_0 diff --git a/opticsApp/op/ui/TheBox_Bragg.ui b/opticsApp/op/ui/autoconvert/TheBox_Bragg.ui similarity index 95% rename from opticsApp/op/ui/TheBox_Bragg.ui rename to opticsApp/op/ui/autoconvert/TheBox_Bragg.ui index 649ef56..e55dd44 100644 --- a/opticsApp/op/ui/TheBox_Bragg.ui +++ b/opticsApp/op/ui/autoconvert/TheBox_Bragg.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -250,14 +338,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 5 - 10 - 20 - - 0 @@ -276,7 +356,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} H - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 5 + 10 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -292,7 +380,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)Bragg_H.VAL @@ -322,14 +410,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 43 - 5 - 10 - 20 - - 0 @@ -348,7 +428,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} K - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 43 + 5 + 10 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -364,7 +452,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)Bragg_K.VAL @@ -394,14 +482,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 81 - 5 - 10 - 20 - - 0 @@ -420,7 +500,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} L - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 81 + 5 + 10 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -436,7 +524,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)Bragg_L.VAL @@ -466,14 +554,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 25 - 20 - 20 - - 0 @@ -492,7 +572,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} a - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 25 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -508,7 +596,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)Bragg_a.VAL @@ -538,14 +626,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 45 - 20 - 20 - - 0 @@ -564,7 +644,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 2d - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 45 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -580,7 +668,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)Bragg_2d_spacing.G @@ -649,14 +737,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 490 - 128 - 40 - 20 - - 0 @@ -675,7 +755,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} More - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 490 + 128 + 40 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -691,7 +779,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mTH2).VAL @@ -727,7 +815,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mZ2).VELO @@ -763,7 +851,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mTH1).VELO @@ -799,7 +887,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mTH2).VELO @@ -835,7 +923,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mZ2).VAL @@ -871,7 +959,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mTH1).VAL @@ -1099,14 +1187,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 245 - 100 - 15 - - 0 @@ -1125,7 +1205,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Calibration - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 245 + 100 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1135,14 +1223,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 205 - 140 - 90 - 15 - - 58 @@ -1161,24 +1241,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} ($(P)$(mTH2)) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 110 + 205 140 90 15 + + + + QFrame::NoFrame + 58 @@ -1197,24 +1277,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} ($(P)$(mTH1)) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 300 + 110 140 90 15 + + + + QFrame::NoFrame + 58 @@ -1233,24 +1313,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} ($(P)$(mZ2)) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 300 + 140 + 90 + 15 + + QFrame::NoFrame - - - 215 - 125 - 80 - 20 - - 0 @@ -1269,24 +1349,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Theta2 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 120 + 215 125 80 20 + + + + QFrame::NoFrame + 0 @@ -1305,24 +1385,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Theta1 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 310 + 120 125 80 20 + + + + QFrame::NoFrame + 0 @@ -1341,11 +1421,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Z2 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 310 + 125 + 80 + 20 + + @@ -1387,7 +1475,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)TheBox_put.PROC @@ -1420,14 +1508,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 347 - 1 - 100 - 20 - - 0 @@ -1446,11 +1526,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} TH (deg.) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 347 + 1 + 100 + 20 + + @@ -1462,7 +1550,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)Bragg_readback.A @@ -1501,7 +1589,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)Bragg_theta.VAL @@ -1537,7 +1625,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)Bragg_theta_inc.VAL @@ -1579,7 +1667,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)Bragg_theta_tweak.D @@ -1615,7 +1703,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)Bragg_theta_dec.VAL @@ -1657,7 +1745,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)Bragg_limits.A @@ -1705,7 +1793,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)Bragg_limits.B @@ -1744,7 +1832,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)Bragg_limits.F @@ -1783,7 +1871,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)Bragg_limits.H @@ -1823,7 +1911,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)Bragg_readback.C @@ -1862,7 +1950,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)Bragg_lambda.VAL @@ -1898,7 +1986,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)Bragg_lambda_inc.VAL @@ -1940,7 +2028,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)Bragg_lambda_tweak.D @@ -1976,7 +2064,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)Bragg_lambda_dec.VAL @@ -2018,7 +2106,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)Bragg_limits.E @@ -2057,7 +2145,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)Bragg_E.VAL @@ -2093,7 +2181,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)Bragg_E_tweak.D @@ -2129,7 +2217,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)Bragg_E_dec.VAL @@ -2171,7 +2259,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)Bragg_E_inc.VAL @@ -2213,7 +2301,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)Bragg_limits.G @@ -2252,7 +2340,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)Bragg_readback.E @@ -2325,14 +2413,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 237 - 1 - 100 - 20 - - 0 @@ -2351,11 +2431,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} lambda (A) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 237 + 1 + 100 + 20 + + @@ -2401,14 +2489,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 127 - 1 - 100 - 20 - - 0 @@ -2427,11 +2507,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} E (keV) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 127 + 1 + 100 + 20 + + @@ -2477,14 +2565,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 400 - 205 - 50 - 14 - - 236 @@ -2503,7 +2583,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Speed - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 400 + 205 + 50 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2513,14 +2601,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 400 - 190 - 50 - 14 - - 236 @@ -2539,7 +2619,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Ideal - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 400 + 190 + 50 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2549,14 +2637,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 400 - 155 - 50 - 14 - - 236 @@ -2575,7 +2655,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Actual - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 400 + 155 + 50 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2585,14 +2673,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 400 - 173 - 50 - 14 - - 236 @@ -2611,7 +2691,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Desired - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 400 + 173 + 50 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2621,14 +2709,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 460 - 80 - 75 - 14 - - 236 @@ -2647,7 +2727,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Low Limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 460 + 80 + 75 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2657,14 +2745,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 460 - 60 - 75 - 14 - - 236 @@ -2683,7 +2763,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Desired - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 460 + 60 + 75 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2693,14 +2781,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 460 - 38 - 75 - 14 - - 236 @@ -2719,7 +2799,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Actual - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 460 + 38 + 75 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2729,14 +2817,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 460 - 20 - 75 - 14 - - 236 @@ -2755,7 +2835,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} High Limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 460 + 20 + 75 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2765,14 +2853,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 455 - 195 - 80 - 25 - - 115 @@ -2797,16 +2877,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Moving - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 455 @@ -2815,6 +2890,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 25 + + + + QFrame::NoFrame + 77 @@ -2839,11 +2919,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Done - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 455 + 195 + 80 + 25 + + @@ -2855,7 +2943,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)BraggBackProp.PROC @@ -2894,7 +2982,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)Bragg_2d_put.PROC @@ -2960,7 +3048,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;535,1; + 535,1; @@ -2973,7 +3061,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mTH1).RBV @@ -3012,7 +3100,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mTH2).RBV @@ -3051,7 +3139,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mZ2).RBV @@ -3090,7 +3178,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -3169,7 +3257,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_TH2Z2.C @@ -3208,7 +3296,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_TH2Z2.D @@ -3247,7 +3335,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_TH2Z2.A @@ -3392,7 +3480,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;7,4;1,9; + 1,9; @@ -3433,7 +3521,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Dash - 19,1;1,1; + 1,1; diff --git a/opticsApp/op/ui/TheBox_calc.ui b/opticsApp/op/ui/autoconvert/TheBox_calc.ui similarity index 93% rename from opticsApp/op/ui/TheBox_calc.ui rename to opticsApp/op/ui/autoconvert/TheBox_calc.ui index f87156c..abf50ac 100644 --- a/opticsApp/op/ui/TheBox_calc.ui +++ b/opticsApp/op/ui/autoconvert/TheBox_calc.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -28,7 +116,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mZ2).VELO @@ -58,14 +146,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 480 - 180 - 20 - 20 - - 0 @@ -84,7 +164,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} v - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 480 + 180 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -94,14 +182,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 480 - 110 - 20 - 20 - - 0 @@ -120,7 +200,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} v - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 480 + 110 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -130,14 +218,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 480 - 90 - 20 - 20 - - 0 @@ -156,7 +236,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} p - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 480 + 90 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -166,14 +254,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 480 - 160 - 20 - 20 - - 0 @@ -192,7 +272,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} p - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 480 + 160 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -202,14 +290,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 480 - 40 - 20 - 20 - - 0 @@ -228,7 +308,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} v - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 480 + 40 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -238,14 +326,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 480 - 20 - 20 - 20 - - 0 @@ -264,7 +344,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} p - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 480 + 20 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -280,7 +368,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mTH2).VAL @@ -316,7 +404,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mTH2).VELO @@ -346,14 +434,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 495 - 70 - 60 - 14 - - 0 @@ -372,7 +452,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} ($(mTH2)) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 495 + 70 + 60 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -382,14 +470,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 495 - 4 - 60 - 14 - - 0 @@ -408,7 +488,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} ($(mTH1)) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 495 + 4 + 60 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -424,7 +512,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mTH1).VAL @@ -460,7 +548,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mZ2).VAL @@ -490,14 +578,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 495 - 140 - 60 - 14 - - 0 @@ -516,7 +596,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} ($(mZ2)) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 495 + 140 + 60 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -532,7 +620,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mTH1).VELO @@ -562,14 +650,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 2 - 40 - 20 - 20 - - 0 @@ -588,7 +668,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} b - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 2 + 40 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -598,14 +686,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 2 - 20 - 20 - 20 - - 0 @@ -624,7 +704,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} a - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 2 + 20 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -634,14 +722,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 2 - 60 - 20 - 20 - - 0 @@ -660,7 +740,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} c - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 2 + 60 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -670,14 +758,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 2 - 80 - 20 - 20 - - 0 @@ -696,7 +776,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} d - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 2 + 80 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -706,14 +794,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 2 - 100 - 20 - 20 - - 0 @@ -732,7 +812,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} e - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 2 + 100 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -742,14 +830,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 2 - 120 - 20 - 20 - - 0 @@ -768,7 +848,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} f - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 2 + 120 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -778,14 +866,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 2 - 140 - 20 - 20 - - 0 @@ -804,7 +884,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} g - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 2 + 140 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -814,14 +902,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 2 - 160 - 20 - 20 - - 0 @@ -840,7 +920,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} h - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 2 + 160 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -850,14 +938,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 2 - 180 - 20 - 20 - - 0 @@ -876,7 +956,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} i - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 2 + 180 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -886,14 +974,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 2 - 200 - 20 - 20 - - 0 @@ -912,7 +992,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} j - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 2 + 200 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -928,7 +1016,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_TH2Z2.CLCB @@ -964,7 +1052,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_TH2Z2.CLCA @@ -1000,7 +1088,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_TH2Z2.CLCC @@ -1036,7 +1124,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_TH2Z2.CLCD @@ -1072,7 +1160,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_TH2Z2.CLCE @@ -1108,7 +1196,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_TH2Z2.CLCF @@ -1144,7 +1232,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_TH2Z2.CLCG @@ -1180,7 +1268,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_TH2Z2.CLCH @@ -1216,7 +1304,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_TH2Z2.CLCI @@ -1252,7 +1340,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_TH2Z2.CLCJ @@ -1288,7 +1376,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_TH2Z2.B @@ -1324,7 +1412,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_TH2Z2.A @@ -1360,7 +1448,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_TH2Z2.C @@ -1396,7 +1484,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_TH2Z2.D @@ -1432,7 +1520,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_TH2Z2.E @@ -1468,7 +1556,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_TH2Z2.F @@ -1504,7 +1592,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_TH2Z2.G @@ -1540,7 +1628,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_TH2Z2.H @@ -1576,7 +1664,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_TH2Z2.I @@ -1612,7 +1700,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_TH2Z2.J @@ -1651,14 +1739,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 0 - 20 - 20 - - 0 @@ -1677,7 +1757,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} a - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 0 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1687,14 +1775,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 20 - 20 - 20 - - 0 @@ -1713,7 +1793,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} b - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 20 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1723,14 +1811,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 40 - 20 - 20 - - 0 @@ -1749,7 +1829,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} c - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 40 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1759,14 +1847,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 60 - 20 - 20 - - 0 @@ -1785,7 +1865,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} d - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 60 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1795,14 +1883,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 80 - 20 - 20 - - 0 @@ -1821,7 +1901,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} e - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 80 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1831,14 +1919,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 100 - 20 - 20 - - 0 @@ -1857,7 +1937,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} f - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 100 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1867,14 +1955,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 120 - 20 - 20 - - 0 @@ -1893,7 +1973,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} g - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 120 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1903,14 +1991,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 140 - 20 - 20 - - 0 @@ -1929,7 +2009,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} h - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 140 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1939,14 +2027,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 160 - 20 - 20 - - 0 @@ -1965,7 +2045,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} i - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 160 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1975,14 +2063,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 180 - 20 - 20 - - 0 @@ -2001,7 +2081,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} j - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 180 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2018,7 +2106,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_put.CLCA @@ -2054,7 +2142,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_put.CLCB @@ -2090,7 +2178,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_put.CLCC @@ -2126,7 +2214,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_put.CLCD @@ -2162,7 +2250,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_put.CLCE @@ -2198,7 +2286,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_put.CLCF @@ -2234,7 +2322,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_put.CLCG @@ -2270,7 +2358,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_put.CLCH @@ -2306,7 +2394,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_put.CLCI @@ -2342,7 +2430,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_put.CLCJ @@ -2378,7 +2466,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_put.A @@ -2414,7 +2502,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_put.B @@ -2450,7 +2538,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_put.C @@ -2486,7 +2574,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_put.D @@ -2522,7 +2610,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_put.E @@ -2558,7 +2646,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_put.F @@ -2594,7 +2682,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_put.G @@ -2630,7 +2718,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_put.H @@ -2666,7 +2754,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_put.I @@ -2702,7 +2790,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_put.J @@ -2738,7 +2826,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_TH2Z2.DESC @@ -2777,7 +2865,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)TheBox_put.DESC diff --git a/opticsApp/op/ui/TheBox_graphic.ui b/opticsApp/op/ui/autoconvert/TheBox_graphic.ui similarity index 96% rename from opticsApp/op/ui/TheBox_graphic.ui rename to opticsApp/op/ui/autoconvert/TheBox_graphic.ui index 2a6a6c8..b18a634 100644 --- a/opticsApp/op/ui/TheBox_graphic.ui +++ b/opticsApp/op/ui/autoconvert/TheBox_graphic.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -182,7 +270,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,5; + 8,5; @@ -219,7 +307,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,6; + 8,6; @@ -256,7 +344,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,6; + 8,6; @@ -293,7 +381,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,6; + 8,6; @@ -330,7 +418,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,5; + 8,5; @@ -367,7 +455,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,6; + 8,6; @@ -404,7 +492,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,6; + 8,6; @@ -441,7 +529,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,6; + 8,6; @@ -478,7 +566,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,6; + 8,6; @@ -515,7 +603,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,6; + 8,6; @@ -552,7 +640,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,6; + 8,6; @@ -589,7 +677,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,6; + 8,6; @@ -626,7 +714,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,6; + 8,6; @@ -663,7 +751,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,6; + 8,6; @@ -700,7 +788,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,6; + 8,6; @@ -737,7 +825,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,6; + 8,6; @@ -907,7 +995,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,5; + 8,5; @@ -944,7 +1032,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,6; + 8,6; @@ -981,7 +1069,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,6; + 8,6; @@ -1018,7 +1106,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,6; + 8,6; @@ -1055,7 +1143,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,5; + 8,5; @@ -1092,7 +1180,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,6; + 8,6; @@ -1129,7 +1217,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,6; + 8,6; @@ -1166,7 +1254,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,6; + 8,6; @@ -1203,7 +1291,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,6; + 8,6; @@ -1240,7 +1328,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,6; + 8,6; @@ -1277,7 +1365,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,6; + 8,6; @@ -1314,7 +1402,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,6; + 8,6; @@ -1351,7 +1439,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,6; + 8,6; @@ -1388,7 +1476,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,6; + 8,6; @@ -1425,7 +1513,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,6; + 8,6; @@ -1462,7 +1550,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;8,6; + 8,6; @@ -1662,14 +1750,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 3 - 8 - 20 - 14 - - 255 @@ -1688,11 +1768,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} TH1 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 3 + 8 + 20 + 14 + + @@ -1768,7 +1856,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,10;27,1; + 27,1; @@ -1823,7 +1911,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;6,4; + 6,4; @@ -1860,7 +1948,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;6,5; + 6,5; @@ -1897,7 +1985,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;6,4; + 6,4; @@ -1934,7 +2022,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;6,5; + 6,5; @@ -1971,7 +2059,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;6,4; + 6,4; @@ -2008,7 +2096,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;6,4; + 6,4; @@ -2045,7 +2133,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;6,5; + 6,5; @@ -2082,7 +2170,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;6,5; + 6,5; @@ -2119,7 +2207,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;6,5; + 6,5; @@ -2156,7 +2244,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;6,5; + 6,5; @@ -2247,7 +2335,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(mY1).TWF @@ -2289,7 +2377,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(mY1).TWR @@ -2325,14 +2413,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 100 - 30 - 50 - 12 - - 3 @@ -2354,11 +2434,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(mY1) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 100 + 30 + 50 + 12 + + @@ -2486,14 +2574,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 3 - 3 - 15 - 14 - - 255 @@ -2512,11 +2592,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} X1 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 3 + 3 + 15 + 14 + + @@ -2635,14 +2723,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 212 - 303 - 15 - 14 - - 255 @@ -2661,11 +2741,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Z2 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 212 + 303 + 15 + 14 + + @@ -2750,14 +2838,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 368 - 298 - 50 - 12 - - 3 @@ -2779,11 +2859,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(mX2) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 368 + 298 + 50 + 12 + + @@ -2822,14 +2910,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 412 - 271 - 15 - 14 - - 255 @@ -2848,11 +2928,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} X2 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 412 + 271 + 15 + 14 + + @@ -2930,14 +3018,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 409 - 69 - 15 - 14 - - 255 @@ -2956,11 +3036,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Y2 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 409 + 69 + 15 + 14 + + @@ -3038,14 +3126,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 119 - 67 - 15 - 14 - - 255 @@ -3064,11 +3144,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Y1 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 119 + 67 + 15 + 14 + + @@ -3222,7 +3310,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,10;27,1; + 27,1; @@ -3262,14 +3350,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 291 - 74 - 20 - 14 - - 255 @@ -3288,11 +3368,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} TH2 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 291 + 74 + 20 + 14 + + @@ -3370,7 +3458,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Dash - 211,1;1,1; + 1,1; @@ -3410,7 +3498,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Dash - 0,79;122,0; + 122,0; @@ -3450,21 +3538,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Dash - 0,0;189,0; + 189,0; QFrame::NoFrame - - - 212 - 112 - 50 - 12 - - 3 @@ -3486,24 +3566,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(mTH1) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 73 - 325 - 40 + 212 + 112 + 50 12 + + + + QFrame::NoFrame + 3 @@ -3525,24 +3605,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(mX1) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 189 - 266 - 50 + 73 + 325 + 40 12 + + + + QFrame::NoFrame + 3 @@ -3564,24 +3644,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(mZ2) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 275 - 30 + 189 + 266 50 12 + + + + QFrame::NoFrame + 3 @@ -3603,24 +3683,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(mTH2) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 391 + 275 30 50 12 + + + + QFrame::NoFrame + 3 @@ -3642,11 +3722,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(mY2) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 391 + 30 + 50 + 12 + + @@ -3685,21 +3773,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,5;48,5;42,0; + 42,0; QFrame::NoFrame - - - 509 - 127 - 13 - 20 - - 1 @@ -3721,11 +3801,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} > - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 509 + 127 + 13 + 20 + + @@ -3779,7 +3867,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;6,4; + 6,4; @@ -3816,7 +3904,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;6,5; + 6,5; @@ -3853,7 +3941,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;6,4; + 6,4; @@ -3890,7 +3978,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;6,5; + 6,5; @@ -3927,7 +4015,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;6,4; + 6,4; @@ -3964,7 +4052,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;6,4; + 6,4; @@ -4001,7 +4089,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;6,5; + 6,5; @@ -4038,7 +4126,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;6,5; + 6,5; @@ -4075,7 +4163,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;6,5; + 6,5; @@ -4112,7 +4200,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;6,5; + 6,5; @@ -4173,7 +4261,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(mTH2).TWR @@ -4215,7 +4303,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(mTH2).TWF @@ -4258,7 +4346,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(mY2).TWR @@ -4300,7 +4388,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(mY2).TWF @@ -4342,7 +4430,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(mTH1).TWR @@ -4384,7 +4472,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(mTH1).TWF @@ -4426,7 +4514,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(mZ2).TWR @@ -4468,7 +4556,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(mZ2).TWF @@ -4510,7 +4598,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(mX1).TWR @@ -4552,7 +4640,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(mX1).TWF @@ -4594,7 +4682,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(mX2).TWR @@ -4636,7 +4724,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(mX2).TWF @@ -4758,7 +4846,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -4797,7 +4885,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mY1).RBV @@ -4836,7 +4924,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mX1).RBV @@ -4875,7 +4963,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mZ2).RBV @@ -4914,7 +5002,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mTH1).RBV @@ -4953,7 +5041,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mTH2).RBV @@ -4992,7 +5080,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mY2).RBV @@ -5031,7 +5119,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mX2).RBV @@ -5070,7 +5158,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mY1).DESC @@ -5103,14 +5191,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 10 - 0 - 500 - 25 - - 0 @@ -5129,11 +5209,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Prototype Monochromator - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 10 + 0 + 500 + 25 + + @@ -5172,7 +5260,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;9,17;2,13; + 2,13; @@ -5212,7 +5300,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,17;1,17;12,1;6,4; + 6,4; caRectangle_0 diff --git a/opticsApp/op/ui/autoconvert/TheBox_graphic_try.ui b/opticsApp/op/ui/autoconvert/TheBox_graphic_try.ui new file mode 100644 index 0000000..dd7ae64 --- /dev/null +++ b/opticsApp/op/ui/autoconvert/TheBox_graphic_try.ui @@ -0,0 +1,6241 @@ + + +MainWindow + + + + 10 + 10 + 525 + 350 + + + + + +QWidget#centralWidget {background: rgba(200, 200, 200, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + caGraphics::Rectangle + + + + 10 + 25 + 500 + 320 + + + + 3 + + + + 187 + 187 + 187 + + + + Filled + + + + 187 + 187 + 187 + + + + Solid + + + + + caGraphics::Rectangle + + + + 10 + 25 + 500 + 320 + + + + 3 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + caGraphics::Rectangle + + + + 73 + 90 + 100 + 203 + + + + 2 + + + + 218 + 218 + 218 + + + + Filled + + + + 218 + 218 + 218 + + + + Solid + + + + + caGraphics::Rectangle + + + + 73 + 90 + 100 + 203 + + + + 2 + + + + 90 + 90 + 90 + + + + + 90 + 90 + 90 + + + + + 90 + 90 + 90 + + + + Solid + + + + + caGraphics::Rectangle + + + + 76 + 178 + 175 + 75 + + + + 2 + + + + 218 + 218 + 218 + + + + Filled + + + + 218 + 218 + 218 + + + + Solid + + + + + caGraphics::Rectangle + + + + 76 + 178 + 175 + 75 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + caGraphics::Circle + + + + 180 + 185 + 60 + 60 + + + + 2 + + + + 0 + 216 + 0 + + + + Filled + + + + 0 + 216 + 0 + + + + Solid + + + + + caGraphics::Circle + + + + 180 + 185 + 60 + 60 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + caGraphics::Rectangle + + + + 368 + 92 + 100 + 169 + + + + 2 + + + + 218 + 218 + 218 + + + + Filled + + + + 218 + 218 + 218 + + + + Solid + + + + + caGraphics::Rectangle + + + + 368 + 92 + 100 + 169 + + + + 2 + + + + 90 + 90 + 90 + + + + + 90 + 90 + 90 + + + + + 90 + 90 + 90 + + + + Solid + + + + + + 411 + 94 + 11 + 104 + + + + + + 1 + 0 + 10 + 102 + + + + + + 0 + 0 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,5; + + + + + + 0 + 6 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,6; + + + + + + 0 + 12 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,6; + + + + + + 0 + 18 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,6; + + + + + + 0 + 25 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,5; + + + + + + 0 + 31 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,6; + + + + + + 0 + 37 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,6; + + + + + + 0 + 43 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,6; + + + + + + 0 + 50 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,6; + + + + + + 0 + 56 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,6; + + + + + + 0 + 63 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,6; + + + + + + 0 + 69 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,6; + + + + + + 0 + 75 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,6; + + + + + + 0 + 81 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,6; + + + + + + 0 + 87 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,6; + + + + + + 0 + 94 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,6; + + + + + + caGraphics::Rectangle + + + + 0 + 0 + 9 + 102 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + + + 121 + 92 + 11 + 104 + + + + + + 1 + 0 + 10 + 102 + + + + + + 0 + 0 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,5; + + + + + + 0 + 6 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,6; + + + + + + 0 + 12 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,6; + + + + + + 0 + 18 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,6; + + + + + + 0 + 25 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,5; + + + + + + 0 + 31 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,6; + + + + + + 0 + 37 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,6; + + + + + + 0 + 43 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,6; + + + + + + 0 + 50 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,6; + + + + + + 0 + 56 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,6; + + + + + + 0 + 63 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,6; + + + + + + 0 + 69 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,6; + + + + + + 0 + 75 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,6; + + + + + + 0 + 81 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,6; + + + + + + 0 + 87 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,6; + + + + + + 0 + 94 + 8 + 6 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 8,6; + + + + + + caGraphics::Rectangle + + + + 0 + 0 + 9 + 102 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + + caGraphics::Rectangle + + + + 290 + 97 + 175 + 75 + + + + 2 + + + + 218 + 218 + 218 + + + + Filled + + + + 218 + 218 + 218 + + + + Solid + + + + + + 226 + 145 + 27 + 32 + + + + + caGraphics::Rectangle + + + + 0 + 0 + 25 + 30 + + + + + 78 + 165 + 249 + + + + Filled + + + + 78 + 165 + 249 + + + + Solid + + + + + QFrame::NoFrame + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + TH1 + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 3 + 8 + 20 + 14 + + + + + + + + 197 + 209 + 29 + 12 + + + + 3 + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Solid + + + 27,1; + + + + + + 236 + 176 + 8 + 52 + + + + + + 0 + 0 + 7 + 51 + + + + + + 0 + 0 + 5 + 5 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 6,4; + + + + + + 0 + 5 + 5 + 5 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 6,5; + + + + + + 0 + 10 + 5 + 5 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 6,4; + + + + + + 0 + 14 + 5 + 5 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 6,5; + + + + + + 0 + 20 + 5 + 5 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 6,4; + + + + + + 0 + 25 + 5 + 5 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 6,4; + + + + + + 0 + 29 + 5 + 5 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 6,5; + + + + + + 0 + 34 + 5 + 5 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 6,5; + + + + + + 0 + 39 + 5 + 5 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 6,5; + + + + + + 0 + 44 + 5 + 5 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 6,5; + + + + + + caGraphics::Rectangle + + + + 0 + 0 + 6 + 50 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + + + 250 + 145 + 20 + 20 + + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Menu + + + mTheta1 (S);mTheta1 (M);mTheta1 (L) + + + motorx.adl;motorx_more.adl;motorx_all.adl + + + P=$(P), M=$(mTH1);P=$(P), M=$(mTH1);P=$(P), M=$(mTH1) + + + false;false;false + + + + + caGraphics::Rectangle + + + + 73 + 295 + 100 + 30 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + + 115 + 300 + 44 + 22 + + + + + caGraphics::Circle + + + + 0 + 0 + 20 + 20 + + + + + 78 + 165 + 249 + + + + Filled + + + + 78 + 165 + 249 + + + + Solid + + + + + QFrame::NoFrame + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + X1 + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 3 + 3 + 15 + 14 + + + + + + + 22 + 0 + 20 + 20 + + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Menu + + + mX1 (S);mX1 (M);mX1 (L) + + + motorx.adl;motorx_more.adl;motorx_all.adl + + + P=$(P), M=$(mX1);P=$(P), M=$(mX1);P=$(P), M=$(mX1) + + + false;false;false + + + + + + caGraphics::Rectangle + + + + 236 + 295 + 250 + 30 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + caGraphics::Rectangle + + + + 205 + 300 + 30 + 20 + + + + + 78 + 165 + 249 + + + + Filled + + + + 78 + 165 + 249 + + + + Solid + + + + + QFrame::NoFrame + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + Z2 + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 212 + 303 + 15 + 14 + + + + + + + 205 + 279 + 20 + 20 + + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Menu + + + mZ2 (S);mZ2 (M);mZ2 (L) + + + motorx.adl;motorx_more.adl;motorx_all.adl + + + P=$(P), M=$(mZ2);P=$(P), M=$(mZ2);P=$(P), M=$(mZ2) + + + false;false;false + + + + + caGraphics::Rectangle + + + + 368 + 263 + 100 + 30 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + caGraphics::Circle + + + + 409 + 268 + 20 + 20 + + + + + 78 + 165 + 249 + + + + Filled + + + + 78 + 165 + 249 + + + + Solid + + + + + QFrame::NoFrame + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + X2 + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 412 + 271 + 15 + 14 + + + + + + + 431 + 268 + 20 + 20 + + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Menu + + + mX2 (S);mX2 (M);mX2 (L) + + + motorx.adl;motorx_more.adl;motorx_all.adl + + + P=$(P), M=$(mX2);P=$(P), M=$(mX2);P=$(P), M=$(mX2) + + + false;false;false + + + + + caGraphics::Rectangle + + + + 404 + 61 + 25 + 30 + + + + + 78 + 165 + 249 + + + + Filled + + + + 78 + 165 + 249 + + + + Solid + + + + + QFrame::NoFrame + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + Y2 + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 409 + 69 + 15 + 14 + + + + + + + 430 + 61 + 20 + 20 + + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Menu + + + mY2 (S);mY2 (M);mY2 (L) + + + motorx.adl;motorx_more.adl;motorx_all.adl + + + P=$(P), M=$(mY2);P=$(P), M=$(mY2);P=$(P), M=$(mY2) + + + false;false;false + + + + + caGraphics::Rectangle + + + + 114 + 59 + 25 + 30 + + + + + 78 + 165 + 249 + + + + Filled + + + + 78 + 165 + 249 + + + + Solid + + + + + QFrame::NoFrame + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + Y1 + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 119 + 67 + 15 + 14 + + + + + + + 138 + 59 + 20 + 20 + + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Menu + + + mY1 (S);mY1 (M);mY1 (L) + + + motorx.adl;motorx_more.adl;motorx_all.adl + + + P=$(P), M=$(mY1);P=$(P), M=$(mY1);P=$(P), M=$(mY1) + + + false;false;false + + + + + caGraphics::Rectangle + + + + 290 + 97 + 175 + 75 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + caGraphics::Circle + + + + 300 + 105 + 60 + 60 + + + + 2 + + + + 0 + 216 + 0 + + + + Filled + + + + 0 + 216 + 0 + + + + Solid + + + + + + 317 + 129 + 29 + 12 + + + + 3 + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Solid + + + 27,1; + + + + + caGraphics::Rectangle + + + + 288 + 66 + 25 + 30 + + + + + 78 + 165 + 249 + + + + Filled + + + + 78 + 165 + 249 + + + + Solid + + + + + QFrame::NoFrame + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + TH2 + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 291 + 74 + 20 + 14 + + + + + + + 313 + 66 + 20 + 20 + + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Menu + + + mTheta2 (S);mTheta2 (M);mTheta2 (L) + + + motorx.adl;motorx_more.adl;motorx_all.adl + + + P=$(P), M=$(mTH2);P=$(P), M=$(mTH2);P=$(P), M=$(mTH2) + + + false;false;false + + + + + + -1 + 212 + 213 + 3 + + + + 3 + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + Dash + + + 1,1; + + + + + + 209 + 135 + 123 + 80 + + + + 1 + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + Dash + + + 122,0; + + + + + + 331 + 135 + 190 + 1 + + + + 1 + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + Dash + + + 189,0; + + + + + + 17 + 203 + 40 + 6 + + + + 1 + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + Solid + + + 34,0; + + + + + QFrame::NoFrame + + + 1 + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + > + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + + 509 + 127 + 13 + 20 + + + + + + + 298 + 98 + 8 + 52 + + + + + + 0 + 0 + 7 + 51 + + + + + + 0 + 0 + 5 + 5 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 6,4; + + + + + + 0 + 5 + 5 + 5 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 6,5; + + + + + + 0 + 10 + 5 + 5 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 6,4; + + + + + + 0 + 14 + 5 + 5 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 6,5; + + + + + + 0 + 20 + 5 + 5 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 6,4; + + + + + + 0 + 25 + 5 + 5 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 6,4; + + + + + + 0 + 29 + 5 + 5 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 6,5; + + + + + + 0 + 34 + 5 + 5 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 6,5; + + + + + + 0 + 39 + 5 + 5 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 6,5; + + + + + + 0 + 44 + 5 + 5 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 6,5; + + + + + + caGraphics::Rectangle + + + + 0 + 0 + 6 + 50 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + + + 366 + 148 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mTH2).TWR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 366 + 100 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mTH2).TWF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 425 + 100 + 22 + 70 + + + + + + 0 + 48 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mY2).TWR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 0 + 0 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mY2).TWF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + + 155 + 181 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mTH1).TWR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 155 + 229 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mTH1).TWF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 372 + 236 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mZ2).TWR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 443 + 236 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mZ2).TWF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 75 + 301 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mX1).TWR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 95 + 301 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mX1).TWF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 370 + 269 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mX2).TWR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 390 + 269 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mX2).TWF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + 0 + + + caMessageButton::Static + + + + + caGraphics::Circle + + + + 300 + 105 + 60 + 60 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + + 262 + 195 + 100 + 40 + + + + EPushButton::WidthAndHeight + + + $(P)allstop.VAL + + + + 251 + 243 + 74 + + + + + 253 + 0 + 0 + + + + All Stop + + + 1 + + + caMessageButton::Static + + + + + + 21 + 297 + 52 + 27 + + + + + + 0 + 10 + 50 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mX1).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 0 + 0 + 50 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mX1).RBV + + + + 10 + 0 + 184 + + + + + 255 + 255 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + + 315 + 265 + 50 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mX2).RBV + + + + 10 + 0 + 184 + + + + + 255 + 255 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Prototype Monochromator + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 10 + 0 + 500 + 25 + + + + + + + 178 + 228 + 10 + 18 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 2,13; + + + + + + 179 + 183 + 13 + 18 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 6,4; + + + + + + 348 + 104 + 19 + 25 + + + + 2 + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + 11,4; + + + + + + 349 + 142 + 18 + 22 + + + + 2 + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + 12,20; + + + + + + 447 + 101 + 8 + 69 + + + + + + 0 + 0 + 5 + 25 + + + + 2 + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + 4,8; + + + + + + 0 + 40 + 6 + 27 + + + + 2 + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + 5,18; + + + + + + + 428 + 225 + 35 + 6 + + + + 2 + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + 25,1; + + + + + + 371 + 225 + 37 + 6 + + + + 2 + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + 10,1; + + + + + + 393 + 222 + 52 + 27 + + + + + + 0 + 10 + 50 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mZ2).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 0 + 0 + 50 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mZ2).RBV + + + + 10 + 0 + 184 + + + + + 255 + 255 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + + 140 + 203 + 50 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mTH1).RBV + + + + 10 + 0 + 184 + + + + + 255 + 255 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 140 + 213 + 50 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mTH1).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 315 + 275 + 50 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mX2).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 350 + 131 + 50 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mTH2).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 351 + 121 + 50 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mTH2).RBV + + + + 10 + 0 + 184 + + + + + 255 + 255 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 410 + 121 + 52 + 27 + + + + + + 0 + 10 + 50 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mY2).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 0 + 0 + 50 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mY2).RBV + + + + 10 + 0 + 184 + + + + + 255 + 255 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + + 80 + 181 + 52 + 70 + + + + + + 15 + 48 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mY1).TWR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 0 + 32 + 50 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mY1).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 0 + 22 + 50 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mY1).RBV + + + + 10 + 0 + 184 + + + + + 255 + 255 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 15 + 0 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mY1).TWF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + + 86 + 181 + 7 + 22 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 1,8; + + + + + + 86 + 226 + 7 + 24 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 1,14; + + + + + QFrame::NoFrame + + + 3 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(mY1) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 99 + 46 + 50 + 12 + + + + + + QFrame::NoFrame + + + 3 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(mX1) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 21 + 284 + 50 + 12 + + + + + + QFrame::NoFrame + + + 3 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(mZ2) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 191 + 267 + 50 + 12 + + + + + + QFrame::NoFrame + + + 3 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(mTH1) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 213 + 132 + 50 + 12 + + + + + + QFrame::NoFrame + + + 3 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(mTH2) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 276 + 53 + 50 + 12 + + + + + + QFrame::NoFrame + + + 3 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(mY2) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 390 + 48 + 50 + 12 + + + + + + QFrame::NoFrame + + + 3 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(mX2) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 315 + 252 + 50 + 12 + + + + caRectangle_0 + caRectangle_1 + caRectangle_2 + caRectangle_3 + caRectangle_4 + caRectangle_5 + caGraphics_0 + caGraphics_1 + caRectangle_6 + caRectangle_7 + caPolyLine_0 + caPolyLine_1 + caPolyLine_2 + caPolyLine_3 + caPolyLine_4 + caPolyLine_5 + caPolyLine_6 + caPolyLine_7 + caPolyLine_8 + caPolyLine_9 + caPolyLine_10 + caPolyLine_11 + caPolyLine_12 + caPolyLine_13 + caPolyLine_14 + caPolyLine_15 + caFrame_1 + caRectangle_8 + caFrame_0 + caPolyLine_16 + caPolyLine_17 + caPolyLine_18 + caPolyLine_19 + caPolyLine_20 + caPolyLine_21 + caPolyLine_22 + caPolyLine_23 + caPolyLine_24 + caPolyLine_25 + caPolyLine_26 + caPolyLine_27 + caPolyLine_28 + caPolyLine_29 + caPolyLine_30 + caPolyLine_31 + caFrame_3 + caRectangle_9 + caFrame_2 + caRectangle_10 + caRectangle_11 + caLabel_0 + caFrame_4 + caPolyLine_32 + caPolyLine_33 + caPolyLine_34 + caPolyLine_35 + caPolyLine_36 + caPolyLine_37 + caPolyLine_38 + caPolyLine_39 + caPolyLine_40 + caPolyLine_41 + caPolyLine_42 + caFrame_6 + caRectangle_12 + caFrame_5 + caRectangle_13 + caGraphics_2 + caLabel_1 + caFrame_7 + caRectangle_14 + caRectangle_15 + caLabel_2 + caRectangle_16 + caGraphics_3 + caLabel_3 + caRectangle_17 + caLabel_4 + caRectangle_18 + caLabel_5 + caRectangle_19 + caGraphics_4 + caPolyLine_43 + caRectangle_20 + caLabel_6 + caPolyLine_44 + caPolyLine_45 + caPolyLine_46 + caPolyLine_47 + caLabel_7 + caPolyLine_48 + caPolyLine_49 + caPolyLine_50 + caPolyLine_51 + caPolyLine_52 + caPolyLine_53 + caPolyLine_54 + caPolyLine_55 + caPolyLine_56 + caPolyLine_57 + caFrame_9 + caRectangle_21 + caFrame_8 + caFrame_10 + caGraphics_5 + caFrame_11 + caLabel_8 + caPolyLine_58 + caPolyLine_59 + caPolyLine_60 + caPolyLine_61 + caPolyLine_62 + caPolyLine_63 + caFrame_12 + caPolyLine_64 + caPolyLine_65 + caFrame_13 + caFrame_14 + caFrame_15 + caPolyLine_66 + caPolyLine_67 + caLabel_9 + caLabel_10 + caLabel_11 + caLabel_12 + caLabel_13 + caLabel_14 + caLabel_15 + caRelatedDisplay_0 + caRelatedDisplay_1 + caRelatedDisplay_2 + caRelatedDisplay_3 + caRelatedDisplay_4 + caRelatedDisplay_5 + caRelatedDisplay_6 + caMessageButton_0 + caMessageButton_1 + caMessageButton_2 + caMessageButton_3 + caMessageButton_4 + caMessageButton_5 + caMessageButton_6 + caMessageButton_7 + caMessageButton_8 + caMessageButton_9 + caMessageButton_10 + caMessageButton_11 + caMessageButton_12 + caTextEntry_0 + caLineEdit_0 + caLineEdit_1 + caTextEntry_1 + caLineEdit_2 + caLineEdit_3 + caTextEntry_2 + caTextEntry_3 + caTextEntry_4 + caLineEdit_4 + caTextEntry_5 + caLineEdit_5 + caMessageButton_13 + caTextEntry_6 + caLineEdit_6 + caMessageButton_14 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/XIA_filter.ui b/opticsApp/op/ui/autoconvert/XIA_filter.ui similarity index 93% rename from opticsApp/op/ui/XIA_filter.ui rename to opticsApp/op/ui/autoconvert/XIA_filter.ui index 0ef6b56..5dcc620 100644 --- a/opticsApp/op/ui/XIA_filter.ui +++ b/opticsApp/op/ui/autoconvert/XIA_filter.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -22,14 +110,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 250 - 35 - 35 - 15 - - 60 @@ -54,7 +134,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} In - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 250 + 35 + 35 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -126,21 +214,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;322,1; + 322,1; QFrame::NoFrame - - - 0 - 5 - 325 - 20 - - 0 @@ -159,24 +239,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} XIA Filters - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 5 + 325 + 20 + + QFrame::NoFrame - - - 5 - 35 - 30 - 15 - - 0 @@ -195,7 +275,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} F1 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 35 + 30 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -211,7 +299,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -250,7 +338,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -283,14 +371,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 250 - 35 - 35 - 15 - - 253 @@ -315,7 +395,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Out - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 250 + 35 + 35 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -325,14 +413,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 250 - 55 - 35 - 15 - - 60 @@ -357,7 +437,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} In - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 250 + 55 + 35 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -367,14 +455,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 55 - 30 - 15 - - 0 @@ -393,7 +473,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} F2 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 55 + 30 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -409,7 +497,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -448,7 +536,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -481,14 +569,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 250 - 55 - 35 - 15 - - 253 @@ -513,7 +593,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Out - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 250 + 55 + 35 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -523,14 +611,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 250 - 75 - 35 - 15 - - 60 @@ -555,7 +635,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} In - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 250 + 75 + 35 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -565,14 +653,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 75 - 30 - 15 - - 0 @@ -591,7 +671,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} F3 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 75 + 30 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -607,7 +695,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -646,7 +734,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -679,14 +767,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 250 - 75 - 35 - 15 - - 253 @@ -711,7 +791,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Out - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 250 + 75 + 35 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -721,14 +809,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 250 - 95 - 35 - 15 - - 60 @@ -753,7 +833,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} In - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 250 + 95 + 35 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -763,14 +851,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 95 - 30 - 15 - - 0 @@ -789,7 +869,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} F4 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 95 + 30 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -805,7 +893,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -844,7 +932,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -877,14 +965,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 250 - 95 - 35 - 15 - - 253 @@ -909,7 +989,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Out - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 250 + 95 + 35 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -925,7 +1013,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(S)writeRead.AINP @@ -979,7 +1067,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -1018,7 +1106,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -1083,21 +1171,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(S)open - 0,0;279,0; + 279,0; QFrame::NoFrame - - - 45 - 170 - 205 - 20 - - 0 @@ -1116,11 +1196,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Attenuation Control - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 45 + 170 + 205 + 20 + + @@ -1132,7 +1220,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -1171,7 +1259,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -1210,7 +1298,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -1249,7 +1337,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -1288,7 +1376,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -1327,7 +1415,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -1366,7 +1454,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -1405,7 +1493,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -1444,7 +1532,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -1483,7 +1571,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -1522,7 +1610,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -1561,7 +1649,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -1600,7 +1688,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -1639,7 +1727,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -1678,7 +1766,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -1717,7 +1805,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -1750,14 +1838,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 50 - 190 - 155 - 12 - - 0 @@ -1776,24 +1856,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Bit Status: F1 F2 F3 F4 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 50 + 190 + 155 + 12 + + QFrame::NoFrame - - - 130 - 200 - 10 - 15 - - 253 @@ -1818,7 +1898,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 0 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 130 + 200 + 10 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1828,14 +1916,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 150 - 200 - 10 - 15 - - 253 @@ -1860,7 +1940,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 0 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 150 + 200 + 10 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1870,14 +1958,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 170 - 200 - 10 - 15 - - 253 @@ -1902,7 +1982,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 0 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 170 + 200 + 10 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1912,14 +2000,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 190 - 200 - 10 - 15 - - 253 @@ -1944,7 +2024,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 0 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 190 + 200 + 10 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1954,14 +2042,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 130 - 200 - 10 - 15 - - 0 @@ -1986,7 +2066,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 1 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 130 + 200 + 10 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1996,14 +2084,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 150 - 200 - 10 - 15 - - 0 @@ -2028,7 +2108,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 1 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 150 + 200 + 10 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2038,14 +2126,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 170 - 200 - 10 - 15 - - 0 @@ -2070,7 +2150,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 1 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 170 + 200 + 10 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2080,14 +2168,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 190 - 200 - 10 - 15 - - 0 @@ -2112,7 +2192,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 1 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 190 + 200 + 10 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2128,7 +2216,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(S)Status1.DESC @@ -2179,7 +2267,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(S)Status2.DESC @@ -2230,7 +2318,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(S)Status3.DESC @@ -2281,7 +2369,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(S)Status4.DESC diff --git a/opticsApp/op/ui/XIA_shutter.ui b/opticsApp/op/ui/autoconvert/XIA_shutter.ui similarity index 93% rename from opticsApp/op/ui/XIA_shutter.ui rename to opticsApp/op/ui/autoconvert/XIA_shutter.ui index 52b3659..be757a5 100644 --- a/opticsApp/op/ui/XIA_shutter.ui +++ b/opticsApp/op/ui/autoconvert/XIA_shutter.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -22,14 +110,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 275 - 185 - 35 - 20 - - 60 @@ -54,7 +134,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} In - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 275 + 185 + 35 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -64,14 +152,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 275 - 165 - 35 - 20 - - 60 @@ -96,7 +176,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} In - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 275 + 165 + 35 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -106,14 +194,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 275 - 145 - 35 - 20 - - 60 @@ -138,7 +218,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} In - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 275 + 145 + 35 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -187,7 +275,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)openShutter.PROC @@ -226,7 +314,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)closeShutter.PROC @@ -288,7 +376,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;322,1; + 322,1; @@ -301,7 +389,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(S)writeRead.AINP @@ -358,14 +446,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 0 - 50 - 10 - - 251 @@ -390,16 +470,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} BUSY - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 0 @@ -408,6 +483,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 10 + + + + QFrame::NoFrame + 0 @@ -432,11 +512,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} DONE - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 0 + 50 + 10 + + @@ -449,7 +537,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)expose.PROC @@ -488,7 +576,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(S)exposeTime @@ -533,14 +621,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 115 - 42 - 10 - 16 - - 0 @@ -559,7 +639,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} (s) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 115 + 42 + 10 + 16 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -575,7 +663,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)serial.PROC @@ -614,7 +702,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -653,7 +741,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -692,7 +780,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(S)getAck.VAL @@ -746,7 +834,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(S)serial.AINP @@ -800,7 +888,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -839,7 +927,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -878,7 +966,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -917,7 +1005,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -982,7 +1070,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(S)open - 0,0;279,0; + 279,0; @@ -995,7 +1083,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -1034,7 +1122,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -1073,7 +1161,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -1112,7 +1200,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -1151,7 +1239,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -1190,7 +1278,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -1229,7 +1317,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -1268,7 +1356,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -1307,7 +1395,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -1346,7 +1434,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -1418,14 +1506,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 0 - 35 - 20 - - 253 @@ -1450,15 +1530,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Out - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame + ESimpleLabel::WidthAndHeight @@ -1468,6 +1540,14 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 20 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 60 @@ -1492,7 +1572,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} In - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 0 + 35 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1503,14 +1591,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 275 - 145 - 35 - 20 - - 253 @@ -1535,7 +1615,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Out - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 275 + 145 + 35 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1545,14 +1633,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 275 - 165 - 35 - 20 - - 253 @@ -1577,7 +1657,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Out - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 275 + 165 + 35 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1587,14 +1675,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 275 - 185 - 35 - 20 - - 253 @@ -1619,7 +1699,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Out - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 275 + 185 + 35 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1629,14 +1717,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 244 - 30 - 66 - 12 - - 0 @@ -1655,7 +1735,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Status poll - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 244 + 30 + 66 + 12 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1665,14 +1753,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 5 - 325 - 20 - - 0 @@ -1691,11 +1771,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} XIA Shutter - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 5 + 325 + 20 + + @@ -1707,7 +1795,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(S)Status.AINP diff --git a/opticsApp/op/ui/XIA_shutterTry.ui b/opticsApp/op/ui/autoconvert/XIA_shutterTry.ui similarity index 85% rename from opticsApp/op/ui/XIA_shutterTry.ui rename to opticsApp/op/ui/autoconvert/XIA_shutterTry.ui index 19b3da2..89a3ab2 100644 --- a/opticsApp/op/ui/XIA_shutterTry.ui +++ b/opticsApp/op/ui/autoconvert/XIA_shutterTry.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -84,7 +172,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;322,1; + 322,1; @@ -97,7 +185,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(S):UserCmd_IO.AINP @@ -151,7 +239,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):sendCommand.VAL @@ -190,7 +278,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):sendCommand.VAL @@ -229,7 +317,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(S):expose_IO.AINP @@ -283,7 +371,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(S):exposeDone_IO.AINP @@ -363,7 +451,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(S)open - 0,0;279,0; + 279,0; @@ -376,7 +464,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):sendCommand.VAL @@ -415,7 +503,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):sendCommand.VAL @@ -454,7 +542,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):sendCommand.VAL @@ -493,7 +581,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):sendCommand.VAL @@ -532,7 +620,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):sendCommand.VAL @@ -571,7 +659,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):sendCommand.VAL @@ -676,14 +764,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 244 - 30 - 66 - 12 - - 0 @@ -702,7 +782,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Status poll - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 244 + 30 + 66 + 12 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -712,14 +800,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 5 - 325 - 20 - - 0 @@ -738,11 +818,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} XIA Shutter - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 5 + 325 + 20 + + @@ -754,7 +842,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(S):address @@ -799,14 +887,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 15 - 320 - 50 - 10 - - 0 @@ -825,24 +905,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} MODULE - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 15 - 330 + 320 50 10 + + + + QFrame::NoFrame + 0 @@ -861,11 +941,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} ADDRESS - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 15 + 330 + 50 + 10 + + @@ -909,248 +997,230 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} false;false;false;false - + 15 40 - 207 + 50 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(S):expose.PROC + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Expose + + + 1 + + + caMessageButton::Static + + + + + + 65 + 40 + 50 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(S):exposeTime + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + (s) + + + ESimpleLabel::WidthAndHeight + + + + 115 + 42 + 10 + 16 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 140 + 40 + 82 22 - - - - 0 - 0 - 50 - 20 - - - - EPushButton::Height - - - $(P)$(S):expose.PROC + + + QFrame::NoFrame - 0 - 0 + 51 + 153 0 - - 115 - 223 - 255 + + 51 + 153 + 0 - - Expose + + caLabel::IfNotZero + + + $(P)$(S):busy + + + EXPOSING - - 1 + + ESimpleLabel::WidthAndHeight - - caMessageButton::Static + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - 50 + 0 0 - 50 + 80 20 - - caLineEdit::Height - - - $(P)$(S):exposeTime - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - + QFrame::NoFrame - - - 100 - 2 - 10 - 16 - - - 0 + 10 0 - 0 + 184 - 0 + 10 0 - 0 + 184 + + caLabel::IfZero + + + $(P)$(S):busy + - (s) + DONE - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - 125 + 0 0 - 82 - 22 + 80 + 20 - - - QFrame::NoFrame - - - - 0 - 0 - 80 - 20 - - - - - 51 - 153 - 0 - - - - - 51 - 153 - 0 - - - - caLabel::IfNotZero - - - $(P)$(S):busy - - - EXPOSING - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 0 - 80 - 20 - - - - - 10 - 0 - 184 - - - - - 10 - 0 - 184 - - - - caLabel::IfZero - - - $(P)$(S):busy - - - DONE - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - QFrame::NoFrame - - - 275 - 185 - 35 - 20 - - 60 @@ -1175,7 +1245,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} In - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 275 + 185 + 35 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1185,14 +1263,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 275 - 165 - 35 - 20 - - 60 @@ -1217,7 +1287,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} In - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 275 + 165 + 35 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1227,14 +1305,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 275 - 145 - 35 - 20 - - 60 @@ -1259,7 +1329,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} In - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 275 + 145 + 35 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1275,7 +1353,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):openShutter.PROC @@ -1314,7 +1392,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):closeShutter.PROC @@ -1353,7 +1431,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):sendCommand.VAL @@ -1392,7 +1470,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):sendCommand.VAL @@ -1431,7 +1509,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):sendCommand.VAL @@ -1470,7 +1548,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):sendCommand.VAL @@ -1509,7 +1587,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):sendCommand.VAL @@ -1548,7 +1626,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):sendCommand.VAL @@ -1587,7 +1665,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):sendCommand.VAL @@ -1626,7 +1704,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):sendCommand.VAL @@ -1659,14 +1737,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 275 - 125 - 35 - 20 - - 253 @@ -1691,15 +1761,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Out - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame + ESimpleLabel::WidthAndHeight @@ -1709,6 +1771,14 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 20 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 60 @@ -1733,7 +1803,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} In - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 275 + 125 + 35 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1743,14 +1821,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 275 - 145 - 35 - 20 - - 253 @@ -1775,7 +1845,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Out - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 275 + 145 + 35 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1785,14 +1863,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 275 - 165 - 35 - 20 - - 253 @@ -1817,7 +1887,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Out - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 275 + 165 + 35 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1827,14 +1905,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 275 - 185 - 35 - 20 - - 253 @@ -1859,7 +1929,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Out - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 275 + 185 + 35 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1875,7 +1953,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLabel_4 caLabel_5 caLabel_6 - caFrame_1 caFrame_0 caLabel_7 caLabel_8 diff --git a/opticsApp/op/ui/XIA_shutterTry_more.ui b/opticsApp/op/ui/autoconvert/XIA_shutterTry_more.ui similarity index 80% rename from opticsApp/op/ui/XIA_shutterTry_more.ui rename to opticsApp/op/ui/autoconvert/XIA_shutterTry_more.ui index 1c17019..44b0bd7 100644 --- a/opticsApp/op/ui/XIA_shutterTry_more.ui +++ b/opticsApp/op/ui/autoconvert/XIA_shutterTry_more.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -84,21 +172,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;308,1; + 308,1; QFrame::NoFrame - - - 0 - 4 - 310 - 20 - - 0 @@ -117,11 +197,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} XIA Shutter - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 4 + 310 + 20 + + @@ -217,7 +305,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(S):address @@ -262,6 +350,29 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + MODULE + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + 10 @@ -270,6 +381,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 10 + + + + QFrame::NoFrame + 0 @@ -285,19 +401,14 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - MODULE + ADDRESS - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 10 @@ -306,6 +417,101 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 10 + + + + + 15 + 40 + 50 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(S):expose.PROC + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Expose + + + 1 + + + caMessageButton::Static + + + + + + 65 + 40 + 50 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(S):exposeTime + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + 0 @@ -321,257 +527,121 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - ADDRESS + (s) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 115 + 42 + 10 + 16 + - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - 15 + 140 40 - 207 + 82 22 - - - - 0 - 0 - 50 - 20 - - - - EPushButton::Height - - - $(P)$(S):expose.PROC + + + QFrame::NoFrame - 0 - 0 + 51 + 153 0 - - 115 - 223 - 255 + + 51 + 153 + 0 - - Expose + + caLabel::IfNotZero - - 1 + + $(P)$(S):busy - - caMessageButton::Static + + EXPOSING + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - 50 + 0 0 - 50 + 80 20 - - caLineEdit::Height - - - $(P)$(S):exposeTime - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - + QFrame::NoFrame - - - 100 - 2 - 10 - 16 - - - 0 + 10 0 - 0 + 184 - 0 + 10 0 - 0 + 184 + + caLabel::IfZero + + + $(P)$(S):busy + - (s) + DONE - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - 125 + 0 0 - 82 - 22 + 80 + 20 - - - QFrame::NoFrame - - - - 0 - 0 - 80 - 20 - - - - - 51 - 153 - 0 - - - - - 51 - 153 - 0 - - - - caLabel::IfNotZero - - - $(P)$(S):busy - - - EXPOSING - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 0 - 80 - 20 - - - - - 10 - 0 - 184 - - - - - 10 - 0 - 184 - - - - caLabel::IfZero - - - $(P)$(S):busy - - - DONE - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - QFrame::NoFrame - - - 275 - 145 - 35 - 20 - - 60 @@ -596,7 +666,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} In - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 275 + 145 + 35 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -606,14 +684,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 275 - 125 - 35 - 20 - - 60 @@ -638,7 +708,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} In - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 275 + 125 + 35 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -648,14 +726,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 275 - 105 - 35 - 20 - - 60 @@ -680,7 +750,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} In - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 275 + 105 + 35 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -696,7 +774,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):openShutter.PROC @@ -735,7 +813,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):closeShutter.PROC @@ -774,7 +852,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):sendCommand.VAL @@ -813,7 +891,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):sendCommand.VAL @@ -852,7 +930,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):sendCommand.VAL @@ -891,7 +969,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):sendCommand.VAL @@ -930,7 +1008,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):sendCommand.VAL @@ -969,7 +1047,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):sendCommand.VAL @@ -1008,7 +1086,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):sendCommand.VAL @@ -1047,7 +1125,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):sendCommand.VAL @@ -1080,14 +1158,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 275 - 85 - 35 - 20 - - 253 @@ -1112,15 +1182,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Out - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame + ESimpleLabel::WidthAndHeight @@ -1130,6 +1192,14 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 20 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 60 @@ -1154,7 +1224,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} In - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 275 + 85 + 35 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1164,14 +1242,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 275 - 105 - 35 - 20 - - 253 @@ -1196,7 +1266,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Out - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 275 + 105 + 35 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1206,14 +1284,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 275 - 125 - 35 - 20 - - 253 @@ -1238,7 +1308,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Out - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 275 + 125 + 35 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1248,14 +1326,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 275 - 145 - 35 - 20 - - 253 @@ -1280,7 +1350,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Out - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 275 + 145 + 35 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1294,7 +1372,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLabel_3 caLabel_4 caLabel_5 - caFrame_1 caFrame_0 caLabel_6 caLabel_7 diff --git a/opticsApp/op/ui/XIA_shutterTry_small.ui b/opticsApp/op/ui/autoconvert/XIA_shutterTry_small.ui similarity index 56% rename from opticsApp/op/ui/XIA_shutterTry_small.ui rename to opticsApp/op/ui/autoconvert/XIA_shutterTry_small.ui index d78149a..f9faae9 100644 --- a/opticsApp/op/ui/XIA_shutterTry_small.ui +++ b/opticsApp/op/ui/autoconvert/XIA_shutterTry_small.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -61,7 +149,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):openShutter.PROC @@ -100,7 +188,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S):closeShutter.PROC @@ -162,21 +250,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;279,1; + 279,1; QFrame::NoFrame - - - 0 - 5 - 280 - 20 - - 0 @@ -195,11 +275,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} XIA Shutter - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 5 + 280 + 20 + + @@ -243,234 +331,224 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} true - + 15 40 - 207 + 50 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(S):expose.PROC + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Expose + + + 1 + + + caMessageButton::Static + + + + + + 65 + 40 + 50 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(S):exposeTime + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + (s) + + + ESimpleLabel::WidthAndHeight + + + + 115 + 42 + 10 + 16 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 140 + 40 + 82 22 - - - - 0 - 0 - 50 - 20 - - - - EPushButton::Height - - - $(P)$(S):expose.PROC + + + QFrame::NoFrame - 0 - 0 + 51 + 153 0 - - 115 - 223 - 255 + + 51 + 153 + 0 - - Expose + + caLabel::IfNotZero + + + $(P)$(S):busy + + + EXPOSING - - 1 + + ESimpleLabel::WidthAndHeight - - caMessageButton::Static + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - 50 + 0 0 - 50 + 80 20 - - caLineEdit::Height - - - $(P)$(S):exposeTime - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - + QFrame::NoFrame - - - 100 - 2 - 10 - 16 - - - 0 + 10 0 - 0 + 184 - 0 + 10 0 - 0 + 184 + + caLabel::IfZero + + + $(P)$(S):busy + - (s) + DONE - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - 125 + 0 0 - 82 - 22 + 80 + 20 - - - QFrame::NoFrame - - - - 0 - 0 - 80 - 20 - - - - - 51 - 153 - 0 - - - - - 51 - 153 - 0 - - - - caLabel::IfNotZero - - - $(P)$(S):busy - - - EXPOSING - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 0 - 80 - 20 - - - - - 10 - 0 - 184 - - - - - 10 - 0 - 184 - - - - caLabel::IfZero - - - $(P)$(S):busy - - - DONE - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - caRectangle_0 @@ -479,7 +557,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLabel_1 caLabel_2 caLabel_3 - caFrame_1 caFrame_0 caMessageButton_0 caMessageButton_1 diff --git a/opticsApp/op/ui/XIA_shutter_more.ui b/opticsApp/op/ui/autoconvert/XIA_shutter_more.ui similarity index 90% rename from opticsApp/op/ui/XIA_shutter_more.ui rename to opticsApp/op/ui/autoconvert/XIA_shutter_more.ui index 73de906..9c96855 100644 --- a/opticsApp/op/ui/XIA_shutter_more.ui +++ b/opticsApp/op/ui/autoconvert/XIA_shutter_more.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -61,7 +149,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)openShutter.PROC @@ -100,7 +188,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)closeShutter.PROC @@ -162,7 +250,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;279,1; + 279,1; @@ -178,14 +266,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 0 - 50 - 10 - - 251 @@ -210,16 +290,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} BUSY - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 0 @@ -228,6 +303,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 10 + + + + QFrame::NoFrame + 0 @@ -252,11 +332,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} DONE - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 0 + 50 + 10 + + @@ -269,7 +357,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)expose.PROC @@ -308,7 +396,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(S)exposeTime @@ -353,14 +441,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 115 - 42 - 10 - 16 - - 0 @@ -379,7 +459,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} (s) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 115 + 42 + 10 + 16 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -395,7 +483,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -434,7 +522,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -473,7 +561,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -512,7 +600,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -545,14 +633,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 5 - 280 - 20 - - 0 @@ -571,11 +651,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} XIA Shutter - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 5 + 280 + 20 + + @@ -587,7 +675,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -626,7 +714,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -665,7 +753,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL @@ -704,7 +792,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)sendCommand.VAL diff --git a/opticsApp/op/ui/XIA_shutter_small.ui b/opticsApp/op/ui/autoconvert/XIA_shutter_small.ui similarity index 86% rename from opticsApp/op/ui/XIA_shutter_small.ui rename to opticsApp/op/ui/autoconvert/XIA_shutter_small.ui index 8ea54f0..11bdc0a 100644 --- a/opticsApp/op/ui/XIA_shutter_small.ui +++ b/opticsApp/op/ui/autoconvert/XIA_shutter_small.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -61,7 +149,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)openShutter.PROC @@ -100,7 +188,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)closeShutter.PROC @@ -162,7 +250,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;279,1; + 279,1; @@ -178,14 +266,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 0 - 50 - 10 - - 251 @@ -210,16 +290,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} BUSY - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 0 @@ -228,6 +303,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 10 + + + + QFrame::NoFrame + 0 @@ -252,11 +332,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} DONE - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 0 + 50 + 10 + + @@ -269,7 +357,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(S)expose.PROC @@ -308,7 +396,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(S)exposeTime @@ -353,14 +441,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 115 - 42 - 10 - 16 - - 0 @@ -379,7 +459,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} (s) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 115 + 42 + 10 + 16 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -389,14 +477,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 5 - 280 - 20 - - 0 @@ -415,11 +495,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} XIA Shutter - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 5 + 280 + 20 + + diff --git a/opticsApp/op/ui/bProtect.ui b/opticsApp/op/ui/autoconvert/bProtect.ui similarity index 57% rename from opticsApp/op/ui/bProtect.ui rename to opticsApp/op/ui/autoconvert/bProtect.ui index 2fbe235..18b1c66 100644 --- a/opticsApp/op/ui/bProtect.ui +++ b/opticsApp/op/ui/autoconvert/bProtect.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -52,14 +140,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 0 - 0 - 100 - 20 - - 0 @@ -78,11 +158,19 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} bProtect - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 0 + 100 + 20 + + caLabel_0 caChoice_0 diff --git a/opticsApp/op/ui/fb_epid.ui b/opticsApp/op/ui/autoconvert/fb_epid.ui similarity index 82% rename from opticsApp/op/ui/fb_epid.ui rename to opticsApp/op/ui/autoconvert/fb_epid.ui index c02036f..ab4527d 100644 --- a/opticsApp/op/ui/fb_epid.ui +++ b/opticsApp/op/ui/autoconvert/fb_epid.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -22,14 +110,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 16 - 4 - 200 - 10 - - 0 @@ -48,7 +128,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} fb_epid.adl - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 16 + 4 + 200 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -58,14 +146,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 16 - 14 - 200 - 10 - - 0 @@ -84,7 +164,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} last update: 2012-03-01 (prj) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 16 + 14 + 200 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -94,14 +182,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 164 - 3 - 340 - 24 - - 0 @@ -120,11 +200,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} feedback $(P) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 164 + 3 + 340 + 24 + + @@ -401,14 +489,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 47 - 57 - 120 - 14 - - 0 @@ -427,11 +507,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} EPID input - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 47 + 57 + 120 + 14 + + @@ -443,7 +531,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P).CVAL @@ -497,7 +585,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P).VAL @@ -542,14 +630,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 17 - 99 - 14 - 14 - - 0 @@ -568,11 +648,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 17 + 99 + 14 + 14 + + @@ -607,21 +695,13 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} Solid - 1,1;120,1; + 120,1; QFrame::NoFrame - - - 156 - 126 - 160 - 14 - - 0 @@ -640,7 +720,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} following error (FE) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 156 + 126 + 160 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -656,7 +744,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P).ERR @@ -819,14 +907,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 47 - 159 - 120 - 14 - - 0 @@ -845,11 +925,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} EPID output - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 47 + 159 + 120 + 14 + + @@ -917,7 +1005,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} Solid - 1,1;123,1; + 123,1; @@ -930,7 +1018,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P).OVAL @@ -978,14 +1066,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 124 - 265 - 24 - 14 - - 0 @@ -1004,24 +1084,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} <= - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 258 + 124 265 24 14 + + + + QFrame::NoFrame + 0 @@ -1040,11 +1120,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} <= - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 258 + 265 + 24 + 14 + + @@ -1056,7 +1144,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P).DRVL @@ -1107,7 +1195,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P).DRVH @@ -1152,14 +1240,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 249 - 198 - 12 - 14 - - 0 @@ -1178,24 +1258,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} P - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 145 + 249 198 - 14 + 12 14 + + + + QFrame::NoFrame + 0 @@ -1213,19 +1293,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 249 - 238 - 12 + 145 + 198 + 14 14 + + + + QFrame::NoFrame + 0 @@ -1244,24 +1324,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} D - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 145 + 249 238 - 14 + 12 14 + + + + QFrame::NoFrame + 0 @@ -1280,24 +1360,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} + - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 249 - 217 - 12 + 145 + 238 + 14 14 + + + + QFrame::NoFrame + 0 @@ -1316,24 +1396,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} I - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 145 + 249 217 - 14 + 12 14 + + + + QFrame::NoFrame + 0 @@ -1352,24 +1432,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} + - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 14 - 197 - 20 + 145 + 217 + 14 14 + + + + QFrame::NoFrame + 0 @@ -1388,23 +1468,31 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} KP - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - 38 - 217 - 80 + 14 + 197 + 20 + 14 + + + + + + + 38 + 217 + 80 16 - caLineEdit::Height + caLineEdit::WidthAndHeight $(P).KI @@ -1449,14 +1537,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 15 - 218 - 20 - 14 - - 0 @@ -1475,11 +1555,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} KI - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 15 + 218 + 20 + 14 + + @@ -1491,7 +1579,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P).KD @@ -1536,14 +1624,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 14 - 238 - 20 - 14 - - 0 @@ -1562,11 +1642,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} KD - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 14 + 238 + 20 + 14 + + @@ -1578,7 +1666,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P).KP @@ -1623,14 +1711,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 14 - 197 - 20 - 14 - - 0 @@ -1649,24 +1729,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} KP - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - QFrame::NoFrame - - 249 - 217 - 12 + 14 + 197 + 20 14 + + + + QFrame::NoFrame + 0 @@ -1685,24 +1765,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} I - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 145 + 249 217 - 14 + 12 14 + + + + QFrame::NoFrame + 0 @@ -1721,24 +1801,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} + - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 249 - 198 - 12 + 145 + 217 + 14 14 + + + + QFrame::NoFrame + 0 @@ -1757,24 +1837,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} P - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 145 + 249 198 - 14 + 12 14 + + + + QFrame::NoFrame + 0 @@ -1792,19 +1872,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 249 - 238 - 12 + 145 + 198 + 14 14 + + + + QFrame::NoFrame + 0 @@ -1823,24 +1903,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} D - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 145 + 249 238 - 14 + 12 14 + + + + QFrame::NoFrame + 0 @@ -1859,24 +1939,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} + - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 145 + 238 + 14 + 14 + + QFrame::NoFrame - - - 125 - 177 - 60 - 12 - - 0 @@ -1895,7 +1975,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} feedback - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 125 + 177 + 60 + 12 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1986,7 +2074,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P).FBON @@ -2040,7 +2128,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P).P @@ -2084,442 +2172,20 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} caLineEdit::Static - + 164 - 200 - 340 - 54 - - - - - - 0 - 38 - 80 - 14 - - - - caLineEdit::Height - - - $(P).D - - - - 0 - 0 - 0 - - - - - 153 - 255 - 255 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - compact - - - caLineEdit::Static - - - - - - 0 - 17 - 80 - 16 - - - - caLineEdit::Height - - - $(P).I - - - - 0 - 0 - 0 - - - - - 153 - 255 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - QFrame::NoFrame - - - - 118 - 20 - 220 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - I = KP * KI * sum(FE*DT) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 118 - 0 - 220 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - P = KP * FE - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 118 - 41 - 220 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - D = KP * KD * (FE[i] - FE[i-1])/DT - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - caFrame::IfZero - - - $(P).FMOD + 238 + 80 + 14 + - - - - - 199 - 200 - 305 - 54 - - - - - QFrame::NoFrame - - - - 0 - 17 - 12 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - 0 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 38 - 12 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - 0 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 83 - 41 - 220 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - D = 0 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 83 - 20 - 220 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - I = 0 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 83 - 0 - 220 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - P = KP * (INP[i] - INP[i-1])/DT - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - caFrame::IfNotZero + + caLineEdit::WidthAndHeight - $(P).FMOD - - - - - QFrame::NoFrame - - - - 17 - 34 - 31 - 16 - + $(P).D @@ -2529,34 +2195,52 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - - 0 - 0 - 0 + + 153 + 255 + 255 - - DESC + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - ESimpleLabel::Height + + caLineEdit::Channel - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + caLineEdit::Channel - - - - QFrame::NoFrame + + caLineEdit::Channel + + + 0.0 + + 1.0 + + + compact + + + caLineEdit::Static + + + - 277 - 34 - 27 + 164 + 217 + 80 16 + + caLineEdit::WidthAndHeight + + + $(P).I + 0 @@ -2565,34 +2249,398 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - - 0 - 0 - 0 + + 153 + 255 + 255 - - EGU + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + I = KP * KI * sum(FE*DT) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 282 + 220 + 220 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + P = KP * FE + + + ESimpleLabel::WidthAndHeight + + + + 282 + 200 + 220 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + D = KP * KD * (FE[i] - FE[i-1])/DT + + + ESimpleLabel::WidthAndHeight + + + + 282 + 241 + 220 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + 0 + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 199 + 217 + 12 + 14 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + 0 + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 199 + 238 + 12 + 14 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + D = 0 + + + ESimpleLabel::WidthAndHeight + + + + 282 + 241 + 220 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + I = 0 + + + ESimpleLabel::WidthAndHeight + + + + 282 + 220 + 220 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + P = KP * (INP[i] - INP[i-1])/DT + + + ESimpleLabel::WidthAndHeight + + + + 282 + 200 + 220 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + DESC + + + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 17 + 34 + 31 + 16 + + - + QFrame::NoFrame + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + EGU + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + - 408 + 277 34 - 38 + 27 16 + + + + QFrame::NoFrame + 0 @@ -2611,11 +2659,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} PREC - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 408 + 34 + 38 + 16 + + @@ -2627,7 +2683,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P).DESC @@ -2681,7 +2737,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P).EGU @@ -2735,7 +2791,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P).PREC @@ -2783,14 +2839,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 156 - 77 - 160 - 14 - - 0 @@ -2809,7 +2857,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} set point - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 156 + 77 + 160 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2850,13 +2906,11 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} caLabel_26 caLabel_27 caLabel_28 - caFrame_0 caLabel_29 caLabel_30 caLabel_31 caLabel_32 caLabel_33 - caFrame_1 caLabel_34 caLabel_35 caLabel_36 diff --git a/opticsApp/op/ui/fb_epid_basic.ui b/opticsApp/op/ui/autoconvert/fb_epid_basic.ui similarity index 87% rename from opticsApp/op/ui/fb_epid_basic.ui rename to opticsApp/op/ui/autoconvert/fb_epid_basic.ui index 1e7d4b9..6242be3 100644 --- a/opticsApp/op/ui/fb_epid_basic.ui +++ b/opticsApp/op/ui/autoconvert/fb_epid_basic.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -22,14 +110,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 16 - 4 - 200 - 10 - - 0 @@ -48,7 +128,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} fb_epid_basic.adl - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 16 + 4 + 200 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -58,14 +146,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 16 - 14 - 200 - 10 - - 0 @@ -84,7 +164,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} last update: 2012-02-28 (prj) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 16 + 14 + 200 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -169,14 +257,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 34 - 240 - 24 - - 0 @@ -195,11 +275,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} feedback $(P) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 10 + 34 + 240 + 24 + + @@ -211,7 +299,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P).DESC @@ -265,7 +353,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P).CVAL @@ -319,7 +407,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P).VAL @@ -397,14 +485,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 175 - 170 - 50 - 18 - - 33 @@ -432,11 +512,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} On - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 175 + 170 + 50 + 18 + + @@ -482,14 +570,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 175 - 170 - 50 - 18 - - 253 @@ -517,11 +597,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} Off - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 175 + 170 + 50 + 18 + + caLabel_0 caLabel_1 diff --git a/opticsApp/op/ui/fb_epid_chart.ui b/opticsApp/op/ui/autoconvert/fb_epid_chart.ui similarity index 77% rename from opticsApp/op/ui/fb_epid_chart.ui rename to opticsApp/op/ui/autoconvert/fb_epid_chart.ui index 7a2c572..e568233 100644 --- a/opticsApp/op/ui/fb_epid_chart.ui +++ b/opticsApp/op/ui/autoconvert/fb_epid_chart.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -22,14 +110,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 20 - 6 - 360 - 20 - - 0 @@ -48,11 +128,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} $(P) fb_epid simulator chart - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 20 + 6 + 360 + 20 + + diff --git a/opticsApp/op/ui/fb_epid_config.ui b/opticsApp/op/ui/autoconvert/fb_epid_config.ui similarity index 93% rename from opticsApp/op/ui/fb_epid_config.ui rename to opticsApp/op/ui/autoconvert/fb_epid_config.ui index c2e8b3a..8d8432a 100644 --- a/opticsApp/op/ui/fb_epid_config.ui +++ b/opticsApp/op/ui/autoconvert/fb_epid_config.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -22,14 +110,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 42 - 290 - 500 - 14 - - 0 @@ -48,7 +128,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} The <output buffer calc> is for internal use. Do not use it! - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 42 + 290 + 500 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -58,14 +146,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 16 - 4 - 200 - 10 - - 0 @@ -84,7 +164,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} fb_epid_control.adl - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 16 + 4 + 200 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -94,14 +182,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 16 - 14 - 200 - 10 - - 0 @@ -120,7 +200,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} last update: 2012-03-01 (prj) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 16 + 14 + 200 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -130,14 +218,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 164 - 3 - 340 - 24 - - 0 @@ -156,24 +236,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} feedback $(P) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 164 + 3 + 340 + 24 + + QFrame::NoFrame - - - 17 - 35 - 31 - 16 - - 0 @@ -192,11 +272,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} DESC - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 17 + 35 + 31 + 16 + + @@ -208,7 +296,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P).DESC @@ -253,14 +341,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 277 - 35 - 27 - 16 - - 0 @@ -279,11 +359,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} EGU - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 277 + 35 + 27 + 16 + + @@ -295,7 +383,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P).EGU @@ -340,14 +428,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 408 - 36 - 38 - 14 - - 0 @@ -366,11 +446,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} PREC - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 408 + 36 + 38 + 14 + + @@ -382,7 +470,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P).PREC @@ -427,14 +515,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 149 - 59 - 32 - 14 - - 0 @@ -453,11 +533,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} DT - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 149 + 59 + 32 + 14 + + @@ -469,7 +557,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P).DT @@ -550,7 +638,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P).MDT @@ -595,14 +683,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 370 - 59 - 32 - 14 - - 0 @@ -621,11 +701,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} MDT - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 370 + 59 + 32 + 14 + + @@ -757,14 +845,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 13 - 199 - 100 - 20 - - 0 @@ -783,7 +863,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} Note: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 13 + 199 + 100 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -793,14 +881,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 42 - 220 - 500 - 14 - - 0 @@ -819,7 +899,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} This screen provides direct access to just a few of the possible - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 42 + 220 + 500 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -829,14 +917,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 42 - 240 - 500 - 14 - - 0 @@ -855,7 +935,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} configuration variables for the fb_epid support. For access to more - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 42 + 240 + 500 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -865,14 +953,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 42 - 260 - 500 - 14 - - 0 @@ -891,7 +971,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} capabilities, visit each calculation subscreen. - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 42 + 260 + 500 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -901,14 +989,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 42 - 310 - 500 - 14 - - 0 @@ -927,7 +1007,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} The <resume calc> is for internal use. Do not use it! - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 42 + 310 + 500 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -943,7 +1031,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P):enable.CALC @@ -1036,7 +1124,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P):enable.INAN @@ -1081,14 +1169,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 153 - 190 - 14 - - 0 @@ -1107,24 +1187,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} enable calculation - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - QFrame::NoFrame - 10 - 174 + 153 190 14 + + + + QFrame::NoFrame + 0 @@ -1143,11 +1223,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} output signal - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 10 + 174 + 190 + 14 + + @@ -1159,7 +1247,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P):out.OUTN @@ -1294,7 +1382,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P):in.CALC @@ -1345,7 +1433,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P):in.INAN @@ -1390,14 +1478,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 132 - 190 - 14 - - 0 @@ -1416,24 +1496,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} input signal - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - QFrame::NoFrame - - 205 - 110 + 10 + 132 190 14 + + + + QFrame::NoFrame + 0 @@ -1452,24 +1532,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} PV name - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - QFrame::NoFrame - - 400 + 205 110 190 14 + + + + QFrame::NoFrame + 0 @@ -1488,7 +1568,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} calculation - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 400 + 110 + 190 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter diff --git a/opticsApp/op/ui/fb_epid_sim.ui b/opticsApp/op/ui/autoconvert/fb_epid_sim.ui similarity index 92% rename from opticsApp/op/ui/fb_epid_sim.ui rename to opticsApp/op/ui/autoconvert/fb_epid_sim.ui index 085a458..4b0bb57 100644 --- a/opticsApp/op/ui/fb_epid_sim.ui +++ b/opticsApp/op/ui/autoconvert/fb_epid_sim.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -22,14 +110,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 16 - 4 - 200 - 10 - - 0 @@ -48,7 +128,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} fb_epid_sim.adl - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 16 + 4 + 200 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -58,14 +146,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 16 - 14 - 200 - 10 - - 0 @@ -84,7 +164,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} last update: 2012-02-28 (prj) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 16 + 14 + 200 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -94,14 +182,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 34 - 400 - 24 - - 0 @@ -120,11 +200,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} feedback simulator $(P):sim - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 10 + 34 + 400 + 24 + + @@ -136,7 +224,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P):sim.DESC @@ -184,14 +272,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 100 - 190 - 20 - - 0 @@ -210,11 +290,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} base temperature - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 10 + 100 + 190 + 20 + + @@ -226,7 +314,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P):sim.A @@ -271,14 +359,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 150 - 190 - 20 - - 0 @@ -297,11 +377,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} heater power - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 10 + 150 + 190 + 20 + + @@ -313,7 +401,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P):sim.C @@ -358,14 +446,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 125 - 190 - 20 - - 0 @@ -384,11 +464,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} cooling power - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 10 + 125 + 190 + 20 + + @@ -400,7 +488,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P):sim.B @@ -445,14 +533,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 200 - 190 - 20 - - 0 @@ -471,11 +551,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} relay threshold - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 10 + 200 + 190 + 20 + + @@ -487,7 +575,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P):sim.E @@ -532,14 +620,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 175 - 190 - 20 - - 0 @@ -558,11 +638,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} PID output - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 10 + 175 + 190 + 20 + + @@ -574,7 +662,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P):sim.D @@ -622,14 +710,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 225 - 190 - 20 - - 0 @@ -648,11 +728,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} current temperature - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 10 + 225 + 190 + 20 + + @@ -664,7 +752,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P):sim.F @@ -796,14 +884,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 250 - 190 - 20 - - 0 @@ -822,11 +902,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} feedback ON or OFF - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 10 + 250 + 190 + 20 + + @@ -838,7 +926,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P).FBON @@ -886,14 +974,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 275 - 190 - 20 - - 0 @@ -912,11 +992,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} desired temperature - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 10 + 275 + 190 + 20 + + @@ -928,7 +1016,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P).VAL @@ -973,14 +1061,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 400 - 100 - 20 - 20 - - 0 @@ -999,24 +1079,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} A - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 400 - 125 + 100 20 20 + + + + QFrame::NoFrame + 0 @@ -1035,24 +1115,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} B - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 400 - 150 + 125 20 20 + + + + QFrame::NoFrame + 0 @@ -1071,24 +1151,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} C - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 400 - 175 + 150 20 20 + + + + QFrame::NoFrame + 0 @@ -1107,24 +1187,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} D - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 400 - 200 + 175 20 20 + + + + QFrame::NoFrame + 0 @@ -1143,24 +1223,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} E - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 400 - 225 + 200 20 20 + + + + QFrame::NoFrame + 0 @@ -1179,24 +1259,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} F - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 400 - 250 + 225 20 20 + + + + QFrame::NoFrame + 0 @@ -1215,24 +1295,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} G - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 400 + 250 + 20 + 20 + + QFrame::NoFrame - - - 330 - 275 - 90 - 14 - - 0 @@ -1251,11 +1331,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} $(P).VAL - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 330 + 275 + 90 + 14 + + caLabel_0 caLabel_1 diff --git a/opticsApp/op/ui/filter_16_0_less.ui b/opticsApp/op/ui/autoconvert/filter_16_0_less.ui similarity index 79% rename from opticsApp/op/ui/filter_16_0_less.ui rename to opticsApp/op/ui/autoconvert/filter_16_0_less.ui index 1522aa0..d15a55a 100644 --- a/opticsApp/op/ui/filter_16_0_less.ui +++ b/opticsApp/op/ui/autoconvert/filter_16_0_less.ui @@ -4,8 +4,8 @@ - 300 - 300 + 600 + 666 680 285 @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -169,7 +257,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)EnergyBeamline @@ -223,7 +311,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)EnergyLocal @@ -268,14 +356,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 176 - 153 - 60 - 15 - - 0 @@ -294,7 +374,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Message: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 176 + 153 + 60 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -310,7 +398,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)Message @@ -364,7 +452,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -403,7 +491,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -436,14 +524,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 570 - 105 - 86 - 15 - - 0 @@ -462,7 +542,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Setpoint: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 570 + 105 + 86 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -478,7 +566,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -523,14 +611,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 175 - 133 - 60 - 15 - - 0 @@ -549,7 +629,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Mask: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 175 + 133 + 60 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -559,14 +647,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 175 - 111 - 60 - 15 - - 0 @@ -585,7 +665,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Transm: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 175 + 111 + 60 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -601,7 +689,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)FilterMask @@ -655,7 +743,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)Transmission @@ -703,14 +791,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 175 - 89 - 60 - 15 - - 0 @@ -729,7 +809,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Status: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 175 + 89 + 60 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -745,7 +833,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)Status @@ -799,7 +887,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)FilterMask @@ -847,14 +935,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 310 - 134 - 10 - 13 - - 0 @@ -873,7 +953,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} = - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 310 + 134 + 10 + 13 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -883,14 +971,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 350 - 40 - 34 - 15 - - 0 @@ -909,7 +989,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} keV - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 350 + 40 + 34 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -919,14 +1007,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 350 - 60 - 34 - 15 - - 0 @@ -945,7 +1025,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} keV - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 350 + 60 + 34 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -970,7 +1058,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1009,7 +1097,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -1048,7 +1136,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -1087,7 +1175,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -1126,7 +1214,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -1165,7 +1253,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -1204,7 +1292,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1243,7 +1331,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1282,7 +1370,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1321,7 +1409,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionStepDown @@ -1360,7 +1448,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionStepUp @@ -1399,7 +1487,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1438,7 +1526,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1477,7 +1565,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1516,7 +1604,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1579,7 +1667,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;679,0; + 679,0; @@ -1688,7 +1776,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)Description @@ -1762,21 +1850,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;0,145; + 0,145; QFrame::NoFrame - - - 5 - 44 - 150 - 13 - - 255 @@ -1795,24 +1875,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(R) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 5 - 95 - 118 - 10 + 44 + 150 + 13 + + + + QFrame::NoFrame + 0 @@ -1831,7 +1911,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} filter_16_0_less.adl - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 95 + 118 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1841,14 +1929,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 110 - 118 - 10 - - 0 @@ -1867,7 +1947,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 2013-01-24 (CMS) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 110 + 118 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1960,164 +2048,246 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - 5 + 303 188 - 673 - 87 + 81 + 21 - 298 + 22 0 - 81 + 37 21 + + + QFrame::NoFrame + + + + 33 + 108 + 0 + + + + + 33 + 108 + 0 + + + + free + + + ESimpleLabel::WidthAndHeight + + + + 1 + 9 + 21 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + - 22 + 0 0 37 - 21 + 12 - + QFrame::NoFrame + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + lock + + + ESimpleLabel::WidthAndHeight + - 1 - 9 + 0 + 0 21 10 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + - 33 - 108 + 0 + 0 0 - 33 - 108 + 0 + 0 0 - free + / - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + ESimpleLabel::WidthAndHeight - - - 0 + 25 0 - 37 - 12 + 10 + 10 - - - QFrame::NoFrame - - - - 0 - 0 - 21 - 10 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - lock - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 25 - 0 - 10 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - / - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + - - - - 0 - 5 - 19 - 1 - - - - 1 + + + + + 0 + 5 + 19 + 1 + + + + 1 + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + 18,0; + + + + + + 60 + 5 + 19 + 1 + + + + 1 + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + 18,0; + + + + + + + 5 + 226 + 673 + 17 + + + + + + 0 + 0 + 22 + 17 + + + + + + 0 + 0 + 21 + 9 + + + + 2 - 0 + 253 0 0 @@ -2127,7 +2297,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - 0 + 253 0 0 @@ -2135,25 +2305,28 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid + + $(P)$(R)EnergyLocal + - 0,0;18,0; + 20,1; - + - 60 - 5 - 19 - 1 + 0 + 6 + 21 + 9 - 1 + 2 - 0 + 253 0 0 @@ -2163,7 +2336,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - 0 + 253 0 0 @@ -2171,291 +2344,69 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid + + $(P)$(R)EnergyLocal + - 0,0;18,0; + 20,8; - + - 0 - 38 - 673 + 330 + 0 + 22 17 - + 0 0 - 22 - 17 + 21 + 9 - - - - 0 - 0 - 21 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,8;20,1; - - - - - - 0 - 6 - 21 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,1;20,8; - - - - - - - 330 - 0 - 22 - 17 - + + 2 - - - - 0 - 0 - 21 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,8;20,1; - - - - - - 0 - 6 - 21 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,1;20,8; - - - - - - - 646 - 0 - 22 - 17 - + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + $(P)$(R)EnergyLocal + + + 20,1; - - - - 0 - 0 - 21 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,8;20,1; - - - - - - 0 - 6 - 21 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,1;20,8; - - - + 0 - 7 - 671 - 2 + 6 + 21 + 9 @@ -2481,35 +2432,38 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid + + $(P)$(R)EnergyLocal + - 1,1;670,1; + 20,8; - + - 298 - 65 - 81 - 22 + 646 + 0 + 22 + 17 - + 0 - 7 - 19 - 1 + 0 + 21 + 9 - 1 + 2 - 0 + 253 0 0 @@ -2519,7 +2473,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - 0 + 253 0 0 @@ -2527,107 +2481,28 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - - 0,0;18,0; + + $(P)$(R)EnergyLocal - - - - - 17 - 0 - 47 - 22 - + + 20,1; - - - QFrame::NoFrame - - - - 0 - 0 - 45 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - remove - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 10 - 45 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - insert - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - + - 60 - 7 - 19 - 1 + 0 + 6 + 21 + 9 - 1 + 2 - 0 + 253 0 0 @@ -2637,7 +2512,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - 0 + 253 0 0 @@ -2645,10 +2520,213 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid + + $(P)$(R)EnergyLocal + - 0,0;18,0; + 20,8; + + + + + + + 0 + 7 + 671 + 2 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + 670,1; + + + + + + + 303 + 253 + 81 + 22 + + + + + + 0 + 7 + 19 + 1 + + + + 1 + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + 18,0; + + + + + + 17 + 0 + 47 + 22 + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + remove + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 0 + 0 + 45 + 10 + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + insert + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 0 + 10 + 45 + 10 + + + + + + + + 60 + 7 + 19 + 1 + + + + 1 + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + 18,0; + caRectangle_0 @@ -2675,29 +2753,28 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLabel_11 caLabel_12 caLabel_13 - caFrame_8 caFrame_7 + caFrame_6 caPolyLine_2 caPolyLine_3 - caFrame_6 + caFrame_5 caPolyLine_4 caPolyLine_5 - caFrame_10 + caFrame_9 caPolyLine_6 caPolyLine_7 - caFrame_11 + caFrame_10 caPolyLine_8 caPolyLine_9 - caFrame_12 + caFrame_11 caPolyLine_10 - caFrame_9 + caFrame_8 caPolyLine_11 caLabel_14 caLabel_15 - caFrame_14 - caPolyLine_12 caFrame_13 - caFrame_5 + caPolyLine_12 + caFrame_12 caChoice_0 caLineEdit_0 caTextEntry_0 diff --git a/opticsApp/op/ui/filter_8_0_more.ui b/opticsApp/op/ui/autoconvert/filter_16_0_more.ui similarity index 70% rename from opticsApp/op/ui/filter_8_0_more.ui rename to opticsApp/op/ui/autoconvert/filter_16_0_more.ui index c83c803..031742f 100644 --- a/opticsApp/op/ui/filter_8_0_more.ui +++ b/opticsApp/op/ui/autoconvert/filter_16_0_more.ui @@ -6,7 +6,7 @@ 300 300 - 510 + 680 400 @@ -15,15 +15,136 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + caGraphics::Rectangle + + + + 5 + 40 + 150 + 21 + + + + + 10 + 0 + 184 + + + + Filled + + + + 10 + 0 + 184 + + + + Solid + + 0 220 - 515 + 680 1 @@ -51,7 +172,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;514,0; + 679,0; @@ -59,12 +180,12 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 5 5 - 500 + 670 25 - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)Description @@ -108,61 +229,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLineEdit::Static - - - - 215 - 225 - 142 - 172 - - - - - 215 - 225 - 140 - 170 - - - - filterbox_more.adl - - - P=$(P),R=$(R),N1=5,N2=6,N3=7,N4=8 - - - - - - 355 - 225 - 142 - 172 - - - - - 355 - 225 - 140 - 170 - - - - filterbox_more.adl - - - P=$(P),R=$(R),N1=1,N2=2,N3=3,N4=4 - - 165 - 220 + 30 1 - 185 + 190 @@ -186,54 +259,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;0,185; - - - - - caGraphics::Rectangle - - - - 10 - 227 - 150 - 21 - - - - - 10 - 0 - 184 - - - - Filled - - - - 10 - 0 - 184 - - - - Solid + 0,190; QFrame::NoFrame - - - 10 - 231 - 150 - 13 - - 255 @@ -252,24 +284,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(R) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 5 + 44 + 150 + 13 + + QFrame::NoFrame - - - 10 - 282 - 118 - 10 - - 0 @@ -285,10 +317,18 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - filter_8_0_more.adl + filter_16_0_more.adl - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 95 + 118 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -298,14 +338,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 10 - 297 - 118 - 10 - - 0 @@ -321,10 +353,18 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - 2013-01-24 (CMS) + 2013-01-31 (CMS) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 110 + 118 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -333,8 +373,8 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - 90 - 257 + 85 + 70 70 18 @@ -375,8 +415,8 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - 10 - 257 + 5 + 70 70 18 @@ -405,7 +445,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} less - filter_8_0_less.adl + filter_16_0_less.adl P=$(P),R=$(R) @@ -414,25 +454,419 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} true - + + + + 40 + 225 + 142 + 172 + + + + + 40 + 225 + 140 + 170 + + + + filterbox_more.adl + + + P=$(P),R=$(R),N1=13,N2=14,N3=15,N4=16 + + + + + + 180 + 225 + 142 + 172 + + + + + 180 + 225 + 140 + 170 + + + + filterbox_more.adl + + + P=$(P),R=$(R),N1=9,N2=10,N3=11,N4=12 + + + + + + 375 + 225 + 142 + 172 + + + + + 375 + 225 + 140 + 170 + + + + filterbox_more.adl + + + P=$(P),R=$(R),N1=5,N2=6,N3=7,N4=8 + + + - 185 + 515 + 225 + 142 + 172 + + + + + 515 + 225 + 140 + 170 + + + + filterbox_more.adl + + + P=$(P),R=$(R),N1=1,N2=2,N3=3,N4=4 + + + + + + 303 + 280 + 81 + 21 + + + + + + 22 + 0 + 37 + 21 + + + + + QFrame::NoFrame + + + + 33 + 108 + 0 + + + + + 33 + 108 + 0 + + + + free + + + ESimpleLabel::WidthAndHeight + + + + 1 + 9 + 21 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 0 + 0 + 37 + 12 + + + + + QFrame::NoFrame + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + lock + + + ESimpleLabel::WidthAndHeight + + + + 0 + 0 + 21 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + / + + + ESimpleLabel::WidthAndHeight + + + + 25 + 0 + 10 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + + 0 + 5 + 19 + 1 + + + + 1 + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + 18,0; + + + + + + 60 + 5 + 19 + 1 + + + + 1 + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + 18,0; + + + + + + + 5 318 - 328 + 673 17 - + + + + 0 + 0 + 22 + 17 + + + + + + 0 + 0 + 21 + 9 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + $(P)$(R)EnergyLocal + + + 20,1; + + + + + + 0 + 6 + 21 + 9 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + $(P)$(R)EnergyLocal + + + 20,8; + + + + - 5 + 330 0 22 17 - + 0 @@ -468,10 +902,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(R)EnergyLocal - 1,8;20,1; + 20,1; - + 0 @@ -507,20 +941,20 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(R)EnergyLocal - 1,1;20,8; + 20,8; - + - 301 + 646 0 22 17 - + 0 @@ -556,10 +990,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(R)EnergyLocal - 1,8;20,1; + 20,1; - + 0 @@ -595,16 +1029,16 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(R)EnergyLocal - 1,1;20,8; + 20,8; - + 0 7 - 326 + 671 2 @@ -632,24 +1066,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;325,1; + 670,1; - + - 175 - 275 - 52 + 303 + 345 + 81 22 - + - 31 - 10 + 0 + 7 19 1 @@ -678,153 +1112,97 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;18,0; + 18,0; - + - 0 + 17 0 - 36 + 47 22 - + QFrame::NoFrame + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + remove + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + 0 - 10 - 20 + 0 + 45 10 + + + + QFrame::NoFrame + - 33 - 108 + 0 + 0 0 - 33 - 108 + 0 + 0 0 - free + insert - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - 0 - 0 - 36 - 12 + 10 + 45 + 10 - - - QFrame::NoFrame - - - - 24 - 0 - 10 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - / - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 0 - 20 - 10 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - lock - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - 163 - 343 - 62 - 22 - - - + - 42 - 9 - 18 + 60 + 7 + 19 1 @@ -852,96 +1230,14 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;17,0; - - - - - - 0 - 0 - 57 - 22 - + 18,0; - - - QFrame::NoFrame - - - - 0 - 0 - 55 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - remove - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 10 - 55 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - insert - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - + - 10 + 175 40 502 177 @@ -949,7 +1245,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - 10 + 175 40 500 175 @@ -962,35 +1258,42 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} P=$(P),R=$(R) + caRectangle_0 caPolyLine_0 - caInclude_0 - caInclude_1 caPolyLine_1 - caRectangle_0 caLabel_0 caLabel_1 caLabel_2 + caInclude_0 + caInclude_1 + caInclude_2 + caInclude_3 + caLabel_3 + caLabel_4 + caLabel_5 + caFrame_6 + caFrame_5 caPolyLine_2 caPolyLine_3 - caFrame_3 + caFrame_4 caPolyLine_4 caPolyLine_5 - caFrame_4 + caFrame_8 caPolyLine_6 - caFrame_2 caPolyLine_7 - caLabel_3 - caLabel_4 - caLabel_5 - caFrame_7 - caFrame_6 - caFrame_5 + caFrame_9 caPolyLine_8 + caPolyLine_9 + caFrame_10 + caPolyLine_10 + caFrame_7 + caPolyLine_11 caLabel_6 caLabel_7 - caFrame_9 - caFrame_8 - caInclude_10 + caFrame_12 + caPolyLine_12 + caFrame_11 + caInclude_13 caLineEdit_0 caRelatedDisplay_0 caRelatedDisplay_1 diff --git a/opticsApp/op/ui/filter_4_4_less.ui b/opticsApp/op/ui/autoconvert/filter_4_4_less.ui similarity index 88% rename from opticsApp/op/ui/filter_4_4_less.ui rename to opticsApp/op/ui/autoconvert/filter_4_4_less.ui index 2a24a61..ca096fb 100644 --- a/opticsApp/op/ui/filter_4_4_less.ui +++ b/opticsApp/op/ui/autoconvert/filter_4_4_less.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -169,7 +257,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)EnergyBeamline @@ -223,7 +311,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)EnergyLocal @@ -268,14 +356,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 11 - 153 - 60 - 15 - - 0 @@ -294,7 +374,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Message: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 11 + 153 + 60 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -310,7 +398,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)Message @@ -364,7 +452,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -403,7 +491,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -436,14 +524,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 405 - 105 - 86 - 15 - - 0 @@ -462,7 +542,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Setpoint: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 405 + 105 + 86 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -478,7 +566,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -523,14 +611,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 10 - 133 - 60 - 15 - - 0 @@ -549,7 +629,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Mask: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 133 + 60 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -559,14 +647,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 10 - 111 - 60 - 15 - - 0 @@ -585,7 +665,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Transm: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 111 + 60 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -601,7 +689,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)FilterMask @@ -655,7 +743,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)Transmission @@ -703,14 +791,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 10 - 89 - 60 - 15 - - 0 @@ -729,7 +809,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Status: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 89 + 60 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -745,7 +833,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)Status @@ -799,7 +887,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)FilterMask @@ -847,14 +935,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 145 - 134 - 10 - 13 - - 0 @@ -873,7 +953,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} = - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 145 + 134 + 10 + 13 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -883,14 +971,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 185 - 40 - 34 - 15 - - 0 @@ -909,7 +989,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} keV - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 185 + 40 + 34 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -919,14 +1007,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 185 - 60 - 34 - 15 - - 0 @@ -945,7 +1025,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} keV - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 185 + 60 + 34 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -970,7 +1058,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1009,7 +1097,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -1048,7 +1136,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -1087,7 +1175,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -1126,7 +1214,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -1165,7 +1253,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -1204,7 +1292,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1243,7 +1331,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1282,7 +1370,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1321,7 +1409,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionStepDown @@ -1360,7 +1448,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionStepUp @@ -1399,7 +1487,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1438,7 +1526,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1477,7 +1565,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1516,7 +1604,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1579,7 +1667,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;514,0; + 514,0; @@ -1640,7 +1728,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)Description @@ -1714,7 +1802,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;0,110; + 0,110; @@ -1754,14 +1842,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 10 - 209 - 115 - 13 - - 255 @@ -1780,11 +1860,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(R) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 10 + 209 + 115 + 13 + + @@ -1874,14 +1962,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 10 - 252 - 118 - 10 - - 0 @@ -1900,7 +1980,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} filter_4_4_less.adl - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 252 + 118 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1910,14 +1998,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 10 - 267 - 118 - 10 - - 0 @@ -1936,7 +2016,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 2013-01-24 (CMS) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 267 + 118 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1946,14 +2034,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 10 - 186 - 115 - 13 - - 255 @@ -1972,11 +2052,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 10 + 186 + 115 + 13 + + @@ -2029,7 +2117,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;18,0; + 18,0; @@ -2045,14 +2133,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 10 - 20 - 10 - - 33 @@ -2071,7 +2151,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} free - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 10 + 20 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2090,14 +2178,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 24 - 0 - 10 - 10 - - 0 @@ -2116,7 +2196,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} / - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 24 + 0 + 10 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2126,14 +2214,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 0 - 20 - 10 - - 253 @@ -2152,7 +2232,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} lock - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 0 + 20 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2203,7 +2291,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;17,0; + 17,0; @@ -2219,14 +2307,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 0 - 55 - 10 - - 0 @@ -2245,24 +2325,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} remove - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 0 - 10 + 0 55 10 + + + + QFrame::NoFrame + 0 @@ -2281,34 +2361,75 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} insert - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 10 + 55 + 10 + + + + + caGraphics::Circle + + + + 328 + 222 + 22 + 22 + + + + 2 + + + + 90 + 90 + 90 + + + + Filled + + + + 90 + 90 + 90 + + + + Solid + + - 148 - 220 - 360 - 28 + 310 + 226 + 18 + 17 - - - caGraphics::Circle - + - 180 - 2 - 22 - 22 + 0 + 0 + 18 + 9 @@ -2316,9 +2437,9 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - 90 - 90 - 90 + 253 + 0 + 0 @@ -2326,198 +2447,77 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - 90 - 90 - 90 + 253 + 0 + 0 Solid - - - - - 162 - 6 - 18 - 17 - + + $(P)$(R)EnergyLocal + + + 17,1; - - - - 0 - 0 - 18 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,8;17,1; - - - - - - 0 - 6 - 18 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,1;17,8; - - - + - 338 + 0 6 18 - 17 + 9 - - - - 0 - 0 - 18 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,8;17,1; - - - - - - 0 - 6 - 18 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,1;17,8; - - + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + $(P)$(R)EnergyLocal + + + 17,8; + - + + + + + 486 + 226 + 18 + 17 + + + - 12 - 13 - 346 - 2 + 0 + 0 + 18 + 9 @@ -2543,20 +2543,20 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid + + $(P)$(R)EnergyLocal + - 1,1;345,1; + 17,1; - - - caGraphics::Rectangle - + 0 - 0 - 15 - 26 + 6 + 18 + 9 @@ -2564,9 +2564,9 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - 90 - 90 - 90 + 253 + 0 + 0 @@ -2574,16 +2574,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - 90 - 90 - 90 + 253 + 0 + 0 Solid + + $(P)$(R)EnergyLocal + + + 17,8; + + + + + 160 + 233 + 346 + 2 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + 345,1; + + + + + caGraphics::Rectangle + + + + 148 + 220 + 15 + 26 + + + + 2 + + + + 90 + 90 + 90 + + + + Filled + + + + 90 + 90 + 90 + + + + Solid + + caRectangle_0 caRectangle_1 caRectangle_2 @@ -2621,13 +2699,12 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caGraphics_0 caPolyLine_4 caPolyLine_5 - caFrame_10 + caFrame_9 caPolyLine_6 caPolyLine_7 - caFrame_11 + caFrame_10 caPolyLine_8 caRectangle_4 - caFrame_9 caChoice_0 caLineEdit_0 caTextEntry_0 diff --git a/opticsApp/op/ui/autoconvert/filter_4_4_more.ui b/opticsApp/op/ui/autoconvert/filter_4_4_more.ui new file mode 100644 index 0000000..b4b681f --- /dev/null +++ b/opticsApp/op/ui/autoconvert/filter_4_4_more.ui @@ -0,0 +1,1232 @@ + + +MainWindow + + + + 300 + 300 + 510 + 400 + + + + + +QWidget#centralWidget {background: rgba(200, 200, 200, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + + 0 + 220 + 515 + 1 + + + + 1 + + + + 70 + 70 + 70 + + + + Filled + + + + 70 + 70 + 70 + + + + Solid + + + 514,0; + + + + + + 5 + 5 + 500 + 25 + + + + caLineEdit::WidthAndHeight + + + $(P)$(R)Description + + + + 255 + 255 + 255 + + + + + 10 + 0 + 184 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + caGraphics::Rectangle + + + + 10 + 250 + 115 + 21 + + + + + 10 + 0 + 184 + + + + Filled + + + + 10 + 0 + 184 + + + + Solid + + + + + + 180 + 225 + 142 + 172 + + + + + 180 + 225 + 140 + 170 + + + + filterbox_more.adl + + + P=$(P),R=$(R),N1=5,N2=6,N3=7,N4=8 + + + + + + 355 + 225 + 142 + 172 + + + + + 355 + 225 + 140 + 170 + + + + filterbox_more.adl + + + P=$(P),R=$(R),N1=1,N2=2,N3=3,N4=4 + + + + + + 130 + 220 + 1 + 180 + + + + + 70 + 70 + 70 + + + + Filled + + + + 70 + 70 + 70 + + + + Solid + + + 0,180; + + + + + caGraphics::Rectangle + + + + 10 + 227 + 115 + 21 + + + + + 10 + 0 + 184 + + + + Filled + + + + 10 + 0 + 184 + + + + Solid + + + + + QFrame::NoFrame + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + $(R) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 10 + 254 + 115 + 13 + + + + + + + 10 + 276 + 50 + 18 + + + + + 255 + 255 + 255 + + + + + 88 + 52 + 15 + + + + -less + + + Menu + + + less + + + filter_4_4_less.adl + + + P=$(P),R=$(R) + + + true + + + + + + 65 + 275 + 60 + 18 + + + + + 255 + 255 + 255 + + + + + 88 + 52 + 15 + + + + -configure + + + Menu + + + configure + + + filter_drive_config.adl + + + P=$(P),R=$(R) + + + false + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + filter_4_4_more.adl + + + ESimpleLabel::WidthAndHeight + + + + 10 + 297 + 118 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + 2013-01-24 (CMS) + + + ESimpleLabel::WidthAndHeight + + + + 10 + 312 + 118 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + $(P) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 10 + 231 + 115 + 13 + + + + + + + 127 + 275 + 64 + 90 + + + + + + 12 + 0 + 52 + 22 + + + + + + 31 + 10 + 19 + 1 + + + + 1 + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + 18,0; + + + + + + 0 + 0 + 36 + 22 + + + + + QFrame::NoFrame + + + + 33 + 108 + 0 + + + + + 33 + 108 + 0 + + + + free + + + ESimpleLabel::WidthAndHeight + + + + 0 + 10 + 20 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 0 + 0 + 36 + 12 + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + / + + + ESimpleLabel::WidthAndHeight + + + + 24 + 0 + 10 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + lock + + + ESimpleLabel::WidthAndHeight + + + + 0 + 0 + 20 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + + + 0 + 68 + 62 + 22 + + + + + + 42 + 9 + 18 + 1 + + + + 1 + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + 17,0; + + + + + + 0 + 0 + 57 + 22 + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + remove + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 0 + 0 + 55 + 10 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + insert + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 0 + 10 + 55 + 10 + + + + + + + + + caGraphics::Circle + + + + 328 + 314 + 22 + 22 + + + + 2 + + + + 90 + 90 + 90 + + + + Filled + + + + 90 + 90 + 90 + + + + Solid + + + + + + 310 + 318 + 18 + 17 + + + + + + 0 + 0 + 18 + 9 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + $(P)$(R)EnergyLocal + + + 17,1; + + + + + + 0 + 6 + 18 + 9 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + $(P)$(R)EnergyLocal + + + 17,8; + + + + + + + 486 + 318 + 18 + 17 + + + + + + 0 + 0 + 18 + 9 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + $(P)$(R)EnergyLocal + + + 17,1; + + + + + + 0 + 6 + 18 + 9 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + $(P)$(R)EnergyLocal + + + 17,8; + + + + + + + 160 + 325 + 346 + 2 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + 345,1; + + + + + caGraphics::Rectangle + + + + 148 + 312 + 15 + 26 + + + + 2 + + + + 90 + 90 + 90 + + + + Filled + + + + 90 + 90 + 90 + + + + Solid + + + + + + 10 + 40 + 502 + 177 + + + + + 10 + 40 + 500 + 175 + + + + filter_drive_more.adl + + + P=$(P),R=$(R) + + + caPolyLine_0 + caRectangle_0 + caInclude_0 + caInclude_1 + caPolyLine_1 + caRectangle_1 + caLabel_0 + caLabel_1 + caLabel_2 + caLabel_3 + caPolyLine_2 + caLabel_4 + caLabel_5 + caLabel_6 + caFrame_5 + caFrame_4 + caFrame_3 + caPolyLine_3 + caLabel_7 + caLabel_8 + caFrame_7 + caFrame_6 + caFrame_2 + caGraphics_0 + caPolyLine_4 + caPolyLine_5 + caFrame_8 + caPolyLine_6 + caPolyLine_7 + caFrame_9 + caPolyLine_8 + caRectangle_2 + caInclude_10 + caLineEdit_0 + caRelatedDisplay_0 + caRelatedDisplay_1 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/filter_8_0_less.ui b/opticsApp/op/ui/autoconvert/filter_8_0_less.ui similarity index 81% rename from opticsApp/op/ui/filter_8_0_less.ui rename to opticsApp/op/ui/autoconvert/filter_8_0_less.ui index a484c3e..aaa31a3 100644 --- a/opticsApp/op/ui/filter_8_0_less.ui +++ b/opticsApp/op/ui/autoconvert/filter_8_0_less.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -136,7 +224,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)EnergyBeamline @@ -190,7 +278,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)EnergyLocal @@ -235,14 +323,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 11 - 153 - 60 - 15 - - 0 @@ -261,7 +341,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Message: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 11 + 153 + 60 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -277,7 +365,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)Message @@ -331,7 +419,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -370,7 +458,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -403,14 +491,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 405 - 105 - 86 - 15 - - 0 @@ -429,7 +509,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Setpoint: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 405 + 105 + 86 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -445,7 +533,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -490,14 +578,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 10 - 133 - 60 - 15 - - 0 @@ -516,7 +596,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Mask: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 133 + 60 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -526,14 +614,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 10 - 111 - 60 - 15 - - 0 @@ -552,7 +632,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Transm: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 111 + 60 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -568,7 +656,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)FilterMask @@ -622,7 +710,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)Transmission @@ -670,14 +758,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 10 - 89 - 60 - 15 - - 0 @@ -696,7 +776,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Status: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 89 + 60 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -712,7 +800,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)Status @@ -766,7 +854,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)FilterMask @@ -814,14 +902,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 145 - 134 - 10 - 13 - - 0 @@ -840,7 +920,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} = - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 145 + 134 + 10 + 13 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -850,14 +938,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 185 - 40 - 34 - 15 - - 0 @@ -876,7 +956,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} keV - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 185 + 40 + 34 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -886,14 +974,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 185 - 60 - 34 - 15 - - 0 @@ -912,7 +992,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} keV - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 185 + 60 + 34 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -937,7 +1025,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -976,7 +1064,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -1015,7 +1103,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -1054,7 +1142,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -1093,7 +1181,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -1132,7 +1220,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -1171,7 +1259,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1210,7 +1298,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1249,7 +1337,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1288,7 +1376,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionStepDown @@ -1327,7 +1415,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionStepUp @@ -1366,7 +1454,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1405,7 +1493,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1444,7 +1532,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1483,7 +1571,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1546,7 +1634,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;514,0; + 514,0; @@ -1607,7 +1695,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)Description @@ -1681,7 +1769,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;0,110; + 0,110; @@ -1721,14 +1809,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 10 - 186 - 150 - 13 - - 255 @@ -1747,24 +1827,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(R) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 10 - 237 - 118 - 10 + 186 + 150 + 13 + + + + QFrame::NoFrame + 0 @@ -1783,7 +1863,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} filter_8_0_less.adl - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 237 + 118 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1793,14 +1881,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 10 - 252 - 118 - 10 - - 0 @@ -1819,7 +1899,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 2013-01-24 (CMS) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 252 + 118 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1912,55 +2000,91 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - 163 + 175 183 - 350 - 90 + 52 + 22 + + + + 31 + 10 + 19 + 1 + + + + 1 + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + 18,0; + + - 12 + 0 0 - 52 + 36 22 - - - - 31 - 10 - 19 - 1 - - - - 1 + + + QFrame::NoFrame - 0 - 0 + 33 + 108 0 - - Filled - - - - 0 - 0 + + + 33 + 108 0 - - Solid + + free - - 0,0;18,0; + + ESimpleLabel::WidthAndHeight + + + + 0 + 10 + 20 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1969,158 +2093,48 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 0 0 36 - 22 + 12 - + QFrame::NoFrame - - - 0 - 10 - 20 - 10 - - - 33 - 108 + 0 + 0 0 - 33 - 108 + 0 + 0 0 - free + / - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + ESimpleLabel::WidthAndHeight - - - 0 + 24 0 - 36 - 12 + 10 + 10 - - - QFrame::NoFrame - - - - 24 - 0 - 10 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - / - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 0 - 20 - 10 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - lock - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - - - 22 - 43 - 328 - 17 - - - - - - 5 - 0 - 22 - 17 - - - - - - 0 - 0 - 21 - 9 - + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - 2 + + + + QFrame::NoFrame @@ -2129,161 +2143,98 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 0 - - Filled - - - + + 253 0 0 - - Solid - - - $(P)$(R)EnergyLocal + + lock - - 1,8;20,1; + + ESimpleLabel::WidthAndHeight - - 0 - 6 - 21 - 9 + 0 + 20 + 10 - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,1;20,8; + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + + + + + + 185 + 226 + 328 + 17 + + + + + + 5 + 0 + 22 + 17 + + + - 301 + 0 0 - 22 - 17 + 21 + 9 - - - - 0 - 0 - 21 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,8;20,1; - - - - - - 0 - 6 - 21 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,1;20,8; - - + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + $(P)$(R)EnergyLocal + + + 20,1; + - + 0 - 7 - 326 - 2 + 6 + 21 + 9 @@ -2309,35 +2260,38 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid + + $(P)$(R)EnergyLocal + - 1,1;325,1; + 20,8; - + - 0 - 68 - 62 - 22 + 301 + 0 + 22 + 17 - + - 42 - 9 - 18 - 1 + 0 + 0 + 21 + 9 - 1 + 2 - 0 + 253 0 0 @@ -2347,7 +2301,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - 0 + 253 0 0 @@ -2355,91 +2309,215 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid + + $(P)$(R)EnergyLocal + - 0,0;17,0; + 20,1; - + + + + 0 + 6 + 21 + 9 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + $(P)$(R)EnergyLocal + + + 20,8; + + + + + + + 0 + 7 + 326 + 2 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + 325,1; + + + + + + + 163 + 251 + 62 + 22 + + + + + + 42 + 9 + 18 + 1 + + + + 1 + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + 17,0; + + + + + + 0 + 0 + 57 + 22 + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + remove + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + 0 0 - 57 - 22 + 55 + 10 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + insert + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 0 + 10 + 55 + 10 - - - QFrame::NoFrame - - - - 0 - 0 - 55 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - remove - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 10 - 55 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - insert - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - @@ -2466,23 +2544,22 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLabel_11 caLabel_12 caLabel_13 - caFrame_6 caFrame_5 caFrame_4 + caFrame_3 caPolyLine_3 caPolyLine_4 - caFrame_8 + caFrame_7 caPolyLine_5 caPolyLine_6 - caFrame_9 + caFrame_8 caPolyLine_7 - caFrame_7 + caFrame_6 caPolyLine_8 caLabel_14 caLabel_15 - caFrame_11 caFrame_10 - caFrame_3 + caFrame_9 caChoice_0 caLineEdit_0 caTextEntry_0 diff --git a/opticsApp/op/ui/autoconvert/filter_8_0_more.ui b/opticsApp/op/ui/autoconvert/filter_8_0_more.ui new file mode 100644 index 0000000..345bb4f --- /dev/null +++ b/opticsApp/op/ui/autoconvert/filter_8_0_more.ui @@ -0,0 +1,999 @@ + + +MainWindow + + + + 300 + 300 + 510 + 400 + + + + + +QWidget#centralWidget {background: rgba(200, 200, 200, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + + 0 + 220 + 515 + 1 + + + + 1 + + + + 70 + 70 + 70 + + + + Filled + + + + 70 + 70 + 70 + + + + Solid + + + 514,0; + + + + + + 5 + 5 + 500 + 25 + + + + caLineEdit::WidthAndHeight + + + $(P)$(R)Description + + + + 255 + 255 + 255 + + + + + 10 + 0 + 184 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 215 + 225 + 142 + 172 + + + + + 215 + 225 + 140 + 170 + + + + filterbox_more.adl + + + P=$(P),R=$(R),N1=5,N2=6,N3=7,N4=8 + + + + + + 355 + 225 + 142 + 172 + + + + + 355 + 225 + 140 + 170 + + + + filterbox_more.adl + + + P=$(P),R=$(R),N1=1,N2=2,N3=3,N4=4 + + + + + + 165 + 220 + 1 + 185 + + + + + 70 + 70 + 70 + + + + Filled + + + + 70 + 70 + 70 + + + + Solid + + + 0,185; + + + + + caGraphics::Rectangle + + + + 10 + 227 + 150 + 21 + + + + + 10 + 0 + 184 + + + + Filled + + + + 10 + 0 + 184 + + + + Solid + + + + + QFrame::NoFrame + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + $(P)$(R) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 10 + 231 + 150 + 13 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + filter_8_0_more.adl + + + ESimpleLabel::WidthAndHeight + + + + 10 + 282 + 118 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + 2013-01-24 (CMS) + + + ESimpleLabel::WidthAndHeight + + + + 10 + 297 + 118 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 90 + 257 + 70 + 18 + + + + + 255 + 255 + 255 + + + + + 88 + 52 + 15 + + + + -configure + + + Menu + + + configure + + + filter_drive_config.adl + + + P=$(P),R=$(R) + + + false + + + + + + 10 + 257 + 70 + 18 + + + + + 255 + 255 + 255 + + + + + 88 + 52 + 15 + + + + -less + + + Menu + + + less + + + filter_8_0_less.adl + + + P=$(P),R=$(R) + + + true + + + + + + 190 + 318 + 21 + 9 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + $(P)$(R)EnergyLocal + + + 20,1; + + + + + + 190 + 324 + 21 + 9 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + $(P)$(R)EnergyLocal + + + 20,8; + + + + + + 486 + 318 + 21 + 9 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + $(P)$(R)EnergyLocal + + + 20,1; + + + + + + 486 + 324 + 21 + 9 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + $(P)$(R)EnergyLocal + + + 20,8; + + + + + + 185 + 325 + 326 + 2 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + 325,1; + + + + + + 206 + 285 + 19 + 1 + + + + 1 + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + 18,0; + + + + + QFrame::NoFrame + + + + 33 + 108 + 0 + + + + + 33 + 108 + 0 + + + + free + + + ESimpleLabel::WidthAndHeight + + + + 175 + 285 + 20 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + / + + + ESimpleLabel::WidthAndHeight + + + + 199 + 275 + 10 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + lock + + + ESimpleLabel::WidthAndHeight + + + + 175 + 275 + 20 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 205 + 352 + 18 + 1 + + + + 1 + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + 17,0; + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + remove + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 163 + 343 + 55 + 10 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + insert + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 163 + 353 + 55 + 10 + + + + + + + 10 + 40 + 502 + 177 + + + + + 10 + 40 + 500 + 175 + + + + filter_drive_more.adl + + + P=$(P),R=$(R) + + + caPolyLine_0 + caInclude_0 + caInclude_1 + caPolyLine_1 + caRectangle_0 + caLabel_0 + caLabel_1 + caLabel_2 + caPolyLine_2 + caPolyLine_3 + caPolyLine_4 + caPolyLine_5 + caPolyLine_6 + caPolyLine_7 + caLabel_3 + caLabel_4 + caLabel_5 + caPolyLine_8 + caLabel_6 + caLabel_7 + caInclude_2 + caLineEdit_0 + caRelatedDisplay_0 + caRelatedDisplay_1 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/filter_8_8_less.ui b/opticsApp/op/ui/autoconvert/filter_8_8_less.ui similarity index 74% rename from opticsApp/op/ui/filter_8_8_less.ui rename to opticsApp/op/ui/autoconvert/filter_8_8_less.ui index 788ef34..0704239 100644 --- a/opticsApp/op/ui/filter_8_8_less.ui +++ b/opticsApp/op/ui/autoconvert/filter_8_8_less.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -169,7 +257,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)EnergyBeamline @@ -223,7 +311,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)EnergyLocal @@ -268,14 +356,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 176 - 153 - 60 - 15 - - 0 @@ -294,7 +374,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Message: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 176 + 153 + 60 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -310,7 +398,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)Message @@ -364,7 +452,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -403,7 +491,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -436,14 +524,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 570 - 105 - 86 - 15 - - 0 @@ -462,7 +542,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Setpoint: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 570 + 105 + 86 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -478,7 +566,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -523,14 +611,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 175 - 133 - 60 - 15 - - 0 @@ -549,7 +629,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Mask: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 175 + 133 + 60 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -559,14 +647,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 175 - 111 - 60 - 15 - - 0 @@ -585,7 +665,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Transm: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 175 + 111 + 60 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -601,7 +689,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)FilterMask @@ -655,7 +743,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)Transmission @@ -703,14 +791,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 175 - 89 - 60 - 15 - - 0 @@ -729,7 +809,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Status: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 175 + 89 + 60 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -745,7 +833,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)Status @@ -799,7 +887,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)FilterMask @@ -847,14 +935,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 310 - 134 - 10 - 13 - - 0 @@ -873,7 +953,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} = - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 310 + 134 + 10 + 13 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -883,14 +971,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 350 - 40 - 34 - 15 - - 0 @@ -909,7 +989,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} keV - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 350 + 40 + 34 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -919,14 +1007,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 350 - 60 - 34 - 15 - - 0 @@ -945,7 +1025,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} keV - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 350 + 60 + 34 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -970,7 +1058,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1009,7 +1097,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -1048,7 +1136,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -1087,7 +1175,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -1126,7 +1214,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -1165,7 +1253,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -1204,7 +1292,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1243,7 +1331,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1282,7 +1370,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1321,7 +1409,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionStepDown @@ -1360,7 +1448,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionStepUp @@ -1399,7 +1487,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1438,7 +1526,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1477,7 +1565,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1516,7 +1604,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionFactor @@ -1579,7 +1667,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;679,0; + 679,0; @@ -1688,7 +1776,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)Description @@ -1762,21 +1850,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;0,145; + 0,145; QFrame::NoFrame - - - 5 - 44 - 150 - 13 - - 255 @@ -1795,24 +1875,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(R) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 5 - 95 - 118 - 10 + 44 + 150 + 13 + + + + QFrame::NoFrame + 0 @@ -1831,7 +1911,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} filter_8_8_less.adl - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 95 + 118 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1841,14 +1929,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 110 - 118 - 10 - - 0 @@ -1867,7 +1947,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 2013-01-09 (CMS) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 110 + 118 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1957,596 +2045,378 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} true - + + + caGraphics::Circle + + + + 330 + 216 + 30 + 30 + + + + + 70 + 70 + 70 + + + + Filled + + + + 70 + 70 + 70 + + + + Solid + + + 5 - 186 - 673 - 87 + 231 + 671 + 2 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + 670,1; + + + + + + 651 + 224 + 22 + 17 - + 0 - 30 - 673 - 32 + 0 + 21 + 9 - - - caGraphics::Circle - - - - 325 - 0 - 30 - 30 - - - - - 70 - 70 - 70 - - - - Filled - - - - 70 - 70 - 70 - - - - Solid - - - - - - 0 - 15 - 671 - 2 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - 1,1;670,1; - - - - - - 646 - 8 - 22 - 17 - - - - - - 0 - 0 - 21 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,8;20,1; - - - - - - 0 - 6 - 21 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,1;20,8; - - - - - - - 300 - 8 - 22 - 17 - - - - - - 0 - 0 - 21 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,8;20,1; - - - - - - 0 - 6 - 21 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,1;20,8; - - - - - - caGraphics::Rectangle - - - - 0 - 3 - 20 - 25 - - - - - 70 - 70 - 70 - - - - Filled - - - - 70 - 70 - 70 - - - - Solid - - + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + $(P)$(R)EnergyLocal + + + 20,1; + - + - 285 + 0 + 6 + 21 + 9 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + $(P)$(R)EnergyLocal + + + 20,8; + + + + + + + 305 + 224 + 22 + 17 + + + + + + 0 0 - 98 - 12 + 21 + 9 - - - - 0 - 5 - 20 - 1 - - - - 1 - - - - 0 - 0 - 0 - - - - Filled - - - - 0 - 0 - 0 - - - - Solid - - - 0,0;19,0; - - - - - - 22 - 0 - 51 - 12 - - - - - QFrame::NoFrame - - - - 0 - 0 - 20 - 10 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - lock - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 24 - 0 - 10 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - / - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 29 - 0 - 20 - 10 - - - - - 33 - 108 - 0 - - - - - 33 - 108 - 0 - - - - free - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - 77 - 5 - 19 - 1 - - - - 1 - - - - 0 - 0 - 0 - - - - Filled - - - - 0 - 0 - 0 - - - - Solid - - - 0,0;18,0; - - + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + $(P)$(R)EnergyLocal + + + 20,1; + - + - 288 - 65 - 91 - 22 + 0 + 6 + 21 + 9 - - - - 65 - 7 - 24 - 1 - - - - 1 + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + $(P)$(R)EnergyLocal + + + 20,8; + + + + + + caGraphics::Rectangle + + + + 5 + 219 + 20 + 25 + + + + + 70 + 70 + 70 + + + + Filled + + + + 70 + 70 + 70 + + + + Solid + + + + + + 290 + 186 + 98 + 12 + + + + + + 0 + 5 + 20 + 1 + + + + 1 + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + 19,0; + + + + + + 22 + 0 + 51 + 12 + + + + + QFrame::NoFrame - 0 + 253 0 0 - - Filled - - - - 0 + + + 253 0 0 - - Solid + + lock - - 0,0;23,0; + + ESimpleLabel::WidthAndHeight - - 0 - 7 - 24 - 1 + 0 + 20 + 10 - - 1 - - - - 0 - 0 - 0 - - - - Filled - - - - 0 - 0 - 0 - - - - Solid - - - 0,0;23,0; + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + QFrame::NoFrame - - - 18 - 10 - 55 - 10 - - 0 @@ -2562,52 +2432,250 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - insert + / - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame + ESimpleLabel::WidthAndHeight - 18 + 24 0 - 55 + 10 10 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + - 0 - 0 + 33 + 108 0 - 0 - 0 + 33 + 108 0 - remove + free - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 29 + 0 + 20 + 10 + - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + 77 + 5 + 19 + 1 + + + + 1 + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + 18,0; + + + + + + + 293 + 251 + 91 + 22 + + + + + + 65 + 7 + 24 + 1 + + + + 1 + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + 23,0; + + + + + + 0 + 7 + 24 + 1 + + + + 1 + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + 23,0; + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + insert + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 18 + 10 + 55 + 10 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + remove + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 18 + 0 + 55 + 10 + + + caRectangle_0 caRectangle_1 @@ -2634,25 +2702,23 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caPolyLine_2 caPolyLine_3 caPolyLine_4 - caFrame_7 + caFrame_5 caPolyLine_5 caPolyLine_6 - caFrame_8 - caRectangle_3 caFrame_6 + caRectangle_3 caPolyLine_7 caLabel_11 caLabel_12 caLabel_13 - caFrame_10 + caFrame_8 caPolyLine_8 - caFrame_9 + caFrame_7 caPolyLine_9 caPolyLine_10 caLabel_14 caLabel_15 - caFrame_11 - caFrame_5 + caFrame_9 caChoice_0 caLineEdit_0 caTextEntry_0 diff --git a/opticsApp/op/ui/filter_8_8_more.ui b/opticsApp/op/ui/autoconvert/filter_8_8_more.ui similarity index 77% rename from opticsApp/op/ui/filter_8_8_more.ui rename to opticsApp/op/ui/autoconvert/filter_8_8_more.ui index a60befb..649f9a7 100644 --- a/opticsApp/op/ui/filter_8_8_more.ui +++ b/opticsApp/op/ui/autoconvert/filter_8_8_more.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -61,7 +149,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)Description @@ -135,21 +223,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;0,190; + 0,190; QFrame::NoFrame - - - 5 - 44 - 150 - 13 - - 255 @@ -168,24 +248,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(R) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 5 - 95 - 118 - 10 + 44 + 150 + 13 + + + + QFrame::NoFrame + 0 @@ -204,7 +284,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} filter_8_8_more.adl - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 95 + 118 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -214,14 +302,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 110 - 118 - 10 - - 0 @@ -240,7 +320,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 2013-01-31 (CMS) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 110 + 118 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -468,7 +556,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;23,0; + 23,0; @@ -504,21 +592,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;23,0; + 23,0; QFrame::NoFrame - - - 18 - 10 - 55 - 10 - - 0 @@ -537,24 +617,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} insert - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 18 - 0 + 10 55 10 + + + + QFrame::NoFrame + 0 @@ -573,11 +653,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} remove - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 18 + 0 + 55 + 10 + + @@ -622,7 +710,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;19,0; + 19,0; @@ -638,14 +726,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 0 - 20 - 10 - - 253 @@ -664,7 +744,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} lock - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 0 + 20 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -674,14 +762,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 24 - 0 - 10 - 10 - - 0 @@ -700,7 +780,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} / - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 24 + 0 + 10 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -710,14 +798,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 29 - 0 - 20 - 10 - - 33 @@ -736,7 +816,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} free - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 29 + 0 + 20 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -776,36 +864,105 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;18,0; + 18,0; - + + + caGraphics::Circle + - 5 + 330 310 - 673 - 32 + 30 + 30 - - - caGraphics::Circle - + + + 70 + 70 + 70 + + + + Filled + + + + 70 + 70 + 70 + + + + Solid + + + + + + 5 + 325 + 671 + 2 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + 670,1; + + + + + + 651 + 318 + 22 + 17 + + + - 325 + 0 0 - 30 - 30 + 21 + 9 + + 2 + - 70 - 70 - 70 + 253 + 0 + 0 @@ -813,22 +970,28 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - 70 - 70 - 70 + 253 + 0 + 0 Solid + + $(P)$(R)EnergyLocal + + + 20,1; + - + 0 - 15 - 671 - 2 + 6 + 21 + 9 @@ -854,203 +1017,79 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid + + $(P)$(R)EnergyLocal + - 1,1;670,1; + 20,8; - + + + + + 305 + 318 + 22 + 17 + + + - 646 - 8 - 22 - 17 + 0 + 0 + 21 + 9 - - - - 0 - 0 - 21 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,8;20,1; - - - - - - 0 - 6 - 21 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,1;20,8; - - - - - - - 300 - 8 - 22 - 17 - + + 2 - - - - 0 - 0 - 21 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,8;20,1; - - - - - - 0 - 6 - 21 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,1;20,8; - - - - - - caGraphics::Rectangle + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + $(P)$(R)EnergyLocal + + + 20,1; + + 0 - 3 - 20 - 25 + 6 + 21 + 9 + + 2 + - 70 - 70 - 70 + 253 + 0 + 0 @@ -1058,16 +1097,55 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - 70 - 70 - 70 + 253 + 0 + 0 Solid + + $(P)$(R)EnergyLocal + + + 20,8; + + + + caGraphics::Rectangle + + + + 5 + 313 + 20 + 25 + + + + + 70 + 70 + 70 + + + + Filled + + + + 70 + 70 + 70 + + + + Solid + + @@ -1101,10 +1179,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;679,0; + 679,0; - + 175 @@ -1153,14 +1231,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caPolyLine_5 caPolyLine_6 caPolyLine_7 - caFrame_8 + caFrame_7 caPolyLine_8 caPolyLine_9 - caFrame_9 + caFrame_8 caRectangle_1 - caFrame_7 caPolyLine_10 - caInclude_10 + caInclude_9 caLineEdit_0 caRelatedDisplay_0 caRelatedDisplay_1 diff --git a/opticsApp/op/ui/filter_blade.ui b/opticsApp/op/ui/autoconvert/filter_blade.ui similarity index 70% rename from opticsApp/op/ui/filter_blade.ui rename to opticsApp/op/ui/autoconvert/filter_blade.ui index f477fe2..f6b0376 100644 --- a/opticsApp/op/ui/filter_blade.ui +++ b/opticsApp/op/ui/autoconvert/filter_blade.ui @@ -6,7 +6,7 @@ 990 150 - 26 + 72 88 @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -37,7 +125,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)Fi$(N):Lock @@ -77,14 +165,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 3 - 16 - 20 - 10 - - 0 @@ -103,11 +183,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(N) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 3 + 16 + 20 + 10 + + @@ -187,61 +275,51 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 16 - + 0 0 - 16 - 16 + 14 + 14 - - - - 0 - 0 - 14 - 14 - - - - EPushButton::Height - - - $(P)$(R)Fi$(N):Lock - - - - 0 - 0 - 0 - - - - - 0 - 216 - 0 - - - - F - - - 1 - - - caMessageButton::Static - - - - caFrame::IfZero + + EPushButton::WidthAndHeight $(P)$(R)Fi$(N):Lock + + + 0 + 0 + 0 + + + + + 0 + 216 + 0 + + + + F + + + 1 + + + caMessageButton::Static + + + caFrame::IfZero + + + $(P)$(R)Fi$(N):Lock + @@ -285,7 +363,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caFrame_0 caLabel_0 caRectangle_0 - caFrame_2 caFrame_1 caRectangle_1 caMessageButton_0 diff --git a/opticsApp/op/ui/filter_drive.ui b/opticsApp/op/ui/autoconvert/filter_drive.ui similarity index 57% rename from opticsApp/op/ui/filter_drive.ui rename to opticsApp/op/ui/autoconvert/filter_drive.ui index 7890ea9..e9c40a0 100644 --- a/opticsApp/op/ui/filter_drive.ui +++ b/opticsApp/op/ui/autoconvert/filter_drive.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -136,7 +224,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)EnergyBeamline @@ -190,7 +278,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)EnergyLocal @@ -235,14 +323,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 6 - 113 - 60 - 15 - - 0 @@ -261,7 +341,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Message - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 6 + 113 + 60 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -277,7 +365,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)Message @@ -331,7 +419,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -370,7 +458,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -403,14 +491,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 400 - 65 - 86 - 15 - - 0 @@ -429,7 +509,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Setpoint - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 400 + 65 + 86 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -445,7 +533,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -490,14 +578,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 93 - 60 - 15 - - 0 @@ -516,7 +596,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Mask - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 93 + 60 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -526,14 +614,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 71 - 60 - 15 - - 0 @@ -552,7 +632,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Transm - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 71 + 60 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -568,7 +656,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)FilterMask @@ -622,7 +710,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)Transmission @@ -670,14 +758,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 49 - 60 - 15 - - 0 @@ -696,7 +776,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Status - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 49 + 60 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -712,7 +800,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)Status @@ -766,7 +854,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)FilterMask @@ -814,14 +902,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 140 - 94 - 10 - 13 - - 0 @@ -840,7 +920,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} = - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 140 + 94 + 10 + 13 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -850,14 +938,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 180 - 0 - 34 - 15 - - 0 @@ -876,7 +956,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} keV - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 180 + 0 + 34 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -886,6 +974,26 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + keV + + + ESimpleLabel::WidthAndHeight + 180 @@ -894,6 +1002,25 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 15 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 230 + 0 + 45 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(R)TransmissionFactor + 0 @@ -902,616 +1029,567 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - + + 115 + 223 + 255 + + + + /1000 + + + 0.001 + + + caMessageButton::Static + + + + + + 340 + 0 + 45 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(R)TransmissionSetpoint + + + 0 0 0 - - keV + + + 115 + 223 + 255 + + + + 1e-2 + + + 1.0e-2 + + + caMessageButton::Static + + + + + + 340 + 22 + 45 + 20 + - ESimpleLabel::Height + EPushButton::WidthAndHeight - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + $(P)$(R)TransmissionSetpoint + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 1e-4 + + + 1.0e-4 + + + caMessageButton::Static - + - 230 - 0 - 157 - 110 + 340 + 44 + 45 + 20 - - - - 0 - 0 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionFactor - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - /1000 - - - 0.001 - - - caMessageButton::Static - - - - - - 110 - 0 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionSetpoint - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 1e-2 - - - 1.0e-2 - - - caMessageButton::Static - - - - - - 110 - 22 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionSetpoint - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 1e-4 - - - 1.0e-4 - - - caMessageButton::Static - - - - - - 110 - 44 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionSetpoint - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 1e-6 - - - 1.0e-6 - - - caMessageButton::Static - - - - - - 110 - 66 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionSetpoint - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 1e-8 - - - 1.0e-8 - - - caMessageButton::Static - - - - - - 110 - 88 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionSetpoint - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 1e-10 - - - 1.0e-10 - - - caMessageButton::Static - - - - - - 0 - 22 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionFactor - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - /10 - - - 0.1 - - - caMessageButton::Static - - - - - - 0 - 44 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionFactor - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - /2 - - - .5 - - - caMessageButton::Static - - - - - - 0 - 66 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionFactor - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - -10% - - - 0.9 - - - caMessageButton::Static - - - - - - 0 - 88 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionStepDown - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - - - - - 1 - - - caMessageButton::Static - - - - - - 50 - 88 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionStepUp - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - + - - - 1 - - - caMessageButton::Static - - - - - - 50 - 0 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionFactor - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - *1000 - - - 1000 - - - caMessageButton::Static - - - - - - 50 - 22 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionFactor - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - *10 - - - 10 - - - caMessageButton::Static - - - - - - 50 - 44 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionFactor - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - *2 - - - 2 - - - caMessageButton::Static - - - - - - 50 - 66 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionFactor - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - +10% - - - 1.1 - - - caMessageButton::Static - - + + EPushButton::WidthAndHeight + + + $(P)$(R)TransmissionSetpoint + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 1e-6 + + + 1.0e-6 + + + caMessageButton::Static + + + + + + 340 + 66 + 45 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(R)TransmissionSetpoint + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 1e-8 + + + 1.0e-8 + + + caMessageButton::Static + + + + + + 340 + 88 + 45 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(R)TransmissionSetpoint + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 1e-10 + + + 1.0e-10 + + + caMessageButton::Static + + + + + + 230 + 22 + 45 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(R)TransmissionFactor + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + /10 + + + 0.1 + + + caMessageButton::Static + + + + + + 230 + 44 + 45 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(R)TransmissionFactor + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + /2 + + + .5 + + + caMessageButton::Static + + + + + + 230 + 66 + 45 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(R)TransmissionFactor + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + -10% + + + 0.9 + + + caMessageButton::Static + + + + + + 230 + 88 + 45 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(R)TransmissionStepDown + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + caMessageButton::Static + + + + + + 280 + 88 + 45 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(R)TransmissionStepUp + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + caMessageButton::Static + + + + + + 280 + 0 + 45 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(R)TransmissionFactor + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + *1000 + + + 1000 + + + caMessageButton::Static + + + + + + 280 + 22 + 45 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(R)TransmissionFactor + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + *10 + + + 10 + + + caMessageButton::Static + + + + + + 280 + 44 + 45 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(R)TransmissionFactor + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + *2 + + + 2 + + + caMessageButton::Static + + + + + + 280 + 66 + 45 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(R)TransmissionFactor + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + +10% + + + 1.1 + + + caMessageButton::Static + caRectangle_0 caRectangle_1 @@ -1523,7 +1601,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLabel_5 caLabel_6 caLabel_7 - caFrame_0 caChoice_0 caLineEdit_0 caTextEntry_0 diff --git a/opticsApp/op/ui/filter_drive_config.ui b/opticsApp/op/ui/autoconvert/filter_drive_config.ui similarity index 78% rename from opticsApp/op/ui/filter_drive_config.ui rename to opticsApp/op/ui/autoconvert/filter_drive_config.ui index dd30596..a334897 100644 --- a/opticsApp/op/ui/filter_drive_config.ui +++ b/opticsApp/op/ui/autoconvert/filter_drive_config.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -22,14 +110,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 5 - 33 - 220 - 15 - - 0 @@ -48,7 +128,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Actuator wait time [s]: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 33 + 220 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -58,14 +146,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 5 - 58 - 220 - 15 - - 0 @@ -84,7 +164,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Debug level: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 58 + 220 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -100,7 +188,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)WaitTime @@ -151,7 +239,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)Debug @@ -202,7 +290,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)Description diff --git a/opticsApp/op/ui/filter_drive_more.ui b/opticsApp/op/ui/autoconvert/filter_drive_more.ui similarity index 65% rename from opticsApp/op/ui/filter_drive_more.ui rename to opticsApp/op/ui/autoconvert/filter_drive_more.ui index a05644e..4dea55e 100644 --- a/opticsApp/op/ui/filter_drive_more.ui +++ b/opticsApp/op/ui/autoconvert/filter_drive_more.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -136,7 +224,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)EnergyBeamline @@ -190,7 +278,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)EnergyLocal @@ -241,7 +329,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -280,7 +368,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -313,6 +401,26 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Status + + + ESimpleLabel::WidthAndHeight + 5 @@ -321,6 +429,68 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 15 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 75 + 46 + 140 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(R)Status + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Alarm_Static + + + + + QFrame::NoFrame + 0 @@ -336,81 +506,581 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - Status + keV + + + ESimpleLabel::WidthAndHeight + + + + 180 + 0 + 34 + 15 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + keV + + + ESimpleLabel::WidthAndHeight + + + + 180 + 20 + 34 + 15 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 230 + 0 + 45 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(R)TransmissionFactor + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + /1000 + + + 0.001 + + + caMessageButton::Static + + + + + + 340 + 0 + 45 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(R)TransmissionSetpoint + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 1e-2 + + + 1.0e-2 + + + caMessageButton::Static + + + + + + 340 + 22 + 45 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(R)TransmissionSetpoint + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 1e-4 + + + 1.0e-4 + + + caMessageButton::Static + + + + + + 340 + 44 + 45 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(R)TransmissionSetpoint + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 1e-6 + + + 1.0e-6 + + + caMessageButton::Static + + + + + + 340 + 66 + 45 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(R)TransmissionSetpoint + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 1e-8 + + + 1.0e-8 + + + caMessageButton::Static + + + + + + 340 + 88 + 45 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(R)TransmissionSetpoint + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 1e-10 + + + 1.0e-10 + + + caMessageButton::Static + + + + + + 230 + 22 + 45 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(R)TransmissionFactor + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + /10 + + + 0.1 + + + caMessageButton::Static + + + + + + 230 + 44 + 45 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(R)TransmissionFactor + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + /2 + + + .5 + + + caMessageButton::Static + + + + + + 230 + 66 + 45 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(R)TransmissionFactor + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + -10% + + + 0.9 + + + caMessageButton::Static + + + + + + 230 + 88 + 45 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(R)TransmissionStepDown + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + caMessageButton::Static + + + + + + 280 + 88 + 45 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(R)TransmissionStepUp + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + caMessageButton::Static + + + + + + 280 + 0 + 45 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(R)TransmissionFactor + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + *1000 - - ESimpleLabel::Height + + 1000 - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + caMessageButton::Static - + - 75 - 46 - 140 + 280 + 22 + 45 20 - caLineEdit::Height + EPushButton::WidthAndHeight - $(P)$(R)Status + $(P)$(R)TransmissionFactor - 10 + 0 0 - 184 + 0 - 200 - 200 - 200 + 115 + 223 + 255 - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + *10 - - string + + 10 - caLineEdit::Alarm_Static + caMessageButton::Static - - - QFrame::NoFrame - + - 180 - 0 - 34 - 15 + 280 + 44 + 45 + 20 + + EPushButton::WidthAndHeight + + + $(P)$(R)TransmissionFactor + 0 @@ -419,34 +1089,37 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - - 0 - 0 - 0 + + 115 + 223 + 255 - - keV + + *2 - - ESimpleLabel::Height + + 2 - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + caMessageButton::Static - - - QFrame::NoFrame - + - 180 - 20 - 34 - 15 + 280 + 66 + 45 + 20 + + EPushButton::WidthAndHeight + + + $(P)$(R)TransmissionFactor + 0 @@ -455,616 +1128,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - - 0 - 0 - 0 + + 115 + 223 + 255 - - keV - - - ESimpleLabel::Height + + +10% - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + 1.1 - - - - - 230 - 0 - 157 - 110 - + + caMessageButton::Static - - - - 0 - 0 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionFactor - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - /1000 - - - 0.001 - - - caMessageButton::Static - - - - - - 110 - 0 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionSetpoint - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 1e-2 - - - 1.0e-2 - - - caMessageButton::Static - - - - - - 110 - 22 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionSetpoint - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 1e-4 - - - 1.0e-4 - - - caMessageButton::Static - - - - - - 110 - 44 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionSetpoint - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 1e-6 - - - 1.0e-6 - - - caMessageButton::Static - - - - - - 110 - 66 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionSetpoint - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 1e-8 - - - 1.0e-8 - - - caMessageButton::Static - - - - - - 110 - 88 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionSetpoint - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 1e-10 - - - 1.0e-10 - - - caMessageButton::Static - - - - - - 0 - 22 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionFactor - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - /10 - - - 0.1 - - - caMessageButton::Static - - - - - - 0 - 44 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionFactor - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - /2 - - - .5 - - - caMessageButton::Static - - - - - - 0 - 66 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionFactor - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - -10% - - - 0.9 - - - caMessageButton::Static - - - - - - 0 - 88 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionStepDown - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - - - - - 1 - - - caMessageButton::Static - - - - - - 50 - 88 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionStepUp - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - + - - - 1 - - - caMessageButton::Static - - - - - - 50 - 0 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionFactor - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - *1000 - - - 1000 - - - caMessageButton::Static - - - - - - 50 - 22 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionFactor - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - *10 - - - 10 - - - caMessageButton::Static - - - - - - 50 - 44 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionFactor - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - *2 - - - 2 - - - caMessageButton::Static - - - - - - 50 - 66 - 45 - 20 - - - - EPushButton::Height - - - $(P)$(R)TransmissionFactor - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - +10% - - - 1.1 - - - caMessageButton::Static - - @@ -1076,7 +1154,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)Message @@ -1124,14 +1202,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 6 - 153 - 60 - 15 - - 0 @@ -1150,7 +1220,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Message - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 6 + 153 + 60 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1160,14 +1238,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 400 - 65 - 86 - 15 - - 0 @@ -1186,7 +1256,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Setpoint - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 400 + 65 + 86 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1202,7 +1280,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)TransmissionSetpoint @@ -1247,14 +1325,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 399 - 125 - 95 - 15 - - 0 @@ -1273,7 +1343,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Filter Mask - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 399 + 125 + 95 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1289,7 +1367,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)FilterMaskSetpoint @@ -1334,14 +1412,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 133 - 60 - 15 - - 0 @@ -1360,7 +1430,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Mask - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 133 + 60 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1376,7 +1454,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)FilterMask @@ -1424,14 +1502,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 140 - 134 - 10 - 13 - - 0 @@ -1450,7 +1520,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} = - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 140 + 134 + 10 + 13 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1466,7 +1544,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)FilterMask @@ -1514,14 +1592,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 71 - 60 - 15 - - 0 @@ -1540,7 +1610,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Transm - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 71 + 60 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1556,7 +1634,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)Transmission @@ -1604,14 +1682,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 93 - 60 - 15 - - 0 @@ -1630,7 +1700,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Up(+) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 93 + 60 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1646,7 +1724,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)TransmissionUp @@ -1694,14 +1772,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 113 - 60 - 15 - - 0 @@ -1720,7 +1790,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Down(-) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 113 + 60 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1736,7 +1814,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)TransmissionDown @@ -1784,14 +1862,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 230 - 133 - 90 - 15 - - 0 @@ -1810,7 +1880,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} NumFilters - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 230 + 133 + 90 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1826,7 +1904,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(R)NumFilters @@ -1875,7 +1953,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLabel_0 caLabel_1 caLabel_2 - caFrame_0 caLabel_3 caLabel_4 caLabel_5 diff --git a/opticsApp/op/ui/autoconvert/filterbox_config.ui b/opticsApp/op/ui/autoconvert/filterbox_config.ui new file mode 100644 index 0000000..8579b2a --- /dev/null +++ b/opticsApp/op/ui/autoconvert/filterbox_config.ui @@ -0,0 +1,1023 @@ + + +MainWindow + + + + 664 + 480 + 425 + 125 + + + + + +QWidget#centralWidget {background: rgba(200, 200, 200, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Filter + + + ESimpleLabel::WidthAndHeight + + + + 5 + 5 + 45 + 15 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Material + + + ESimpleLabel::WidthAndHeight + + + + 70 + 5 + 70 + 15 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Thickness + + + ESimpleLabel::WidthAndHeight + + + + 150 + 5 + 70 + 15 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Enable + + + ESimpleLabel::WidthAndHeight + + + + 280 + 5 + 50 + 15 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(N1): + + + ESimpleLabel::WidthAndHeight + + + + 5 + 27 + 45 + 15 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 70 + 25 + 70 + 20 + + + + $(P)$(R)Fi$(N1):Material + + + + 0 + 0 + 0 + + + + + 158 + 158 + 158 + + + + caMenu::Static + + + + + + 150 + 25 + 100 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(R)Fi$(N1):Thickness + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 280 + 25 + 140 + 20 + + + + $(P)$(R)Fi$(N1):Enable + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Column + + + caChoice::Alarm + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + um + + + ESimpleLabel::WidthAndHeight + + + + 255 + 26 + 16 + 17 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 70 + 50 + 70 + 20 + + + + $(P)$(R)Fi$(N2):Material + + + + 0 + 0 + 0 + + + + + 158 + 158 + 158 + + + + caMenu::Static + + + + + + 150 + 50 + 100 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(R)Fi$(N2):Thickness + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 280 + 50 + 140 + 20 + + + + $(P)$(R)Fi$(N2):Enable + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Column + + + caChoice::Alarm + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + um + + + ESimpleLabel::WidthAndHeight + + + + 255 + 51 + 16 + 17 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(N2): + + + ESimpleLabel::WidthAndHeight + + + + 5 + 52 + 45 + 15 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(N3): + + + ESimpleLabel::WidthAndHeight + + + + 5 + 77 + 45 + 15 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 70 + 75 + 70 + 20 + + + + $(P)$(R)Fi$(N3):Material + + + + 0 + 0 + 0 + + + + + 158 + 158 + 158 + + + + caMenu::Static + + + + + + 150 + 75 + 100 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(R)Fi$(N3):Thickness + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + um + + + ESimpleLabel::WidthAndHeight + + + + 255 + 76 + 16 + 17 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 280 + 75 + 140 + 20 + + + + $(P)$(R)Fi$(N3):Enable + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Column + + + caChoice::Alarm + + + + + + 280 + 100 + 140 + 20 + + + + $(P)$(R)Fi$(N4):Enable + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Column + + + caChoice::Alarm + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + um + + + ESimpleLabel::WidthAndHeight + + + + 255 + 101 + 16 + 17 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 150 + 100 + 100 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(R)Fi$(N4):Thickness + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 70 + 100 + 70 + 20 + + + + $(P)$(R)Fi$(N4):Material + + + + 0 + 0 + 0 + + + + + 158 + 158 + 158 + + + + caMenu::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(N4): + + + ESimpleLabel::WidthAndHeight + + + + 5 + 102 + 45 + 15 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + caLabel_0 + caLabel_1 + caLabel_2 + caLabel_3 + caLabel_4 + caLabel_5 + caLabel_6 + caLabel_7 + caLabel_8 + caLabel_9 + caLabel_10 + caLabel_11 + caMenu_0 + caTextEntry_0 + caChoice_0 + caMenu_1 + caTextEntry_1 + caChoice_1 + caMenu_2 + caTextEntry_2 + caChoice_2 + caChoice_3 + caTextEntry_3 + caMenu_3 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/autoconvert/filterbox_less.ui b/opticsApp/op/ui/autoconvert/filterbox_less.ui new file mode 100644 index 0000000..23d4833 --- /dev/null +++ b/opticsApp/op/ui/autoconvert/filterbox_less.ui @@ -0,0 +1,276 @@ + + +MainWindow + + + + 1591 + 254 + 140 + 110 + + + + + +QWidget#centralWidget {background: rgba(200, 200, 200, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + caGraphics::Rectangle + + + + 5 + 5 + 130 + 100 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + + 12 + 11 + 74 + 90 + + + + + 12 + 11 + 72 + 88 + + + + filter_blade.adl + + + P=$(P),R=$(R),N=$(N4) + + + caInclude::IfNotZero + + + $(P)$(R)Fi$(N4):Enable + + + + + + 43 + 11 + 74 + 90 + + + + + 43 + 11 + 72 + 88 + + + + filter_blade.adl + + + P=$(P),R=$(R),N=$(N3) + + + caInclude::IfNotZero + + + $(P)$(R)Fi$(N3):Enable + + + + + + 74 + 11 + 74 + 90 + + + + + 74 + 11 + 72 + 88 + + + + filter_blade.adl + + + P=$(P),R=$(R),N=$(N2) + + + caInclude::IfNotZero + + + $(P)$(R)Fi$(N2):Enable + + + + + + 105 + 11 + 74 + 90 + + + + + 105 + 11 + 72 + 88 + + + + filter_blade.adl + + + P=$(P),R=$(R),N=$(N1) + + + caInclude::IfNotZero + + + $(P)$(R)Fi$(N1):Enable + + + caRectangle_0 + caInclude_0 + caInclude_1 + caInclude_2 + caInclude_3 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/autoconvert/filterbox_more.ui b/opticsApp/op/ui/autoconvert/filterbox_more.ui new file mode 100644 index 0000000..6cf62e2 --- /dev/null +++ b/opticsApp/op/ui/autoconvert/filterbox_more.ui @@ -0,0 +1,1299 @@ + + +MainWindow + + + + 2375 + 753 + 140 + 170 + + + + + +QWidget#centralWidget {background: rgba(200, 200, 200, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + caGraphics::Rectangle + + + + 5 + 48 + 130 + 100 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + + 15 + 152 + 110 + 18 + + + + + 255 + 255 + 255 + + + + + 88 + 52 + 15 + + + + -Configure + + + Menu + + + Configure + + + filterbox_config.adl + + + P=$(P),R=$(R),N1=$(N1),N2=$(N2),N3=$(N3),N4=$(N4) + + + false + + + + + QFrame::NoFrame + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + caLabel::IfZero + + + $(P)$(R)Fi$(N1):Enable + + + $(N1): Disabled + + + ESimpleLabel::WidthAndHeight + + + + 5 + 0 + 71 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + caLabel::IfZero + + + $(P)$(R)Fi$(N2):Enable + + + $(N2): Disabled + + + ESimpleLabel::WidthAndHeight + + + + 5 + 12 + 71 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + caLabel::IfZero + + + $(P)$(R)Fi$(N3):Enable + + + $(N3): Disabled + + + ESimpleLabel::WidthAndHeight + + + + 5 + 24 + 71 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + caLabel::IfZero + + + $(P)$(R)Fi$(N4):Enable + + + $(N4): Disabled + + + ESimpleLabel::WidthAndHeight + + + + 5 + 36 + 71 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(N2): + + + ESimpleLabel::WidthAndHeight + + + + 5 + 12 + 15 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 24 + 12 + 12 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(R)Fi$(N2):Material + + + + 0 + 0 + 0 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 40 + 12 + 38 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(R)Fi$(N2):Thickness + + + + 0 + 0 + 0 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + compact + + + caLineEdit::Static + + + + + + 82 + 12 + 50 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(R)Fi$(N2):Transmission + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + exponential + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(N1): + + + ESimpleLabel::WidthAndHeight + + + + 5 + 0 + 15 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 24 + 0 + 12 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(R)Fi$(N1):Material + + + + 0 + 0 + 0 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 40 + 0 + 38 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(R)Fi$(N1):Thickness + + + + 0 + 0 + 0 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + compact + + + caLineEdit::Static + + + + + + 82 + 0 + 50 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(R)Fi$(N1):Transmission + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + exponential + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(N3): + + + ESimpleLabel::WidthAndHeight + + + + 5 + 24 + 15 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 24 + 24 + 12 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(R)Fi$(N3):Material + + + + 0 + 0 + 0 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 40 + 24 + 38 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(R)Fi$(N3):Thickness + + + + 0 + 0 + 0 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + compact + + + caLineEdit::Static + + + + + + 82 + 24 + 50 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(R)Fi$(N3):Transmission + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + exponential + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(N4): + + + ESimpleLabel::WidthAndHeight + + + + 5 + 36 + 15 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 24 + 36 + 12 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(R)Fi$(N4):Material + + + + 0 + 0 + 0 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 40 + 36 + 38 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(R)Fi$(N4):Thickness + + + + 0 + 0 + 0 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + compact + + + caLineEdit::Static + + + + + + 82 + 36 + 50 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(R)Fi$(N4):Transmission + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + exponential + + + caLineEdit::Static + + + + + + 12 + 54 + 74 + 90 + + + + + 12 + 54 + 72 + 88 + + + + filter_blade.adl + + + P=$(P),R=$(R),N=$(N4) + + + caInclude::IfNotZero + + + $(P)$(R)Fi$(N4):Enable + + + + + + 43 + 54 + 74 + 90 + + + + + 43 + 54 + 72 + 88 + + + + filter_blade.adl + + + P=$(P),R=$(R),N=$(N3) + + + caInclude::IfNotZero + + + $(P)$(R)Fi$(N3):Enable + + + + + + 74 + 54 + 74 + 90 + + + + + 74 + 54 + 72 + 88 + + + + filter_blade.adl + + + P=$(P),R=$(R),N=$(N2) + + + caInclude::IfNotZero + + + $(P)$(R)Fi$(N2):Enable + + + + + + 105 + 54 + 74 + 90 + + + + + 105 + 54 + 72 + 88 + + + + filter_blade.adl + + + P=$(P),R=$(R),N=$(N1) + + + caInclude::IfNotZero + + + $(P)$(R)Fi$(N1):Enable + + + caRectangle_0 + caLabel_0 + caLabel_1 + caLabel_2 + caLabel_3 + caLabel_4 + caLabel_5 + caLabel_6 + caLabel_7 + caInclude_0 + caInclude_1 + caInclude_2 + caInclude_3 + caRelatedDisplay_0 + caLineEdit_0 + caLineEdit_1 + caLineEdit_2 + caLineEdit_3 + caLineEdit_4 + caLineEdit_5 + caLineEdit_6 + caLineEdit_7 + caLineEdit_8 + caLineEdit_9 + caLineEdit_10 + caLineEdit_11 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/autoconvert/flexCapSensor.ui b/opticsApp/op/ui/autoconvert/flexCapSensor.ui new file mode 100644 index 0000000..79bfd81 --- /dev/null +++ b/opticsApp/op/ui/autoconvert/flexCapSensor.ui @@ -0,0 +1,607 @@ + + +MainWindow + + + + 643 + 151 + 210 + 210 + + + + + +QWidget#centralWidget {background: rgba(187, 187, 187, 255);} +QPushButton::menu-indicator {image: url(none.png); width: 0} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +/* when font specified, no font sizing is done any more, font: 10pt; is not bad. You could Enable this when you converted from .adl files +caRelatedDisplay > QPushButton { +font: 10pt; +} + +caShellCommand > QPushButton { +font: 10pt; +} +*/ + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Cap Sensor $(P)$(C) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 5 + 5 + 200 + 45 + + + + + + + 107 + 160 + 80 + 28 + + + + + 255 + 255 + 255 + + + + + 40 + 147 + 21 + + + + -Pos Calc + + + Menu + + + Position Calc + + + yyCalcoutRecord.adl + + + P=$(P),C=$(C):posCalc + + + false + + + + + + 11 + 160 + 80 + 28 + + + + EPushButton::WidthAndHeight + + + $(P)$(C):zero.PROC + + + + 255 + 255 + 255 + + + + + 42 + 99 + 228 + + + + Zero Pos + + + 1 + + + caMessageButton::Static + + + + + + 93 + 57 + 100 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(C):pos + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Position + + + ESimpleLabel::WidthAndHeight + + + + 13 + 57 + 75 + 18 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 93 + 80 + 100 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(C):voltage + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Voltage + + + ESimpleLabel::WidthAndHeight + + + + 13 + 80 + 75 + 18 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 93 + 103 + 100 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(C):umPerV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + um per V + + + ESimpleLabel::WidthAndHeight + + + + 13 + 103 + 75 + 18 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Offset + + + ESimpleLabel::WidthAndHeight + + + + 13 + 126 + 75 + 18 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 93 + 126 + 96 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(C):offset + + + + 0 + 0 + 0 + + + + + 153 + 255 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + caLabel_0 + caLabel_1 + caLabel_2 + caLabel_3 + caLabel_4 + caRelatedDisplay_0 + caMessageButton_0 + caLineEdit_0 + caLineEdit_1 + caLineEdit_2 + caTextEntry_0 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/orient_HKL.ui b/opticsApp/op/ui/autoconvert/flexCombinedMotion.ui similarity index 57% rename from opticsApp/op/ui/orient_HKL.ui rename to opticsApp/op/ui/autoconvert/flexCombinedMotion.ui index a42a742..81aa1e3 100644 --- a/opticsApp/op/ui/orient_HKL.ui +++ b/opticsApp/op/ui/autoconvert/flexCombinedMotion.ui @@ -4,104 +4,123 @@ - 885 - 192 - 340 - 85 + 616 + 127 + 210 + 302 -QWidget#centralWidget {background: rgba(218, 218, 218, 255);} +QWidget#centralWidget {background: rgba(187, 187, 187, 255);} +QPushButton::menu-indicator {image: url(none.png); width: 0} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +/* when font specified, no font sizing is done any more, font: 10pt; is not bad. You could Enable this when you converted from .adl files +caRelatedDisplay > QPushButton { +font: 10pt; +} + +caShellCommand > QPushButton { +font: 10pt; +} +*/ + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + - - - caGraphics::Rectangle - - - - 0 - 0 - 300 - 20 - - - - 3 - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - - - caGraphics::Rectangle - - - - 0 - 20 - 300 - 3 - - - - 3 - - - - 10 - 0 - 184 - - - - Filled - - - - 10 - 0 - 184 - - - - Solid - - QFrame::NoFrame - - - 0 - 0 - 300 - 20 - - 0 @@ -117,373 +136,136 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - Diffractometer $(P)orient$(O) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 300 - 0 - 40 - 20 - - - - - 255 - 255 - 255 - - - - - 51 - 153 - 0 - - - - -More - - - Menu - - - HKL, Angles, Motors;Everything;Motors - - - orient.adl;orient_full.adl;motor4x.adl - - - P=$(P),O=$(O),PM=$(PM),mTTH=$(mTTH),mTH=$(mTH),mCHI=$(mCHI),mPHI=$(mPHI);P=$(P),O=$(O),PM=$(PM),mTTH=$(mTTH),mTH=$(mTH),mCHI=$(mCHI),mPHI=$(mPHI);P=$(PM),M1=$(mTTH),M2=$(mTH),M3=$(mCHI),M4=$(mPHI) - - - true;true;false - - - - - - 26 - 24 - 80 - 14 - + Combined Motion $(P)$(M) - caLineEdit::Height - - - $(P)orient$(O):H_RBV - - - - 10 - 0 - 184 - - - - - 218 - 218 - 218 - + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - - 136 - 24 - 80 - 14 - - - - caLineEdit::Height - - - $(P)orient$(O):K_RBV - - - - 10 - 0 - 184 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - 246 - 24 - 80 - 14 + 5 + 5 + 200 + 45 - - caLineEdit::Height - - - $(P)orient$(O):L_RBV - - - - 10 - 0 - 184 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - + - 25 - 39 - 80 + 13 + 60 + 182 20 - - caLineEdit::Height - - - $(P)orient$(O):H - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - + + + + 80 + 0 + 100 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M):setPoint + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Set Point + + + ESimpleLabel::WidthAndHeight + + + + 0 + 0 + 75 + 18 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + - - - QFrame::NoFrame - + - 10 - 40 - 10 + 13 + 106 + 178 20 - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - H - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - caGraphics::Rectangle - - - - 23 - 37 - 84 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):H_busy - - - - - - 120 - 37 - 99 - 26 - - QFrame::NoFrame - - - 0 - 3 - 10 - 20 - - 0 @@ -499,29 +281,37 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - K + Upper Lim - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 0 + 75 + 18 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + - 15 - 2 - 80 - 20 + 80 + 0 + 96 + 18 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)orient$(O):K + $(P)$(M):upperLimit @@ -532,8 +322,8 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - 115 - 223 + 153 + 255 255 @@ -559,74 +349,20 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} decimal - - - caGraphics::Rectangle - - - - 13 - 0 - 84 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):K_busy - - - + - 230 - 37 - 99 - 26 + 13 + 129 + 178 + 20 QFrame::NoFrame - - - 0 - 3 - 10 - 20 - - 0 @@ -642,29 +378,37 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - L + Home Pos - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 0 + 75 + 18 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + - 15 - 2 - 80 - 20 + 80 + 0 + 96 + 18 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)orient$(O):L + $(P)$(M):homePos @@ -675,8 +419,8 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - 115 - 223 + 153 + 255 255 @@ -702,76 +446,66 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} decimal - - - caGraphics::Rectangle - - - - 13 - 0 - 84 - 24 - - - - 2 + + + + + 13 + 83 + 178 + 20 + + + + + QFrame::NoFrame - 30 - 187 + 0 + 0 0 - 30 - 187 + 0 + 0 0 - - - 30 - 187 - 0 - + + Deadband - - Solid + + ESimpleLabel::WidthAndHeight - - caGraphics::IfNotZero + + + 0 + 0 + 75 + 18 + - - $(P)orient$(O):L_busy + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - 25 - 59 - 302 - 22 - - - + - 60 + 80 0 - 20 - 20 + 96 + 18 - EPushButton::Height + caLineEdit::WidthAndHeight - $(P)orient$(O):H_tweak.A + $(P)$(M):deadband @@ -782,35 +516,46 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - 115 - 223 + 153 + 255 255 - - + + + caLineEdit::Channel - - 1 + + caLineEdit::Channel - - caMessageButton::Static + + caLineEdit::Channel - - - - - 0 - 0 - 20 - 20 - + + 0.0 - - EPushButton::Height + + 1.0 - - $(P)orient$(O):H_tweak.B + + caLineEdit::Static + + + decimal + + + + + + + 13 + 175 + 178 + 20 + + + + + QFrame::NoFrame @@ -820,36 +565,44 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - - 115 - 223 - 255 + + 0 + 0 + 0 - - - + + Lower Lim + + + ESimpleLabel::WidthAndHeight - - 1 + + + 0 + 0 + 75 + 18 + - - caMessageButton::Static + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - 20 - 2 - 40 + 80 + 0 + 96 18 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)orient$(O):H_tweak.C + $(P)$(M):lowerLimit @@ -860,8 +613,8 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - 115 - 223 + 153 + 255 255 @@ -887,20 +640,63 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} decimal - + + + + + 13 + 267 + 182 + 20 + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Mode + + + ESimpleLabel::WidthAndHeight + + + + 0 + 0 + 75 + 18 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + - 170 + 80 0 - 20 - 20 + 100 + 18 - - EPushButton::Height - - $(P)orient$(O):K_tweak.A + $(P)$(M):mode @@ -911,35 +707,28 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - 115 - 223 - 255 + 200 + 200 + 200 - - + - - - 1 - - caMessageButton::Static + caMenu::Static - - - - 110 - 0 - 20 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):K_tweak.B + + + + + 13 + 244 + 178 + 20 + + + + + QFrame::NoFrame @@ -949,36 +738,44 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - - 115 - 223 - 255 + + 0 + 0 + 0 - - - + + Debug + + + ESimpleLabel::WidthAndHeight - - 1 + + + 0 + 0 + 75 + 18 + - - caMessageButton::Static + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - 130 - 2 - 40 + 80 + 0 + 96 18 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)orient$(O):K_tweak.C + $(P)$(M):debug @@ -989,8 +786,8 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - 115 - 223 + 153 + 255 255 @@ -1016,20 +813,109 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} decimal - - - - 280 - 0 - 20 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):L_tweak.A + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Busy + + + ESimpleLabel::WidthAndHeight + + + + 13 + 198 + 75 + 18 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 93 + 198 + 100 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M):busy + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 13 + 221 + 182 + 20 + + + + + QFrame::NoFrame @@ -1039,88 +925,57 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - - 115 - 223 - 255 + + 0 + 0 + 0 - - + - - - 1 + + Retries - - caMessageButton::Static + + ESimpleLabel::WidthAndHeight - - - 220 + 0 0 - 20 - 20 + 75 + 18 - - EPushButton::Height - - - $(P)orient$(O):L_tweak.B - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - - - - - 1 - - - caMessageButton::Static + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + - 240 - 2 - 40 + 80 + 0 + 100 18 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)orient$(O):L_tweak.C + $(P)$(M):retries - 0 + 10 0 - 0 + 184 - 115 - 223 - 255 + 200 + 200 + 200 @@ -1138,42 +993,139 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} 1.0 - - caLineEdit::Static + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - decimal + string + + + caLineEdit::Static - caRectangle_0 - caRectangle_1 + + + + 93 + 152 + 100 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M):rehome + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 13 + 152 + 75 + 18 + + + + EPushButton::WidthAndHeight + + + $(P)$(M):rehome + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Rehome + + + 1 + + + caMessageButton::Static + + caLabel_0 caLabel_1 - caRectangle_2 - caLabel_2 - caRectangle_3 caFrame_0 - caLabel_3 - caRectangle_4 + caLabel_2 caFrame_1 + caLabel_3 caFrame_2 - caRelatedDisplay_0 + caLabel_4 + caFrame_3 + caLabel_5 + caFrame_4 + caLabel_6 + caFrame_5 + caLabel_7 + caFrame_6 + caLabel_8 + caLabel_9 + caFrame_7 caLineEdit_0 - caLineEdit_1 - caLineEdit_2 caTextEntry_0 caTextEntry_1 caTextEntry_2 - caMessageButton_0 - caMessageButton_1 caTextEntry_3 - caMessageButton_2 - caMessageButton_3 + caMenu_0 caTextEntry_4 - caMessageButton_4 - caMessageButton_5 - caTextEntry_5 + caLineEdit_1 + caLineEdit_2 + caLineEdit_3 + caMessageButton_0 \ No newline at end of file diff --git a/opticsApp/op/ui/autoconvert/flexCombinedMotionTop.ui b/opticsApp/op/ui/autoconvert/flexCombinedMotionTop.ui new file mode 100644 index 0000000..cf0a1c4 --- /dev/null +++ b/opticsApp/op/ui/autoconvert/flexCombinedMotionTop.ui @@ -0,0 +1,239 @@ + + +MainWindow + + + + 273 + 398 + 200 + 130 + + + + + +QWidget#centralWidget {background: rgba(187, 187, 187, 255);} +QPushButton::menu-indicator {image: url(none.png); width: 0} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +/* when font specified, no font sizing is done any more, font: 10pt; is not bad. You could Enable this when you converted from .adl files +caRelatedDisplay > QPushButton { +font: 10pt; +} + +caShellCommand > QPushButton { +font: 10pt; +} +*/ + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + + 25 + 85 + 150 + 28 + + + + + 255 + 255 + 255 + + + + + 40 + 147 + 21 + + + + -Menu + + + Menu + + + Motors;Combined Motion;Cap Sensor + + + motor3x.adl;flexCombinedMotion.adl;flexCapSensor.adl + + + P=$(P),M1=$(M),M2=$(CM),M3=$(FM);P=$(P),M=$(M);P=$(P),C=$(C) + + + false;false;false + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Combined Motion + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 10 + 10 + 180 + 25 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(P)$(M) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 10 + 45 + 180 + 25 + + + + caLabel_0 + caLabel_1 + caRelatedDisplay_0 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/hrSeqCtl_All.ui b/opticsApp/op/ui/autoconvert/hrSeqCtl_All.ui similarity index 82% rename from opticsApp/op/ui/hrSeqCtl_All.ui rename to opticsApp/op/ui/autoconvert/hrSeqCtl_All.ui index 73b8b0b..e91bf8c 100644 --- a/opticsApp/op/ui/hrSeqCtl_All.ui +++ b/opticsApp/op/ui/autoconvert/hrSeqCtl_All.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -55,7 +143,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;648,1; + 648,1; @@ -68,7 +156,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_Theta2AO.VAL @@ -119,7 +207,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)HR$(N)_Theta2IncBO.VAL @@ -158,7 +246,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_Theta2TweakAI @@ -209,7 +297,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)HR$(N)_Theta2DecBO.VAL @@ -248,7 +336,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_Theta2AO.DRVL @@ -296,14 +384,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 490 - 0 - 100 - 20 - - 0 @@ -322,11 +402,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} TH2 (deg.) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 490 + 0 + 100 + 20 + + @@ -338,7 +426,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_Theta2RdbkAO @@ -392,7 +480,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_Theta2AO.DRVH @@ -440,14 +528,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 593 - 75 - 50 - 14 - - 236 @@ -466,7 +546,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} LowLim - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 593 + 75 + 50 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -476,14 +564,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 593 - 55 - 50 - 14 - - 236 @@ -502,7 +582,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Desired - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 593 + 55 + 50 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -512,14 +600,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 593 - 37 - 50 - 14 - - 236 @@ -538,7 +618,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Actual - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 593 + 37 + 50 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -548,14 +636,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 593 - 19 - 50 - 14 - - 236 @@ -574,7 +654,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} HighLim - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 593 + 19 + 50 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -590,7 +678,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_Theta1AO.VAL @@ -641,7 +729,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)HR$(N)_Theta1IncBO.VAL @@ -680,7 +768,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_Theta1TweakAI @@ -731,7 +819,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)HR$(N)_Theta1DecBO.VAL @@ -770,7 +858,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_Theta1AO.DRVL @@ -818,14 +906,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 300 - 0 - 100 - 20 - - 0 @@ -844,11 +924,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} TH1 (deg.) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 300 + 0 + 100 + 20 + + @@ -860,7 +948,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_Theta1RdbkAO @@ -914,7 +1002,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_Theta1AO.DRVH @@ -968,7 +1056,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_LambdaAO.DRVL @@ -1022,7 +1110,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_LambdaAO.VAL @@ -1073,7 +1161,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)HR$(N)_LambdaIncBO.VAL @@ -1112,7 +1200,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_LambdaTweakAI @@ -1163,7 +1251,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)HR$(N)_LambdaDecBO.VAL @@ -1202,7 +1290,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_LambdaTweakAI.EGU @@ -1256,7 +1344,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_EAO.DRVL @@ -1310,7 +1398,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_EAO.VAL @@ -1361,7 +1449,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_ETweakAI @@ -1412,7 +1500,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)HR$(N)_EDecBO.VAL @@ -1451,7 +1539,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)HR$(N)_EIncBO.VAL @@ -1490,7 +1578,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_ETweakAI.EGU @@ -1544,7 +1632,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_EAO.DRVH @@ -1598,7 +1686,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_ERdbkAO @@ -1646,14 +1734,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 0 - 100 - 20 - - 0 @@ -1672,11 +1752,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} E (keV) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 0 + 100 + 20 + + @@ -1688,7 +1776,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_LambdaRdbkAO @@ -1742,7 +1830,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_LambdaAO.DRVH @@ -1790,14 +1878,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 110 - 0 - 100 - 20 - - 0 @@ -1816,570 +1896,27 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Lambda (A) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - 220 + 110 0 - 82 - 112 + 100 + 20 - - - caGraphics::Rectangle - - - - 0 - 0 - 80 - 110 - - - - 2 - - - - 174 - 174 - 174 - - - - Filled - - - - 174 - 174 - 174 - - - - Solid - - - - - QFrame::NoFrame - - - - 55 - 2 - 20 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - L1 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 55 - 20 - 20 - 20 - - - - caLineEdit::Height - - - $(P)HR$(N)_L1AO.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 30 - 2 - 20 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - K1 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 30 - 20 - 20 - 20 - - - - caLineEdit::Height - - - $(P)HR$(N)_K1AO.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 5 - 2 - 20 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - H1 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 5 - 20 - 20 - 20 - - - - caLineEdit::Height - - - $(P)HR$(N)_H1AO.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 5 - 43 - 20 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - a - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 20 - 40 - 55 - 20 - - - - caLineEdit::Height - - - $(P)HR$(N)_A1AO.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 20 - 63 - 55 - 20 - - - - caLineEdit::Height - - - $(P)HR$(N)_2d1AO - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 5 - 66 - 20 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - 2d - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 5 - 85 - 70 - 16 - - - - $(P)HR$(N)_1TypeMO - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caMenu::Static - - - - - caGraphics::Rectangle - - - - 0 - 0 - 80 - 110 - - - - 2 - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - + caGraphics::Rectangle - 410 + 220 0 80 110 @@ -2409,18 +1946,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - + QFrame::NoFrame - - - 465 - 2 - 20 - 20 - - 0 @@ -2436,29 +1965,37 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - L2 + L1 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 275 + 2 + 20 + 20 + + - + - 465 + 275 20 20 20 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)HR$(N)_L2AO.VAL + $(P)HR$(N)_L1AO.VAL @@ -2496,18 +2033,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} decimal - + QFrame::NoFrame - - - 440 - 2 - 20 - 20 - - 0 @@ -2523,29 +2052,37 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - K2 + K1 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 250 + 2 + 20 + 20 + + - + - 440 + 250 20 20 20 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)HR$(N)_K2AO.VAL + $(P)HR$(N)_K1AO.VAL @@ -2583,18 +2120,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} decimal - + QFrame::NoFrame - - - 415 - 2 - 20 - 20 - - 0 @@ -2610,29 +2139,37 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - H2 + H1 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 225 + 2 + 20 + 20 + + - + - 415 + 225 20 20 20 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)HR$(N)_H2AO.VAL + $(P)HR$(N)_H1AO.VAL @@ -2670,18 +2207,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} decimal - + QFrame::NoFrame - - - 415 - 43 - 15 - 14 - - 0 @@ -2700,26 +2229,34 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} a - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 225 + 43 + 20 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + - 430 + 240 40 55 20 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)HR$(N)_A2AO.VAL + $(P)HR$(N)_A1AO.VAL @@ -2757,20 +2294,20 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} decimal - + - 430 + 240 63 55 20 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)HR$(N)_2d2AO + $(P)HR$(N)_2d1AO @@ -2808,18 +2345,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} decimal - + QFrame::NoFrame - - - 415 - 66 - 15 - 14 - - 0 @@ -2838,23 +2367,31 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 2d - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 225 + 66 + 20 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + - 415 + 225 85 70 16 - $(P)HR$(N)_2TypeMO + $(P)HR$(N)_1TypeMO @@ -2874,13 +2411,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caMenu::Static - + caGraphics::Rectangle - 410 + 220 0 80 110 @@ -2914,17 +2451,550 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - - - QFrame::NoFrame + + + caGraphics::Rectangle - 553 - 246 - 70 - 22 - + 410 + 0 + 80 + 110 + + + + 2 + + + + 174 + 174 + 174 + + + + Filled + + + + 174 + 174 + 174 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + L2 + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 465 + 2 + 20 + 20 + + + + + + + 465 + 20 + 20 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)HR$(N)_L2AO.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + K2 + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 440 + 2 + 20 + 20 + + + + + + + 440 + 20 + 20 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)HR$(N)_K2AO.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + H2 + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 415 + 2 + 20 + 20 + + + + + + + 415 + 20 + 20 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)HR$(N)_H2AO.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + a + + + ESimpleLabel::WidthAndHeight + + + + 415 + 43 + 15 + 14 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 430 + 40 + 55 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)HR$(N)_A2AO.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 430 + 63 + 55 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)HR$(N)_2d2AO + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + 2d + + + ESimpleLabel::WidthAndHeight + + + + 415 + 66 + 15 + 14 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 415 + 85 + 70 + 16 + + + + $(P)HR$(N)_2TypeMO + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caMenu::Static + + + + + caGraphics::Rectangle + + + + 410 + 0 + 80 + 110 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + QFrame::NoFrame @@ -2950,11 +3020,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Moving - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 553 + 246 + 70 + 22 + + @@ -2966,7 +3044,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_phi1CmdAO @@ -3020,7 +3098,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_phi1RdbkAI @@ -3114,14 +3192,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 106 - 140 - 90 - 20 - - 0 @@ -3140,11 +3210,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Phi 1 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 106 + 140 + 90 + 20 + + @@ -3156,7 +3234,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_phi2SetAO @@ -3210,7 +3288,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_phi1SetAO @@ -3264,7 +3342,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_phi1OffAO @@ -3315,7 +3393,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_phi2OffAO @@ -3366,7 +3444,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_phi2RdbkAI @@ -3406,192 +3484,164 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} decimal - - caLineEdit::Static + + caLineEdit::Static + + + + + caGraphics::Arc + + + + 96 + 193 + 25 + 18 + + + + + 96 + 193 + 25 + 18 + + + + 2 + + + + 225 + 144 + 21 + + + + + 225 + 144 + 21 + + + + + 225 + 144 + 21 + + + + Solid + + + + 96 + 193 + 25 + 18 + + + + 90 + + + + 96 + 193 + 25 + 18 + + + + 180 + + + + + + 103 + 190 + 8 + 10 + + + + 2 + + + + 225 + 144 + 21 + + + + + 225 + 144 + 21 + + + + + 225 + 144 + 21 + + + + Solid + + + 1,9; - + 74 - 190 - 49 - 23 + 204 + 20 + 2 - - - - 22 - 0 - 27 - 23 - - - - - caGraphics::Arc - - - - 0 - 3 - 25 - 18 - - - - - 0 - 3 - 25 - 18 - - - - 2 - - - - 225 - 144 - 21 - - - - - 225 - 144 - 21 - - - - - 225 - 144 - 21 - - - - Solid - - - - 0 - 3 - 25 - 18 - - - - 90 - - - - 0 - 3 - 25 - 18 - - - - 180 - - - - - - 7 - 0 - 8 - 10 - - - - 2 - - - - 225 - 144 - 21 - - - - - 225 - 144 - 21 - - - - - 225 - 144 - 21 - - - - Solid - - - 1,1;7,4;1,9; - - - - - - - 0 - 14 - 20 - 2 - - - - 2 - - - - 225 - 144 - 21 - - - - - 225 - 144 - 21 - - - - - 225 - 144 - 21 - - - - Dash - - - 19,1;1,1; - - + + 2 + + + + 225 + 144 + 21 + + + + + 225 + 144 + 21 + + + + + 225 + 144 + 21 + + + + Dash + + + 1,1; + QFrame::NoFrame - - - 211 - 140 - 90 - 20 - - 0 @@ -3610,11 +3660,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Phi 2 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 211 + 140 + 90 + 20 + + @@ -3626,7 +3684,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_phi1PvSI @@ -3680,7 +3738,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_phi2PvSI @@ -3734,7 +3792,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_phi2CmdAO @@ -3864,7 +3922,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)HR$(N)_PutBO @@ -3897,14 +3955,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 305 - 202 - 70 - 14 - - 205 @@ -3923,7 +3973,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Motor Write - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 305 + 202 + 70 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3933,14 +3991,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 305 - 172 - 70 - 14 - - 45 @@ -3959,7 +4009,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Motor Read - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 305 + 172 + 70 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3969,14 +4027,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 305 - 187 - 70 - 14 - - 45 @@ -3995,7 +4045,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Motor Write - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 305 + 187 + 70 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -4005,14 +4063,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 305 - 157 - 100 - 14 - - 45 @@ -4031,7 +4081,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Motor PV name - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 305 + 157 + 100 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -4041,14 +4099,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 305 - 218 - 70 - 14 - - 45 @@ -4067,7 +4117,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Offset - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 305 + 218 + 70 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -4077,14 +4135,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 305 - 234 - 70 - 14 - - 45 @@ -4103,7 +4153,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Angle - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 305 + 234 + 70 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -4119,7 +4177,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_phi1RdbkAI.EGU @@ -4173,7 +4231,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_phi1CmdAO.EGU @@ -4227,7 +4285,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_phi1SetAO.EGU @@ -4281,7 +4339,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_phi1OffAO.EGU @@ -4335,7 +4393,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_phi1AO.EGU @@ -4425,7 +4483,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_phi2AO @@ -4479,7 +4537,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_phi1AO @@ -4527,14 +4585,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 553 - 246 - 70 - 22 - - 77 @@ -4559,11 +4609,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Done - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 553 + 246 + 70 + 22 + + @@ -4575,7 +4633,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -4671,14 +4729,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 430 - 145 - 100 - 14 - - 45 @@ -4697,11 +4747,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Calibration - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 430 + 145 + 100 + 14 + + @@ -4755,7 +4813,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_SeqMsg1SI @@ -4809,7 +4867,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_SeqMsg2SI @@ -4863,7 +4921,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)HR$(N)_OperAckBO @@ -4929,7 +4987,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;535,1; + 535,1; @@ -4942,7 +5000,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_worldOffAO.VAL @@ -4993,7 +5051,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)HR$(N)_worldIncBO.VAL @@ -5032,7 +5090,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_worldTweakAI @@ -5083,7 +5141,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)HR$(N)_worldDecBO.VAL @@ -5116,14 +5174,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 545 - 140 - 60 - 20 - - 0 @@ -5142,11 +5192,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} world - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 545 + 140 + 60 + 20 + + @@ -5158,7 +5216,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_worldOffAO.EGU @@ -5244,93 +5302,83 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} false - + + + + 82 + 111 + 21 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)HR$(N)_E:scanParms.GO + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Go + + + 1 + + + caMessageButton::Static + + + 62 111 - 43 - 22 + 21 + 20 - - - - 20 - 0 - 21 - 20 - - - - EPushButton::Height - - - $(P)HR$(N)_E:scanParms.GO - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Go - - - 1 - - - caMessageButton::Static - - - - - - 0 - 0 - 21 - 20 - - - - EPushButton::Height - - - $(P)HR$(N)_E:scanParms.LOAD - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Ld - - - 1 - - - caMessageButton::Static - - + + EPushButton::WidthAndHeight + + + $(P)HR$(N)_E:scanParms.LOAD + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Ld + + + 1 + + + caMessageButton::Static + @@ -5381,7 +5429,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLabel_11 caLabel_12 caRectangle_1 - caFrame_0 caRectangle_2 caLabel_13 caLabel_14 @@ -5394,9 +5441,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLabel_19 caArc_0 caPolyLine_1 - caFrame_2 caPolyLine_2 - caFrame_1 caLabel_20 caRectangle_5 caLabel_21 @@ -5411,7 +5456,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caRectangle_7 caPolyLine_3 caLabel_29 - caFrame_3 caTextEntry_0 caMessageButton_0 caTextEntry_1 diff --git a/opticsApp/op/ui/hr_nested.gif b/opticsApp/op/ui/autoconvert/hr_nested.gif similarity index 100% rename from opticsApp/op/ui/hr_nested.gif rename to opticsApp/op/ui/autoconvert/hr_nested.gif diff --git a/opticsApp/op/ui/hr_nested.ui b/opticsApp/op/ui/autoconvert/hr_nested.ui similarity index 50% rename from opticsApp/op/ui/hr_nested.ui rename to opticsApp/op/ui/autoconvert/hr_nested.ui index 350dbac..3acef8d 100644 --- a/opticsApp/op/ui/hr_nested.ui +++ b/opticsApp/op/ui/autoconvert/hr_nested.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -41,7 +129,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -150,7 +238,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_Theta1RdbkAO @@ -204,7 +292,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_Theta1AO.VAL @@ -249,14 +337,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 28 - 242 - 60 - 14 - - 0 @@ -275,11 +355,19 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Theta1 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 28 + 242 + 60 + 14 + + @@ -361,7 +449,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_Theta2RdbkAO @@ -415,7 +503,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_Theta2AO.VAL @@ -460,6 +548,29 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Theta2 + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + 328 @@ -468,6 +579,135 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 14 + + + + caGraphics::Rectangle + + + + 253 + 222 + 64 + 38 + + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + caGraphics::Rectangle + + + + 253 + 222 + 64 + 38 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + + 255 + 238 + 61 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)HR$(N)_phi1RdbkAI + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + 0 @@ -483,462 +723,290 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - Theta2 + Phi1 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - 253 + 255 222 - 66 - 40 + 60 + 14 - - - caGraphics::Rectangle - - - - 0 - 0 - 64 - 38 - - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - - - caGraphics::Rectangle - - - - 0 - 0 - 64 - 38 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - - 2 - 16 - 61 - 10 - - - - caLineEdit::Height - - - $(P)HR$(N)_phi1RdbkAI - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - QFrame::NoFrame - - - - 2 - 0 - 60 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Phi1 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 2 - 26 - 61 - 10 - - - - caLineEdit::Height - - - $(P)HR$(N)_phi1AO - - - - 42 - 99 - 228 - - - - - 255 - 255 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - + + + + 255 + 248 + 61 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)HR$(N)_phi1AO + + + + 42 + 99 + 228 + + + + + 255 + 255 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + caGraphics::Rectangle + + + + 354 + 70 + 64 + 38 + + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + caGraphics::Rectangle + 354 70 - 66 - 40 + 64 + 38 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + + 356 + 86 + 61 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)HR$(N)_phi2RdbkAI + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Phi2 + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 356 + 70 + 60 + 14 - - - caGraphics::Rectangle - - - - 0 - 0 - 64 - 38 - - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - - - caGraphics::Rectangle - - - - 0 - 0 - 64 - 38 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - - 2 - 16 - 61 - 10 - - - - caLineEdit::Height - - - $(P)HR$(N)_phi2RdbkAI - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - QFrame::NoFrame - - - - 2 - 0 - 60 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Phi2 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 2 - 26 - 61 - 10 - - - - caLineEdit::Height - - - $(P)HR$(N)_phi2AO - - - - 42 - 99 - 228 - - - - - 255 - 255 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - + + + + + 356 + 96 + 61 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)HR$(N)_phi2AO + + + + 42 + 99 + 228 + + + + + 255 + 255 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + caImage_0 caRectangle_0 @@ -950,11 +1018,9 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} caRectangle_4 caRectangle_5 caLabel_2 - caFrame_0 caRectangle_6 caRectangle_7 caLabel_3 - caFrame_1 caMessageButton_0 caLineEdit_0 caTextEntry_0 diff --git a/opticsApp/op/ui/hr_nested1.gif b/opticsApp/op/ui/autoconvert/hr_nested1.gif similarity index 100% rename from opticsApp/op/ui/hr_nested1.gif rename to opticsApp/op/ui/autoconvert/hr_nested1.gif diff --git a/opticsApp/op/ui/hr_symmetric.gif b/opticsApp/op/ui/autoconvert/hr_symmetric.gif similarity index 100% rename from opticsApp/op/ui/hr_symmetric.gif rename to opticsApp/op/ui/autoconvert/hr_symmetric.gif diff --git a/opticsApp/op/ui/hr_symmetric.ui b/opticsApp/op/ui/autoconvert/hr_symmetric.ui similarity index 50% rename from opticsApp/op/ui/hr_symmetric.ui rename to opticsApp/op/ui/autoconvert/hr_symmetric.ui index d5164ff..7f66b58 100644 --- a/opticsApp/op/ui/hr_symmetric.ui +++ b/opticsApp/op/ui/autoconvert/hr_symmetric.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -41,7 +129,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -150,7 +238,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_Theta1RdbkAO @@ -204,7 +292,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_Theta1AO.VAL @@ -249,14 +337,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 67 - 200 - 60 - 14 - - 0 @@ -275,11 +355,19 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Theta1 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 67 + 200 + 60 + 14 + + @@ -361,7 +449,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_Theta2RdbkAO @@ -415,7 +503,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)HR$(N)_Theta2AO.VAL @@ -460,6 +548,29 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Theta2 + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + 302 @@ -468,6 +579,135 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 14 + + + + caGraphics::Rectangle + + + + 145 + 235 + 64 + 38 + + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + caGraphics::Rectangle + + + + 145 + 235 + 64 + 38 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + + 147 + 251 + 61 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)HR$(N)_phi1RdbkAI + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + 0 @@ -483,462 +723,290 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - Theta2 + Phi1 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 147 + 235 + 60 + 14 + + - + - 145 + 147 + 261 + 61 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)HR$(N)_phi1AO + + + + 42 + 99 + 228 + + + + + 255 + 255 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + caGraphics::Rectangle + + + + 215 235 - 66 - 40 + 64 + 38 - - - caGraphics::Rectangle - - - - 0 - 0 - 64 - 38 - - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - - - caGraphics::Rectangle - - - - 0 - 0 - 64 - 38 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - - 2 - 16 - 61 - 10 - - - - caLineEdit::Height - - - $(P)HR$(N)_phi1RdbkAI - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - QFrame::NoFrame - - - - 2 - 0 - 60 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Phi1 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 2 - 26 - 61 - 10 - - - - caLineEdit::Height - - - $(P)HR$(N)_phi1AO - - - - 42 - 99 - 228 - - - - - 255 - 255 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + - + + + caGraphics::Rectangle + 215 235 - 66 - 40 + 64 + 38 - - - caGraphics::Rectangle - - - - 0 - 0 - 64 - 38 - - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - - - caGraphics::Rectangle - - - - 0 - 0 - 64 - 38 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - - 2 - 16 - 61 - 10 - - - - caLineEdit::Height - - - $(P)HR$(N)_phi2RdbkAI - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - QFrame::NoFrame - - - - 2 - 0 - 60 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Phi2 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 2 - 26 - 61 - 10 - - - - caLineEdit::Height - - - $(P)HR$(N)_phi2AO - - - - 42 - 99 - 228 - - - - - 255 - 255 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + + 217 + 251 + 61 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)HR$(N)_phi2RdbkAI + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Phi2 + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 217 + 235 + 60 + 14 + + + + + + + 217 + 261 + 61 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)HR$(N)_phi2AO + + + + 42 + 99 + 228 + + + + + 255 + 255 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + caImage_0 caRectangle_0 @@ -950,11 +1018,9 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} caRectangle_4 caRectangle_5 caLabel_2 - caFrame_0 caRectangle_6 caRectangle_7 caLabel_3 - caFrame_1 caMessageButton_0 caLineEdit_0 caTextEntry_0 diff --git a/opticsApp/op/ui/kohzu.gif b/opticsApp/op/ui/autoconvert/kohzu.gif similarity index 100% rename from opticsApp/op/ui/kohzu.gif rename to opticsApp/op/ui/autoconvert/kohzu.gif diff --git a/opticsApp/op/ui/kohzu2.gif b/opticsApp/op/ui/autoconvert/kohzu2.gif similarity index 100% rename from opticsApp/op/ui/kohzu2.gif rename to opticsApp/op/ui/autoconvert/kohzu2.gif diff --git a/opticsApp/op/ui/kohzu2Graphic.ui b/opticsApp/op/ui/autoconvert/kohzu2Graphic.ui similarity index 59% rename from opticsApp/op/ui/kohzu2Graphic.ui rename to opticsApp/op/ui/autoconvert/kohzu2Graphic.ui index f1c093b..aa622ab 100644 --- a/opticsApp/op/ui/kohzu2Graphic.ui +++ b/opticsApp/op/ui/autoconvert/kohzu2Graphic.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -41,7 +129,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -80,7 +168,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mX).RBV @@ -165,14 +253,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 298 - 222 - 61 - 10 - - 0 @@ -191,7 +271,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} $(P)$(mX) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 298 + 222 + 61 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -207,7 +295,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mX).VAL @@ -324,7 +412,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggThetaRdbkAO @@ -378,7 +466,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggThetaAO @@ -456,14 +544,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 359 - 89 - 61 - 10 - - 0 @@ -482,7 +562,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} $(P)$(mX2) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 359 + 89 + 61 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -498,7 +586,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mX2).RBV @@ -552,7 +640,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mX2).VAL @@ -667,14 +755,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 102 - 29 - 61 - 10 - - 0 @@ -693,7 +773,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} $(P)$(mTH2) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 102 + 29 + 61 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -709,7 +797,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mTH2).RBV @@ -763,7 +851,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mTH2).VAL @@ -814,7 +902,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mCHI2).RBV @@ -868,7 +956,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mCHI2).VAL @@ -913,14 +1001,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 76 - 107 - 61 - 10 - - 0 @@ -939,7 +1019,15 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} $(P)$(mCHI2) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 76 + 107 + 61 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1023,14 +1111,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} QFrame::NoFrame - - - 53 - 283 - 60 - 12 - - 251 @@ -1049,24 +1129,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Theta(Y,Z) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 76 - 91 + 53 + 283 60 - 14 + 12 + + + + QFrame::NoFrame + 0 @@ -1085,24 +1165,24 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Chi - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 102 - 13 + 76 + 91 60 14 + + + + QFrame::NoFrame + 0 @@ -1121,467 +1201,84 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Theta2 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - 213 - 25 - 66 - 40 + 102 + 13 + 60 + 14 - - - - 2 - 12 - 60 - 10 - - - - caLineEdit::Height - - - $(P)$(mZ2).RBV - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - caGraphics::Rectangle - - - - 0 - 0 - 64 - 38 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - QFrame::NoFrame - - - - 2 - 2 - 60 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(P)$(mZ2) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 2 - 22 - 60 - 15 - - - - caLineEdit::Height - - - $(P)$(mZ2).VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - + 215 - 11 + 37 60 - 14 + 10 + + caLineEdit::WidthAndHeight + + + $(P)$(mZ2).RBV + - 0 - 0 - 0 + 42 + 99 + 228 - - 0 - 0 - 0 + + 218 + 218 + 218 - - Z2 + + caLineEdit::Channel - - ESimpleLabel::Height + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - 196 - 166 - 66 - 40 - + + decimal + + + caLineEdit::Static - - - caGraphics::Rectangle - - - - 0 - 0 - 64 - 38 - - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - - - QFrame::NoFrame - - - - 2 - 2 - 60 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(P)$(mY2) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 2 - 12 - 60 - 10 - - - - caLineEdit::Height - - - $(P)$(mY2).RBV - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 2 - 22 - 60 - 15 - - - - caLineEdit::Height - - - $(P)$(mY2).VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - caGraphics::Rectangle - - - - 0 - 0 - 64 - 38 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - QFrame::NoFrame + + + caGraphics::Rectangle - 198 - 152 - 60 - 14 + 213 + 25 + 64 + 38 @@ -1598,28 +1295,21 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} 0 - - Y2 - - - ESimpleLabel::Height + + + 0 + 0 + 0 + - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + Solid - + QFrame::NoFrame - - - 298 - 206 - 60 - 14 - - 0 @@ -1635,27 +1325,38 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - X + $(P)$(mZ2) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 215 + 27 + 60 + 10 + - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - QFrame::NoFrame - + - 359 - 73 + 215 + 47 60 - 14 + 15 + + caLineEdit::WidthAndHeight + + + $(P)$(mZ2).VAL + 0 @@ -1664,255 +1365,604 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - - 0 - 0 - 0 + + 115 + 223 + 255 - - X2 - - - ESimpleLabel::Height + + caLineEdit::Channel - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Z2 + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 215 + 11 + 60 + 14 + + + + + + caGraphics::Rectangle + + + + 196 + 166 + 64 + 38 + + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(P)$(mY2) + + + ESimpleLabel::WidthAndHeight + + + + 198 + 168 + 60 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 198 + 178 + 60 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mY2).RBV + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 198 + 188 + 60 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mY2).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 196 + 166 + 64 + 38 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Y2 + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 198 + 152 + 60 + 14 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + X + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 298 + 206 + 60 + 14 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + X2 + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 359 + 73 + 60 + 14 + - + + + caGraphics::Rectangle + 342 18 - 66 - 40 + 64 + 38 + + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(P)$(mY) + + + ESimpleLabel::WidthAndHeight + + + + 344 + 20 + 61 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 344 + 30 + 61 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mY).RBV + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 344 + 40 + 61 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mY).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 342 + 18 + 64 + 38 - - - caGraphics::Rectangle - - - - 0 - 0 - 64 - 38 - - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - - - QFrame::NoFrame - - - - 2 - 2 - 61 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(P)$(mY) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 2 - 12 - 61 - 10 - - - - caLineEdit::Height - - - $(P)$(mY).RBV - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 2 - 22 - 61 - 15 - - - - caLineEdit::Height - - - $(P)$(mY).VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - caGraphics::Rectangle - - - - 0 - 0 - 64 - 38 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + QFrame::NoFrame - - - 344 - 4 - 60 - 14 - - 0 @@ -1931,11 +1981,19 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Y - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 344 + 4 + 60 + 14 + + @@ -1967,7 +2025,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Solid - 0,0;26,0; + 26,0; @@ -2000,7 +2058,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Solid - 0,0;43,44; + 43,44; @@ -2033,7 +2091,7 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Solid - 3,0;0,27; + 0,27; @@ -2066,265 +2124,255 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} Solid - 0,43;14,0; + 14,0; + + + + + caGraphics::Rectangle + + + + 81 + 212 + 64 + 38 + + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid - + + + caGraphics::Rectangle + 81 + 212 + 64 + 38 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + + 83 + 224 + 61 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mTH).RBV + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(P)$(mTH) + + + ESimpleLabel::WidthAndHeight + + + + 83 + 214 + 61 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 83 + 234 + 61 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mTH).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Theta + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 83 198 - 66 - 54 + 60 + 14 - - - caGraphics::Rectangle - - - - 0 - 14 - 64 - 38 - - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - - - caGraphics::Rectangle - - - - 0 - 14 - 64 - 38 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - - 2 - 26 - 61 - 10 - - - - caLineEdit::Height - - - $(P)$(mTH).RBV - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - QFrame::NoFrame - - - - 2 - 16 - 61 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(P)$(mTH) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 2 - 36 - 61 - 15 - - - - caLineEdit::Height - - - $(P)$(mTH).VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 2 - 0 - 60 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Theta - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - caImage_0 caRectangle_0 @@ -2344,19 +2392,16 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} caLabel_6 caRectangle_8 caLabel_7 - caFrame_0 caLabel_8 caRectangle_9 caLabel_9 caRectangle_10 - caFrame_1 caLabel_10 caLabel_11 caLabel_12 caRectangle_11 caLabel_13 caRectangle_12 - caFrame_2 caLabel_14 caPolyLine_0 caPolyLine_1 @@ -2366,7 +2411,6 @@ QWidget#centralWidget {background: rgba(187, 187, 187, 255);} caRectangle_14 caLabel_15 caLabel_16 - caFrame_3 caMessageButton_0 caLineEdit_0 caTextEntry_0 diff --git a/opticsApp/op/ui/autoconvert/kohzuGraphic.ui b/opticsApp/op/ui/autoconvert/kohzuGraphic.ui new file mode 100644 index 0000000..24892d3 --- /dev/null +++ b/opticsApp/op/ui/autoconvert/kohzuGraphic.ui @@ -0,0 +1,2299 @@ + + +MainWindow + + + + 10 + 10 + 440 + 340 + + + + + +QWidget#centralWidget {background: rgba(187, 187, 187, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + + 0 + 0 + 440 + 340 + + + + kohzu.gif + + + + + + 181 + 281 + 88 + 28 + + + + EPushButton::WidthAndHeight + + + $(P)allstop.VAL + + + + 251 + 243 + 74 + + + + + 253 + 0 + 0 + + + + All Stop + + + 1 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + + + + 38 + 288 + 64 + 40 + + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + + + + 40 + 302 + 60 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)BraggThetaRdbkAO + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 40 + 312 + 60 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)BraggThetaAO + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Theta(Y,Z) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 40 + 290 + 60 + 12 + + + + + + caGraphics::Rectangle + + + + 73 + 232 + 64 + 38 + + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + caGraphics::Rectangle + + + + 73 + 232 + 64 + 38 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + + 75 + 244 + 61 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mTH).RBV + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(P)$(mTH) + + + ESimpleLabel::WidthAndHeight + + + + 75 + 234 + 61 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 75 + 254 + 61 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mTH).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Theta + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 75 + 218 + 60 + 14 + + + + + + caGraphics::Rectangle + + + + 77 + 131 + 64 + 38 + + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + + 79 + 143 + 61 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mCHI2).RBV + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 79 + 153 + 61 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mCHI2).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(P)$(mCHI2) + + + ESimpleLabel::WidthAndHeight + + + + 79 + 133 + 61 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + caGraphics::Rectangle + + + + 77 + 131 + 64 + 38 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Chi + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 79 + 117 + 60 + 14 + + + + + + caGraphics::Rectangle + + + + 160 + 42 + 64 + 38 + + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(P)$(mTH2) + + + ESimpleLabel::WidthAndHeight + + + + 162 + 44 + 61 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 162 + 54 + 61 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mTH2).RBV + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 162 + 64 + 61 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mTH2).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 160 + 42 + 64 + 38 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Theta2 + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 162 + 28 + 60 + 14 + + + + + + + 233 + 85 + 60 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mZ2).RBV + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + caGraphics::Rectangle + + + + 231 + 73 + 64 + 38 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(P)$(mZ2) + + + ESimpleLabel::WidthAndHeight + + + + 233 + 75 + 60 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 233 + 95 + 60 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mZ2).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Z2 + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 233 + 59 + 60 + 14 + + + + + + caGraphics::Rectangle + + + + 374 + 24 + 64 + 38 + + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(P)$(mY) + + + ESimpleLabel::WidthAndHeight + + + + 376 + 26 + 61 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 376 + 36 + 61 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mY).RBV + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 376 + 46 + 61 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mY).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 374 + 24 + 64 + 38 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Y + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 376 + 10 + 60 + 14 + + + + + + caGraphics::Rectangle + + + + 317 + 80 + 64 + 38 + + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(P)$(mX2) + + + ESimpleLabel::WidthAndHeight + + + + 319 + 82 + 61 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 319 + 92 + 61 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mX2).RBV + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 319 + 102 + 61 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mX2).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 317 + 80 + 64 + 38 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + X2 + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 319 + 66 + 60 + 14 + + + + + + + 317 + 254 + 61 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mX).RBV + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + caGraphics::Rectangle + + + + 315 + 242 + 64 + 38 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(P)$(mX) + + + ESimpleLabel::WidthAndHeight + + + + 317 + 244 + 61 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 317 + 264 + 61 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mX).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + X + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 317 + 228 + 60 + 14 + + + + + + caGraphics::Rectangle + + + + 214 + 196 + 64 + 38 + + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(P)$(mY1) + + + ESimpleLabel::WidthAndHeight + + + + 216 + 198 + 60 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 216 + 208 + 60 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mY1).RBV + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 216 + 218 + 60 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mY1).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 214 + 196 + 64 + 38 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Y1 + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 216 + 182 + 60 + 14 + + + + caImage_0 + caRectangle_0 + caLabel_0 + caRectangle_1 + caRectangle_2 + caLabel_1 + caLabel_2 + caRectangle_3 + caLabel_3 + caRectangle_4 + caLabel_4 + caRectangle_5 + caLabel_5 + caRectangle_6 + caLabel_6 + caRectangle_7 + caLabel_7 + caLabel_8 + caRectangle_8 + caLabel_9 + caRectangle_9 + caLabel_10 + caRectangle_10 + caLabel_11 + caRectangle_11 + caLabel_12 + caRectangle_12 + caLabel_13 + caLabel_14 + caRectangle_13 + caLabel_15 + caRectangle_14 + caLabel_16 + caMessageButton_0 + caLineEdit_0 + caTextEntry_0 + caLineEdit_1 + caTextEntry_1 + caLineEdit_2 + caTextEntry_2 + caLineEdit_3 + caTextEntry_3 + caLineEdit_4 + caTextEntry_4 + caLineEdit_5 + caTextEntry_5 + caLineEdit_6 + caTextEntry_6 + caLineEdit_7 + caTextEntry_7 + caLineEdit_8 + caTextEntry_8 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/autoconvert/kohzuGraphicLarge.ui b/opticsApp/op/ui/autoconvert/kohzuGraphicLarge.ui new file mode 100644 index 0000000..4d55162 --- /dev/null +++ b/opticsApp/op/ui/autoconvert/kohzuGraphicLarge.ui @@ -0,0 +1,1853 @@ + + +MainWindow + + + + 10 + 10 + 880 + 680 + + + + + +QWidget#centralWidget {background: rgba(187, 187, 187, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + + 0 + 0 + 880 + 680 + + + + kohzu.gif + + + + + + 454 + 197 + 40 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mZ2).RBV + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 474 + 207 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mZ2).JOGF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 454 + 207 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mZ2).JOGR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + 0 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + + + + 453 + 196 + 42 + 32 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(P)$(mZ2) + + + ESimpleLabel::WidthAndHeight + + + + 453 + 186 + 40 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 390 + 354 + 40 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mY1).RBV + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 410 + 364 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mY1).JOGF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 390 + 364 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mY1).JOGR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + 0 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + + + + 389 + 353 + 42 + 32 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(P)$(mY1) + + + ESimpleLabel::WidthAndHeight + + + + 390 + 343 + 40 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 209 + 444 + 40 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mTH).RBV + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 229 + 454 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mTH).JOGF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 209 + 454 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mTH).JOGR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + 0 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + + + + 208 + 443 + 42 + 32 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(P)$(mTH) + + + ESimpleLabel::WidthAndHeight + + + + 209 + 433 + 40 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 288 + 244 + 40 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mCHI2).RBV + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 308 + 254 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mCHI2).JOGF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 288 + 254 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mCHI2).JOGR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + 0 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + + + + 287 + 243 + 42 + 32 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(P)$(mCHI2) + + + ESimpleLabel::WidthAndHeight + + + + 288 + 233 + 40 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 321 + 134 + 40 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mTH2).RBV + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 341 + 144 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mTH2).JOGF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 321 + 144 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mTH2).JOGR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + 0 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + + + + 320 + 133 + 42 + 32 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(P)$(mTH2) + + + ESimpleLabel::WidthAndHeight + + + + 321 + 123 + 40 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 736 + 211 + 40 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mX2).RBV + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 756 + 221 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mX2).JOGF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 736 + 221 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mX2).JOGR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + 0 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + + + + 735 + 210 + 42 + 32 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(P)$(mX2) + + + ESimpleLabel::WidthAndHeight + + + + 736 + 200 + 40 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 751 + 35 + 40 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mY).RBV + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 771 + 45 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mY).JOGF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 751 + 45 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mY).JOGR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + 0 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + + + + 750 + 34 + 42 + 32 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(P)$(mY) + + + ESimpleLabel::WidthAndHeight + + + + 751 + 24 + 40 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 544 + 460 + 40 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mX).RBV + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 564 + 470 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mX).JOGF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 544 + 470 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(mX).JOGR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + 0 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + + + + 543 + 459 + 42 + 32 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(P)$(mX) + + + ESimpleLabel::WidthAndHeight + + + + 544 + 449 + 40 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + caImage_0 + caRectangle_0 + caLabel_0 + caRectangle_1 + caLabel_1 + caRectangle_2 + caLabel_2 + caRectangle_3 + caLabel_3 + caRectangle_4 + caLabel_4 + caRectangle_5 + caLabel_5 + caRectangle_6 + caLabel_6 + caRectangle_7 + caLabel_7 + caLineEdit_0 + caMessageButton_0 + caMessageButton_1 + caLineEdit_1 + caMessageButton_2 + caMessageButton_3 + caLineEdit_2 + caMessageButton_4 + caMessageButton_5 + caLineEdit_3 + caMessageButton_6 + caMessageButton_7 + caLineEdit_4 + caMessageButton_8 + caMessageButton_9 + caLineEdit_5 + caMessageButton_10 + caMessageButton_11 + caLineEdit_6 + caMessageButton_12 + caMessageButton_13 + caLineEdit_7 + caMessageButton_14 + caMessageButton_15 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/kohzuSeqCtl.ui b/opticsApp/op/ui/autoconvert/kohzuSeqCtl.ui similarity index 81% rename from opticsApp/op/ui/kohzuSeqCtl.ui rename to opticsApp/op/ui/autoconvert/kohzuSeqCtl.ui index 2eb147f..40a3848 100644 --- a/opticsApp/op/ui/kohzuSeqCtl.ui +++ b/opticsApp/op/ui/autoconvert/kohzuSeqCtl.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -55,14 +143,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 105 - 105 - 10 - - 0 @@ -81,11 +161,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} SCAN CONTROL - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 105 + 105 + 10 + + @@ -97,7 +185,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -136,7 +224,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)BraggE:scanParms.GO @@ -175,7 +263,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)BraggE:scanParms.LOAD @@ -276,7 +364,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;1,138; + 1,138; @@ -318,7 +406,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)KohzuModeBO.VAL - 0,0;0,15;15,7;0,0; + 0,0; caPolyLine::Polygon @@ -334,7 +422,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)KohzuZRdbkAI @@ -356,6 +444,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -373,7 +476,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)KohzuZCmdAO @@ -395,6 +498,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -412,7 +530,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)KohzuZPvSI @@ -434,6 +552,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -497,7 +630,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)KohzuThetaRdbkAI @@ -519,6 +652,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -536,7 +684,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)KohzuThetaCmdAO @@ -558,6 +706,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -575,7 +738,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)KohzuThetaPvSI @@ -597,6 +760,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -654,14 +832,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 290 - 17 - 80 - 15 - - 0 @@ -680,24 +850,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Theta - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 450 + 290 17 - 70 + 80 15 + + + + QFrame::NoFrame + 0 @@ -716,11 +886,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Z - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 450 + 17 + 70 + 15 + + @@ -761,147 +939,137 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)KohzuPutBO.VAL - 0,0;0,15;15,7;0,0; + 0,0; caPolyLine::Polygon - + + + QFrame::NoFrame + + + + 10 + 0 + 184 + + + + + 10 + 0 + 184 + + + + caLabel::IfNotZero + + + $(P)KohzuMoving + + + Moving + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 431 + 89 + 100 + 26 + + + + + + QFrame::NoFrame + + + + 10 + 0 + 184 + + + + + 10 + 0 + 184 + + + + caLabel::IfNotZero + + + $(P)KohzuMoving + + + Moving + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 432 + 90 + 100 + 26 + + + + + + QFrame::NoFrame + + + + 153 + 255 + 255 + + + + + 153 + 255 + 255 + + + + caLabel::IfNotZero + + + $(P)KohzuMoving + + + Moving + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + 430 88 - 104 - 30 - - - - - QFrame::NoFrame - - - - 1 - 1 - 100 - 26 - - - - - 10 - 0 - 184 - - - - - 10 - 0 - 184 - - - - caLabel::IfNotZero - - - $(P)KohzuMoving - - - Moving - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 2 - 2 - 100 - 26 - - - - - 10 - 0 - 184 - - - - - 10 - 0 - 184 - - - - caLabel::IfNotZero - - - $(P)KohzuMoving - - - Moving - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 0 - 100 - 26 - - - - - 153 - 255 - 255 - - - - - 153 - 255 - 255 - - - - caLabel::IfNotZero - - - $(P)KohzuMoving - - - Moving - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - + 100 + 26 + + @@ -940,14 +1108,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 295 - 97 - 100 - 14 - - 45 @@ -966,7 +1126,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Calibration: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 295 + 97 + 100 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -982,7 +1150,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -1044,7 +1212,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;1,138; + 1,138; @@ -1126,7 +1294,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;523,1; + 523,1; @@ -1172,7 +1340,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)KohzuOperAckBO @@ -1253,7 +1421,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)KohzuSeqMsg1SI @@ -1275,6 +1443,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -1292,7 +1475,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)KohzuSeqMsg2SI @@ -1314,6 +1497,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -1364,14 +1562,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 475 - 178 - 40 - 20 - - 0 @@ -1390,7 +1580,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} More - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 475 + 178 + 40 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1400,14 +1598,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 143 - 40 - 18 - - 45 @@ -1426,7 +1616,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Mode: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 143 + 40 + 18 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1472,7 +1670,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)KohzuPutBO @@ -1505,14 +1703,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 110 - 0 - 100 - 20 - - 0 @@ -1531,11 +1721,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} TH (deg.) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 110 + 0 + 100 + 20 + + @@ -1547,7 +1745,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggThetaRdbkAO @@ -1566,6 +1764,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 200 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1586,7 +1799,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggThetaAO.VAL @@ -1605,6 +1818,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1622,7 +1850,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)BraggThetaIncBO.VAL @@ -1661,7 +1889,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggThetaTweakAI @@ -1680,6 +1908,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1697,7 +1940,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)BraggThetaDecBO.VAL @@ -1736,7 +1979,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggThetaAO.DRVH @@ -1758,6 +2001,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -1775,7 +2033,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggThetaAO.DRVL @@ -1797,6 +2055,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -1814,7 +2087,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggERdbkAO @@ -1833,6 +2106,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 200 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1853,7 +2141,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggEAO.VAL @@ -1872,6 +2160,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1889,7 +2192,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)BraggEIncBO.VAL @@ -1928,7 +2231,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggETweakAI @@ -1947,6 +2250,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1964,7 +2282,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)BraggEDecBO.VAL @@ -2003,7 +2321,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggEAO.DRVL @@ -2025,6 +2343,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -2042,7 +2375,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggEAO.DRVH @@ -2064,6 +2397,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -2075,14 +2423,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 0 - 100 - 20 - - 0 @@ -2101,11 +2441,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} E (keV) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 5 + 0 + 100 + 20 + + @@ -2186,14 +2534,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 110 - 105 - 105 - 10 - - 0 @@ -2212,11 +2552,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} SCAN CONTROL - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 110 + 105 + 105 + 10 + + @@ -2228,7 +2576,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -2267,7 +2615,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)BraggTheta:scanParms.GO @@ -2306,7 +2654,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)BraggTheta:scanParms.LOAD @@ -2378,14 +2726,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 290 - 0 - 230 - 20 - - 0 @@ -2404,11 +2744,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Monochromator Motors - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 290 + 0 + 230 + 20 + + @@ -2420,7 +2768,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)KohzuYRdbkAI @@ -2442,6 +2790,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -2459,7 +2822,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)KohzuYCmdAO @@ -2481,6 +2844,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -2498,7 +2876,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)KohzuYPvSI @@ -2520,6 +2898,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -2577,14 +2970,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 375 - 17 - 70 - 14 - - 0 @@ -2603,11 +2988,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Y - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 375 + 17 + 70 + 14 + + @@ -2643,7 +3036,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;0,54; + 0,54; @@ -2680,7 +3073,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;0,54; + 0,54; caRectangle_0 @@ -2695,7 +3088,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLabel_3 caLabel_4 caLabel_5 - caFrame_0 caLabel_6 caPolyLine_1 caRectangle_3 diff --git a/opticsApp/op/ui/kohzuSeqCtl_All.ui b/opticsApp/op/ui/autoconvert/kohzuSeqCtl_All.ui similarity index 76% rename from opticsApp/op/ui/kohzuSeqCtl_All.ui rename to opticsApp/op/ui/autoconvert/kohzuSeqCtl_All.ui index 0da27ba..524adbc 100644 --- a/opticsApp/op/ui/kohzuSeqCtl_All.ui +++ b/opticsApp/op/ui/autoconvert/kohzuSeqCtl_All.ui @@ -4,10 +4,10 @@ - 10 - 10 + 901 + 617 535 - 342 + 365 @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -100,14 +188,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 5 - 10 - 20 - - 0 @@ -126,7 +206,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} H - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 5 + 10 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -142,7 +230,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggHAO.VAL @@ -161,6 +249,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -172,14 +275,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 43 - 5 - 10 - 20 - - 0 @@ -198,7 +293,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} K - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 43 + 5 + 10 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -214,7 +317,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggKAO.VAL @@ -233,6 +336,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -244,14 +362,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 81 - 5 - 10 - 20 - - 0 @@ -270,7 +380,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} L - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 81 + 5 + 10 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -286,7 +404,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggLAO.VAL @@ -305,6 +423,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -316,14 +449,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 9 - 25 - 20 - 20 - - 0 @@ -342,7 +467,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} a - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 9 + 25 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -358,7 +491,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggAAO.VAL @@ -377,6 +510,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -388,14 +536,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 9 - 48 - 20 - 20 - - 0 @@ -414,7 +554,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 2d - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 9 + 48 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -430,7 +578,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)Bragg2dSpacingAO @@ -449,6 +597,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -460,14 +623,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 110 - 123 - 90 - 20 - - 0 @@ -486,24 +641,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Theta - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 300 + 110 123 90 20 + + + + QFrame::NoFrame + 0 @@ -522,11 +677,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Z - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 300 + 123 + 90 + 20 + + @@ -568,7 +731,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)KohzuPutBO @@ -601,14 +764,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 347 - 1 - 100 - 20 - - 0 @@ -627,11 +782,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} TH (deg.) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 347 + 1 + 100 + 20 + + @@ -643,7 +806,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggThetaRdbkAO @@ -662,6 +825,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 200 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -682,7 +860,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggThetaAO.VAL @@ -701,6 +879,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -718,7 +911,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)BraggThetaIncBO.VAL @@ -757,7 +950,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggThetaTweakAI @@ -776,6 +969,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -793,7 +1001,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)BraggThetaDecBO.VAL @@ -832,7 +1040,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggThetaAO.DRVH @@ -854,6 +1062,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -871,7 +1094,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggThetaAO.DRVL @@ -893,6 +1116,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -910,7 +1148,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggLambdaAO.DRVL @@ -932,6 +1170,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -949,7 +1202,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggEAO.DRVL @@ -971,6 +1224,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -988,7 +1256,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggLambdaRdbkAO @@ -1007,6 +1275,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 200 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1027,7 +1310,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggLambdaAO.VAL @@ -1046,6 +1329,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1063,7 +1361,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)BraggLambdaIncBO.VAL @@ -1102,7 +1400,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggLambdaTweakAI @@ -1121,6 +1419,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1138,7 +1451,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)BraggLambdaDecBO.VAL @@ -1177,7 +1490,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggLambdaAO.DRVH @@ -1196,6 +1509,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 200 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1216,7 +1544,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggEAO.VAL @@ -1235,6 +1563,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1252,7 +1595,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggETweakAI @@ -1271,6 +1614,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1288,7 +1646,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)BraggEDecBO.VAL @@ -1327,7 +1685,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)BraggEIncBO.VAL @@ -1366,7 +1724,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggEAO.DRVH @@ -1388,6 +1746,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -1405,7 +1778,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)BraggERdbkAO @@ -1424,6 +1797,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 200 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1438,14 +1826,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 237 - 1 - 100 - 20 - - 0 @@ -1464,28 +1844,28 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} lambda (A) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 127 + 237 1 100 20 - - - 0 - 0 + + + + QFrame::NoFrame + + + + 0 + 0 0 @@ -1500,24 +1880,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} E (keV) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 127 + 1 + 100 + 20 + + QFrame::NoFrame - - - 400 - 205 - 50 - 14 - - 45 @@ -1536,7 +1916,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Speed - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 400 + 205 + 50 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1546,14 +1934,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 400 - 190 - 50 - 14 - - 45 @@ -1572,7 +1952,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Ideal - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 400 + 190 + 50 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1582,14 +1970,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 400 - 155 - 50 - 14 - - 45 @@ -1608,7 +1988,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Actual Pos. - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 400 + 155 + 50 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1618,14 +2006,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 400 - 173 - 50 - 14 - - 45 @@ -1644,7 +2024,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Motor Command - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 400 + 173 + 50 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1654,14 +2042,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 460 - 80 - 75 - 14 - - 236 @@ -1680,7 +2060,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Low Limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 460 + 80 + 75 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1690,14 +2078,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 460 - 60 - 75 - 14 - - 236 @@ -1716,7 +2096,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Desired - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 460 + 60 + 75 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1726,14 +2114,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 460 - 38 - 75 - 14 - - 236 @@ -1752,7 +2132,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Actual - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 460 + 38 + 75 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1762,14 +2150,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 460 - 20 - 75 - 14 - - 236 @@ -1788,7 +2168,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} High Limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 460 + 20 + 75 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1831,7 +2219,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;535,1; + 535,1; @@ -1844,7 +2232,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)KohzuThetaRdbkAI @@ -1863,6 +2251,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 200 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1883,7 +2286,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)KohzuYRdbkAI @@ -1902,6 +2305,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 200 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1922,7 +2340,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)KohzuZRdbkAI @@ -1941,6 +2359,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 200 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1961,7 +2394,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -2040,7 +2473,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)KohzuZSetAO @@ -2059,6 +2492,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 200 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2079,7 +2527,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)KohzuYSetAO @@ -2098,6 +2546,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 200 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2118,7 +2581,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)KohzuThetaSetAO @@ -2137,6 +2600,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 200 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2147,125 +2625,115 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLineEdit::Static - + + + caGraphics::Arc + + + + 100 + 180 + 25 + 18 + + + + + 100 + 180 + 25 + 18 + + + + 2 + + + + 225 + 144 + 21 + + + + + 225 + 144 + 21 + + + + + 225 + 144 + 21 + + + + Solid + 100 + 180 + 25 + 18 + + + + 90 + + + + 100 + 180 + 25 + 18 + + + + 180 + + + + + + 107 177 - 27 - 23 - - - - - caGraphics::Arc - - - - 0 - 3 - 25 - 18 - - - - - 0 - 3 - 25 - 18 - - - - 2 - - - - 225 - 144 - 21 - - - - - 225 - 144 - 21 - - - - - 225 - 144 - 21 - - - - Solid - - - - 0 - 3 - 25 - 18 - - - - 90 - - - - 0 - 3 - 25 - 18 - - - - 180 - - - - - - 7 - 0 - 8 - 10 - - - - 2 - - - - 225 - 144 - 21 - - - - - 225 - 144 - 21 - - - - - 225 - 144 - 21 - - - - Solid - - - 1,1;7,4;1,9; - - + 8 + 10 + + + + 2 + + + + 225 + 144 + 21 + + + + + 225 + 144 + 21 + + + + + 225 + 144 + 21 + + + + Solid + + + 1,9; + @@ -2304,7 +2772,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Dash - 19,1;1,1; + 1,1; @@ -2353,7 +2821,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)KohzuSeqMsg1SI @@ -2375,6 +2843,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -2419,7 +2902,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;535,1; + 535,1; @@ -2432,7 +2915,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)KohzuSeqMsg2SI @@ -2454,6 +2937,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -2471,7 +2969,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)KohzuOperAckBO @@ -2526,21 +3024,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 - - caMenu::Static - - - - - QFrame::NoFrame - - - - 215 - 122 - 90 - 20 - + + caMenu::Static + + + + + QFrame::NoFrame @@ -2560,11 +3050,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Y - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 215 + 122 + 90 + 20 + + @@ -2576,7 +3074,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)KohzuThetaPvSI @@ -2598,6 +3096,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -2615,7 +3128,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)KohzuYPvSI @@ -2637,6 +3150,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -2654,7 +3182,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)KohzuZPvSI @@ -2676,6 +3204,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -2687,14 +3230,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 401 - 138 - 50 - 14 - - 45 @@ -2713,7 +3248,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Motor PV - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 401 + 138 + 50 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2729,7 +3272,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)KohzuZVelAI @@ -2751,6 +3294,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -2768,7 +3326,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)KohzuYVelAI @@ -2790,6 +3348,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -2807,7 +3380,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)KohzuThetaVelAI @@ -2829,6 +3402,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -2876,7 +3464,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)KohzuZCmdAO @@ -2898,6 +3486,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -2915,7 +3518,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)KohzuYCmdAO @@ -2937,6 +3540,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -2954,7 +3572,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)KohzuThetaCmdAO @@ -2976,6 +3594,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -3158,14 +3791,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 244 - 100 - 14 - - 45 @@ -3184,7 +3809,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Calibration: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 244 + 100 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3194,14 +3827,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 445 - 230 - 88 - 22 - - 153 @@ -3226,16 +3851,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Moving - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 445 @@ -3244,6 +3864,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 22 + + + + QFrame::NoFrame + 0 @@ -3268,106 +3893,111 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Done - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 445 + 230 + 88 + 22 + + - + - 119 + 181 263 - 124 - 22 + 60 + 20 - - - - 62 - 0 - 60 - 20 - - - - caLineEdit::Height - - - $(P)Kohzu_yOffsetAO.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 0 - 3 - 65 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - y offset: - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - + + caLineEdit::WidthAndHeight + + + $(P)Kohzu_yOffsetAO.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + - + QFrame::NoFrame + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + y offset: + + + ESimpleLabel::WidthAndHeight + - 107 - 230 - 150 - 9 + 119 + 266 + 65 + 14 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 45 @@ -3386,16 +4016,47 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Channel Cut inhibits - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 107 + 230 + 150 + 9 + + QFrame::NoFrame + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + Y1 and Z2 motors + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + 108 @@ -3404,6 +4065,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 9 + + + + QFrame::NoFrame + 45 @@ -3419,13 +4085,54 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - Y1 and Z2 motors + Speed Control: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 20 + 345 + 100 + 14 + - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 125 + 344 + 150 + 22 + + + + $(P)KohzuSpeedCtrl + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Column + + + caChoice::Static caRectangle_0 @@ -3452,7 +4159,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caRectangle_2 caArc_0 caPolyLine_1 - caFrame_0 caPolyLine_2 caRectangle_3 caPolyLine_3 @@ -3465,9 +4171,9 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLabel_21 caLabel_22 caLabel_23 - caFrame_1 caLabel_24 caLabel_25 + caLabel_26 caTextEntry_0 caTextEntry_1 caTextEntry_2 @@ -3519,6 +4225,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLineEdit_25 caChoice_2 caTextEntry_11 + caChoice_3 \ No newline at end of file diff --git a/opticsApp/op/ui/kohzu2SeqCtl.ui b/opticsApp/op/ui/autoconvert/kohzuSeqCtl_soft.ui similarity index 78% rename from opticsApp/op/ui/kohzu2SeqCtl.ui rename to opticsApp/op/ui/autoconvert/kohzuSeqCtl_soft.ui index cf1b2f9..54afa0d 100644 --- a/opticsApp/op/ui/kohzu2SeqCtl.ui +++ b/opticsApp/op/ui/autoconvert/kohzuSeqCtl_soft.ui @@ -5,7 +5,7 @@ 10 - 10 + 25 525 200 @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -55,14 +143,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 105 - 105 - 10 - - 0 @@ -81,11 +161,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} SCAN CONTROL - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 105 + 105 + 10 + + @@ -97,7 +185,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -136,10 +224,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight - $(P)BraggE:scanParms.GO + $(P)$(MONO)E:scanParms.GO @@ -175,10 +263,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight - $(P)BraggE:scanParms.LOAD + $(P)$(MONO)E:scanParms.LOAD @@ -237,7 +325,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} scanParms.adl - P=$(P),Q=BraggE,PV=BraggEAO + P=$(P),Q=$(MONO)E,PV=$(MONO)E false @@ -276,7 +364,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;1,138; + 1,138; @@ -315,10 +403,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caPolyLine::IfNotZero - $(P)KohzuModeBO.VAL + $(P)$(MONO)Mode.VAL - 0,0;0,15;15,7;0,0; + 0,0; caPolyLine::Polygon @@ -334,10 +422,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)KohzuZ2RdbkAI + $(P)$(MONO)ZRdbk @@ -356,6 +444,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -373,10 +476,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)KohzuZ2CmdAO + $(P)$(MONO)ZCmd @@ -395,6 +498,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -412,10 +530,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)KohzuZ2PvSI + $(P)$(MONO)ZPv @@ -434,6 +552,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -484,7 +617,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caGraphics::IfZero - $(P)KohzuZ2DmovBI + $(P)$(MONO)ZDmov @@ -497,10 +630,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)KohzuThetaRdbkAI + $(P)$(MONO)ThetaMotRdbk @@ -519,6 +652,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -536,10 +684,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)KohzuThetaCmdAO + $(P)$(MONO)ThetaCmd @@ -558,6 +706,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -575,10 +738,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)KohzuThetaPvSI + $(P)$(MONO)ThetaPv @@ -597,6 +760,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -647,62 +825,48 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caGraphics::IfZero - $(P)KohzuThetaDmovBI + $(P)$(MONO)ThetaDmov - - - - 376 - 42 - 67 - 15 - - - - caLineEdit::Height - - - $(P)KohzuY2RdbkAI + + + QFrame::NoFrame - 10 + 0 0 - 184 + 0 - - 200 - 200 - 200 + + 0 + 0 + 0 - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + Theta - - decimal + + ESimpleLabel::WidthAndHeight - - caLineEdit::Static + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - 376 - 57 - 67 + 290 + 17 + 80 15 - - caLineEdit::Height - - - $(P)KohzuY2CmdAO + + + + QFrame::NoFrame @@ -712,300 +876,162 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - - 115 - 223 - 255 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 375 - 32 - 70 - 10 - - - - caLineEdit::Height - - - $(P)KohzuY2PvSI - - - + 0 0 0 - - - 200 - 200 - 200 - + + Z + + + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - decimal - - - caLineEdit::Static + + + 450 + 17 + 70 + 15 + - - - caGraphics::Rectangle - + - 375 - 42 - 70 - 32 + 275 + 55 + 15 + 15 - 2 + 1 - 115 + 153 255 - 107 + 255 - - - 115 - 255 - 107 - + + Filled - 115 + 153 255 - 107 + 255 Solid - caGraphics::IfZero + caPolyLine::IfNotZero - $(P)KohzuY2DmovBI + $(P)$(MONO)Put.VAL + + + 0,0; + + + caPolyLine::Polygon - + QFrame::NoFrame - - - 290 - 17 - 80 - 15 - - - 0 + 10 0 - 0 + 184 - 0 + 10 0 - 0 + 184 + + caLabel::IfNotZero + + + $(P)$(MONO)Moving + - Theta + Moving - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 450 - 17 - 70 - 15 + 431 + 89 + 100 + 26 + + + + QFrame::NoFrame + - 0 + 10 0 - 0 + 184 - 0 + 10 0 - 0 + 184 + + caLabel::IfNotZero + + + $(P)$(MONO)Moving + - Z2 + Moving - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - - - 375 - 17 - 70 - 15 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Y2 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 372 - 20 - 1 - 54 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - 0,0;0,54; - - - - 447 - 20 - 1 - 54 + 432 + 90 + 100 + 26 - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - 0,0;0,54; - - - - - 275 - 55 - 15 - 15 - - - - 1 + + + QFrame::NoFrame @@ -1014,167 +1040,36 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 - - Filled - - - + + 153 255 255 - - Solid - - caPolyLine::IfNotZero + caLabel::IfNotZero - $(P)KohzuPutBO.VAL + $(P)$(MONO)Moving - - 0,0;0,15;15,7;0,0; + + Moving - - caPolyLine::Polygon + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - 430 88 - 104 - 30 - - - - - QFrame::NoFrame - - - - 1 - 1 - 100 - 26 - - - - - 10 - 0 - 184 - - - - - 10 - 0 - 184 - - - - caLabel::IfNotZero - - - $(P)KohzuMovingBO - - - Moving - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 2 - 2 - 100 - 26 - - - - - 10 - 0 - 184 - - - - - 10 - 0 - 184 - - - - caLabel::IfNotZero - - - $(P)KohzuMovingBO - - - Moving - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 0 - 100 - 26 - - - - - 153 - 255 - 255 - - - - - 153 - 255 - 255 - - - - caLabel::IfNotZero - - - $(P)KohzuMovingBO - - - Moving - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - + 100 + 26 + + @@ -1186,7 +1081,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - $(P)KohzuUseSetBO.VAL + $(P)$(MONO)UseSet.VAL @@ -1209,18 +1104,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caChoice::Static - + QFrame::NoFrame - - - 295 - 97 - 100 - 14 - - 45 @@ -1239,7 +1126,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Calibration: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 295 + 97 + 100 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1255,7 +1150,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -1284,7 +1179,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caMessageButton::Static - + 215 @@ -1317,10 +1212,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;1,138; + 1,138; - + caGraphics::Rectangle @@ -1359,10 +1254,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caGraphics::IfNotZero - $(P)KohzuPutBO.VAL + $(P)$(MONO)Put.VAL - + -1 @@ -1399,7 +1294,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;523,1; + 523,1; @@ -1412,7 +1307,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - $(P)KohzuMode2MO.VAL + $(P)$(MONO)Mode2.VAL @@ -1445,10 +1340,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight - $(P)KohzuOperAckBO + $(P)$(MONO)OperAck @@ -1474,7 +1369,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caMessageButton::Static - + caGraphics::Rectangle @@ -1513,10 +1408,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caGraphics::IfNotZero - $(P)KohzuAlertBO + $(P)$(MONO)Alert - + 3 @@ -1526,10 +1421,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)KohzuSeqMsg1SI + $(P)$(MONO)SeqMsg1 @@ -1548,6 +1443,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -1555,7 +1465,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLineEdit::Static - + 3 @@ -1565,10 +1475,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)KohzuSeqMsg2SI + $(P)$(MONO)SeqMsg2 @@ -1587,6 +1497,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -1621,30 +1546,22 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Menu - Kohzu Graphic;Kohzu Graphic (L);KohzuSeq;Energy-scan parameters;Theta-scan parameters;Wavelength-scan parameters + Kohzu Graphic;Kohzu Graphic (L);KohzuSeq (tiny);KohzuSeq (all);Energy-scan parameters;Theta-scan parameters;Wavelength-scan parameters - kohzu2Graphic.adl;kohzu2GraphicLarge.adl;kohzu2SeqCtl.adl;scanParms.adl;scanParms.adl;scanParms.adl + kohzuGraphic.adl;kohzuGraphicLarge.adl;kohzuSeqCtl_soft_tiny.adl;kohzuSeqCtl_soft_All.adl;scanParms.adl;scanParms.adl;scanParms.adl - P=$(P),mTH=m9,mY1=m10,mZ2=m11,mCHI2=m12,mTH2=m13,mX=m14,mY=m15,mX2=m16,QE=BraggE,PVE=BraggEAO,QL=BraggLambda,PVL=BraggLambdaAO,QTh=BraggTheta,PVTh=BraggThetaAO;P=$(P),mTH=m9,mY1=m10,mZ2=m11,mCHI2=m12,mTH2=m13,mX=m14,mY=m15,mX2=m16,QE=BraggE,PVE=BraggEAO,QL=BraggLambda,PVL=BraggLambdaAO,QTh=BraggTheta,PVTh=BraggThetaAO;P=$(P);P=$(P),Q=BraggE,PV=BraggEAO;P=$(P),Q=BraggTheta,PV=BraggThetaAO;P=$(P),Q=BraggLambda,PV=BraggLambdaAO + P=$(P),mTH=$(mTH),mY=$(mY),mZ=$(mZ),mCHI2=$(mCHI2),mTH2=$(mTH2),mX2=$(mX2),QE=BraggE,PVE=BraggEAO,QL=BraggLambda,PVL=BraggLambdaAO,QTh=BraggTheta,PVTh=BraggTheta;P=$(P),mTH=$(mTH),mY=$(mY),mZ=$(mZ),mCHI2=$(mCHI2),mTH2=$(mTH2),mX2=$(mX2),QE=BraggE,PVE=BraggEAO,QL=BraggLambda,PVL=BraggLambdaAO,QTh=BraggTheta,PVTh=BraggTheta;P=$(P),MONO=$(MONO,mTH=$(mTH),mY=$(mY),mZ=$(mZ),mCHI2=$(mCHI2),mTH2=$(mTH2),mX2=$(mX2);P=$(P),MONO=$(MONO)mTH=$(mTH),mY=$(mY),mZ=$(mZ),mCHI2=$(mCHI2),mTH2=$(mTH2),mX2=$(mX2);P=$(P),Q=BraggE,PV=BraggE;P=$(P),Q=BraggTheta,PV=BraggTheta;P=$(P),Q=BraggLambda,PV=BraggLambda - false;false;false;false;false;false + false;false;false;false;false;false;false - + QFrame::NoFrame - - - 475 - 178 - 40 - 20 - - 0 @@ -1663,24 +1580,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} More - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 475 + 178 + 40 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + QFrame::NoFrame - - - 5 - 143 - 40 - 18 - - 45 @@ -1699,7 +1616,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Mode: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 143 + 40 + 18 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1715,7 +1640,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - $(P)KohzuModeBO.VAL + $(P)$(MONO)Mode.VAL @@ -1745,10 +1670,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight - $(P)KohzuPutBO + $(P)$(MONO)Put @@ -1774,18 +1699,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caMessageButton::Static - + QFrame::NoFrame - - - 110 - 0 - 100 - 20 - - 0 @@ -1804,13 +1721,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} TH (deg.) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 110 + 0 + 100 + 20 + + - + 110 @@ -1820,10 +1745,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)BraggThetaRdbkAO + $(P)$(MONO)Theta.RBV @@ -1839,6 +1764,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 200 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1859,10 +1799,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)BraggThetaAO.VAL + $(P)$(MONO)Theta.VAL @@ -1878,6 +1818,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1895,10 +1850,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight - $(P)BraggThetaIncBO.VAL + $(P)$(MONO)Theta.TWF @@ -1934,10 +1889,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)BraggThetaTweakAI + $(P)$(MONO)Theta.TWV @@ -1953,6 +1908,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1970,10 +1940,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight - $(P)BraggThetaDecBO.VAL + $(P)$(MONO)Theta.TWR @@ -1999,7 +1969,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caMessageButton::Static - + 110 @@ -2009,10 +1979,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)BraggThetaAO.DRVH + $(P)$(MONO)Theta.HLM @@ -2031,6 +2001,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -2038,7 +2023,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLineEdit::Static - + 110 @@ -2048,10 +2033,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)BraggThetaAO.DRVL + $(P)$(MONO)Theta.LLM @@ -2070,14 +2055,29 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - decimal + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal caLineEdit::Static - + 5 @@ -2087,10 +2087,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)BraggERdbkAO + $(P)$(MONO)E.RBV @@ -2106,6 +2106,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 200 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2126,10 +2141,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)BraggEAO.VAL + $(P)$(MONO)E.VAL @@ -2145,6 +2160,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -2162,10 +2192,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight - $(P)BraggEIncBO.VAL + $(P)$(MONO)E.TWF @@ -2201,10 +2231,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)BraggETweakAI + $(P)$(MONO)E.TWV @@ -2220,6 +2250,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -2237,10 +2282,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight - $(P)BraggEDecBO.VAL + $(P)$(MONO)E.TWR @@ -2266,7 +2311,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caMessageButton::Static - + 5 @@ -2276,10 +2321,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)BraggEAO.DRVL + $(P)$(MONO)E.LLM @@ -2298,6 +2343,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -2305,7 +2365,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLineEdit::Static - + 5 @@ -2315,10 +2375,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)BraggEAO.DRVH + $(P)$(MONO)E.HLM @@ -2337,6 +2397,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -2344,18 +2419,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLineEdit::Static - + QFrame::NoFrame - - - 5 - 0 - 100 - 20 - - 0 @@ -2374,13 +2441,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} E (keV) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 5 + 0 + 100 + 20 + + - + caGraphics::Rectangle @@ -2419,10 +2494,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caGraphics::IfNotZero - $(P)KohzuModeBO.VAL + $(P)$(MONO)Mode.VAL - + caGraphics::Rectangle @@ -2455,18 +2530,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - + QFrame::NoFrame - - - 110 - 105 - 105 - 10 - - 0 @@ -2485,11 +2552,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} SCAN CONTROL - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 110 + 105 + 105 + 10 + + @@ -2501,7 +2576,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -2540,10 +2615,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight - $(P)BraggTheta:scanParms.GO + $(P)$(MONO)Theta:scanParms.GO @@ -2579,10 +2654,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight - $(P)BraggTheta:scanParms.LOAD + $(P)$(MONO)Theta:scanParms.LOAD @@ -2641,16 +2716,39 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} scanParms.adl - P=$(P),Q=BraggTheta,PV=BraggThetaAO + P=$(P),Q=$(MONO)Theta,PV=$(MONO)Theta false - + QFrame::NoFrame + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Monochromator Motors + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + 290 @@ -2659,6 +2757,219 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 20 + + + + + 376 + 43 + 67 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(MONO)YRdbk + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 376 + 57 + 67 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(MONO)YCmd + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 375 + 32 + 70 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(MONO)YPv + + + + 0 + 0 + 0 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + caGraphics::Rectangle + + + + 375 + 42 + 70 + 32 + + + + 2 + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(MONO)YDmov + + + + + QFrame::NoFrame + 0 @@ -2674,14 +2985,96 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - Monochromator Motors + Y - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 375 + 17 + 70 + 14 + + + + + + + 372 + 20 + 1 + 54 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 0,54; + + + + + + 447 + 20 + 1 + 54 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 0,54; + caRectangle_0 caLabel_0 @@ -2689,30 +3082,29 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caPolygon_0 caRectangle_1 caRectangle_2 - caRectangle_3 caLabel_1 caLabel_2 - caLabel_3 - caPolyLine_1 - caPolyLine_2 caPolygon_1 + caLabel_3 caLabel_4 caLabel_5 caLabel_6 - caFrame_0 - caLabel_7 - caPolyLine_3 + caPolyLine_1 + caRectangle_3 + caPolyLine_2 caRectangle_4 - caPolyLine_4 - caRectangle_5 + caLabel_7 caLabel_8 caLabel_9 caLabel_10 - caLabel_11 + caRectangle_5 caRectangle_6 - caRectangle_7 + caLabel_11 caLabel_12 + caRectangle_7 caLabel_13 + caPolyLine_3 + caPolyLine_4 caMessageButton_0 caMessageButton_1 caMessageButton_2 @@ -2723,36 +3115,36 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLineEdit_3 caLineEdit_4 caLineEdit_5 - caLineEdit_6 - caLineEdit_7 - caLineEdit_8 caChoice_0 caMessageButton_3 caChoice_1 caMessageButton_4 - caLineEdit_9 - caLineEdit_10 + caLineEdit_6 + caLineEdit_7 caRelatedDisplay_1 caChoice_2 caMessageButton_5 - caLineEdit_11 + caLineEdit_8 caTextEntry_0 caMessageButton_6 caTextEntry_1 caMessageButton_7 - caLineEdit_12 - caLineEdit_13 - caLineEdit_14 + caLineEdit_9 + caLineEdit_10 + caLineEdit_11 caTextEntry_2 caMessageButton_8 caTextEntry_3 caMessageButton_9 - caLineEdit_15 - caLineEdit_16 + caLineEdit_12 + caLineEdit_13 caMessageButton_10 caMessageButton_11 caMessageButton_12 caRelatedDisplay_2 + caLineEdit_14 + caLineEdit_15 + caLineEdit_16 \ No newline at end of file diff --git a/opticsApp/op/ui/kohzu2SeqCtl_All.ui b/opticsApp/op/ui/autoconvert/kohzuSeqCtl_soft_All.ui similarity index 72% rename from opticsApp/op/ui/kohzu2SeqCtl_All.ui rename to opticsApp/op/ui/autoconvert/kohzuSeqCtl_soft_All.ui index 9b029fa..64ad171 100644 --- a/opticsApp/op/ui/kohzu2SeqCtl_All.ui +++ b/opticsApp/op/ui/autoconvert/kohzuSeqCtl_soft_All.ui @@ -4,10 +4,10 @@ - 10 - 10 + 951 + 454 535 - 342 + 365 @@ -15,103 +15,97 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + - - - - 445 - 230 - 90 - 24 - - - - - QFrame::NoFrame - - - - 0 - 0 - 88 - 22 - - - - - 153 - 255 - 255 - - - - - 153 - 255 - 255 - - - - caLabel::IfNotZero - - - $(P)KohzuMovingBO - - - Moving - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 0 - 88 - 22 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - caLabel::IfZero - - - $(P)KohzuMovingBO - - - Done - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caGraphics::Rectangle @@ -151,7 +145,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caGraphics::IfNotZero - $(P)KohzuAlertBO + $(P)$(MONO)Alert @@ -190,18 +184,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - + QFrame::NoFrame - - - 5 - 5 - 10 - 20 - - 0 @@ -220,7 +206,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} H - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 5 + 10 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -236,10 +230,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)BraggHAO.VAL + $(P)$(MONO)H @@ -255,6 +249,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -262,18 +271,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} decimal - + QFrame::NoFrame - - - 43 - 5 - 10 - 20 - - 0 @@ -292,7 +293,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} K - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 43 + 5 + 10 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -308,10 +317,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)BraggKAO.VAL + $(P)$(MONO)K @@ -327,6 +336,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -334,18 +358,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} decimal - + QFrame::NoFrame - - - 81 - 5 - 10 - 20 - - 0 @@ -364,7 +380,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} L - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 81 + 5 + 10 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -380,10 +404,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)BraggLAO.VAL + $(P)$(MONO)L @@ -399,6 +423,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -406,18 +445,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} decimal - + QFrame::NoFrame - - - 9 - 25 - 20 - 20 - - 0 @@ -436,7 +467,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} a - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 9 + 25 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -452,10 +491,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)BraggAAO.VAL + $(P)$(MONO)A @@ -471,6 +510,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -478,18 +532,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} decimal - + QFrame::NoFrame - - - 9 - 48 - 20 - 20 - - 0 @@ -508,7 +554,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 2d - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 9 + 48 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -524,10 +578,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)Bragg2dSpacingAO + $(P)$(MONO)2dSpacing @@ -543,6 +597,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -550,18 +619,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} decimal - + QFrame::NoFrame - - - 110 - 123 - 90 - 20 - - 0 @@ -580,24 +641,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Theta - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 300 + 110 123 90 20 + + + + QFrame::NoFrame + 0 @@ -613,14 +674,22 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - Z2 + Z - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 300 + 123 + 90 + 20 + + @@ -632,7 +701,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - $(P)KohzuModeBO.VAL + $(P)$(MONO)Mode.VAL @@ -662,10 +731,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight - $(P)KohzuPutBO + $(P)$(MONO)Put @@ -691,18 +760,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caMessageButton::Static - + QFrame::NoFrame - - - 347 - 1 - 100 - 20 - - 0 @@ -721,11 +782,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} TH (deg.) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 347 + 1 + 100 + 20 + + @@ -737,10 +806,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)BraggThetaRdbkAO + $(P)$(MONO)Theta.RBV @@ -756,6 +825,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 200 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -776,10 +860,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)BraggThetaAO.VAL + $(P)$(MONO)Theta @@ -795,6 +879,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -812,10 +911,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight - $(P)BraggThetaIncBO.VAL + $(P)$(MONO)Theta.TWF @@ -851,10 +950,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)BraggThetaTweakAI + $(P)$(MONO)Theta.TWV @@ -870,6 +969,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -887,10 +1001,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight - $(P)BraggThetaDecBO.VAL + $(P)$(MONO)Theta.TWR @@ -926,10 +1040,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)BraggThetaAO.DRVH + $(P)$(MONO)Theta.HLM @@ -948,6 +1062,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -965,10 +1094,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)BraggThetaAO.DRVL + $(P)$(MONO)Theta.LLM @@ -987,6 +1116,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -1004,10 +1148,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)BraggLambdaAO.DRVL + $(P)$(MONO)Lambda.LLM @@ -1026,6 +1170,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -1043,10 +1202,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)BraggEAO.DRVL + $(P)$(MONO)E.LLM @@ -1065,6 +1224,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -1082,10 +1256,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)BraggLambdaRdbkAO + $(P)$(MONO)Lambda.RBV @@ -1101,6 +1275,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 200 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1121,10 +1310,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)BraggLambdaAO.VAL + $(P)$(MONO)Lambda @@ -1140,6 +1329,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1157,10 +1361,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight - $(P)BraggLambdaIncBO.VAL + $(P)$(MONO)Lambda.TWF @@ -1196,10 +1400,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)BraggLambdaTweakAI + $(P)$(MONO)Lambda.TWV @@ -1215,6 +1419,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1232,10 +1451,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight - $(P)BraggLambdaDecBO.VAL + $(P)$(MONO)Lambda.TWR @@ -1271,10 +1490,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)BraggLambdaAO.DRVH + $(P)$(MONO)Lambda.HLM @@ -1290,6 +1509,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 200 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1310,10 +1544,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)BraggEAO.VAL + $(P)$(MONO)E @@ -1329,6 +1563,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1346,10 +1595,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)BraggETweakAI + $(P)$(MONO)E.TWV @@ -1365,6 +1614,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -1382,10 +1646,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight - $(P)BraggEDecBO.VAL + $(P)$(MONO)E.TWR @@ -1421,10 +1685,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight - $(P)BraggEIncBO.VAL + $(P)$(MONO)E.TWF @@ -1460,10 +1724,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)BraggEAO.DRVH + $(P)$(MONO)E.HLM @@ -1482,6 +1746,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -1499,10 +1778,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)BraggERdbkAO + $(P)$(MONO)E.RBV @@ -1518,6 +1797,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 200 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1528,18 +1822,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLineEdit::Static - + QFrame::NoFrame - - - 237 - 1 - 100 - 20 - - 0 @@ -1558,24 +1844,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} lambda (A) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 127 + 237 1 100 20 + + + + QFrame::NoFrame + 0 @@ -1594,24 +1880,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} E (keV) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 400 - 205 - 50 - 14 + 127 + 1 + 100 + 20 + + + + QFrame::NoFrame + 45 @@ -1630,24 +1916,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Speed - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame + ESimpleLabel::WidthAndHeight 400 - 190 + 205 50 14 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 45 @@ -1666,24 +1952,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Ideal - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame + ESimpleLabel::WidthAndHeight 400 - 155 + 190 50 14 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 45 @@ -1702,24 +1988,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Actual Pos. - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame + ESimpleLabel::WidthAndHeight 400 - 173 + 155 50 14 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 45 @@ -1738,24 +2024,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Motor Command - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 400 + 173 + 50 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + QFrame::NoFrame - - - 460 - 80 - 75 - 14 - - 236 @@ -1774,24 +2060,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Low Limit - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame + ESimpleLabel::WidthAndHeight 460 - 60 + 80 75 14 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 236 @@ -1810,24 +2096,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Desired - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame + ESimpleLabel::WidthAndHeight 460 - 38 + 60 75 14 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 236 @@ -1846,24 +2132,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Actual - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame + ESimpleLabel::WidthAndHeight 460 - 20 + 38 75 14 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 236 @@ -1882,7 +2168,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} High Limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 460 + 20 + 75 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1925,7 +2219,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;535,1; + 535,1; @@ -1938,10 +2232,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)KohzuThetaRdbkAI + $(P)$(MONO)ThetaMotRdbk @@ -1957,6 +2251,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 200 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1977,10 +2286,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)KohzuY2RdbkAI + $(P)$(MONO)YRdbk @@ -1996,6 +2305,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 200 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2016,10 +2340,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)KohzuZ2RdbkAI + $(P)$(MONO)ZRdbk @@ -2035,6 +2359,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 200 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2055,7 +2394,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -2134,10 +2473,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)KohzuZ2SetAO + $(P)$(MONO)ZSet @@ -2153,6 +2492,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 200 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2173,10 +2527,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)KohzuY2SetAO + $(P)$(MONO)YSet @@ -2192,6 +2546,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 200 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2212,10 +2581,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)KohzuThetaSetAO + $(P)$(MONO)ThetaSet @@ -2231,6 +2600,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 200 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2241,133 +2625,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLineEdit::Static - + + + caGraphics::Arc + 100 - 177 - 27 - 23 - - - - - caGraphics::Arc - - - - 0 - 3 - 25 - 18 - - - - - 0 - 3 - 25 - 18 - - - - 2 - - - - 225 - 144 - 21 - - - - - 225 - 144 - 21 - - - - - 225 - 144 - 21 - - - - Solid - - - - 0 - 3 - 25 - 18 - - - - 90 - - - - 0 - 3 - 25 - 18 - - - - 180 - - - - - - 7 - 0 - 8 - 10 - - - - 2 - - - - 225 - 144 - 21 - - - - - 225 - 144 - 21 - - - - - 225 - 144 - 21 - - - - Solid - - - 1,1;7,4;1,9; - - - - + 180 + 25 + 18 + + - 78 - 188 - 20 - 2 + 100 + 180 + 25 + 18 @@ -2395,22 +2670,38 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - Dash + Solid - - 19,1;1,1; + + + 100 + 180 + 25 + 18 + - - - - caGraphics::Rectangle + + 90 - 4 - 137 - 84 - 83 + 100 + 180 + 25 + 18 + + + + 180 + + + + + + 107 + 177 + 8 + 10 @@ -2423,8 +2714,12 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 21 - - Filled + + + 225 + 144 + 21 + @@ -2436,21 +2731,100 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid + + 1,9; + - + - 98 - 299 + 78 + 188 + 20 + 2 + + + + 2 + + + + 225 + 144 + 21 + + + + + 225 + 144 + 21 + + + + + 225 + 144 + 21 + + + + Dash + + + 1,1; + + + + + caGraphics::Rectangle + + + + 4 + 137 + 84 + 83 + + + + 2 + + + + 225 + 144 + 21 + + + + Filled + + + + 225 + 144 + 21 + + + + Solid + + + + + + 98 + 299 339 18 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)KohzuSeqMsg1SI + $(P)$(MONO)SeqMsg1 @@ -2469,6 +2843,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -2513,7 +2902,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;535,1; + 535,1; @@ -2526,10 +2915,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)KohzuSeqMsg2SI + $(P)$(MONO)SeqMsg2 @@ -2548,6 +2937,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -2565,10 +2969,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight - $(P)KohzuOperAckBO + $(P)$(MONO)OperAck @@ -2604,7 +3008,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - $(P)BraggTypeMO + $(P)$(MONO)Type @@ -2624,18 +3028,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caMenu::Static - + QFrame::NoFrame - - - 215 - 122 - 90 - 20 - - 0 @@ -2651,14 +3047,22 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - Y2 + Y - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 215 + 122 + 90 + 20 + + @@ -2670,10 +3074,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)KohzuThetaPvSI + $(P)$(MONO)ThetaPv @@ -2692,6 +3096,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -2709,10 +3128,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)KohzuY2PvSI + $(P)$(MONO)YPv @@ -2731,6 +3150,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -2748,10 +3182,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)KohzuZ2PvSI + $(P)$(MONO)ZPv @@ -2770,6 +3204,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -2777,18 +3226,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLineEdit::Static - + QFrame::NoFrame - - - 401 - 138 - 50 - 14 - - 45 @@ -2807,7 +3248,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Motor PV - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 401 + 138 + 50 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2823,10 +3272,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)KohzuZ2VelAI + $(P)$(MONO)ZVel @@ -2845,6 +3294,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -2862,10 +3326,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)KohzuY2VelAI + $(P)$(MONO)YVel @@ -2884,6 +3348,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -2901,10 +3380,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)KohzuThetaVelAI + $(P)$(MONO)ThetaVel @@ -2923,6 +3402,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -2940,7 +3434,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - $(P)KohzuMode2MO.VAL + $(P)$(MONO)Mode2.VAL @@ -2960,88 +3454,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caChoice::Static - - - - 125 - 230 - 122 - 18 - - - - - QFrame::NoFrame - - - - 0 - 0 - 120 - 9 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - Channel Cut inhibits - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 7 - 120 - 9 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - Y2 and Z2 motors - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - @@ -3052,10 +3464,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)KohzuZ2CmdAO + $(P)$(MONO)ZCmd @@ -3074,6 +3486,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -3091,10 +3518,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)KohzuY2CmdAO + $(P)$(MONO)YCmd @@ -3113,6 +3540,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -3130,10 +3572,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)KohzuThetaCmdAO + $(P)$(MONO)ThetaCmd @@ -3152,6 +3594,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -3202,7 +3659,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caGraphics::IfZero - $(P)KohzuZ2DmovBI + $(P)$(MONO)ZDmov @@ -3248,7 +3705,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caGraphics::IfZero - $(P)KohzuThetaDmovBI + $(P)$(MONO)ThetaDmov @@ -3294,7 +3751,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caGraphics::IfZero - $(P)KohzuY2DmovBI + $(P)$(MONO)YDmov @@ -3307,7 +3764,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - $(P)KohzuUseSetBO.VAL + $(P)$(MONO)UseSet.VAL @@ -3330,18 +3787,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caChoice::Static - + QFrame::NoFrame - - - 5 - 244 - 100 - 14 - - 45 @@ -3360,26 +3809,118 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Calibration: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 244 + 100 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + QFrame::NoFrame + + + + 153 + 255 + 255 + + + + + 153 + 255 + 255 + + + + caLabel::IfNotZero + + + $(P)$(MONO)Moving + + + Moving + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 445 + 230 + 88 + 22 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + caLabel::IfZero + + + $(P)$(MONO)Moving + + + Done + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 445 + 230 + 88 + 22 + + + - 182 - 264 + 181 + 263 60 20 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)Kohzu_yOffsetAO.VAL + $(P)$(MONO)yOffset @@ -3395,6 +3936,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -3402,18 +3958,46 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} decimal - + QFrame::NoFrame + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + y offset: + + + ESimpleLabel::WidthAndHeight + - 120 - 267 + 119 + 266 65 14 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 45 @@ -3429,20 +4013,132 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - y offset: + Channel Cut inhibits - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 107 + 230 + 150 + 9 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + Y1 and Z2 motors + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 108 + 237 + 150 + 9 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + Speed Control: + + + ESimpleLabel::WidthAndHeight + + + + 21 + 344 + 100 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - caLabel_0 - caLabel_1 - caFrame_0 + + + + 126 + 343 + 150 + 22 + + + + $(P)$(MONO)SpeedCtrl + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Column + + + caChoice::Static + + caRectangle_0 caRectangle_1 + caLabel_0 + caLabel_1 caLabel_2 caLabel_3 caLabel_4 @@ -3459,26 +4155,25 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLabel_15 caLabel_16 caLabel_17 - caLabel_18 - caLabel_19 caPolyLine_0 caRectangle_2 caArc_0 caPolyLine_1 - caFrame_1 caPolyLine_2 caRectangle_3 caPolyLine_3 + caLabel_18 + caLabel_19 + caRectangle_4 + caRectangle_5 + caRectangle_6 caLabel_20 caLabel_21 caLabel_22 caLabel_23 - caFrame_2 - caRectangle_4 - caRectangle_5 - caRectangle_6 caLabel_24 caLabel_25 + caLabel_26 caTextEntry_0 caTextEntry_1 caTextEntry_2 @@ -3530,6 +4225,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLineEdit_25 caChoice_2 caTextEntry_11 + caChoice_3 \ No newline at end of file diff --git a/opticsApp/op/ui/autoconvert/kohzuSeqCtl_soft_tiny.ui b/opticsApp/op/ui/autoconvert/kohzuSeqCtl_soft_tiny.ui new file mode 100644 index 0000000..8a266f9 --- /dev/null +++ b/opticsApp/op/ui/autoconvert/kohzuSeqCtl_soft_tiny.ui @@ -0,0 +1,1345 @@ + + +MainWindow + + + + 300 + 258 + 215 + 140 + + + + + +QWidget#centralWidget {background: rgba(200, 200, 200, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + + 0 + 32 + 105 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(MONO)E.RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 0 + 48 + 105 + 25 + + + + caLineEdit::WidthAndHeight + + + $(P)$(MONO)E.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 0 + 19 + 105 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(MONO)E.HLM + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 0 + 71 + 105 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(MONO)E.LLM + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + E (keV) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 0 + 0 + 105 + 20 + + + + + + + 20 + 84 + 65 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(MONO)E.TWV + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 0 + 84 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(MONO)E.TWR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + < + + + 1 + + + caMessageButton::Static + + + + + + 85 + 84 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(MONO)E.TWF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + > + + + 1 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + + + + 0 + 105 + 105 + 32 + + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 216 + 0 + + + + + 0 + 216 + 0 + + + + SCAN CONTROL + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 0 + 105 + 105 + 10 + + + + + + + 64 + 115 + 40 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)allstop.VAL + + + + 251 + 243 + 74 + + + + + 253 + 0 + 0 + + + + Abort + + + 1 + + + caMessageButton::Static + + + + + + 43 + 115 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(MONO)E:scanParms.GO + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Go + + + 1 + + + caMessageButton::Static + + + + + + 22 + 115 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(MONO)E:scanParms.LOAD + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Ld + + + 1 + + + caMessageButton::Static + + + + + + 1 + 115 + 20 + 20 + + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Menu + + + Energy-scan parameters + + + scanParms.adl + + + P=$(P),Q=BraggE,PV=BraggE + + + false + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + TH (deg.) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 110 + 0 + 105 + 20 + + + + + + + 110 + 32 + 105 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(MONO)Theta.RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 110 + 48 + 105 + 25 + + + + caLineEdit::WidthAndHeight + + + $(P)$(MONO)Theta.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 110 + 19 + 105 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(MONO)Theta.HLM + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 110 + 71 + 105 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(MONO)Theta.LLM + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 195 + 84 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(MONO)Theta.TWF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + > + + + 1 + + + caMessageButton::Static + + + + + + 130 + 84 + 65 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(MONO)Theta.TWV + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 110 + 84 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(MONO)Theta.TWR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + < + + + 1 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + + + + 110 + 105 + 105 + 32 + + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 216 + 0 + + + + + 0 + 216 + 0 + + + + SCAN CONTROL + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 110 + 105 + 105 + 10 + + + + + + + 174 + 115 + 40 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)allstop.VAL + + + + 251 + 243 + 74 + + + + + 253 + 0 + 0 + + + + Abort + + + 1 + + + caMessageButton::Static + + + + + + 153 + 115 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(MONO)Theta:scanParms.GO + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Go + + + 1 + + + caMessageButton::Static + + + + + + 132 + 115 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(MONO)Theta:scanParms.LOAD + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Ld + + + 1 + + + caMessageButton::Static + + + + + + 111 + 115 + 20 + 20 + + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Menu + + + Theta-scan parameters + + + scanParms.adl + + + P=$(P),Q=BraggTheta,PV=BraggTheta + + + false + + + caLabel_0 + caRectangle_0 + caLabel_1 + caLabel_2 + caRectangle_1 + caLabel_3 + caLineEdit_0 + caTextEntry_0 + caLineEdit_1 + caLineEdit_2 + caTextEntry_1 + caMessageButton_0 + caMessageButton_1 + caMessageButton_2 + caMessageButton_3 + caMessageButton_4 + caRelatedDisplay_0 + caLineEdit_3 + caTextEntry_2 + caLineEdit_4 + caLineEdit_5 + caMessageButton_5 + caTextEntry_3 + caMessageButton_6 + caMessageButton_7 + caMessageButton_8 + caMessageButton_9 + caRelatedDisplay_1 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/autoconvert/kohzuSeqCtl_tiny.ui b/opticsApp/op/ui/autoconvert/kohzuSeqCtl_tiny.ui new file mode 100644 index 0000000..35ac024 --- /dev/null +++ b/opticsApp/op/ui/autoconvert/kohzuSeqCtl_tiny.ui @@ -0,0 +1,1345 @@ + + +MainWindow + + + + 300 + 258 + 215 + 140 + + + + + +QWidget#centralWidget {background: rgba(200, 200, 200, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + + 0 + 32 + 105 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)BraggERdbkAO + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 0 + 48 + 105 + 25 + + + + caLineEdit::WidthAndHeight + + + $(P)BraggEAO.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 0 + 19 + 105 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)BraggEAO.DRVH + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 0 + 71 + 105 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)BraggEAO.DRVL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + E (keV) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 0 + 0 + 105 + 20 + + + + + + + 20 + 84 + 65 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)BraggETweakAI + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 0 + 84 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)BraggEDecBO.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + < + + + 1 + + + caMessageButton::Static + + + + + + 85 + 84 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)BraggEIncBO.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + > + + + 1 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + + + + 0 + 105 + 105 + 32 + + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 216 + 0 + + + + + 0 + 216 + 0 + + + + SCAN CONTROL + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 0 + 105 + 105 + 10 + + + + + + + 64 + 115 + 40 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)allstop.VAL + + + + 251 + 243 + 74 + + + + + 253 + 0 + 0 + + + + Abort + + + 1 + + + caMessageButton::Static + + + + + + 43 + 115 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)BraggE:scanParms.GO + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Go + + + 1 + + + caMessageButton::Static + + + + + + 22 + 115 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)BraggE:scanParms.LOAD + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Ld + + + 1 + + + caMessageButton::Static + + + + + + 1 + 115 + 20 + 20 + + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Menu + + + Energy-scan parameters + + + scanParms.adl + + + P=$(P),Q=BraggE,PV=BraggEAO + + + false + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + TH (deg.) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 110 + 0 + 105 + 20 + + + + + + + 110 + 32 + 105 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)BraggThetaRdbkAO + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 110 + 48 + 105 + 25 + + + + caLineEdit::WidthAndHeight + + + $(P)BraggThetaAO.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 110 + 19 + 105 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)BraggThetaAO.DRVH + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 110 + 71 + 105 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)BraggThetaAO.DRVL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 195 + 84 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)BraggThetaIncBO.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + > + + + 1 + + + caMessageButton::Static + + + + + + 130 + 84 + 65 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)BraggThetaTweakAI + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 110 + 84 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)BraggThetaDecBO.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + < + + + 1 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + + + + 110 + 105 + 105 + 32 + + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 216 + 0 + + + + + 0 + 216 + 0 + + + + SCAN CONTROL + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 110 + 105 + 105 + 10 + + + + + + + 174 + 115 + 40 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)allstop.VAL + + + + 251 + 243 + 74 + + + + + 253 + 0 + 0 + + + + Abort + + + 1 + + + caMessageButton::Static + + + + + + 153 + 115 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)BraggTheta:scanParms.GO + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Go + + + 1 + + + caMessageButton::Static + + + + + + 132 + 115 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)BraggTheta:scanParms.LOAD + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Ld + + + 1 + + + caMessageButton::Static + + + + + + 111 + 115 + 20 + 20 + + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Menu + + + Theta-scan parameters + + + scanParms.adl + + + P=$(P),Q=BraggTheta,PV=BraggThetaAO + + + false + + + caLabel_0 + caRectangle_0 + caLabel_1 + caLabel_2 + caRectangle_1 + caLabel_3 + caLineEdit_0 + caTextEntry_0 + caLineEdit_1 + caLineEdit_2 + caTextEntry_1 + caMessageButton_0 + caMessageButton_1 + caMessageButton_2 + caMessageButton_3 + caMessageButton_4 + caRelatedDisplay_0 + caLineEdit_3 + caTextEntry_2 + caLineEdit_4 + caLineEdit_5 + caMessageButton_5 + caTextEntry_3 + caMessageButton_6 + caMessageButton_7 + caMessageButton_8 + caMessageButton_9 + caRelatedDisplay_1 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/autoconvert/maskApertureSlit.ui b/opticsApp/op/ui/autoconvert/maskApertureSlit.ui new file mode 100644 index 0000000..cbbc283 --- /dev/null +++ b/opticsApp/op/ui/autoconvert/maskApertureSlit.ui @@ -0,0 +1,459 @@ + + + MainWindow + + + + 0 + 0 + 560 + 643 + + + + MainWindow + + + + + + 0 + 0 + 861 + 31 + + + + 0 + + + + 0 + 53 + 132 + + + + caFrame::Filled + + + + 5 + + + 10 + + + 2 + + + 0 + + + 2 + + + + + true + + + + 0 + 0 + + + + + Verdana + 16 + 75 + true + + + + $(P)$(SLITS) + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + ESimpleLabel::Height + + + + 228 + 228 + 228 + + + + + 160 + 160 + 164 + + + + + + + + + + 380 + 570 + 161 + 31 + + + + + 0 + 0 + + + + EPushButton::WidthAndHeight + + + 25ida:allstop.VAL + + + All Stop + + + + 228 + 228 + 30 + + + + + 228 + 30 + 30 + + + + 1 + + + caMessageButton::Static + + + + + + 10 + 30 + 531 + 451 + + + + + + 40 + 310 + 90 + 28 + + + + Horizontal + + + Qt::AlignCenter + + + + + + 160 + 310 + 90 + 28 + + + + Diagonal + + + Qt::AlignCenter + + + + + + 290 + 310 + 90 + 28 + + + + Pitch + + + Qt::AlignCenter + + + + + + 400 + 310 + 121 + 28 + + + + Yaw + + + Qt::AlignCenter + + + + + + 30 + 270 + 141 + 31 + + + + - Transforms + + + + 228 + 228 + 228 + + + + + 53 + 132 + 0 + + + + Center Drive;Center Readback;Hor. Size Drive;Hor. Size Readback;Vert. Size Drive;Vert. Size Readback + + + yyTransform_full.ui;yyTransform_full.ui;yyTransform_full.ui;yyTransform_full.ui;yyTransform_full.ui;yyTransform_full.ui + + + P=$(P),T=$(SLITS):centerDrive;P=$(P),T=$(SLITS):centerReadback;P=$(P),T=$(SLITS):size1Drive;P=$(P),T=$(SLITS):size1Readback;P=$(P),T=$(SLITS):size2Drive;P=$(P),T=$(SLITS):size2Readback + + + caRowColMenu::Menu + + + + + + 290 + 30 + 90 + 28 + + + + Center + + + Qt::AlignCenter + + + + + + 40 + 30 + 90 + 28 + + + + Center + + + Qt::AlignCenter + + + + + + 400 + 30 + 121 + 28 + + + + Size + + + Qt::AlignCenter + + + + + + 150 + 30 + 90 + 28 + + + + Size + + + Qt::AlignCenter + + + + + + 100 + 5 + 90 + 28 + + + + Horizontal + + + Qt::AlignCenter + + + + + + 350 + 5 + 90 + 28 + + + + Vertical + + + Qt::AlignCenter + + + + + + 180 + 270 + 141 + 31 + + + + - Calibration + + + + 228 + 228 + 228 + + + + + 53 + 132 + 0 + + + + Main + + + maskApertureSlit_calibration.ui + + + P=$(P),SLITS=$(SLITS),HOR=$(HOR),DIAG=$(DIAG),PITCH=$(PITCH),YAW=$(YAW) + + + caRowColMenu::Menu + + + + + + 30 + 60 + 491 + 181 + + + + P=$(P),M1=$(SLITS):hCenter,M2=$(SLITS):hSize,M3=$(SLITS):vCenter,M4=$(SLITS):vSize + + + motor4x.ui + + + + + + + 40 + 370 + 491 + 181 + + + + P=$(P),M1=$(HOR),M2=$(DIAG),M3=$(PITCH),M4=$(YAW) + + + motor4x.ui + + + + + + + + caRelatedDisplay + QWidget +
caRelatedDisplay
+
+ + caMessageButton + QPushButton +
caMessageButton
+
+ + caFrame + QFrame +
caFrame
+ 1 +
+ + caLabel + QLabel +
caLabel
+
+ + caInclude + QWidget +
caInclude
+
+
+ + +
diff --git a/opticsApp/op/ui/autoconvert/maskApertureSlit_calibration.ui b/opticsApp/op/ui/autoconvert/maskApertureSlit_calibration.ui new file mode 100644 index 0000000..27a291e --- /dev/null +++ b/opticsApp/op/ui/autoconvert/maskApertureSlit_calibration.ui @@ -0,0 +1,4200 @@ + + + MainWindow + + + + 0 + 0 + 860 + 600 + + + + MainWindow + + + + + + 0 + 0 + 861 + 31 + + + + 0 + + + + 0 + 53 + 132 + + + + caFrame::Filled + + + + 5 + + + 10 + + + 2 + + + 0 + + + 2 + + + + + true + + + + 0 + 0 + + + + + Verdana + 16 + 75 + true + + + + $(P)$(SLITS) + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + ESimpleLabel::Height + + + + 228 + 228 + 228 + + + + + 160 + 160 + 164 + + + + + + + + + + 0 + 40 + 851 + 551 + + + + + + 99 + 290 + 101 + 28 + + + + + 15 + + + + Horizontal + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + 100 + 380 + 90 + 28 + + + + Diagonal + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + 100 + 480 + 90 + 28 + + + + Pitch + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + 140 + 440 + 51 + 28 + + + + Yaw + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + 10 + 60 + 90 + 28 + + + + Center + + + Qt::AlignCenter + + + + + + 10 + 150 + 90 + 28 + + + + Size + + + Qt::AlignCenter + + + + + + 99 + 50 + 101 + 28 + + + + Horizontal + + + Qt::AlignCenter + + + + + + 100 + 130 + 101 + 28 + + + + Horizontal + + + Qt::AlignCenter + + + + + + 110 + 170 + 90 + 28 + + + + Vertical + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + 110 + 90 + 90 + 28 + + + + Vertical + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + 200 + 90 + 651 + 31 + + + + + 0 + + + 1 + + + 2 + + + 1 + + + 2 + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):vCenterDVAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + = + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 14 + PreferDefault + + + + $(P)$(SLITS):vCenterC1.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + x + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(HOR).RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + + + + + Qt::AlignCenter + + + 0 + + + + + + + + 0 + 0 + + + + + Monospace + 14 + PreferDefault + + + + $(P)$(SLITS):vCenterC2.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + x + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(DIAG).RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + + 200 + 130 + 511 + 31 + + + + + 0 + + + 1 + + + 2 + + + 1 + + + 2 + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):hSizeDVAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + = + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 14 + PreferDefault + + + + $(P)$(SLITS):hSizeC1.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + - + + + Qt::AlignCenter + + + 0 + + + + + + + + 0 + 0 + + + + + Monospace + 14 + PreferDefault + + + + $(P)$(SLITS):hSizeC2.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + x + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(YAW).RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + + 200 + 170 + 511 + 31 + + + + + 0 + + + 1 + + + 2 + + + 1 + + + 2 + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):vSizeDVAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + = + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 14 + PreferDefault + + + + $(P)$(SLITS):vSizeC1.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + - + + + Qt::AlignCenter + + + 0 + + + + + + + + 0 + 0 + + + + + Monospace + 14 + PreferDefault + + + + $(P)$(SLITS):vSizeC2.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + x + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(PITCH).RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + + 7 + 210 + 841 + 20 + + + + Qt::Horizontal + + + + + + 200 + 480 + 511 + 31 + + + + + 0 + + + 1 + + + 2 + + + 1 + + + 2 + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(PITCH).RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + = ( + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + $(P)$(SLITS):vSizeC1.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + - + + + Qt::AlignCenter + + + 0 + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):vSize.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + ) / + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + $(P)$(SLITS):vSizeC2.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + + + + + + + 200 + 440 + 511 + 31 + + + + + 0 + + + 1 + + + 2 + + + 1 + + + 2 + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(YAW).RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + = ( + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + $(P)$(SLITS):hSizeC1.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + - + + + Qt::AlignCenter + + + 0 + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):hSize.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + ) / + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + $(P)$(SLITS):hSizeC2.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + + + + + + + 10 + 290 + 71 + 31 + + + + - Motor Debug + + + + 228 + 228 + 228 + + + + + 53 + 132 + 0 + + + + Main + + + motorx_all.ui + + + P=$(P),M=$(HOR) + + + caRowColMenu::Menu + + + + + + 10 + 440 + 71 + 31 + + + + - Motor Debug + + + + 228 + 228 + 228 + + + + + 53 + 132 + 0 + + + + Main + + + motorx_all.ui + + + P=$(P),M=$(YAW) + + + caRowColMenu::Menu + + + + + + 10 + 480 + 71 + 31 + + + + - Motor Debug + + + + 228 + 228 + 228 + + + + + 53 + 132 + 0 + + + + Main + + + motorx_all.ui + + + P=$(P),M=$(PITCH) + + + caRowColMenu::Menu + + + + + + 10 + 380 + 71 + 31 + + + + - Motor Debug + + + + 228 + 228 + 228 + + + + + 53 + 132 + 0 + + + + Main + + + motorx_all.ui + + + P=$(P),M=$(DIAG) + + + caRowColMenu::Menu + + + + + + 340 + 227 + 211 + 31 + + + + + 17 + + + + Motor Calculations + + + Qt::AlignCenter + + + + + + 330 + 10 + 211 + 31 + + + + + 17 + + + + Slit Calculations + + + Qt::AlignCenter + + + + + + 200 + 260 + 651 + 84 + + + + + 0 + + + 0 + + + + + 0 + + + 0 + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + 0 + 0 + + + + + Monospace + 20 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(HOR).RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 18 + 75 + true + + + + = + + + Qt::AlignCenter + + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + 35 + + + + ( + + + + + + + 0 + + + + + 0 + + + 1 + + + 2 + + + 1 + + + 2 + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):vCenterC2.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + x + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):hCenter.RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + - + + + Qt::AlignCenter + + + 0 + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):hCenterC2.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + x + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):vCenter.RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + + + 0 + 0 + + + + 3 + + + Qt::Horizontal + + + + + + + 0 + + + 1 + + + 2 + + + 1 + + + 2 + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):hCenterC1.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + x + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):vCenterC2.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + - + + + Qt::AlignCenter + + + 0 + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):vCenterC1.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + x + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):hCenterC2.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + + + + + 35 + + + + ) + + + + + + + + + 200 + 350 + 651 + 84 + + + + + 0 + + + 0 + + + + + 0 + + + 0 + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + 0 + 0 + + + + + Monospace + 20 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(DIAG).RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 18 + 75 + true + + + + = + + + Qt::AlignCenter + + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + ( + + + + + + + 0 + + + + + 0 + + + 1 + + + 2 + + + 1 + + + 2 + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):vCenterC1.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + x + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):hCenter.RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + - + + + Qt::AlignCenter + + + 0 + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):hCenterC1.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + x + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):vCenter.RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + + + 0 + 0 + + + + 3 + + + Qt::Horizontal + + + + + + + 0 + + + 1 + + + 2 + + + 1 + + + 2 + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):vCenterC1.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + x + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):hCenterC2.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + - + + + Qt::AlignCenter + + + 0 + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):hCenterC1.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + x + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):vCenterC2.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + + + + ) + + + + + + + + + 200 + 50 + 651 + 31 + + + + + 0 + + + 1 + + + 2 + + + 1 + + + 2 + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):hCenterDVAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + = + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 14 + PreferDefault + + + + $(P)$(SLITS):hCenterC1.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + x + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(HOR).RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + + + + + Qt::AlignCenter + + + 0 + + + + + + + + 0 + 0 + + + + + Monospace + 14 + PreferDefault + + + + $(P)$(SLITS):hCenterC2.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + x + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(DIAG).RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + + + + + caRelatedDisplay + QWidget +
caRelatedDisplay
+
+ + caTextEntry + caLineEdit +
caTextEntry
+
+ + caFrame + QFrame +
caFrame
+ 1 +
+ + caLabel + QLabel +
caLabel
+
+ + caLineEdit + QLineEdit +
caLineEdit
+
+
+ + +
diff --git a/opticsApp/op/ui/ml_monoGraphic.ui b/opticsApp/op/ui/autoconvert/ml_monoGraphic.ui similarity index 51% rename from opticsApp/op/ui/ml_monoGraphic.ui rename to opticsApp/op/ui/autoconvert/ml_monoGraphic.ui index 7bdae6c..6cee900 100644 --- a/opticsApp/op/ui/ml_monoGraphic.ui +++ b/opticsApp/op/ui/autoconvert/ml_monoGraphic.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -124,7 +212,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 2,2;97,23; + 97,23; @@ -160,7 +248,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 2,2;97,23; + 97,23; @@ -196,7 +284,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 110,1;1,1; + 1,1; @@ -232,7 +320,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 244,59;92,1;1,1; + 1,1; @@ -272,7 +360,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 16,1;1,5;15,11; + 15,11; @@ -312,14 +400,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 237 - 257 - 60 - 10 - - 0 @@ -338,7 +418,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)$(mZ1) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 237 + 257 + 60 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -354,7 +442,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mZ1).RBV @@ -408,7 +496,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(mZ1).VAL @@ -528,276 +616,13 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} false - - - - 235 - 170 - 66 - 60 - - - - - caGraphics::Rectangle - - - - 0 - 20 - 64 - 38 - - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - - - QFrame::NoFrame - - - - 2 - 22 - 60 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(P)$(mY1) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 2 - 32 - 60 - 10 - - - - caLineEdit::Height - - - $(P)$(mY1).RBV - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 2 - 42 - 60 - 15 - - - - caLineEdit::Height - - - $(P)$(mY1).VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - caGraphics::Rectangle - - - - 0 - 20 - 64 - 38 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - - 0 - 0 - 64 - 20 - - - - - 255 - 255 - 255 - - - - - 51 - 153 - 0 - - - - -Y1 - - - Menu - - - - - - motorx.adl - - - P=$(P),M=$(mY1) - - - false - - - - + caGraphics::Rectangle - 310 + 235 190 64 38 @@ -824,18 +649,10 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - + QFrame::NoFrame - - - 312 - 192 - 60 - 10 - - 0 @@ -851,29 +668,37 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - $(P)$(mC1) + $(P)$(mY1) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 237 + 192 + 60 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + - 312 + 237 202 60 10 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)$(mC1).RBV + $(P)$(mY1).RBV @@ -914,20 +739,20 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caLineEdit::Static - + - 312 + 237 212 60 15 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)$(mC1).VAL + $(P)$(mY1).VAL @@ -965,13 +790,13 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} decimal - + caGraphics::Rectangle - 310 + 235 190 64 38 @@ -1002,10 +827,10 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - + - 310 + 235 170 64 20 @@ -1026,7 +851,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - -Chi1 + -Y1 Menu @@ -1038,20 +863,20 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} motorx.adl - P=$(P),M=$(mC1) + P=$(P),M=$(mY1) false - + caGraphics::Rectangle - 15 - 255 + 310 + 190 64 38 @@ -1077,18 +902,10 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - + QFrame::NoFrame - - - 17 - 257 - 60 - 10 - - 0 @@ -1104,29 +921,37 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - $(P)$(mP2) + $(P)$(mC1) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 312 + 192 + 60 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + - 17 - 267 + 312 + 202 60 10 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)$(mP2).RBV + $(P)$(mC1).RBV @@ -1167,20 +992,20 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caLineEdit::Static - + - 17 - 277 + 312 + 212 60 15 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)$(mP2).VAL + $(P)$(mC1).VAL @@ -1218,14 +1043,14 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} decimal - + caGraphics::Rectangle - 15 - 255 + 310 + 190 64 38 @@ -1255,11 +1080,11 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - + - 15 - 235 + 310 + 170 64 20 @@ -1279,7 +1104,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - -Phi2 + -Chi1 Menu @@ -1291,819 +1116,20 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} motorx.adl - P=$(P),M=$(mP2) + P=$(P),M=$(mC1) false - - - - 15 - 170 - 66 - 60 - - - - - - 0 - 0 - 64 - 20 - - - - - 255 - 255 - 255 - - - - - 51 - 153 - 0 - - - - -Bend - - - Menu - - - - - - motorx.adl - - - P=$(P),M=$(mB) - - - false - - - - - - 0 - 20 - 66 - 40 - - - - - caGraphics::Rectangle - - - - 0 - 0 - 64 - 38 - - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - - - QFrame::NoFrame - - - - 2 - 2 - 60 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(P)$(mB) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 2 - 12 - 60 - 10 - - - - caLineEdit::Height - - - $(P)$(mB).RBV - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 2 - 22 - 60 - 15 - - - - caLineEdit::Height - - - $(P)$(mB).VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - caGraphics::Rectangle - - - - 0 - 0 - 64 - 38 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - - - - 90 - 170 - 66 - 60 - - - - - caGraphics::Rectangle - - - - 0 - 20 - 64 - 38 - - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - - - QFrame::NoFrame - - - - 2 - 22 - 60 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(P)$(mY2) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 2 - 32 - 60 - 10 - - - - caLineEdit::Height - - - $(P)$(mY2).RBV - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 2 - 42 - 60 - 15 - - - - caLineEdit::Height - - - $(P)$(mY2).VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - caGraphics::Rectangle - - - - 0 - 20 - 64 - 38 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - - 0 - 0 - 64 - 20 - - - - - 255 - 255 - 255 - - - - - 51 - 153 - 0 - - - - -Y2 - - - Menu - - - - - - motorx.adl - - - P=$(P),M=$(mY2) - - - false - - - - - - - 90 - 235 - 66 - 60 - - - - - caGraphics::Rectangle - - - - 0 - 20 - 64 - 38 - - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - - - QFrame::NoFrame - - - - 2 - 22 - 60 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(P)$(mZ2) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 2 - 32 - 60 - 10 - - - - caLineEdit::Height - - - $(P)$(mZ2).RBV - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 2 - 42 - 60 - 15 - - - - caLineEdit::Height - - - $(P)$(mZ2).VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - caGraphics::Rectangle - - - - 0 - 20 - 64 - 38 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - - 0 - 0 - 64 - 20 - - - - - 255 - 255 - 255 - - - - - 51 - 153 - 0 - - - - -Z2 - - - Menu - - - - - - motorx.adl - - - P=$(P),M=$(mZ2) - - - false - - - - + caGraphics::Rectangle 15 - 320 + 255 64 38 @@ -2129,18 +1155,10 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - + QFrame::NoFrame - - - 17 - 322 - 60 - 10 - - 0 @@ -2156,29 +1174,37 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - $(P)$(mC2) + $(P)$(mP2) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 17 + 257 + 60 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 17 - 332 + 267 60 10 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)$(mC2).RBV + $(P)$(mP2).RBV @@ -2219,20 +1245,20 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caLineEdit::Static - + 17 - 342 + 277 60 15 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)$(mC2).VAL + $(P)$(mP2).VAL @@ -2270,14 +1296,14 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} decimal - + caGraphics::Rectangle 15 - 320 + 255 64 38 @@ -2307,11 +1333,11 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - + 15 - 300 + 235 64 20 @@ -2331,7 +1357,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - -Chi2 + -Phi2 Menu @@ -2343,20 +1369,62 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} motorx.adl - P=$(P),M=$(mC2) + P=$(P),M=$(mP2) false - + + + + 15 + 170 + 64 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -Bend + + + Menu + + + + + + motorx.adl + + + P=$(P),M=$(mB) + + + false + + + caGraphics::Rectangle - 90 - 320 + 15 + 190 64 38 @@ -2382,18 +1450,10 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - + QFrame::NoFrame - - - 92 - 322 - 60 - 10 - - 0 @@ -2409,29 +1469,1513 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - $(P)$(mX2) + $(P)$(mB) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 17 + 192 + 60 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 17 + 202 + 60 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mB).RBV + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 17 + 212 + 60 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mB).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 15 + 190 + 64 + 38 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + caGraphics::Rectangle + + + + 90 + 190 + 64 + 38 + + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(P)$(mY2) + + + ESimpleLabel::WidthAndHeight + + + + 92 + 192 + 60 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 92 + 202 + 60 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mY2).RBV + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 92 + 212 + 60 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mY2).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 90 + 190 + 64 + 38 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + + 90 + 170 + 64 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -Y2 + + + Menu + + + + + + motorx.adl + + + P=$(P),M=$(mY2) + + + false + + + + + caGraphics::Rectangle + + + + 90 + 255 + 64 + 38 + + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(P)$(mZ2) + + + ESimpleLabel::WidthAndHeight + + + + 92 + 257 + 60 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 92 + 267 + 60 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mZ2).RBV + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 92 + 277 + 60 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mZ2).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 90 + 255 + 64 + 38 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + + 90 + 235 + 64 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -Z2 + + + Menu + + + + + + motorx.adl + + + P=$(P),M=$(mZ2) + + + false + + + + + caGraphics::Rectangle + + + + 15 + 320 + 64 + 38 + + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(P)$(mC2) + + + ESimpleLabel::WidthAndHeight + + + + 17 + 322 + 60 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 17 + 332 + 60 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mC2).RBV + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 17 + 342 + 60 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mC2).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 15 + 320 + 64 + 38 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + + 15 + 300 + 64 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -Chi2 + + + Menu + + + + + + motorx.adl + + + P=$(P),M=$(mC2) + + + false + + + + + caGraphics::Rectangle + + + + 90 + 320 + 64 + 38 + + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(P)$(mX2) + + + ESimpleLabel::WidthAndHeight + + + + 92 + 322 + 60 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 92 + 332 + 60 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mX2).RBV + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 92 + 342 + 60 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mX2).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 90 + 320 + 64 + 38 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + + 90 + 300 + 64 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -X2 + + + Menu + + + + + + motorx.adl + + + P=$(P),M=$(mX2) + + + false + + + + + caGraphics::Rectangle + + + + 63 + 104 + 64 + 38 + + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(P)$(mT2) + + + ESimpleLabel::WidthAndHeight + + + + 65 + 106 + 60 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 65 + 116 + 60 + 10 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mT2).RBV + + + + 42 + 99 + 228 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 65 + 126 + 60 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(mT2).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 63 + 104 + 64 + 38 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + + 63 + 84 + 64 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -Theta2 + + + Menu + + + + + + motorx.adl + + + P=$(P),M=$(mT2) + + + false + + + + + caGraphics::Rectangle + + + + 235 + 320 + 64 + 38 + + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + $(P)$(mX1) + + + ESimpleLabel::WidthAndHeight + + + + 237 + 322 + 60 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + - 92 + 237 332 60 10 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)$(mX2).RBV + $(P)$(mX1).RBV @@ -2472,20 +3016,20 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caLineEdit::Static - + - 92 + 237 342 60 15 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)$(mX2).VAL + $(P)$(mX1).VAL @@ -2523,13 +3067,13 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} decimal - + caGraphics::Rectangle - 90 + 235 320 64 38 @@ -2560,10 +3104,10 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - + - 90 + 235 300 64 20 @@ -2584,7 +3128,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - -X2 + -X1 Menu @@ -2596,283 +3140,20 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} motorx.adl - P=$(P),M=$(mX2) + P=$(P),M=$(mX1) false - - - - 63 - 84 - 66 - 60 - - - - - caGraphics::Rectangle - - - - 0 - 20 - 64 - 38 - - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - - - QFrame::NoFrame - - - - 2 - 22 - 60 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(P)$(mT2) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 2 - 32 - 60 - 10 - - - - caLineEdit::Height - - - $(P)$(mT2).RBV - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 2 - 42 - 60 - 15 - - - - caLineEdit::Height - - - $(P)$(mT2).VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - caGraphics::Rectangle - - - - 0 - 20 - 64 - 38 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - - 0 - 0 - 64 - 20 - - - - - 255 - 255 - 255 - - - - - 51 - 153 - 0 - - - - -Theta2 - - - Menu - - - - - - motorx.adl - - - P=$(P),M=$(mT2) - - - false - - - - + caGraphics::Rectangle - 235 - 320 + 261 + 67 64 38 @@ -2898,18 +3179,10 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - + QFrame::NoFrame - - - 237 - 322 - 60 - 10 - - 0 @@ -2925,29 +3198,37 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - $(P)$(mX1) + $(P)$(mT1) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 263 + 69 + 60 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + - 237 - 332 + 263 + 79 60 10 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)$(mX1).RBV + $(P)$(mT1).RBV @@ -2988,20 +3269,20 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caLineEdit::Static - + - 237 - 342 + 263 + 89 60 15 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)$(mX1).VAL + $(P)$(mT1).VAL @@ -3039,14 +3320,14 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} decimal - + caGraphics::Rectangle - 235 - 320 + 261 + 67 64 38 @@ -3076,11 +3357,11 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - + - 235 - 300 + 261 + 47 64 20 @@ -3100,7 +3381,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - -X1 + -Theta1 Menu @@ -3112,275 +3393,12 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} motorx.adl - P=$(P),M=$(mX1) + P=$(P),M=$(mT1) false - - - - 261 - 47 - 66 - 60 - - - - - caGraphics::Rectangle - - - - 0 - 20 - 64 - 38 - - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - - - QFrame::NoFrame - - - - 2 - 22 - 60 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(P)$(mT1) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 2 - 32 - 60 - 10 - - - - caLineEdit::Height - - - $(P)$(mT1).RBV - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 2 - 42 - 60 - 15 - - - - caLineEdit::Height - - - $(P)$(mT1).VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - caGraphics::Rectangle - - - - 0 - 20 - 64 - 38 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - - 0 - 0 - 64 - 20 - - - - - 255 - 255 - 255 - - - - - 51 - 153 - 0 - - - - -Theta1 - - - Menu - - - - - - motorx.adl - - - P=$(P),M=$(mT1) - - - false - - - caRectangle_0 caRectangle_1 caPolyLine_0 @@ -3394,7 +3412,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caRectangle_4 caLabel_1 caRectangle_5 - caFrame_0 caRectangle_6 caLabel_2 caRectangle_7 @@ -3404,16 +3421,12 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caRectangle_10 caLabel_4 caRectangle_11 - caFrame_2 - caFrame_1 caRectangle_12 caLabel_5 caRectangle_13 - caFrame_3 caRectangle_14 caLabel_6 caRectangle_15 - caFrame_4 caRectangle_16 caLabel_7 caRectangle_17 @@ -3423,14 +3436,12 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caRectangle_20 caLabel_9 caRectangle_21 - caFrame_5 caRectangle_22 caLabel_10 caRectangle_23 caRectangle_24 caLabel_11 caRectangle_25 - caFrame_6 caLineEdit_0 caTextEntry_0 caRelatedDisplay_0 diff --git a/opticsApp/op/ui/ml_monoSeqCtl.ui b/opticsApp/op/ui/autoconvert/ml_monoSeqCtl.ui similarity index 91% rename from opticsApp/op/ui/ml_monoSeqCtl.ui rename to opticsApp/op/ui/autoconvert/ml_monoSeqCtl.ui index 1b42863..03330ab 100644 --- a/opticsApp/op/ui/ml_monoSeqCtl.ui +++ b/opticsApp/op/ui/autoconvert/ml_monoSeqCtl.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -55,14 +143,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 105 - 105 - 10 - - 0 @@ -81,11 +161,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} SCAN CONTROL - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 105 + 105 + 10 + + @@ -97,7 +185,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -136,7 +224,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)ml_monoE:scanParms.GO @@ -175,7 +263,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)ml_monoE:scanParms.LOAD @@ -276,7 +364,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;1,138; + 1,138; @@ -318,7 +406,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)ml_monoMode.VAL - 0,0;0,15;15,7;0,0; + 0,0; caPolyLine::Polygon @@ -334,7 +422,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoZRdbk @@ -388,7 +476,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoZCmd @@ -488,7 +576,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoThetaRdbk @@ -542,7 +630,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoThetaCmd @@ -596,7 +684,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoThetaPv @@ -690,14 +778,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 290 - 17 - 80 - 15 - - 0 @@ -716,11 +796,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Theta - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 290 + 17 + 80 + 15 + + @@ -761,147 +849,137 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)ml_monoPut.VAL - 0,0;0,15;15,7;0,0; + 0,0; caPolyLine::Polygon - + + + QFrame::NoFrame + + + + 10 + 0 + 184 + + + + + 10 + 0 + 184 + + + + caLabel::IfNotZero + + + $(P)ml_monoMoving + + + Moving + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 431 + 89 + 100 + 26 + + + + + + QFrame::NoFrame + + + + 10 + 0 + 184 + + + + + 10 + 0 + 184 + + + + caLabel::IfNotZero + + + $(P)ml_monoMoving + + + Moving + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 432 + 90 + 100 + 26 + + + + + + QFrame::NoFrame + + + + 153 + 255 + 255 + + + + + 153 + 255 + 255 + + + + caLabel::IfNotZero + + + $(P)ml_monoMoving + + + Moving + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + 430 88 - 104 - 30 - - - - - QFrame::NoFrame - - - - 1 - 1 - 100 - 26 - - - - - 10 - 0 - 184 - - - - - 10 - 0 - 184 - - - - caLabel::IfNotZero - - - $(P)ml_monoMoving - - - Moving - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 2 - 2 - 100 - 26 - - - - - 10 - 0 - 184 - - - - - 10 - 0 - 184 - - - - caLabel::IfNotZero - - - $(P)ml_monoMoving - - - Moving - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 0 - 100 - 26 - - - - - 153 - 255 - 255 - - - - - 153 - 255 - 255 - - - - caLabel::IfNotZero - - - $(P)ml_monoMoving - - - Moving - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - + 100 + 26 + + @@ -940,14 +1018,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 295 - 97 - 100 - 14 - - 45 @@ -966,7 +1036,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Calibration: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 295 + 97 + 100 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -982,7 +1060,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -1044,7 +1122,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;1,138; + 1,138; @@ -1126,7 +1204,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;523,1; + 523,1; @@ -1172,7 +1250,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)ml_monoOperAck @@ -1253,7 +1331,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoSeqMsg1 @@ -1307,7 +1385,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoSeqMsg2 @@ -1397,14 +1475,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 143 - 40 - 18 - - 45 @@ -1423,7 +1493,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Mode: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 143 + 40 + 18 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1469,7 +1547,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)ml_monoPut @@ -1502,14 +1580,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 110 - 0 - 100 - 20 - - 0 @@ -1528,11 +1598,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} TH (deg.) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 110 + 0 + 100 + 20 + + @@ -1544,7 +1622,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoThetaRdbk @@ -1598,7 +1676,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoTheta.VAL @@ -1649,7 +1727,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)ml_monoThetaInc.VAL @@ -1688,7 +1766,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoThetaTweak @@ -1739,7 +1817,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)ml_monoThetaDec.VAL @@ -1778,7 +1856,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoTheta.DRVH @@ -1832,7 +1910,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoTheta.DRVL @@ -1886,7 +1964,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoERdbk @@ -1940,7 +2018,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoE.VAL @@ -1991,7 +2069,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)ml_monoEInc.VAL @@ -2030,7 +2108,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoETweak @@ -2081,7 +2159,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)ml_monoEDec.VAL @@ -2120,7 +2198,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoE.DRVL @@ -2174,7 +2252,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoE.DRVH @@ -2222,14 +2300,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 0 - 100 - 20 - - 0 @@ -2248,11 +2318,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} E (keV) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 5 + 0 + 100 + 20 + + @@ -2333,14 +2411,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 110 - 105 - 105 - 10 - - 0 @@ -2359,11 +2429,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} SCAN CONTROL - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 110 + 105 + 105 + 10 + + @@ -2375,7 +2453,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -2414,7 +2492,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)ml_monoTheta:scanParms.GO @@ -2453,7 +2531,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)ml_monoTheta:scanParms.LOAD @@ -2525,14 +2603,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 290 - 0 - 230 - 20 - - 0 @@ -2551,11 +2621,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Monochromator Motors - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 290 + 0 + 230 + 20 + + @@ -2591,7 +2669,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;0,54; + 0,54; @@ -2628,7 +2706,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;0,54; + 0,54; @@ -2641,7 +2719,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoZPv @@ -2689,14 +2767,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 450 - 17 - 70 - 15 - - 0 @@ -2715,24 +2785,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Z2 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 375 + 450 17 70 15 + + + + QFrame::NoFrame + 0 @@ -2751,24 +2821,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Y2 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 375 - 72 + 17 70 - 14 + 15 + + + + QFrame::NoFrame + 45 @@ -2787,11 +2857,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} (y offset) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 375 + 72 + 70 + 14 + + @@ -2803,7 +2881,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoYPv @@ -2857,7 +2935,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_mono_yOffset @@ -2912,7 +2990,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLabel_2 caLabel_3 caLabel_4 - caFrame_0 caLabel_5 caPolyLine_1 caRectangle_3 diff --git a/opticsApp/op/ui/ml_monoSeqCtl_All.ui b/opticsApp/op/ui/autoconvert/ml_monoSeqCtl_All.ui similarity index 93% rename from opticsApp/op/ui/ml_monoSeqCtl_All.ui rename to opticsApp/op/ui/autoconvert/ml_monoSeqCtl_All.ui index 1f92daf..1610c77 100644 --- a/opticsApp/op/ui/ml_monoSeqCtl_All.ui +++ b/opticsApp/op/ui/autoconvert/ml_monoSeqCtl_All.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -100,14 +188,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 9 - 5 - 50 - 20 - - 0 @@ -126,7 +206,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Order - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 9 + 5 + 50 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -142,7 +230,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoOrder.VAL @@ -187,14 +275,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 9 - 28 - 20 - 20 - - 0 @@ -213,7 +293,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} d - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 9 + 28 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -229,7 +317,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoD.VAL @@ -310,7 +398,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)ml_monoPut @@ -343,14 +431,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 347 - 1 - 100 - 20 - - 0 @@ -369,11 +449,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} TH (deg.) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 347 + 1 + 100 + 20 + + @@ -385,7 +473,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoThetaRdbk @@ -439,7 +527,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoTheta.VAL @@ -490,7 +578,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)ml_monoThetaInc.VAL @@ -529,7 +617,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoThetaTweak @@ -580,7 +668,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)ml_monoThetaDec.VAL @@ -619,7 +707,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoTheta.DRVH @@ -673,7 +761,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoTheta.DRVL @@ -727,7 +815,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoLambda.DRVL @@ -781,7 +869,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoE.DRVL @@ -835,7 +923,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoLambdaRdbk @@ -889,7 +977,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoLambda.VAL @@ -940,7 +1028,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)ml_monoLambdaInc.VAL @@ -979,7 +1067,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoLambdaTweak @@ -1030,7 +1118,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)ml_monoLambdaDec.VAL @@ -1069,7 +1157,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoLambda.DRVH @@ -1123,7 +1211,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoE.VAL @@ -1174,7 +1262,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoETweak @@ -1225,7 +1313,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)ml_monoEDec.VAL @@ -1264,7 +1352,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)ml_monoEInc.VAL @@ -1303,7 +1391,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoE.DRVH @@ -1357,7 +1445,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoERdbk @@ -1405,14 +1493,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 237 - 1 - 100 - 20 - - 0 @@ -1431,24 +1511,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} lambda (A) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 127 + 237 1 100 20 + + + + QFrame::NoFrame + 0 @@ -1467,24 +1547,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} E (keV) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 127 + 1 + 100 + 20 + + QFrame::NoFrame - - - 460 - 80 - 75 - 14 - - 236 @@ -1503,7 +1583,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Low Limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 460 + 80 + 75 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1513,14 +1601,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 460 - 60 - 75 - 14 - - 236 @@ -1539,7 +1619,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Desired - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 460 + 60 + 75 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1549,14 +1637,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 460 - 38 - 75 - 14 - - 236 @@ -1575,7 +1655,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Actual - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 460 + 38 + 75 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1585,14 +1673,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 460 - 20 - 75 - 14 - - 236 @@ -1611,7 +1691,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} High Limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 460 + 20 + 75 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1654,7 +1742,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;535,1; + 535,1; @@ -1697,125 +1785,115 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - + + + caGraphics::Arc + + + + 100 + 180 + 25 + 18 + + + + + 100 + 180 + 25 + 18 + + + + 2 + + + + 225 + 144 + 21 + + + + + 225 + 144 + 21 + + + + + 225 + 144 + 21 + + + + Solid + 100 + 180 + 25 + 18 + + + + 90 + + + + 100 + 180 + 25 + 18 + + + + 180 + + + + + + 107 177 - 27 - 23 - - - - - caGraphics::Arc - - - - 0 - 3 - 25 - 18 - - - - - 0 - 3 - 25 - 18 - - - - 2 - - - - 225 - 144 - 21 - - - - - 225 - 144 - 21 - - - - - 225 - 144 - 21 - - - - Solid - - - - 0 - 3 - 25 - 18 - - - - 90 - - - - 0 - 3 - 25 - 18 - - - - 180 - - - - - - 7 - 0 - 8 - 10 - - - - 2 - - - - 225 - 144 - 21 - - - - - 225 - 144 - 21 - - - - - 225 - 144 - 21 - - - - Solid - - - 1,1;7,4;1,9; - - + 8 + 10 + + + + 2 + + + + 225 + 144 + 21 + + + + + 225 + 144 + 21 + + + + + 225 + 144 + 21 + + + + Solid + + + 1,9; + @@ -1854,7 +1932,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Dash - 19,1;1,1; + 1,1; @@ -1903,7 +1981,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoSeqMsg1 @@ -1984,7 +2062,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;535,1; + 535,1; @@ -1997,7 +2075,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoSeqMsg2 @@ -2051,7 +2129,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)ml_monoOperAck @@ -2117,14 +2195,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 244 - 100 - 14 - - 45 @@ -2143,7 +2213,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Calibration: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 244 + 100 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2153,14 +2231,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 300 - 123 - 90 - 20 - - 0 @@ -2179,24 +2249,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Y2 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 300 + 123 + 90 + 20 + + QFrame::NoFrame - - - 495 - 155 - 50 - 14 - - 45 @@ -2215,7 +2285,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Actual Pos. - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 495 + 155 + 50 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2225,14 +2303,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 495 - 173 - 50 - 14 - - 45 @@ -2251,7 +2321,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Motor Command - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 495 + 173 + 50 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2267,7 +2345,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -2300,14 +2378,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 496 - 138 - 50 - 14 - - 45 @@ -2326,7 +2396,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Motor PV - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 496 + 138 + 50 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2366,14 +2444,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 540 - 230 - 88 - 22 - - 153 @@ -2398,16 +2468,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Moving - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 540 @@ -2416,6 +2481,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 22 + + + + QFrame::NoFrame + 0 @@ -2440,24 +2510,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Done - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 540 + 230 + 88 + 22 + + QFrame::NoFrame - - - 310 - 176 - 80 - 14 - - 45 @@ -2476,24 +2546,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} (y offset) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 310 + 176 + 80 + 14 + + QFrame::NoFrame - - - 395 - 123 - 90 - 20 - - 0 @@ -2512,11 +2582,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Z2 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 395 + 123 + 90 + 20 + + @@ -2528,7 +2606,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoZRdbk @@ -2582,7 +2660,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoZPv @@ -2636,7 +2714,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_mono_yOffset @@ -2690,7 +2768,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoYPv @@ -2738,14 +2816,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 110 - 123 - 90 - 20 - - 0 @@ -2764,11 +2834,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Theta - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 110 + 123 + 90 + 20 + + @@ -2780,7 +2858,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoThetaRdbk @@ -2834,7 +2912,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoThetaPv @@ -2882,14 +2960,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 205 - 123 - 90 - 20 - - 0 @@ -2908,11 +2978,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Theta2 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 205 + 123 + 90 + 20 + + @@ -2924,7 +3002,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoTheta2RdbkEcho @@ -2978,7 +3056,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoTheta2Pv @@ -3032,7 +3110,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoThetaSet @@ -3086,7 +3164,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoThetaVel @@ -3140,7 +3218,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoTheta2Set @@ -3194,7 +3272,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoTheta2Vel @@ -3248,7 +3326,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoZSet @@ -3302,7 +3380,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoZVel @@ -3350,14 +3428,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 495 - 192 - 50 - 14 - - 45 @@ -3376,7 +3446,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Ideal - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 495 + 192 + 50 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3386,14 +3464,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 495 - 207 - 50 - 14 - - 45 @@ -3412,7 +3482,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Speed - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 495 + 207 + 50 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3566,7 +3644,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoThetaCmd @@ -3620,7 +3698,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoTheta2Cmd @@ -3674,7 +3752,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)ml_monoZCmd @@ -3733,7 +3811,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caRectangle_2 caArc_0 caPolyLine_1 - caFrame_0 caPolyLine_2 caRectangle_3 caPolyLine_3 diff --git a/opticsApp/op/ui/autoconvert/ml_monoSeqCtl_tiny.ui b/opticsApp/op/ui/autoconvert/ml_monoSeqCtl_tiny.ui new file mode 100644 index 0000000..b0ff9b1 --- /dev/null +++ b/opticsApp/op/ui/autoconvert/ml_monoSeqCtl_tiny.ui @@ -0,0 +1,1345 @@ + + +MainWindow + + + + 300 + 258 + 215 + 140 + + + + + +QWidget#centralWidget {background: rgba(200, 200, 200, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + + 0 + 32 + 105 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)ml_monoERdbk + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 0 + 48 + 105 + 25 + + + + caLineEdit::WidthAndHeight + + + $(P)ml_monoE.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 0 + 19 + 105 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)ml_monoE.DRVH + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 0 + 71 + 105 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)ml_monoE.DRVL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + E (keV) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 0 + 0 + 105 + 20 + + + + + + + 20 + 84 + 65 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)ml_monoETweak + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 0 + 84 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)ml_monoEDec.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + < + + + 1 + + + caMessageButton::Static + + + + + + 85 + 84 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)ml_monoEInc.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + > + + + 1 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + + + + 0 + 105 + 105 + 32 + + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 216 + 0 + + + + + 0 + 216 + 0 + + + + SCAN CONTROL + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 0 + 105 + 105 + 10 + + + + + + + 64 + 115 + 40 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)allstop.VAL + + + + 251 + 243 + 74 + + + + + 253 + 0 + 0 + + + + Abort + + + 1 + + + caMessageButton::Static + + + + + + 43 + 115 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)ml_monoE:scanParms.GO + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Go + + + 1 + + + caMessageButton::Static + + + + + + 22 + 115 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)ml_monoE:scanParms.LOAD + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Ld + + + 1 + + + caMessageButton::Static + + + + + + 1 + 115 + 20 + 20 + + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Menu + + + Energy-scan parameters + + + scanParms.adl + + + P=$(P),Q=ml_monoE,PV=ml_monoE + + + false + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + TH (deg.) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 110 + 0 + 105 + 20 + + + + + + + 110 + 32 + 105 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)ml_monoThetaRdbk + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 110 + 48 + 105 + 25 + + + + caLineEdit::WidthAndHeight + + + $(P)ml_monoTheta.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 110 + 19 + 105 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)ml_monoTheta.DRVH + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 110 + 71 + 105 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)ml_monoTheta.DRVL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 195 + 84 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)ml_monoThetaInc.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + > + + + 1 + + + caMessageButton::Static + + + + + + 130 + 84 + 65 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)ml_monoThetaTweak + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 110 + 84 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)ml_monoThetaDec.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + < + + + 1 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + + + + 110 + 105 + 105 + 32 + + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 216 + 0 + + + + + 0 + 216 + 0 + + + + SCAN CONTROL + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 110 + 105 + 105 + 10 + + + + + + + 174 + 115 + 40 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)allstop.VAL + + + + 251 + 243 + 74 + + + + + 253 + 0 + 0 + + + + Abort + + + 1 + + + caMessageButton::Static + + + + + + 153 + 115 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)ml_monoTheta:scanParms.GO + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Go + + + 1 + + + caMessageButton::Static + + + + + + 132 + 115 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)ml_monoTheta:scanParms.LOAD + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Ld + + + 1 + + + caMessageButton::Static + + + + + + 111 + 115 + 20 + 20 + + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Menu + + + Theta-scan parameters + + + scanParms.adl + + + P=$(P),Q=ml_monoTheta,PV=ml_monoTheta + + + false + + + caLabel_0 + caRectangle_0 + caLabel_1 + caLabel_2 + caRectangle_1 + caLabel_3 + caLineEdit_0 + caTextEntry_0 + caLineEdit_1 + caLineEdit_2 + caTextEntry_1 + caMessageButton_0 + caMessageButton_1 + caMessageButton_2 + caMessageButton_3 + caMessageButton_4 + caRelatedDisplay_0 + caLineEdit_3 + caTextEntry_2 + caLineEdit_4 + caLineEdit_5 + caMessageButton_5 + caTextEntry_3 + caMessageButton_6 + caMessageButton_7 + caMessageButton_8 + caMessageButton_9 + caRelatedDisplay_1 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/autoconvert/orient.ui b/opticsApp/op/ui/autoconvert/orient.ui new file mode 100644 index 0000000..31b8dd4 --- /dev/null +++ b/opticsApp/op/ui/autoconvert/orient.ui @@ -0,0 +1,3482 @@ + + +MainWindow + + + + 82 + 81 + 490 + 245 + + + + + +QWidget#centralWidget {background: rgba(218, 218, 218, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + caGraphics::Rectangle + + + + 0 + 0 + 490 + 20 + + + + 3 + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + caGraphics::Rectangle + + + + 0 + 20 + 490 + 3 + + + + 3 + + + + 10 + 0 + 184 + + + + Filled + + + + 10 + 0 + 184 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Diffractometer $(P)orient$(O) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 0 + 0 + 490 + 20 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + CONSTRAINT: + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 132 + 64 + 115 + 10 + + + + + + + 132 + 75 + 115 + 20 + + + + $(P)orient$(O):Mode + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caMenu::Static + + + + + + 164 + 99 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):TTH + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 164 + 122 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):TH + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 164 + 145 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):CHI + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 164 + 168 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):PHI + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 161 + 97 + 85 + 24 + + + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):TTH_busy + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + TTH + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 131 + 100 + 30 + 20 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + TH + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 131 + 123 + 30 + 20 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + CHI + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 131 + 146 + 30 + 20 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + PHI + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 131 + 169 + 30 + 20 + + + + + + caGraphics::Rectangle + + + + 161 + 121 + 85 + 24 + + + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):TH_busy + + + + + caGraphics::Rectangle + + + + 161 + 143 + 85 + 24 + + + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):CHI_busy + + + + + caGraphics::Rectangle + + + + 161 + 166 + 85 + 24 + + + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):PHI_busy + + + + + + 254 + 118 + 99 + 6 + + + + 6 + + + + 51 + 153 + 0 + + + + + 51 + 153 + 0 + + + + + 51 + 153 + 0 + + + + Solid + + + caPolyLine::Calc + + + A||B + + + $(P)orient$(O):motPut + + + $(P)orient$(O):motPut_Auto + + + 3,3; + + + + + + 344 + 108 + 23 + 26 + + + + 1 + + + + 51 + 153 + 0 + + + + Filled + + + + 51 + 153 + 0 + + + + Solid + + + caPolyLine::Calc + + + A||B + + + $(P)orient$(O):motPut + + + $(P)orient$(O):motPut_Auto + + + 0,0; + + + caPolyLine::Polygon + + + + + + 280 + 97 + 55 + 14 + + + + $(P)orient$(O):motPut_Auto + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caMenu::Static + + + + + + 280 + 111 + 55 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):motPut + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Move + + + 1 + + + caMessageButton::Static + + + + + + 249 + 202 + 120 + 28 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):stopMotors + + + + 251 + 243 + 74 + + + + + 253 + 0 + 0 + + + + Stop Motors + + + 1 + + + caMessageButton::Static + + + + + + 430 + 23 + 45 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):OperAck + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Erase + + + 1 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + + + + 10 + 22 + 420 + 22 + + + + 3 + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):Alert + + + + + + 14 + 27 + 412 + 14 + + + + caLineEdit::WidthAndHeight + + + + 10 + 0 + 184 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 280 + 70 + 55 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):Busy + + + + 51 + 153 + 0 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + string + + + caLineEdit::Static + + + + + + 26 + 46 + 80 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):H_RBV + + + + 10 + 0 + 184 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + L + + + ESimpleLabel::WidthAndHeight + + + + 10 + 180 + 10 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 25 + 179 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):L + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 23 + 177 + 84 + 24 + + + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):L_busy + + + + + + 26 + 163 + 80 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):L_RBV + + + + 10 + 0 + 184 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + K + + + ESimpleLabel::WidthAndHeight + + + + 10 + 120 + 10 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 25 + 119 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):K + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 23 + 117 + 84 + 24 + + + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):K_busy + + + + + + 26 + 103 + 80 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):K_RBV + + + + 10 + 0 + 184 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 25 + 61 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):H + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + H + + + ESimpleLabel::WidthAndHeight + + + + 10 + 62 + 10 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + caGraphics::Rectangle + + + + 23 + 59 + 84 + 24 + + + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):H_busy + + + + + + 280 + 145 + 55 + 14 + + + + $(P)orient$(O):motGet_Auto + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caMenu::Static + + + + + + 280 + 159 + 55 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):motGet + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Read + + + 1 + + + caMessageButton::Static + + + + + + 264 + 165 + 99 + 7 + + + + 6 + + + + 51 + 153 + 0 + + + + + 51 + 153 + 0 + + + + + 51 + 153 + 0 + + + + Solid + + + caPolyLine::Calc + + + A||B + + + $(P)orient$(O):motGet + + + $(P)orient$(O):motGet_Auto + + + 96,3; + + + + + + 252 + 156 + 23 + 26 + + + + 1 + + + + 51 + 153 + 0 + + + + Filled + + + + 51 + 153 + 0 + + + + Solid + + + caPolyLine::Calc + + + A||B + + + $(P)orient$(O):motGet + + + $(P)orient$(O):motGet_Auto + + + 23,0; + + + caPolyLine::Polygon + + + + + + 450 + 225 + 40 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -More + + + Menu + + + Everything;Motors + + + orient_full.adl;motor4x.adl + + + P=$(P),O=$(O),PM=$(PM),mTTH=$(mTTH),mTH=$(mTH),mCHI=$(mCHI),mPHI=$(mPHI);P=$(PM),M1=$(mTTH),M2=$(mTH),M3=$(mCHI),M4=$(mPHI) + + + true;false + + + + + + 412 + 225 + 40 + 21 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -Less + + + Menu + + + HKL only + + + orient_HKL.adl + + + P=$(P),O=$(O),PM=$(PM),mTTH=$(mTTH),mTH=$(mTH),mCHI=$(mCHI),mPHI=$(mPHI) + + + true + + + + + + 85 + 81 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):H_tweak.A + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + caMessageButton::Static + + + + + + 25 + 81 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):H_tweak.B + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + caMessageButton::Static + + + + + + 45 + 83 + 40 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):H_tweak.C + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 85 + 199 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):L_tweak.A + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + caMessageButton::Static + + + + + + 25 + 199 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):L_tweak.B + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + caMessageButton::Static + + + + + + 45 + 201 + 40 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):L_tweak.C + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 85 + 139 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):K_tweak.A + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + caMessageButton::Static + + + + + + 25 + 139 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):K_tweak.B + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + caMessageButton::Static + + + + + + 45 + 141 + 40 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):K_tweak.C + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 397 + 126 + 80 + 14 + + + + caLineEdit::WidthAndHeight + + + $(PM)$(mCHI).RBV + + + + 10 + 0 + 184 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + caGraphics::Rectangle + + + + 395 + 140 + 84 + 24 + + + + 2 + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::Calc + + + A=0 + + + $(P)orient$(O):motCHI_Connected + + + + + + 397 + 142 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(PM)$(mCHI) + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 395 + 140 + 84 + 24 + + + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):waiting4motCHI + + + + + caGraphics::Rectangle + + + + 395 + 100 + 84 + 24 + + + + 2 + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::Calc + + + A=0 + + + $(P)orient$(O):motTH_Connected + + + + + caGraphics::Rectangle + + + + 395 + 100 + 84 + 24 + + + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):waiting4motTH + + + + + + 397 + 86 + 80 + 14 + + + + caLineEdit::WidthAndHeight + + + $(PM)$(mTH).RBV + + + + 10 + 0 + 184 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 397 + 102 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(PM)$(mTH) + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 397 + 46 + 80 + 14 + + + + caLineEdit::WidthAndHeight + + + $(PM)$(mTTH).RBV + + + + 10 + 0 + 184 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + caGraphics::Rectangle + + + + 395 + 60 + 84 + 24 + + + + 2 + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::Calc + + + A=0 + + + $(P)orient$(O):motTTH_Connected + + + + + + 397 + 62 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(PM)$(mTTH) + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 395 + 60 + 84 + 24 + + + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):waiting4motTTH + + + + + QFrame::NoFrame + + + + 51 + 153 + 0 + + + + + 51 + 153 + 0 + + + + caLabel::IfNotZero + + + $(P)orient$(O):waiting4Mot + + + Moving + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 395 + 203 + 84 + 20 + + + + + + + 397 + 166 + 80 + 14 + + + + caLineEdit::WidthAndHeight + + + $(PM)$(mPHI).RBV + + + + 10 + 0 + 184 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + caGraphics::Rectangle + + + + 395 + 180 + 84 + 24 + + + + 2 + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::Calc + + + A=0 + + + $(P)orient$(O):motPHI_Connected + + + + + + 397 + 182 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(PM)$(mPHI) + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 395 + 180 + 84 + 24 + + + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):waiting4motPHI + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + TTH + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 365 + 63 + 30 + 20 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + TH + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 365 + 103 + 30 + 20 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + CHI + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 365 + 143 + 30 + 20 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + PHI + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 365 + 183 + 30 + 20 + + + + caRectangle_0 + caRectangle_1 + caLabel_0 + caLabel_1 + caRectangle_2 + caLabel_2 + caLabel_3 + caLabel_4 + caLabel_5 + caRectangle_3 + caRectangle_4 + caRectangle_5 + caPolyLine_0 + caPolygon_0 + caRectangle_6 + caLabel_6 + caRectangle_7 + caLabel_7 + caRectangle_8 + caLabel_8 + caRectangle_9 + caPolyLine_1 + caPolygon_1 + caRectangle_10 + caRectangle_11 + caRectangle_12 + caRectangle_13 + caRectangle_14 + caRectangle_15 + caLabel_9 + caRectangle_16 + caRectangle_17 + caLabel_10 + caLabel_11 + caLabel_12 + caLabel_13 + caMenu_0 + caTextEntry_0 + caTextEntry_1 + caTextEntry_2 + caTextEntry_3 + caMenu_1 + caMessageButton_0 + caMessageButton_1 + caMessageButton_2 + caLineEdit_0 + caLineEdit_1 + caLineEdit_2 + caTextEntry_4 + caLineEdit_3 + caTextEntry_5 + caLineEdit_4 + caTextEntry_6 + caMenu_2 + caMessageButton_3 + caRelatedDisplay_0 + caRelatedDisplay_1 + caMessageButton_4 + caMessageButton_5 + caTextEntry_7 + caMessageButton_6 + caMessageButton_7 + caTextEntry_8 + caMessageButton_8 + caMessageButton_9 + caTextEntry_9 + caLineEdit_5 + caTextEntry_10 + caLineEdit_6 + caTextEntry_11 + caLineEdit_7 + caTextEntry_12 + caLineEdit_8 + caTextEntry_13 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/orient9.ui b/opticsApp/op/ui/autoconvert/orient9.ui similarity index 85% rename from opticsApp/op/ui/orient9.ui rename to opticsApp/op/ui/autoconvert/orient9.ui index 1a03774..21c8e39 100644 --- a/opticsApp/op/ui/orient9.ui +++ b/opticsApp/op/ui/autoconvert/orient9.ui @@ -4,8 +4,8 @@ - 274 - 33 + 729 + 568 675 280 @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -94,6 +182,29 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Diffractometer + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + 0 @@ -102,6 +213,11 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} 20 + + + + QFrame::NoFrame + 0 @@ -117,27 +233,63 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - Diffractometer + H - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 30 + 25 + 80 + 20 + + - + QFrame::NoFrame + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + K + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + - 30 + 125 25 80 20 + + + + QFrame::NoFrame + 0 @@ -153,27 +305,63 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - H + L - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 220 + 25 + 80 + 20 + + - + QFrame::NoFrame + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + TTH + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + - 125 + 315 25 80 20 + + + + QFrame::NoFrame + 0 @@ -189,27 +377,63 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - K + TH - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 405 + 25 + 80 + 20 + + - + QFrame::NoFrame + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + CHI + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + - 220 + 495 25 80 20 + + + + QFrame::NoFrame + 0 @@ -225,168 +449,22 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - L + PHI - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - 315 + 585 25 - 352 - 22 + 80 + 20 - - - QFrame::NoFrame - - - - 0 - 0 - 80 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - TTH - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 90 - 0 - 80 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - TH - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 180 - 0 - 80 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - CHI - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 270 - 0 - 80 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - PHI - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - @@ -566,7 +644,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_p4:H @@ -620,7 +698,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_p4:TTH @@ -674,7 +752,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_p4:K @@ -728,7 +806,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_p4:L @@ -782,7 +860,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_p3:TTH @@ -836,7 +914,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_p3:H @@ -890,7 +968,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_p3:K @@ -944,7 +1022,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_p3:L @@ -998,7 +1076,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_p2:H @@ -1052,7 +1130,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_p2:K @@ -1106,7 +1184,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_p2:L @@ -1160,7 +1238,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_p2:TTH @@ -1214,7 +1292,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_p1:H @@ -1268,7 +1346,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_p1:K @@ -1322,7 +1400,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_p1:L @@ -1376,7 +1454,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_p1:TTH @@ -1430,7 +1508,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):H_RBV @@ -1484,7 +1562,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):K_RBV @@ -1538,7 +1616,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):L_RBV @@ -1592,7 +1670,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient1:TTH @@ -1646,7 +1724,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient1:TH @@ -1700,7 +1778,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient1:CHI @@ -1754,7 +1832,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient1:PHI @@ -1899,7 +1977,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(PM)$(mTTH) @@ -2164,7 +2242,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_m1:H @@ -2218,7 +2296,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_m1:K @@ -2272,7 +2350,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_m1:L @@ -2326,7 +2404,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_m1:TTH @@ -2380,7 +2458,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_m2:H @@ -2434,7 +2512,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_m2:K @@ -2488,7 +2566,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_m2:L @@ -2542,7 +2620,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_m2:TTH @@ -2596,7 +2674,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_m3:H @@ -2650,7 +2728,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_m3:K @@ -2704,7 +2782,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_m3:L @@ -2758,7 +2836,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_m3:TTH @@ -2812,7 +2890,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_m4:H @@ -2866,7 +2944,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_m4:K @@ -2920,7 +2998,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_m4:L @@ -2974,7 +3052,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient_m4:TTH @@ -3028,7 +3106,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):H @@ -3125,7 +3203,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):K @@ -3222,7 +3300,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):L @@ -3319,7 +3397,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)orient$(O):H_tweak.A @@ -3358,7 +3436,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)orient$(O):H_tweak.B @@ -3397,7 +3475,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):H_tweak.C @@ -3448,7 +3526,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)orient$(O):K_tweak.A @@ -3487,7 +3565,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)orient$(O):K_tweak.B @@ -3526,7 +3604,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):K_tweak.C @@ -3577,7 +3655,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)orient$(O):L_tweak.A @@ -3616,7 +3694,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)orient$(O):L_tweak.B @@ -3655,7 +3733,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):L_tweak.C @@ -3706,7 +3784,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(PM)$(mTTH).TWF @@ -3745,7 +3823,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(PM)$(mTTH).TWR @@ -3784,7 +3862,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(PM)$(mTTH).TWV @@ -3835,7 +3913,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(PM)$(mTH).TWF @@ -3874,7 +3952,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(PM)$(mTH).TWR @@ -3913,7 +3991,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(PM)$(mTH).TWV @@ -3964,7 +4042,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(PM)$(mCHI).TWF @@ -4003,7 +4081,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(PM)$(mCHI).TWR @@ -4042,7 +4120,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(PM)$(mCHI).TWV @@ -4142,7 +4220,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(PM)$(mTH) @@ -4288,7 +4366,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(PM)$(mCHI) @@ -4434,7 +4512,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(PM)$(mPHI) @@ -4531,7 +4609,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(PM)$(mPHI).TWF @@ -4570,7 +4648,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(PM)$(mPHI).TWR @@ -4609,7 +4687,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(PM)$(mPHI).TWV @@ -4703,7 +4781,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)orient$(O):stopMotors @@ -4732,502 +4810,472 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caMessageButton::Static - + 405 48 - 262 - 71 + 260 + 1 - - - - 0 - 0 - 260 - 1 - - - - 1 - - - - 255 - 255 - 255 - - - - - 255 - 255 - 255 - - - - - 255 - 255 - 255 - - - - Solid - - - $(P)orient$(O):stopMotors - - - 0,0;259,0; - - - - - - 0 - 68 - 260 - 1 - - - - 1 - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - $(P)orient$(O):stopMotors - - - 0,0;259,0; - - - - - - 0 - 0 - 1 - 69 - - - - 1 - - - - 255 - 255 - 255 - - - - - 255 - 255 - 255 - - - - - 255 - 255 - 255 - - - - Solid - - - $(P)orient$(O):stopMotors - - - 0,0;0,68; - - - - - - 258 - 0 - 1 - 69 - - - - 1 - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - $(P)orient$(O):stopMotors - - - 0,0;0,68; - - + + 1 + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + Solid + + + $(P)orient$(O):stopMotors + + + 259,0; + - + 405 - 205 - 262 - 71 + 116 + 260 + 1 - - - - 0 - 0 - 260 - 1 - - - - 1 - - - - 255 - 255 - 255 - - - - - 255 - 255 - 255 - - - - - 255 - 255 - 255 - - - - Solid - - - $(P)orient$(O):stopMotors - - - 0,0;259,0; - - - - - - 0 - 68 - 260 - 1 - - - - 1 - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - $(P)orient$(O):stopMotors - - - 0,0;259,0; - - - - - - 0 - 0 - 1 - 69 - - - - 1 - - - - 255 - 255 - 255 - - - - - 255 - 255 - 255 - - - - - 255 - 255 - 255 - - - - Solid - - - $(P)orient$(O):stopMotors - - - 0,0;0,68; - - - - - - 258 - 0 - 1 - 69 - - - - 1 - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - $(P)orient$(O):stopMotors - - - 0,0;0,68; - - + + 1 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + $(P)orient$(O):stopMotors + + + 259,0; + - + - 456 - 233 - 177 - 22 + 405 + 48 + 1 + 69 - - - QFrame::NoFrame - - - - 0 - 0 - 70 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Energy: - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 74 - 0 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):energy - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 145 - 0 - 30 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - keV - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - + + 1 + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + Solid + + + $(P)orient$(O):stopMotors + + + 0,68; + + + + + + 663 + 48 + 1 + 69 + + + + 1 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + $(P)orient$(O):stopMotors + + + 0,68; + + + + + + 405 + 205 + 260 + 1 + + + + 1 + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + Solid + + + $(P)orient$(O):stopMotors + + + 259,0; + + + + + + 405 + 273 + 260 + 1 + + + + 1 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + $(P)orient$(O):stopMotors + + + 259,0; + + + + + + 405 + 205 + 1 + 69 + + + + 1 + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + Solid + + + $(P)orient$(O):stopMotors + + + 0,68; + + + + + + 663 + 205 + 1 + 69 + + + + 1 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + $(P)orient$(O):stopMotors + + + 0,68; + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Energy: + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 456 + 233 + 70 + 20 + + + + + + + 530 + 233 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):energy + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + keV + + + ESimpleLabel::WidthAndHeight + + + + 601 + 233 + 30 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + caRectangle_0 caRectangle_1 @@ -5239,7 +5287,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caLabel_5 caLabel_6 caLabel_7 - caFrame_0 caRectangle_2 caRectangle_3 caRectangle_4 @@ -5256,15 +5303,12 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caPolyLine_1 caPolyLine_2 caPolyLine_3 - caFrame_1 caPolyLine_4 caPolyLine_5 caPolyLine_6 caPolyLine_7 - caFrame_2 caLabel_8 caLabel_9 - caFrame_3 caRelatedDisplay_0 caRelatedDisplay_1 caRelatedDisplay_2 diff --git a/opticsApp/op/ui/autoconvert/orient_HKL.ui b/opticsApp/op/ui/autoconvert/orient_HKL.ui new file mode 100644 index 0000000..2ed926e --- /dev/null +++ b/opticsApp/op/ui/autoconvert/orient_HKL.ui @@ -0,0 +1,1234 @@ + + +MainWindow + + + + 885 + 192 + 340 + 85 + + + + + +QWidget#centralWidget {background: rgba(218, 218, 218, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + caGraphics::Rectangle + + + + 0 + 0 + 300 + 20 + + + + 3 + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + caGraphics::Rectangle + + + + 0 + 20 + 300 + 3 + + + + 3 + + + + 10 + 0 + 184 + + + + Filled + + + + 10 + 0 + 184 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Diffractometer $(P)orient$(O) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 0 + 0 + 300 + 20 + + + + + + + 300 + 0 + 40 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -More + + + Menu + + + HKL, Angles, Motors;Everything;Motors + + + orient.adl;orient_full.adl;motor4x.adl + + + P=$(P),O=$(O),PM=$(PM),mTTH=$(mTTH),mTH=$(mTH),mCHI=$(mCHI),mPHI=$(mPHI);P=$(P),O=$(O),PM=$(PM),mTTH=$(mTTH),mTH=$(mTH),mCHI=$(mCHI),mPHI=$(mPHI);P=$(PM),M1=$(mTTH),M2=$(mTH),M3=$(mCHI),M4=$(mPHI) + + + true;true;false + + + + + + 26 + 24 + 80 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):H_RBV + + + + 10 + 0 + 184 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 136 + 24 + 80 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):K_RBV + + + + 10 + 0 + 184 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 246 + 24 + 80 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):L_RBV + + + + 10 + 0 + 184 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 25 + 39 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):H + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + H + + + ESimpleLabel::WidthAndHeight + + + + 10 + 40 + 10 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + caGraphics::Rectangle + + + + 23 + 37 + 84 + 24 + + + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):H_busy + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + K + + + ESimpleLabel::WidthAndHeight + + + + 120 + 40 + 10 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 135 + 39 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):K + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 133 + 37 + 84 + 24 + + + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):K_busy + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + L + + + ESimpleLabel::WidthAndHeight + + + + 230 + 40 + 10 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 245 + 39 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):L + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 243 + 37 + 84 + 24 + + + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):L_busy + + + + + + 85 + 59 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):H_tweak.A + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + caMessageButton::Static + + + + + + 25 + 59 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):H_tweak.B + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + caMessageButton::Static + + + + + + 45 + 61 + 40 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):H_tweak.C + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 195 + 59 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):K_tweak.A + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + caMessageButton::Static + + + + + + 135 + 59 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):K_tweak.B + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + caMessageButton::Static + + + + + + 155 + 61 + 40 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):K_tweak.C + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 305 + 59 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):L_tweak.A + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + caMessageButton::Static + + + + + + 245 + 59 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):L_tweak.B + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + caMessageButton::Static + + + + + + 265 + 61 + 40 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):L_tweak.C + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + caRectangle_0 + caRectangle_1 + caLabel_0 + caLabel_1 + caRectangle_2 + caLabel_2 + caRectangle_3 + caLabel_3 + caRectangle_4 + caRelatedDisplay_0 + caLineEdit_0 + caLineEdit_1 + caLineEdit_2 + caTextEntry_0 + caTextEntry_1 + caTextEntry_2 + caMessageButton_0 + caMessageButton_1 + caTextEntry_3 + caMessageButton_2 + caMessageButton_3 + caTextEntry_4 + caMessageButton_4 + caMessageButton_5 + caTextEntry_5 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/orient_HKL_angles.ui b/opticsApp/op/ui/autoconvert/orient_HKL_angles.ui similarity index 73% rename from opticsApp/op/ui/orient_HKL_angles.ui rename to opticsApp/op/ui/autoconvert/orient_HKL_angles.ui index 9cb94b8..b7dff48 100644 --- a/opticsApp/op/ui/orient_HKL_angles.ui +++ b/opticsApp/op/ui/autoconvert/orient_HKL_angles.ui @@ -4,8 +4,8 @@ - 73 - 547 + 690 + 570 700 65 @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -94,14 +182,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 0 - 0 - 700 - 20 - - 0 @@ -120,11 +200,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Diffractometer $(P)orient$(O) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 0 + 700 + 20 + + @@ -136,7 +224,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):H_RBV @@ -190,7 +278,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):H @@ -235,14 +323,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 10 - 41 - 10 - 20 - - 0 @@ -261,7 +341,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} H - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 41 + 10 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -313,148 +401,138 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)orient$(O):H_busy - + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + K + + + ESimpleLabel::WidthAndHeight + 120 + 42 + 10 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 135 + 41 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):K + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 133 39 - 99 - 26 + 84 + 24 - - - QFrame::NoFrame - - - - 0 - 3 - 10 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - K - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 15 - 2 - 80 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):K - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - caGraphics::Rectangle - - - - 13 - 0 - 84 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):K_busy - - + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):K_busy + @@ -466,7 +544,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):K_RBV @@ -514,14 +592,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 230 - 42 - 10 - 20 - - 0 @@ -540,7 +610,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} L - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 230 + 42 + 10 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -556,7 +634,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):L @@ -653,7 +731,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):L_RBV @@ -701,14 +779,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 520 - 25 - 80 - 20 - - 0 @@ -727,11 +797,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} CHI - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 520 + 25 + 80 + 20 + + @@ -743,7 +821,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):CHI @@ -791,14 +869,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 610 - 25 - 80 - 20 - - 0 @@ -817,11 +887,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} PHI - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 610 + 25 + 80 + 20 + + @@ -833,7 +911,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):PHI @@ -877,118 +955,100 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caLineEdit::Static - + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + TTH + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + 340 25 - 82 - 36 + 80 + 20 - - - QFrame::NoFrame - - - - 0 - 0 - 80 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - TTH - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 0 - 20 - 80 - 14 - - - - caLineEdit::Height - - - $(P)orient$(O):TTH - - - - 10 - 0 - 184 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - QFrame::NoFrame - + - 430 - 25 + 340 + 45 80 - 20 + 14 + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):TTH + + + + 10 + 0 + 184 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + 0 @@ -1007,11 +1067,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} TH - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 430 + 25 + 80 + 20 + + @@ -1023,7 +1091,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):TH @@ -1074,13 +1142,11 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caRectangle_2 caLabel_2 caRectangle_3 - caFrame_0 caLabel_3 caRectangle_4 caLabel_4 caLabel_5 caLabel_6 - caFrame_1 caLabel_7 caLineEdit_0 caTextEntry_0 diff --git a/opticsApp/op/ui/autoconvert/orient_XTALs.ui b/opticsApp/op/ui/autoconvert/orient_XTALs.ui new file mode 100644 index 0000000..cce1c4c --- /dev/null +++ b/opticsApp/op/ui/autoconvert/orient_XTALs.ui @@ -0,0 +1,4144 @@ + + +MainWindow + + + + 53 + 289 + 560 + 215 + + + + + +QWidget#centralWidget {background: rgba(218, 218, 218, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + USE + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 5 + 35 + 25 + 14 + + + + + + + 5 + 55 + 25 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):xtal_1.PROC + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 1 + + + 1 + + + caMessageButton::Static + + + + + + 5 + 75 + 25 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):xtal_2.PROC + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 2 + + + 2 + + + caMessageButton::Static + + + + + + 5 + 95 + 25 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):xtal_3.PROC + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 3 + + + 3 + + + caMessageButton::Static + + + + + + 5 + 115 + 25 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):xtal_4.PROC + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 4 + + + 4 + + + caMessageButton::Static + + + + + + 5 + 135 + 25 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):xtal_5.PROC + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 5 + + + 5 + + + caMessageButton::Static + + + + + + 5 + 155 + 25 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):xtal_6.PROC + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 6 + + + 6 + + + caMessageButton::Static + + + + + + 5 + 175 + 25 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):xtal_7.PROC + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 7 + + + 7 + + + caMessageButton::Static + + + + + + 5 + 195 + 25 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):xtal_8.PROC + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 8 + + + 8 + + + caMessageButton::Static + + + + + + 530 + 175 + 25 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):xtal_7_get.PROC + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 7 + + + 7 + + + caMessageButton::Static + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + Get + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 530 + 35 + 25 + 14 + + + + + + + 530 + 55 + 25 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):xtal_1_get.PROC + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 1 + + + 1 + + + caMessageButton::Static + + + + + + 530 + 75 + 25 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):xtal_2_get.PROC + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 2 + + + 2 + + + caMessageButton::Static + + + + + + 530 + 95 + 25 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):xtal_3_get.PROC + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 3 + + + 3 + + + caMessageButton::Static + + + + + + 530 + 115 + 25 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):xtal_4_get.PROC + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 4 + + + 4 + + + caMessageButton::Static + + + + + + 530 + 135 + 25 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):xtal_5_get.PROC + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 5 + + + 5 + + + caMessageButton::Static + + + + + + 530 + 155 + 25 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):xtal_6_get.PROC + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 6 + + + 6 + + + caMessageButton::Static + + + + + + 530 + 195 + 25 + 16 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):xtal_8_get.PROC + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + 8 + + + 8 + + + caMessageButton::Static + + + + + + 35 + 175 + 100 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_7.STR1 + + + + 0 + 0 + 0 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 205 + 175 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_7.DO3 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 270 + 175 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_7.DO4 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 335 + 175 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_7.DO5 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 400 + 175 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_7.DO6 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 465 + 175 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_7.DO7 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 140 + 175 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_7.DO2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + crystal + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 35 + 25 + 100 + 14 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + description + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 35 + 40 + 100 + 14 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + b + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 205 + 25 + 60 + 14 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + c + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 270 + 25 + 60 + 14 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + alpha + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 335 + 25 + 60 + 14 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + beta + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 400 + 25 + 60 + 14 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + gamma + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 465 + 25 + 60 + 14 + + + + + + QFrame::NoFrame + + + + 45 + 45 + 45 + + + + + 45 + 45 + 45 + + + + a + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 140 + 25 + 60 + 14 + + + + + + + 35 + 55 + 100 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_1.STR1 + + + + 0 + 0 + 0 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 205 + 55 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_1.DO3 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 270 + 55 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_1.DO4 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 335 + 55 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_1.DO5 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 400 + 55 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_1.DO6 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 465 + 55 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_1.DO7 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 140 + 55 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_1.DO2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 35 + 75 + 100 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_2.STR1 + + + + 0 + 0 + 0 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 205 + 75 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_2.DO3 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 270 + 75 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_2.DO4 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 335 + 75 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_2.DO5 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 400 + 75 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_2.DO6 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 465 + 75 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_2.DO7 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 140 + 75 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_2.DO2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 35 + 95 + 100 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_3.STR1 + + + + 0 + 0 + 0 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 205 + 95 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_3.DO3 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 270 + 95 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_3.DO4 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 335 + 95 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_3.DO5 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 400 + 95 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_3.DO6 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 465 + 95 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_3.DO7 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 140 + 95 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_3.DO2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 35 + 115 + 100 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_4.STR1 + + + + 0 + 0 + 0 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 205 + 115 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_4.DO3 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 270 + 115 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_4.DO4 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 335 + 115 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_4.DO5 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 400 + 115 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_4.DO6 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 465 + 115 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_4.DO7 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 140 + 115 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_4.DO2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 35 + 135 + 100 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_5.STR1 + + + + 0 + 0 + 0 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 205 + 135 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_5.DO3 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 270 + 135 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_5.DO4 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 335 + 135 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_5.DO5 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 400 + 135 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_5.DO6 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 465 + 135 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_5.DO7 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 140 + 135 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_5.DO2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 35 + 155 + 100 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_6.STR1 + + + + 0 + 0 + 0 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 205 + 155 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_6.DO3 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 270 + 155 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_6.DO4 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 335 + 155 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_6.DO5 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 400 + 155 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_6.DO6 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 465 + 155 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_6.DO7 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 140 + 155 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_6.DO2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 35 + 195 + 100 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_8.STR1 + + + + 0 + 0 + 0 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 205 + 195 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_8.DO3 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 270 + 195 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_8.DO4 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 335 + 195 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_8.DO5 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 400 + 195 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_8.DO6 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 465 + 195 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_8.DO7 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 140 + 195 + 60 + 16 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):xtal_8.DO2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 0 + 0 + 560 + 20 + + + + 3 + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Diffractometer $(P)orient$(O) crystals + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 0 + 0 + 560 + 20 + + + + + + caGraphics::Rectangle + + + + 0 + 20 + 560 + 3 + + + + 3 + + + + 10 + 0 + 184 + + + + Filled + + + + 10 + 0 + 184 + + + + Solid + + + caLabel_0 + caLabel_1 + caLabel_2 + caLabel_3 + caLabel_4 + caLabel_5 + caLabel_6 + caLabel_7 + caLabel_8 + caLabel_9 + caRectangle_0 + caLabel_10 + caRectangle_1 + caMessageButton_0 + caMessageButton_1 + caMessageButton_2 + caMessageButton_3 + caMessageButton_4 + caMessageButton_5 + caMessageButton_6 + caMessageButton_7 + caMessageButton_8 + caMessageButton_9 + caMessageButton_10 + caMessageButton_11 + caMessageButton_12 + caMessageButton_13 + caMessageButton_14 + caMessageButton_15 + caTextEntry_0 + caTextEntry_1 + caTextEntry_2 + caTextEntry_3 + caTextEntry_4 + caTextEntry_5 + caTextEntry_6 + caTextEntry_7 + caTextEntry_8 + caTextEntry_9 + caTextEntry_10 + caTextEntry_11 + caTextEntry_12 + caTextEntry_13 + caTextEntry_14 + caTextEntry_15 + caTextEntry_16 + caTextEntry_17 + caTextEntry_18 + caTextEntry_19 + caTextEntry_20 + caTextEntry_21 + caTextEntry_22 + caTextEntry_23 + caTextEntry_24 + caTextEntry_25 + caTextEntry_26 + caTextEntry_27 + caTextEntry_28 + caTextEntry_29 + caTextEntry_30 + caTextEntry_31 + caTextEntry_32 + caTextEntry_33 + caTextEntry_34 + caTextEntry_35 + caTextEntry_36 + caTextEntry_37 + caTextEntry_38 + caTextEntry_39 + caTextEntry_40 + caTextEntry_41 + caTextEntry_42 + caTextEntry_43 + caTextEntry_44 + caTextEntry_45 + caTextEntry_46 + caTextEntry_47 + caTextEntry_48 + caTextEntry_49 + caTextEntry_50 + caTextEntry_51 + caTextEntry_52 + caTextEntry_53 + caTextEntry_54 + caTextEntry_55 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/autoconvert/orient_full.ui b/opticsApp/op/ui/autoconvert/orient_full.ui new file mode 100644 index 0000000..8a3a559 --- /dev/null +++ b/opticsApp/op/ui/autoconvert/orient_full.ui @@ -0,0 +1,8151 @@ + + +MainWindow + + + + 756 + 440 + 550 + 565 + + + + + +QWidget#centralWidget {background: rgba(218, 218, 218, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + a + + + ESimpleLabel::WidthAndHeight + + + + 13 + 458 + 10 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + b + + + ESimpleLabel::WidthAndHeight + + + + 13 + 478 + 10 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 28 + 457 + 50 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):a + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 28 + 477 + 50 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):b + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Lattice parameters + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 13 + 418 + 190 + 14 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + c + + + ESimpleLabel::WidthAndHeight + + + + 13 + 498 + 10 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 28 + 497 + 50 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):c + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + A0 + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 283 + 436 + 240 + 20 + + + + + + + 13 + 434 + 45 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -XTALS + + + Menu + + + crystals + + + orient_XTALs.adl + + + P=$(P),O=$(O) + + + false + + + + + + 60 + 434 + 165 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):XTAL + + + + 0 + 0 + 0 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + string + + + + + + 330 + 533 + 60 + 20 + + + + $(P)orient$(O):Debug + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caMenu::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + debug + + + ESimpleLabel::WidthAndHeight + + + + 285 + 537 + 40 + 14 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + caGraphics::Rectangle + + + + 309 + 450 + 217 + 67 + + + + 3 + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::Calc + + + A#1 + + + $(P)orient$(O):A0_state + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + alpha + + + ESimpleLabel::WidthAndHeight + + + + 100 + 458 + 50 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + beta + + + ESimpleLabel::WidthAndHeight + + + + 100 + 478 + 50 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + gamma + + + ESimpleLabel::WidthAndHeight + + + + 100 + 498 + 50 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + A + + + ESimpleLabel::WidthAndHeight + + + + 78 + 460 + 10 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + o + + + ESimpleLabel::WidthAndHeight + + + + 80 + 455 + 10 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + A + + + ESimpleLabel::WidthAndHeight + + + + 78 + 480 + 10 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + o + + + ESimpleLabel::WidthAndHeight + + + + 80 + 475 + 10 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + A + + + ESimpleLabel::WidthAndHeight + + + + 78 + 500 + 10 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + o + + + ESimpleLabel::WidthAndHeight + + + + 80 + 495 + 10 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + caGraphics::Rectangle + + + + 0 + 0 + 550 + 20 + + + + 3 + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + caGraphics::Rectangle + + + + 0 + 20 + 550 + 3 + + + + 3 + + + + 10 + 0 + 184 + + + + Filled + + + + 10 + 0 + 184 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Diffractometer $(P)orient$(O) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 0 + 0 + 550 + 20 + + + + + + + 450 + 540 + 50 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -Less + + + Menu + + + HKL, Angles, Motors + + + orient.adl + + + P=$(P),O=$(O),PM=$(PM),mTTH=$(mTTH),mTH=$(mTH),mCHI=$(mCHI),mPHI=$(mPHI) + + + true + + + + + + 500 + 540 + 50 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -Motors + + + Menu + + + Motors + + + motor4x.adl + + + P=$(PM),M1=$(mTTH),M2=$(mTH),M3=$(mCHI),M4=$(mPHI) + + + false + + + + + caGraphics::Rectangle + + + + 70 + 258 + 406 + 24 + + + + 2 + + + + 51 + 153 + 0 + + + + + 51 + 153 + 0 + + + + + 51 + 153 + 0 + + + + Solid + + + caGraphics::Calc + + + A||B + + + $(P)orient$(O):refGet1 + + + $(P)orient$(O):refPut1 + + + + + caGraphics::Rectangle + + + + 70 + 284 + 406 + 24 + + + + 2 + + + + 51 + 153 + 0 + + + + + 51 + 153 + 0 + + + + + 51 + 153 + 0 + + + + Solid + + + caGraphics::Calc + + + A||B + + + $(P)orient$(O):refGet2 + + + $(P)orient$(O):refPut2 + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + TTH + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 174 + 243 + 75 + 14 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + TH + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 249 + 243 + 75 + 14 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + CHI + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 324 + 243 + 75 + 14 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + PHI + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 399 + 243 + 75 + 14 + + + + + + + 174 + 260 + 75 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):TTH1 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 249 + 260 + 75 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):TH1 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 324 + 260 + 75 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):CHI1 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 399 + 260 + 75 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):PHI1 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + = + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 163 + 262 + 10 + 20 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + ^ + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 163 + 259 + 10 + 20 + + + + + + + 478 + 260 + 30 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):refGet1 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Get + + + 1 + + + caMessageButton::Static + + + + + + 509 + 260 + 30 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):refPut1 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Put + + + 1 + + + caMessageButton::Static + + + + + + 174 + 286 + 75 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):TTH2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 249 + 286 + 75 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):TH2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 324 + 286 + 75 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):CHI2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 399 + 286 + 75 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):PHI2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + = + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 163 + 288 + 10 + 20 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + ^ + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 163 + 285 + 10 + 20 + + + + + + + 478 + 285 + 30 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):refGet2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Get + + + 1 + + + caMessageButton::Static + + + + + + 509 + 285 + 30 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):refPut2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Put + + + 1 + + + caMessageButton::Static + + + + + + 132 + 260 + 30 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):L1 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + L + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 132 + 243 + 30 + 14 + + + + + + + 132 + 286 + 30 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):L2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + K + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 102 + 243 + 30 + 14 + + + + + + + 102 + 260 + 30 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):K1 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 102 + 286 + 30 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):K2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + H + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 72 + 243 + 30 + 14 + + + + + + + 72 + 260 + 30 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):H1 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 72 + 286 + 30 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):H2 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 167 + 229 + 20 + 20 + + + + 4 + + + + 51 + 153 + 0 + + + + Filled + + + + 51 + 153 + 0 + + + + Solid + + + caPolyLine::Calc + + + A||B + + + $(P)orient$(O):refGet1 + + + $(P)orient$(O):refGet2 + + + 9,20; + + + caPolyLine::Polygon + + + + + + 157 + 229 + 20 + 20 + + + + 4 + + + + 51 + 153 + 0 + + + + Filled + + + + 51 + 153 + 0 + + + + Solid + + + caPolyLine::Calc + + + A||B + + + $(P)orient$(O):refPut1 + + + $(P)orient$(O):refPut2 + + + 9,0; + + + caPolyLine::Polygon + + + + + + 182 + 340 + 90 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):OMTX_Calc + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Calc OMTX + + + 1 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + + + + 305 + 332 + 217 + 67 + + + + 3 + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::Calc + + + A#1 + + + $(P)orient$(O):OMTX_state + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + OM + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 279 + 318 + 240 + 20 + + + + + + + 26 + 57 + 80 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):H_RBV + + + + 10 + 0 + 184 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + L + + + ESimpleLabel::WidthAndHeight + + + + 10 + 191 + 10 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 25 + 190 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):L + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 23 + 188 + 84 + 24 + + + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):L_busy + + + + + + 85 + 210 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):L_tweak.A + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + caMessageButton::Static + + + + + + 25 + 210 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):L_tweak.B + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + caMessageButton::Static + + + + + + 45 + 212 + 40 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):L_tweak.C + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 26 + 174 + 80 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):L_RBV + + + + 10 + 0 + 184 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + K + + + ESimpleLabel::WidthAndHeight + + + + 10 + 131 + 10 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 25 + 130 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):K + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 23 + 128 + 84 + 24 + + + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):K_busy + + + + + + 85 + 150 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):K_tweak.A + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + caMessageButton::Static + + + + + + 25 + 150 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):K_tweak.B + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + caMessageButton::Static + + + + + + 45 + 152 + 40 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):K_tweak.C + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 26 + 114 + 80 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):K_RBV + + + + 10 + 0 + 184 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 85 + 92 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):H_tweak.A + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + caMessageButton::Static + + + + + + 25 + 92 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):H_tweak.B + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + caMessageButton::Static + + + + + + 45 + 94 + 40 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):H_tweak.C + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 25 + 72 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):H + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + H + + + ESimpleLabel::WidthAndHeight + + + + 10 + 73 + 10 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + caGraphics::Rectangle + + + + 23 + 70 + 84 + 24 + + + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):H_busy + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + PRIMARY + + + ESimpleLabel::WidthAndHeight + + + + 10 + 258 + 55 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + REFLECTION + + + ESimpleLabel::WidthAndHeight + + + + 10 + 268 + 55 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + SECONDARY + + + ESimpleLabel::WidthAndHeight + + + + 10 + 286 + 55 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + REFLECTION + + + ESimpleLabel::WidthAndHeight + + + + 10 + 296 + 55 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + errAngle: + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 118 + 362 + 60 + 14 + + + + + + + 182 + 362 + 90 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):errAngle + + + + 10 + 0 + 184 + + + + + 255 + 255 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + maxErr: + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 118 + 380 + 60 + 14 + + + + + + + 182 + 378 + 90 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):errAngleThresh + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 495 + 24 + 45 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):OperAck + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Erase + + + 1 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + + + + 10 + 22 + 485 + 22 + + + + 3 + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):Alert + + + + + + 15 + 27 + 475 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):Msg + + + + 10 + 0 + 184 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 379 + 336 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):OMTX_12 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 379 + 356 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):OMTX_22 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 379 + 376 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):OMTX_32 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 449 + 336 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):OMTX_13 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 449 + 356 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):OMTX_23 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 449 + 376 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):OMTX_33 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 309 + 336 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):OMTX_11 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 309 + 356 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):OMTX_21 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 309 + 376 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):OMTX_31 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 313 + 454 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):A0_11 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 313 + 474 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):A0_21 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 313 + 494 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):A0_31 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 383 + 454 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):A0_12 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 383 + 474 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):A0_22 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 383 + 494 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):A0_32 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 453 + 454 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):A0_13 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 453 + 474 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):A0_23 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 453 + 494 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):A0_33 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + o + + + ESimpleLabel::WidthAndHeight + + + + 228 + 457 + 10 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + o + + + ESimpleLabel::WidthAndHeight + + + + 228 + 478 + 10 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + o + + + ESimpleLabel::WidthAndHeight + + + + 228 + 498 + 10 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 155 + 457 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):alpha + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 155 + 477 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):beta + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 155 + 497 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):gamma + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 246 + 482 + 31 + 6 + + + + 6 + + + + 51 + 153 + 0 + + + + + 51 + 153 + 0 + + + + + 51 + 153 + 0 + + + + Solid + + + 3,3; + + + + + + 273 + 475 + 20 + 20 + + + + 1 + + + + 51 + 153 + 0 + + + + Filled + + + + 51 + 153 + 0 + + + + Solid + + + 0,0; + + + caPolyLine::Polygon + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + AUTO + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 254 + 461 + 30 + 14 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Wavelength: + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 13 + 522 + 75 + 14 + + + + + + + 94 + 521 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):lambda + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + A + + + ESimpleLabel::WidthAndHeight + + + + 165 + 523 + 10 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + o + + + ESimpleLabel::WidthAndHeight + + + + 167 + 518 + 10 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Energy: + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 13 + 542 + 75 + 14 + + + + + + + 94 + 541 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):energy + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + keV + + + ESimpleLabel::WidthAndHeight + + + + 165 + 543 + 10 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 299 + 203 + 120 + 28 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):stopMotors + + + + 251 + 243 + 74 + + + + + 253 + 0 + 0 + + + + Stop Motors + + + 1 + + + caMessageButton::Static + + + + + + 335 + 62 + 50 + 20 + + + + $(P)orient$(O):Busy + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caMenu::Static + + + + + + 307 + 118 + 99 + 6 + + + + 6 + + + + 51 + 153 + 0 + + + + + 51 + 153 + 0 + + + + + 51 + 153 + 0 + + + + Solid + + + caPolyLine::Calc + + + A||B + + + $(P)orient$(O):motPut + + + $(P)orient$(O):motPut_Auto + + + 3,3; + + + + + + 397 + 108 + 23 + 26 + + + + 1 + + + + 51 + 153 + 0 + + + + Filled + + + + 51 + 153 + 0 + + + + Solid + + + caPolyLine::Calc + + + A||B + + + $(P)orient$(O):motPut + + + $(P)orient$(O):motPut_Auto + + + 0,0; + + + caPolyLine::Polygon + + + + + + 333 + 97 + 55 + 14 + + + + $(P)orient$(O):motPut_Auto + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caMenu::Static + + + + + + 333 + 111 + 55 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):motPut + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Move + + + 1 + + + caMessageButton::Static + + + + + + 333 + 154 + 55 + 14 + + + + $(P)orient$(O):motGet_Auto + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caMenu::Static + + + + + + 333 + 168 + 55 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):motGet + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Read + + + 1 + + + caMessageButton::Static + + + + + + 317 + 174 + 99 + 7 + + + + 6 + + + + 51 + 153 + 0 + + + + + 51 + 153 + 0 + + + + + 51 + 153 + 0 + + + + Solid + + + caPolyLine::Calc + + + A||B + + + $(P)orient$(O):motGet + + + $(P)orient$(O):motGet_Auto + + + 96,3; + + + + + + 305 + 165 + 23 + 26 + + + + 1 + + + + 51 + 153 + 0 + + + + Filled + + + + 51 + 153 + 0 + + + + Solid + + + caPolyLine::Calc + + + A||B + + + $(P)orient$(O):motGet + + + $(P)orient$(O):motGet_Auto + + + 23,0; + + + caPolyLine::Polygon + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + HKL/ANGLE CONSTRAINT: + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 181 + 66 + 120 + 10 + + + + + + + 181 + 77 + 120 + 20 + + + + $(P)orient$(O):Mode + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caMenu::Static + + + + + + 213 + 129 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):TH + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 213 + 152 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):CHI + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 213 + 175 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):PHI + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + TH + + + ESimpleLabel::WidthAndHeight + + + + 180 + 130 + 30 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + CHI + + + ESimpleLabel::WidthAndHeight + + + + 180 + 153 + 30 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + PHI + + + ESimpleLabel::WidthAndHeight + + + + 180 + 176 + 30 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + caGraphics::Rectangle + + + + 210 + 128 + 85 + 24 + + + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):TH_busy + + + + + caGraphics::Rectangle + + + + 210 + 150 + 85 + 24 + + + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):CHI_busy + + + + + caGraphics::Rectangle + + + + 210 + 173 + 85 + 24 + + + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):PHI_busy + + + + + + 213 + 106 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):TTH + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 210 + 104 + 85 + 24 + + + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):TTH_busy + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + TTH + + + ESimpleLabel::WidthAndHeight + + + + 180 + 107 + 30 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + OM + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 136 + 138 + 10 + 10 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + A0 + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 136 + 149 + 10 + 10 + + + + + + caGraphics::Rectangle + + + + 132 + 135 + 20 + 25 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + + + + 152 + 140 + 17 + 17 + + + + 1 + + + + 51 + 153 + 0 + + + + Filled + + + + 51 + 153 + 0 + + + + Solid + + + 0,0; + + + caPolyLine::Polygon + + + + + + 115 + 140 + 17 + 17 + + + + 1 + + + + 51 + 153 + 0 + + + + Filled + + + + 51 + 153 + 0 + + + + Solid + + + 17,0; + + + caPolyLine::Polygon + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + AUTO + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 128 + 117 + 30 + 14 + + + + + + + 457 + 133 + 80 + 14 + + + + caLineEdit::WidthAndHeight + + + $(PM)$(mCHI).RBV + + + + 10 + 0 + 184 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + caGraphics::Rectangle + + + + 455 + 147 + 84 + 24 + + + + 2 + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::Calc + + + A=0 + + + $(P)orient$(O):motCHI_Connected + + + + + + 457 + 149 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(PM)$(mCHI) + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 455 + 147 + 84 + 24 + + + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):waiting4motCHI + + + + + caGraphics::Rectangle + + + + 455 + 107 + 84 + 24 + + + + 2 + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::Calc + + + A=0 + + + $(P)orient$(O):motTH_Connected + + + + + caGraphics::Rectangle + + + + 455 + 107 + 84 + 24 + + + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):waiting4motTH + + + + + + 457 + 93 + 80 + 14 + + + + caLineEdit::WidthAndHeight + + + $(PM)$(mTH).RBV + + + + 10 + 0 + 184 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 457 + 109 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(PM)$(mTH) + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 457 + 53 + 80 + 14 + + + + caLineEdit::WidthAndHeight + + + $(PM)$(mTTH).RBV + + + + 10 + 0 + 184 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + caGraphics::Rectangle + + + + 455 + 67 + 84 + 24 + + + + 2 + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::Calc + + + A=0 + + + $(P)orient$(O):motTTH_Connected + + + + + + 457 + 69 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(PM)$(mTTH) + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 455 + 67 + 84 + 24 + + + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):waiting4motTTH + + + + + QFrame::NoFrame + + + + 51 + 153 + 0 + + + + + 51 + 153 + 0 + + + + caLabel::IfNotZero + + + $(P)orient$(O):waiting4Mot + + + Moving + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 455 + 210 + 84 + 20 + + + + + + + 457 + 173 + 80 + 14 + + + + caLineEdit::WidthAndHeight + + + $(PM)$(mPHI).RBV + + + + 10 + 0 + 184 + + + + + 218 + 218 + 218 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + caGraphics::Rectangle + + + + 455 + 187 + 84 + 24 + + + + 2 + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::Calc + + + A=0 + + + $(P)orient$(O):motPHI_Connected + + + + + + 457 + 189 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(PM)$(mPHI) + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 455 + 187 + 84 + 24 + + + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):waiting4motPHI + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + TTH + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 425 + 70 + 30 + 20 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + TH + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 425 + 110 + 30 + 20 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + CHI + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 425 + 150 + 30 + 20 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + PHI + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 425 + 190 + 30 + 20 + + + + caLabel_0 + caLabel_1 + caLabel_2 + caLabel_3 + caLabel_4 + caLabel_5 + caRectangle_0 + caLabel_6 + caLabel_7 + caLabel_8 + caLabel_9 + caLabel_10 + caLabel_11 + caLabel_12 + caLabel_13 + caLabel_14 + caRectangle_1 + caRectangle_2 + caLabel_15 + caRectangle_3 + caRectangle_4 + caLabel_16 + caLabel_17 + caLabel_18 + caLabel_19 + caLabel_20 + caLabel_21 + caLabel_22 + caLabel_23 + caLabel_24 + caLabel_25 + caLabel_26 + caPolygon_0 + caPolygon_1 + caRectangle_5 + caLabel_27 + caLabel_28 + caRectangle_6 + caLabel_29 + caRectangle_7 + caLabel_30 + caRectangle_8 + caLabel_31 + caLabel_32 + caLabel_33 + caLabel_34 + caLabel_35 + caLabel_36 + caRectangle_9 + caLabel_37 + caLabel_38 + caLabel_39 + caPolyLine_0 + caPolygon_2 + caLabel_40 + caLabel_41 + caLabel_42 + caLabel_43 + caLabel_44 + caLabel_45 + caPolyLine_1 + caPolygon_3 + caPolyLine_2 + caPolygon_4 + caLabel_46 + caLabel_47 + caLabel_48 + caLabel_49 + caRectangle_10 + caRectangle_11 + caRectangle_12 + caRectangle_13 + caLabel_50 + caLabel_51 + caLabel_52 + caRectangle_14 + caPolygon_5 + caPolygon_6 + caLabel_53 + caRectangle_15 + caRectangle_16 + caRectangle_17 + caRectangle_18 + caRectangle_19 + caRectangle_20 + caLabel_54 + caRectangle_21 + caRectangle_22 + caLabel_55 + caLabel_56 + caLabel_57 + caLabel_58 + caTextEntry_0 + caTextEntry_1 + caTextEntry_2 + caRelatedDisplay_0 + caTextEntry_3 + caMenu_0 + caRelatedDisplay_1 + caRelatedDisplay_2 + caTextEntry_4 + caTextEntry_5 + caTextEntry_6 + caTextEntry_7 + caMessageButton_0 + caMessageButton_1 + caTextEntry_8 + caTextEntry_9 + caTextEntry_10 + caTextEntry_11 + caMessageButton_2 + caMessageButton_3 + caTextEntry_12 + caTextEntry_13 + caTextEntry_14 + caTextEntry_15 + caTextEntry_16 + caTextEntry_17 + caMessageButton_4 + caLineEdit_0 + caTextEntry_18 + caMessageButton_5 + caMessageButton_6 + caTextEntry_19 + caLineEdit_1 + caTextEntry_20 + caMessageButton_7 + caMessageButton_8 + caTextEntry_21 + caLineEdit_2 + caMessageButton_9 + caMessageButton_10 + caTextEntry_22 + caTextEntry_23 + caLineEdit_3 + caTextEntry_24 + caMessageButton_11 + caLineEdit_4 + caTextEntry_25 + caTextEntry_26 + caTextEntry_27 + caTextEntry_28 + caTextEntry_29 + caTextEntry_30 + caTextEntry_31 + caTextEntry_32 + caTextEntry_33 + caTextEntry_34 + caTextEntry_35 + caTextEntry_36 + caTextEntry_37 + caTextEntry_38 + caTextEntry_39 + caTextEntry_40 + caTextEntry_41 + caTextEntry_42 + caTextEntry_43 + caTextEntry_44 + caTextEntry_45 + caTextEntry_46 + caTextEntry_47 + caMessageButton_12 + caMenu_1 + caMenu_2 + caMessageButton_13 + caMenu_3 + caMessageButton_14 + caMenu_4 + caTextEntry_48 + caTextEntry_49 + caTextEntry_50 + caTextEntry_51 + caLineEdit_5 + caTextEntry_52 + caLineEdit_6 + caTextEntry_53 + caLineEdit_7 + caTextEntry_54 + caLineEdit_8 + caTextEntry_55 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/orient_slave.ui b/opticsApp/op/ui/autoconvert/orient_slave.ui similarity index 73% rename from opticsApp/op/ui/orient_slave.ui rename to opticsApp/op/ui/autoconvert/orient_slave.ui index 3c15100..2bdd8c2 100644 --- a/opticsApp/op/ui/orient_slave.ui +++ b/opticsApp/op/ui/autoconvert/orient_slave.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -94,14 +182,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 0 - 0 - 250 - 20 - - 0 @@ -120,24 +200,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)orient$(O) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 0 + 250 + 20 + + QFrame::NoFrame - - - 132 - 64 - 115 - 10 - - 0 @@ -156,11 +236,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} CONSTRAINT: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 132 + 64 + 115 + 10 + + @@ -202,7 +290,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):TTH @@ -253,7 +341,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):TH @@ -304,7 +392,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):CHI @@ -355,7 +443,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):PHI @@ -446,14 +534,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 131 - 100 - 30 - 20 - - 0 @@ -472,24 +552,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} TTH - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 131 - 123 + 100 30 20 + + + + QFrame::NoFrame + 0 @@ -508,24 +588,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} TH - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 131 - 146 + 123 30 20 + + + + QFrame::NoFrame + 0 @@ -544,24 +624,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} CHI - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 131 - 169 + 146 30 20 + + + + QFrame::NoFrame + 0 @@ -580,11 +660,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} PHI - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 131 + 169 + 30 + 20 + + @@ -734,7 +822,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):H_RBV @@ -782,14 +870,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 10 - 180 - 10 - 20 - - 0 @@ -808,7 +888,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} L - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 180 + 10 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -824,7 +912,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):L @@ -921,7 +1009,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):L_RBV @@ -965,148 +1053,138 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caLineEdit::Static - + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + K + + + ESimpleLabel::WidthAndHeight + 10 + 120 + 10 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 25 + 119 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):K + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 23 117 - 99 - 26 + 84 + 24 - - - QFrame::NoFrame - - - - 0 - 3 - 10 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - K - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 15 - 2 - 80 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):K - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - caGraphics::Rectangle - - - - 13 - 0 - 84 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):K_busy - - + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):K_busy + @@ -1118,7 +1196,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):K_RBV @@ -1172,7 +1250,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):H @@ -1217,14 +1295,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 10 - 62 - 10 - 20 - - 0 @@ -1243,7 +1313,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} H - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 62 + 10 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1347,7 +1425,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)orient$(O):H_tweak.A @@ -1386,7 +1464,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)orient$(O):H_tweak.B @@ -1425,7 +1503,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):H_tweak.C @@ -1466,283 +1544,263 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} decimal - + + + + 85 + 199 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):L_tweak.A + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + caMessageButton::Static + + + 25 199 - 82 - 22 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):L_tweak.B + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + caMessageButton::Static + + + + + + 45 + 201 + 40 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):L_tweak.C + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 85 + 139 + 20 + 20 - - - - 60 - 0 - 20 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):L_tweak.A - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - + - - - 1 - - - caMessageButton::Static - - - - - - 0 - 0 - 20 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):L_tweak.B - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - - - - - 1 - - - caMessageButton::Static - - - - - - 20 - 2 - 40 - 18 - - - - caLineEdit::Height - - - $(P)orient$(O):L_tweak.C - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - + + EPushButton::WidthAndHeight + + + $(P)orient$(O):K_tweak.A + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + caMessageButton::Static + - + 25 139 - 82 - 22 + 20 + 20 - - - - 60 - 0 - 20 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):K_tweak.A - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - + - - - 1 - - - caMessageButton::Static - - - - - - 0 - 0 - 20 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):K_tweak.B - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - - - - - 1 - - - caMessageButton::Static - - - - - - 20 - 2 - 40 - 18 - - - - caLineEdit::Height - - - $(P)orient$(O):K_tweak.C - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - + + EPushButton::WidthAndHeight + + + $(P)orient$(O):K_tweak.B + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + caMessageButton::Static + + + + + + 45 + 141 + 40 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):K_tweak.C + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + caRectangle_0 caRectangle_1 @@ -1760,11 +1818,8 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caRectangle_6 caLabel_7 caRectangle_7 - caFrame_0 caLabel_8 caRectangle_8 - caFrame_1 - caFrame_2 caMenu_0 caTextEntry_0 caTextEntry_1 diff --git a/opticsApp/op/ui/orient_slave_full.ui b/opticsApp/op/ui/autoconvert/orient_slave_full.ui similarity index 58% rename from opticsApp/op/ui/orient_slave_full.ui rename to opticsApp/op/ui/autoconvert/orient_slave_full.ui index acfe2d7..8c788c5 100644 --- a/opticsApp/op/ui/orient_slave_full.ui +++ b/opticsApp/op/ui/autoconvert/orient_slave_full.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -22,14 +110,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 13 - 458 - 10 - 20 - - 0 @@ -48,7 +128,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} a - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 13 + 458 + 10 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -58,14 +146,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 13 - 478 - 10 - 20 - - 0 @@ -84,7 +164,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} b - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 13 + 478 + 10 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -100,7 +188,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):a @@ -151,7 +239,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):b @@ -196,14 +284,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 13 - 418 - 190 - 14 - - 0 @@ -222,24 +302,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Lattice parameters - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 13 - 498 - 10 - 20 + 418 + 190 + 14 + + + + QFrame::NoFrame + 0 @@ -258,7 +338,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} c - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 13 + 498 + 10 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -274,7 +362,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):c @@ -319,14 +407,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 283 - 436 - 240 - 20 - - 0 @@ -345,11 +425,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} A0 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 283 + 436 + 240 + 20 + + @@ -403,7 +491,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):XTAL @@ -478,14 +566,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 285 - 537 - 40 - 14 - - 0 @@ -504,7 +584,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} debug - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 285 + 537 + 40 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -563,14 +651,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 100 - 458 - 50 - 20 - - 0 @@ -589,7 +669,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} alpha - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 100 + 458 + 50 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -599,14 +687,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 100 - 478 - 50 - 20 - - 0 @@ -625,7 +705,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} beta - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 100 + 478 + 50 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -635,14 +723,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 100 - 498 - 50 - 20 - - 0 @@ -661,342 +741,60 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} gamma - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 78 - 455 - 14 - 27 - - - - - QFrame::NoFrame - - - - 0 - 5 - 10 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - A - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 2 - 0 - 10 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - o - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - 78 - 475 - 14 - 27 - - - - - QFrame::NoFrame - - - - 0 - 5 - 10 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - A - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 2 - 0 - 10 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - o - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - 78 - 495 - 14 - 27 - - - - - QFrame::NoFrame - - - - 0 - 5 - 10 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - A - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 2 - 0 - 10 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - o - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - caGraphics::Rectangle + ESimpleLabel::WidthAndHeight - 0 - 0 - 550 + 100 + 498 + 50 20 - - 3 - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - caGraphics::Rectangle - - - - 0 - 20 - 550 - 3 - - - - 3 + + + QFrame::NoFrame - 10 + 0 0 - 184 + 0 - - Filled - - - - 10 + + + 0 0 - 184 + 0 - - Solid + + A - - - - QFrame::NoFrame + + ESimpleLabel::WidthAndHeight - 0 - 0 - 550 + 78 + 460 + 10 20 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 0 @@ -1012,13 +810,273 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - Diffractometer $(P)orient$(O) + o - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + ESimpleLabel::WidthAndHeight + + + + 80 + 455 + 10 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + A + + + ESimpleLabel::WidthAndHeight + + + + 78 + 480 + 10 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + o + + + ESimpleLabel::WidthAndHeight + + + + 80 + 475 + 10 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + A + + + ESimpleLabel::WidthAndHeight + + + + 78 + 500 + 10 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + o + + + ESimpleLabel::WidthAndHeight + + + + 80 + 495 + 10 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + caGraphics::Rectangle + + + + 0 + 0 + 550 + 20 + + + + 3 + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + caGraphics::Rectangle + + + + 0 + 20 + 550 + 3 + + + + 3 + + + + 10 + 0 + 184 + + + + Filled + + + + 10 + 0 + 184 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Diffractometer $(P)orient$(O) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 0 + 0 + 550 + 20 + @@ -1171,14 +1229,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 174 - 243 - 75 - 14 - - 0 @@ -1197,24 +1247,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} TTH - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 249 + 174 243 75 14 + + + + QFrame::NoFrame + 0 @@ -1233,24 +1283,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} TH - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 324 + 249 243 75 14 + + + + QFrame::NoFrame + 0 @@ -1269,24 +1319,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} CHI - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 399 + 324 243 75 14 + + + + QFrame::NoFrame + 0 @@ -1305,11 +1355,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} PHI - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 399 + 243 + 75 + 14 + + @@ -1321,7 +1379,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):TTH1 @@ -1372,7 +1430,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):TH1 @@ -1423,7 +1481,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):CHI1 @@ -1474,7 +1532,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):PHI1 @@ -1519,14 +1577,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 163 - 262 - 10 - 20 - - 0 @@ -1545,24 +1595,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} = - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 163 - 259 + 262 10 20 + + + + QFrame::NoFrame + 0 @@ -1581,11 +1631,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} ^ - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 163 + 259 + 10 + 20 + + @@ -1597,7 +1655,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)orient$(O):refGet1 @@ -1636,7 +1694,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)orient$(O):refPut1 @@ -1675,7 +1733,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):TTH2 @@ -1726,7 +1784,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):TH2 @@ -1777,7 +1835,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):CHI2 @@ -1828,7 +1886,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):PHI2 @@ -1873,14 +1931,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 163 - 288 - 10 - 20 - - 0 @@ -1899,24 +1949,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} = - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 163 - 285 + 288 10 20 + + + + QFrame::NoFrame + 0 @@ -1935,11 +1985,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} ^ - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 163 + 285 + 10 + 20 + + @@ -1951,7 +2009,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)orient$(O):refGet2 @@ -1990,7 +2048,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)orient$(O):refPut2 @@ -2029,7 +2087,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):L1 @@ -2074,14 +2132,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 132 - 243 - 30 - 14 - - 0 @@ -2100,11 +2150,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} L - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 132 + 243 + 30 + 14 + + @@ -2116,7 +2174,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):L2 @@ -2161,14 +2219,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 102 - 243 - 30 - 14 - - 0 @@ -2187,11 +2237,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} K - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 102 + 243 + 30 + 14 + + @@ -2203,7 +2261,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):K1 @@ -2254,7 +2312,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):K2 @@ -2299,14 +2357,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 72 - 243 - 30 - 14 - - 0 @@ -2325,11 +2375,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} H - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 72 + 243 + 30 + 14 + + @@ -2341,7 +2399,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):H1 @@ -2392,7 +2450,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):H2 @@ -2478,7 +2536,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)orient$(O):refGet2 - 9,20;20,0;0,0;9,20; + 9,20; caPolyLine::Polygon @@ -2529,7 +2587,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)orient$(O):refPut2 - 9,0;20,20;0,20;9,0; + 9,0; caPolyLine::Polygon @@ -2545,7 +2603,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)orient$(O):OMTX_Calc @@ -2627,14 +2685,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 279 - 318 - 240 - 20 - - 0 @@ -2653,11 +2703,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} OM - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 279 + 318 + 240 + 20 + + @@ -2669,7 +2727,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):H_RBV @@ -2717,14 +2775,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 10 - 191 - 10 - 20 - - 0 @@ -2743,7 +2793,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} L - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 191 + 10 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2759,7 +2817,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):L @@ -2856,7 +2914,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)orient$(O):L_tweak.A @@ -2895,7 +2953,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)orient$(O):L_tweak.B @@ -2934,7 +2992,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):L_tweak.C @@ -2985,7 +3043,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):L_RBV @@ -3029,163 +3087,9 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caLineEdit::Static - - - - 10 - 128 - 99 - 26 - - - - - QFrame::NoFrame - - - - 0 - 3 - 10 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - K - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 15 - 2 - 80 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):K - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - caGraphics::Rectangle - - - - 13 - 0 - 84 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):K_busy - - - - - - - 85 - 150 - 20 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):K_tweak.A + + + QFrame::NoFrame @@ -3195,36 +3099,44 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - - 115 - 223 - 255 + + 0 + 0 + 0 - - + + + K - - 1 + + ESimpleLabel::WidthAndHeight - - caMessageButton::Static + + + 10 + 131 + 10 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 25 - 150 - 20 + 130 + 80 20 - EPushButton::Height + caLineEdit::WidthAndHeight - $(P)orient$(O):K_tweak.B + $(P)orient$(O):K @@ -3240,17 +3152,153 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} 255 - - - + + caLineEdit::Channel - - 1 + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 - caMessageButton::Static + caLineEdit::Static + + + decimal - + + + caGraphics::Rectangle + + + + 23 + 128 + 84 + 24 + + + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):K_busy + + + + + + 85 + 150 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):K_tweak.A + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + caMessageButton::Static + + + + + + 25 + 150 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)orient$(O):K_tweak.B + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + caMessageButton::Static + + + 45 @@ -3260,7 +3308,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):K_tweak.C @@ -3311,7 +3359,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):K_RBV @@ -3365,7 +3413,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)orient$(O):H_tweak.A @@ -3404,7 +3452,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)orient$(O):H_tweak.B @@ -3443,7 +3491,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):H_tweak.C @@ -3494,7 +3542,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):H @@ -3539,14 +3587,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 10 - 73 - 10 - 20 - - 0 @@ -3565,7 +3605,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} H - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 73 + 10 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3617,100 +3665,82 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)orient$(O):H_busy - + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + PRIMARY + + + ESimpleLabel::WidthAndHeight + 10 258 - 57 - 22 + 55 + 10 - - - QFrame::NoFrame - - - - 0 - 0 - 55 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - PRIMARY - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 10 - 55 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - REFLECTION - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + - + QFrame::NoFrame + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + REFLECTION + + + ESimpleLabel::WidthAndHeight + 10 - 286 + 268 55 10 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 0 @@ -3729,7 +3759,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} SECONDARY - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 286 + 55 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3739,14 +3777,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 10 - 296 - 55 - 10 - - 0 @@ -3765,7 +3795,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} REFLECTION - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 296 + 55 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3775,14 +3813,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 118 - 362 - 60 - 14 - - 0 @@ -3801,11 +3831,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} errAngle: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 118 + 362 + 60 + 14 + + @@ -3817,7 +3855,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):errAngle @@ -3865,14 +3903,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 118 - 380 - 60 - 14 - - 0 @@ -3891,11 +3921,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} maxErr: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 118 + 380 + 60 + 14 + + @@ -3907,7 +3945,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):errAngleThresh @@ -3958,7 +3996,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)orient$(O):OperAck @@ -4043,7 +4081,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)orient$(O):Msg @@ -4077,1088 +4115,2158 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} 1.0 - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 379 + 336 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):OMTX_12 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 379 + 356 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):OMTX_22 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 379 + 376 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):OMTX_32 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 449 + 336 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):OMTX_13 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 449 + 356 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):OMTX_23 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 449 + 376 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):OMTX_33 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 309 + 336 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):OMTX_11 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 309 + 356 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):OMTX_21 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 309 + 376 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):OMTX_31 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 313 + 454 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):A0_11 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 313 + 474 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):A0_21 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 313 + 494 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):A0_31 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 383 + 454 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):A0_12 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 383 + 474 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):A0_22 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 383 + 494 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):A0_32 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 453 + 454 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):A0_13 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 453 + 474 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):A0_23 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 453 + 494 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):A0_33 + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + o + + + ESimpleLabel::WidthAndHeight + + + + 228 + 457 + 10 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + o + + + ESimpleLabel::WidthAndHeight + + + + 228 + 478 + 10 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + o + + + ESimpleLabel::WidthAndHeight + + + + 228 + 498 + 10 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 155 + 457 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):alpha + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 155 + 477 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):beta + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 155 + 497 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):gamma + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 246 + 482 + 31 + 6 + + + + 6 + + + + 51 + 153 + 0 + + + + + 51 + 153 + 0 + + + + + 51 + 153 + 0 + + + + Solid + + + 3,3; + + + + + + 273 + 475 + 20 + 20 + + + + 1 + + + + 51 + 153 + 0 + + + + Filled + + + + 51 + 153 + 0 + + + + Solid + + + 0,0; + + + caPolyLine::Polygon + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + AUTO + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 254 + 461 + 30 + 14 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Wavelength: + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 13 + 522 + 75 + 14 + + + + + + + 94 + 521 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):lambda + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + A + + + ESimpleLabel::WidthAndHeight + + + + 165 + 523 + 10 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + o + + + ESimpleLabel::WidthAndHeight + + + + 167 + 518 + 10 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Energy: + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 13 + 542 + 75 + 14 + + + + + + + 94 + 541 + 70 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):energy + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + keV + + + ESimpleLabel::WidthAndHeight + + + + 165 + 543 + 10 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + HKL/ANGLE CONSTRAINT: + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 181 + 66 + 120 + 10 + + + + + + + 181 + 77 + 120 + 20 + + + + $(P)orient$(O):Mode + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caMenu::Static + + + + + + 213 + 129 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):TH + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 213 + 152 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):CHI + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 213 + 175 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):PHI + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + TH + + + ESimpleLabel::WidthAndHeight + + + + 180 + 130 + 30 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + CHI + + + ESimpleLabel::WidthAndHeight + + + + 180 + 153 + 30 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + PHI + + + ESimpleLabel::WidthAndHeight + + + + 180 + 176 + 30 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + caGraphics::Rectangle + + + + 210 + 128 + 85 + 24 + + + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):TH_busy + + + + + caGraphics::Rectangle + + + + 210 + 150 + 85 + 24 + + + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):CHI_busy + + + + + caGraphics::Rectangle + + + + 210 + 173 + 85 + 24 + + + + 2 + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)orient$(O):PHI_busy + + + + + + 213 + 106 + 80 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)orient$(O):TTH + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static decimal - - caLineEdit::Static - - - - - - 379 - 336 - 72 - 62 - - - - - - 0 - 0 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):OMTX_12 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 20 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):OMTX_22 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 40 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):OMTX_32 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - - 449 - 336 - 72 - 62 - - - - - - 0 - 0 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):OMTX_13 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 20 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):OMTX_23 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 40 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):OMTX_33 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - - 309 - 336 - 72 - 62 - - - - - - 0 - 0 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):OMTX_11 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 20 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):OMTX_21 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 40 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):OMTX_31 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - - 313 - 454 - 72 - 62 - - - - - - 0 - 0 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):A0_11 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 20 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):A0_21 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 40 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):A0_31 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - - 383 - 454 - 72 - 62 - - - - - - 0 - 0 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):A0_12 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 20 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):A0_22 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 40 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):A0_32 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - - 453 - 454 - 72 - 62 - - - - - - 0 - 0 - 72 - 62 - - - - - - 0 - 0 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):A0_13 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 20 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):A0_23 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 40 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):A0_33 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - QFrame::NoFrame + + + caGraphics::Rectangle - 228 - 457 - 10 - 10 + 210 + 104 + 85 + 24 + + 2 + - 0 - 0 + 30 + 187 0 - 0 - 0 + 30 + 187 0 - - o - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 228 - 478 - 10 - 10 - - - + - 0 - 0 - 0 - - - - - 0 - 0 + 30 + 187 0 - - o + + Solid - - ESimpleLabel::Height + + caGraphics::IfNotZero - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + $(P)orient$(O):TTH_busy - + QFrame::NoFrame - - - 228 - 498 - 10 - 10 - - 0 @@ -5174,279 +6282,27 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - o + TTH - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - 155 - 457 - 72 - 62 - - - - - - 0 - 0 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):alpha - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 20 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):beta - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 40 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):gamma - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - - 246 - 475 - 49 - 22 + 180 + 107 + 30 + 20 - - - - 0 - 7 - 31 - 6 - - - - 6 - - - - 51 - 153 - 0 - - - - - 51 - 153 - 0 - - - - - 51 - 153 - 0 - - - - Solid - - - 28,3;3,3; - - - - - - 27 - 0 - 20 - 20 - - - - 1 - - - - 51 - 153 - 0 - - - - Filled - - - - 51 - 153 - 0 - - - - Solid - - - 0,0;20,10;0,19;0,20;0,0; - - - caPolyLine::Polygon - - + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + - + QFrame::NoFrame - - - 254 - 461 - 30 - 14 - - 0 @@ -5462,206 +6318,27 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - AUTO + OM - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - 13 - 518 - 166 - 27 - - - - - QFrame::NoFrame - - - - 0 - 4 - 75 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Wavelength: - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 81 - 3 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):lambda - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 152 - 0 - 14 - 27 - - - - - QFrame::NoFrame - - - - 0 - 5 - 10 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - A - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 2 - 0 - 10 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - o - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - + 136 + 138 + 10 + 10 + + - + QFrame::NoFrame - - - 13 - 542 - 75 - 14 - - 0 @@ -5677,78 +6354,38 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - Energy: + A0 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - 94 - 541 - 70 - 20 + 136 + 149 + 10 + 10 - - caLineEdit::Height - - - $(P)orient$(O):energy - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - QFrame::NoFrame + + + caGraphics::Rectangle - 165 - 543 - 10 - 20 + 132 + 135 + 20 + 25 + + 2 + 0 @@ -5763,746 +6400,17 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} 0 - - keV - - - ESimpleLabel::Height + + + 0 + 0 + 0 + - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + Solid - - - - 180 - 66 - 123 - 133 - - - - - QFrame::NoFrame - - - - 1 - 0 - 120 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - HKL/ANGLE CONSTRAINT: - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 1 - 11 - 120 - 20 - - - - $(P)orient$(O):Mode - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caMenu::Static - - - - - - 33 - 63 - 80 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):TH - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 33 - 86 - 80 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):CHI - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 33 - 109 - 80 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):PHI - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 0 - 64 - 30 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - TH - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 87 - 30 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - CHI - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 110 - 30 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - PHI - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - caGraphics::Rectangle - - - - 30 - 62 - 85 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):TH_busy - - - - - caGraphics::Rectangle - - - - 30 - 84 - 85 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):CHI_busy - - - - - caGraphics::Rectangle - - - - 30 - 107 - 85 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):PHI_busy - - - - - - 33 - 40 - 80 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):TTH - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - caGraphics::Rectangle - - - - 30 - 38 - 85 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):TTH_busy - - - - - QFrame::NoFrame - - - - 0 - 41 - 30 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - TTH - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - 132 - 135 - 22 - 27 - - - - - QFrame::NoFrame - - - - 4 - 3 - 10 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - OM - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 4 - 14 - 10 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - A0 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - caGraphics::Rectangle - - - - 0 - 0 - 20 - 25 - - - - 2 - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - @@ -6536,7 +6444,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 0,0;17,7;0,15;0,17;0,0; + 0,0; caPolyLine::Polygon @@ -6575,7 +6483,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 17,0;0,7;17,15;17,17;17,0; + 17,0; caPolyLine::Polygon @@ -6585,14 +6493,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 128 - 117 - 30 - 14 - - 0 @@ -6611,11 +6511,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} AUTO - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 128 + 117 + 30 + 14 + + caLabel_0 caLabel_1 @@ -6629,13 +6537,10 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caLabel_8 caLabel_9 caLabel_10 - caFrame_0 caLabel_11 caLabel_12 - caFrame_1 caLabel_13 caLabel_14 - caFrame_2 caRectangle_1 caRectangle_2 caLabel_15 @@ -6660,37 +6565,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caRectangle_6 caLabel_29 caRectangle_7 - caFrame_3 caLabel_30 caRectangle_8 caLabel_31 caLabel_32 - caFrame_4 caLabel_33 caLabel_34 caLabel_35 caLabel_36 caRectangle_9 - caFrame_5 - caFrame_6 - caFrame_7 - caFrame_8 - caFrame_9 - caFrame_11 - caFrame_10 caLabel_37 caLabel_38 caLabel_39 - caFrame_12 caPolyLine_0 caPolygon_2 - caFrame_13 caLabel_40 caLabel_41 caLabel_42 caLabel_43 - caFrame_15 - caFrame_14 caLabel_44 caLabel_45 caLabel_46 @@ -6702,11 +6594,9 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caRectangle_12 caRectangle_13 caLabel_50 - caFrame_16 caLabel_51 caLabel_52 caRectangle_14 - caFrame_17 caPolygon_3 caPolygon_4 caLabel_53 diff --git a/opticsApp/op/ui/pf4.ui b/opticsApp/op/ui/autoconvert/pf4.ui similarity index 79% rename from opticsApp/op/ui/pf4.ui rename to opticsApp/op/ui/autoconvert/pf4.ui index 2325d2f..2ba3188 100644 --- a/opticsApp/op/ui/pf4.ui +++ b/opticsApp/op/ui/autoconvert/pf4.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -55,14 +143,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 4 - 3 - 320 - 20 - - 0 @@ -81,11 +161,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} PF4 dual filter - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 4 + 3 + 320 + 20 + + @@ -204,7 +292,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 1,1;324,1; + 324,1; diff --git a/opticsApp/op/ui/pf4Bank.ui b/opticsApp/op/ui/autoconvert/pf4Bank.ui similarity index 81% rename from opticsApp/op/ui/pf4Bank.ui rename to opticsApp/op/ui/autoconvert/pf4Bank.ui index 2856caf..4716751 100644 --- a/opticsApp/op/ui/pf4Bank.ui +++ b/opticsApp/op/ui/autoconvert/pf4Bank.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -55,14 +143,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 0 - 0 - 130 - 20 - - 0 @@ -81,11 +161,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} PF4 filter - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 0 + 130 + 20 + + @@ -120,7 +208,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 1,1;132,1; + 132,1; @@ -133,7 +221,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)trans$(A) diff --git a/opticsApp/op/ui/pf4Bank_bare.ui b/opticsApp/op/ui/autoconvert/pf4Bank_bare.ui similarity index 68% rename from opticsApp/op/ui/pf4Bank_bare.ui rename to opticsApp/op/ui/autoconvert/pf4Bank_bare.ui index 310523c..5ccc56f 100644 --- a/opticsApp/op/ui/pf4Bank_bare.ui +++ b/opticsApp/op/ui/autoconvert/pf4Bank_bare.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -22,14 +110,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 89 - 22 - 30 - 10 - - 253 @@ -48,7 +128,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} BEAM - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 89 + 22 + 30 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -58,14 +146,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 10 - 0 - 100 - 20 - - 0 @@ -84,11 +164,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)$(H)$(B) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 10 + 0 + 100 + 20 + + @@ -140,7 +228,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)trans$(B) @@ -217,7 +305,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 118,1;1,1; + 1,1; @@ -253,7 +341,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 12,1;1,7;12,12; + 12,12; @@ -295,7 +383,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)$(H)displayBit4$(B) - 0,33;20,46;20,8;0,0;0,33; + 0,33; caPolyLine::Polygon @@ -340,7 +428,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)$(H)displayBit3$(B) - 0,33;20,46;20,8;0,0;0,33; + 0,33; caPolyLine::Polygon @@ -385,7 +473,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)$(H)displayBit1$(B) - 0,33;20,46;20,8;0,0;0,33; + 0,33; caPolyLine::Polygon @@ -430,7 +518,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)$(H)displayBit2$(B) - 0,33;20,46;20,8;0,0;0,33; + 0,33; caPolyLine::Polygon @@ -479,7 +567,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)$(H)displayBit1$(B) - 1,33;20,46;20,9;1,1;1,33; + 1,33; caPolyLine::Polygon @@ -528,7 +616,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)$(H)displayBit2$(B) - 1,33;20,46;20,9;1,1;1,33; + 1,33; caPolyLine::Polygon @@ -577,7 +665,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)$(H)displayBit3$(B) - 1,34;21,47;21,9;1,1;1,34; + 1,34; caPolyLine::Polygon @@ -626,268 +714,232 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)$(H)displayBit4$(B) - 1,33;20,46;20,9;1,1;1,33; + 1,33; caPolyLine::Polygon - + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + 1 + + + ESimpleLabel::WidthAndHeight + + + + 105 + 80 + 10 + 12 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + 2 + + + ESimpleLabel::WidthAndHeight + + + + 75 + 80 + 10 + 12 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + 3 + + + ESimpleLabel::WidthAndHeight + + + + 45 + 80 + 10 + 12 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + 4 + + + ESimpleLabel::WidthAndHeight + 15 80 - 102 - 14 + 10 + 12 - - - QFrame::NoFrame - - - - 90 - 0 - 10 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - 1 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 60 - 0 - 10 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - 2 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 30 - 0 - 10 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - 3 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 0 - 10 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - 4 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 65 + 90 + 20 + 15 + + + + EPushButton::WidthAndHeight + + + $(P)$(H)ftweak$(B).A + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + caMessageButton::Static + - + 45 90 - 42 - 17 + 20 + 15 - - - - 0 - 0 - 42 - 17 - - - - - - 20 - 0 - 20 - 15 - - - - EPushButton::Height - - - $(P)$(H)ftweak$(B).A - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - + - - - 1 - - - caMessageButton::Static - - - - - - 0 - 0 - 20 - 15 - - - - EPushButton::Height - - - $(P)$(H)ftweak$(B).B - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - - - - - 1 - - - caMessageButton::Static - - - - - caFrame::IfNotZero + + EPushButton::WidthAndHeight - $(P)$(H)bank$(B) + $(P)$(H)ftweak$(B).B + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + caMessageButton::Static caLabel_0 @@ -907,9 +959,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caLabel_3 caLabel_4 caLabel_5 - caFrame_0 - caFrame_2 - caFrame_1 caLineEdit_0 caMessageButton_0 caMessageButton_1 diff --git a/opticsApp/op/ui/pf4Bankconfig.ui b/opticsApp/op/ui/autoconvert/pf4Bankconfig.ui similarity index 60% rename from opticsApp/op/ui/pf4Bankconfig.ui rename to opticsApp/op/ui/autoconvert/pf4Bankconfig.ui index 7f8673c..cbdc810 100644 --- a/opticsApp/op/ui/pf4Bankconfig.ui +++ b/opticsApp/op/ui/autoconvert/pf4Bankconfig.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -55,14 +143,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 4 - 3 - 220 - 20 - - 0 @@ -81,11 +161,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} PF4 filter - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 4 + 3 + 220 + 20 + + @@ -120,7 +208,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 1,1;223,1; + 223,1; @@ -207,102 +295,92 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)$(H)calc - 1,1;223,1; + 223,1; - + + + + 115 + 155 + 50 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -more + + + Menu + + + PF4 mono filter computed controls + + + pf4Bankmore.adl + + + P=$(P),H=$(H),B=$(B) + + + true + + + 60 155 - 107 - 22 + 55 + 20 - - - - 55 - 0 - 50 - 20 - - - - - 255 - 255 - 255 - - - - - 51 - 153 - 0 - - - - -more - - - Menu - - - PF4 mono filter computed controls - - - pf4Bankmore.adl - - - P=$(P),H=$(H),B=$(B) - - - true - - - - - - 0 - 0 - 55 - 20 - - - - - 255 - 255 - 255 - - - - - 51 - 153 - 0 - - - - --config - - - Menu - - - all - - - pf4Bank.adl - - - P=$(P),H=$(H),B=$(B) - - - true - - + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + --config + + + Menu + + + all + + + pf4Bank.adl + + + P=$(P),H=$(H),B=$(B) + + + true + caRectangle_0 caLabel_0 @@ -310,7 +388,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caInclude_0 caInclude_1 caPolyLine_1 - caFrame_2 caRelatedDisplay_0 caRelatedDisplay_1 diff --git a/opticsApp/op/ui/pf4Bankconfig_bare.ui b/opticsApp/op/ui/autoconvert/pf4Bankconfig_bare.ui similarity index 83% rename from opticsApp/op/ui/pf4Bankconfig_bare.ui rename to opticsApp/op/ui/autoconvert/pf4Bankconfig_bare.ui index f421112..11eda3c 100644 --- a/opticsApp/op/ui/pf4Bankconfig_bare.ui +++ b/opticsApp/op/ui/autoconvert/pf4Bankconfig_bare.ui @@ -4,8 +4,8 @@ - 439 - 700 + 950 + 581 225 250 @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -22,14 +110,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 5 - 220 - 195 - 14 - - 0 @@ -48,7 +128,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Be B C Al Si Ti Cr Mn Fe Co Ni - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 220 + 195 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -58,14 +146,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 10 - 190 - 215 - 14 - - 0 @@ -84,7 +164,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Choices for filter material - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 190 + 215 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -100,7 +188,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)E:local @@ -145,14 +233,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 200 - 30 - 25 - 14 - - 0 @@ -171,7 +251,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} keV - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 200 + 30 + 25 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -181,14 +269,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 66 - 30 - 40 - 14 - - 0 @@ -207,11 +287,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} using - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 66 + 30 + 40 + 14 + + @@ -247,14 +335,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 66 - 1 - 40 - 14 - - 0 @@ -273,11 +353,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Energy - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 66 + 1 + 40 + 14 + + @@ -289,7 +377,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)displayEnergy @@ -337,14 +425,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 200 - 1 - 25 - 14 - - 0 @@ -363,99 +443,97 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} keV - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 200 + 1 + 25 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + + + caGraphics::Rectangle + 77 65 - 68 - 22 + 66 + 20 - - - caGraphics::Rectangle - - - - 0 - 0 - 66 - 20 - - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::IfZero - - - $(P)$(H)bank$(B) - - - - - caGraphics::Rectangle - - - - 0 - 0 - 66 - 20 - - - - - 45 - 127 - 0 - - - - Filled - - - - 45 - 127 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)$(H)bank$(B) - - + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(H)bank$(B) + + + + + caGraphics::Rectangle + + + + 77 + 65 + 66 + 20 + + + + + 45 + 127 + 0 + + + + Filled + + + + 45 + 127 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(H)bank$(B) + @@ -467,7 +545,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)bank$(B) @@ -506,7 +584,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)bank$(B) @@ -545,7 +623,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)bank$(B) @@ -599,7 +677,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)f4$(B).EGU @@ -773,7 +851,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)f3$(B) @@ -824,7 +902,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)f4$(B) @@ -875,7 +953,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)f2$(B) @@ -926,7 +1004,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)f1$(B) @@ -967,7 +1045,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} decimal - + 110 @@ -991,7 +1069,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} P=$(P),H=$(H),N=1,B=B - + 110 @@ -1015,7 +1093,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} P=$(P),H=$(H),N=2,B=B - + 110 @@ -1039,42 +1117,103 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} P=$(P),H=$(H),N=3,B=B - + 110 105 - 52 - 24 + 40 + 20 - - - 110 - 105 - 50 - 22 - + + caLineEdit::WidthAndHeight - - pf4_other_bare.adl + + $(P)$(H)Other4B - - P=$(P),H=$(H),N=4,B=B + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal QFrame::NoFrame + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + caLabel::IfZero + + + $(P)$(H)OtherLegal4B + + + X + + + ESimpleLabel::WidthAndHeight + - 182 - 78 - 35 - 14 + 150 + 107 + 10 + 20 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 0 @@ -1093,11 +1232,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} debug - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 182 + 78 + 35 + 14 + + @@ -1129,18 +1276,10 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caMenu::Static - + QFrame::NoFrame - - - 0 - 107 - 10 - 18 - - 0 @@ -1159,24 +1298,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} 4 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - QFrame::NoFrame - 0 - 127 + 107 10 18 + + + + QFrame::NoFrame + 0 @@ -1195,24 +1334,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} 3 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - QFrame::NoFrame - 0 - 147 + 127 10 18 + + + + QFrame::NoFrame + 0 @@ -1231,24 +1370,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} 2 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - QFrame::NoFrame - 0 - 167 + 147 10 18 + + + + QFrame::NoFrame + 0 @@ -1267,11 +1406,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} 1 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 0 + 167 + 10 + 18 + + @@ -1306,7 +1453,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 1,1;224,1; + 224,1; @@ -1351,18 +1498,10 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} false - + QFrame::NoFrame - - - 10 - 205 - 215 - 14 - - 0 @@ -1381,24 +1520,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} 'Other': - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 205 + 215 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + QFrame::NoFrame - - - 5 - 235 - 220 - 14 - - 0 @@ -1417,7 +1556,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Cu Zn Ge Mo Ag Sn Ta W Pt Au Pb - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 235 + 220 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1431,19 +1578,18 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caLabel_5 caRectangle_0 caRectangle_1 - caFrame_0 + caInclude_0 caInclude_1 caInclude_2 - caInclude_3 - caInclude_4 caLabel_6 caLabel_7 caLabel_8 caLabel_9 caLabel_10 - caPolyLine_0 caLabel_11 + caPolyLine_0 caLabel_12 + caLabel_13 caTextEntry_0 caChoice_0 caLineEdit_0 @@ -1459,6 +1605,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caTextEntry_2 caTextEntry_3 caTextEntry_4 + caTextEntry_5 caMenu_4 caRelatedDisplay_0 diff --git a/opticsApp/op/ui/autoconvert/pf4Bankmore.ui b/opticsApp/op/ui/autoconvert/pf4Bankmore.ui new file mode 100644 index 0000000..1c1ebda --- /dev/null +++ b/opticsApp/op/ui/autoconvert/pf4Bankmore.ui @@ -0,0 +1,2056 @@ + + +MainWindow + + + + 862 + 500 + 140 + 535 + + + + + +QWidget#centralWidget {background: rgba(218, 218, 218, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + caGraphics::Rectangle + + + + 0 + 0 + 140 + 25 + + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + + 0 + 180 + 141 + 2 + + + + 2 + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + $(P)$(H)calc + + + 140,1; + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + PF4 filter + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 0 + 0 + 135 + 20 + + + + + + + 0 + 22 + 142 + 3 + + + + 3 + + + + 10 + 0 + 184 + + + + Filled + + + + 10 + 0 + 184 + + + + Solid + + + 140,1; + + + + + + 5 + 25 + 127 + 137 + + + + + 5 + 25 + 125 + 135 + + + + pf4Bank_bare.adl + + + + + + + + + 30 + 155 + 55 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -config + + + Menu + + + all + + + pf4Bankconfig.adl + + + P=$(P),H=$(H),B=$(B) + + + true + + + + + + 85 + 155 + 50 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -less + + + Menu + + + PF4 mono filter computed controls + + + pf4Bank.adl + + + P=$(P),H=$(H),B=$(B) + + + true + + + + + caGraphics::Rectangle + + + + 6 + 185 + 64 + 346 + + + + + 52 + 51 + 134 + + + + Filled + + + + 52 + 51 + 134 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(H)fPos$(B) + + + + + caGraphics::Rectangle + + + + 6 + 185 + 64 + 346 + + + + + 30 + 187 + 0 + + + + Filled + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(H)fPos$(B) + + + + + caGraphics::Rectangle + + + + 6 + 185 + 64 + 346 + + + + + 222 + 19 + 9 + + + + Filled + + + + 222 + 19 + 9 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(H)bank$(B) + + + + + + 10 + 189 + 10 + 336 + + + + $(P)$(H)bitFlag$(B) + + + + 139 + 26 + 150 + + + + + 218 + 218 + 218 + + + + 0 + + + 15 + + + caByte::Static + + + 0 + + + 15 + + + Down + + + + + + 74 + 254 + 70 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)$(H)fPos$(B).THST + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 74 + 233 + 70 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)$(H)fPos$(B).TWST + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 74 + 212 + 70 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)$(H)fPos$(B).ONST + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 74 + 191 + 70 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)$(H)fPos$(B).ZRST + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 74 + 276 + 70 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)$(H)fPos$(B).FRST + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 74 + 297 + 70 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)$(H)fPos$(B).FVST + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 74 + 318 + 70 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)$(H)fPos$(B).SXST + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 74 + 339 + 70 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)$(H)fPos$(B).SVST + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 74 + 360 + 70 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)$(H)fPos$(B).EIST + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 74 + 381 + 70 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)$(H)fPos$(B).NIST + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 74 + 402 + 70 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)$(H)fPos$(B).TEST + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 74 + 423 + 70 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)$(H)fPos$(B).ELST + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 74 + 444 + 70 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)$(H)fPos$(B).TVST + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 74 + 465 + 70 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)$(H)fPos$(B).TTST + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 74 + 486 + 70 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)$(H)fPos$(B).FTST + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 74 + 507 + 70 + 14 + + + + caLineEdit::WidthAndHeight + + + $(P)$(H)fPos$(B).FFST + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + string + + + caLineEdit::Static + + + + + + 24 + 191 + 40 + 18 + + + + EPushButton::WidthAndHeight + + + $(P)$(H)fPos$(B) + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + B 0 + + + 0 + + + caMessageButton::Static + + + + + + 24 + 212 + 40 + 18 + + + + EPushButton::WidthAndHeight + + + $(P)$(H)fPos$(B) + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + B 1 + + + 1 + + + caMessageButton::Static + + + + + + 24 + 233 + 40 + 18 + + + + EPushButton::WidthAndHeight + + + $(P)$(H)fPos$(B) + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + B 2 + + + 2 + + + caMessageButton::Static + + + + + + 24 + 254 + 40 + 18 + + + + EPushButton::WidthAndHeight + + + $(P)$(H)fPos$(B) + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + B 3 + + + 3 + + + caMessageButton::Static + + + + + + 24 + 276 + 40 + 18 + + + + EPushButton::WidthAndHeight + + + $(P)$(H)fPos$(B) + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + B 4 + + + 4 + + + caMessageButton::Static + + + + + + 24 + 297 + 40 + 18 + + + + EPushButton::WidthAndHeight + + + $(P)$(H)fPos$(B) + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + B 5 + + + 5 + + + caMessageButton::Static + + + + + + 24 + 318 + 40 + 18 + + + + EPushButton::WidthAndHeight + + + $(P)$(H)fPos$(B) + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + B 6 + + + 6 + + + caMessageButton::Static + + + + + + 24 + 339 + 40 + 18 + + + + EPushButton::WidthAndHeight + + + $(P)$(H)fPos$(B) + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + B 7 + + + 7 + + + caMessageButton::Static + + + + + + 24 + 360 + 40 + 18 + + + + EPushButton::WidthAndHeight + + + $(P)$(H)fPos$(B) + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + B 8 + + + 8 + + + caMessageButton::Static + + + + + + 24 + 381 + 40 + 18 + + + + EPushButton::WidthAndHeight + + + $(P)$(H)fPos$(B) + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + B 9 + + + 9 + + + caMessageButton::Static + + + + + + 24 + 402 + 40 + 18 + + + + EPushButton::WidthAndHeight + + + $(P)$(H)fPos$(B) + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + B 10 + + + 10 + + + caMessageButton::Static + + + + + + 24 + 423 + 40 + 18 + + + + EPushButton::WidthAndHeight + + + $(P)$(H)fPos$(B) + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + B 11 + + + 11 + + + caMessageButton::Static + + + + + + 24 + 444 + 40 + 18 + + + + EPushButton::WidthAndHeight + + + $(P)$(H)fPos$(B) + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + B 12 + + + 12 + + + caMessageButton::Static + + + + + + 24 + 465 + 40 + 18 + + + + EPushButton::WidthAndHeight + + + $(P)$(H)fPos$(B) + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + B 13 + + + 13 + + + caMessageButton::Static + + + + + + 24 + 486 + 40 + 18 + + + + EPushButton::WidthAndHeight + + + $(P)$(H)fPos$(B) + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + B 14 + + + 14 + + + caMessageButton::Static + + + + + + 24 + 507 + 40 + 18 + + + + EPushButton::WidthAndHeight + + + $(P)$(H)fPos$(B) + + + + 0 + 0 + 0 + + + + + 218 + 218 + 218 + + + + B 15 + + + 15 + + + caMessageButton::Static + + + caRectangle_0 + caPolyLine_0 + caLabel_0 + caPolyLine_1 + caInclude_0 + caRectangle_1 + caRectangle_2 + caRectangle_3 + caRelatedDisplay_0 + caRelatedDisplay_1 + caByte_0 + caLineEdit_0 + caLineEdit_1 + caLineEdit_2 + caLineEdit_3 + caLineEdit_4 + caLineEdit_5 + caLineEdit_6 + caLineEdit_7 + caLineEdit_8 + caLineEdit_9 + caLineEdit_10 + caLineEdit_11 + caLineEdit_12 + caLineEdit_13 + caLineEdit_14 + caLineEdit_15 + caMessageButton_0 + caMessageButton_1 + caMessageButton_2 + caMessageButton_3 + caMessageButton_4 + caMessageButton_5 + caMessageButton_6 + caMessageButton_7 + caMessageButton_8 + caMessageButton_9 + caMessageButton_10 + caMessageButton_11 + caMessageButton_12 + caMessageButton_13 + caMessageButton_14 + caMessageButton_15 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/pf4_bare.ui b/opticsApp/op/ui/autoconvert/pf4_bare.ui similarity index 71% rename from opticsApp/op/ui/pf4_bare.ui rename to opticsApp/op/ui/autoconvert/pf4_bare.ui index cd312d3..8007550 100644 --- a/opticsApp/op/ui/pf4_bare.ui +++ b/opticsApp/op/ui/autoconvert/pf4_bare.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -62,14 +150,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 259 - 22 - 30 - 10 - - 253 @@ -88,7 +168,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} BEAM - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 259 + 22 + 30 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -98,14 +186,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 180 - 0 - 100 - 20 - - 0 @@ -124,24 +204,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Bank A - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 25 + 180 0 100 20 + + + + QFrame::NoFrame + 0 @@ -160,11 +240,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Bank B - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 25 + 0 + 100 + 20 + + @@ -216,7 +304,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)trans$(A) @@ -270,7 +358,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)trans$(B) @@ -324,7 +412,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)filterAl @@ -372,14 +460,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 44 - 170 - 50 - 12 - - 0 @@ -398,7 +478,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} mm Al - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 44 + 170 + 50 + 12 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -408,14 +496,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 123 - 170 - 50 - 12 - - 0 @@ -434,7 +514,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} mm Ti - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 123 + 170 + 50 + 12 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -450,7 +538,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)filterTi @@ -504,7 +592,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)trans @@ -552,14 +640,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 205 - 170 - 50 - 12 - - 0 @@ -578,7 +658,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} mm Glass - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 205 + 170 + 50 + 12 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -594,7 +682,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)filterGlass @@ -671,7 +759,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 272,1;1,1; + 1,1; @@ -707,7 +795,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 12,1;1,7;12,12; + 12,12; @@ -749,7 +837,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)$(H)displayBit4$(B) - 0,33;20,46;20,8;0,0;0,33; + 0,33; caPolyLine::Polygon @@ -794,7 +882,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)$(H)displayBit3$(B) - 0,33;20,46;20,8;0,0;0,33; + 0,33; caPolyLine::Polygon @@ -839,7 +927,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)$(H)displayBit2$(B) - 0,33;20,46;20,8;0,0;0,33; + 0,33; caPolyLine::Polygon @@ -884,7 +972,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)$(H)displayBit1$(B) - 0,33;20,46;20,8;0,0;0,33; + 0,33; caPolyLine::Polygon @@ -933,7 +1021,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)$(H)displayBit1$(B) - 1,33;20,46;20,9;1,1;1,33; + 1,33; caPolyLine::Polygon @@ -982,7 +1070,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)$(H)displayBit2$(B) - 1,33;20,46;20,9;1,1;1,33; + 1,33; caPolyLine::Polygon @@ -1031,7 +1119,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)$(H)displayBit3$(B) - 1,33;20,46;20,9;1,1;1,33; + 1,33; caPolyLine::Polygon @@ -1080,165 +1168,155 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)$(H)displayBit4$(B) - 1,33;20,46;20,9;1,1;1,33; + 1,33; caPolyLine::Polygon - + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + 1 + + + ESimpleLabel::WidthAndHeight + + + + 124 + 80 + 10 + 12 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + 2 + + + ESimpleLabel::WidthAndHeight + + + + 94 + 80 + 10 + 12 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + 3 + + + ESimpleLabel::WidthAndHeight + + + + 64 + 80 + 10 + 12 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + 4 + + + ESimpleLabel::WidthAndHeight + 34 80 - 102 - 14 + 10 + 12 - - - QFrame::NoFrame - - - - 90 - 0 - 10 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - 1 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 60 - 0 - 10 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - 2 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 30 - 0 - 10 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - 3 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 0 - 10 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - 4 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + @@ -1279,7 +1357,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)$(H)displayBit4$(A) - 0,33;20,46;20,8;0,0;0,33; + 0,33; caPolyLine::Polygon @@ -1324,7 +1402,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)$(H)displayBit3$(A) - 0,33;20,46;20,8;0,0;0,33; + 0,33; caPolyLine::Polygon @@ -1369,7 +1447,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)$(H)displayBit1$(A) - 0,33;20,46;20,8;0,0;0,33; + 0,33; caPolyLine::Polygon @@ -1414,7 +1492,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)$(H)displayBit2$(A) - 0,33;20,46;20,8;0,0;0,33; + 0,33; caPolyLine::Polygon @@ -1463,7 +1541,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)$(H)displayBit1$(A) - 1,33;20,46;20,9;1,1;1,33; + 1,33; caPolyLine::Polygon @@ -1512,7 +1590,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)$(H)displayBit2$(A) - 1,33;20,46;20,9;1,1;1,33; + 1,33; caPolyLine::Polygon @@ -1561,7 +1639,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)$(H)displayBit3$(A) - 1,34;21,47;21,9;1,1;1,34; + 1,34; caPolyLine::Polygon @@ -1610,372 +1688,310 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)$(H)displayBit4$(A) - 1,33;20,46;20,9;1,1;1,33; + 1,33; caPolyLine::Polygon - + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + 1 + + + ESimpleLabel::WidthAndHeight + + + + 275 + 80 + 10 + 12 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + 2 + + + ESimpleLabel::WidthAndHeight + + + + 245 + 80 + 10 + 12 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + 3 + + + ESimpleLabel::WidthAndHeight + + + + 215 + 80 + 10 + 12 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + 4 + + + ESimpleLabel::WidthAndHeight + 185 80 - 102 - 14 + 10 + 12 - - - QFrame::NoFrame - - - - 90 - 0 - 10 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - 1 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 60 - 0 - 10 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - 2 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 30 - 0 - 10 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - 3 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 0 - 10 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - 4 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + - + + + + 235 + 90 + 20 + 15 + + + + EPushButton::WidthAndHeight + + + $(P)$(H)ftweak$(A).A + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + caMessageButton::Static + + + 215 90 - 42 - 17 + 20 + 15 - - - - 0 - 0 - 42 - 17 - - - - - - 20 - 0 - 20 - 15 - - - - EPushButton::Height - - - $(P)$(H)ftweak$(A).A - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - + - - - 1 - - - caMessageButton::Static - - - - - - 0 - 0 - 20 - 15 - - - - EPushButton::Height - - - $(P)$(H)ftweak$(A).B - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - - - - - 1 - - - caMessageButton::Static - - - - - caFrame::IfNotZero + + EPushButton::WidthAndHeight + + + $(P)$(H)ftweak$(A).B + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + caMessageButton::Static + + + + + + 82 + 90 + 20 + 15 + + + + EPushButton::WidthAndHeight - $(P)$(H)bank$(A) + $(P)$(H)ftweak$(B).A + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + + + + + 1 + + + caMessageButton::Static - + 62 90 - 42 - 17 + 20 + 15 - - - - 0 - 0 - 42 - 17 - - - - - - 20 - 0 - 20 - 15 - - - - EPushButton::Height - - - $(P)$(H)ftweak$(B).A - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - + - - - 1 - - - caMessageButton::Static - - - - - - 0 - 0 - 20 - 15 - - - - EPushButton::Height - - - $(P)$(H)ftweak$(B).B - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - - - - - 1 - - - caMessageButton::Static - - - - - caFrame::IfNotZero + + EPushButton::WidthAndHeight - $(P)$(H)bank$(B) + $(P)$(H)ftweak$(B).B + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + - + + + 1 + + + caMessageButton::Static caRectangle_0 @@ -2000,7 +2016,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caLabel_7 caLabel_8 caLabel_9 - caFrame_0 caPolygon_8 caPolygon_9 caPolygon_10 @@ -2013,11 +2028,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caLabel_11 caLabel_12 caLabel_13 - caFrame_1 - caFrame_3 - caFrame_2 - caFrame_5 - caFrame_4 caLineEdit_0 caLineEdit_1 caLineEdit_2 diff --git a/opticsApp/op/ui/pf4_otherHelp.ui b/opticsApp/op/ui/autoconvert/pf4_otherHelp.ui similarity index 83% rename from opticsApp/op/ui/pf4_otherHelp.ui rename to opticsApp/op/ui/autoconvert/pf4_otherHelp.ui index 8879820..19111ec 100644 --- a/opticsApp/op/ui/pf4_otherHelp.ui +++ b/opticsApp/op/ui/autoconvert/pf4_otherHelp.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -28,7 +116,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)OtherShow @@ -156,14 +244,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 113 - 22 - 220 - 14 - - 0 @@ -182,7 +262,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Be B C Al Si Ti Cr Mn Fe Co Ni Cu Zn - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 113 + 22 + 220 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -192,14 +280,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 93 - 7 - 220 - 14 - - 0 @@ -218,7 +298,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Supported filter materials: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 93 + 7 + 220 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -228,14 +316,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 113 - 34 - 220 - 14 - - 0 @@ -254,7 +334,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Ge Mo Ag Sn Ta W Pt Au Pb - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 113 + 34 + 220 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -264,14 +352,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 10 - 5 - 50 - 14 - - 0 @@ -290,24 +370,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Filter - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 10 - 14 + 5 50 14 + + + + QFrame::NoFrame + 0 @@ -326,11 +406,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Material - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 10 + 14 + 50 + 14 + + caLabel_0 caLabel_1 diff --git a/opticsApp/op/ui/autoconvert/pf4_other_bare.ui b/opticsApp/op/ui/autoconvert/pf4_other_bare.ui new file mode 100644 index 0000000..bfa5825 --- /dev/null +++ b/opticsApp/op/ui/autoconvert/pf4_other_bare.ui @@ -0,0 +1,206 @@ + + +MainWindow + + + + 230 + 230 + 50 + 22 + + + + + +QWidget#centralWidget {background: rgba(218, 218, 218, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + + 0 + 0 + 40 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(H)Other$(N)$(B) + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + caLabel::IfZero + + + $(P)$(H)OtherLegal$(N)$(B) + + + X + + + ESimpleLabel::WidthAndHeight + + + + 40 + 2 + 10 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + caLabel_0 + caTextEntry_0 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/pf4config.ui b/opticsApp/op/ui/autoconvert/pf4config.ui similarity index 82% rename from opticsApp/op/ui/pf4config.ui rename to opticsApp/op/ui/autoconvert/pf4config.ui index 35c058b..8cbc0f2 100644 --- a/opticsApp/op/ui/pf4config.ui +++ b/opticsApp/op/ui/autoconvert/pf4config.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -55,14 +143,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 4 - 3 - 320 - 20 - - 0 @@ -81,11 +161,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} PF4 dual filter - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 4 + 3 + 320 + 20 + + @@ -204,7 +292,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 1,1;324,1; + 324,1; @@ -291,7 +379,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)$(H)calc - 1,1;325,1; + 325,1; caRectangle_0 diff --git a/opticsApp/op/ui/pf4config_bare.ui b/opticsApp/op/ui/autoconvert/pf4config_bare.ui similarity index 88% rename from opticsApp/op/ui/pf4config_bare.ui rename to opticsApp/op/ui/autoconvert/pf4config_bare.ui index a91854d..0bdccc6 100644 --- a/opticsApp/op/ui/pf4config_bare.ui +++ b/opticsApp/op/ui/autoconvert/pf4config_bare.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -22,14 +110,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 30 - 240 - 220 - 14 - - 0 @@ -48,7 +128,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Be B C Al Si Ti Cr Mn Fe Co Ni Cu Zn - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 30 + 240 + 220 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -58,14 +146,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 10 - 225 - 220 - 14 - - 0 @@ -84,7 +164,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Choices for filter material 'Other': - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 225 + 220 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -100,7 +188,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)E:local @@ -145,14 +233,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 250 - 30 - 49 - 14 - - 0 @@ -171,7 +251,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} keV - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 250 + 30 + 49 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -181,14 +269,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 97 - 30 - 40 - 14 - - 0 @@ -207,11 +287,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} using - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 97 + 30 + 40 + 14 + + @@ -247,14 +335,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 97 - 1 - 40 - 14 - - 0 @@ -273,11 +353,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Energy - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 97 + 1 + 40 + 14 + + @@ -289,7 +377,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)displayEnergy @@ -337,14 +425,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 250 - 1 - 49 - 14 - - 0 @@ -363,7 +443,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} keV - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 250 + 1 + 49 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -373,14 +461,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 30 - 252 - 220 - 14 - - 0 @@ -399,99 +479,97 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Ge Mo Ag Sn Ta W Pt Au Pb - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 30 + 252 + 220 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + + + caGraphics::Rectangle + 77 65 - 68 - 22 + 66 + 20 + + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(H)bank$(B) + + + + + caGraphics::Rectangle + + + + 77 + 65 + 66 + 20 - - - caGraphics::Rectangle - - - - 0 - 0 - 66 - 20 - - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::IfZero - - - $(P)$(H)bank$(B) - - - - - caGraphics::Rectangle - - - - 0 - 0 - 66 - 20 - - - - - 45 - 127 - 0 - - - - Filled - - - - 45 - 127 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)$(H)bank$(B) - - + + + 45 + 127 + 0 + + + + Filled + + + + 45 + 127 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(H)bank$(B) + @@ -503,7 +581,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)bank$(B) @@ -542,7 +620,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)bank$(B) @@ -581,7 +659,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)bank$(B) @@ -635,7 +713,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)f4$(B).EGU @@ -809,7 +887,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)f3$(B) @@ -860,7 +938,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)f4$(B) @@ -911,7 +989,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)f2$(B) @@ -962,7 +1040,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)f1$(B) @@ -1003,7 +1081,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} decimal - + 110 @@ -1027,7 +1105,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} P=$(P),H=$(H),N=1,B=B - + 110 @@ -1051,7 +1129,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} P=$(P),H=$(H),N=2,B=B - + 110 @@ -1075,7 +1153,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} P=$(P),H=$(H),N=3,B=B - + 110 @@ -1133,14 +1211,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 194 - 198 - 40 - 14 - - 0 @@ -1159,11 +1229,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} debug - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 194 + 198 + 40 + 14 + + @@ -1253,7 +1331,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)bank$(A) @@ -1307,7 +1385,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)bank$(A) @@ -1346,7 +1424,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)bank$(A) @@ -1385,7 +1463,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)f4$(A).EGU @@ -1439,7 +1517,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)f4$(A) @@ -1490,7 +1568,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)f3$(A) @@ -1541,7 +1619,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)f2$(A) @@ -1592,7 +1670,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)f1$(A) @@ -1633,111 +1711,101 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} decimal - + + + + 275 + 165 + 52 + 24 + + + + + 275 + 165 + 50 + 22 + + + + pf4_other_bare.adl + + + P=$(P),H=$(H),N=1,B=A + + + + + + 275 + 145 + 52 + 24 + + + + + 275 + 145 + 50 + 22 + + + + pf4_other_bare.adl + + + P=$(P),H=$(H),N=2,B=A + + + + + + 275 + 125 + 52 + 24 + + + + + 275 + 125 + 50 + 22 + + + + pf4_other_bare.adl + + + P=$(P),H=$(H),N=3,B=A + + + 275 105 52 - 84 - - - - - - 0 - 60 - 52 - 24 - - - - - 0 - 60 - 50 - 22 - - - - pf4_other_bare.adl - - - P=$(P),H=$(H),N=1,B=A - - - - - - 0 - 40 - 52 - 24 - - - - - 0 - 40 - 50 - 22 - - - - pf4_other_bare.adl - - - P=$(P),H=$(H),N=2,B=A - - - - - - 0 - 20 - 52 - 24 - - - - - 0 - 20 - 50 - 22 - - - - pf4_other_bare.adl - - - P=$(P),H=$(H),N=3,B=A - - - - - - 0 - 0 - 52 - 24 - - - - - 0 - 0 - 50 - 22 - - - - pf4_other_bare.adl - - - P=$(P),H=$(H),N=4,B=A - - + 24 + + + + + 275 + 105 + 50 + 22 + + + + pf4_other_bare.adl + + + P=$(P),H=$(H),N=4,B=A + @@ -1863,14 +1931,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 165 - 107 - 10 - 18 - - 0 @@ -1889,24 +1949,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} 4 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - QFrame::NoFrame - 165 - 127 + 107 10 18 + + + + QFrame::NoFrame + 0 @@ -1925,24 +1985,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} 3 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - QFrame::NoFrame - 165 - 147 + 127 10 18 + + + + QFrame::NoFrame + 0 @@ -1961,24 +2021,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} 2 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - QFrame::NoFrame - 165 - 167 + 147 10 18 + + + + QFrame::NoFrame + 0 @@ -1997,24 +2057,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} 1 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 165 + 167 + 10 + 18 + + QFrame::NoFrame - - - 29 - 198 - 35 - 14 - - 0 @@ -2033,11 +2093,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} debug - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 29 + 198 + 35 + 14 + + @@ -2073,14 +2141,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 0 - 107 - 10 - 18 - - 0 @@ -2099,24 +2159,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} 4 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - QFrame::NoFrame - 0 - 127 + 107 10 18 + + + + QFrame::NoFrame + 0 @@ -2135,24 +2195,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} 3 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - QFrame::NoFrame - 0 - 147 + 127 10 18 + + + + QFrame::NoFrame + 0 @@ -2171,24 +2231,24 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} 2 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - QFrame::NoFrame - 0 - 167 + 147 10 18 + + + + QFrame::NoFrame + 0 @@ -2207,11 +2267,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} 1 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 0 + 167 + 10 + 18 + + @@ -2246,7 +2314,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 1,1;324,1; + 324,1; @@ -2342,19 +2410,17 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caLabel_6 caRectangle_0 caRectangle_1 - caFrame_0 + caInclude_0 caInclude_1 caInclude_2 caInclude_3 - caInclude_4 caLabel_7 caRectangle_2 caRectangle_3 + caInclude_4 + caInclude_5 caInclude_6 caInclude_7 - caInclude_8 - caInclude_9 - caFrame_5 caLabel_8 caLabel_9 caLabel_10 diff --git a/opticsApp/op/ui/pf4more.ui b/opticsApp/op/ui/autoconvert/pf4more.ui similarity index 91% rename from opticsApp/op/ui/pf4more.ui rename to opticsApp/op/ui/autoconvert/pf4more.ui index 0844692..31daaa7 100644 --- a/opticsApp/op/ui/pf4more.ui +++ b/opticsApp/op/ui/autoconvert/pf4more.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -87,174 +175,170 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} $(P)$(H)calc - 1,1;325,1; + 325,1; - + + + caGraphics::Rectangle + 6 220 - 66 - 348 - - - - - caGraphics::Rectangle - - - - 0 - 0 - 64 - 346 - - - - - 52 - 51 - 134 - - - - Filled - - - - 52 - 51 - 134 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)$(H)fPos$(B) - - - - - caGraphics::Rectangle - - - - 0 - 0 - 64 - 346 - - - - - 30 - 187 - 0 - - - - Filled - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfZero - - - $(P)$(H)fPos$(B) - - - - - caGraphics::Rectangle - - - - 0 - 0 - 64 - 346 - - - - - 222 - 19 - 9 - - - - Filled - - - - 222 - 19 - 9 - - - - Solid - - - caGraphics::IfZero - - - $(P)$(H)bank$(B) - - - - - - 4 - 4 - 10 - 336 - - - - $(P)$(H)bitFlag$(B) - - - - 139 - 26 - 150 - - - - - 218 - 218 - 218 - - - - 0 - - - 15 - - - caByte::Static - - - Down - - + 64 + 346 + + + + + 52 + 51 + 134 + + + + Filled + + + + 52 + 51 + 134 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(H)fPos$(B) + + + + + caGraphics::Rectangle + + + + 6 + 220 + 64 + 346 + + + + + 30 + 187 + 0 + + + + Filled + + + + 30 + 187 + 0 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(H)fPos$(B) + + + + + caGraphics::Rectangle + + + + 6 + 220 + 64 + 346 + + + + + 222 + 19 + 9 + + + + Filled + + + + 222 + 19 + 9 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(H)bank$(B) + + + + + + 10 + 224 + 10 + 336 + + + + $(P)$(H)bitFlag$(B) + + + + 139 + 26 + 150 + + + + + 218 + 218 + 218 + + + + 0 + + + 15 + + + caByte::Static + + + 0 + + + 15 + + + Down + @@ -266,7 +350,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(B).THST @@ -320,7 +404,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(B).TWST @@ -374,7 +458,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(B).ONST @@ -428,7 +512,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(B).ZRST @@ -482,7 +566,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(B).FRST @@ -536,7 +620,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(B).FVST @@ -590,7 +674,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(B).SXST @@ -644,7 +728,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(B).SVST @@ -698,7 +782,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(B).EIST @@ -752,7 +836,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(B).NIST @@ -806,7 +890,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(B).TEST @@ -860,7 +944,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(B).ELST @@ -914,7 +998,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(B).TVST @@ -968,7 +1052,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(B).TTST @@ -1022,7 +1106,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(B).FTST @@ -1076,7 +1160,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(B).FFST @@ -1130,7 +1214,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(B) @@ -1169,7 +1253,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(B) @@ -1208,7 +1292,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(B) @@ -1247,7 +1331,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(B) @@ -1286,7 +1370,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(B) @@ -1325,7 +1409,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(B) @@ -1364,7 +1448,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(B) @@ -1403,7 +1487,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(B) @@ -1442,7 +1526,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(B) @@ -1481,7 +1565,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(B) @@ -1520,7 +1604,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(B) @@ -1559,7 +1643,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(B) @@ -1598,7 +1682,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(B) @@ -1637,7 +1721,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(B) @@ -1676,7 +1760,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(B) @@ -1715,7 +1799,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(B) @@ -1896,6 +1980,12 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caByte::Static + + 0 + + + 15 + Down @@ -1910,7 +2000,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(A).THST @@ -1964,7 +2054,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(A).TWST @@ -2018,7 +2108,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(A).ONST @@ -2072,7 +2162,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(A).ZRST @@ -2126,7 +2216,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(A).FRST @@ -2180,7 +2270,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(A).FVST @@ -2234,7 +2324,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(A).SXST @@ -2288,7 +2378,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(A).SVST @@ -2342,7 +2432,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(A).EIST @@ -2396,7 +2486,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(A).NIST @@ -2450,7 +2540,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(A).TEST @@ -2504,7 +2594,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(A).ELST @@ -2558,7 +2648,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(A).TVST @@ -2612,7 +2702,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(A).TTST @@ -2666,7 +2756,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(A).FTST @@ -2720,7 +2810,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(H)fPos$(A).FFST @@ -2774,7 +2864,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(A) @@ -2813,7 +2903,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(A) @@ -2852,7 +2942,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(A) @@ -2891,7 +2981,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(A) @@ -2930,7 +3020,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(A) @@ -2969,7 +3059,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(A) @@ -3008,7 +3098,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(A) @@ -3047,7 +3137,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(A) @@ -3086,7 +3176,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(A) @@ -3125,7 +3215,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(A) @@ -3164,7 +3254,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(A) @@ -3203,7 +3293,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(A) @@ -3242,7 +3332,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(A) @@ -3281,7 +3371,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(A) @@ -3320,7 +3410,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(A) @@ -3359,7 +3449,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(H)fPos$(A) @@ -3392,14 +3482,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 0 - 0 - 320 - 20 - - 0 @@ -3418,11 +3500,19 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} PF4 dual filter - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 0 + 320 + 20 + + @@ -3457,10 +3547,10 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 1,1;324,1; + 324,1; - + 5 @@ -3573,13 +3663,12 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caRectangle_1 caRectangle_2 caRectangle_3 - caFrame_0 caRectangle_4 caRectangle_5 caRectangle_6 caLabel_0 caPolyLine_1 - caInclude_1 + caInclude_0 caByte_0 caLineEdit_0 caLineEdit_1 diff --git a/opticsApp/op/ui/autoconvert/qxbpm.ui b/opticsApp/op/ui/autoconvert/qxbpm.ui new file mode 100644 index 0000000..c760c68 --- /dev/null +++ b/opticsApp/op/ui/autoconvert/qxbpm.ui @@ -0,0 +1,2154 @@ + + +MainWindow + + + + 848 + 482 + 555 + 370 + + + + + +QWidget#centralWidget {background: rgba(187, 193, 135, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + qxbpm.adl + + + ESimpleLabel::WidthAndHeight + + + + 2 + 3 + 200 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + last edited: 2007-Jan-30 (prj) + + + ESimpleLabel::WidthAndHeight + + + + 2 + 18 + 200 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Oxford Quad Beam Position Monitor + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 8 + 35 + 500 + 22 + + + + + + + 457 + 3 + 93 + 14 + + + + + 236 + 236 + 236 + + + + + 125 + 86 + 39 + + + + -configure + + + Menu + + + configure + + + qxbpm_config.adl + + + P=$(P),S=$(S) + + + false + + + + + + 227 + 4 + 200 + 14 + + + + $(P)enable + + + + 0 + 0 + 0 + + + + + 212 + 219 + 157 + + + + Column + + + caChoice::Static + + + + + + 319 + 81 + 220 + 220 + + + + + 0 + 216 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + caCartesianPlot::PlotLastNPoints + + + 100 + + + + 253 + 0 + 0 + + + + $(P)diff:x;$(P)diff:y + + + caCartesianPlot::User + + + -0.050000;0.050000 + + + caCartesianPlot::User + + + -0.100000;0.100000 + + + caCartesianPlot::Dots + + + caCartesianPlot::Dots + + + caCartesianPlot::Dots + + + caCartesianPlot::NoSymbol + + + caCartesianPlot::Rect + + + caCartesianPlot::Triangle + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + X + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 96 + 60 + 50 + 16 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Y + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 209 + 60 + 50 + 16 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + pos - ref (mm) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 318 + 60 + 220 + 20 + + + + + + caGraphics::Rectangle + + + + 26 + 275 + 280 + 45 + + + + + 88 + 52 + 15 + + + + Filled + + + + 88 + 52 + 15 + + + + Solid + + + + + caGraphics::Rectangle + + + + 32 + 276 + 12 + 11 + + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::Calc + + + !A&&B + + + $(P)current:ok + + + $(P)current:low + + + + + caGraphics::Rectangle + + + + 32 + 292 + 12 + 11 + + + + + 251 + 243 + 74 + + + + Filled + + + + 251 + 243 + 74 + + + + Solid + + + caGraphics::Calc + + + A=B + + + $(P)current:ok + + + $(P)current:low + + + + + caGraphics::Rectangle + + + + 32 + 308 + 12 + 11 + + + + + 0 + 216 + 0 + + + + Filled + + + + 0 + 216 + 0 + + + + Solid + + + caGraphics::Calc + + + A&&!B + + + $(P)current:ok + + + $(P)current:low + + + + + QFrame::NoFrame + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + caLabel::Calc + + + A=B + + + $(P)current:ok + + + $(P)current:low + + + diode currents OK + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 50 + 278 + 250 + 20 + + + + + + QFrame::NoFrame + + + + 0 + 216 + 0 + + + + + 0 + 216 + 0 + + + + caLabel::Calc + + + A&&!B + + + $(P)current:ok + + + $(P)current:low + + + diode currents OK + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 50 + 278 + 250 + 20 + + + + + + QFrame::NoFrame + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + caLabel::Calc + + + !A&&B + + + $(P)current:ok + + + $(P)current:low + + + diode currents too low + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 50 + 278 + 250 + 20 + + + + + + QFrame::NoFrame + + + + 238 + 182 + 43 + + + + + 238 + 182 + 43 + + + + caLabel::IfZero + + + $(P)current:ok + + + not all diodes above threshold + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 50 + 298 + 250 + 12 + + + + + + QFrame::NoFrame + + + + 0 + 216 + 0 + + + + + 0 + 216 + 0 + + + + caLabel::IfNotZero + + + $(P)current:ok + + + all diodes above threshold + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 50 + 298 + 250 + 12 + + + + + + QFrame::NoFrame + + + + 238 + 182 + 43 + + + + + 238 + 182 + 43 + + + + caLabel::IfZero + + + $(P)current:low + + + not all diodes below threshold + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 50 + 307 + 250 + 10 + + + + + + QFrame::NoFrame + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + caLabel::IfNotZero + + + $(P)current:low + + + all diodes below threshold + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 50 + 307 + 250 + 10 + + + + + + + 70 + 192 + 100 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)current:a + + + + 0 + 216 + 0 + + + + + 0 + 0 + 0 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + engr_notation + + + caLineEdit::Static + + + + + + 183 + 192 + 100 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)current:c + + + + 0 + 216 + 0 + + + + + 0 + 0 + 0 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + engr_notation + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + A + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 43 + 194 + 20 + 16 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + C + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 285 + 194 + 20 + 16 + + + + + + + 69 + 220 + 100 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)current:b + + + + 0 + 216 + 0 + + + + + 0 + 0 + 0 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + engr_notation + + + caLineEdit::Static + + + + + + 182 + 220 + 100 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)current:d + + + + 0 + 216 + 0 + + + + + 0 + 0 + 0 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + engr_notation + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + B + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 42 + 222 + 20 + 16 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + D + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 284 + 222 + 20 + 16 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + photodiode currents + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 77 + 174 + 200 + 16 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + A+B+C+D + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + + 99 + 252 + 20 + 16 + + + + + + + 126 + 250 + 100 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)current:total + + + + 0 + 216 + 0 + + + + + 0 + 0 + 0 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + engr_notation + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + pos + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 11 + 82 + 50 + 16 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + threshold: + + + ESimpleLabel::WidthAndHeight + + + + 318 + 309 + 76 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 402 + 308 + 76 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)current:low:raw + + + + 0 + 216 + 0 + + + + + 0 + 0 + 0 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + amplifier range (all photodiodes use same range) + + + ESimpleLabel::WidthAndHeight + + + + 13 + 330 + 400 + 12 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 14 + 342 + 530 + 18 + + + + $(P)gain + + + + 0 + 0 + 0 + + + + + 166 + 164 + 98 + + + + Column + + + caChoice::Static + + + + + + 158 + 140 + 18 + 18 + + + + + 255 + 255 + 255 + + + + + 139 + 130 + 57 + + + + Menu + + + calculation + + + userCalcOut.adl + + + P=$(P),C=diff:x + + + false + + + + + + 268 + 140 + 18 + 18 + + + + + 255 + 255 + 255 + + + + + 139 + 130 + 57 + + + + Menu + + + calculation + + + userCalcOut.adl + + + P=$(P),C=diff:y + + + false + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + diff + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 11 + 141 + 50 + 16 + + + + + + + 71 + 140 + 84 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)diff:x + + + + 0 + 216 + 0 + + + + + 0 + 0 + 0 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 184 + 140 + 84 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)diff:y + + + + 0 + 216 + 0 + + + + + 0 + 0 + 0 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + ref + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 11 + 116 + 50 + 16 + + + + + + + 71 + 114 + 100 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)ref:x + + + + 0 + 0 + 0 + + + + + 212 + 219 + 157 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 184 + 114 + 100 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)ref:y + + + + 0 + 0 + 0 + + + + + 212 + 219 + 157 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 71 + 81 + 100 + 24 + + + + caLineEdit::WidthAndHeight + + + $(P)pos:x + + + + 236 + 236 + 236 + + + + + 90 + 90 + 90 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 184 + 81 + 100 + 24 + + + + caLineEdit::WidthAndHeight + + + $(P)pos:y + + + + 236 + 236 + 236 + + + + + 90 + 90 + 90 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + caLabel_0 + caLabel_1 + caLabel_2 + caLabel_3 + caLabel_4 + caLabel_5 + caRectangle_0 + caRectangle_1 + caRectangle_2 + caRectangle_3 + caLabel_6 + caLabel_7 + caLabel_8 + caLabel_9 + caLabel_10 + caLabel_11 + caLabel_12 + caLabel_13 + caLabel_14 + caLabel_15 + caLabel_16 + caLabel_17 + caLabel_18 + caLabel_19 + caLabel_20 + caLabel_21 + caLabel_22 + caLabel_23 + caRelatedDisplay_0 + caChoice_0 + caCartesianPlot_0 + caLineEdit_0 + caLineEdit_1 + caLineEdit_2 + caLineEdit_3 + caLineEdit_4 + caLineEdit_5 + caChoice_1 + caRelatedDisplay_1 + caRelatedDisplay_2 + caLineEdit_6 + caLineEdit_7 + caTextEntry_0 + caTextEntry_1 + caLineEdit_8 + caLineEdit_9 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/qxbpm_calib.ui b/opticsApp/op/ui/autoconvert/qxbpm_calib.ui similarity index 58% rename from opticsApp/op/ui/qxbpm_calib.ui rename to opticsApp/op/ui/autoconvert/qxbpm_calib.ui index 19539d4..c951837 100644 --- a/opticsApp/op/ui/qxbpm_calib.ui +++ b/opticsApp/op/ui/autoconvert/qxbpm_calib.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -22,14 +110,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 2 - 3 - 200 - 10 - - 0 @@ -48,7 +128,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} qxbpm_calib.adl - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 2 + 3 + 200 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -58,14 +146,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 2 - 18 - 200 - 10 - - 0 @@ -84,7 +164,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} last edited: 2007-Feb-12 (prj) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 2 + 18 + 200 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -94,14 +182,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 8 - 35 - 400 - 20 - - 0 @@ -120,11 +200,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} Oxford Quad Beam Position Monitor - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 8 + 35 + 400 + 20 + + @@ -178,7 +266,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)settling @@ -223,14 +311,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 29 - 306 - 150 - 12 - - 0 @@ -249,7 +329,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} settling time after each gain change before offset is read. - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 29 + 306 + 150 + 12 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -265,7 +353,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)settling.EGU @@ -309,100 +397,90 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} caLineEdit::Static - + + + + 142 + 148 + 130 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)set_defaults + + + + 0 + 0 + 0 + + + + + 166 + 164 + 98 + + + + set defaults + + + 1 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + 135 144 - 146 - 30 + 144 + 28 - - - - 7 - 4 - 130 - 20 - - - - EPushButton::Height - - - $(P)set_defaults - - - - 0 - 0 - 0 - - - - - 166 - 164 - 98 - - - - set defaults - - - 1 - - - caMessageButton::Static - - - - - caGraphics::Rectangle - - - - 0 - 0 - 144 - 28 - - - - 8 - - - - 82 - 218 - 59 - - - - - 82 - 218 - 59 - - - - - 82 - 218 - 59 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)set_defaults - - + + 8 + + + + 82 + 218 + 59 + + + + + 82 + 218 + 59 + + + + + 82 + 218 + 59 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)set_defaults + @@ -448,6 +526,29 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + default calibration + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + 29 @@ -456,6 +557,11 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} 12 + + + + QFrame::NoFrame + 0 @@ -471,96 +577,58 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - default calibration + Set amplifier gains and other settings - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 32 + 99 + 350 + 16 + - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + to factory defaults. + + + ESimpleLabel::WidthAndHeight + 32 - 99 - 352 - 39 + 120 + 350 + 16 - - - QFrame::NoFrame - - - - 0 - 0 - 350 - 16 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Set amplifier gains and other settings - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 21 - 350 - 16 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - to factory defaults. - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + @@ -606,14 +674,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 29 - 191 - 150 - 12 - - 0 @@ -632,24 +692,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} amplifier offsets - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 29 - 216 - 350 - 16 + 191 + 150 + 12 + + + + QFrame::NoFrame + 0 @@ -668,7 +728,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} Discover amplifier offsets for each range. - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 29 + 216 + 350 + 16 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -678,14 +746,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 29 - 237 - 350 - 16 - - 0 @@ -704,221 +764,205 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} Make SURE that the X-ray beam is OFF. - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 29 + 237 + 350 + 16 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + + + + 204 + 265 + 130 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)set_offsets + + + + 0 + 0 + 0 + + + + + 166 + 164 + 98 + + + + set offsets + + + 1 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + 197 261 - 146 - 30 + 144 + 28 - - - - 7 - 4 - 130 - 20 - - - - EPushButton::Height - - - $(P)set_offsets - - - - 0 - 0 - 0 - - - - - 166 - 164 - 98 - - - - set offsets - - - 1 - - - caMessageButton::Static - - - - - caGraphics::Rectangle - - - - 0 - 0 - 144 - 28 - - - - 8 - - - - 82 - 218 - 59 - - - - - 82 - 218 - 59 - - - - - 82 - 218 - 59 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)set_offsets - - + + 8 + + + + 82 + 218 + 59 + + + + + 82 + 218 + 59 + + + + + 82 + 218 + 59 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)set_offsets + + + + + + 88 + 265 + 68 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)set_offsets + + + + 0 + 0 + 0 + + + + + 166 + 164 + 98 + + + + idle + + + 0 + + + caMessageButton::Static + - + + + caGraphics::Rectangle + 82 261 - 82 - 30 + 80 + 28 - - - - 6 - 4 - 68 - 20 - - - - EPushButton::Height - - - $(P)set_offsets - - - - 0 - 0 - 0 - - - - - 166 - 164 - 98 - - - - idle - - - 0 - - - caMessageButton::Static - - - - - caGraphics::Rectangle - - - - 0 - 0 - 80 - 28 - - - - 8 - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - caGraphics::IfZero - - - $(P)set_offsets - - + + 8 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + caGraphics::IfZero + + + $(P)set_offsets + caLabel_0 caLabel_1 caLabel_2 caLabel_3 caRectangle_0 - caFrame_0 caRectangle_1 caLabel_4 caLabel_5 caLabel_6 - caFrame_1 caRectangle_2 caLabel_7 caLabel_8 caLabel_9 caRectangle_3 - caFrame_2 caRectangle_4 - caFrame_3 caRelatedDisplay_0 caTextEntry_0 caLineEdit_0 diff --git a/opticsApp/op/ui/autoconvert/qxbpm_config.ui b/opticsApp/op/ui/autoconvert/qxbpm_config.ui new file mode 100644 index 0000000..152ad15 --- /dev/null +++ b/opticsApp/op/ui/autoconvert/qxbpm_config.ui @@ -0,0 +1,5987 @@ + + +MainWindow + + + + 661 + 527 + 776 + 438 + + + + + +QWidget#centralWidget {background: rgba(187, 193, 135, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + qxbpm_config.adl + + + ESimpleLabel::WidthAndHeight + + + + 2 + 3 + 200 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + last edited: 2007-Mar-01 (prj) + + + ESimpleLabel::WidthAndHeight + + + + 2 + 18 + 200 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Oxford Quad XBPM Configuration + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 231 + 6 + 400 + 22 + + + + + + + 674 + 8 + 93 + 14 + + + + + 236 + 236 + 236 + + + + + 125 + 86 + 39 + + + + -main screen + + + Menu + + + main screen + + + qxbpm.adl + + + P=$(P),S=$(S) + + + false + + + + + + 332 + 120 + 440 + 14 + + + + $(P)gain + + + + 0 + 0 + 0 + + + + + 166 + 164 + 98 + + + + Column + + + caChoice::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + the BPM controller needs ~3 sec to fill 100 sample buffer (~30 ms/sample) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 228 + 32 + 400 + 10 + + + + + + caGraphics::Rectangle + + + + 26 + 152 + 280 + 45 + + + + + 88 + 52 + 15 + + + + Filled + + + + 88 + 52 + 15 + + + + Solid + + + + + caGraphics::Rectangle + + + + 32 + 153 + 12 + 11 + + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::Calc + + + !A&&B + + + $(P)current:ok + + + $(P)current:low + + + + + caGraphics::Rectangle + + + + 32 + 169 + 12 + 11 + + + + + 251 + 243 + 74 + + + + Filled + + + + 251 + 243 + 74 + + + + Solid + + + caGraphics::Calc + + + A=B + + + $(P)current:ok + + + $(P)current:low + + + + + caGraphics::Rectangle + + + + 32 + 185 + 12 + 11 + + + + + 0 + 216 + 0 + + + + Filled + + + + 0 + 216 + 0 + + + + Solid + + + caGraphics::Calc + + + A&&!B + + + $(P)current:ok + + + $(P)current:low + + + + + QFrame::NoFrame + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + caLabel::Calc + + + A=B + + + $(P)current:ok + + + $(P)current:low + + + diode currents OK + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 50 + 155 + 250 + 20 + + + + + + QFrame::NoFrame + + + + 0 + 216 + 0 + + + + + 0 + 216 + 0 + + + + caLabel::Calc + + + A&&!B + + + $(P)current:ok + + + $(P)current:low + + + diode currents OK + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 50 + 155 + 250 + 20 + + + + + + QFrame::NoFrame + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + caLabel::Calc + + + !A&&B + + + $(P)current:ok + + + $(P)current:low + + + diode currents too low + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 50 + 155 + 250 + 20 + + + + + + QFrame::NoFrame + + + + 238 + 182 + 43 + + + + + 238 + 182 + 43 + + + + caLabel::IfZero + + + $(P)current:ok + + + not all diodes above threshold + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 50 + 175 + 250 + 12 + + + + + + QFrame::NoFrame + + + + 0 + 216 + 0 + + + + + 0 + 216 + 0 + + + + caLabel::IfNotZero + + + $(P)current:ok + + + all diodes above threshold + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 50 + 175 + 250 + 12 + + + + + + QFrame::NoFrame + + + + 238 + 182 + 43 + + + + + 238 + 182 + 43 + + + + caLabel::IfZero + + + $(P)current:low + + + not all diodes below threshold + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 50 + 184 + 250 + 10 + + + + + + QFrame::NoFrame + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + caLabel::IfNotZero + + + $(P)current:low + + + all diodes below threshold + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 50 + 184 + 250 + 10 + + + + + + + 20 + 308 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r1:A1 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 105 + 308 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r1:B1 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 190 + 308 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r1:C1 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 275 + 308 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r1:D1 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 20 + 329 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r2:A1 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 105 + 329 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r2:B1 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 190 + 329 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r2:C1 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 275 + 329 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r2:D1 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 20 + 350 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r3:A1 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 105 + 350 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r3:B1 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 190 + 350 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r3:C1 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 275 + 350 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r3:D1 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 20 + 371 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r4:A1 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 105 + 371 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r4:B1 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 190 + 371 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r4:C1 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 275 + 371 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r4:D1 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 20 + 392 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r5:A1 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 105 + 392 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r5:B1 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 190 + 392 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r5:C1 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 275 + 392 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r5:D1 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 20 + 413 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r6:A1 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 105 + 413 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r6:B1 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 190 + 413 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r6:C1 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 275 + 413 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r6:D1 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 425 + 308 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r1:A2 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 510 + 308 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r1:B2 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 595 + 308 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r1:C2 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 680 + 308 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r1:D2 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 425 + 329 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r2:A2 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 510 + 329 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r2:B2 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 595 + 329 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r2:C2 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 680 + 329 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r2:D2 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 425 + 350 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r3:A2 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 510 + 350 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r3:B2 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 595 + 350 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r3:C2 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 680 + 350 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r3:D2 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 425 + 371 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r4:A2 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 510 + 371 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r4:B2 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 595 + 371 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r4:C2 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 680 + 371 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r4:D2 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 425 + 392 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r5:A2 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 510 + 392 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r5:B2 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 595 + 392 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r5:C2 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 680 + 392 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r5:D2 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 425 + 413 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r6:A2 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 510 + 413 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r6:B2 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 595 + 413 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r6:C2 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 680 + 413 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)r6:D2 + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 360 + 308 + 60 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)gain.ZRST + + + + 0 + 0 + 0 + + + + + 187 + 193 + 135 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + compact + + + caLineEdit::Static + + + + + + 360 + 329 + 60 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)gain.ONST + + + + 0 + 0 + 0 + + + + + 187 + 193 + 135 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + compact + + + caLineEdit::Static + + + + + + 360 + 350 + 60 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)gain.TWST + + + + 0 + 0 + 0 + + + + + 187 + 193 + 135 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + compact + + + caLineEdit::Static + + + + + + 360 + 371 + 60 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)gain.THST + + + + 0 + 0 + 0 + + + + + 187 + 193 + 135 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + compact + + + caLineEdit::Static + + + + + + 360 + 392 + 60 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)gain.FRST + + + + 0 + 0 + 0 + + + + + 187 + 193 + 135 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + compact + + + caLineEdit::Static + + + + + + 360 + 413 + 60 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)gain.FVST + + + + 0 + 0 + 0 + + + + + 187 + 193 + 135 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + compact + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + diode A + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 20 + 298 + 80 + 12 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + diode B + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 105 + 298 + 80 + 12 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + diode C + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 190 + 298 + 80 + 12 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + diode D + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 275 + 298 + 80 + 12 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + cG : photodiode gain multiplier adjustment (float) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 37 + 280 + 300 + 14 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + cB : photodiode gain raw offset (integer) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 442 + 280 + 300 + 14 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + diode A + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 425 + 298 + 80 + 12 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + diode B + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 510 + 298 + 80 + 12 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + diode C + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 595 + 298 + 80 + 12 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + diode D + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 680 + 298 + 80 + 12 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + range + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 360 + 298 + 60 + 12 + + + + + + + 15 + 254 + 104 + 17 + + + + EPushButton::WidthAndHeight + + + $(P)init + + + + 255 + 255 + 255 + + + + + 88 + 52 + 15 + + + + initialize + + + 1 + + + caMessageButton::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + VxWorks debug level + + + ESimpleLabel::WidthAndHeight + + + + 18 + 221 + 100 + 12 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 18 + 232 + 100 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)debug + + + + 0 + 0 + 0 + + + + + 166 + 164 + 98 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 328 + 190 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)current:low:raw + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + raw diode signal lower threshold + + + ESimpleLabel::WidthAndHeight + + + + 413 + 191 + 300 + 14 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + raw diode values + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 328 + 151 + 104 + 12 + + + + + + + 433 + 149 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)current:a:raw + + + + 153 + 255 + 255 + + + + + 0 + 0 + 0 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 518 + 149 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)current:b:raw + + + + 153 + 255 + 255 + + + + + 0 + 0 + 0 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 603 + 149 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)current:c:raw + + + + 153 + 255 + 255 + + + + + 0 + 0 + 0 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 688 + 149 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)current:d:raw + + + + 153 + 255 + 255 + + + + + 0 + 0 + 0 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + diode current, A + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 327 + 170 + 104 + 12 + + + + + + + 432 + 168 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)current:a + + + + 153 + 255 + 255 + + + + + 0 + 0 + 0 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + exponential + + + caLineEdit::Static + + + + + + 517 + 168 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)current:b + + + + 153 + 255 + 255 + + + + + 0 + 0 + 0 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + exponential + + + caLineEdit::Static + + + + + + 602 + 168 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)current:c + + + + 153 + 255 + 255 + + + + + 0 + 0 + 0 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + exponential + + + caLineEdit::Static + + + + + + 687 + 168 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)current:d + + + + 153 + 255 + 255 + + + + + 0 + 0 + 0 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + exponential + + + caLineEdit::Static + + + + + + 664 + 259 + 93 + 14 + + + + + 236 + 236 + 236 + + + + + 125 + 86 + 39 + + + + - calibrate + + + Menu + + + main screen + + + qxbpm_calib.adl + + + P=$(P),S=$(S) + + + false + + + + + + 14 + 49 + 300 + 16 + + + + $(P)enable + + + + 0 + 0 + 0 + + + + + 166 + 164 + 98 + + + + Column + + + caChoice::Static + + + + + + 14 + 70 + 300 + 16 + + + + $(P)mode + + + + 0 + 0 + 0 + + + + + 166 + 164 + 98 + + + + Column + + + caChoice::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + # measurements for AVERAGE or WINDOW + + + ESimpleLabel::WidthAndHeight + + + + 14 + 91 + 300 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 14 + 102 + 300 + 40 + + + + $(P)buflen + + + + 0 + 0 + 0 + + + + + 166 + 164 + 98 + + + + 1.000000 + + + caSlider::Channel + + + caSlider::Channel + + + caSlider::Channel + + + 0.0 + + + 1.0 + + + Right + + + BottomScale + + + true + + + true + + + caSlider::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + RS232 poll period, s + + + ESimpleLabel::WidthAndHeight + + + + 334 + 49 + 130 + 12 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 334 + 60 + 130 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)period + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + device address + + + ESimpleLabel::WidthAndHeight + + + + 334 + 83 + 130 + 12 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 334 + 94 + 130 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)address + + + + 0 + 0 + 0 + + + + + 166 + 164 + 98 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + compact + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + RS232 port + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + + 476 + 49 + 90 + 12 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + RS232 out + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + + 476 + 66 + 90 + 12 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + RS232 in + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + + 476 + 83 + 90 + 12 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + RS232 status + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + + 476 + 100 + 90 + 12 + + + + + + + 571 + 100 + 200 + 12 + + + + caLineEdit::WidthAndHeight + + + $(S).SEVR + + + + 153 + 255 + 255 + + + + + 0 + 0 + 0 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + compact + + + caLineEdit::Static + + + + + + 571 + 83 + 200 + 12 + + + + caLineEdit::WidthAndHeight + + + $(S).AINP + + + + 153 + 255 + 255 + + + + + 0 + 0 + 0 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + compact + + + caLineEdit::Static + + + + + + 571 + 66 + 200 + 12 + + + + caLineEdit::WidthAndHeight + + + $(S).AOUT + + + + 153 + 255 + 255 + + + + + 0 + 0 + 0 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + compact + + + caLineEdit::Static + + + + + + 571 + 49 + 200 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)port + + + + 153 + 255 + 255 + + + + + 0 + 0 + 0 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + compact + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + photodiode current, I_n = cG * (raw_signal - cB) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 156 + 219 + 440 + 14 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + position_X = + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + + 156 + 238 + 100 + 14 + + + + + + + 261 + 238 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)GX + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + * ( I_B - I_D ) / ( I_B + I_D ) + + + ESimpleLabel::WidthAndHeight + + + + 346 + 238 + 250 + 14 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + position_Y = + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + + 156 + 258 + 100 + 14 + + + + + + + 261 + 258 + 80 + 17 + + + + caLineEdit::WidthAndHeight + + + $(P)GY + + + + 0 + 0 + 0 + + + + + 235 + 241 + 181 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + * ( I_A - I_C ) / ( I_A + I_C ) + + + ESimpleLabel::WidthAndHeight + + + + 346 + 258 + 250 + 14 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + 1/A/top + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 433 + 136 + 80 + 12 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + 2/B/left + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 518 + 136 + 80 + 12 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + 3/C/bottom + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 603 + 136 + 80 + 12 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + 4/D/right + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 688 + 136 + 80 + 12 + + + + caLabel_0 + caLabel_1 + caLabel_2 + caLabel_3 + caRectangle_0 + caRectangle_1 + caRectangle_2 + caRectangle_3 + caLabel_4 + caLabel_5 + caLabel_6 + caLabel_7 + caLabel_8 + caLabel_9 + caLabel_10 + caLabel_11 + caLabel_12 + caLabel_13 + caLabel_14 + caLabel_15 + caLabel_16 + caLabel_17 + caLabel_18 + caLabel_19 + caLabel_20 + caLabel_21 + caLabel_22 + caLabel_23 + caLabel_24 + caLabel_25 + caLabel_26 + caLabel_27 + caLabel_28 + caLabel_29 + caLabel_30 + caLabel_31 + caLabel_32 + caLabel_33 + caLabel_34 + caLabel_35 + caLabel_36 + caLabel_37 + caLabel_38 + caLabel_39 + caLabel_40 + caLabel_41 + caRelatedDisplay_0 + caChoice_0 + caTextEntry_0 + caTextEntry_1 + caTextEntry_2 + caTextEntry_3 + caTextEntry_4 + caTextEntry_5 + caTextEntry_6 + caTextEntry_7 + caTextEntry_8 + caTextEntry_9 + caTextEntry_10 + caTextEntry_11 + caTextEntry_12 + caTextEntry_13 + caTextEntry_14 + caTextEntry_15 + caTextEntry_16 + caTextEntry_17 + caTextEntry_18 + caTextEntry_19 + caTextEntry_20 + caTextEntry_21 + caTextEntry_22 + caTextEntry_23 + caTextEntry_24 + caTextEntry_25 + caTextEntry_26 + caTextEntry_27 + caTextEntry_28 + caTextEntry_29 + caTextEntry_30 + caTextEntry_31 + caTextEntry_32 + caTextEntry_33 + caTextEntry_34 + caTextEntry_35 + caTextEntry_36 + caTextEntry_37 + caTextEntry_38 + caTextEntry_39 + caTextEntry_40 + caTextEntry_41 + caTextEntry_42 + caTextEntry_43 + caTextEntry_44 + caTextEntry_45 + caTextEntry_46 + caTextEntry_47 + caLineEdit_0 + caLineEdit_1 + caLineEdit_2 + caLineEdit_3 + caLineEdit_4 + caLineEdit_5 + caMessageButton_0 + caTextEntry_48 + caTextEntry_49 + caLineEdit_6 + caLineEdit_7 + caLineEdit_8 + caLineEdit_9 + caLineEdit_10 + caLineEdit_11 + caLineEdit_12 + caLineEdit_13 + caRelatedDisplay_1 + caChoice_1 + caChoice_2 + caSlider_0 + caTextEntry_50 + caLineEdit_14 + caLineEdit_15 + caLineEdit_16 + caLineEdit_17 + caLineEdit_18 + caTextEntry_51 + caTextEntry_52 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/table.ui b/opticsApp/op/ui/autoconvert/table.ui similarity index 84% rename from opticsApp/op/ui/table.ui rename to opticsApp/op/ui/autoconvert/table.ui index 80ca12f..ec0c184 100644 --- a/opticsApp/op/ui/table.ui +++ b/opticsApp/op/ui/autoconvert/table.ui @@ -4,8 +4,8 @@ - 10 - 214 + 1119 + 494 230 390 @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -28,7 +116,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).DESC @@ -105,7 +193,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;230,1; + 230,1; @@ -184,14 +272,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 27 - 85 - 14 - - 0 @@ -210,7 +290,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Fixed point: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 27 + 85 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -226,7 +314,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).EZ @@ -326,7 +414,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).EX @@ -374,14 +462,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 90 - 63 - 60 - 18 - - 253 @@ -406,11 +486,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 90 + 63 + 60 + 18 + + @@ -422,7 +510,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).LEGU @@ -470,14 +558,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 10 - 102 - 20 - 20 - - 0 @@ -496,7 +576,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} X - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 102 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -512,7 +600,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).X @@ -697,7 +785,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)X:scanParms.GO @@ -736,7 +824,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -808,7 +896,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).AEGU @@ -856,14 +944,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 115 - 102 - 20 - 20 - - 0 @@ -882,7 +962,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} AX - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 115 + 102 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -898,7 +986,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).AX @@ -949,7 +1037,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).EAX @@ -1137,7 +1225,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)AX:scanParms.GO @@ -1176,7 +1264,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -1242,14 +1330,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 10 - 193 - 20 - 20 - - 0 @@ -1268,7 +1348,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Y - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 193 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1284,7 +1372,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).Y @@ -1335,7 +1423,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).EY @@ -1475,14 +1563,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 115 - 191 - 20 - 20 - - 0 @@ -1501,7 +1581,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} AY - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 115 + 191 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1517,7 +1605,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).AY @@ -1568,7 +1656,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).EAY @@ -1704,457 +1792,62 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(T).SET - - - - 5 - 228 - 217 - 26 - - - - - - 3 - 2 - 35 - 20 - - - - - 255 - 255 - 255 - - - - - 51 - 153 - 0 - - - - -Scan - - - Menu - - - Setup scan parameters - - - scanParmsCustom.adl - - - P=$(P),Q=$(Q)Y,NAME=$(Q)Y,DESC=$(Q)Y,EGU=$(T).LEGU - - - false - - - - - - 40 - 2 - 21 - 20 - - - - EPushButton::Height - - - $(P)$(Q)Y:scanParms.GO - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Go - - - 1 - - - caMessageButton::Static - - - - - - 63 - 2 - 35 - 20 - - - - EPushButton::Height - - - $(P)allstop.VAL - - - - 251 - 243 - 74 - - - - - 253 - 0 - 0 - - - - Kill - - - 1 - - - caMessageButton::Static - - - - - caGraphics::Rectangle - - - - 0 - 0 - 100 - 24 - - - - - 0 - 0 - 0 - - - - Filled - - - - 0 - 0 - 0 - - - - Solid - - - - - - 118 - 2 - 35 - 20 - - - - - 255 - 255 - 255 - - - - - 51 - 153 - 0 - - - - -Scan - - - Menu - - - Setup scan parameters - - - scanParmsCustom.adl - - - P=$(P),Q=$(Q)AY,NAME=$(Q)AY,DESC=$(Q)AY,EGU=$(T).AEGU - - - false - - - - - - 155 - 2 - 21 - 20 - - - - EPushButton::Height - - - $(P)$(Q)AY:scanParms.GO - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Go - - - 1 - - - caMessageButton::Static - - - - - - 178 - 2 - 35 - 20 - - - - EPushButton::Height - - - $(P)allstop.VAL - - - - 251 - 243 - 74 - - - - - 253 - 0 - 0 - - - - Kill - - - 1 - - - caMessageButton::Static - - - - - caGraphics::Rectangle - - - - 115 - 0 - 100 - 24 - - - - - 0 - 0 - 0 - - - - Filled - - - - 0 - 0 - 0 - - - - Solid - - - - + - 0 - 350 - 80 + 8 + 230 + 35 20 - - $(P)$(T).SET - - 0 - 0 - 0 + 255 + 255 + 255 - 115 - 223 - 255 + 51 + 153 + 0 + + -Scan + - Column + Menu - - caChoice::Static + + Setup scan parameters - - - - - 0 - 370 - 102 - 22 - + + scanParmsCustom.adl + + + P=$(P),Q=$(Q)Y,NAME=$(Q)Y,DESC=$(Q)Y,EGU=$(T).LEGU + + + false - - - - 0 - 0 - 50 - 20 - - - - EPushButton::Height - - - $(P)$(T).SYNC - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Sync - - - 1 - - - caMessageButton::Static - - - - - - 50 - 0 - 50 - 20 - - - - EPushButton::Height - - - $(P)$(T).INIT - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Init - - - 1 - - - caMessageButton::Static - - - + - 80 - 350 - 35 + 45 + 230 + 21 20 - EPushButton::Height + EPushButton::WidthAndHeight - $(P)$(T).ZERO + $(P)$(Q)Y:scanParms.GO @@ -2171,7 +1864,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - Zero + Go 1 @@ -2180,20 +1873,20 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caMessageButton::Static - + - 120 - 366 - 60 - 25 + 68 + 230 + 35 + 20 - EPushButton::Height + EPushButton::WidthAndHeight - $(P)$(Q):stop.VAL + $(P)allstop.VAL @@ -2210,7 +1903,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - Stop + Kill 1 @@ -2219,106 +1912,45 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caMessageButton::Static - + + + caGraphics::Rectangle + - 120 - 345 - 62 - 22 + 5 + 228 + 100 + 24 - - - QFrame::NoFrame - - - - 0 - 0 - 60 - 20 - - - - - 235 - 241 - 181 - - - - - 235 - 241 - 181 - - - - caLabel::IfNotZero - - - $(P)$(Q):done.VAL - - - Done - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 0 - 60 - 20 - - - - - 235 - 241 - 181 - - - - - 235 - 241 - 181 - - - - caLabel::IfZero - - - $(P)$(Q):done.VAL - - - Moving - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + - + - 185 - 370 - 40 + 123 + 230 + 35 20 @@ -2337,55 +1969,481 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - -More + -Scan Menu - More;Setup (SRI geometry);Setup (GEOCARS geometry);Setup (NEWPORT geometry);Setup (PNC geometry);Fixed points + Setup scan parameters - table_full.adl;table_setup_SRI.adl;table_setup_GEOCARS.adl;table_setup_NEWPORT.adl;table_setup_PNC.adl;table_fixedPoints.adl + scanParmsCustom.adl - P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z);P=$(P),Q=$(Q),T=$(T);P=$(P),Q=$(Q),T=$(T);P=$(P),Q=$(Q),T=$(T);P=$(P),Q=$(Q),T=$(T);P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z) + P=$(P),Q=$(Q)AY,NAME=$(Q)AY,DESC=$(Q)AY,EGU=$(T).AEGU - true;false;false;false;false;false + false - + - 185 - 350 - 40 + 160 + 230 + 21 20 + + EPushButton::WidthAndHeight + + + $(P)$(Q)AY:scanParms.GO + - 255 - 255 - 255 + 0 + 0 + 0 - 51 - 153 - 0 + 115 + 223 + 255 - -Less + Go - - Menu + + 1 - - Less + + caMessageButton::Static + + + + + + 183 + 230 + 35 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)allstop.VAL + + + + 251 + 243 + 74 + + + + + 253 + 0 + 0 + + + + Kill + + + 1 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + + + + 120 + 228 + 100 + 24 + + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + + + + 0 + 350 + 80 + 20 + + + + $(P)$(T).SET + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Column + + + caChoice::Static + + + + + + 0 + 370 + 50 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(T).SYNC + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Sync + + + 1 + + + caMessageButton::Static + + + + + + 50 + 370 + 50 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(T).INIT + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Init + + + 1 + + + caMessageButton::Static + + + + + + 80 + 350 + 35 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(T).ZERO + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Zero + + + 1 + + + caMessageButton::Static + + + + + + 120 + 366 + 60 + 25 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):stop.VAL + + + + 251 + 243 + 74 + + + + + 253 + 0 + 0 + + + + Stop + + + 1 + + + caMessageButton::Static + + + + + QFrame::NoFrame + + + + 235 + 241 + 181 + + + + + 235 + 241 + 181 + + + + caLabel::IfNotZero + + + $(P)$(Q):done.VAL + + + Done + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 120 + 345 + 60 + 20 + + + + + + QFrame::NoFrame + + + + 235 + 241 + 181 + + + + + 235 + 241 + 181 + + + + caLabel::IfZero + + + $(P)$(Q):done.VAL + + + Moving + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 120 + 345 + 60 + 20 + + + + + + + 185 + 370 + 40 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -More + + + Menu + + + More;Setup (SRI geometry);Setup (GEOCARS geometry);Setup (NEWPORT geometry);Setup (PNC geometry);Fixed points + + + table_full.adl;table_setup_SRI.adl;table_setup_GEOCARS.adl;table_setup_NEWPORT.adl;table_setup_PNC.adl;table_fixedPoints.adl + + + P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z);P=$(P),Q=$(Q),T=$(T);P=$(P),Q=$(Q),T=$(T);P=$(P),Q=$(Q),T=$(T);P=$(P),Q=$(Q),T=$(T);P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z) + + + true;false;false;false;false;false + + + + + + 185 + 350 + 40 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -Less + + + Menu + + + Less table_tiny.adl @@ -2401,14 +2459,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 10 - 282 - 20 - 20 - - 0 @@ -2427,7 +2477,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Z - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 282 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2443,7 +2501,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).Z @@ -2582,7 +2640,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)Z:scanParms.GO @@ -2621,7 +2679,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -2687,14 +2745,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 115 - 281 - 20 - 20 - - 0 @@ -2713,7 +2763,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} AZ - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 115 + 281 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2729,7 +2787,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).AZ @@ -2780,7 +2838,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).EAZ @@ -2968,7 +3026,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)AZ:scanParms.GO @@ -3007,7 +3065,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)allstop.VAL @@ -3079,7 +3137,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q):x_tweakVal.VAL @@ -3130,7 +3188,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):x_tweak.A @@ -3169,7 +3227,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):x_tweak.B @@ -3208,7 +3266,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q):ax_tweakVal.VAL @@ -3259,7 +3317,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):ax_tweak.A @@ -3298,7 +3356,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):ax_tweak.B @@ -3337,7 +3395,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q):y_tweakVal.VAL @@ -3388,7 +3446,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):y_tweak.A @@ -3427,7 +3485,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):y_tweak.B @@ -3466,7 +3524,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q):ay_tweakVal.VAL @@ -3517,7 +3575,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):ay_tweak.A @@ -3556,7 +3614,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):ay_tweak.B @@ -3595,7 +3653,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q):z_tweakVal.VAL @@ -3646,7 +3704,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):z_tweak.A @@ -3685,7 +3743,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):z_tweak.B @@ -3724,7 +3782,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q):az_tweakVal.VAL @@ -3775,7 +3833,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):az_tweak.A @@ -3814,7 +3872,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):az_tweak.B @@ -3876,7 +3934,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;232,1; + 232,1; caPolyLine_0 @@ -3899,11 +3957,8 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caRectangle_10 caRectangle_11 caRectangle_12 - caFrame_0 - caFrame_1 caLabel_6 caLabel_7 - caFrame_2 caLabel_8 caRectangle_13 caRectangle_14 diff --git a/opticsApp/op/ui/table_fixedPoints.ui b/opticsApp/op/ui/autoconvert/table_fixedPoints.ui similarity index 93% rename from opticsApp/op/ui/table_fixedPoints.ui rename to opticsApp/op/ui/autoconvert/table_fixedPoints.ui index b96b98e..b8a762f 100644 --- a/opticsApp/op/ui/table_fixedPoints.ui +++ b/opticsApp/op/ui/autoconvert/table_fixedPoints.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -22,14 +110,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 30 - 0 - 100 - 14 - - 45 @@ -47,19 +127,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 0 - 30 - 25 + 30 + 0 + 100 14 + + + + QFrame::NoFrame + 45 @@ -78,24 +158,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} USE - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 30 - 25 - 100 + 0 + 30 + 25 14 + + + + QFrame::NoFrame + 45 @@ -114,24 +194,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Description - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 200 + 30 25 - 60 + 100 14 + + + + QFrame::NoFrame + 45 @@ -150,24 +230,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Sy - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 265 + 200 25 60 14 + + + + QFrame::NoFrame + 45 @@ -186,24 +266,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Sz - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 135 + 265 25 60 14 + + + + QFrame::NoFrame + 45 @@ -222,11 +302,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Sx - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 135 + 25 + 60 + 14 + + @@ -238,7 +326,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)fpSelect @@ -277,7 +365,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp0Name @@ -328,7 +416,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp0.DO3 @@ -379,7 +467,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp0.DO4 @@ -430,7 +518,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).LEGU @@ -484,7 +572,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp0.DO2 @@ -535,7 +623,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)fpSelect @@ -574,7 +662,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp1Name @@ -625,7 +713,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp1.DO3 @@ -676,7 +764,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp1.DO4 @@ -727,7 +815,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp1.DO2 @@ -778,7 +866,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)fpSelect @@ -817,7 +905,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp2Name @@ -868,7 +956,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp2.DO3 @@ -919,7 +1007,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp2.DO4 @@ -970,7 +1058,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp2.DO2 @@ -1021,7 +1109,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)fpSelect @@ -1060,7 +1148,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp3Name @@ -1111,7 +1199,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp3.DO3 @@ -1162,7 +1250,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp3.DO4 @@ -1213,7 +1301,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp3.DO2 @@ -1264,7 +1352,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)fpSelect @@ -1303,7 +1391,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp4Name @@ -1354,7 +1442,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp4.DO3 @@ -1405,7 +1493,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp4.DO4 @@ -1456,7 +1544,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp4.DO2 @@ -1507,7 +1595,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)fpSelect @@ -1546,7 +1634,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp5Name @@ -1597,7 +1685,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp5.DO3 @@ -1648,7 +1736,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp5.DO4 @@ -1699,7 +1787,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp5.DO2 @@ -1750,7 +1838,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)fpSelect @@ -1789,7 +1877,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp6Name @@ -1840,7 +1928,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp6.DO3 @@ -1891,7 +1979,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp6.DO4 @@ -1942,7 +2030,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp6.DO2 @@ -1993,7 +2081,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)fpSelect @@ -2032,7 +2120,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp7Name @@ -2083,7 +2171,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp7.DO3 @@ -2134,7 +2222,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp7.DO4 @@ -2185,7 +2273,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp7.DO2 @@ -2236,7 +2324,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)fpSelect @@ -2275,7 +2363,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp8Name @@ -2326,7 +2414,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp8.DO3 @@ -2377,7 +2465,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp8.DO4 @@ -2428,7 +2516,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp8.DO2 @@ -2479,7 +2567,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q)fpSelect @@ -2518,7 +2606,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp9Name @@ -2569,7 +2657,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp9.DO3 @@ -2620,7 +2708,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp9.DO4 @@ -2671,7 +2759,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fp9.DO2 @@ -2712,118 +2800,100 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} decimal - + - 0 + 1 0 - 332 - 25 - - - - - - 1 - 0 - 328 - 20 - - - - caLineEdit::Height - - - $(P)$(T).DESC - - - - 10 - 0 - 184 - - - - - 255 - 255 - 255 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - - 0 - 20 - 329 - 3 - - - - 3 - - - - 10 - 0 - 184 - - - - Filled - - - - 10 - 0 - 184 - - - - Solid - - - 1,1;327,1; - - - - - - QFrame::NoFrame + 328 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).DESC + + + + 10 + 0 + 184 + + + + + 255 + 255 + 255 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + 1.0 + + + decimal + + + caLineEdit::Static + + + - 5 - 250 - 320 - 14 + 0 + 20 + 329 + 3 + + 3 + + + + 10 + 0 + 184 + + + + Filled + + + + 10 + 0 + 184 + + + + Solid + + + 327,1; + + + + + QFrame::NoFrame + 45 @@ -2842,7 +2912,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} NOTE: after changing a description, you must - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 250 + 320 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2852,14 +2930,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 265 - 320 - 14 - - 45 @@ -2878,7 +2948,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} close and re-open any display containing the - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 265 + 320 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2888,14 +2966,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 5 - 280 - 120 - 14 - - 45 @@ -2914,7 +2984,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} fixed-point menu: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 5 + 280 + 120 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3419,7 +3497,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLabel_4 caLabel_5 caPolyLine_0 - caFrame_0 caLabel_6 caLabel_7 caLabel_8 diff --git a/opticsApp/op/ui/table_fixedPoints_refresh.ui b/opticsApp/op/ui/autoconvert/table_fixedPoints_refresh.ui similarity index 51% rename from opticsApp/op/ui/table_fixedPoints_refresh.ui rename to opticsApp/op/ui/autoconvert/table_fixedPoints_refresh.ui index 7202bfa..0ac4e2b 100644 --- a/opticsApp/op/ui/table_fixedPoints_refresh.ui +++ b/opticsApp/op/ui/autoconvert/table_fixedPoints_refresh.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + diff --git a/opticsApp/op/ui/table_full.ui b/opticsApp/op/ui/autoconvert/table_full.ui similarity index 89% rename from opticsApp/op/ui/table_full.ui rename to opticsApp/op/ui/autoconvert/table_full.ui index 6767418..6d193ed 100644 --- a/opticsApp/op/ui/table_full.ui +++ b/opticsApp/op/ui/autoconvert/table_full.ui @@ -4,8 +4,8 @@ - 100 - 484 + 964 + 512 490 400 @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -58,14 +146,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 245 - 5 - 245 - 15 - - 3 @@ -87,11 +167,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} ($(P)$(T)) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 245 + 5 + 245 + 15 + + @@ -103,7 +191,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).DESC @@ -157,7 +245,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).DESC @@ -231,7 +319,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;487,1; + 487,1; @@ -244,7 +332,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).HLZ @@ -298,7 +386,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).HLY @@ -352,7 +440,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).HLX @@ -406,7 +494,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).EZ @@ -506,7 +594,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).EY @@ -606,7 +694,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).EX @@ -739,7 +827,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(T).INIT @@ -781,7 +869,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(T).SYNC @@ -823,7 +911,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(T).ZERO @@ -862,7 +950,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):stop.VAL @@ -901,7 +989,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).X @@ -946,14 +1034,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 10 - 120 - 20 - 20 - - 0 @@ -972,7 +1052,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} X - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 120 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -988,7 +1076,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).LLX @@ -1042,7 +1130,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).Y @@ -1087,14 +1175,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 10 - 210 - 20 - 20 - - 0 @@ -1113,7 +1193,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Y - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 210 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1129,7 +1217,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q):y_tweakVal.VAL @@ -1180,7 +1268,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):y_tweak.A @@ -1219,7 +1307,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):y_tweak.B @@ -1258,7 +1346,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).LLY @@ -1312,7 +1400,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).Z @@ -1357,14 +1445,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 10 - 300 - 20 - 20 - - 0 @@ -1383,7 +1463,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Z - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 300 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1399,7 +1487,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q):z_tweakVal.VAL @@ -1450,7 +1538,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):z_tweak.A @@ -1489,7 +1577,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):z_tweak.B @@ -1528,7 +1616,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).LLZ @@ -1576,14 +1664,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 208 - 55 - 65 - 20 - - 253 @@ -1608,24 +1688,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 248 + 208 55 - 230 + 65 20 + + + + QFrame::NoFrame + 0 @@ -1644,11 +1724,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Motors - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 248 + 55 + 230 + 20 + + @@ -1660,7 +1748,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).LEGU @@ -1708,14 +1796,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 10 - 55 - 115 - 20 - - 0 @@ -1734,11 +1814,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Translate - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 10 + 55 + 115 + 20 + + @@ -1777,7 +1865,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;1,272; + 1,272; @@ -1817,7 +1905,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;1,272; + 1,272; @@ -1853,7 +1941,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;487,1; + 487,1; @@ -1998,14 +2086,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 115 - 120 - 20 - 20 - - 0 @@ -2024,7 +2104,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} AX - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 115 + 120 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2040,7 +2128,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):ax_tweak.B @@ -2073,14 +2161,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 115 - 210 - 20 - 20 - - 0 @@ -2099,7 +2179,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} AY - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 115 + 210 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2115,7 +2203,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):ay_tweak.B @@ -2148,14 +2236,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 115 - 300 - 20 - 20 - - 0 @@ -2174,7 +2254,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} AZ - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 115 + 300 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2190,7 +2278,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):az_tweak.B @@ -2229,7 +2317,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).AEGU @@ -2277,14 +2365,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 115 - 55 - 125 - 20 - - 0 @@ -2303,11 +2383,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Rotate - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 115 + 55 + 125 + 20 + + @@ -2346,7 +2434,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;1,273; + 1,273; @@ -2359,7 +2447,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).HLAX @@ -2413,7 +2501,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).EAX @@ -2467,7 +2555,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).AX @@ -2518,7 +2606,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).LLAX @@ -2572,7 +2660,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).HLAY @@ -2626,7 +2714,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).EAY @@ -2680,7 +2768,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).AY @@ -2731,7 +2819,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).LLAY @@ -2785,7 +2873,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).HLAZ @@ -2839,7 +2927,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).EAZ @@ -2893,7 +2981,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).AZ @@ -2944,7 +3032,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).LLAZ @@ -3274,7 +3362,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q):az_tweakVal.VAL @@ -3325,7 +3413,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q):ay_tweakVal.VAL @@ -3376,7 +3464,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q):ax_tweakVal.VAL @@ -3427,7 +3515,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):ax_tweak.A @@ -3466,7 +3554,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):ay_tweak.A @@ -3505,7 +3593,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):az_tweak.A @@ -3534,187 +3622,17 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caMessageButton::Static - + 4 86 - 226 - 274 + 224 + 2 - - - - 0 - 0 - 224 - 2 - - - - 2 - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - 1,1;223,1; - - - - - - 0 - 90 - 223 - 2 - - - - 2 - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - 1,1;222,1; - - - - - - 0 - 180 - 223 - 2 - - - - 2 - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - 1,1;222,1; - - - - - - 0 - 270 - 225 - 2 - - - - 2 - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - 1,1;224,1; - - - - - - QFrame::NoFrame - - - - 248 - 300 - 30 - 20 - + + 2 @@ -3730,28 +3648,32 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 0 - - M1Y + + + 0 + 0 + 0 + - - ESimpleLabel::Height + + Solid - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + 223,1; - - - QFrame::NoFrame - + - 248 - 210 - 30 - 20 + 4 + 176 + 223 + 2 + + 2 + 0 @@ -3766,28 +3688,176 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 0 - - M0Y + + + 0 + 0 + 0 + - - ESimpleLabel::Height + + Solid - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + 222,1; - - - QFrame::NoFrame - + - 248 - 120 - 30 - 20 + 4 + 266 + 223 + 2 + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 222,1; + + + + + + 4 + 356 + 225 + 2 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 224,1; + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + M1Y + + + ESimpleLabel::WidthAndHeight + + + + 248 + 300 + 30 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + M0Y + + + ESimpleLabel::WidthAndHeight + + + + 248 + 210 + 30 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 0 @@ -3806,7 +3876,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} M0X - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 248 + 120 + 30 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3822,7 +3900,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(M1Y).TWR @@ -3990,7 +4068,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M2X).EGU @@ -4044,7 +4122,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M0X).EGU @@ -4125,7 +4203,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;1,271; + 1,271; @@ -4138,7 +4216,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M0X).HLM @@ -4192,7 +4270,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M0X).RBV @@ -4246,7 +4324,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M0X).VAL @@ -4297,7 +4375,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M0X).LLM @@ -4351,7 +4429,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M0Y).HLM @@ -4405,7 +4483,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M0Y).RBV @@ -4459,7 +4537,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M0Y).VAL @@ -4510,7 +4588,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M0Y).LLM @@ -4564,7 +4642,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M1Y).HLM @@ -4618,7 +4696,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M1Y).RBV @@ -4672,7 +4750,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M1Y).VAL @@ -4723,7 +4801,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M1Y).LLM @@ -4777,7 +4855,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(M0X).TWR @@ -4819,7 +4897,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(M0Y).TWR @@ -4861,7 +4939,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M1Y).TWV @@ -4912,7 +4990,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M0Y).TWV @@ -4963,7 +5041,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M0X).TWV @@ -5014,7 +5092,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(M0X).TWF @@ -5056,7 +5134,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(M0Y).TWF @@ -5098,7 +5176,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(M1Y).TWF @@ -5398,14 +5476,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 368 - 300 - 30 - 20 - - 0 @@ -5424,7 +5494,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} M2Z - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 368 + 300 + 30 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -5434,14 +5512,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 368 - 210 - 30 - 20 - - 0 @@ -5460,7 +5530,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} M2Y - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 368 + 210 + 30 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -5470,14 +5548,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 368 - 120 - 30 - 20 - - 0 @@ -5496,7 +5566,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} M2X - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 368 + 120 + 30 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -5512,7 +5590,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(M2Z).TWR @@ -5707,7 +5785,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;1,271; + 1,271; @@ -5720,7 +5798,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M2X).HLM @@ -5774,7 +5852,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M2X).RBV @@ -5828,7 +5906,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M2X).VAL @@ -5879,7 +5957,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M2X).LLM @@ -5933,7 +6011,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M2Y).HLM @@ -5987,7 +6065,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M2Y).RBV @@ -6041,7 +6119,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M2Y).VAL @@ -6092,7 +6170,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M2Y).LLM @@ -6146,7 +6224,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M2Z).HLM @@ -6200,7 +6278,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M2Z).RBV @@ -6254,7 +6332,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M2Z).VAL @@ -6305,7 +6383,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M2Z).LLM @@ -6359,7 +6437,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(M2X).TWR @@ -6401,7 +6479,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(M2Y).TWR @@ -6443,7 +6521,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M2X).TWV @@ -6494,7 +6572,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M2Y).TWV @@ -6545,7 +6623,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(M2Z).TWV @@ -6586,197 +6664,187 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} decimal - + 460 153 - 22 - 202 - - - - - - 0 - 0 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(M2X).TWF - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - > - - - 1 - - - 0 - - - caMessageButton::Static - - - - - - 0 - 90 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(M2Y).TWF - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - > - - - 1 - - - 0 - - - caMessageButton::Static - - - - - - 0 - 180 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(M2Z).TWF - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - > - - - 1 - - - 0 - - - caMessageButton::Static - - - - - - caGraphics::Rectangle - - - - 470 - 90 - 10 - 16 + 20 + 20 - - 2 + + EPushButton::WidthAndHeight + + + $(P)$(M2X).TWF - 253 + 0 0 0 - - Filled - - + - 253 - 0 - 0 + 115 + 223 + 255 - - Solid + + > - - caGraphics::IfNotZero + + 1 - - $(P)$(M2X).HLS + + 0 - - - - caGraphics::Rectangle + + caMessageButton::Static + + - 470 - 180 - 10 - 16 + 460 + 243 + 20 + 20 - + + EPushButton::WidthAndHeight + + + $(P)$(M2Y).TWF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + > + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 460 + 333 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(M2Z).TWF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + > + + + 1 + + + 0 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + + + + 470 + 90 + 10 + 16 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(M2X).HLS + + + + + caGraphics::Rectangle + + + + 470 + 180 + 10 + 16 + + + 2 @@ -7023,7 +7091,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;238,1; + 238,1; @@ -7063,7 +7131,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;239,1; + 239,1; @@ -7103,7 +7171,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;239,1; + 239,1; @@ -7143,152 +7211,132 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;238,1; + 238,1; - + 482 85 - 4 - 275 - - - - - - 0 - 0 - 2 - 273 - - - - 2 - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - 1,1;1,272; - - - - + 2 + 273 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 1,272; + + + + + QFrame::NoFrame + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + caLabel::IfZero + + + $(P)$(Q):done.VAL + + + Moving + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + 220 365 - 77 - 22 + 75 + 20 + + + + + + QFrame::NoFrame + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + caLabel::IfNotZero + + + $(P)$(Q):done.VAL + + + Done + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 220 + 365 + 75 + 20 - - - QFrame::NoFrame - - - - 0 - 0 - 75 - 20 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - caLabel::IfZero - - - $(P)$(Q):done.VAL - - - Moving - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 0 - 75 - 20 - - - - - 115 - 255 - 107 - - - - - 115 - 255 - 107 - - - - caLabel::IfNotZero - - - $(P)$(Q):done.VAL - - - Done - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - @@ -7842,244 +7890,224 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} true - + + + + 43 + 155 + 44 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):x_tweakVal.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 87 + 153 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):x_tweak.A + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + > + + + 1 + + + caMessageButton::Static + + + 23 153 - 86 - 22 + 20 + 20 - - - - 20 - 2 - 44 - 18 - - - - caLineEdit::Height - - - $(P)$(Q):x_tweakVal.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 64 - 0 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(Q):x_tweak.A - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - > - - - 1 - - - caMessageButton::Static - - - - - - 0 - 0 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(Q):x_tweak.B - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - < - - - 1 - - - caMessageButton::Static - - - - + + EPushButton::WidthAndHeight + + + $(P)$(Q):x_tweak.B + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + < + + + 1 + + + caMessageButton::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Record version: + + + ESimpleLabel::WidthAndHeight + 0 387 - 122 - 14 + 90 + 10 - - - QFrame::NoFrame - - - - 0 - 0 - 90 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Record version: - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 90 - 0 - 30 - 12 - - - - caLineEdit::Height - - - $(P)$(T).VERS - - - - 10 - 0 - 184 - - - - - 200 - 200 - 200 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 90 + 387 + 30 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).VERS + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + @@ -8157,14 +8185,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 108 - 34 - 85 - 14 - - 0 @@ -8183,11 +8203,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Fixed point: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 108 + 34 + 85 + 14 + + caRectangle_0 caLabel_0 @@ -8222,7 +8250,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caPolyLine_6 caPolyLine_7 caPolyLine_8 - caFrame_0 caLabel_11 caLabel_12 caLabel_13 @@ -8243,7 +8270,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caRectangle_23 caRectangle_24 caPolyLine_10 - caFrame_1 caRectangle_25 caRectangle_26 caRectangle_27 @@ -8255,13 +8281,9 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caPolyLine_13 caPolyLine_14 caPolyLine_15 - caFrame_2 caLabel_17 caLabel_18 - caFrame_3 - caFrame_4 caLabel_19 - caFrame_5 caLabel_20 caLineEdit_0 caTextEntry_0 diff --git a/opticsApp/op/ui/table_full_refresh.ui b/opticsApp/op/ui/autoconvert/table_full_refresh.ui similarity index 65% rename from opticsApp/op/ui/table_full_refresh.ui rename to opticsApp/op/ui/autoconvert/table_full_refresh.ui index 15bbeba..6b3d0f0 100644 --- a/opticsApp/op/ui/table_full_refresh.ui +++ b/opticsApp/op/ui/autoconvert/table_full_refresh.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -28,7 +116,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).DESC diff --git a/opticsApp/op/ui/autoconvert/table_full_soft.ui b/opticsApp/op/ui/autoconvert/table_full_soft.ui new file mode 100644 index 0000000..34eb96d --- /dev/null +++ b/opticsApp/op/ui/autoconvert/table_full_soft.ui @@ -0,0 +1,8684 @@ + + +MainWindow + + + + 950 + 512 + 490 + 400 + + + + + +QWidget#centralWidget {background: rgba(200, 200, 200, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + caGraphics::Rectangle + + + + 0 + 0 + 490 + 27 + + + + 3 + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + QFrame::NoFrame + + + 3 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + ($(P)$(T)) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 245 + 5 + 245 + 15 + + + + + + + 405 + 519 + 285 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).DESC + + + + 10 + 0 + 184 + + + + + 255 + 255 + 255 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 0 + 0 + 245 + 27 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).DESC + + + + 10 + 0 + 184 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 0 + 27 + 489 + 3 + + + + 3 + + + + 10 + 0 + 184 + + + + Filled + + + + 10 + 0 + 184 + + + + Solid + + + 487,1; + + + + + + 25 + 270 + 80 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):z.HLM + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 25 + 180 + 80 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):y.HLM + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 25 + 90 + 80 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):x.HLM + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 25 + 282 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):z.RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + caGraphics::Rectangle + + + + 25 + 280 + 80 + 18 + + + + 2 + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + + 25 + 192 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):y.RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + caGraphics::Rectangle + + + + 25 + 190 + 80 + 18 + + + + 2 + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + + 25 + 102 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):x.RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + caGraphics::Rectangle + + + + 25 + 100 + 80 + 18 + + + + 2 + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + + 5 + 365 + 83 + 20 + + + + $(P)$(T).SET + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Column + + + caChoice::Static + + + + + + 180 + 365 + 40 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):init + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Init + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 140 + 365 + 40 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):sync + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Sync + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 90 + 365 + 40 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):zero + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Zero + + + 1 + + + caMessageButton::Static + + + + + + 305 + 365 + 115 + 35 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):stop.VAL + + + + 251 + 243 + 74 + + + + + 253 + 0 + 0 + + + + Stop Table + + + 1 + + + caMessageButton::Static + + + + + + 25 + 120 + 80 + 22 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):x.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + X + + + ESimpleLabel::WidthAndHeight + + + + 10 + 120 + 20 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 25 + 143 + 80 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):x.LLM + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 25 + 210 + 80 + 22 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):y.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Y + + + ESimpleLabel::WidthAndHeight + + + + 10 + 210 + 20 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 43 + 245 + 44 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):y.TWV + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 87 + 243 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):y.TWF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + > + + + 1 + + + caMessageButton::Static + + + + + + 23 + 243 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):y.TWR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + < + + + 1 + + + caMessageButton::Static + + + + + + 25 + 233 + 80 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):y.LLM + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 25 + 300 + 80 + 22 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):z.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Z + + + ESimpleLabel::WidthAndHeight + + + + 10 + 300 + 20 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 43 + 335 + 44 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):z.TWV + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 87 + 333 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):z.TWF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + > + + + 1 + + + caMessageButton::Static + + + + + + 23 + 333 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):z.TWR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + < + + + 1 + + + caMessageButton::Static + + + + + + 25 + 323 + 80 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):z.LLM + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + caLabel::IfNotZero + + + $(P)$(T).LVIO + + + Limit + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 208 + 55 + 65 + 20 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Motors + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 248 + 55 + 230 + 20 + + + + + + + 10 + 71 + 95 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).LEGU + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Translate + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 10 + 55 + 115 + 20 + + + + + + + 5 + 85 + 2 + 273 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 1,272; + + + + + + 110 + 85 + 2 + 273 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 1,272; + + + + + + 0 + 52 + 488 + 2 + + + + 2 + + + + 10 + 0 + 184 + + + + Filled + + + + 10 + 0 + 184 + + + + Solid + + + 487,1; + + + + + caGraphics::Rectangle + + + + 23 + 98 + 84 + 22 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + caGraphics::Rectangle + + + + 23 + 188 + 84 + 22 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + caGraphics::Rectangle + + + + 23 + 278 + 84 + 22 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + AX + + + ESimpleLabel::WidthAndHeight + + + + 115 + 120 + 20 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 138 + 153 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):ax.TWR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + < + + + 1 + + + caMessageButton::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + AY + + + ESimpleLabel::WidthAndHeight + + + + 115 + 210 + 20 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 138 + 243 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):ay.TWR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + < + + + 1 + + + caMessageButton::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + AZ + + + ESimpleLabel::WidthAndHeight + + + + 115 + 300 + 20 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 138 + 333 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):az.TWR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + < + + + 1 + + + caMessageButton::Static + + + + + + 115 + 71 + 105 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).AEGU + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Rotate + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 115 + 55 + 125 + 20 + + + + + + + 225 + 85 + 2 + 274 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 1,273; + + + + + + 140 + 90 + 80 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):ax.HLM + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 140 + 102 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):ax.RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 140 + 120 + 80 + 22 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):ax.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 140 + 143 + 80 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):ax.LLM + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 140 + 180 + 80 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):ay.HLM + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 140 + 192 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):ay.RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 140 + 210 + 80 + 22 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):ay.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 140 + 233 + 80 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):ay.LLM + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 140 + 270 + 80 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):az.HLM + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 140 + 282 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):az.RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 140 + 300 + 80 + 22 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):az.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 140 + 323 + 80 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):az.LLM + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + caGraphics::Rectangle + + + + 140 + 100 + 80 + 18 + + + + 2 + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + caGraphics::Rectangle + + + + 140 + 190 + 80 + 18 + + + + 2 + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + caGraphics::Rectangle + + + + 140 + 280 + 80 + 18 + + + + 2 + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + caGraphics::Rectangle + + + + 138 + 98 + 84 + 22 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + caGraphics::Rectangle + + + + 138 + 188 + 84 + 22 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + caGraphics::Rectangle + + + + 138 + 278 + 84 + 22 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + + 158 + 335 + 44 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):az.TWV + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 158 + 245 + 44 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):ay.TWV + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 158 + 155 + 44 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):ax.TWV + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 202 + 153 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):ax.TWF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + > + + + 1 + + + caMessageButton::Static + + + + + + 202 + 243 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):ay.TWF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + > + + + 1 + + + caMessageButton::Static + + + + + + 202 + 333 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):az.TWF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + > + + + 1 + + + caMessageButton::Static + + + + + + 4 + 86 + 224 + 2 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 223,1; + + + + + + 4 + 176 + 223 + 2 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 222,1; + + + + + + 4 + 266 + 223 + 2 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 222,1; + + + + + + 4 + 356 + 225 + 2 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 224,1; + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + M1Y + + + ESimpleLabel::WidthAndHeight + + + + 248 + 300 + 30 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + M0Y + + + ESimpleLabel::WidthAndHeight + + + + 248 + 210 + 30 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + M0X + + + ESimpleLabel::WidthAndHeight + + + + 248 + 120 + 30 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 280 + 333 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(M1Y).TWR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + < + + + 1 + + + 0 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + + + + 280 + 270 + 10 + 16 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(M1Y).LLS + + + + + caGraphics::Rectangle + + + + 280 + 180 + 10 + 16 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(M0Y).LLS + + + + + caGraphics::Rectangle + + + + 280 + 90 + 10 + 16 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(M0X).LLS + + + + + + 370 + 71 + 105 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M2X).EGU + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 248 + 71 + 115 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M0X).EGU + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 246 + 85 + 2 + 272 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 1,271; + + + + + + 288 + 90 + 64 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M0X).HLM + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 280 + 102 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M0X).RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 280 + 120 + 80 + 22 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M0X).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 288 + 143 + 64 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M0X).LLM + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 288 + 180 + 64 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M0Y).HLM + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 280 + 192 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M0Y).RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 280 + 210 + 80 + 22 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M0Y).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 288 + 233 + 64 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M0Y).LLM + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 288 + 270 + 64 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M1Y).HLM + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 280 + 282 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M1Y).RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 280 + 300 + 80 + 22 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M1Y).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 288 + 323 + 64 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M1Y).LLM + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 280 + 153 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(M0X).TWR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + < + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 280 + 243 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(M0Y).TWR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + < + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 300 + 335 + 40 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M1Y).TWV + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 300 + 245 + 40 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M0Y).TWV + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 300 + 155 + 40 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M0X).TWV + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 340 + 153 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(M0X).TWF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + > + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 340 + 243 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(M0Y).TWF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + > + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 340 + 333 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(M1Y).TWF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + > + + + 1 + + + 0 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + + + + 350 + 90 + 10 + 16 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(M0X).HLS + + + + + caGraphics::Rectangle + + + + 350 + 180 + 10 + 16 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(M0Y).HLS + + + + + caGraphics::Rectangle + + + + 350 + 270 + 10 + 16 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(M1Y).HLS + + + + + caGraphics::Rectangle + + + + 278 + 88 + 84 + 87 + + + + 2 + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(M0X).DMOV + + + + + caGraphics::Rectangle + + + + 278 + 178 + 84 + 87 + + + + 2 + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(M0Y).DMOV + + + + + caGraphics::Rectangle + + + + 278 + 268 + 84 + 87 + + + + 2 + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(M1Y).DMOV + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + M2Z + + + ESimpleLabel::WidthAndHeight + + + + 368 + 300 + 30 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + M2Y + + + ESimpleLabel::WidthAndHeight + + + + 368 + 210 + 30 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + M2X + + + ESimpleLabel::WidthAndHeight + + + + 368 + 120 + 30 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 400 + 333 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(M2Z).TWR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + < + + + 1 + + + 0 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + + + + 400 + 270 + 10 + 16 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(M2Z).LLS + + + + + caGraphics::Rectangle + + + + 400 + 180 + 10 + 16 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(M2Y).LLS + + + + + caGraphics::Rectangle + + + + 400 + 90 + 10 + 16 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(M2X).LLS + + + + + + 364 + 86 + 2 + 272 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 1,271; + + + + + + 408 + 90 + 64 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M2X).HLM + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 400 + 102 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M2X).RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 400 + 120 + 80 + 22 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M2X).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 408 + 143 + 64 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M2X).LLM + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 408 + 180 + 64 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M2Y).HLM + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 400 + 192 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M2Y).RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 400 + 210 + 80 + 22 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M2Y).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 408 + 233 + 64 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M2Y).LLM + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 408 + 270 + 64 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M2Z).HLM + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 400 + 282 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M2Z).RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 400 + 300 + 80 + 22 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M2Z).VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 408 + 323 + 64 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M2Z).LLM + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 400 + 153 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(M2X).TWR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + < + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 400 + 243 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(M2Y).TWR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + < + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 420 + 155 + 40 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M2X).TWV + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 420 + 245 + 40 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M2Y).TWV + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 420 + 335 + 40 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(M2Z).TWV + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 460 + 153 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(M2X).TWF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + > + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 460 + 243 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(M2Y).TWF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + > + + + 1 + + + 0 + + + caMessageButton::Static + + + + + + 460 + 333 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(M2Z).TWF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + > + + + 1 + + + 0 + + + caMessageButton::Static + + + + + caGraphics::Rectangle + + + + 470 + 90 + 10 + 16 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(M2X).HLS + + + + + caGraphics::Rectangle + + + + 470 + 180 + 10 + 16 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(M2Y).HLS + + + + + caGraphics::Rectangle + + + + 470 + 270 + 10 + 16 + + + + 2 + + + + 253 + 0 + 0 + + + + Filled + + + + 253 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(M2Z).HLS + + + + + caGraphics::Rectangle + + + + 398 + 88 + 84 + 87 + + + + 2 + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(M2X).DMOV + + + + + caGraphics::Rectangle + + + + 398 + 178 + 84 + 87 + + + + 2 + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(M2Y).DMOV + + + + + caGraphics::Rectangle + + + + 398 + 268 + 84 + 87 + + + + 2 + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(M2Z).DMOV + + + + + + 245 + 86 + 239 + 2 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 238,1; + + + + + + 245 + 176 + 240 + 2 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 239,1; + + + + + + 245 + 266 + 240 + 2 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 239,1; + + + + + + 245 + 356 + 239 + 2 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 238,1; + + + + + + 482 + 85 + 2 + 273 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + 1,272; + + + + + QFrame::NoFrame + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + caLabel::IfZero + + + $(P)$(Q):done.VAL + + + Moving + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 220 + 365 + 75 + 20 + + + + + + QFrame::NoFrame + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + caLabel::IfNotZero + + + $(P)$(Q):done.VAL + + + Done + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 220 + 365 + 75 + 20 + + + + + + + 366 + 88 + 18 + 18 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + Menu + + + M2X (Tiny);M2X (Small);M2X (Medium);M2X (Setup);Scan parameters + + + motorx_tiny.adl;motorx.adl;motorx_more.adl;motorx_setup.adl;scanParms.adl + + + P=$(P),M=$(M2X);P=$(P),M=$(M2X);P=$(P),M=$(M2X);P=$(P),M=$(M2X);P=$(P),Q=$(M2X),PV=$(M2X) + + + false;false;false;false;false + + + + + + 366 + 178 + 18 + 18 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + Menu + + + M2Y (Tiny);M2Y (Small);M2Y (Medium);M2Y (Setup);Scan parameters + + + motorx_tiny.adl;motorx.adl;motorx_more.adl;motorx_setup.adl;scanParms.adl + + + P=$(P),M=$(M2Y);P=$(P),M=$(M2Y);P=$(P),M=$(M2Y);P=$(P),M=$(M2Y);P=$(P),Q=$(M2Y),PV=$(M2Y) + + + false;false;false;false;false + + + + + + 366 + 268 + 18 + 18 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + Menu + + + M2Z (Tiny);M2Z (Small);M2Z (Medium);M2Z (Setup);Scan parameters + + + motorx_tiny.adl;motorx.adl;motorx_more.adl;motorx_setup.adl;scanParms.adl + + + P=$(P),M=$(M2Z);P=$(P),M=$(M2Z);P=$(P),M=$(M2Z);P=$(P),M=$(M2Z);P=$(P),Q=$(M2Z),PV=$(M2Z) + + + false;false;false;false;false + + + + + + 248 + 268 + 18 + 18 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + Menu + + + M1Y (Tiny);M1Y (Small);M1Y (Medium);M1Y (Setup);Scan parameters + + + motorx_tiny.adl;motorx.adl;motorx_more.adl;motorx_setup.adl;scanParms.adl + + + P=$(P),M=$(M1Y);P=$(P),M=$(M1Y);P=$(P),M=$(M1Y);P=$(P),M=$(M1Y);P=$(P),Q=$(M1Y),PV=$(M1Y) + + + false;false;false;false;false + + + + + + 248 + 178 + 18 + 18 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + Menu + + + M0Y (Tiny);M0Y (Small);M0Y (Medium);M0Y (Setup);Scan parameters + + + motorx_tiny.adl;motorx.adl;motorx_more.adl;motorx_setup.adl;scanParms.adl + + + P=$(P),M=$(M0Y);P=$(P),M=$(M0Y);P=$(P),M=$(M0Y);P=$(P),M=$(M0Y);P=$(P),Q=$(M0Y),PV=$(M0Y) + + + false;false;false;false;false + + + + + + 248 + 88 + 18 + 18 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + Menu + + + M0X (Tiny);M0X (Small);M0X (Medium);M0X (Setup);Scan parameters + + + motorx_tiny.adl;motorx.adl;motorx_more.adl;motorx_setup.adl;scanParms.adl + + + P=$(P),M=$(M0X);P=$(P),M=$(M0X);P=$(P),M=$(M0X);P=$(P),M=$(M0X);P=$(P),Q=$(M0X),PV=$(M0X) + + + false;false;false;false;false + + + + + + 440 + 380 + 40 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -More + + + Menu + + + Setup (SRI geometry);Setup (GEOCARS geometry);Setup (NEWPORT geometry);Setup (PNC geometry);Fixed points + + + table_setup_SRI.adl;table_setup_GEOCARS.adl;table_setup_NEWPORT.adl;table_setup_PNC.adl;table_fixedPoints.adl + + + P=$(P),Q=$(Q),T=$(T);P=$(P),Q=$(Q),T=$(T);P=$(P),Q=$(Q),T=$(T);P=$(P),Q=$(Q),T=$(T);P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z) + + + false;false;false;false;false + + + + + + 440 + 360 + 40 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -Less + + + Menu + + + Small display + + + table_soft.adl + + + P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z) + + + true + + + + + + 43 + 155 + 44 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):x.TWV + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 87 + 153 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):x.TWF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + > + + + 1 + + + caMessageButton::Static + + + + + + 23 + 153 + 20 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):x.TWR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + < + + + 1 + + + caMessageButton::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Record version: + + + ESimpleLabel::WidthAndHeight + + + + 0 + 387 + 90 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 90 + 387 + 30 + 12 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).VERS + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + decimal + + + caLineEdit::Static + + + + + + 395 + 31 + 95 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -Refresh menu + + + Menu + + + Refresh fixed-point menu + + + table_full_refresh.adl + + + P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z) + + + true + + + + + + 195 + 31 + 200 + 20 + + + + $(P)$(Q)fpSelect + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caMenu::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Fixed point: + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 108 + 34 + 85 + 14 + + + + + + + 112 + 88 + 18 + 18 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + Menu + + + M0X (Small);M0X (Medium) + + + motorx.adl;motorx_more.adl + + + P=$(P),M=$(Q):ax;P=$(P),M=$(Q):ax + + + false;false + + + + + + 7 + 88 + 18 + 18 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + Menu + + + M0X (Small);M0X (Medium) + + + motorx.adl;motorx_more.adl + + + P=$(P),M=$(Q):x;P=$(P),M=$(Q):x + + + false;false + + + + + + 112 + 178 + 18 + 18 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + Menu + + + M0X (Small);M0X (Medium) + + + motorx.adl;motorx_more.adl + + + P=$(P),M=$(Q):ay;P=$(P),M=$(Q):ay + + + false;false + + + + + + 7 + 178 + 18 + 18 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + Menu + + + M0X (Small);M0X (Medium) + + + motorx.adl;motorx_more.adl + + + P=$(P),M=$(Q):y;P=$(P),M=$(Q):y + + + false;false + + + + + + 112 + 268 + 18 + 18 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + Menu + + + M0X (Small);M0X (Medium) + + + motorx.adl;motorx_more.adl + + + P=$(P),M=$(Q):az;P=$(P),M=$(Q):az + + + false;false + + + + + + 7 + 268 + 18 + 18 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + Menu + + + M0X (Small);M0X (Medium) + + + motorx.adl;motorx_more.adl + + + P=$(P),M=$(Q):z;P=$(P),M=$(Q):z + + + false;false + + + + + caGraphics::Rectangle + + + + 23 + 88 + 86 + 87 + + + + 2 + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(Q):x.DMOV + + + + + caGraphics::Rectangle + + + + 138 + 88 + 86 + 87 + + + + 2 + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(Q):ax.DMOV + + + + + caGraphics::Rectangle + + + + 23 + 178 + 86 + 87 + + + + 2 + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(Q):y.DMOV + + + + + caGraphics::Rectangle + + + + 138 + 179 + 86 + 87 + + + + 2 + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(Q):ay.DMOV + + + + + caGraphics::Rectangle + + + + 23 + 269 + 86 + 87 + + + + 2 + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(Q):z.DMOV + + + + + caGraphics::Rectangle + + + + 138 + 269 + 86 + 87 + + + + 2 + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(Q):az.DMOV + + + caRectangle_0 + caLabel_0 + caPolyLine_0 + caRectangle_1 + caRectangle_2 + caRectangle_3 + caLabel_1 + caLabel_2 + caLabel_3 + caLabel_4 + caLabel_5 + caLabel_6 + caPolyLine_1 + caPolyLine_2 + caPolyLine_3 + caRectangle_4 + caRectangle_5 + caRectangle_6 + caLabel_7 + caLabel_8 + caLabel_9 + caLabel_10 + caPolyLine_4 + caRectangle_7 + caRectangle_8 + caRectangle_9 + caRectangle_10 + caRectangle_11 + caRectangle_12 + caPolyLine_5 + caPolyLine_6 + caPolyLine_7 + caPolyLine_8 + caLabel_11 + caLabel_12 + caLabel_13 + caRectangle_13 + caRectangle_14 + caRectangle_15 + caPolyLine_9 + caRectangle_16 + caRectangle_17 + caRectangle_18 + caRectangle_19 + caRectangle_20 + caRectangle_21 + caLabel_14 + caLabel_15 + caLabel_16 + caRectangle_22 + caRectangle_23 + caRectangle_24 + caPolyLine_10 + caRectangle_25 + caRectangle_26 + caRectangle_27 + caRectangle_28 + caRectangle_29 + caRectangle_30 + caPolyLine_11 + caPolyLine_12 + caPolyLine_13 + caPolyLine_14 + caPolyLine_15 + caLabel_17 + caLabel_18 + caLabel_19 + caLabel_20 + caRectangle_31 + caRectangle_32 + caRectangle_33 + caRectangle_34 + caRectangle_35 + caRectangle_36 + caLineEdit_0 + caTextEntry_0 + caLineEdit_1 + caLineEdit_2 + caLineEdit_3 + caLineEdit_4 + caLineEdit_5 + caLineEdit_6 + caChoice_0 + caMessageButton_0 + caMessageButton_1 + caMessageButton_2 + caMessageButton_3 + caTextEntry_1 + caLineEdit_7 + caTextEntry_2 + caTextEntry_3 + caMessageButton_4 + caMessageButton_5 + caLineEdit_8 + caTextEntry_4 + caTextEntry_5 + caMessageButton_6 + caMessageButton_7 + caLineEdit_9 + caLineEdit_10 + caMessageButton_8 + caMessageButton_9 + caMessageButton_10 + caLineEdit_11 + caLineEdit_12 + caLineEdit_13 + caTextEntry_6 + caLineEdit_14 + caLineEdit_15 + caLineEdit_16 + caTextEntry_7 + caLineEdit_17 + caLineEdit_18 + caLineEdit_19 + caTextEntry_8 + caLineEdit_20 + caTextEntry_9 + caTextEntry_10 + caTextEntry_11 + caMessageButton_11 + caMessageButton_12 + caMessageButton_13 + caMessageButton_14 + caLineEdit_21 + caLineEdit_22 + caLineEdit_23 + caLineEdit_24 + caTextEntry_12 + caLineEdit_25 + caLineEdit_26 + caLineEdit_27 + caTextEntry_13 + caLineEdit_28 + caLineEdit_29 + caLineEdit_30 + caTextEntry_14 + caLineEdit_31 + caMessageButton_15 + caMessageButton_16 + caTextEntry_15 + caTextEntry_16 + caTextEntry_17 + caMessageButton_17 + caMessageButton_18 + caMessageButton_19 + caMessageButton_20 + caLineEdit_32 + caLineEdit_33 + caTextEntry_18 + caLineEdit_34 + caLineEdit_35 + caLineEdit_36 + caTextEntry_19 + caLineEdit_37 + caLineEdit_38 + caLineEdit_39 + caTextEntry_20 + caLineEdit_40 + caMessageButton_21 + caMessageButton_22 + caTextEntry_21 + caTextEntry_22 + caTextEntry_23 + caMessageButton_23 + caMessageButton_24 + caMessageButton_25 + caRelatedDisplay_0 + caRelatedDisplay_1 + caRelatedDisplay_2 + caRelatedDisplay_3 + caRelatedDisplay_4 + caRelatedDisplay_5 + caRelatedDisplay_6 + caRelatedDisplay_7 + caTextEntry_24 + caMessageButton_26 + caMessageButton_27 + caLineEdit_41 + caRelatedDisplay_8 + caMenu_0 + caRelatedDisplay_9 + caRelatedDisplay_10 + caRelatedDisplay_11 + caRelatedDisplay_12 + caRelatedDisplay_13 + caRelatedDisplay_14 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/table_help.ui b/opticsApp/op/ui/autoconvert/table_help.ui similarity index 82% rename from opticsApp/op/ui/table_help.ui rename to opticsApp/op/ui/autoconvert/table_help.ui index 4bc576f..4727940 100644 --- a/opticsApp/op/ui/table_help.ui +++ b/opticsApp/op/ui/autoconvert/table_help.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -98,14 +186,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 101 - 115 - 300 - 14 - - 0 @@ -124,7 +204,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Use: Changes to X, Y, etc. will move table - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 101 + 115 + 300 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -134,14 +222,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 101 - 130 - 300 - 14 - - 0 @@ -160,7 +240,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Set: Changes to X, Y, etc. will change table - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 101 + 130 + 300 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -199,87 +287,77 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caChoice::Static - + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Redefine current table coordinates as zero + + + ESimpleLabel::WidthAndHeight + 101 170 - 302 - 31 + 300 + 14 - - - QFrame::NoFrame - - - - 0 - 0 - 300 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Redefine current table coordinates as zero - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 15 - 300 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - (without moving any motors) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + (without moving any motors) + + + ESimpleLabel::WidthAndHeight + + + + 101 + 185 + 300 + 14 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + @@ -291,7 +369,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(T).ZERO @@ -324,14 +402,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 101 - 145 - 300 - 14 - - 0 @@ -350,7 +420,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} calibration without moving motors - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 101 + 145 + 300 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -366,7 +444,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(T).SYNC @@ -402,14 +480,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 101 - 220 - 300 - 14 - - 0 @@ -428,7 +498,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Update table coordinates from current - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 101 + 220 + 300 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -438,14 +516,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 101 - 235 - 300 - 14 - - 0 @@ -464,7 +534,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} motor positions; maintain calibration - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 101 + 235 + 300 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -474,14 +552,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 101 - 275 - 300 - 14 - - 0 @@ -500,7 +570,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} motor positions; abandon calibration - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 101 + 275 + 300 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -510,14 +588,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 101 - 260 - 300 - 14 - - 0 @@ -536,7 +606,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Update table coordinates from current - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 101 + 260 + 300 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -552,7 +630,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(T).INIT @@ -594,7 +672,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).X @@ -613,6 +691,21 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -624,14 +717,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 4 - 49 - 20 - 20 - - 0 @@ -650,7 +735,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} X - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 4 + 49 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -666,7 +759,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight @@ -682,6 +775,21 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} 187 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -702,7 +810,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q):x_tweak.C @@ -721,6 +829,21 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} 255 + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + caLineEdit::Static @@ -738,7 +861,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):x_inc.VAL @@ -780,7 +903,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):x_dec.VAL @@ -822,7 +945,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).LLX @@ -844,6 +967,21 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -855,14 +993,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 130 - 52 - 275 - 14 - - 0 @@ -881,7 +1011,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Drive value (--{transform}--> motors) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 130 + 52 + 275 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -891,14 +1029,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 130 - 70 - 275 - 14 - - 0 @@ -917,7 +1047,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Low limit (calc'd from motor limits) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 130 + 70 + 275 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -927,14 +1065,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 130 - 87 - 275 - 14 - - 0 @@ -953,7 +1083,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Tweak (type in step size, press buttons) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 130 + 87 + 275 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -989,7 +1127,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Solid - 0,0;397,0; + 397,0; @@ -1002,7 +1140,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).HLX @@ -1024,6 +1162,21 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -1041,7 +1194,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).XRB @@ -1063,6 +1216,21 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -1074,14 +1242,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 130 - 34 - 275 - 14 - - 0 @@ -1100,7 +1260,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Drive-value readback - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 130 + 34 + 275 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1110,14 +1278,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 130 - 3 - 275 - 14 - - 0 @@ -1136,7 +1296,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} High limit (calc'd from motor limits) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 130 + 3 + 275 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1152,7 +1320,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).EX @@ -1174,6 +1342,21 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + decimal @@ -1185,14 +1368,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 130 - 20 - 275 - 14 - - 0 @@ -1211,7 +1386,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Encoder readback - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 130 + 20 + 275 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1247,7 +1430,7 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Dash - 0,0;397,0; + 397,0; @@ -1280,21 +1463,13 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} Dash - 0,0;397,0; + 397,0; QFrame::NoFrame - - - 10 - 310 - 390 - 14 - - 0 @@ -1313,7 +1488,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} A positive-sense rotation turns table clockwise when - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 310 + 390 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1323,14 +1506,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 10 - 325 - 390 - 14 - - 0 @@ -1349,7 +1524,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} viewed from the + axis. (For example, increasing AY - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 325 + 390 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1359,14 +1542,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame - - - 10 - 340 - 390 - 14 - - 0 @@ -1385,7 +1560,15 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} rotates the table clockwise, as seen from above.) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 340 + 390 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1397,7 +1580,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} caLabel_1 caLabel_2 caLabel_3 - caFrame_0 caLabel_4 caLabel_5 caLabel_6 diff --git a/opticsApp/op/ui/autoconvert/table_limits.ui b/opticsApp/op/ui/autoconvert/table_limits.ui new file mode 100644 index 0000000..8e26ea1 --- /dev/null +++ b/opticsApp/op/ui/autoconvert/table_limits.ui @@ -0,0 +1,1987 @@ + + +MainWindow + + + + 800 + 532 + 700 + 130 + + + + + +QWidget#centralWidget {background: rgba(200, 200, 200, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + QFrame::NoFrame + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + User limits + + + ESimpleLabel::WidthAndHeight + + + + 5 + 5 + 110 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 0 + 0 + 700 + 2 + + + + 2 + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + 699,1; + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + X + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 110 + 9 + 80 + 20 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Y + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 195 + 9 + 80 + 20 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Z + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 280 + 9 + 80 + 20 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + AX + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 405 + 9 + 80 + 20 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + AY + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 490 + 9 + 80 + 20 + + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + AZ + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 575 + 9 + 80 + 20 + + + + + + + 110 + 29 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).UHXR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 195 + 29 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).UHYR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + High + + + ESimpleLabel::WidthAndHeight + + + + 60 + 29 + 40 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 110 + 49 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).ULXR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 195 + 49 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).ULYR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Low + + + ESimpleLabel::WidthAndHeight + + + + 60 + 49 + 20 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 280 + 49 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).ULZR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 280 + 29 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).UHZR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 405 + 49 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).ULAXR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 405 + 29 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).UHAXR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 490 + 49 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).ULAYR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 490 + 29 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).UHAYR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 575 + 49 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).ULAZR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 575 + 29 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).UHAZR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 475 + 114 + 115 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).AEGU + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 175 + 114 + 115 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).LEGU + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 110 + 74 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).UHX + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 195 + 74 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).UHY + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + High + + + ESimpleLabel::WidthAndHeight + + + + 60 + 74 + 40 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 110 + 94 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).ULX + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 195 + 94 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).ULY + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Low + + + ESimpleLabel::WidthAndHeight + + + + 60 + 94 + 20 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 280 + 94 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).ULZ + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 280 + 74 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).UHZ + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 405 + 94 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).ULAX + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 405 + 74 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).UHAX + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 490 + 94 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).ULAY + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 490 + 74 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).UHAY + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 575 + 94 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).ULAZ + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + + 575 + 74 + 80 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).UHAZ + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + compact + + + + + QFrame::NoFrame + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + REL + + + ESimpleLabel::WidthAndHeight + + + + 10 + 39 + 40 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + ABS + + + ESimpleLabel::WidthAndHeight + + + + 10 + 84 + 40 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + caLabel_0 + caPolyLine_0 + caLabel_1 + caLabel_2 + caLabel_3 + caLabel_4 + caLabel_5 + caLabel_6 + caLabel_7 + caLabel_8 + caLabel_9 + caLabel_10 + caLabel_11 + caLabel_12 + caTextEntry_0 + caTextEntry_1 + caTextEntry_2 + caTextEntry_3 + caTextEntry_4 + caTextEntry_5 + caTextEntry_6 + caTextEntry_7 + caTextEntry_8 + caTextEntry_9 + caTextEntry_10 + caTextEntry_11 + caLineEdit_0 + caLineEdit_1 + caTextEntry_12 + caTextEntry_13 + caTextEntry_14 + caTextEntry_15 + caTextEntry_16 + caTextEntry_17 + caTextEntry_18 + caTextEntry_19 + caTextEntry_20 + caTextEntry_21 + caTextEntry_22 + caTextEntry_23 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/table_refresh.ui b/opticsApp/op/ui/autoconvert/table_refresh.ui similarity index 51% rename from opticsApp/op/ui/table_refresh.ui rename to opticsApp/op/ui/autoconvert/table_refresh.ui index b932300..f266a63 100644 --- a/opticsApp/op/ui/table_refresh.ui +++ b/opticsApp/op/ui/autoconvert/table_refresh.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + diff --git a/opticsApp/op/ui/table_setup_GEOCARS.ui b/opticsApp/op/ui/autoconvert/table_setup_GEOCARS.ui similarity index 75% rename from opticsApp/op/ui/table_setup_GEOCARS.ui rename to opticsApp/op/ui/autoconvert/table_setup_GEOCARS.ui index d74a6bd..aee6640 100644 --- a/opticsApp/op/ui/table_setup_GEOCARS.ui +++ b/opticsApp/op/ui/autoconvert/table_setup_GEOCARS.ui @@ -4,10 +4,10 @@ - 36 - 25 + 729 + 513 700 - 455 + 500 @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -64,7 +152,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;2,6; + 2,6; @@ -104,7 +192,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 7,0;0,2; + 0,2; @@ -141,7 +229,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,49;31,0;63,19;33,68;0,49; + 0,49; caPolyLine::Polygon @@ -279,7 +367,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,50;1,1; + 1,1; @@ -319,21 +407,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,12;7,1;12,12; + 12,12; QFrame::NoFrame - - - 97 - 226 - 30 - 14 - - 255 @@ -352,24 +432,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} BEAM - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 97 + 226 + 30 + 14 + + QFrame::NoFrame - - - 40 - 316 - 120 - 20 - - 0 @@ -388,11 +468,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} (+Y is up) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 40 + 316 + 120 + 20 + + @@ -404,7 +492,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).YANG @@ -449,14 +537,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 95 - 33 - 90 - 15 - - 0 @@ -475,24 +555,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Table angle - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 95 - 48 + 33 90 15 + + + + QFrame::NoFrame + 0 @@ -511,11 +591,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} (degrees) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 95 + 48 + 90 + 15 + + @@ -547,21 +635,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;81,0; + 81,0; QFrame::NoFrame - - - 141 - 128 - 20 - 15 - - 158 @@ -580,7 +660,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +Z' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 141 + 128 + 20 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -590,14 +678,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 36 - 155 - 20 - 15 - - 158 @@ -616,7 +696,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +X' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 36 + 155 + 20 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -659,7 +747,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;1,343; + 1,343; @@ -766,7 +854,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 48,26;1,1; + 1,1; @@ -799,7 +887,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 21,0;0,65; + 0,65; @@ -839,7 +927,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 30,1;1,52; + 1,52; @@ -888,14 +976,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 90 - 20 - 20 - - 0 @@ -914,7 +994,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +X - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 90 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -957,7 +1045,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 13,1;1,6;11,10; + 11,10; @@ -993,7 +1081,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 61,1;1,1; + 1,1; @@ -1029,7 +1117,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,68;1,1; + 1,1; @@ -1069,21 +1157,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,15;8,1;15,15; + 15,15; QFrame::NoFrame - - - 78 - 0 - 20 - 20 - - 0 @@ -1102,7 +1182,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +Z - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 78 + 0 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1113,50 +1201,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 446 - 30 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - V5.1 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 415 - 351 - 280 - 14 - - 253 @@ -1181,7 +1225,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} You're using the wrong setup display - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 415 + 351 + 280 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1217,18 +1269,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caMenu::Static - + QFrame::NoFrame - - - 450 - 311 - 80 - 20 - - 0 @@ -1247,24 +1291,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Geometry - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 450 + 311 + 80 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + QFrame::NoFrame - - - 415 - 336 - 280 - 14 - - 253 @@ -1289,65 +1333,70 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} This display is for the GEOCARS geometry - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 415 + 336 + 280 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - QFrame::NoFrame + + + caGraphics::Rectangle - 5 - 376 - 110 + 469 + 241 + 200 20 - 255 - 255 - 255 + 78 + 165 + 249 - - - 255 - 255 - 255 - + + Filled - - User limits + + + 78 + 165 + 249 + - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + Solid - + + + caGraphics::Circle + - 0 - 371 - 709 - 2 + 489 + 261 + 10 + 10 - - 2 - - 0 - 0 - 0 + 153 + 255 + 255 @@ -1355,132 +1404,88 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - 0 - 0 - 0 + 153 + 255 + 255 Solid - - 1,1;708,1; - - + + + caGraphics::Circle + - 110 - 401 - 80 - 18 + 639 + 261 + 10 + 10 - - caLineEdit::Height - - - $(P)$(T).UHX - - 0 - 0 - 0 + 153 + 255 + 255 - + + Filled + + - 115 - 223 + 153 + 255 255 - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact + + Solid - + - 195 - 401 - 80 - 18 + 600 + 265 + 88 + 2 - - caLineEdit::Height - - - $(P)$(T).UHY + + 2 - 0 - 0 - 0 + 153 + 255 + 255 - + + Filled + + - 115 - 223 + 153 + 255 255 - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static + + Solid - - compact + + 87,1; - + QFrame::NoFrame - - - 60 - 401 - 40 - 20 - - 0 @@ -1496,129 +1501,27 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - High - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 110 - 421 - 80 - 18 - + M1,M2 - caLineEdit::Height - - - $(P)$(T).ULX - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact + ESimpleLabel::WidthAndHeight - - - 195 - 421 - 80 - 18 + 484 + 276 + 20 + 20 - - caLineEdit::Height - - - $(P)$(T).ULY - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + QFrame::NoFrame - - - 60 - 421 - 20 - 20 - - 0 @@ -1634,201 +1537,298 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - Low + M0 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 634 + 276 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + - 280 - 421 - 80 - 18 + 640 + 261 + 12 + 13 - - caLineEdit::Height + + + caGraphics::Rectangle + + + + 0 + 0 + 10 + 10 + + + + 1 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + $(P)$(T).SX + + + + + + 1 + 5 + 9 + 1 + + + + 1 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + $(P)$(T).SX + + + 8,0; + + + + + + 5 + 1 + 1 + 10 + + + + 1 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + $(P)$(T).SX + + + 0,9; + + + + + + caGraphics::Rectangle - - $(P)$(T).ULZ + + + 230 + 41 + 200 + 250 + - 0 - 0 - 0 + 78 + 165 + 249 - + + Filled + + - 115 - 223 - 255 + 78 + 165 + 249 - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact + + Solid - + + + caGraphics::Circle + - 280 - 401 - 80 - 18 + 250 + 261 + 10 + 10 - - caLineEdit::Height - - - $(P)$(T).UHZ - - 0 - 0 - 0 + 153 + 255 + 255 - + + Filled + + - 115 - 223 + 153 + 255 255 - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact + + Solid - - - QFrame::NoFrame + + + caGraphics::Circle - 110 - 381 - 80 - 20 + 400 + 161 + 10 + 10 - 0 - 0 - 0 + 153 + 255 + 255 - - - 0 - 0 - 0 - - - - X + + Filled - - ESimpleLabel::Height + + + 153 + 255 + 255 + - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + Solid - - - QFrame::NoFrame + + + caGraphics::Circle - 195 - 381 - 80 - 20 + 250 + 61 + 10 + 10 - 0 - 0 - 0 - - - - - 0 - 0 - 0 + 153 + 255 + 255 - - Y + + Filled - - ESimpleLabel::Height + + + 153 + 255 + 255 + - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + Solid - + QFrame::NoFrame - - - 280 - 381 - 80 - 20 - - 0 @@ -1844,29 +1844,26 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - Z + M2 - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + ESimpleLabel::WidthAndHeight - - - 405 - 421 - 80 - 18 + 263 + 246 + 20 + 20 - - caLineEdit::Height + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - $(P)$(T).ULAX + + + + QFrame::NoFrame @@ -1876,48 +1873,33 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - - 115 - 223 - 255 + + 0 + 0 + 0 - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static + + M0 - - compact + + ESimpleLabel::WidthAndHeight - - - 405 - 401 - 80 - 18 + 411 + 159 + 20 + 20 - - caLineEdit::Height + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - $(P)$(T).UHAX + + + + QFrame::NoFrame @@ -1927,1083 +1909,73 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - - 115 - 223 - 255 + + 0 + 0 + 0 - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 + + M1 - - 1.0 + + ESimpleLabel::WidthAndHeight - - caLineEdit::Static + + + 246 + 71 + 20 + 20 + - - compact + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + + + caGraphics::Circle + - 490 - 421 - 80 - 18 + 345 + 128 + 10 + 10 - - caLineEdit::Height - - - $(P)$(T).ULAY - - 0 - 0 - 0 + 251 + 243 + 74 - + + Filled + + - 115 - 223 - 255 + 251 + 243 + 74 - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact + + Solid - + - 490 - 401 - 80 - 18 + 252 + 248 + 7 + 17 - - caLineEdit::Height - - - $(P)$(T).UHAY - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 575 - 421 - 80 - 18 - - - - caLineEdit::Height - - - $(P)$(T).ULAZ - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 575 - 401 - 80 - 18 - - - - caLineEdit::Height - - - $(P)$(T).UHAZ - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - QFrame::NoFrame - - - - 405 - 381 - 80 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - AX - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 490 - 381 - 80 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - AY - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 575 - 381 - 80 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - AZ - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 475 - 441 - 115 - 15 - - - - caLineEdit::Height - - - $(P)$(T).AEGU - - - - 10 - 0 - 184 - - - - - 200 - 200 - 200 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - - 175 - 441 - 115 - 15 - - - - caLineEdit::Height - - - $(P)$(T).LEGU - - - - 10 - 0 - 184 - - - - - 200 - 200 - 200 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - caGraphics::Rectangle - - - - 469 - 241 - 200 - 20 - - - - - 78 - 165 - 249 - - - - Filled - - - - 78 - 165 - 249 - - - - Solid - - - - - caGraphics::Circle - - - - 489 - 261 - 10 - 10 - - - - - 153 - 255 - 255 - - - - Filled - - - - 153 - 255 - 255 - - - - Solid - - - - - caGraphics::Circle - - - - 639 - 261 - 10 - 10 - - - - - 153 - 255 - 255 - - - - Filled - - - - 153 - 255 - 255 - - - - Solid - - - - - - 600 - 265 - 88 - 2 - - - - 2 - - - - 153 - 255 - 255 - - - - Filled - - - - 153 - 255 - 255 - - - - Solid - - - 1,1;87,1; - - - - - QFrame::NoFrame - - - - 484 - 276 - 20 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - M1,M2 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 634 - 276 - 20 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - M0 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 640 - 261 - 12 - 13 - - - - - caGraphics::Rectangle - - - - 0 - 0 - 10 - 10 - - - - 1 - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - $(P)$(T).SX - - - - - - 1 - 5 - 9 - 1 - - - - 1 - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - $(P)$(T).SX - - - 0,0;8,0; - - - - - - 5 - 1 - 1 - 10 - - - - 1 - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - $(P)$(T).SX - - - 0,0;0,9; - - - - - - caGraphics::Rectangle - - - - 230 - 41 - 200 - 250 - - - - - 78 - 165 - 249 - - - - Filled - - - - 78 - 165 - 249 - - - - Solid - - - - - caGraphics::Circle - - - - 250 - 261 - 10 - 10 - - - - - 153 - 255 - 255 - - - - Filled - - - - 153 - 255 - 255 - - - - Solid - - - - - caGraphics::Circle - - - - 400 - 161 - 10 - 10 - - - - - 153 - 255 - 255 - - - - Filled - - - - 153 - 255 - 255 - - - - Solid - - - - - caGraphics::Circle - - - - 250 - 61 - 10 - 10 - - - - - 153 - 255 - 255 - - - - Filled - - - - 153 - 255 - 255 - - - - Solid - - - - - QFrame::NoFrame - - - - 263 - 246 - 20 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - M2 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 411 - 159 - 20 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - M0 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 246 - 71 - 20 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - M1 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - caGraphics::Circle - - - - 345 - 128 - 10 - 10 - - - - - 251 - 243 - 74 - - - - Filled - - - - 251 - 243 - 74 - - - - Solid - - - - - - 252 - 248 - 7 - 17 - - - + 2 @@ -3036,10 +2008,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,14;1,1; + 1,1; - + 0 @@ -3076,7 +2048,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,6;3,1;5,6; + 5,6; @@ -3089,7 +2061,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 7 - + 0 @@ -3126,10 +2098,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 7,1;1,3;6,5; + 6,5; - + 1 @@ -3162,7 +2134,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 14,1;1,1; + 1,1; @@ -3175,7 +2147,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 7 - + 0 @@ -3212,10 +2184,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 7,1;1,3;6,5; + 6,5; - + 1 @@ -3248,11 +2220,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 14,1;1,1; + 1,1; - + 404 @@ -3285,10 +2257,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Dash - 1,1;1,38; + 1,38; - + 235 @@ -3298,7 +2270,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).LZ @@ -3391,7 +2363,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(T).SX - + 1 @@ -3431,10 +2403,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(T).SX - 0,0;8,0; + 8,0; - + 5 @@ -3474,11 +2446,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(T).SX - 0,0;0,9; + 0,9; - + 204 @@ -3511,10 +2483,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;24,0; + 24,0; - + 205 @@ -3547,10 +2519,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;24,0; + 24,0; - + 210 @@ -3583,21 +2555,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,59;0,0; + 0,0; - + QFrame::NoFrame - - - 200 - 126 - 20 - 20 - - 0 @@ -3616,13 +2580,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Lz' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 200 + 126 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 210 @@ -3655,10 +2627,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,118;0,0; + 0,0; - + 405 @@ -3691,21 +2663,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;24,23; + 24,23; - + QFrame::NoFrame - - - 425 - 294 - 15 - 20 - - 251 @@ -3724,13 +2688,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} R - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 425 + 294 + 15 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 349 @@ -3763,21 +2735,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 80,158;1,1; + 1,1; - + QFrame::NoFrame - - - 360 - 121 - 15 - 20 - - 251 @@ -3796,13 +2760,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} S - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 360 + 121 + 15 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 644 @@ -3835,21 +2807,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,27;23,1; + 23,1; - + QFrame::NoFrame - - - 670 - 231 - 15 - 20 - - 251 @@ -3868,13 +2832,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} R - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 670 + 231 + 15 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 593 @@ -3907,7 +2879,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 74,51;1,1; + 1,1; @@ -3943,18 +2915,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - + QFrame::NoFrame - - - 574 - 192 - 15 - 20 - - 251 @@ -3973,7 +2937,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} S - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 574 + 192 + 15 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -4073,7 +3045,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(T).SX - + 1 @@ -4113,10 +3085,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(T).SX - 0,0;8,0; + 8,0; - + 5 @@ -4156,7 +3128,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(T).SX - 0,0;0,9; + 0,9; @@ -4193,18 +3165,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - + QFrame::NoFrame - - - 20 - 15 - 80 - 10 - - 0 @@ -4223,24 +3187,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} PIVOT POINTS - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame + ESimpleLabel::WidthAndHeight 20 - 0 + 15 80 10 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 0 @@ -4259,24 +3223,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} LOCAL ORIGIN - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame + ESimpleLabel::WidthAndHeight 20 - 30 + 0 80 10 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 0 @@ -4295,14 +3259,22 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 'FIXED' POINT - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 20 + 30 + 80 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 495 @@ -4312,7 +3284,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).RX @@ -4353,7 +3325,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} decimal - + 495 @@ -4363,7 +3335,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).RY @@ -4404,7 +3376,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} decimal - + 615 @@ -4414,7 +3386,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).SX @@ -4455,7 +3427,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} decimal - + 615 @@ -4465,7 +3437,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).SZ @@ -4506,7 +3478,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} decimal - + 615 @@ -4516,7 +3488,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).SY @@ -4557,176 +3529,166 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} decimal - + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Lx' + + + ESimpleLabel::WidthAndHeight + - 255 - 296 - 4 - 28 + 319 + 301 + 20 + 20 - - - QFrame::NoFrame - - - - 64 - 5 - 20 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Lx' - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 90 - 15 - 62 - 1 - - - - 1 - - - - 0 - 0 - 0 - - - - Filled - - - - 0 - 0 - 0 - - - - Solid - - - 0,0;61,0; - - - - - - 2 - 15 - 59 - 1 - - - - 1 - - - - 0 - 0 - 0 - - - - Filled - - - - 0 - 0 - 0 - - - - Solid - - - 0,0;58,0; - - - - - - 45 - 22 - 60 - 18 - - - - caLineEdit::Height - - - $(P)$(T).LX - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 345 + 311 + 62 + 1 + + + + 1 + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + 61,0; + + + + + + 257 + 311 + 59 + 1 + + + + 1 + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + 58,0; + + + + + + 300 + 318 + 60 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).LX + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + - + 406 @@ -4759,10 +3721,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;0,24; + 0,24; - + 310 @@ -4771,18 +3733,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 59 - + QFrame::NoFrame - - - 0 - 43 - 20 - 14 - - 255 @@ -4801,13 +3755,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +X' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 43 + 20 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 21 @@ -4844,10 +3806,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 13,1;1,6;11,10; + 11,10; - + 24 @@ -4880,10 +3842,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 27,1;1,1; + 1,1; - + 51 @@ -4916,10 +3878,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,32;1,1; + 1,1; - + 44 @@ -4956,21 +3918,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,13;7,1;13,13; + 13,13; - + QFrame::NoFrame - - - 44 - 0 - 20 - 14 - - 255 @@ -4989,14 +3943,22 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +Z' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 44 + 0 + 20 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 530 @@ -5005,7 +3967,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 55 - + 7 @@ -5038,10 +4000,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,32;1,1; + 1,1; - + 0 @@ -5078,21 +4040,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,13;7,1;13,13; + 13,13; - + QFrame::NoFrame - - - 0 - 0 - 20 - 14 - - 255 @@ -5111,186 +4065,184 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +Y' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 0 + 20 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + + + caGraphics::Rectangle + + + + 0 + 0 + 700 + 27 + + + + 3 + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + + 0 + 27 + 699 + 3 + + + + 3 + + + + 10 + 0 + 184 + + + + Filled + + + + 10 + 0 + 184 + + + + Solid + + + 697,1; + + + + + QFrame::NoFrame + + + 3 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + ($(P)$(T)) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 350 + 5 + 350 + 15 + + + + 0 0 - 702 - 32 + 350 + 27 - - - caGraphics::Rectangle - - - - 0 - 0 - 700 - 27 - - - - 3 - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - - - - 0 - 27 - 699 - 3 - - - - 3 - - - - 10 - 0 - 184 - - - - Filled - - - - 10 - 0 - 184 - - - - Solid - - - 1,1;697,1; - - - - - QFrame::NoFrame - - - - 350 - 5 - 350 - 15 - - - - 3 - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - ($(P)$(T)) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 0 - 0 - 350 - 27 - - - - caLineEdit::Height - - - $(P)$(T).DESC - - - - 10 - 0 - 184 - - - - - 236 - 236 - 236 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - + + caLineEdit::WidthAndHeight + + + $(P)$(T).DESC + + + + 10 + 0 + 184 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + - + 495 @@ -5300,7 +4252,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).RZ @@ -5341,7 +4293,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} decimal - + 580 @@ -5351,7 +4303,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fpSelect.VAL @@ -5421,287 +4373,267 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 255 - - caMenu::Static + + caMenu::Static + + + + + + 580 + 35 + 95 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -Fixed points + + + Menu + + + Fixed points + + + table_fixedPoints.adl + + + P=$(P),Q=$(Q),T=$(T) + + + false + + + + + QFrame::NoFrame + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Rx' + + + ESimpleLabel::WidthAndHeight + + + + 460 + 115 + 30 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Rz' + + + ESimpleLabel::WidthAndHeight + + + + 460 + 155 + 30 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Ry' + + + ESimpleLabel::WidthAndHeight - - - 580 - 35 - 95 + 460 + 135 + 30 20 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + - 255 - 255 - 255 + 251 + 243 + 74 - - 51 - 153 - 0 + + 251 + 243 + 74 - - -Fixed points - - - Menu - - - Fixed points - - - table_fixedPoints.adl - - - P=$(P),Q=$(Q),T=$(T) - - - false + + Sx' - - - - - 460 - 115 - 32 - 62 - + + ESimpleLabel::WidthAndHeight - - - QFrame::NoFrame - - - - 0 - 0 - 30 - 20 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - Rx' - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 40 - 30 - 20 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - Rz' - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 20 - 30 - 20 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - Ry' - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - 580 115 - 32 - 62 - - - - - QFrame::NoFrame - - - - 0 - 0 - 30 - 20 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - Sx' - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 40 - 30 - 20 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - Sz' - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 20 - 30 - 20 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - Sy' - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - + 30 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Sz' + + + ESimpleLabel::WidthAndHeight + + + + 580 + 155 + 30 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Sy' + + + ESimpleLabel::WidthAndHeight + + + + 580 + 135 + 30 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + @@ -5745,6 +4677,132 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} true + + + + 0 + 371 + 702 + 132 + + + + + 0 + 371 + 700 + 130 + + + + table_limits.adl + + + P=$(P),T=$(T) + + + + + + 290 + 345 + 120 + 20 + + + + $(P)$(T).AUNIT + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caMenu::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Angle units + + + ESimpleLabel::WidthAndHeight + + + + 205 + 348 + 80 + 14 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 255 + 297 + 1 + 25 + + + + 1 + + + + 0 + 0 + 0 + + + + Filled + + + + 0 + 0 + 0 + + + + Solid + + + 0,24; + + caPolyLine_0 caPolyLine_1 caFrame_0 @@ -5777,101 +4835,89 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLabel_8 caLabel_9 caLabel_10 - caLabel_11 - caLabel_12 - caPolyLine_13 - caLabel_13 - caLabel_14 - caLabel_15 - caLabel_16 - caLabel_17 - caLabel_18 - caLabel_19 - caLabel_20 caRectangle_0 caGraphics_4 caGraphics_5 - caPolyLine_14 - caLabel_21 - caLabel_22 + caPolyLine_13 + caLabel_11 + caLabel_12 caRectangle_1 + caPolyLine_14 caPolyLine_15 - caPolyLine_16 caFrame_2 caRectangle_2 caGraphics_6 caGraphics_7 caGraphics_8 - caLabel_23 - caLabel_24 - caLabel_25 + caLabel_13 + caLabel_14 + caLabel_15 caGraphics_9 + caPolyLine_16 caPolyLine_17 - caPolyLine_18 caFrame_3 + caPolyLine_18 caPolyLine_19 - caPolyLine_20 caFrame_4 + caPolyLine_20 caPolyLine_21 - caPolyLine_22 caFrame_5 - caPolyLine_23 + caPolyLine_22 caRectangle_3 + caPolyLine_23 caPolyLine_24 - caPolyLine_25 caFrame_6 + caPolyLine_25 caPolyLine_26 caPolyLine_27 + caLabel_16 caPolyLine_28 - caLabel_26 caPolyLine_29 + caLabel_17 caPolyLine_30 - caLabel_27 + caLabel_18 caPolyLine_31 - caLabel_28 + caLabel_19 caPolyLine_32 - caLabel_29 - caPolyLine_33 caGraphics_10 - caLabel_30 + caLabel_20 caGraphics_11 caRectangle_4 + caPolyLine_33 caPolyLine_34 - caPolyLine_35 caFrame_8 caGraphics_12 - caLabel_31 - caLabel_32 - caLabel_33 + caLabel_21 + caLabel_22 + caLabel_23 caFrame_7 - caLabel_34 + caLabel_24 + caPolyLine_35 caPolyLine_36 caPolyLine_37 - caFrame_9 + caLabel_25 caPolyLine_38 - caLabel_35 caPolyLine_39 caPolyLine_40 caPolyLine_41 + caLabel_26 + caFrame_9 caPolyLine_42 - caLabel_36 - caFrame_10 caPolyLine_43 - caPolyLine_44 - caLabel_37 - caFrame_11 + caLabel_27 + caFrame_10 caRectangle_5 + caPolyLine_44 + caLabel_28 + caLabel_29 + caLabel_30 + caLabel_31 + caLabel_32 + caLabel_33 + caLabel_34 + caInclude_11 + caLabel_35 caPolyLine_45 - caLabel_38 - caFrame_12 - caLabel_39 - caLabel_40 - caLabel_41 - caFrame_13 - caLabel_42 - caLabel_43 - caLabel_44 - caFrame_14 caTextEntry_0 caMenu_0 caTextEntry_1 @@ -5883,24 +4929,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caTextEntry_7 caTextEntry_8 caTextEntry_9 - caTextEntry_10 - caTextEntry_11 - caTextEntry_12 caLineEdit_0 - caLineEdit_1 - caTextEntry_13 - caTextEntry_14 - caTextEntry_15 - caTextEntry_16 - caTextEntry_17 - caTextEntry_18 - caTextEntry_19 - caTextEntry_20 - caTextEntry_21 - caLineEdit_2 caMenu_1 caRelatedDisplay_0 caRelatedDisplay_1 + caMenu_2 \ No newline at end of file diff --git a/opticsApp/op/ui/table_setup_GEOCARS_refresh.ui b/opticsApp/op/ui/autoconvert/table_setup_GEOCARS_refresh.ui similarity index 50% rename from opticsApp/op/ui/table_setup_GEOCARS_refresh.ui rename to opticsApp/op/ui/autoconvert/table_setup_GEOCARS_refresh.ui index f931499..b6c0917 100644 --- a/opticsApp/op/ui/table_setup_GEOCARS_refresh.ui +++ b/opticsApp/op/ui/autoconvert/table_setup_GEOCARS_refresh.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + diff --git a/opticsApp/op/ui/table_setup_NEWPORT.ui b/opticsApp/op/ui/autoconvert/table_setup_NEWPORT.ui similarity index 74% rename from opticsApp/op/ui/table_setup_NEWPORT.ui rename to opticsApp/op/ui/autoconvert/table_setup_NEWPORT.ui index 89d1df6..7c8bd13 100644 --- a/opticsApp/op/ui/table_setup_NEWPORT.ui +++ b/opticsApp/op/ui/autoconvert/table_setup_NEWPORT.ui @@ -4,10 +4,10 @@ - 33 - 504 + 699 + 521 700 - 455 + 500 @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -130,7 +218,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;2,6; + 2,6; @@ -170,7 +258,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 7,0;0,2; + 0,2; @@ -207,7 +295,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,49;31,0;63,19;33,68;0,49; + 0,49; caPolyLine::Polygon @@ -316,14 +404,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 97 - 226 - 30 - 14 - - 255 @@ -342,24 +422,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} BEAM - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 97 + 226 + 30 + 14 + + QFrame::NoFrame - - - 40 - 316 - 120 - 20 - - 0 @@ -378,11 +458,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} (+Y is up) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 40 + 316 + 120 + 20 + + @@ -394,7 +482,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).YANG @@ -439,14 +527,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 95 - 33 - 90 - 15 - - 0 @@ -465,24 +545,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Table angle - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 95 - 48 + 33 90 15 + + + + QFrame::NoFrame + 0 @@ -501,11 +581,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} (degrees) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 95 + 48 + 90 + 15 + + @@ -537,21 +625,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;81,0; + 81,0; QFrame::NoFrame - - - 141 - 128 - 20 - 15 - - 158 @@ -570,7 +650,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +Z' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 141 + 128 + 20 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -580,14 +668,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 36 - 155 - 20 - 15 - - 158 @@ -606,7 +686,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +X' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 36 + 155 + 20 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -649,7 +737,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;1,343; + 1,343; @@ -756,7 +844,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 48,26;1,1; + 1,1; @@ -789,7 +877,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 21,0;0,65; + 0,65; @@ -829,7 +917,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 30,1;1,52; + 1,52; @@ -878,14 +966,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 90 - 20 - 20 - - 0 @@ -904,7 +984,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +X - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 90 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -947,7 +1035,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 13,1;1,6;11,10; + 11,10; @@ -983,7 +1071,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 61,1;1,1; + 1,1; @@ -1019,7 +1107,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,68;1,1; + 1,1; @@ -1059,21 +1147,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,15;8,1;15,15; + 15,15; QFrame::NoFrame - - - 78 - 0 - 20 - 20 - - 0 @@ -1092,7 +1172,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +Z - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 78 + 0 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1103,50 +1191,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 446 - 30 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - V5.1 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 415 - 351 - 280 - 14 - - 253 @@ -1171,7 +1215,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} You're using the wrong setup display - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 415 + 351 + 280 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1207,18 +1259,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caMenu::Static - + QFrame::NoFrame - - - 450 - 311 - 80 - 20 - - 0 @@ -1237,24 +1281,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Geometry - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 450 + 311 + 80 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + QFrame::NoFrame - - - 415 - 336 - 280 - 14 - - 253 @@ -1279,1102 +1323,30 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} This display is for the NEWPORT geometry - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame + ESimpleLabel::WidthAndHeight - 5 - 376 - 110 - 20 + 415 + 336 + 280 + 14 - - - 255 - 255 - 255 - - - - - 255 - 255 - 255 - - - - User limits - - - ESimpleLabel::Height - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + - 0 - 371 - 709 - 2 + 104 + 241 + 15 + 54 - - 2 - - - - 0 - 0 - 0 - - - - Filled - - - - 0 - 0 - 0 - - - - Solid - - - 1,1;708,1; - - - - - - 110 - 401 - 80 - 18 - - - - caLineEdit::Height - - - $(P)$(T).UHX - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 195 - 401 - 80 - 18 - - - - caLineEdit::Height - - - $(P)$(T).UHY - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - QFrame::NoFrame - - - - 60 - 401 - 40 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - High - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 110 - 421 - 80 - 18 - - - - caLineEdit::Height - - - $(P)$(T).ULX - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 195 - 421 - 80 - 18 - - - - caLineEdit::Height - - - $(P)$(T).ULY - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - QFrame::NoFrame - - - - 60 - 421 - 20 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Low - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 280 - 421 - 80 - 18 - - - - caLineEdit::Height - - - $(P)$(T).ULZ - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 280 - 401 - 80 - 18 - - - - caLineEdit::Height - - - $(P)$(T).UHZ - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - QFrame::NoFrame - - - - 110 - 381 - 80 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - X - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 195 - 381 - 80 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Y - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 280 - 381 - 80 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Z - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 405 - 421 - 80 - 18 - - - - caLineEdit::Height - - - $(P)$(T).ULAX - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 405 - 401 - 80 - 18 - - - - caLineEdit::Height - - - $(P)$(T).UHAX - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 490 - 421 - 80 - 18 - - - - caLineEdit::Height - - - $(P)$(T).ULAY - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 490 - 401 - 80 - 18 - - - - caLineEdit::Height - - - $(P)$(T).UHAY - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 575 - 421 - 80 - 18 - - - - caLineEdit::Height - - - $(P)$(T).ULAZ - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 575 - 401 - 80 - 18 - - - - caLineEdit::Height - - - $(P)$(T).UHAZ - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - QFrame::NoFrame - - - - 405 - 381 - 80 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - AX - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 490 - 381 - 80 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - AY - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 575 - 381 - 80 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - AZ - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 475 - 441 - 115 - 15 - - - - caLineEdit::Height - - - $(P)$(T).AEGU - - - - 10 - 0 - 184 - - - - - 200 - 200 - 200 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - - 175 - 441 - 115 - 15 - - - - caLineEdit::Height - - - $(P)$(T).LEGU - - - - 10 - 0 - 184 - - - - - 200 - 200 - 200 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - - 104 - 241 - 15 - 54 - - - + 6 @@ -2407,10 +1379,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,50;1,1; + 1,1; - + 0 @@ -2447,22 +1419,14 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,12;7,1;12,12; + 12,12; - + QFrame::NoFrame - - - 319 - 301 - 20 - 20 - - 0 @@ -2481,13 +1445,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Lx' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 319 + 301 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 345 @@ -2520,10 +1492,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;61,0; + 61,0; - + 257 @@ -2556,7 +1528,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;58,0; + 58,0; @@ -2691,7 +1663,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - + 204 @@ -2724,21 +1696,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;24,0; + 24,0; - + QFrame::NoFrame - - - 263 - 246 - 20 - 20 - - 0 @@ -2757,24 +1721,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} M0 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 263 + 246 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + QFrame::NoFrame - - - 400 - 176 - 20 - 20 - - 0 @@ -2793,24 +1757,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} M1 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 400 + 176 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + QFrame::NoFrame - - - 246 - 71 - 20 - 20 - - 0 @@ -2829,7 +1793,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} M2 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 246 + 71 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2877,7 +1849,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 17 - + 2 @@ -2910,10 +1882,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,14;1,1; + 1,1; - + 0 @@ -2950,7 +1922,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,6;3,1;5,6; + 5,6; @@ -2963,7 +1935,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 7 - + 0 @@ -3000,10 +1972,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 7,1;1,3;6,5; + 6,5; - + 1 @@ -3036,11 +2008,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 14,1;1,1; + 1,1; - + 235 @@ -3050,7 +2022,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).LZ @@ -3143,7 +2115,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(T).SX - + 1 @@ -3183,10 +2155,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(T).SX - 0,0;8,0; + 8,0; - + 5 @@ -3226,11 +2198,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(T).SX - 0,0;0,9; + 0,9; - + 405 @@ -3263,10 +2235,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;24,23; + 24,23; - + 204 @@ -3299,10 +2271,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;24,0; + 24,0; - + 349 @@ -3335,21 +2307,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 80,158;1,1; + 1,1; - + QFrame::NoFrame - - - 425 - 294 - 15 - 20 - - 251 @@ -3368,24 +2332,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} R - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 425 + 294 + 15 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + QFrame::NoFrame - - - 360 - 121 - 15 - 20 - - 251 @@ -3404,13 +2368,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} S - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 360 + 121 + 15 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 210 @@ -3443,21 +2415,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,59;0,0; + 0,0; - + QFrame::NoFrame - - - 200 - 126 - 20 - 20 - - 0 @@ -3476,13 +2440,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Lz' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 200 + 126 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 210 @@ -3515,10 +2487,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,118;0,0; + 0,0; - + 300 @@ -3528,7 +2500,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).LX @@ -3635,7 +2607,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - + 644 @@ -3668,21 +2640,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,56;23,1; + 23,1; - + QFrame::NoFrame - - - 670 - 206 - 15 - 20 - - 251 @@ -3701,24 +2665,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} R - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 670 + 206 + 15 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + QFrame::NoFrame - - - 574 - 192 - 15 - 20 - - 251 @@ -3737,13 +2701,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} S - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 574 + 192 + 15 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 593 @@ -3776,7 +2748,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 74,26;1,1; + 1,1; @@ -3812,7 +2784,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - + 600 @@ -3845,21 +2817,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;87,1; + 87,1; - + QFrame::NoFrame - - - 484 - 281 - 20 - 20 - - 0 @@ -3878,24 +2842,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} M0,M2 - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame + ESimpleLabel::WidthAndHeight - 634 + 484 281 20 20 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 0 @@ -3914,7 +2878,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} M1 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 634 + 281 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3972,7 +2944,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(T).SX - + 1 @@ -4012,10 +2984,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(T).SX - 0,0;8,0; + 8,0; - + 5 @@ -4055,7 +3027,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(T).SX - 0,0;0,9; + 0,9; @@ -4092,40 +3064,80 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid + + + caGraphics::Circle + + + + 460 + 56 + 10 + 10 + + + + + 153 + 255 + 255 + + + + Filled + + + + 153 + 255 + 255 + + + + Solid + + 460 41 - 102 - 42 + 12 + 13 - + - caGraphics::Circle + caGraphics::Rectangle 0 - 15 + 0 10 10 + + 1 + - 153 + 255 255 255 - - Filled + + + 255 + 255 + 255 + - 153 + 255 255 255 @@ -4133,289 +3145,239 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - - - - - 0 - 0 - 12 - 13 - + + $(P)$(T).SX - - - caGraphics::Rectangle - - - - 0 - 0 - 10 - 10 - - - - 1 - - - - 255 - 255 - 255 - - - - - 255 - 255 - 255 - - - - - 255 - 255 - 255 - - - - Solid - - - $(P)$(T).SX - - - - - - 1 - 5 - 9 - 1 - - - - 1 - - - - 255 - 255 - 255 - - - - - 255 - 255 - 255 - - - - - 255 - 255 - 255 - - - - Solid - - - $(P)$(T).SX - - - 0,0;8,0; - - - - - - 5 - 1 - 1 - 10 - - - - 1 - - - - 255 - 255 - 255 - - - - - 255 - 255 - 255 - - - - - 255 - 255 - 255 - - - - Solid - - - $(P)$(T).SX - - - 0,0;0,9; - - - - - caGraphics::Circle - + - 0 - 30 - 10 - 10 + 1 + 5 + 9 + 1 - - - 251 - 243 - 74 - - - - Filled - - - - 251 - 243 - 74 - - - - Solid - - - - - QFrame::NoFrame - - - - 20 - 15 - 80 - 10 - + + 1 - 0 - 0 - 0 + 255 + 255 + 255 - 0 - 0 - 0 - - - - PIVOT POINTS - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 20 - 0 - 80 - 10 - - - - - 0 - 0 - 0 + 255 + 255 + 255 - - - 0 - 0 - 0 + + + 255 + 255 + 255 - - LOCAL ORIGIN + + Solid - - ESimpleLabel::Height + + $(P)$(T).SX - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + 8,0; - - - QFrame::NoFrame - + - 20 - 30 - 80 + 5 + 1 + 1 10 + + 1 + - 0 - 0 - 0 + 255 + 255 + 255 - 0 - 0 - 0 + 255 + 255 + 255 - - 'FIXED' POINT + + + 255 + 255 + 255 + - - ESimpleLabel::Height + + Solid - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + $(P)$(T).SX + + + 0,9; - + + + caGraphics::Circle + + + + 460 + 71 + 10 + 10 + + + + + 251 + 243 + 74 + + + + Filled + + + + 251 + 243 + 74 + + + + Solid + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + PIVOT POINTS + + + ESimpleLabel::WidthAndHeight + + + + 480 + 56 + 80 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + LOCAL ORIGIN + + + ESimpleLabel::WidthAndHeight + + + + 480 + 41 + 80 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + 'FIXED' POINT + + + ESimpleLabel::WidthAndHeight + + + + 480 + 71 + 80 + 10 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + 237 @@ -4424,7 +3386,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 7 - + 0 @@ -4461,10 +3423,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 7,1;1,3;6,5; + 6,5; - + 1 @@ -4497,11 +3459,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 14,1;1,1; + 1,1; - + 254 @@ -4534,10 +3496,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Dash - 1,1;1,38; + 1,38; - + 310 @@ -4546,18 +3508,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 59 - + QFrame::NoFrame - - - 0 - 43 - 20 - 14 - - 255 @@ -4576,13 +3530,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +X' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 43 + 20 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 21 @@ -4619,10 +3581,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 13,1;1,6;11,10; + 11,10; - + 24 @@ -4655,10 +3617,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 27,1;1,1; + 1,1; - + 51 @@ -4691,10 +3653,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,32;1,1; + 1,1; - + 44 @@ -4731,21 +3693,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,13;7,1;13,13; + 13,13; - + QFrame::NoFrame - - - 44 - 0 - 20 - 14 - - 255 @@ -4764,14 +3718,22 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +Z' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 44 + 0 + 20 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 552 @@ -4780,7 +3742,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 55 - + 7 @@ -4813,10 +3775,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,32;1,1; + 1,1; - + 0 @@ -4853,21 +3815,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,13;7,1;13,13; + 13,13; - + QFrame::NoFrame - - - 0 - 0 - 20 - 14 - - 255 @@ -4886,14 +3840,22 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +Y' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 0 + 20 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 256 @@ -4926,10 +3888,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;0,24; + 0,24; - + 406 @@ -4962,10 +3924,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;0,24; + 0,24; - + 0 @@ -5010,7 +3972,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - + 0 @@ -5043,21 +4005,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;697,1; + 697,1; - + QFrame::NoFrame - - - 350 - 5 - 350 - 15 - - 3 @@ -5079,13 +4033,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} ($(P)$(T)) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 350 + 5 + 350 + 15 + + - + 0 @@ -5095,7 +4057,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).DESC @@ -5137,7 +4099,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - + 581 @@ -5147,7 +4109,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fpSelect.VAL @@ -5295,558 +4257,638 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - - table_setup_NEWPORT_refresh.adl + + table_setup_NEWPORT_refresh.adl + + + P=$(P),Q=$(Q),T=$(T) + + + true + + + + + + 495 + 116 + 60 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).RX + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 495 + 135 + 60 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).RY + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 615 + 115 + 60 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).SX + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 615 + 155 + 60 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).SZ + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 615 + 135 + 60 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).SY + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 - - P=$(P),Q=$(Q),T=$(T) + + caLineEdit::Static - - true + + decimal - + 460 115 - 217 + 142 62 - - - - 35 - 1 - 60 - 18 - - - - caLineEdit::Height - - - $(P)$(T).RX + + + QFrame::NoFrame - 0 - 0 - 0 + 251 + 243 + 74 - - 115 - 223 - 255 + + 251 + 243 + 74 - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static + + Rx' - - decimal + + ESimpleLabel::WidthAndHeight - - - 35 - 20 - 60 - 18 + 0 + 0 + 20 + 20 - - caLineEdit::Height + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - $(P)$(T).RY + + + + QFrame::NoFrame - 0 - 0 - 0 + 251 + 243 + 74 - - 115 - 223 - 255 + + 251 + 243 + 74 - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static + + Rz' - - decimal + + ESimpleLabel::WidthAndHeight - - - 155 - 0 - 60 - 18 + 0 + 40 + 20 + 20 - - caLineEdit::Height + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - $(P)$(T).SX + + + + QFrame::NoFrame - 0 - 0 - 0 + 251 + 243 + 74 - - 115 - 223 - 255 + + 251 + 243 + 74 - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static + + Ry' - - decimal + + ESimpleLabel::WidthAndHeight - - - 155 - 40 - 60 - 18 + 0 + 20 + 20 + 20 - - caLineEdit::Height + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - $(P)$(T).SZ + + + + QFrame::NoFrame - 0 - 0 - 0 + 251 + 243 + 74 - - 115 - 223 - 255 + + 251 + 243 + 74 - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static + + Sx' - - decimal + + ESimpleLabel::WidthAndHeight - - - 155 - 20 - 60 - 18 + 120 + 0 + 20 + 20 - - caLineEdit::Height + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - $(P)$(T).SY + + + + QFrame::NoFrame - 0 - 0 - 0 + 251 + 243 + 74 - - 115 - 223 - 255 + + 251 + 243 + 74 - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal + + Sz' - - - - - 0 - 0 - 142 - 62 - + + ESimpleLabel::WidthAndHeight - - - QFrame::NoFrame - - - - 0 - 0 - 20 - 20 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - Rx' - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 40 - 20 - 20 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - Rz' - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 20 - 20 - 20 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - Ry' - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 120 - 0 - 20 - 20 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - Sx' - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 120 - 40 - 20 - 20 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - Sz' - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 120 - 20 - 20 - 20 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - Sy' - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - 35 + 120 40 - 60 - 18 + 20 + 20 - - caLineEdit::Height + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - $(P)$(T).RZ + + + + QFrame::NoFrame - 0 - 0 - 0 + 251 + 243 + 74 - - 115 - 223 - 255 + + 251 + 243 + 74 - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 + + Sy' - - 1.0 + + ESimpleLabel::WidthAndHeight - - caLineEdit::Static + + + 120 + 20 + 20 + 20 + - - decimal + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + 495 + 155 + 60 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).RZ + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 0 + 371 + 702 + 132 + + + + + 0 + 371 + 700 + 130 + + + + table_limits.adl + + + P=$(P),T=$(T) + + + + + + 290 + 345 + 120 + 20 + + + + $(P)$(T).AUNIT + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caMenu::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Angle units + + + ESimpleLabel::WidthAndHeight + + + + 205 + 348 + 80 + 14 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + caGraphics_0 caRectangle_0 caPolyLine_0 @@ -5879,133 +4921,109 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLabel_8 caLabel_9 caLabel_10 - caLabel_11 - caLabel_12 caPolyLine_11 - caLabel_13 - caLabel_14 - caLabel_15 - caLabel_16 - caLabel_17 - caLabel_18 - caLabel_19 - caLabel_20 caPolyLine_12 - caPolyLine_13 caFrame_2 - caLabel_21 + caLabel_11 + caPolyLine_13 caPolyLine_14 - caPolyLine_15 caRectangle_1 caGraphics_5 caGraphics_6 caGraphics_7 - caPolyLine_16 - caLabel_22 - caLabel_23 - caLabel_24 + caPolyLine_15 + caLabel_12 + caLabel_13 + caLabel_14 caGraphics_8 + caPolyLine_16 caPolyLine_17 - caPolyLine_18 caFrame_3 + caPolyLine_18 caPolyLine_19 - caPolyLine_20 caFrame_4 caRectangle_2 + caPolyLine_20 caPolyLine_21 - caPolyLine_22 caFrame_5 + caPolyLine_22 caPolyLine_23 caPolyLine_24 + caLabel_15 + caLabel_16 caPolyLine_25 - caLabel_25 - caLabel_26 + caLabel_17 caPolyLine_26 - caLabel_27 - caPolyLine_27 caRectangle_3 caGraphics_9 + caPolyLine_27 + caLabel_18 + caLabel_19 caPolyLine_28 - caLabel_28 - caLabel_29 - caPolyLine_29 caGraphics_10 - caPolyLine_30 - caLabel_30 - caLabel_31 + caPolyLine_29 + caLabel_20 + caLabel_21 caRectangle_4 + caPolyLine_30 caPolyLine_31 - caPolyLine_32 caFrame_6 caRectangle_5 caGraphics_11 caRectangle_6 + caPolyLine_32 caPolyLine_33 - caPolyLine_34 - caFrame_8 - caGraphics_12 - caLabel_32 - caLabel_33 - caLabel_34 caFrame_7 + caGraphics_12 + caLabel_22 + caLabel_23 + caLabel_24 + caPolyLine_34 caPolyLine_35 + caFrame_8 caPolyLine_36 - caFrame_9 + caLabel_25 caPolyLine_37 - caLabel_35 caPolyLine_38 caPolyLine_39 caPolyLine_40 + caLabel_26 + caFrame_9 caPolyLine_41 - caLabel_36 - caFrame_10 caPolyLine_42 + caLabel_27 + caFrame_10 caPolyLine_43 - caLabel_37 - caFrame_11 caPolyLine_44 - caPolyLine_45 caRectangle_7 - caPolyLine_46 - caLabel_38 + caPolyLine_45 + caLabel_28 + caFrame_11 + caLabel_29 + caLabel_30 + caLabel_31 + caLabel_32 + caLabel_33 + caLabel_34 caFrame_12 - caLabel_39 - caLabel_40 - caLabel_41 - caLabel_42 - caLabel_43 - caLabel_44 - caFrame_14 - caFrame_13 + caInclude_13 + caLabel_35 caTextEntry_0 caMenu_0 caTextEntry_1 caTextEntry_2 caTextEntry_3 + caLineEdit_0 + caMenu_1 + caRelatedDisplay_0 + caRelatedDisplay_1 caTextEntry_4 caTextEntry_5 caTextEntry_6 caTextEntry_7 caTextEntry_8 caTextEntry_9 - caTextEntry_10 - caTextEntry_11 - caTextEntry_12 - caLineEdit_0 - caLineEdit_1 - caTextEntry_13 - caTextEntry_14 - caTextEntry_15 - caLineEdit_2 - caMenu_1 - caRelatedDisplay_0 - caRelatedDisplay_1 - caTextEntry_16 - caTextEntry_17 - caTextEntry_18 - caTextEntry_19 - caTextEntry_20 - caTextEntry_21 + caMenu_2 \ No newline at end of file diff --git a/opticsApp/op/ui/table_setup_NEWPORT_refresh.ui b/opticsApp/op/ui/autoconvert/table_setup_NEWPORT_refresh.ui similarity index 50% rename from opticsApp/op/ui/table_setup_NEWPORT_refresh.ui rename to opticsApp/op/ui/autoconvert/table_setup_NEWPORT_refresh.ui index 5ad9932..e681fc9 100644 --- a/opticsApp/op/ui/table_setup_NEWPORT_refresh.ui +++ b/opticsApp/op/ui/autoconvert/table_setup_NEWPORT_refresh.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + diff --git a/opticsApp/op/ui/table_setup_PNC.ui b/opticsApp/op/ui/autoconvert/table_setup_PNC.ui similarity index 76% rename from opticsApp/op/ui/table_setup_PNC.ui rename to opticsApp/op/ui/autoconvert/table_setup_PNC.ui index 19253a4..725d474 100644 --- a/opticsApp/op/ui/table_setup_PNC.ui +++ b/opticsApp/op/ui/autoconvert/table_setup_PNC.ui @@ -7,7 +7,7 @@ 743 507 700 - 455 + 500 @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -64,7 +152,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;2,6; + 2,6; @@ -104,7 +192,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 7,0;0,2; + 0,2; @@ -141,7 +229,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,49;31,0;63,19;33,68;0,49; + 0,49; caPolyLine::Polygon @@ -250,14 +338,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 40 - 316 - 120 - 20 - - 0 @@ -276,11 +356,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} (+Y is up) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 40 + 316 + 120 + 20 + + @@ -292,7 +380,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).YANG @@ -337,14 +425,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 95 - 33 - 90 - 15 - - 0 @@ -363,24 +443,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Table angle - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 95 - 48 + 33 90 15 + + + + QFrame::NoFrame + 0 @@ -399,11 +479,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} (degrees) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 95 + 48 + 90 + 15 + + @@ -435,21 +523,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;81,0; + 81,0; QFrame::NoFrame - - - 141 - 128 - 20 - 15 - - 158 @@ -468,7 +548,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +Z' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 141 + 128 + 20 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -478,14 +566,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 36 - 155 - 20 - 15 - - 158 @@ -504,7 +584,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +X' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 36 + 155 + 20 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -547,7 +635,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;1,343; + 1,343; @@ -654,7 +742,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 48,26;1,1; + 1,1; @@ -687,7 +775,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 21,0;0,65; + 0,65; @@ -727,7 +815,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 30,1;1,52; + 1,52; @@ -776,14 +864,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 90 - 20 - 20 - - 0 @@ -802,7 +882,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +X - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 90 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -845,7 +933,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 13,1;1,6;11,10; + 11,10; @@ -881,7 +969,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 61,1;1,1; + 1,1; @@ -917,7 +1005,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,68;1,1; + 1,1; @@ -957,21 +1045,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,15;8,1;15,15; + 15,15; QFrame::NoFrame - - - 78 - 0 - 20 - 20 - - 0 @@ -990,49 +1070,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +Z - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 78 + 0 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - QFrame::NoFrame - - - - 0 - 446 - 30 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - V5.1 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - @@ -1063,18 +1115,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caMenu::Static - + QFrame::NoFrame - - - 450 - 311 - 80 - 20 - - 0 @@ -1093,24 +1137,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Geometry - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 450 + 311 + 80 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + QFrame::NoFrame - - - 425 - 351 - 270 - 14 - - 253 @@ -1138,24 +1182,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} You're using the wrong setup display - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame + ESimpleLabel::WidthAndHeight 425 - 336 + 351 270 14 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 253 @@ -1183,98 +1227,228 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} This display is for the PNC geometry - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 425 + 336 + 270 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - QFrame::NoFrame + + + caGraphics::Circle - 5 - 376 - 110 - 20 + 460 + 56 + 10 + 10 - 255 + 153 255 255 - - - 255 + + Filled + + + + 153 255 255 - - User limits - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + Solid - + - 0 - 371 - 709 - 2 + 460 + 41 + 12 + 13 - - 2 - - - - 0 - 0 - 0 - - + + + caGraphics::Rectangle + + + + 0 + 0 + 10 + 10 + + + + 1 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + $(P)$(T).SX + + + + + + 1 + 5 + 9 + 1 + + + + 1 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + $(P)$(T).SX + + + 8,0; + + + + + + 5 + 1 + 1 + 10 + + + + 1 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + $(P)$(T).SX + + + 0,9; + + + + + + caGraphics::Circle + + + + 460 + 71 + 10 + 10 + + + + + 251 + 243 + 74 + + Filled - 0 - 0 - 0 + 251 + 243 + 74 Solid - - 1,1;708,1; - - - - - 110 - 401 - 80 - 18 - - - - caLineEdit::Height - - - $(P)$(T).UHX + + + QFrame::NoFrame @@ -1284,48 +1458,33 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - - 115 - 223 - 255 + + 0 + 0 + 0 - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static + + PIVOT POINTS - - compact + + ESimpleLabel::WidthAndHeight - - - 195 - 401 + 480 + 56 80 - 18 + 10 - - caLineEdit::Height + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - $(P)$(T).UHY + + + + QFrame::NoFrame @@ -1335,46 +1494,34 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - - 115 - 223 - 255 + + 0 + 0 + 0 - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 + + LOCAL ORIGIN - - 1.0 + + ESimpleLabel::WidthAndHeight - - caLineEdit::Static + + + 480 + 41 + 80 + 10 + - - compact + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter QFrame::NoFrame - - - 60 - 401 - 40 - 20 - - 0 @@ -1390,377 +1537,321 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - High + 'FIXED' POINT - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + ESimpleLabel::WidthAndHeight - - - 110 - 421 + 480 + 71 80 - 18 + 10 - - caLineEdit::Height - - - $(P)$(T).ULX - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + - 195 - 421 - 80 - 18 + 110 + 242 + 2 + 51 - - caLineEdit::Height - - - $(P)$(T).ULY + + 2 - 0 - 0 - 0 - - - - - 115 - 223 + 255 + 255 255 - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - QFrame::NoFrame - - - - 60 - 421 - 20 - 20 - + + Filled - + - 0 - 0 - 0 - - - - - 0 - 0 - 0 + 255 + 255 + 255 - - Low - - - ESimpleLabel::Height + + Solid - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + 1,1; - + - 280 - 421 - 80 - 18 + 104 + 241 + 13 + 13 - - caLineEdit::Height - - - $(P)$(T).ULZ + + 2 - 0 - 0 - 0 + 255 + 255 + 255 - - 115 - 223 + + 255 + 255 255 - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 280 - 401 - 80 - 18 - - - - caLineEdit::Height - - - $(P)$(T).UHZ - - - - 0 - 0 - 0 - - - + - 115 - 223 + 255 + 255 255 - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static + + Solid - - compact + + 12,12; - + QFrame::NoFrame - - - 110 - 381 - 80 - 20 - - - 0 - 0 - 0 + 255 + 255 + 255 - 0 - 0 - 0 + 255 + 255 + 255 - X + BEAM - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 195 - 381 - 80 - 20 + 97 + 226 + 30 + 14 - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Y - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - + - 280 - 381 - 80 - 20 + 0 + 0 + 702 + 32 - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Z - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - + + + caGraphics::Rectangle + + + + 0 + 0 + 700 + 27 + + + + 3 + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + + + + 0 + 27 + 699 + 3 + + + + 3 + + + + 10 + 0 + 184 + + + + Filled + + + + 10 + 0 + 184 + + + + Solid + + + 697,1; + + + + + QFrame::NoFrame + + + 3 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + ($(P)$(T)) + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 350 + 5 + 350 + 15 + + + + + + + 0 + 0 + 350 + 27 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).DESC + + + + 10 + 0 + 184 + + + + + 236 + 236 + 236 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + - + - 405 - 421 - 80 + 495 + 116 + 60 18 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)$(T).ULAX + $(P)$(T).RX @@ -1795,23 +1886,23 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLineEdit::Static - compact + decimal - + - 405 - 401 - 80 + 495 + 135 + 60 18 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)$(T).UHAX + $(P)$(T).RY @@ -1846,23 +1937,23 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLineEdit::Static - compact + decimal - + - 490 - 421 - 80 + 615 + 115 + 60 18 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)$(T).ULAY + $(P)$(T).SX @@ -1897,23 +1988,23 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLineEdit::Static - compact + decimal - + - 490 - 401 - 80 + 615 + 155 + 60 18 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)$(T).UHAY + $(P)$(T).SZ @@ -1948,23 +2039,23 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLineEdit::Static - compact + decimal - + - 575 - 421 - 80 + 615 + 135 + 60 18 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)$(T).ULAZ + $(P)$(T).SY @@ -1999,1406 +2090,277 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLineEdit::Static - compact + decimal - - - - 575 - 401 - 80 - 18 - - - - caLineEdit::Height - - - $(P)$(T).UHAZ + + + QFrame::NoFrame - 0 - 0 - 0 + 251 + 243 + 74 - - 115 - 223 - 255 + + 251 + 243 + 74 - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 + + Rx' - - 1.0 + + ESimpleLabel::WidthAndHeight - - caLineEdit::Static + + + 460 + 115 + 20 + 20 + - - compact + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + QFrame::NoFrame - - - 405 - 381 - 80 - 20 - - - 0 - 0 - 0 + 251 + 243 + 74 - 0 - 0 - 0 + 251 + 243 + 74 - AX + Rz' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 460 + 155 + 20 + 20 + - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + QFrame::NoFrame - - - 490 - 381 - 80 - 20 - - - 0 - 0 - 0 + 251 + 243 + 74 - 0 - 0 - 0 + 251 + 243 + 74 - AY + Ry' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 460 + 135 + 20 + 20 + - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + QFrame::NoFrame - - - 575 - 381 - 80 - 20 - - - 0 - 0 - 0 + 251 + 243 + 74 - 0 - 0 - 0 + 251 + 243 + 74 - AZ + Sx' - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + ESimpleLabel::WidthAndHeight - - - 475 - 441 - 115 - 15 + 580 + 115 + 20 + 20 - - caLineEdit::Height + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - $(P)$(T).AEGU + + + + QFrame::NoFrame - 10 - 0 - 184 + 251 + 243 + 74 - - 200 - 200 - 200 + + 251 + 243 + 74 - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal + + Sz' - - caLineEdit::Static + + ESimpleLabel::WidthAndHeight - - - 175 - 441 - 115 - 15 + 580 + 155 + 20 + 20 - - caLineEdit::Height + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - $(P)$(T).LEGU + + + + QFrame::NoFrame - 10 - 0 - 184 + 251 + 243 + 74 - - 200 - 200 - 200 + + 251 + 243 + 74 - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static + + Sy' - - - - caGraphics::Circle + + ESimpleLabel::WidthAndHeight - 460 - 56 - 10 - 10 + 580 + 135 + 20 + 20 - - - 153 - 255 - 255 - - - - Filled - - - - 153 - 255 - 255 - - - - Solid + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - 460 - 41 - 12 - 13 - - - - - caGraphics::Rectangle - - - - 0 - 0 - 10 - 10 - - - - 1 - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - $(P)$(T).SX - - - - - - 1 - 5 - 9 - 1 - - - - 1 - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - $(P)$(T).SX - - - 0,0;8,0; - - - - - - 5 - 1 - 1 - 10 - - - - 1 - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - $(P)$(T).SX - - - 0,0;0,9; - - - - - - caGraphics::Circle - - - - 460 - 71 - 10 - 10 - - - - - 251 - 243 - 74 - - - - Filled - - - - 251 - 243 - 74 - - - - Solid - - - - - QFrame::NoFrame - - - - 480 - 56 - 80 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - PIVOT POINTS - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 480 - 41 - 80 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - LOCAL ORIGIN - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 480 - 71 - 80 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - 'FIXED' POINT - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 110 - 242 - 2 - 51 - - - - 2 - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - 1,50;1,1; - - - - - - 104 - 241 - 13 - 13 - - - - 2 - - - - 255 - 255 - 255 - - - - - 255 - 255 - 255 - - - - - 255 - 255 - 255 - - - - Solid - - - 1,12;7,1;12,12; - - - - - QFrame::NoFrame - - - - 97 - 226 - 30 - 14 - - - - - 255 - 255 - 255 - - - - - 255 - 255 - 255 - - - - BEAM - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 0 - 0 - 702 - 32 - - - - - caGraphics::Rectangle - - - - 0 - 0 - 700 - 27 - - - - 3 - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - - - - 0 - 27 - 699 - 3 - - - - 3 - - - - 10 - 0 - 184 - - - - Filled - - - - 10 - 0 - 184 - - - - Solid - - - 1,1;697,1; - - - - - QFrame::NoFrame - - - - 350 - 5 - 350 - 15 - - - - 3 - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - ($(P)$(T)) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 0 - 0 - 350 - 27 - - - - caLineEdit::Height - - - $(P)$(T).DESC - - - - 10 - 0 - 184 - - - - - 236 - 236 - 236 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - - 460 - 115 - 217 - 62 - - - - - - 35 - 1 - 60 - 18 - - - - caLineEdit::Height - - - $(P)$(T).RX - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 35 - 20 - 60 - 18 - - - - caLineEdit::Height - - - $(P)$(T).RY - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 155 - 0 - 60 - 18 - - - - caLineEdit::Height - - - $(P)$(T).SX - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 155 - 40 - 60 - 18 - - - - caLineEdit::Height - - - $(P)$(T).SZ - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 155 - 20 - 60 - 18 - - - - caLineEdit::Height - - - $(P)$(T).SY - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 0 - 0 - 20 - 20 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - Rx' - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 40 - 20 - 20 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - Rz' - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 20 - 20 - 20 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - Ry' - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 120 - 0 - 20 - 20 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - Sx' - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 120 - 40 - 20 - 20 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - Sz' - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 120 - 20 - 20 - 20 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - Sy' - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 35 - 40 - 60 - 18 - - - - caLineEdit::Height - - - $(P)$(T).RZ - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - + + + + 495 + 155 + 60 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).RZ + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + - + 580 @@ -3408,7 +2370,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fpSelect.VAL @@ -3632,18 +2594,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - + QFrame::NoFrame - - - 320 - 71 - 20 - 20 - - 0 @@ -3662,13 +2616,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} M2 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 320 + 71 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 311 @@ -3677,7 +2639,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 7 - + 0 @@ -3714,10 +2676,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 7,1;1,3;6,5; + 6,5; - + 1 @@ -3750,11 +2712,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 14,1;1,1; + 1,1; - + 327 @@ -3763,7 +2725,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 17 - + 2 @@ -3796,10 +2758,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,14;1,1; + 1,1; - + 0 @@ -3836,11 +2798,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,6;3,1;5,6; + 5,6; - + 200 @@ -3849,7 +2811,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 206 - + 4 @@ -3882,10 +2844,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;24,0; + 24,0; - + 5 @@ -3918,10 +2880,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;24,0; + 24,0; - + 0 @@ -3930,7 +2892,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 205 - + 10 @@ -3963,21 +2925,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,59;0,0; + 0,0; - + QFrame::NoFrame - - - 0 - 60 - 20 - 20 - - 0 @@ -3996,13 +2950,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Lz' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 60 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 10 @@ -4035,12 +2997,12 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,120;0,0; + 0,0; - + 235 @@ -4050,7 +3012,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).LZ @@ -4091,18 +3053,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} decimal - + QFrame::NoFrame - - - 319 - 301 - 20 - 20 - - 0 @@ -4121,13 +3075,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Lx' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 319 + 301 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 345 @@ -4160,10 +3122,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;61,0; + 61,0; - + 257 @@ -4196,10 +3158,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;58,0; + 58,0; - + 300 @@ -4209,7 +3171,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).LX @@ -4250,7 +3212,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} decimal - + 256 @@ -4283,10 +3245,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;0,24; + 0,24; - + 406 @@ -4319,7 +3281,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;0,24; + 0,24; @@ -4388,18 +3350,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - + QFrame::NoFrame - - - 264 - 250 - 20 - 20 - - 0 @@ -4418,24 +3372,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} M1 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 264 + 250 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + QFrame::NoFrame - - - 378 - 243 - 20 - 20 - - 0 @@ -4454,13 +3408,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} M0 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 378 + 243 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 256 @@ -4469,18 +3431,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 59 - + QFrame::NoFrame - - - 0 - 43 - 20 - 14 - - 255 @@ -4499,24 +3453,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +X' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 43 + 20 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + QFrame::NoFrame - - - 44 - 0 - 20 - 14 - - 255 @@ -4535,13 +3489,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +Z' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 44 + 0 + 20 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 51 @@ -4574,10 +3536,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,32;1,1; + 1,1; - + 44 @@ -4614,10 +3576,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,13;7,1;13,13; + 13,13; - + 21 @@ -4654,10 +3616,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 13,1;1,6;11,10; + 11,10; - + 24 @@ -4690,7 +3652,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 27,1;1,1; + 1,1; @@ -4727,7 +3689,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - + 405 @@ -4760,10 +3722,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;24,23; + 24,23; - + 349 @@ -4796,21 +3758,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 80,158;1,1; + 1,1; - + QFrame::NoFrame - - - 360 - 121 - 15 - 20 - - 251 @@ -4829,13 +3783,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} S - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 360 + 121 + 15 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 400 @@ -4887,7 +3849,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(T).SX - + 1 @@ -4927,10 +3889,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(T).SX - 0,0;8,0; + 8,0; - + 5 @@ -4970,22 +3932,14 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(T).SX - 0,0;0,9; + 0,9; - + QFrame::NoFrame - - - 425 - 294 - 15 - 20 - - 251 @@ -5004,13 +3958,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} R - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 425 + 294 + 15 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 386 @@ -5019,7 +3981,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 41 - + 0 @@ -5028,7 +3990,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 7 - + 0 @@ -5065,10 +4027,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 7,1;1,3;6,5; + 6,5; - + 1 @@ -5101,11 +4063,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 14,1;1,1; + 1,1; - + 18 @@ -5138,7 +4100,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Dash - 1,1;1,38; + 1,38; @@ -5274,7 +4236,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - + 591 @@ -5307,21 +4269,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;87,1; + 87,1; - + QFrame::NoFrame - - - 475 - 276 - 20 - 20 - - 0 @@ -5339,25 +4293,25 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} M1 - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame + + ESimpleLabel::WidthAndHeight - 625 + 475 276 20 20 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 0 @@ -5376,24 +4330,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} M0 - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame + ESimpleLabel::WidthAndHeight - 550 + 625 276 20 20 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 0 @@ -5412,13 +4366,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} M2 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 550 + 276 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 509 @@ -5427,7 +4389,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 55 - + 7 @@ -5460,10 +4422,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,32;1,1; + 1,1; - + 0 @@ -5500,21 +4462,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,13;7,1;13,13; + 13,13; - + QFrame::NoFrame - - - 0 - 0 - 20 - 14 - - 255 @@ -5533,14 +4487,22 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +Y' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 0 + 20 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 630 @@ -5592,7 +4554,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(T).SX - + 1 @@ -5632,10 +4594,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(T).SX - 0,0;8,0; + 8,0; - + 5 @@ -5675,11 +4637,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(T).SX - 0,0;0,9; + 0,9; - + 635 @@ -5712,21 +4674,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,27;23,1; + 23,1; - + QFrame::NoFrame - - - 661 - 231 - 15 - 20 - - 251 @@ -5745,13 +4699,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} R - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 661 + 231 + 15 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 584 @@ -5784,7 +4746,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 74,51;1,1; + 1,1; @@ -5820,10 +4782,30 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - + QFrame::NoFrame + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + S + + + ESimpleLabel::WidthAndHeight + 565 @@ -5832,25 +4814,95 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 20 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 0 + 371 + 702 + 132 + + + + + 0 + 371 + 700 + 130 + + + + table_limits.adl + + + P=$(P),T=$(T) + + + + + + 290 + 345 + 120 + 20 + + + + $(P)$(T).AUNIT + - 251 - 243 - 74 + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caMenu::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 - 251 - 243 - 74 + 0 + 0 + 0 - S + Angle units - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 205 + 348 + 80 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -5885,107 +4937,97 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLabel_7 caLabel_8 caLabel_9 + caGraphics_4 + caRectangle_0 + caPolyLine_11 + caPolyLine_12 + caFrame_2 + caGraphics_5 caLabel_10 caLabel_11 - caPolyLine_11 caLabel_12 + caPolyLine_13 + caPolyLine_14 caLabel_13 + caRectangle_1 + caPolyLine_15 caLabel_14 + caFrame_3 caLabel_15 caLabel_16 caLabel_17 caLabel_18 caLabel_19 - caGraphics_4 - caRectangle_0 - caPolyLine_12 - caPolyLine_13 - caFrame_2 - caGraphics_5 caLabel_20 - caLabel_21 - caLabel_22 - caPolyLine_14 - caPolyLine_15 - caLabel_23 - caRectangle_1 - caPolyLine_16 - caLabel_24 - caFrame_3 - caLabel_25 - caLabel_26 - caLabel_27 - caLabel_28 - caLabel_29 - caLabel_30 - caFrame_4 caRectangle_2 caGraphics_6 - caLabel_31 + caLabel_21 + caPolyLine_16 caPolyLine_17 + caFrame_4 caPolyLine_18 - caFrame_5 caPolyLine_19 + caFrame_5 caPolyLine_20 - caFrame_6 caPolyLine_21 caPolyLine_22 + caLabel_22 caPolyLine_23 - caLabel_32 - caPolyLine_24 - caFrame_8 caFrame_7 - caLabel_33 + caFrame_6 + caLabel_23 + caPolyLine_24 caPolyLine_25 caPolyLine_26 caPolyLine_27 - caPolyLine_28 caGraphics_7 caGraphics_8 - caLabel_34 - caLabel_35 - caLabel_36 - caLabel_37 + caLabel_24 + caLabel_25 + caLabel_26 + caLabel_27 + caPolyLine_28 caPolyLine_29 caPolyLine_30 caPolyLine_31 - caPolyLine_32 - caFrame_9 + caFrame_8 caGraphics_9 + caPolyLine_32 caPolyLine_33 - caPolyLine_34 - caLabel_38 + caLabel_28 caRectangle_3 + caPolyLine_34 caPolyLine_35 + caFrame_9 + caLabel_29 caPolyLine_36 - caFrame_10 - caLabel_39 caPolyLine_37 - caPolyLine_38 - caFrame_12 - caPolyLine_39 caFrame_11 + caPolyLine_38 + caFrame_10 caRectangle_4 caGraphics_10 caGraphics_11 caGraphics_12 + caPolyLine_39 + caLabel_30 + caLabel_31 + caLabel_32 caPolyLine_40 - caLabel_40 - caLabel_41 - caLabel_42 caPolyLine_41 - caPolyLine_42 - caLabel_43 - caFrame_13 + caLabel_33 + caFrame_12 caRectangle_5 + caPolyLine_42 caPolyLine_43 + caFrame_13 caPolyLine_44 - caFrame_14 + caLabel_34 caPolyLine_45 - caLabel_44 - caPolyLine_46 caGraphics_13 - caLabel_45 + caLabel_35 + caInclude_14 + caLabel_36 caTextEntry_0 caMenu_0 caTextEntry_1 @@ -5995,26 +5037,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caTextEntry_5 caTextEntry_6 caTextEntry_7 - caTextEntry_8 - caTextEntry_9 - caTextEntry_10 - caTextEntry_11 - caTextEntry_12 caLineEdit_0 - caLineEdit_1 - caTextEntry_13 - caTextEntry_14 - caTextEntry_15 - caTextEntry_16 - caTextEntry_17 - caTextEntry_18 - caTextEntry_19 - caLineEdit_2 caMenu_1 caRelatedDisplay_0 caRelatedDisplay_1 - caTextEntry_20 - caTextEntry_21 + caTextEntry_8 + caTextEntry_9 + caMenu_2 \ No newline at end of file diff --git a/opticsApp/op/ui/table_setup_PNC_refresh.ui b/opticsApp/op/ui/autoconvert/table_setup_PNC_refresh.ui similarity index 50% rename from opticsApp/op/ui/table_setup_PNC_refresh.ui rename to opticsApp/op/ui/autoconvert/table_setup_PNC_refresh.ui index 7b13a1a..1361e73 100644 --- a/opticsApp/op/ui/table_setup_PNC_refresh.ui +++ b/opticsApp/op/ui/autoconvert/table_setup_PNC_refresh.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + diff --git a/opticsApp/op/ui/table_setup_SRI.ui b/opticsApp/op/ui/autoconvert/table_setup_SRI.ui similarity index 76% rename from opticsApp/op/ui/table_setup_SRI.ui rename to opticsApp/op/ui/autoconvert/table_setup_SRI.ui index c848701..a60c51b 100644 --- a/opticsApp/op/ui/table_setup_SRI.ui +++ b/opticsApp/op/ui/autoconvert/table_setup_SRI.ui @@ -4,10 +4,10 @@ - 20 - 505 + 723 + 30 700 - 455 + 500 @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -64,7 +152,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;2,6; + 2,6; @@ -104,7 +192,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 7,0;0,2; + 0,2; @@ -141,7 +229,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,49;31,0;63,19;33,68;0,49; + 0,49; caPolyLine::Polygon @@ -411,7 +499,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;87,1; + 87,1; @@ -427,14 +515,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 0 - 20 - 20 - - 0 @@ -453,7 +533,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} M0 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 0 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -463,14 +551,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 150 - 0 - 20 - 20 - - 0 @@ -489,7 +569,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} M1 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 150 + 0 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -499,14 +587,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 75 - 0 - 20 - 20 - - 0 @@ -525,7 +605,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} M2 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 75 + 0 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -536,14 +624,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 40 - 316 - 120 - 20 - - 0 @@ -562,11 +642,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} (+Y is up) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 40 + 316 + 120 + 20 + + @@ -578,7 +666,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).YANG @@ -623,14 +711,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 95 - 33 - 90 - 15 - - 0 @@ -649,24 +729,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Table angle - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 95 - 48 + 33 90 15 + + + + QFrame::NoFrame + 0 @@ -685,11 +765,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} (degrees) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 95 + 48 + 90 + 15 + + @@ -721,21 +809,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;81,0; + 81,0; QFrame::NoFrame - - - 141 - 128 - 20 - 15 - - 158 @@ -754,7 +834,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +Z' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 141 + 128 + 20 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -764,14 +852,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 36 - 155 - 20 - 15 - - 158 @@ -790,7 +870,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +X' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 36 + 155 + 20 + 15 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -833,7 +921,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;1,343; + 1,343; @@ -940,7 +1028,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 48,26;1,1; + 1,1; @@ -973,7 +1061,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 21,0;0,65; + 0,65; @@ -1013,7 +1101,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 30,1;1,52; + 1,52; @@ -1062,14 +1150,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 90 - 20 - 20 - - 0 @@ -1088,7 +1168,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +X - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 90 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1131,7 +1219,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 13,1;1,6;11,10; + 11,10; @@ -1167,7 +1255,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 61,1;1,1; + 1,1; @@ -1203,7 +1291,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,68;1,1; + 1,1; @@ -1243,21 +1331,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,15;8,1;15,15; + 15,15; QFrame::NoFrame - - - 78 - 0 - 20 - 20 - - 0 @@ -1276,7 +1356,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +Z - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 78 + 0 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1287,241 +1375,291 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 446 - 30 - 10 - - - 0 + 253 0 0 - 0 + 253 0 0 + + caLabel::IfZero + + + $(P)$(Q):geomIsSRI + - V5.1 + You're using the wrong setup display - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + ESimpleLabel::WidthAndHeight - - - 540 - 311 - 100 - 20 + 425 + 351 + 270 + 14 - - $(P)$(T).GEOM - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caMenu::Static + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter QFrame::NoFrame - - - 450 - 311 - 80 - 20 - - - 0 + 253 0 0 - 0 + 253 0 0 - - Geometry + + caLabel::IfZero - - ESimpleLabel::Height + + $(P)$(Q):geomIsSRI - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + This display is for the SRI geometry - - - - QFrame::NoFrame + + ESimpleLabel::WidthAndHeight 425 - 351 + 336 270 14 - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - caLabel::IfZero - - - $(P)$(Q):geomIsSRI - - - You're using the wrong setup display - - - ESimpleLabel::Height - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - QFrame::NoFrame + + + + 518 + 219 + 22 + 55 + + + + + + 7 + 20 + 2 + 33 + + + + 2 + + + + 255 + 255 + 255 + + + + Filled + + + + 255 + 255 + 255 + + + + Solid + + + 1,1; + + + + + + 0 + 17 + 14 + 14 + + + + 2 + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + Solid + + + 13,13; + + + + + QFrame::NoFrame + + + + 255 + 255 + 255 + + + + + 255 + 255 + 255 + + + + +Y' + + + ESimpleLabel::WidthAndHeight + + + + 0 + 0 + 20 + 14 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + caGraphics::Rectangle - 425 - 336 - 270 - 14 + 230 + 41 + 200 + 250 - 253 - 0 - 0 - - - - - 253 - 0 - 0 + 78 + 165 + 249 - - caLabel::IfZero - - - $(P)$(Q):geomIsSRI - - - This display is for the SRI geometry + + Filled - - ESimpleLabel::Height + + + 78 + 165 + 249 + - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + Solid - - - QFrame::NoFrame + + + caGraphics::Circle - 5 - 376 - 110 - 20 + 250 + 261 + 10 + 10 - 255 + 153 255 255 - - - 255 + + Filled + + + + 153 255 255 - - User limits - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + Solid - + + + caGraphics::Circle + - 0 - 371 - 709 - 2 + 325 + 56 + 10 + 10 - - 2 - - 0 - 0 - 0 + 153 + 255 + 255 @@ -1529,132 +1667,52 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - 0 - 0 - 0 + 153 + 255 + 255 Solid - - 1,1;708,1; - - + + + caGraphics::Circle + - 110 - 401 - 80 - 18 + 345 + 128 + 10 + 10 - - caLineEdit::Height - - - $(P)$(T).UHX - - 0 - 0 - 0 - - - - - 115 - 223 - 255 + 251 + 243 + 74 - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 195 - 401 - 80 - 18 - - - - caLineEdit::Height - - - $(P)$(T).UHY - - - - 0 - 0 - 0 - + + Filled - + - 115 - 223 - 255 + 251 + 243 + 74 - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact + + Solid - + QFrame::NoFrame - - - 60 - 401 - 40 - 20 - - 0 @@ -1670,29 +1728,26 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - High + M0 - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + ESimpleLabel::WidthAndHeight - - - 110 - 421 - 80 - 18 + 264 + 250 + 20 + 20 - - caLineEdit::Height + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - $(P)$(T).ULX + + + + QFrame::NoFrame @@ -1702,97 +1757,34 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 195 - 421 - 80 - 18 - - - - caLineEdit::Height - - - $(P)$(T).ULY - - - + 0 0 0 - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact + + M1 - - - - QFrame::NoFrame + + ESimpleLabel::WidthAndHeight - 60 - 421 + 378 + 258 20 20 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 0 @@ -1808,1119 +1800,33 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - Low + M2 - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + ESimpleLabel::WidthAndHeight - - - 280 - 421 - 80 - 18 + 320 + 71 + 20 + 20 - - caLineEdit::Height - - - $(P)$(T).ULZ - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + - 280 - 401 - 80 - 18 + 236 + 263 + 17 + 7 - - caLineEdit::Height - - - $(P)$(T).UHZ - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - QFrame::NoFrame - - - - 110 - 381 - 80 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - X - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 195 - 381 - 80 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Y - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 280 - 381 - 80 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Z - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 405 - 421 - 80 - 18 - - - - caLineEdit::Height - - - $(P)$(T).ULAX - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 405 - 401 - 80 - 18 - - - - caLineEdit::Height - - - $(P)$(T).UHAX - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 490 - 421 - 80 - 18 - - - - caLineEdit::Height - - - $(P)$(T).ULAY - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 490 - 401 - 80 - 18 - - - - caLineEdit::Height - - - $(P)$(T).UHAY - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 575 - 421 - 80 - 18 - - - - caLineEdit::Height - - - $(P)$(T).ULAZ - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 575 - 401 - 80 - 18 - - - - caLineEdit::Height - - - $(P)$(T).UHAZ - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - QFrame::NoFrame - - - - 405 - 381 - 80 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - AX - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 490 - 381 - 80 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - AY - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 575 - 381 - 80 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - AZ - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 475 - 441 - 115 - 15 - - - - caLineEdit::Height - - - $(P)$(T).AEGU - - - - 10 - 0 - 184 - - - - - 200 - 200 - 200 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - - 175 - 441 - 115 - 15 - - - - caLineEdit::Height - - - $(P)$(T).LEGU - - - - 10 - 0 - 184 - - - - - 200 - 200 - 200 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - - 518 - 219 - 22 - 55 - - - - - - 7 - 20 - 2 - 33 - - - - 2 - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - 1,32;1,1; - - - - - - 0 - 17 - 14 - 14 - - - - 2 - - - - 255 - 255 - 255 - - - - - 255 - 255 - 255 - - - - - 255 - 255 - 255 - - - - Solid - - - 1,13;7,1;13,13; - - - - - QFrame::NoFrame - - - - 0 - 0 - 20 - 14 - - - - - 255 - 255 - 255 - - - - - 255 - 255 - 255 - - - - +Y' - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - caGraphics::Rectangle - - - - 230 - 41 - 200 - 250 - - - - - 78 - 165 - 249 - - - - Filled - - - - 78 - 165 - 249 - - - - Solid - - - - - caGraphics::Circle - - - - 250 - 261 - 10 - 10 - - - - - 153 - 255 - 255 - - - - Filled - - - - 153 - 255 - 255 - - - - Solid - - - - - caGraphics::Circle - - - - 325 - 56 - 10 - 10 - - - - - 153 - 255 - 255 - - - - Filled - - - - 153 - 255 - 255 - - - - Solid - - - - - caGraphics::Circle - - - - 345 - 128 - 10 - 10 - - - - - 251 - 243 - 74 - - - - Filled - - - - 251 - 243 - 74 - - - - Solid - - - - - QFrame::NoFrame - - - - 264 - 250 - 20 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - M0 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 378 - 258 - 20 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - M1 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 320 - 71 - 20 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - M2 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 236 - 263 - 17 - 7 - - - + 0 @@ -2957,10 +1863,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 7,1;1,3;6,5; + 6,5; - + 1 @@ -2993,7 +1899,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 14,1;1,1; + 1,1; @@ -3006,7 +1912,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 7 - + 0 @@ -3043,10 +1949,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 7,1;1,3;6,5; + 6,5; - + 1 @@ -3079,7 +1985,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 14,1;1,1; + 1,1; @@ -3092,7 +1998,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 17 - + 2 @@ -3125,10 +2031,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,14;1,1; + 1,1; - + 0 @@ -3165,11 +2071,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,6;3,1;5,6; + 5,6; - + 254 @@ -3202,7 +2108,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Dash - 1,1;1,38; + 1,38; @@ -3214,18 +2120,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 59 - + QFrame::NoFrame - - - 0 - 43 - 20 - 14 - - 255 @@ -3244,24 +2142,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +X' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 43 + 20 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + QFrame::NoFrame - - - 44 - 0 - 20 - 14 - - 255 @@ -3280,13 +2178,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +Z' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 44 + 0 + 20 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 51 @@ -3319,10 +2225,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,32;1,1; + 1,1; - + 44 @@ -3359,10 +2265,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,13;7,1;13,13; + 13,13; - + 21 @@ -3399,10 +2305,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 13,1;1,6;11,10; + 11,10; - + 24 @@ -3435,7 +2341,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 27,1;1,1; + 1,1; @@ -3448,7 +2354,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 206 - + 4 @@ -3481,10 +2387,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;24,0; + 24,0; - + 5 @@ -3517,7 +2423,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;24,0; + 24,0; @@ -3529,7 +2435,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 205 - + 10 @@ -3562,21 +2468,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,59;0,0; + 0,0; - + QFrame::NoFrame - - - 0 - 60 - 20 - 20 - - 0 @@ -3595,13 +2493,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Lz' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 0 + 60 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 10 @@ -3634,7 +2540,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,120;0,0; + 0,0; @@ -3724,7 +2630,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(T).SX - + 1 @@ -3764,10 +2670,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(T).SX - 0,0;8,0; + 8,0; - + 5 @@ -3807,11 +2713,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(T).SX - 0,0;0,9; + 0,9; - + 235 @@ -3821,7 +2727,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).LZ @@ -3862,7 +2768,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} decimal - + 405 @@ -3895,21 +2801,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;24,23; + 24,23; - + QFrame::NoFrame - - - 425 - 294 - 15 - 20 - - 251 @@ -3928,13 +2826,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} R - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 425 + 294 + 15 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 349 @@ -3967,21 +2873,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 80,158;1,1; + 1,1; - + QFrame::NoFrame - - - 360 - 121 - 15 - 20 - - 251 @@ -4000,13 +2898,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} S - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 360 + 121 + 15 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 644 @@ -4039,21 +2945,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,27;23,1; + 23,1; - + QFrame::NoFrame - - - 670 - 231 - 15 - 20 - - 251 @@ -4072,13 +2970,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} R - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 670 + 231 + 15 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 593 @@ -4111,7 +3017,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 74,51;1,1; + 1,1; @@ -4147,18 +3053,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - + QFrame::NoFrame - - - 574 - 192 - 15 - 20 - - 251 @@ -4177,7 +3075,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} S - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 574 + 192 + 15 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -4268,7 +3174,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(T).SX - + 1 @@ -4308,10 +3214,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(T).SX - 0,0;8,0; + 8,0; - + 5 @@ -4351,7 +3257,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(T).SX - 0,0;0,9; + 0,9; @@ -4388,18 +3294,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - + QFrame::NoFrame - - - 480 - 56 - 80 - 10 - - 0 @@ -4418,24 +3316,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} PIVOT POINTS - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame + ESimpleLabel::WidthAndHeight 480 - 41 + 56 80 10 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 0 @@ -4454,24 +3352,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} LOCAL ORIGIN - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame + ESimpleLabel::WidthAndHeight 480 - 71 + 41 80 10 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 0 @@ -4490,24 +3388,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 'FIXED' POINT - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 480 + 71 + 80 + 10 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + QFrame::NoFrame - - - 319 - 301 - 20 - 20 - - 0 @@ -4526,13 +3424,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Lx' - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 319 + 301 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + 345 @@ -4565,10 +3471,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;61,0; + 61,0; - + 257 @@ -4601,10 +3507,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;58,0; + 58,0; - + 300 @@ -4614,7 +3520,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).LX @@ -4655,7 +3561,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} decimal - + 256 @@ -4688,10 +3594,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;0,24; + 0,24; - + 406 @@ -4724,10 +3630,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 0,0;0,24; + 0,24; - + 110 @@ -4760,10 +3666,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,50;1,1; + 1,1; - + 104 @@ -4800,21 +3706,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,12;7,1;12,12; + 12,12; - + QFrame::NoFrame - - - 97 - 226 - 30 - 14 - - 255 @@ -4833,11 +3731,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} BEAM - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 97 + 226 + 30 + 14 + + @@ -4891,7 +3797,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(T).SX - + 1 @@ -4931,10 +3837,10 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(T).SX - 0,0;8,0; + 8,0; - + 5 @@ -4974,7 +3880,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(P)$(T).SX - 0,0;0,9; + 0,9; @@ -5023,7 +3929,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - + 0 @@ -5056,21 +3962,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;697,1; + 697,1; - + QFrame::NoFrame - - - 350 - 5 - 350 - 15 - - 3 @@ -5092,13 +3990,21 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} ($(P)$(T)) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 350 + 5 + 350 + 15 + + - + 0 @@ -5108,7 +4014,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).DESC @@ -5150,549 +4056,539 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} + + + + 495 + 116 + 60 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).RX + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 495 + 135 + 60 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).RY + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 615 + 115 + 60 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).SX + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 615 + 155 + 60 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).SZ + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 615 + 135 + 60 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).SY + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + 460 115 - 217 + 142 62 - - - - 35 - 1 - 60 - 18 - - - - caLineEdit::Height - - - $(P)$(T).RX + + + QFrame::NoFrame - 0 - 0 - 0 + 251 + 243 + 74 - - 115 - 223 - 255 + + 251 + 243 + 74 - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 35 - 20 - 60 - 18 - + + Rx' - caLineEdit::Height - - - $(P)$(T).RY - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal + ESimpleLabel::WidthAndHeight - - - 155 + 0 0 - 60 - 18 + 20 + 20 - - caLineEdit::Height + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - $(P)$(T).SX + + + + QFrame::NoFrame - 0 - 0 - 0 + 251 + 243 + 74 - - 115 - 223 - 255 + + 251 + 243 + 74 - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static + + Rz' - - decimal + + ESimpleLabel::WidthAndHeight - - - 155 + 0 40 - 60 - 18 + 20 + 20 - - caLineEdit::Height + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - $(P)$(T).SZ + + + + QFrame::NoFrame - 0 - 0 - 0 + 251 + 243 + 74 - - 115 - 223 - 255 + + 251 + 243 + 74 - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static + + Ry' - - decimal + + ESimpleLabel::WidthAndHeight - - - 155 + 0 20 - 60 - 18 + 20 + 20 - - caLineEdit::Height + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - $(P)$(T).SY + + + + QFrame::NoFrame - 0 - 0 - 0 + 251 + 243 + 74 - - 115 - 223 - 255 + + 251 + 243 + 74 - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static + + Sx' - - decimal + + ESimpleLabel::WidthAndHeight - - - 0 + 120 0 - 142 - 62 + 20 + 20 - - - QFrame::NoFrame - - - - 0 - 0 - 20 - 20 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - Rx' - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 40 - 20 - 20 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - Rz' - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 20 - 20 - 20 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - Ry' - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 120 - 0 - 20 - 20 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - Sx' - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 120 - 40 - 20 - 20 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - Sz' - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 120 - 20 - 20 - 20 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - Sy' - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + - + + + QFrame::NoFrame + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Sz' + + + ESimpleLabel::WidthAndHeight + - 35 + 120 40 - 60 - 18 + 20 + 20 - - caLineEdit::Height + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - $(P)$(T).RZ + + + + QFrame::NoFrame - 0 - 0 - 0 + 251 + 243 + 74 - - 115 - 223 - 255 + + 251 + 243 + 74 - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 + + Sy' - - 1.0 + + ESimpleLabel::WidthAndHeight - - caLineEdit::Static + + + 120 + 20 + 20 + 20 + - - decimal + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + + + + 495 + 155 + 60 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).RZ + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + 580 @@ -5702,7 +4598,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(Q)fpSelect.VAL @@ -5746,7 +4642,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLineEdit::Static - + 580 @@ -5860,6 +4756,162 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} true + + + + 0 + 371 + 702 + 132 + + + + + 0 + 371 + 700 + 130 + + + + table_limits.adl + + + P=$(P),T=$(T) + + + + + + 540 + 311 + 100 + 20 + + + + $(P)$(T).GEOM + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caMenu::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Geometry + + + ESimpleLabel::WidthAndHeight + + + + 450 + 311 + 80 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 290 + 345 + 120 + 20 + + + + $(P)$(T).AUNIT + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caMenu::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Angle units + + + ESimpleLabel::WidthAndHeight + + + + 205 + 348 + 80 + 14 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + caPolyLine_0 caPolyLine_1 caFrame_0 @@ -5897,102 +4949,91 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caFrame_2 caLabel_10 caLabel_11 - caLabel_12 - caLabel_13 - caLabel_14 caPolyLine_12 - caLabel_15 - caLabel_16 - caLabel_17 - caLabel_18 - caLabel_19 - caLabel_20 - caLabel_21 - caLabel_22 caPolyLine_13 - caPolyLine_14 - caLabel_23 + caLabel_12 caFrame_3 caRectangle_1 caGraphics_7 caGraphics_8 caGraphics_9 - caLabel_24 - caLabel_25 - caLabel_26 + caLabel_13 + caLabel_14 + caLabel_15 + caPolyLine_14 caPolyLine_15 - caPolyLine_16 caFrame_4 + caPolyLine_16 caPolyLine_17 - caPolyLine_18 caFrame_5 + caPolyLine_18 caPolyLine_19 - caPolyLine_20 caFrame_6 + caPolyLine_20 + caLabel_16 + caLabel_17 caPolyLine_21 - caLabel_27 - caLabel_28 caPolyLine_22 caPolyLine_23 caPolyLine_24 - caPolyLine_25 caFrame_7 + caPolyLine_25 caPolyLine_26 caPolyLine_27 + caLabel_18 caPolyLine_28 - caLabel_29 - caPolyLine_29 caFrame_9 caFrame_8 caGraphics_10 caRectangle_2 + caPolyLine_29 caPolyLine_30 - caPolyLine_31 caFrame_10 + caPolyLine_31 + caLabel_19 caPolyLine_32 - caLabel_30 + caLabel_20 caPolyLine_33 - caLabel_31 + caLabel_21 caPolyLine_34 - caLabel_32 - caPolyLine_35 caGraphics_11 - caLabel_33 + caLabel_22 caGraphics_12 caRectangle_3 + caPolyLine_35 caPolyLine_36 - caPolyLine_37 caFrame_11 caGraphics_13 - caLabel_34 - caLabel_35 - caLabel_36 - caLabel_37 + caLabel_23 + caLabel_24 + caLabel_25 + caLabel_26 + caPolyLine_37 caPolyLine_38 caPolyLine_39 caPolyLine_40 caPolyLine_41 caPolyLine_42 - caPolyLine_43 - caLabel_38 + caLabel_27 caRectangle_4 + caPolyLine_43 caPolyLine_44 - caPolyLine_45 caFrame_12 caRectangle_5 - caPolyLine_46 - caLabel_39 + caPolyLine_45 + caLabel_28 caFrame_13 - caLabel_40 - caLabel_41 - caLabel_42 - caLabel_43 - caLabel_44 - caLabel_45 - caFrame_15 + caLabel_29 + caLabel_30 + caLabel_31 + caLabel_32 + caLabel_33 + caLabel_34 caFrame_14 + caInclude_15 + caLabel_35 + caLabel_36 caTextEntry_0 - caMenu_0 caTextEntry_1 caTextEntry_2 caTextEntry_3 @@ -6002,24 +5043,12 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caTextEntry_7 caTextEntry_8 caTextEntry_9 - caTextEntry_10 - caTextEntry_11 - caTextEntry_12 caLineEdit_0 - caLineEdit_1 - caTextEntry_13 - caTextEntry_14 - caTextEntry_15 - caTextEntry_16 - caTextEntry_17 - caTextEntry_18 - caTextEntry_19 - caTextEntry_20 - caTextEntry_21 - caLineEdit_2 - caMenu_1 + caMenu_0 caRelatedDisplay_0 caRelatedDisplay_1 + caMenu_1 + caMenu_2 \ No newline at end of file diff --git a/opticsApp/op/ui/table_setup_SRI_refresh.ui b/opticsApp/op/ui/autoconvert/table_setup_SRI_refresh.ui similarity index 50% rename from opticsApp/op/ui/table_setup_SRI_refresh.ui rename to opticsApp/op/ui/autoconvert/table_setup_SRI_refresh.ui index 6c6317c..035dca6 100644 --- a/opticsApp/op/ui/table_setup_SRI_refresh.ui +++ b/opticsApp/op/ui/autoconvert/table_setup_SRI_refresh.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + diff --git a/opticsApp/op/ui/autoconvert/table_soft.ui b/opticsApp/op/ui/autoconvert/table_soft.ui new file mode 100644 index 0000000..8684699 --- /dev/null +++ b/opticsApp/op/ui/autoconvert/table_soft.ui @@ -0,0 +1,3383 @@ + + +MainWindow + + + + 1255 + 241 + 230 + 390 + + + + + +QWidget#centralWidget {background: rgba(200, 200, 200, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + + 0 + 0 + 230 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).DESC + + + + 10 + 0 + 184 + + + + + 255 + 255 + 255 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + -1 + 20 + 232 + 3 + + + + 3 + + + + 10 + 0 + 184 + + + + Filled + + + + 10 + 0 + 184 + + + + Solid + + + 230,1; + + + + + + 95 + 43 + 135 + 15 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -REFRESH MENU + + + Menu + + + Refresh fixed-point menu + + + table_refresh.adl + + + P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z) + + + true + + + + + + 95 + 23 + 135 + 20 + + + + $(P)$(Q)fpSelect + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caMenu::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Fixed point: + + + ESimpleLabel::WidthAndHeight + + + + 5 + 27 + 85 + 14 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 25 + 262 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):z.RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + caGraphics::Rectangle + + + + 25 + 260 + 80 + 18 + + + + 2 + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + + 25 + 82 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):x.RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + caLabel::IfNotZero + + + $(P)$(T).LVIO + + + Limit + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 90 + 63 + 60 + 18 + + + + + + + 25 + 63 + 70 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).LEGU + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + X + + + ESimpleLabel::WidthAndHeight + + + + 10 + 102 + 20 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 25 + 100 + 80 + 22 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):x.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 25 + 80 + 80 + 18 + + + + 2 + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + caGraphics::Rectangle + + + + 23 + 78 + 84 + 22 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + + 150 + 63 + 70 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).AEGU + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + AX + + + ESimpleLabel::WidthAndHeight + + + + 115 + 102 + 20 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 140 + 100 + 80 + 22 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):ax.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 140 + 82 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):ax.RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + caGraphics::Rectangle + + + + 140 + 80 + 80 + 18 + + + + 2 + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + caGraphics::Rectangle + + + + 138 + 78 + 84 + 22 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Y + + + ESimpleLabel::WidthAndHeight + + + + 10 + 193 + 20 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 25 + 190 + 80 + 22 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):y.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 25 + 172 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):y.RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + caGraphics::Rectangle + + + + 25 + 170 + 80 + 18 + + + + 2 + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + caGraphics::Rectangle + + + + 23 + 168 + 84 + 22 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + AY + + + ESimpleLabel::WidthAndHeight + + + + 115 + 191 + 20 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 140 + 190 + 80 + 22 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):ay.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 140 + 172 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):ay.RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + caGraphics::Rectangle + + + + 140 + 170 + 80 + 18 + + + + 2 + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + caGraphics::Rectangle + + + + 138 + 168 + 84 + 22 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + + 0 + 350 + 80 + 20 + + + + $(P)$(T).SET + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Column + + + caChoice::Static + + + + + + 0 + 370 + 50 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):sync + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Sync + + + 1 + + + caMessageButton::Static + + + + + + 50 + 370 + 50 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):init + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Init + + + 1 + + + caMessageButton::Static + + + + + + 80 + 350 + 35 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):zero + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Zero + + + 1 + + + caMessageButton::Static + + + + + + 120 + 366 + 60 + 25 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):stop.VAL + + + + 251 + 243 + 74 + + + + + 253 + 0 + 0 + + + + Stop + + + 1 + + + caMessageButton::Static + + + + + + 120 + 345 + 62 + 22 + + + + + QFrame::NoFrame + + + + 235 + 241 + 181 + + + + + 235 + 241 + 181 + + + + caLabel::IfNotZero + + + $(P)$(Q):done.VAL + + + Done + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 0 + 0 + 60 + 20 + + + + + + QFrame::NoFrame + + + + 235 + 241 + 181 + + + + + 235 + 241 + 181 + + + + caLabel::IfZero + + + $(P)$(Q):done.VAL + + + Moving + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 0 + 0 + 60 + 20 + + + + + + + + 185 + 370 + 40 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -More + + + Menu + + + More;Setup (SRI geometry);Setup (GEOCARS geometry);Setup (NEWPORT geometry);Setup (PNC geometry);Fixed points + + + table_full_soft.adl;table_setup_SRI.adl;table_setup_GEOCARS.adl;table_setup_NEWPORT.adl;table_setup_PNC.adl;table_fixedPoints.adl + + + P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z);P=$(P),Q=$(Q),T=$(T);P=$(P),Q=$(Q),T=$(T);P=$(P),Q=$(Q),T=$(T);P=$(P),Q=$(Q),T=$(T);P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z) + + + true;false;false;false;false;false + + + + + + 185 + 350 + 40 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -Less + + + Menu + + + Less + + + table_tiny_soft.adl + + + P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z) + + + true + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Z + + + ESimpleLabel::WidthAndHeight + + + + 10 + 282 + 20 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 25 + 280 + 80 + 22 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):z.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 23 + 258 + 84 + 22 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + AZ + + + ESimpleLabel::WidthAndHeight + + + + 115 + 281 + 20 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 140 + 280 + 80 + 22 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):az.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 140 + 262 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):az.RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + caGraphics::Rectangle + + + + 140 + 260 + 80 + 18 + + + + 2 + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + caGraphics::Rectangle + + + + 138 + 258 + 84 + 22 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + + 45 + 120 + 44 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):x.TWV + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 89 + 120 + 20 + 18 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):x.TWF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + > + + + 1 + + + caMessageButton::Static + + + + + + 25 + 120 + 20 + 18 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):x.TWR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + < + + + 1 + + + caMessageButton::Static + + + + + + 160 + 120 + 44 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):ax.TWV + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 204 + 120 + 20 + 18 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):ax.TWF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + > + + + 1 + + + caMessageButton::Static + + + + + + 140 + 120 + 20 + 18 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):ax.TWR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + < + + + 1 + + + caMessageButton::Static + + + + + + 45 + 210 + 44 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):y.TWV + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 89 + 210 + 20 + 18 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):y.TWF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + > + + + 1 + + + caMessageButton::Static + + + + + + 25 + 210 + 20 + 18 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):y.TWR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + < + + + 1 + + + caMessageButton::Static + + + + + + 160 + 210 + 44 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):ay.TWV + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 204 + 210 + 20 + 18 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):ay.TWF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + > + + + 1 + + + caMessageButton::Static + + + + + + 140 + 210 + 20 + 18 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):ay.TWR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + < + + + 1 + + + caMessageButton::Static + + + + + + 45 + 300 + 44 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):z.TWV + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 89 + 300 + 20 + 18 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):z.TWF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + > + + + 1 + + + caMessageButton::Static + + + + + + 25 + 300 + 20 + 18 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):z.TWR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + < + + + 1 + + + caMessageButton::Static + + + + + + 160 + 300 + 44 + 18 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):az.TWV + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 204 + 300 + 20 + 18 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):az.TWF + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + > + + + 1 + + + caMessageButton::Static + + + + + + 140 + 300 + 20 + 18 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):az.TWR + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + < + + + 1 + + + caMessageButton::Static + + + + + + -1 + 58 + 233 + 2 + + + + 2 + + + + 10 + 0 + 184 + + + + Filled + + + + 10 + 0 + 184 + + + + Solid + + + 232,1; + + + + + caGraphics::Rectangle + + + + 21 + 76 + 90 + 64 + + + + 2 + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(Q):x.DMOV + + + + + caGraphics::Rectangle + + + + 136 + 76 + 90 + 64 + + + + 2 + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(Q):ax.DMOV + + + + + caGraphics::Rectangle + + + + 21 + 166 + 90 + 64 + + + + 2 + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(Q):y.DMOV + + + + + caGraphics::Rectangle + + + + 136 + 166 + 90 + 64 + + + + 2 + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(Q):ay.DMOV + + + + + caGraphics::Rectangle + + + + 20 + 256 + 90 + 64 + + + + 2 + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(Q):z.DMOV + + + + + caGraphics::Rectangle + + + + 135 + 257 + 90 + 64 + + + + 2 + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(Q):az.DMOV + + + caPolyLine_0 + caLabel_0 + caRectangle_0 + caLabel_1 + caLabel_2 + caRectangle_1 + caRectangle_2 + caLabel_3 + caRectangle_3 + caRectangle_4 + caLabel_4 + caRectangle_5 + caRectangle_6 + caLabel_5 + caRectangle_7 + caRectangle_8 + caLabel_6 + caLabel_7 + caFrame_0 + caLabel_8 + caRectangle_9 + caLabel_9 + caRectangle_10 + caRectangle_11 + caPolyLine_1 + caRectangle_12 + caRectangle_13 + caRectangle_14 + caRectangle_15 + caRectangle_16 + caRectangle_17 + caLineEdit_0 + caRelatedDisplay_0 + caMenu_0 + caLineEdit_1 + caLineEdit_2 + caLineEdit_3 + caTextEntry_0 + caLineEdit_4 + caTextEntry_1 + caLineEdit_5 + caTextEntry_2 + caLineEdit_6 + caTextEntry_3 + caLineEdit_7 + caChoice_0 + caMessageButton_0 + caMessageButton_1 + caMessageButton_2 + caMessageButton_3 + caRelatedDisplay_1 + caRelatedDisplay_2 + caTextEntry_4 + caTextEntry_5 + caLineEdit_8 + caTextEntry_6 + caMessageButton_4 + caMessageButton_5 + caTextEntry_7 + caMessageButton_6 + caMessageButton_7 + caTextEntry_8 + caMessageButton_8 + caMessageButton_9 + caTextEntry_9 + caMessageButton_10 + caMessageButton_11 + caTextEntry_10 + caMessageButton_12 + caMessageButton_13 + caTextEntry_11 + caMessageButton_14 + caMessageButton_15 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/table_tiny.ui b/opticsApp/op/ui/autoconvert/table_tiny.ui similarity index 85% rename from opticsApp/op/ui/table_tiny.ui rename to opticsApp/op/ui/autoconvert/table_tiny.ui index 7fafa05..50f975b 100644 --- a/opticsApp/op/ui/table_tiny.ui +++ b/opticsApp/op/ui/autoconvert/table_tiny.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -28,7 +116,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).EX @@ -76,14 +164,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 10 - 172 - 20 - 20 - - 0 @@ -102,7 +182,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Z - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 172 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -112,14 +200,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 10 - 118 - 20 - 20 - - 0 @@ -138,7 +218,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Y - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 118 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -148,14 +236,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 100 - 23 - 50 - 18 - - 253 @@ -180,11 +260,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Limit - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 100 + 23 + 50 + 18 + + @@ -196,7 +284,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).LEGU @@ -244,14 +332,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 10 - 62 - 20 - 20 - - 0 @@ -270,7 +350,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} X - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 62 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -286,7 +374,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).DESC @@ -363,7 +451,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;229,1; + 229,1; @@ -451,7 +539,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(T).ZERO @@ -480,93 +568,83 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caMessageButton::Static - + 5 225 - 102 - 22 + 50 + 20 - - - - 0 - 0 - 50 - 20 - - - - EPushButton::Height - - - $(P)$(T).SYNC - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Sync - - - 1 - - - caMessageButton::Static - - - - - - 50 - 0 - 50 - 20 - - - - EPushButton::Height - - - $(P)$(T).INIT - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Init - - - 1 - - - caMessageButton::Static - - + + EPushButton::WidthAndHeight + + + $(P)$(T).SYNC + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Sync + + + 1 + + + caMessageButton::Static + + + + + + 55 + 225 + 50 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(T).INIT + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Init + + + 1 + + + caMessageButton::Static + @@ -578,7 +656,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(Q):stop.VAL @@ -607,7 +685,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caMessageButton::Static - + 110 @@ -620,14 +698,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 0 - 60 - 20 - - 235 @@ -652,16 +722,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Done - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 0 @@ -670,6 +735,11 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} 20 + + + + QFrame::NoFrame + 235 @@ -694,11 +764,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Moving - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 0 + 60 + 20 + + @@ -711,7 +789,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).X @@ -762,7 +840,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).EY @@ -816,7 +894,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).Y @@ -867,7 +945,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).EZ @@ -921,7 +999,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).Z @@ -962,153 +1040,143 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} decimal - + + + caGraphics::Rectangle + 25 40 - 82 - 130 + 80 + 18 - - - caGraphics::Rectangle - - - - 0 - 0 - 80 - 18 - - - - 2 - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)$(T).SET - - - - - caGraphics::Rectangle - - - - 0 - 55 - 80 - 18 - - - - 2 - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)$(T).SET - - - - - caGraphics::Rectangle - - - - 0 - 110 - 80 - 18 - - - - 2 - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)$(T).SET - - + + 2 + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + caGraphics::Rectangle + + + + 25 + 95 + 80 + 18 + + + + 2 + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + caGraphics::Rectangle + + + + 25 + 150 + 80 + 18 + + + + 2 + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + @@ -1252,14 +1320,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 115 - 171 - 20 - 20 - - 0 @@ -1278,7 +1338,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} AZ - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 115 + 171 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1288,14 +1356,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 115 - 116 - 20 - 20 - - 0 @@ -1314,7 +1374,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} AY - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 115 + 116 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1330,7 +1398,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).AEGU @@ -1378,14 +1446,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 115 - 62 - 20 - 20 - - 0 @@ -1404,7 +1464,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} AX - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 115 + 62 + 20 + 20 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1420,7 +1488,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).EAX @@ -1474,7 +1542,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).AX @@ -1525,7 +1593,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).EAY @@ -1579,7 +1647,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).AY @@ -1630,7 +1698,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).EAZ @@ -1684,7 +1752,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(T).AZ @@ -2006,14 +2074,12 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} caLabel_2 caLabel_3 caPolyLine_0 - caFrame_0 caLabel_4 caLabel_5 - caFrame_1 + caFrame_0 caRectangle_0 caRectangle_1 caRectangle_2 - caFrame_2 caRectangle_3 caRectangle_4 caRectangle_5 diff --git a/opticsApp/op/ui/autoconvert/table_tiny_soft.ui b/opticsApp/op/ui/autoconvert/table_tiny_soft.ui new file mode 100644 index 0000000..e9d2a9d --- /dev/null +++ b/opticsApp/op/ui/autoconvert/table_tiny_soft.ui @@ -0,0 +1,2389 @@ + + +MainWindow + + + + 1227 + 699 + 230 + 250 + + + + + +QWidget#centralWidget {background: rgba(200, 200, 200, 255);} + +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + + + + + + + + 25 + 42 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):x.RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Z + + + ESimpleLabel::WidthAndHeight + + + + 10 + 172 + 20 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Y + + + ESimpleLabel::WidthAndHeight + + + + 10 + 118 + 20 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 253 + 0 + 0 + + + + + 253 + 0 + 0 + + + + caLabel::IfNotZero + + + $(P)$(T).LVIO + + + Limit + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 100 + 23 + 50 + 18 + + + + + + + 25 + 23 + 60 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).LEGU + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + X + + + ESimpleLabel::WidthAndHeight + + + + 10 + 62 + 20 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 0 + 0 + 230 + 20 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).DESC + + + + 10 + 0 + 184 + + + + + 255 + 255 + 255 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 0 + 20 + 231 + 3 + + + + 3 + + + + 10 + 0 + 184 + + + + Filled + + + + 10 + 0 + 184 + + + + Solid + + + 229,1; + + + + + + 180 + 225 + 40 + 20 + + + + + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -More + + + Menu + + + More;Setup (SRI geometry);Setup (GEOCARS geometry);Setup (NEWPORT geometry);Setup (PNC geometry) + + + table_soft.adl;table_setup_SRI.adl;table_setup_GEOCARS.adl;table_setup_NEWPORT.adl;table_setup_PNC.adl + + + P=$(P),Q=$(Q),T=$(T),M0X=$(M0X),M0Y=$(M0Y),M1Y=$(M1Y),M2X=$(M2X),M2Y=$(M2Y),M2Z=$(M2Z);P=$(P),Q=$(Q),T=$(T);P=$(P),Q=$(Q),T=$(T);P=$(P),Q=$(Q),T=$(T);P=$(P),Q=$(Q),T=$(T) + + + true;false;false;false;false + + + + + + 5 + 200 + 80 + 20 + + + + $(P)$(T).SET + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Column + + + caChoice::Static + + + + + + 90 + 200 + 40 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):zero + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Zero + + + 1 + + + caMessageButton::Static + + + + + + 5 + 225 + 50 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):sync + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Sync + + + 1 + + + caMessageButton::Static + + + + + + 55 + 225 + 50 + 20 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):init + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Init + + + 1 + + + caMessageButton::Static + + + + + + 135 + 200 + 60 + 25 + + + + EPushButton::WidthAndHeight + + + $(P)$(Q):stop.VAL + + + + 251 + 243 + 74 + + + + + 253 + 0 + 0 + + + + Stop + + + 1 + + + caMessageButton::Static + + + + + QFrame::NoFrame + + + + 235 + 241 + 181 + + + + + 235 + 241 + 181 + + + + caLabel::IfNotZero + + + $(P)$(Q):done.VAL + + + Done + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 110 + 225 + 60 + 20 + + + + + + QFrame::NoFrame + + + + 235 + 241 + 181 + + + + + 235 + 241 + 181 + + + + caLabel::IfZero + + + $(P)$(Q):done.VAL + + + Moving + + + ESimpleLabel::WidthAndHeight + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + + 110 + 225 + 60 + 20 + + + + + + + 25 + 60 + 80 + 22 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):x.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 25 + 97 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):y.RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 25 + 115 + 80 + 22 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):y.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 25 + 152 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):z.RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 25 + 170 + 80 + 22 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):z.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 25 + 40 + 80 + 18 + + + + 2 + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + caGraphics::Rectangle + + + + 25 + 95 + 80 + 18 + + + + 2 + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + caGraphics::Rectangle + + + + 25 + 150 + 80 + 18 + + + + 2 + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + caGraphics::Rectangle + + + + 23 + 38 + 84 + 22 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + caGraphics::Rectangle + + + + 23 + 93 + 84 + 22 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + caGraphics::Rectangle + + + + 23 + 148 + 84 + 22 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + AZ + + + ESimpleLabel::WidthAndHeight + + + + 115 + 171 + 20 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + AY + + + ESimpleLabel::WidthAndHeight + + + + 115 + 116 + 20 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 155 + 23 + 60 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(T).AEGU + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + QFrame::NoFrame + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + AX + + + ESimpleLabel::WidthAndHeight + + + + 115 + 62 + 20 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 140 + 42 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):ax.RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 140 + 60 + 80 + 22 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):ax.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 140 + 97 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):ay.RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 140 + 115 + 80 + 22 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):ay.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + + 140 + 152 + 80 + 15 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):az.RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + decimal + + + caLineEdit::Static + + + + + + 140 + 170 + 80 + 22 + + + + caLineEdit::WidthAndHeight + + + $(P)$(Q):az.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Channel + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 0.0 + + + 1.0 + + + caLineEdit::Static + + + decimal + + + + + caGraphics::Rectangle + + + + 140 + 40 + 80 + 18 + + + + 2 + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + caGraphics::Rectangle + + + + 140 + 95 + 80 + 18 + + + + 2 + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + caGraphics::Rectangle + + + + 140 + 150 + 80 + 18 + + + + 2 + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + + 251 + 243 + 74 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + caGraphics::Rectangle + + + + 138 + 38 + 84 + 22 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + caGraphics::Rectangle + + + + 138 + 93 + 84 + 22 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + caGraphics::Rectangle + + + + 138 + 148 + 84 + 22 + + + + 2 + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Solid + + + caGraphics::IfNotZero + + + $(P)$(T).SET + + + + + caGraphics::Rectangle + + + + 22 + 37 + 88 + 47 + + + + 2 + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(Q):x.DMOV + + + + + caGraphics::Rectangle + + + + 22 + 92 + 88 + 47 + + + + 2 + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(Q):y.DMOV + + + + + caGraphics::Rectangle + + + + 22 + 147 + 88 + 47 + + + + 2 + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(Q):z.DMOV + + + + + caGraphics::Rectangle + + + + 136 + 37 + 88 + 47 + + + + 2 + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(Q):ax.DMOV + + + + + caGraphics::Rectangle + + + + 136 + 92 + 88 + 47 + + + + 2 + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(Q):ay.DMOV + + + + + caGraphics::Rectangle + + + + 136 + 146 + 88 + 47 + + + + 2 + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + + 115 + 255 + 107 + + + + Solid + + + caGraphics::IfZero + + + $(P)$(Q):az.DMOV + + + caLabel_0 + caLabel_1 + caLabel_2 + caLabel_3 + caPolyLine_0 + caLabel_4 + caLabel_5 + caRectangle_0 + caRectangle_1 + caRectangle_2 + caRectangle_3 + caRectangle_4 + caRectangle_5 + caLabel_6 + caLabel_7 + caLabel_8 + caRectangle_6 + caRectangle_7 + caRectangle_8 + caRectangle_9 + caRectangle_10 + caRectangle_11 + caRectangle_12 + caRectangle_13 + caRectangle_14 + caRectangle_15 + caRectangle_16 + caRectangle_17 + caLineEdit_0 + caLineEdit_1 + caLineEdit_2 + caRelatedDisplay_0 + caChoice_0 + caMessageButton_0 + caMessageButton_1 + caMessageButton_2 + caMessageButton_3 + caTextEntry_0 + caLineEdit_3 + caTextEntry_1 + caLineEdit_4 + caTextEntry_2 + caLineEdit_5 + caLineEdit_6 + caTextEntry_3 + caLineEdit_7 + caTextEntry_4 + caLineEdit_8 + caTextEntry_5 + + + \ No newline at end of file diff --git a/opticsApp/op/ui/Io_small.ui b/opticsApp/op/ui/autoconvert/virtualChannelCutMono.ui similarity index 53% rename from opticsApp/op/ui/Io_small.ui rename to opticsApp/op/ui/autoconvert/virtualChannelCutMono.ui index 414b025..9a0aacb 100644 --- a/opticsApp/op/ui/Io_small.ui +++ b/opticsApp/op/ui/autoconvert/virtualChannelCutMono.ui @@ -4,10 +4,10 @@ - 698 - 154 - 300 - 118 + 992 + 294 + 400 + 152 @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -22,50 +110,156 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} QFrame::NoFrame + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + Energy (keV) + + + ESimpleLabel::WidthAndHeight + + + + 10 + 40 + 120 + 20 + + + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + - 136 - 2 - 40 - 25 + 337 + 125 + 45 + 20 - 130 - 4 + 255 + 255 + 255 + + + + + 51 + 153 + 0 + + + + -debug + + + Menu + + + Energy;tFwd;tRev;calcDone;closeGate + + + motorx.adl;yyTransform.adl;yyTransform.adl;yyCalcoutRecord.adl;yyCalcoutRecord.adl + + + P=$(P),M=VCCMono:Energy;P=$(P),T=VCCMono:tFwd;P=$(P),T=VCCMono:tRev;P=$(P),C=VCCMono:calcDone;P=$(P),C=VCCMono:closeGate + + + false;false;false;false;false + + + + + QFrame::NoFrame + + + + 0 + 0 0 - 130 - 4 + 0 + 0 0 - Io + Offset (mm) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 65 + 120 + 20 + - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - + QFrame::NoFrame + + + 0 + 0 + 0 + + + + + 0 + 0 + 0 + + + + deltaD + + + ESimpleLabel::WidthAndHeight + - 215 - 2 - 80 - 10 + 10 + 90 + 120 + 20 + + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + QFrame::NoFrame + 0 @@ -81,38 +275,79 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - Io_small.adl + d spacing (A) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 115 + 120 + 20 + - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter + + + + + + 280 + 40 + 100 + 20 + + + + $(P)VCCMono:set + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + Column + + + caChoice::Static - 1 - 33 - 301 - 25 + 145 + 40 + 132 + 97 - + 0 - 2 - 113 - 18 + 0 + 130 + 20 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)flux.DESC + $(P)VCCMono:Energy @@ -123,14 +358,11 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - 218 - 218 - 218 + 115 + 223 + 255 - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - caLineEdit::Channel @@ -146,27 +378,27 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} 1.0 - - string - caLineEdit::Static + + decimal + - + - 114 - 0 - 100 - 23 + 0 + 25 + 130 + 20 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)flux + $(P)VCCMono:offset @@ -182,9 +414,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} 255 - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - caLineEdit::Channel @@ -200,133 +429,27 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} 1.0 - - exponential - caLineEdit::Static - - - - - 219 - 4 - 80 - 15 - - - - caLineEdit::Height - - - $(P)flux.EGU - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - string - - - caLineEdit::Static + decimal - - - - - 2 - 2 - 60 - 23 - - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - all - - - Menu - - - all - - - Io.adl - - - P=$(P),MONO=$(MONO),S=$(S) - - - true - - - - - - 1 - 61 - 301 - 25 - - - + 0 - 2 - 113 - 18 + 50 + 130 + 20 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)detector.DESC + $(P)VCCMono:deltaD @@ -337,14 +460,11 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - 218 - 218 - 218 + 115 + 223 + 255 - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - caLineEdit::Channel @@ -360,27 +480,27 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} 1.0 - - string - caLineEdit::Static + + decimal + - + - 114 - 0 - 100 - 23 + 0 + 75 + 130 + 20 - caLineEdit::Height + caLineEdit::WidthAndHeight - $(P)detector + $(P)VCCMono:d_spacing @@ -396,9 +516,6 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} 255 - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - caLineEdit::Channel @@ -414,202 +531,25 @@ QWidget#centralWidget {background: rgba(218, 218, 218, 255);} 1.0 - - exponential - caLineEdit::Static - - - - - 219 - 4 - 80 - 15 - - - - caLineEdit::Height - - - $(P)detector.EGU - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - string - - - caLineEdit::Static + decimal - - - QFrame::NoFrame - - - - 18 - 94 - 113 - 18 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - scaler channel - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - - - 140 - 90 - 35 - 21 - - - - $(P)scaler - - - - 0 - 0 - 0 - - - - - 187 - 187 - 187 - - - - caMenu::Static - - - - - - 186 - 94 - 110 - 18 - - - - caLineEdit::Height - - - $(P)scaler.DESC - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - caLabel_0 caLabel_1 - caFrame_0 - caFrame_1 caLabel_2 - caLineEdit_0 - caLineEdit_1 - caLineEdit_2 + caLabel_3 + caFrame_0 caRelatedDisplay_0 - caLineEdit_3 - caLineEdit_4 - caLineEdit_5 - caMenu_0 - caLineEdit_6 + caChoice_0 + caTextEntry_0 + caTextEntry_1 + caTextEntry_2 + caTextEntry_3 \ No newline at end of file diff --git a/opticsApp/op/ui/xia_slit.ui b/opticsApp/op/ui/autoconvert/xia_slit.ui similarity index 96% rename from opticsApp/op/ui/xia_slit.ui rename to opticsApp/op/ui/autoconvert/xia_slit.ui index 2615b1c..83002fb 100644 --- a/opticsApp/op/ui/xia_slit.ui +++ b/opticsApp/op/ui/autoconvert/xia_slit.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -87,21 +175,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;297,1; + 297,1; QFrame::NoFrame - - - 0 - 0 - 170 - 20 - - 2 @@ -123,24 +203,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(SLIT) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 0 + 170 + 20 + + QFrame::NoFrame - - - 170 - 6 - 110 - 12 - - 2 @@ -162,11 +242,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} (Looking upstream) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 170 + 6 + 110 + 12 + + @@ -195,7 +283,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} -MORE - Row + Column more @@ -220,7 +308,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)v0.DRVH @@ -274,7 +362,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)height.DRVH @@ -328,7 +416,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)h0.DRVH @@ -382,7 +470,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)width.DRVH @@ -691,7 +779,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)l_tweak.A @@ -730,7 +818,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)l_tweakVal.VAL @@ -781,7 +869,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)l_tweak.B @@ -820,7 +908,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)l.DRVH @@ -874,7 +962,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)lRB @@ -928,7 +1016,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)l.VAL @@ -979,7 +1067,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)l.DRVL @@ -1066,14 +1154,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 64 - 206 - 30 - 14 - - 0 @@ -1092,7 +1172,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Scan - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 64 + 206 + 30 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1181,7 +1269,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)r.VAL @@ -1232,7 +1320,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)r.DRVL @@ -1286,7 +1374,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)r_tweak.A @@ -1325,7 +1413,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)r_tweakVal.VAL @@ -1376,7 +1464,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)r_tweak.B @@ -1415,7 +1503,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)r.DRVH @@ -1469,7 +1557,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)rRB @@ -1517,14 +1605,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 224 - 206 - 30 - 14 - - 0 @@ -1543,7 +1623,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Scan - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 224 + 206 + 30 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1598,7 +1686,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)t.VAL @@ -1649,7 +1737,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)t.DRVL @@ -1703,7 +1791,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)t.DRVH @@ -1757,7 +1845,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)tRB @@ -1811,7 +1899,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)b.VAL @@ -1862,7 +1950,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)b.DRVL @@ -1916,7 +2004,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)b_tweak.A @@ -1955,7 +2043,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)b_tweakVal.VAL @@ -2006,7 +2094,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)b_tweak.B @@ -2045,7 +2133,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)b.DRVH @@ -2099,7 +2187,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)bRB @@ -2153,7 +2241,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)width_tweak.A @@ -2192,7 +2280,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)width_tweakVal.VAL @@ -2243,7 +2331,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)width_tweak.B @@ -2282,7 +2370,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)width.VAL @@ -2333,7 +2421,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)width.DRVL @@ -2387,7 +2475,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)widthRB @@ -2435,14 +2523,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 14 - 25 - 80 - 14 - - 130 @@ -2461,24 +2541,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} H SIZE - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 239 - 106 - 30 + 14 + 25 + 80 14 + + + + QFrame::NoFrame + 0 @@ -2497,7 +2577,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Scan - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 239 + 106 + 30 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2546,14 +2634,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 49 - 106 - 30 - 14 - - 0 @@ -2572,7 +2652,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Scan - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 49 + 106 + 30 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2627,7 +2715,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)h0_tweak.A @@ -2666,7 +2754,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)h0_tweakVal.VAL @@ -2717,7 +2805,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)h0_tweak.B @@ -2756,7 +2844,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)h0.VAL @@ -2807,7 +2895,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)h0.DRVL @@ -2861,7 +2949,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)h0RB @@ -2909,14 +2997,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 204 - 25 - 80 - 14 - - 130 @@ -2935,11 +3015,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} H CENTER - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 204 + 25 + 80 + 14 + + @@ -2951,7 +3039,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)v0_tweak.A @@ -2990,7 +3078,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)v0_tweakVal.VAL @@ -3041,7 +3129,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)v0_tweak.B @@ -3080,7 +3168,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)v0.VAL @@ -3131,7 +3219,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)v0.DRVL @@ -3185,7 +3273,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)v0RB @@ -3233,14 +3321,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 204 - 230 - 80 - 14 - - 130 @@ -3259,11 +3339,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} V CENTER - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 204 + 230 + 80 + 14 + + @@ -3275,7 +3363,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)height_tweak.A @@ -3314,7 +3402,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)height_tweakVal.VAL @@ -3365,7 +3453,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)height_tweak.B @@ -3404,7 +3492,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)height.VAL @@ -3455,7 +3543,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)height.DRVL @@ -3509,7 +3597,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)heightRB @@ -3557,14 +3645,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 14 - 230 - 80 - 14 - - 130 @@ -3583,24 +3663,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} V SIZE - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 144 - 131 - 30 + 14 + 230 + 80 14 + + + + QFrame::NoFrame + 0 @@ -3619,7 +3699,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Scan - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 144 + 131 + 30 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3668,14 +3756,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 144 - 206 - 30 - 14 - - 0 @@ -3694,7 +3774,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Scan - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 144 + 206 + 30 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3743,14 +3831,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 239 - 311 - 30 - 14 - - 0 @@ -3769,7 +3849,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Scan - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 239 + 311 + 30 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3818,14 +3906,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 49 - 311 - 30 - 14 - - 0 @@ -3844,7 +3924,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Scan - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 49 + 311 + 30 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3899,7 +3987,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)locate @@ -3938,7 +4026,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)h_Busy @@ -3992,7 +4080,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)widthRB.EGU @@ -4046,7 +4134,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)lRB.EGU @@ -4100,7 +4188,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)heightRB.EGU @@ -4154,7 +4242,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)tRB.EGU @@ -4208,7 +4296,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)h0RB.EGU @@ -4262,7 +4350,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)rRB.EGU @@ -4316,7 +4404,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)bRB.EGU @@ -4370,7 +4458,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)v0RB.EGU @@ -4424,7 +4512,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)stop @@ -4463,7 +4551,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)v_Busy @@ -4517,7 +4605,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)t_tweak.B @@ -4556,7 +4644,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)t_tweakVal.VAL @@ -4607,7 +4695,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)t_tweak.A diff --git a/opticsApp/op/ui/xia_slit_calib.ui b/opticsApp/op/ui/autoconvert/xia_slit_calib.ui similarity index 87% rename from opticsApp/op/ui/xia_slit_calib.ui rename to opticsApp/op/ui/autoconvert/xia_slit_calib.ui index d275d40..35caeb2 100644 --- a/opticsApp/op/ui/xia_slit_calib.ui +++ b/opticsApp/op/ui/autoconvert/xia_slit_calib.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -22,14 +110,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 17 - 380 - 22 - - 0 @@ -48,24 +128,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} Huber Slit Controller $(P)$(HSC) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 10 - 4 + 17 380 - 8 + 22 + + + + QFrame::NoFrame + 0 @@ -84,7 +164,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} xiahsc.adl edited: 1999-Dec-08 (prj) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 4 + 380 + 8 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -94,14 +182,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 71 - 380 - 18 - - 0 @@ -120,7 +200,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} Instructions - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 71 + 380 + 18 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -130,14 +218,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 44 - 380 - 22 - - 0 @@ -156,24 +236,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} Calibration - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 10 - 114 + 44 380 - 14 + 22 + + + + QFrame::NoFrame + 0 @@ -192,7 +272,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} step 2: unplug power supply from slit cable - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 114 + 380 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -202,14 +290,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 133 - 380 - 14 - - 0 @@ -228,7 +308,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} step 3: manually close the slits to 0 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 133 + 380 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -238,14 +326,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 152 - 380 - 14 - - 0 @@ -264,7 +344,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} step 4: plug the power cable back in - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 152 + 380 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -274,14 +362,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 95 - 380 - 14 - - 0 @@ -300,7 +380,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} step 1: disable slit software - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 95 + 380 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -310,14 +398,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 171 - 380 - 14 - - 0 @@ -336,7 +416,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} step 5: enable slit software - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 171 + 380 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -352,7 +440,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)calib @@ -385,14 +473,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 236 - 380 - 14 - - 0 @@ -411,7 +491,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} step 7: you are done - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 236 + 380 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -421,14 +509,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 190 - 380 - 14 - - 0 @@ -447,7 +527,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} step 6: press the calibrate button below - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 190 + 380 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -457,14 +545,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 282 - 147 - 14 - - 0 @@ -483,11 +563,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} serial port: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 10 + 282 + 147 + 14 + + @@ -499,7 +587,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)port diff --git a/opticsApp/op/ui/xia_slit_full.ui b/opticsApp/op/ui/autoconvert/xia_slit_full.ui similarity index 96% rename from opticsApp/op/ui/xia_slit_full.ui rename to opticsApp/op/ui/autoconvert/xia_slit_full.ui index 2a2cab8..2f34039 100644 --- a/opticsApp/op/ui/xia_slit_full.ui +++ b/opticsApp/op/ui/autoconvert/xia_slit_full.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -87,21 +175,13 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;297,1; + 297,1; QFrame::NoFrame - - - 0 - 0 - 170 - 20 - - 2 @@ -123,24 +203,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(SLIT) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 0 + 170 + 20 + + QFrame::NoFrame - - - 170 - 6 - 110 - 12 - - 2 @@ -162,11 +242,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} (Looking upstream) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 170 + 6 + 110 + 12 + + @@ -178,7 +266,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)errMsg @@ -232,7 +320,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)error @@ -280,14 +368,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 10 - 335 - 59 - 14 - - 0 @@ -306,11 +386,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} error: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 10 + 335 + 59 + 14 + + @@ -322,7 +410,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)init @@ -388,14 +476,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 11 - 356 - 59 - 14 - - 0 @@ -414,24 +494,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} hor. ID: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - QFrame::NoFrame - 11 - 379 + 356 59 14 + + + + QFrame::NoFrame + 0 @@ -450,11 +530,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} ver. ID: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 11 + 379 + 59 + 14 + + @@ -532,7 +620,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)hID @@ -583,7 +671,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)vID @@ -651,7 +739,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} -CALIBRATE - Row + Column calibrate @@ -693,7 +781,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} -LESS - Row + Column more @@ -718,7 +806,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)port @@ -766,14 +854,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 10 - 422 - 59 - 14 - - 0 @@ -792,11 +872,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} port: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 10 + 422 + 59 + 14 + + @@ -808,7 +896,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)v0.DRVH @@ -862,7 +950,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)height.DRVH @@ -916,7 +1004,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)h0.DRVH @@ -970,7 +1058,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)width.DRVH @@ -1299,7 +1387,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)l_tweak.A @@ -1338,7 +1426,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)l_tweakVal.VAL @@ -1389,7 +1477,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)l_tweak.B @@ -1428,7 +1516,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)l.DRVH @@ -1482,7 +1570,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)lRB @@ -1536,7 +1624,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)l.VAL @@ -1587,7 +1675,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)l.DRVL @@ -1674,14 +1762,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 64 - 206 - 30 - 14 - - 0 @@ -1700,7 +1780,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Scan - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 64 + 206 + 30 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -1789,7 +1877,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)r.VAL @@ -1840,7 +1928,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)r.DRVL @@ -1894,7 +1982,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)r_tweak.A @@ -1933,7 +2021,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)r_tweakVal.VAL @@ -1984,7 +2072,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)r_tweak.B @@ -2023,7 +2111,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)r.DRVH @@ -2077,7 +2165,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)rRB @@ -2125,14 +2213,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 224 - 206 - 30 - 14 - - 0 @@ -2151,7 +2231,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Scan - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 224 + 206 + 30 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -2206,7 +2294,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)t.VAL @@ -2257,7 +2345,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)t.DRVL @@ -2311,7 +2399,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)t_tweak.B @@ -2350,7 +2438,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)t_tweakVal.VAL @@ -2401,7 +2489,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)t_tweak.A @@ -2440,7 +2528,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)t.DRVH @@ -2494,7 +2582,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)tRB @@ -2548,7 +2636,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)b.VAL @@ -2599,7 +2687,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)b.DRVL @@ -2653,7 +2741,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)b_tweak.A @@ -2692,7 +2780,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)b_tweakVal.VAL @@ -2743,7 +2831,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)b_tweak.B @@ -2782,7 +2870,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)b.DRVH @@ -2836,7 +2924,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)bRB @@ -2890,7 +2978,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)width_tweak.A @@ -2929,7 +3017,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)width_tweakVal.VAL @@ -2980,7 +3068,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)width_tweak.B @@ -3019,7 +3107,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)width.VAL @@ -3070,7 +3158,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)width.DRVL @@ -3124,7 +3212,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)widthRB @@ -3172,14 +3260,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 14 - 25 - 80 - 14 - - 130 @@ -3198,24 +3278,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} H SIZE - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 239 - 106 - 30 + 14 + 25 + 80 14 + + + + QFrame::NoFrame + 0 @@ -3234,7 +3314,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Scan - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 239 + 106 + 30 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3244,14 +3332,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 49 - 106 - 30 - 14 - - 0 @@ -3270,7 +3350,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Scan - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 49 + 106 + 30 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -3325,7 +3413,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)h0_tweak.A @@ -3364,7 +3452,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)h0_tweakVal.VAL @@ -3415,7 +3503,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)h0_tweak.B @@ -3454,7 +3542,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)h0.VAL @@ -3505,7 +3593,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)h0.DRVL @@ -3559,7 +3647,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)h0RB @@ -3607,14 +3695,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 204 - 25 - 80 - 14 - - 130 @@ -3633,11 +3713,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} H CENTER - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 204 + 25 + 80 + 14 + + @@ -3649,7 +3737,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)v0_tweak.A @@ -3688,7 +3776,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)v0_tweakVal.VAL @@ -3739,7 +3827,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)v0_tweak.B @@ -3778,7 +3866,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)v0.VAL @@ -3829,7 +3917,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)v0.DRVL @@ -3883,7 +3971,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)v0RB @@ -3931,14 +4019,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 204 - 230 - 80 - 14 - - 130 @@ -3957,11 +4037,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} V CENTER - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 204 + 230 + 80 + 14 + + @@ -3973,7 +4061,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)height_tweak.A @@ -4012,7 +4100,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)height_tweakVal.VAL @@ -4063,7 +4151,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)height_tweak.B @@ -4102,7 +4190,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)height.VAL @@ -4153,7 +4241,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)height.DRVL @@ -4207,7 +4295,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)heightRB @@ -4255,14 +4343,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 14 - 230 - 80 - 14 - - 130 @@ -4281,24 +4361,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} V SIZE - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 144 - 131 - 30 + 14 + 230 + 80 14 + + + + QFrame::NoFrame + 0 @@ -4317,7 +4397,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Scan - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 144 + 131 + 30 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -4366,14 +4454,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 144 - 206 - 30 - 14 - - 0 @@ -4392,7 +4472,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Scan - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 144 + 206 + 30 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -4441,14 +4529,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 239 - 311 - 30 - 14 - - 0 @@ -4467,7 +4547,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Scan - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 239 + 311 + 30 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -4516,14 +4604,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 49 - 311 - 30 - 14 - - 0 @@ -4542,7 +4622,15 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Scan - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 49 + 311 + 30 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -4597,7 +4685,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)locate @@ -4636,7 +4724,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)widthRB.EGU @@ -4690,7 +4778,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)lRB.EGU @@ -4744,7 +4832,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)heightRB.EGU @@ -4798,7 +4886,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)tRB.EGU @@ -4852,7 +4940,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)h0RB.EGU @@ -4906,7 +4994,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)rRB.EGU @@ -4960,7 +5048,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)bRB.EGU @@ -5014,7 +5102,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)v0RB.EGU @@ -5068,7 +5156,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)stop @@ -5140,14 +5228,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 11 - 442 - 59 - 14 - - 0 @@ -5166,11 +5246,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} debug: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 11 + 442 + 59 + 14 + + @@ -5182,7 +5270,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)debug @@ -5426,7 +5514,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)h_Busy @@ -5480,7 +5568,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)v_Busy diff --git a/opticsApp/op/ui/xia_slit_status.ui b/opticsApp/op/ui/autoconvert/xia_slit_status.ui similarity index 94% rename from opticsApp/op/ui/xia_slit_status.ui rename to opticsApp/op/ui/autoconvert/xia_slit_status.ui index bf26686..291c879 100644 --- a/opticsApp/op/ui/xia_slit_status.ui +++ b/opticsApp/op/ui/autoconvert/xia_slit_status.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -22,14 +110,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 8 - 420 - 26 - - 0 @@ -48,11 +128,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} XIA SLIT STATUS - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 8 + 420 + 26 + + @@ -87,7 +175,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;408,1; + 408,1; @@ -123,7 +211,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} Solid - 1,1;406,1; + 406,1; @@ -136,7 +224,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)$(BI1) @@ -190,7 +278,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)$(BI2) @@ -244,7 +332,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)$(BI3) @@ -298,7 +386,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)$(BI4) @@ -352,7 +440,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)$(BI5) @@ -406,7 +494,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)$(BI6) @@ -460,7 +548,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)$(BI7) @@ -508,14 +596,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 0 - 38 - 420 - 26 - - 0 @@ -534,11 +614,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} $(SLIT) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 0 + 38 + 420 + 26 + + @@ -550,7 +638,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)$(BI1).DESC @@ -598,14 +686,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 237 - 76 - 16 - 24 - - 0 @@ -624,11 +704,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} : - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 237 + 76 + 16 + 24 + + @@ -640,7 +728,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)$(BI2).DESC @@ -688,14 +776,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 237 - 104 - 16 - 24 - - 0 @@ -714,11 +794,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} : - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 237 + 104 + 16 + 24 + + @@ -730,7 +818,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)$(BI3).DESC @@ -778,14 +866,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 237 - 132 - 16 - 24 - - 0 @@ -804,11 +884,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} : - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 237 + 132 + 16 + 24 + + @@ -820,7 +908,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)$(BI4).DESC @@ -868,14 +956,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 237 - 160 - 16 - 24 - - 0 @@ -894,11 +974,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} : - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 237 + 160 + 16 + 24 + + @@ -910,7 +998,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)$(BI5).DESC @@ -958,14 +1046,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 237 - 188 - 16 - 24 - - 0 @@ -984,11 +1064,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} : - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 237 + 188 + 16 + 24 + + @@ -1000,7 +1088,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)$(BI6).DESC @@ -1048,14 +1136,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 237 - 216 - 16 - 24 - - 0 @@ -1074,11 +1154,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} : - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 237 + 216 + 16 + 24 + + @@ -1090,7 +1178,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)$(BI7).DESC @@ -1138,14 +1226,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 237 - 244 - 16 - 24 - - 0 @@ -1164,11 +1244,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} : - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 237 + 244 + 16 + 24 + + @@ -1180,7 +1268,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)$(OL).DESC @@ -1234,7 +1322,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)$(OL) @@ -1288,7 +1376,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)$(OR) @@ -1342,7 +1430,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)$(OR).DESC @@ -1390,14 +1478,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 237 - 293 - 16 - 24 - - 0 @@ -1416,24 +1496,24 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} : - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 237 - 321 + 293 16 24 + + + + QFrame::NoFrame + 0 @@ -1452,11 +1532,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} : - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 237 + 321 + 16 + 24 + + @@ -1468,7 +1556,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)$(SD).DESC @@ -1516,14 +1604,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 237 - 349 - 16 - 24 - - 0 @@ -1542,11 +1622,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} : - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 237 + 349 + 16 + 24 + + @@ -1558,7 +1646,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)$(SD) @@ -1612,7 +1700,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)$(GB).DESC @@ -1660,14 +1748,6 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} QFrame::NoFrame - - - 237 - 377 - 16 - 24 - - 0 @@ -1686,11 +1766,19 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} : - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 237 + 377 + 16 + 24 + + @@ -1702,7 +1790,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)$(GB) @@ -1756,7 +1844,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)$(OL).EGU @@ -1810,7 +1898,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)$(OR).EGU @@ -1864,7 +1952,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)$(SD).EGU @@ -1918,7 +2006,7 @@ QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)$(GB).EGU diff --git a/opticsApp/op/ui/xiahsc.ui b/opticsApp/op/ui/autoconvert/xiahsc.ui similarity index 92% rename from opticsApp/op/ui/xiahsc.ui rename to opticsApp/op/ui/autoconvert/xiahsc.ui index bf3d5a4..2649105 100644 --- a/opticsApp/op/ui/xiahsc.ui +++ b/opticsApp/op/ui/autoconvert/xiahsc.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -22,14 +110,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 17 - 380 - 20 - - 0 @@ -48,24 +128,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} Huber Slit Controller $(P)$(HSC) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 10 + 17 + 380 + 20 + + QFrame::NoFrame - - - 4 - 4 - 363 - 8 - - 0 @@ -84,7 +164,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} xiahsc.adl edited: 1999-Sept-25 (prj) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 4 + 4 + 363 + 8 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -100,7 +188,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)stop @@ -263,7 +351,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)l @@ -299,7 +387,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)lRB @@ -354,12 +442,21 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} 98 + + 0.010000 + Right NoScale + + false + + + true + caSlider::Static @@ -368,14 +465,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 47 - 190 - 110 - 10 - - 0 @@ -394,11 +483,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} left - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 47 + 190 + 110 + 10 + + @@ -488,7 +585,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)t @@ -524,7 +621,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)tRB @@ -579,12 +676,21 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} 98 + + 0.010000 + Right NoScale + + false + + + true + caSlider::Static @@ -593,14 +699,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 171 - 100 - 110 - 10 - - 0 @@ -619,11 +717,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} top - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 171 + 100 + 110 + 10 + + @@ -713,7 +819,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)b @@ -749,7 +855,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)bRB @@ -804,12 +910,21 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} 98 + + 0.010000 + Right NoScale + + false + + + true + caSlider::Static @@ -818,14 +933,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 171 - 280 - 110 - 10 - - 0 @@ -844,11 +951,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} bottom - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 171 + 280 + 110 + 10 + + @@ -938,7 +1053,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)r @@ -974,7 +1089,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)rRB @@ -1029,12 +1144,21 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} 98 + + 0.010000 + Right NoScale + + false + + + true + caSlider::Static @@ -1043,14 +1167,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 295 - 190 - 110 - 10 - - 0 @@ -1069,11 +1185,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} right - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 295 + 190 + 110 + 10 + + @@ -1163,7 +1287,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)width @@ -1199,7 +1323,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)widthRB @@ -1254,12 +1378,21 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} 98 + + 0.010000 + Right NoScale + + false + + + true + caSlider::Static @@ -1268,14 +1401,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 28 - 88 - 110 - 10 - - 0 @@ -1294,11 +1419,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} width - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 28 + 88 + 110 + 10 + + @@ -1388,7 +1521,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)h0 @@ -1424,7 +1557,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)h0RB @@ -1479,12 +1612,21 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} 98 + + 0.010000 + Right NoScale + + false + + + true + caSlider::Static @@ -1493,14 +1635,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 28 - 292 - 110 - 10 - - 0 @@ -1519,11 +1653,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} hor. center - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 28 + 292 + 110 + 10 + + @@ -1613,7 +1755,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)v0 @@ -1649,7 +1791,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)v0RB @@ -1704,12 +1846,21 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} 98 + + 0.010000 + Right NoScale + + false + + + true + caSlider::Static @@ -1718,14 +1869,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 314 - 292 - 110 - 10 - - 0 @@ -1744,11 +1887,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} ver. center - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 314 + 292 + 110 + 10 + + @@ -1838,7 +1989,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)height @@ -1874,7 +2025,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)heightRB @@ -1929,12 +2080,21 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} 98 + + 0.010000 + Right NoScale + + false + + + true + caSlider::Static @@ -1943,14 +2103,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 314 - 88 - 110 - 10 - - 0 @@ -1969,24 +2121,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} height - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 314 + 88 + 110 + 10 + + QFrame::NoFrame - - - 176 - 223 - 100 - 14 - - 253 @@ -2011,11 +2163,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} error! - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 176 + 223 + 100 + 14 + + @@ -2044,7 +2204,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} more - Row + Column more @@ -2078,7 +2238,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)port.VAL @@ -2117,7 +2277,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)port.DESC diff --git a/opticsApp/op/ui/xiahsc_calib.ui b/opticsApp/op/ui/autoconvert/xiahsc_calib.ui similarity index 88% rename from opticsApp/op/ui/xiahsc_calib.ui rename to opticsApp/op/ui/autoconvert/xiahsc_calib.ui index 825ee09..8eb9a86 100644 --- a/opticsApp/op/ui/xiahsc_calib.ui +++ b/opticsApp/op/ui/autoconvert/xiahsc_calib.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -22,14 +110,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 17 - 380 - 22 - - 0 @@ -48,24 +128,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} Huber Slit Controller $(P)$(HSC) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 10 - 4 + 17 380 - 8 + 22 + + + + QFrame::NoFrame + 0 @@ -84,7 +164,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} xiahsc.adl edited: 1999-Dec-08 (prj) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 4 + 380 + 8 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -94,14 +182,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 71 - 380 - 18 - - 0 @@ -120,7 +200,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} Instructions - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 71 + 380 + 18 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -130,14 +218,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 44 - 380 - 22 - - 0 @@ -156,24 +236,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} Calibration - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - 10 - 114 + 44 380 - 14 + 22 + + + + QFrame::NoFrame + 0 @@ -192,7 +272,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} step 2: unplug power supply from slit cable - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 114 + 380 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -202,14 +290,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 133 - 380 - 14 - - 0 @@ -228,7 +308,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} step 3: manually close the slits to 0 - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 133 + 380 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -238,14 +326,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 152 - 380 - 14 - - 0 @@ -264,7 +344,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} step 4: plug the power cable back in - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 152 + 380 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -274,14 +362,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 95 - 380 - 14 - - 0 @@ -300,7 +380,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} step 1: disable slit software - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 95 + 380 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -310,14 +398,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 171 - 380 - 14 - - 0 @@ -336,7 +416,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} step 5: enable slit software - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 171 + 380 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -352,7 +440,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)calib @@ -385,14 +473,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 236 - 380 - 14 - - 0 @@ -411,7 +491,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} step 7: you are done - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 236 + 380 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -421,14 +509,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 190 - 380 - 14 - - 0 @@ -447,7 +527,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} step 6: press the calibrate button below - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 10 + 190 + 380 + 14 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -499,14 +587,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 282 - 147 - 14 - - 0 @@ -525,11 +605,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} serial port: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 10 + 282 + 147 + 14 + + @@ -541,7 +629,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)port diff --git a/opticsApp/op/ui/xiahsc_full.ui b/opticsApp/op/ui/autoconvert/xiahsc_full.ui similarity index 92% rename from opticsApp/op/ui/xiahsc_full.ui rename to opticsApp/op/ui/autoconvert/xiahsc_full.ui index 85a0434..db6283f 100644 --- a/opticsApp/op/ui/xiahsc_full.ui +++ b/opticsApp/op/ui/autoconvert/xiahsc_full.ui @@ -15,6 +15,94 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} +caTable { + font: 10pt; + background: cornsilk; + alternate-background-color: wheat; +} + +caLineEdit { + border-radius: 1px; + background: lightyellow; + color: black; + } + +caTextEntry { + color: rgb(127, 0, 63); + background-color: cornsilk; + selection-color: #0a214c; + selection-background-color: wheat; + border: 1px groove black; + border-radius: 1px; + padding: 1px; +} + +caTextEntry:focus { + padding: 0px; + border: 2px groove darkred; + border-radius: 1px; +} + +QPushButton { + border-color: #00b; + border-radius: 2px; + padding: 3px; + border-width: 1px; + + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(224, 239, 255, 255), + stop:0.5 rgba(199, 215, 230, 255), + stop:1 rgba(184, 214, 236, 255)); +} +QPushButton:hover { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(201, 226, 255, 255), + stop:0.5 rgba(177, 204, 230, 255), + stop:1 rgba(163, 205, 236, 255)); +} +QPushButton:pressed { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +QPushButton:disabled { + background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(174, 219, 255, 255), + stop:0.5 rgba(165, 199, 230, 255), + stop:1 rgba(134, 188, 236, 255)); +} + +caChoice { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #E1E1E1, stop: 0.4 #DDDDDD, + stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3); +} + +caChoice > QPushButton { + text-align: left; + padding: 1px; +} + +caSlider::groove:horizontal { +border: 1px solid #bbb; +background: lightgrey; +height: 20px; +border-radius: 4px; +} + +caSlider::handle:horizontal { +background: red; +border: 1px solid #777; +width: 13px; +margin-top: -2px; +margin-bottom: -2px; +border-radius: 2px; +} + + + @@ -22,14 +110,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 10 - 17 - 380 - 20 - - 0 @@ -48,24 +128,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} Huber Slit Controller $(P)$(HSC) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 10 + 17 + 380 + 20 + + QFrame::NoFrame - - - 4 - 4 - 363 - 8 - - 0 @@ -84,7 +164,15 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} xiahsc.adl edited: 1999-Sept-25 (prj) - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight + + + + 4 + 4 + 363 + 8 + Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter @@ -100,7 +188,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)stop @@ -263,7 +351,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)l @@ -299,7 +387,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)lRB @@ -354,12 +442,21 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} 98 + + 0.010000 + Right NoScale + + false + + + true + caSlider::Static @@ -368,14 +465,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 47 - 190 - 110 - 10 - - 0 @@ -394,11 +483,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} left - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 47 + 190 + 110 + 10 + + @@ -488,7 +585,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)t @@ -524,7 +621,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)tRB @@ -579,12 +676,21 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} 98 + + 0.010000 + Right NoScale + + false + + + true + caSlider::Static @@ -593,14 +699,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 171 - 100 - 110 - 10 - - 0 @@ -619,11 +717,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} top - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 171 + 100 + 110 + 10 + + @@ -713,7 +819,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)b @@ -749,7 +855,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)bRB @@ -804,12 +910,21 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} 98 + + 0.010000 + Right NoScale + + false + + + true + caSlider::Static @@ -818,14 +933,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 171 - 280 - 110 - 10 - - 0 @@ -844,11 +951,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} bottom - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 171 + 280 + 110 + 10 + + @@ -938,7 +1053,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)r @@ -974,7 +1089,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)rRB @@ -1029,12 +1144,21 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} 98 + + 0.010000 + Right NoScale + + false + + + true + caSlider::Static @@ -1043,14 +1167,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 295 - 190 - 110 - 10 - - 0 @@ -1069,11 +1185,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} right - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 295 + 190 + 110 + 10 + + @@ -1163,7 +1287,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)width @@ -1199,7 +1323,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)widthRB @@ -1254,12 +1378,21 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} 98 + + 0.010000 + Right NoScale + + false + + + true + caSlider::Static @@ -1268,14 +1401,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 28 - 88 - 110 - 10 - - 0 @@ -1294,11 +1419,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} width - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 28 + 88 + 110 + 10 + + @@ -1388,7 +1521,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)h0 @@ -1424,7 +1557,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)h0RB @@ -1479,12 +1612,21 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} 98 + + 0.010000 + Right NoScale + + false + + + true + caSlider::Static @@ -1493,14 +1635,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 28 - 292 - 110 - 10 - - 0 @@ -1519,11 +1653,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} hor. center - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 28 + 292 + 110 + 10 + + @@ -1613,7 +1755,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)v0 @@ -1649,7 +1791,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)v0RB @@ -1704,12 +1846,21 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} 98 + + 0.010000 + Right NoScale + + false + + + true + caSlider::Static @@ -1718,14 +1869,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 314 - 292 - 110 - 10 - - 0 @@ -1744,11 +1887,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} ver. center - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 314 + 292 + 110 + 10 + + @@ -1838,7 +1989,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)height @@ -1874,7 +2025,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)heightRB @@ -1929,12 +2080,21 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} 98 + + 0.010000 + Right NoScale + + false + + + true + caSlider::Static @@ -1943,14 +2103,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 314 - 88 - 110 - 10 - - 0 @@ -1969,11 +2121,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} height - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter + + + 314 + 88 + 110 + 10 + + @@ -1985,7 +2145,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)errMsg @@ -2024,7 +2184,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)init @@ -2063,7 +2223,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - EPushButton::Height + EPushButton::WidthAndHeight $(P)$(HSC)locate @@ -2129,14 +2289,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 21 - 464 - 112 - 14 - - 0 @@ -2155,11 +2307,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} hor. ID: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 21 + 464 + 112 + 14 + + @@ -2171,7 +2331,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)hID @@ -2234,14 +2394,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 21 - 487 - 112 - 14 - - 0 @@ -2260,11 +2412,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} ver. ID: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 21 + 487 + 112 + 14 + + @@ -2276,7 +2436,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)vID @@ -2345,7 +2505,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)error @@ -2378,14 +2538,6 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} QFrame::NoFrame - - - 176 - 223 - 100 - 14 - - 253 @@ -2410,24 +2562,24 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} error! - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - QFrame::NoFrame - - 20 - 420 + 176 + 223 100 14 + + + + QFrame::NoFrame + 0 @@ -2446,11 +2598,19 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} error: - ESimpleLabel::Height + ESimpleLabel::WidthAndHeight Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter + + + 20 + 420 + 100 + 14 + + @@ -2479,7 +2639,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} calibrate... - Row + Column calibrate @@ -2521,7 +2681,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} less - Row + Column less @@ -2546,7 +2706,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)port.VAL @@ -2585,7 +2745,7 @@ QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - caLineEdit::Height + caLineEdit::WidthAndHeight $(P)$(HSC)port.DESC diff --git a/opticsApp/op/ui/filter_16_0_more.ui b/opticsApp/op/ui/filter_16_0_more.ui deleted file mode 100644 index 6943662..0000000 --- a/opticsApp/op/ui/filter_16_0_more.ui +++ /dev/null @@ -1,1236 +0,0 @@ - - -MainWindow - - - - 300 - 300 - 680 - 400 - - - - - -QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - - - - - - - caGraphics::Rectangle - - - - 5 - 40 - 150 - 21 - - - - - 10 - 0 - 184 - - - - Filled - - - - 10 - 0 - 184 - - - - Solid - - - - - - 0 - 220 - 680 - 1 - - - - 1 - - - - 70 - 70 - 70 - - - - Filled - - - - 70 - 70 - 70 - - - - Solid - - - 0,0;679,0; - - - - - - 5 - 5 - 670 - 25 - - - - caLineEdit::Height - - - $(P)$(R)Description - - - - 255 - 255 - 255 - - - - - 10 - 0 - 184 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - - 165 - 30 - 1 - 190 - - - - - 70 - 70 - 70 - - - - Filled - - - - 70 - 70 - 70 - - - - Solid - - - 0,0;0,190; - - - - - QFrame::NoFrame - - - - 5 - 44 - 150 - 13 - - - - - 255 - 255 - 255 - - - - - 255 - 255 - 255 - - - - $(P)$(R) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 5 - 95 - 118 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - filter_16_0_more.adl - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 5 - 110 - 118 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - 2013-01-31 (CMS) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 85 - 70 - 70 - 18 - - - - - 255 - 255 - 255 - - - - - 88 - 52 - 15 - - - - -configure - - - Menu - - - configure - - - filter_drive_config.adl - - - P=$(P),R=$(R) - - - false - - - - - - 5 - 70 - 70 - 18 - - - - - 255 - 255 - 255 - - - - - 88 - 52 - 15 - - - - -less - - - Menu - - - less - - - filter_16_0_less.adl - - - P=$(P),R=$(R) - - - true - - - - - - 5 - 225 - 673 - 172 - - - - - - 35 - 0 - 142 - 172 - - - - - 35 - 0 - 140 - 170 - - - - filterbox_more.adl - - - P=$(P),R=$(R),N1=13,N2=14,N3=15,N4=16 - - - - - - 175 - 0 - 142 - 172 - - - - - 175 - 0 - 140 - 170 - - - - filterbox_more.adl - - - P=$(P),R=$(R),N1=9,N2=10,N3=11,N4=12 - - - - - - 370 - 0 - 142 - 172 - - - - - 370 - 0 - 140 - 170 - - - - filterbox_more.adl - - - P=$(P),R=$(R),N1=5,N2=6,N3=7,N4=8 - - - - - - 510 - 0 - 142 - 172 - - - - - 510 - 0 - 140 - 170 - - - - filterbox_more.adl - - - P=$(P),R=$(R),N1=1,N2=2,N3=3,N4=4 - - - - - - 0 - 55 - 673 - 87 - - - - - - 298 - 0 - 81 - 21 - - - - - - 22 - 0 - 37 - 21 - - - - - QFrame::NoFrame - - - - 1 - 9 - 21 - 10 - - - - - 33 - 108 - 0 - - - - - 33 - 108 - 0 - - - - free - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 0 - 0 - 37 - 12 - - - - - QFrame::NoFrame - - - - 0 - 0 - 21 - 10 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - lock - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 25 - 0 - 10 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - / - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - - 0 - 5 - 19 - 1 - - - - 1 - - - - 0 - 0 - 0 - - - - Filled - - - - 0 - 0 - 0 - - - - Solid - - - 0,0;18,0; - - - - - - 60 - 5 - 19 - 1 - - - - 1 - - - - 0 - 0 - 0 - - - - Filled - - - - 0 - 0 - 0 - - - - Solid - - - 0,0;18,0; - - - - - - - 0 - 38 - 673 - 17 - - - - - - 0 - 0 - 22 - 17 - - - - - - 0 - 0 - 21 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,8;20,1; - - - - - - 0 - 6 - 21 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,1;20,8; - - - - - - - 330 - 0 - 22 - 17 - - - - - - 0 - 0 - 21 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,8;20,1; - - - - - - 0 - 6 - 21 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,1;20,8; - - - - - - - 646 - 0 - 22 - 17 - - - - - - 0 - 0 - 21 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,8;20,1; - - - - - - 0 - 6 - 21 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,1;20,8; - - - - - - - 0 - 7 - 671 - 2 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - 1,1;670,1; - - - - - - - 298 - 65 - 81 - 22 - - - - - - 0 - 7 - 19 - 1 - - - - 1 - - - - 0 - 0 - 0 - - - - Filled - - - - 0 - 0 - 0 - - - - Solid - - - 0,0;18,0; - - - - - - 17 - 0 - 47 - 22 - - - - - QFrame::NoFrame - - - - 0 - 0 - 45 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - remove - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 10 - 45 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - insert - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - - 60 - 7 - 19 - 1 - - - - 1 - - - - 0 - 0 - 0 - - - - Filled - - - - 0 - 0 - 0 - - - - Solid - - - 0,0;18,0; - - - - - - - - - 175 - 40 - 502 - 177 - - - - - 175 - 40 - 500 - 175 - - - - filter_drive_more.adl - - - P=$(P),R=$(R) - - - caRectangle_0 - caPolyLine_0 - caPolyLine_1 - caLabel_0 - caLabel_1 - caLabel_2 - caInclude_1 - caInclude_2 - caInclude_3 - caInclude_4 - caLabel_3 - caLabel_4 - caLabel_5 - caFrame_8 - caFrame_7 - caPolyLine_2 - caPolyLine_3 - caFrame_6 - caPolyLine_4 - caPolyLine_5 - caFrame_10 - caPolyLine_6 - caPolyLine_7 - caFrame_11 - caPolyLine_8 - caPolyLine_9 - caFrame_12 - caPolyLine_10 - caFrame_9 - caPolyLine_11 - caLabel_6 - caLabel_7 - caFrame_14 - caPolyLine_12 - caFrame_13 - caFrame_5 - caFrame_0 - caInclude_15 - caLineEdit_0 - caRelatedDisplay_0 - caRelatedDisplay_1 - - - \ No newline at end of file diff --git a/opticsApp/op/ui/filter_4_4_more.ui b/opticsApp/op/ui/filter_4_4_more.ui deleted file mode 100644 index a186650..0000000 --- a/opticsApp/op/ui/filter_4_4_more.ui +++ /dev/null @@ -1,1177 +0,0 @@ - - -MainWindow - - - - 300 - 300 - 510 - 400 - - - - - -QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - - - - - - - - 0 - 220 - 515 - 1 - - - - 1 - - - - 70 - 70 - 70 - - - - Filled - - - - 70 - 70 - 70 - - - - Solid - - - 0,0;514,0; - - - - - - 5 - 5 - 500 - 25 - - - - caLineEdit::Height - - - $(P)$(R)Description - - - - 255 - 255 - 255 - - - - - 10 - 0 - 184 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - - 10 - 220 - 498 - 182 - - - - - caGraphics::Rectangle - - - - 0 - 30 - 115 - 21 - - - - - 10 - 0 - 184 - - - - Filled - - - - 10 - 0 - 184 - - - - Solid - - - - - - 170 - 5 - 142 - 172 - - - - - 170 - 5 - 140 - 170 - - - - filterbox_more.adl - - - P=$(P),R=$(R),N1=5,N2=6,N3=7,N4=8 - - - - - - 345 - 5 - 142 - 172 - - - - - 345 - 5 - 140 - 170 - - - - filterbox_more.adl - - - P=$(P),R=$(R),N1=1,N2=2,N3=3,N4=4 - - - - - - 120 - 0 - 1 - 180 - - - - - 70 - 70 - 70 - - - - Filled - - - - 70 - 70 - 70 - - - - Solid - - - 0,0;0,180; - - - - - caGraphics::Rectangle - - - - 0 - 7 - 115 - 21 - - - - - 10 - 0 - 184 - - - - Filled - - - - 10 - 0 - 184 - - - - Solid - - - - - QFrame::NoFrame - - - - 0 - 34 - 115 - 13 - - - - - 255 - 255 - 255 - - - - - 255 - 255 - 255 - - - - $(R) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 0 - 56 - 50 - 18 - - - - - 255 - 255 - 255 - - - - - 88 - 52 - 15 - - - - -less - - - Menu - - - less - - - filter_4_4_less.adl - - - P=$(P),R=$(R) - - - true - - - - - - 55 - 55 - 60 - 18 - - - - - 255 - 255 - 255 - - - - - 88 - 52 - 15 - - - - -configure - - - Menu - - - configure - - - filter_drive_config.adl - - - P=$(P),R=$(R) - - - false - - - - - QFrame::NoFrame - - - - 0 - 77 - 118 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - filter_4_4_more.adl - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 92 - 118 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - 2013-01-24 (CMS) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 11 - 115 - 13 - - - - - 255 - 255 - 255 - - - - - 255 - 255 - 255 - - - - $(P) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 117 - 55 - 381 - 90 - - - - - - 0 - 0 - 64 - 90 - - - - - - 12 - 0 - 52 - 22 - - - - - - 31 - 10 - 19 - 1 - - - - 1 - - - - 0 - 0 - 0 - - - - Filled - - - - 0 - 0 - 0 - - - - Solid - - - 0,0;18,0; - - - - - - 0 - 0 - 36 - 22 - - - - - QFrame::NoFrame - - - - 0 - 10 - 20 - 10 - - - - - 33 - 108 - 0 - - - - - 33 - 108 - 0 - - - - free - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 0 - 0 - 36 - 12 - - - - - QFrame::NoFrame - - - - 24 - 0 - 10 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - / - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 0 - 20 - 10 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - lock - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - - - 0 - 68 - 62 - 22 - - - - - - 42 - 9 - 18 - 1 - - - - 1 - - - - 0 - 0 - 0 - - - - Filled - - - - 0 - 0 - 0 - - - - Solid - - - 0,0;17,0; - - - - - - 0 - 0 - 57 - 22 - - - - - QFrame::NoFrame - - - - 0 - 0 - 55 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - remove - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 10 - 55 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - insert - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - - - - 21 - 37 - 360 - 28 - - - - - caGraphics::Circle - - - - 180 - 2 - 22 - 22 - - - - 2 - - - - 90 - 90 - 90 - - - - Filled - - - - 90 - 90 - 90 - - - - Solid - - - - - - 162 - 6 - 18 - 17 - - - - - - 0 - 0 - 18 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,8;17,1; - - - - - - 0 - 6 - 18 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,1;17,8; - - - - - - - 338 - 6 - 18 - 17 - - - - - - 0 - 0 - 18 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,8;17,1; - - - - - - 0 - 6 - 18 - 9 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - $(P)$(R)EnergyLocal - - - 1,1;17,8; - - - - - - - 12 - 13 - 346 - 2 - - - - 2 - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - 1,1;345,1; - - - - - caGraphics::Rectangle - - - - 0 - 0 - 15 - 26 - - - - 2 - - - - 90 - 90 - 90 - - - - Filled - - - - 90 - 90 - 90 - - - - Solid - - - - - - - - - 10 - 40 - 502 - 177 - - - - - 10 - 40 - 500 - 175 - - - - filter_drive_more.adl - - - P=$(P),R=$(R) - - - caPolyLine_0 - caRectangle_0 - caInclude_1 - caInclude_2 - caPolyLine_1 - caRectangle_1 - caLabel_0 - caLabel_1 - caLabel_2 - caLabel_3 - caPolyLine_2 - caLabel_4 - caLabel_5 - caLabel_6 - caFrame_7 - caFrame_6 - caFrame_5 - caPolyLine_3 - caLabel_7 - caLabel_8 - caFrame_9 - caFrame_8 - caFrame_4 - caGraphics_0 - caPolyLine_4 - caPolyLine_5 - caFrame_11 - caPolyLine_6 - caPolyLine_7 - caFrame_12 - caPolyLine_8 - caRectangle_2 - caFrame_10 - caFrame_3 - caFrame_0 - caInclude_13 - caLineEdit_0 - caRelatedDisplay_0 - caRelatedDisplay_1 - - - \ No newline at end of file diff --git a/opticsApp/op/ui/filterbox_config.ui b/opticsApp/op/ui/filterbox_config.ui deleted file mode 100644 index 363a9bc..0000000 --- a/opticsApp/op/ui/filterbox_config.ui +++ /dev/null @@ -1,990 +0,0 @@ - - -MainWindow - - - - 300 - 200 - 425 - 125 - - - - - -QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - - - - - - - - 5 - 5 - 327 - 17 - - - - - QFrame::NoFrame - - - - 0 - 0 - 45 - 15 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Filter - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 65 - 0 - 70 - 15 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Material - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 145 - 0 - 70 - 15 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Thickness - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 275 - 0 - 50 - 15 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Enable - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - 5 - 25 - 417 - 22 - - - - - QFrame::NoFrame - - - - 0 - 2 - 45 - 15 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(N1): - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 65 - 0 - 70 - 20 - - - - $(P)$(R)Fi$(N1):Material - - - - 0 - 0 - 0 - - - - - 158 - 158 - 158 - - - - caMenu::Static - - - - - - 145 - 0 - 100 - 20 - - - - caLineEdit::Height - - - $(P)$(R)Fi$(N1):Thickness - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 275 - 0 - 140 - 20 - - - - $(P)$(R)Fi$(N1):Enable - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Column - - - caChoice::Alarm - - - - - QFrame::NoFrame - - - - 250 - 1 - 16 - 17 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - um - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - 5 - 50 - 417 - 22 - - - - - - 65 - 0 - 70 - 20 - - - - $(P)$(R)Fi$(N2):Material - - - - 0 - 0 - 0 - - - - - 158 - 158 - 158 - - - - caMenu::Static - - - - - - 145 - 0 - 100 - 20 - - - - caLineEdit::Height - - - $(P)$(R)Fi$(N2):Thickness - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 275 - 0 - 140 - 20 - - - - $(P)$(R)Fi$(N2):Enable - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Column - - - caChoice::Alarm - - - - - QFrame::NoFrame - - - - 250 - 1 - 16 - 17 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - um - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 2 - 45 - 15 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(N2): - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - 5 - 75 - 417 - 22 - - - - - QFrame::NoFrame - - - - 0 - 2 - 45 - 15 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(N3): - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 65 - 0 - 70 - 20 - - - - $(P)$(R)Fi$(N3):Material - - - - 0 - 0 - 0 - - - - - 158 - 158 - 158 - - - - caMenu::Static - - - - - - 145 - 0 - 100 - 20 - - - - caLineEdit::Height - - - $(P)$(R)Fi$(N3):Thickness - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 250 - 1 - 16 - 17 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - um - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 275 - 0 - 140 - 20 - - - - $(P)$(R)Fi$(N3):Enable - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Column - - - caChoice::Alarm - - - - - - - 5 - 100 - 417 - 22 - - - - - - 275 - 0 - 140 - 20 - - - - $(P)$(R)Fi$(N4):Enable - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Column - - - caChoice::Alarm - - - - - QFrame::NoFrame - - - - 250 - 1 - 16 - 17 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - um - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 145 - 0 - 100 - 20 - - - - caLineEdit::Height - - - $(P)$(R)Fi$(N4):Thickness - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 65 - 0 - 70 - 20 - - - - $(P)$(R)Fi$(N4):Material - - - - 0 - 0 - 0 - - - - - 158 - 158 - 158 - - - - caMenu::Static - - - - - QFrame::NoFrame - - - - 0 - 2 - 45 - 15 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(N4): - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - caLabel_0 - caLabel_1 - caLabel_2 - caLabel_3 - caFrame_0 - caLabel_4 - caLabel_5 - caFrame_1 - caLabel_6 - caLabel_7 - caFrame_2 - caLabel_8 - caLabel_9 - caFrame_3 - caLabel_10 - caLabel_11 - caFrame_4 - caMenu_0 - caTextEntry_0 - caChoice_0 - caMenu_1 - caTextEntry_1 - caChoice_1 - caMenu_2 - caTextEntry_2 - caChoice_2 - caChoice_3 - caTextEntry_3 - caMenu_3 - - - \ No newline at end of file diff --git a/opticsApp/op/ui/filterbox_less.ui b/opticsApp/op/ui/filterbox_less.ui deleted file mode 100644 index 14ed161..0000000 --- a/opticsApp/op/ui/filterbox_less.ui +++ /dev/null @@ -1,210 +0,0 @@ - - -MainWindow - - - - 1591 - 254 - 140 - 110 - - - - - -QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - - - - - - - - 5 - 5 - 132 - 102 - - - - - - 0 - 0 - 132 - 102 - - - - - caGraphics::Rectangle - - - - 0 - 0 - 130 - 100 - - - - 2 - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - - - 7 - 6 - 28 - 90 - - - - - 7 - 6 - 26 - 88 - - - - filter_blade.adl - - - P=$(P),R=$(R),N=$(N4) - - - caInclude::IfNotZero - - - $(P)$(R)Fi$(N4):Enable - - - - - - 38 - 6 - 28 - 90 - - - - - 38 - 6 - 26 - 88 - - - - filter_blade.adl - - - P=$(P),R=$(R),N=$(N3) - - - caInclude::IfNotZero - - - $(P)$(R)Fi$(N3):Enable - - - - - - 69 - 6 - 28 - 90 - - - - - 69 - 6 - 26 - 88 - - - - filter_blade.adl - - - P=$(P),R=$(R),N=$(N2) - - - caInclude::IfNotZero - - - $(P)$(R)Fi$(N2):Enable - - - - - - 100 - 6 - 28 - 90 - - - - - 100 - 6 - 26 - 88 - - - - filter_blade.adl - - - P=$(P),R=$(R),N=$(N1) - - - caInclude::IfNotZero - - - $(P)$(R)Fi$(N1):Enable - - - - caRectangle_0 - caFrame_1 - caInclude_2 - caInclude_3 - caInclude_4 - caInclude_5 - caFrame_0 - - - \ No newline at end of file diff --git a/opticsApp/op/ui/filterbox_more.ui b/opticsApp/op/ui/filterbox_more.ui deleted file mode 100644 index 74e9c0d..0000000 --- a/opticsApp/op/ui/filterbox_more.ui +++ /dev/null @@ -1,1290 +0,0 @@ - - -MainWindow - - - - 2375 - 753 - 140 - 170 - - - - - -QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - - - - - - - - 5 - 48 - 132 - 102 - - - - - caGraphics::Rectangle - - - - 0 - 0 - 130 - 100 - - - - 2 - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - - - 15 - 152 - 110 - 18 - - - - - 255 - 255 - 255 - - - - - 88 - 52 - 15 - - - - -Configure - - - Menu - - - Configure - - - filterbox_config.adl - - - P=$(P),R=$(R),N1=$(N1),N2=$(N2),N3=$(N3),N4=$(N4) - - - false - - - - - QFrame::NoFrame - - - - 5 - 0 - 71 - 10 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - caLabel::IfZero - - - $(P)$(R)Fi$(N1):Enable - - - $(N1): Disabled - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 5 - 12 - 71 - 10 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - caLabel::IfZero - - - $(P)$(R)Fi$(N2):Enable - - - $(N2): Disabled - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 5 - 24 - 71 - 10 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - caLabel::IfZero - - - $(P)$(R)Fi$(N3):Enable - - - $(N3): Disabled - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 5 - 36 - 71 - 10 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - caLabel::IfZero - - - $(P)$(R)Fi$(N4):Enable - - - $(N4): Disabled - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 5 - 12 - 129 - 12 - - - - - QFrame::NoFrame - - - - 0 - 0 - 15 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(N2): - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 19 - 0 - 12 - 10 - - - - caLineEdit::Height - - - $(P)$(R)Fi$(N2):Material - - - - 0 - 0 - 0 - - - - - 200 - 200 - 200 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 35 - 0 - 38 - 10 - - - - caLineEdit::Height - - - $(P)$(R)Fi$(N2):Thickness - - - - 0 - 0 - 0 - - - - - 200 - 200 - 200 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - compact - - - caLineEdit::Static - - - - - - 77 - 0 - 50 - 10 - - - - caLineEdit::Height - - - $(P)$(R)Fi$(N2):Transmission - - - - 10 - 0 - 184 - - - - - 200 - 200 - 200 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - exponential - - - caLineEdit::Static - - - - caFrame::IfNotZero - - - $(P)$(R)Fi$(N2):Enable - - - - - - 5 - 0 - 129 - 12 - - - - - QFrame::NoFrame - - - - 0 - 0 - 15 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(N1): - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 19 - 0 - 12 - 10 - - - - caLineEdit::Height - - - $(P)$(R)Fi$(N1):Material - - - - 0 - 0 - 0 - - - - - 200 - 200 - 200 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 35 - 0 - 38 - 10 - - - - caLineEdit::Height - - - $(P)$(R)Fi$(N1):Thickness - - - - 0 - 0 - 0 - - - - - 200 - 200 - 200 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - compact - - - caLineEdit::Static - - - - - - 77 - 0 - 50 - 10 - - - - caLineEdit::Height - - - $(P)$(R)Fi$(N1):Transmission - - - - 10 - 0 - 184 - - - - - 200 - 200 - 200 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - exponential - - - caLineEdit::Static - - - - caFrame::IfNotZero - - - $(P)$(R)Fi$(N1):Enable - - - - - - 5 - 24 - 129 - 12 - - - - - QFrame::NoFrame - - - - 0 - 0 - 15 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(N3): - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 19 - 0 - 12 - 10 - - - - caLineEdit::Height - - - $(P)$(R)Fi$(N3):Material - - - - 0 - 0 - 0 - - - - - 200 - 200 - 200 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 35 - 0 - 38 - 10 - - - - caLineEdit::Height - - - $(P)$(R)Fi$(N3):Thickness - - - - 0 - 0 - 0 - - - - - 200 - 200 - 200 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - compact - - - caLineEdit::Static - - - - - - 77 - 0 - 50 - 10 - - - - caLineEdit::Height - - - $(P)$(R)Fi$(N3):Transmission - - - - 10 - 0 - 184 - - - - - 200 - 200 - 200 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - exponential - - - caLineEdit::Static - - - - caFrame::IfNotZero - - - $(P)$(R)Fi$(N3):Enable - - - - - - 5 - 36 - 129 - 12 - - - - - QFrame::NoFrame - - - - 0 - 0 - 15 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(N4): - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 19 - 0 - 12 - 10 - - - - caLineEdit::Height - - - $(P)$(R)Fi$(N4):Material - - - - 0 - 0 - 0 - - - - - 200 - 200 - 200 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 35 - 0 - 38 - 10 - - - - caLineEdit::Height - - - $(P)$(R)Fi$(N4):Thickness - - - - 0 - 0 - 0 - - - - - 200 - 200 - 200 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - compact - - - caLineEdit::Static - - - - - - 77 - 0 - 50 - 10 - - - - caLineEdit::Height - - - $(P)$(R)Fi$(N4):Transmission - - - - 10 - 0 - 184 - - - - - 200 - 200 - 200 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - exponential - - - caLineEdit::Static - - - - caFrame::IfNotZero - - - $(P)$(R)Fi$(N4):Enable - - - - - - 12 - 54 - 28 - 90 - - - - - 12 - 54 - 26 - 88 - - - - filter_blade.adl - - - P=$(P),R=$(R),N=$(N4) - - - caInclude::IfNotZero - - - $(P)$(R)Fi$(N4):Enable - - - - - - 43 - 54 - 28 - 90 - - - - - 43 - 54 - 26 - 88 - - - - filter_blade.adl - - - P=$(P),R=$(R),N=$(N3) - - - caInclude::IfNotZero - - - $(P)$(R)Fi$(N3):Enable - - - - - - 74 - 54 - 28 - 90 - - - - - 74 - 54 - 26 - 88 - - - - filter_blade.adl - - - P=$(P),R=$(R),N=$(N2) - - - caInclude::IfNotZero - - - $(P)$(R)Fi$(N2):Enable - - - - - - 105 - 54 - 28 - 90 - - - - - 105 - 54 - 26 - 88 - - - - filter_blade.adl - - - P=$(P),R=$(R),N=$(N1) - - - caInclude::IfNotZero - - - $(P)$(R)Fi$(N1):Enable - - - caRectangle_0 - caFrame_0 - caLabel_0 - caLabel_1 - caLabel_2 - caLabel_3 - caLabel_4 - caFrame_1 - caLabel_5 - caFrame_2 - caLabel_6 - caFrame_3 - caLabel_7 - caFrame_4 - caInclude_5 - caInclude_6 - caInclude_7 - caInclude_8 - caRelatedDisplay_0 - caLineEdit_0 - caLineEdit_1 - caLineEdit_2 - caLineEdit_3 - caLineEdit_4 - caLineEdit_5 - caLineEdit_6 - caLineEdit_7 - caLineEdit_8 - caLineEdit_9 - caLineEdit_10 - caLineEdit_11 - - - \ No newline at end of file diff --git a/opticsApp/op/ui/kohzuGraphic.ui b/opticsApp/op/ui/kohzuGraphic.ui deleted file mode 100644 index 265eeba..0000000 --- a/opticsApp/op/ui/kohzuGraphic.ui +++ /dev/null @@ -1,2332 +0,0 @@ - - -MainWindow - - - - 10 - 10 - 440 - 340 - - - - - -QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - - - - - - - - 0 - 0 - 440 - 340 - - - - kohzu.gif - - - - - - 181 - 281 - 88 - 28 - - - - EPushButton::Height - - - $(P)allstop.VAL - - - - 251 - 243 - 74 - - - - - 253 - 0 - 0 - - - - All Stop - - - 1 - - - caMessageButton::Static - - - - - - 38 - 288 - 66 - 42 - - - - - caGraphics::Rectangle - - - - 0 - 0 - 64 - 40 - - - - - 0 - 0 - 0 - - - - Filled - - - - 0 - 0 - 0 - - - - Solid - - - - - - 2 - 14 - 60 - 10 - - - - caLineEdit::Height - - - $(P)BraggThetaRdbkAO - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 2 - 24 - 60 - 15 - - - - caLineEdit::Height - - - $(P)BraggThetaAO - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 2 - 2 - 60 - 12 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - Theta(Y,Z) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - - 73 - 218 - 66 - 54 - - - - - caGraphics::Rectangle - - - - 0 - 14 - 64 - 38 - - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - - - caGraphics::Rectangle - - - - 0 - 14 - 64 - 38 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - - 2 - 26 - 61 - 10 - - - - caLineEdit::Height - - - $(P)$(mTH).RBV - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - QFrame::NoFrame - - - - 2 - 16 - 61 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(P)$(mTH) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 2 - 36 - 61 - 15 - - - - caLineEdit::Height - - - $(P)$(mTH).VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 2 - 0 - 60 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Theta - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - - 77 - 117 - 66 - 54 - - - - - caGraphics::Rectangle - - - - 0 - 14 - 64 - 38 - - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - - - - 2 - 26 - 61 - 10 - - - - caLineEdit::Height - - - $(P)$(mCHI2).RBV - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 2 - 36 - 61 - 15 - - - - caLineEdit::Height - - - $(P)$(mCHI2).VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 2 - 16 - 61 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(P)$(mCHI2) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - caGraphics::Rectangle - - - - 0 - 14 - 64 - 38 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - QFrame::NoFrame - - - - 2 - 0 - 60 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Chi - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - - 160 - 28 - 66 - 54 - - - - - caGraphics::Rectangle - - - - 0 - 14 - 64 - 38 - - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - - - QFrame::NoFrame - - - - 2 - 16 - 61 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(P)$(mTH2) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 2 - 26 - 61 - 10 - - - - caLineEdit::Height - - - $(P)$(mTH2).RBV - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 2 - 36 - 61 - 15 - - - - caLineEdit::Height - - - $(P)$(mTH2).VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - caGraphics::Rectangle - - - - 0 - 14 - 64 - 38 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - QFrame::NoFrame - - - - 2 - 0 - 60 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Theta2 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - - 231 - 59 - 66 - 54 - - - - - - 0 - 14 - 66 - 40 - - - - - - 2 - 12 - 60 - 10 - - - - caLineEdit::Height - - - $(P)$(mZ2).RBV - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - caGraphics::Rectangle - - - - 0 - 0 - 64 - 38 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - QFrame::NoFrame - - - - 2 - 2 - 60 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(P)$(mZ2) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 2 - 22 - 60 - 15 - - - - caLineEdit::Height - - - $(P)$(mZ2).VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - QFrame::NoFrame - - - - 2 - 0 - 60 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Z2 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - - 374 - 10 - 66 - 54 - - - - - - 0 - 14 - 66 - 40 - - - - - caGraphics::Rectangle - - - - 0 - 0 - 64 - 38 - - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - - - QFrame::NoFrame - - - - 2 - 2 - 61 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(P)$(mY) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 2 - 12 - 61 - 10 - - - - caLineEdit::Height - - - $(P)$(mY).RBV - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 2 - 22 - 61 - 15 - - - - caLineEdit::Height - - - $(P)$(mY).VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - caGraphics::Rectangle - - - - 0 - 0 - 64 - 38 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - - QFrame::NoFrame - - - - 2 - 0 - 60 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Y - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - - 317 - 66 - 66 - 54 - - - - - caGraphics::Rectangle - - - - 0 - 14 - 64 - 38 - - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - - - QFrame::NoFrame - - - - 2 - 16 - 61 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(P)$(mX2) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 2 - 26 - 61 - 10 - - - - caLineEdit::Height - - - $(P)$(mX2).RBV - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 2 - 36 - 61 - 15 - - - - caLineEdit::Height - - - $(P)$(mX2).VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - caGraphics::Rectangle - - - - 0 - 14 - 64 - 38 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - QFrame::NoFrame - - - - 2 - 0 - 60 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - X2 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - - 315 - 228 - 66 - 54 - - - - - - 2 - 26 - 61 - 10 - - - - caLineEdit::Height - - - $(P)$(mX).RBV - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - caGraphics::Rectangle - - - - 0 - 14 - 64 - 38 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - QFrame::NoFrame - - - - 2 - 16 - 61 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(P)$(mX) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 2 - 36 - 61 - 15 - - - - caLineEdit::Height - - - $(P)$(mX).VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 2 - 0 - 60 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - X - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - - 214 - 182 - 66 - 54 - - - - - caGraphics::Rectangle - - - - 0 - 14 - 64 - 38 - - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - - - QFrame::NoFrame - - - - 2 - 16 - 60 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(P)$(mY1) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 2 - 26 - 60 - 10 - - - - caLineEdit::Height - - - $(P)$(mY1).RBV - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 2 - 36 - 60 - 15 - - - - caLineEdit::Height - - - $(P)$(mY1).VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - caGraphics::Rectangle - - - - 0 - 14 - 64 - 38 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - QFrame::NoFrame - - - - 2 - 0 - 60 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Y1 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - caImage_0 - caRectangle_0 - caLabel_0 - caFrame_0 - caRectangle_1 - caRectangle_2 - caLabel_1 - caLabel_2 - caFrame_1 - caRectangle_3 - caLabel_3 - caRectangle_4 - caLabel_4 - caFrame_2 - caRectangle_5 - caLabel_5 - caRectangle_6 - caLabel_6 - caFrame_3 - caRectangle_7 - caLabel_7 - caFrame_5 - caLabel_8 - caFrame_4 - caRectangle_8 - caLabel_9 - caRectangle_9 - caFrame_7 - caLabel_10 - caFrame_6 - caRectangle_10 - caLabel_11 - caRectangle_11 - caLabel_12 - caFrame_8 - caRectangle_12 - caLabel_13 - caLabel_14 - caFrame_9 - caRectangle_13 - caLabel_15 - caRectangle_14 - caLabel_16 - caFrame_10 - caMessageButton_0 - caLineEdit_0 - caTextEntry_0 - caLineEdit_1 - caTextEntry_1 - caLineEdit_2 - caTextEntry_2 - caLineEdit_3 - caTextEntry_3 - caLineEdit_4 - caTextEntry_4 - caLineEdit_5 - caTextEntry_5 - caLineEdit_6 - caTextEntry_6 - caLineEdit_7 - caTextEntry_7 - caLineEdit_8 - caTextEntry_8 - - - \ No newline at end of file diff --git a/opticsApp/op/ui/kohzuGraphicLarge.ui b/opticsApp/op/ui/kohzuGraphicLarge.ui deleted file mode 100644 index 6cbc912..0000000 --- a/opticsApp/op/ui/kohzuGraphicLarge.ui +++ /dev/null @@ -1,1700 +0,0 @@ - - -MainWindow - - - - 10 - 10 - 880 - 680 - - - - - -QWidget#centralWidget {background: rgba(187, 187, 187, 255);} - - - - - - - - 0 - 0 - 880 - 680 - - - - kohzu.gif - - - - - - 453 - 186 - 44 - 44 - - - - - - 0 - 10 - 44 - 34 - - - - - - 1 - 1 - 40 - 10 - - - - caLineEdit::Height - - - $(P)$(mZ2).RBV - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 21 - 11 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mZ2).JOGF - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - + - - - 1 - - - 0 - - - caMessageButton::Static - - - - - - 1 - 11 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mZ2).JOGR - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - - - - - 1 - - - 0 - - - caMessageButton::Static - - - - - caGraphics::Rectangle - - - - 0 - 0 - 42 - 32 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - - QFrame::NoFrame - - - - 0 - 0 - 40 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(P)$(mZ2) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - 389 - 343 - 44 - 44 - - - - - - 1 - 11 - 40 - 10 - - - - caLineEdit::Height - - - $(P)$(mY1).RBV - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 21 - 21 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mY1).JOGF - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - + - - - 1 - - - 0 - - - caMessageButton::Static - - - - - - 1 - 21 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mY1).JOGR - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - - - - - 1 - - - 0 - - - caMessageButton::Static - - - - - caGraphics::Rectangle - - - - 0 - 10 - 42 - 32 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - QFrame::NoFrame - - - - 1 - 0 - 40 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(P)$(mY1) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - 208 - 433 - 44 - 44 - - - - - - 1 - 11 - 40 - 10 - - - - caLineEdit::Height - - - $(P)$(mTH).RBV - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 21 - 21 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mTH).JOGF - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - + - - - 1 - - - 0 - - - caMessageButton::Static - - - - - - 1 - 21 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mTH).JOGR - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - - - - - 1 - - - 0 - - - caMessageButton::Static - - - - - caGraphics::Rectangle - - - - 0 - 10 - 42 - 32 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - QFrame::NoFrame - - - - 1 - 0 - 40 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(P)$(mTH) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - 288 - 244 - 40 - 10 - - - - caLineEdit::Height - - - $(P)$(mCHI2).RBV - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 308 - 254 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mCHI2).JOGF - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - + - - - 1 - - - 0 - - - caMessageButton::Static - - - - - - 288 - 254 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mCHI2).JOGR - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - - - - - 1 - - - 0 - - - caMessageButton::Static - - - - - caGraphics::Rectangle - - - - 287 - 243 - 42 - 32 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - QFrame::NoFrame - - - - 288 - 233 - 40 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(P)$(mCHI2) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 320 - 123 - 44 - 44 - - - - - - 1 - 11 - 40 - 10 - - - - caLineEdit::Height - - - $(P)$(mTH2).RBV - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 21 - 21 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mTH2).JOGF - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - + - - - 1 - - - 0 - - - caMessageButton::Static - - - - - - 1 - 21 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mTH2).JOGR - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - - - - - 1 - - - 0 - - - caMessageButton::Static - - - - - caGraphics::Rectangle - - - - 0 - 10 - 42 - 32 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - QFrame::NoFrame - - - - 1 - 0 - 40 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(P)$(mTH2) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - 736 - 211 - 40 - 10 - - - - caLineEdit::Height - - - $(P)$(mX2).RBV - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 756 - 221 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mX2).JOGF - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - + - - - 1 - - - 0 - - - caMessageButton::Static - - - - - - 736 - 221 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mX2).JOGR - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - - - - - 1 - - - 0 - - - caMessageButton::Static - - - - - caGraphics::Rectangle - - - - 735 - 210 - 42 - 32 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - QFrame::NoFrame - - - - 736 - 200 - 40 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(P)$(mX2) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 751 - 35 - 40 - 10 - - - - caLineEdit::Height - - - $(P)$(mY).RBV - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 771 - 45 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mY).JOGF - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - + - - - 1 - - - 0 - - - caMessageButton::Static - - - - - - 751 - 45 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mY).JOGR - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - - - - - 1 - - - 0 - - - caMessageButton::Static - - - - - caGraphics::Rectangle - - - - 750 - 34 - 42 - 32 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - QFrame::NoFrame - - - - 751 - 24 - 40 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(P)$(mY) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 544 - 460 - 40 - 10 - - - - caLineEdit::Height - - - $(P)$(mX).RBV - - - - 42 - 99 - 228 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 564 - 470 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mX).JOGF - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - + - - - 1 - - - 0 - - - caMessageButton::Static - - - - - - 544 - 470 - 20 - 20 - - - - EPushButton::Height - - - $(P)$(mX).JOGR - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - - - - - 1 - - - 0 - - - caMessageButton::Static - - - - - caGraphics::Rectangle - - - - 543 - 459 - 42 - 32 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - QFrame::NoFrame - - - - 544 - 449 - 40 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - $(P)$(mX) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - caImage_0 - caRectangle_0 - caFrame_1 - caLabel_0 - caFrame_0 - caRectangle_1 - caLabel_1 - caFrame_2 - caRectangle_2 - caLabel_2 - caFrame_3 - caRectangle_3 - caLabel_3 - caRectangle_4 - caLabel_4 - caFrame_4 - caRectangle_5 - caLabel_5 - caRectangle_6 - caLabel_6 - caRectangle_7 - caLabel_7 - caLineEdit_0 - caMessageButton_0 - caMessageButton_1 - caLineEdit_1 - caMessageButton_2 - caMessageButton_3 - caLineEdit_2 - caMessageButton_4 - caMessageButton_5 - caLineEdit_3 - caMessageButton_6 - caMessageButton_7 - caLineEdit_4 - caMessageButton_8 - caMessageButton_9 - caLineEdit_5 - caMessageButton_10 - caMessageButton_11 - caLineEdit_6 - caMessageButton_12 - caMessageButton_13 - caLineEdit_7 - caMessageButton_14 - caMessageButton_15 - - - \ No newline at end of file diff --git a/opticsApp/op/ui/kohzuSeqCtl_tiny.ui b/opticsApp/op/ui/kohzuSeqCtl_tiny.ui deleted file mode 100644 index 5e7cefe..0000000 --- a/opticsApp/op/ui/kohzuSeqCtl_tiny.ui +++ /dev/null @@ -1,1118 +0,0 @@ - - -MainWindow - - - - 300 - 258 - 215 - 140 - - - - - -QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - - - - - - - - 0 - 32 - 105 - 20 - - - - caLineEdit::Height - - - $(P)BraggERdbkAO - - - - 10 - 0 - 184 - - - - - 200 - 200 - 200 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 0 - 48 - 105 - 25 - - - - caLineEdit::Height - - - $(P)BraggEAO.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - decimal - - - - - - 0 - 19 - 105 - 15 - - - - caLineEdit::Height - - - $(P)BraggEAO.DRVH - - - - 10 - 0 - 184 - - - - - 200 - 200 - 200 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 0 - 71 - 105 - 15 - - - - caLineEdit::Height - - - $(P)BraggEAO.DRVL - - - - 10 - 0 - 184 - - - - - 200 - 200 - 200 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - QFrame::NoFrame - - - - 0 - 0 - 105 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - E (keV) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 20 - 84 - 65 - 20 - - - - caLineEdit::Height - - - $(P)BraggETweakAI - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - decimal - - - - - - 0 - 84 - 20 - 20 - - - - EPushButton::Height - - - $(P)BraggEDecBO.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - < - - - 1 - - - caMessageButton::Static - - - - - - 85 - 84 - 20 - 20 - - - - EPushButton::Height - - - $(P)BraggEIncBO.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - > - - - 1 - - - caMessageButton::Static - - - - - caGraphics::Rectangle - - - - 0 - 105 - 105 - 32 - - - - - 0 - 0 - 0 - - - - Filled - - - - 0 - 0 - 0 - - - - Solid - - - - - QFrame::NoFrame - - - - 0 - 105 - 105 - 10 - - - - - 0 - 216 - 0 - - - - - 0 - 216 - 0 - - - - SCAN CONTROL - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 64 - 115 - 40 - 20 - - - - EPushButton::Height - - - $(P)allstop.VAL - - - - 251 - 243 - 74 - - - - - 253 - 0 - 0 - - - - Abort - - - 1 - - - caMessageButton::Static - - - - - - 43 - 115 - 20 - 20 - - - - EPushButton::Height - - - $(P)BraggE:scanParms.GO - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Go - - - 1 - - - caMessageButton::Static - - - - - - 22 - 115 - 20 - 20 - - - - EPushButton::Height - - - $(P)BraggE:scanParms.LOAD - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Ld - - - 1 - - - caMessageButton::Static - - - - - - 1 - 115 - 20 - 20 - - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Menu - - - Energy-scan parameters - - - scanParms.adl - - - P=$(P),Q=BraggE,PV=BraggEAO - - - false - - - - - - 110 - 0 - 107 - 139 - - - - - QFrame::NoFrame - - - - 0 - 0 - 105 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - TH (deg.) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 0 - 32 - 105 - 20 - - - - caLineEdit::Height - - - $(P)BraggThetaRdbkAO - - - - 10 - 0 - 184 - - - - - 200 - 200 - 200 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 0 - 48 - 105 - 25 - - - - caLineEdit::Height - - - $(P)BraggThetaAO.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - decimal - - - - - - 0 - 19 - 105 - 15 - - - - caLineEdit::Height - - - $(P)BraggThetaAO.DRVH - - - - 10 - 0 - 184 - - - - - 200 - 200 - 200 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 0 - 71 - 105 - 15 - - - - caLineEdit::Height - - - $(P)BraggThetaAO.DRVL - - - - 10 - 0 - 184 - - - - - 200 - 200 - 200 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 85 - 84 - 20 - 20 - - - - EPushButton::Height - - - $(P)BraggThetaIncBO.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - > - - - 1 - - - caMessageButton::Static - - - - - - 20 - 84 - 65 - 20 - - - - caLineEdit::Height - - - $(P)BraggThetaTweakAI - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - decimal - - - - - - 0 - 84 - 20 - 20 - - - - EPushButton::Height - - - $(P)BraggThetaDecBO.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - < - - - 1 - - - caMessageButton::Static - - - - - caGraphics::Rectangle - - - - 0 - 105 - 105 - 32 - - - - - 0 - 0 - 0 - - - - Filled - - - - 0 - 0 - 0 - - - - Solid - - - - - QFrame::NoFrame - - - - 0 - 105 - 105 - 10 - - - - - 0 - 216 - 0 - - - - - 0 - 216 - 0 - - - - SCAN CONTROL - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 64 - 115 - 40 - 20 - - - - EPushButton::Height - - - $(P)allstop.VAL - - - - 251 - 243 - 74 - - - - - 253 - 0 - 0 - - - - Abort - - - 1 - - - caMessageButton::Static - - - - - - 43 - 115 - 20 - 20 - - - - EPushButton::Height - - - $(P)BraggTheta:scanParms.GO - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Go - - - 1 - - - caMessageButton::Static - - - - - - 22 - 115 - 20 - 20 - - - - EPushButton::Height - - - $(P)BraggTheta:scanParms.LOAD - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Ld - - - 1 - - - caMessageButton::Static - - - - - - 1 - 115 - 20 - 20 - - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Menu - - - Theta-scan parameters - - - scanParms.adl - - - P=$(P),Q=BraggTheta,PV=BraggThetaAO - - - false - - - - caLabel_0 - caRectangle_0 - caLabel_1 - caLabel_2 - caRectangle_1 - caLabel_3 - caFrame_0 - caLineEdit_0 - caTextEntry_0 - caLineEdit_1 - caLineEdit_2 - caTextEntry_1 - caMessageButton_0 - caMessageButton_1 - caMessageButton_2 - caMessageButton_3 - caMessageButton_4 - caRelatedDisplay_0 - caLineEdit_3 - caTextEntry_2 - caLineEdit_4 - caLineEdit_5 - caMessageButton_5 - caTextEntry_3 - caMessageButton_6 - caMessageButton_7 - caMessageButton_8 - caMessageButton_9 - caRelatedDisplay_1 - - - \ No newline at end of file diff --git a/opticsApp/op/ui/maskApertureSlit.ui b/opticsApp/op/ui/maskApertureSlit.ui new file mode 100644 index 0000000..cbbc283 --- /dev/null +++ b/opticsApp/op/ui/maskApertureSlit.ui @@ -0,0 +1,459 @@ + + + MainWindow + + + + 0 + 0 + 560 + 643 + + + + MainWindow + + + + + + 0 + 0 + 861 + 31 + + + + 0 + + + + 0 + 53 + 132 + + + + caFrame::Filled + + + + 5 + + + 10 + + + 2 + + + 0 + + + 2 + + + + + true + + + + 0 + 0 + + + + + Verdana + 16 + 75 + true + + + + $(P)$(SLITS) + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + ESimpleLabel::Height + + + + 228 + 228 + 228 + + + + + 160 + 160 + 164 + + + + + + + + + + 380 + 570 + 161 + 31 + + + + + 0 + 0 + + + + EPushButton::WidthAndHeight + + + 25ida:allstop.VAL + + + All Stop + + + + 228 + 228 + 30 + + + + + 228 + 30 + 30 + + + + 1 + + + caMessageButton::Static + + + + + + 10 + 30 + 531 + 451 + + + + + + 40 + 310 + 90 + 28 + + + + Horizontal + + + Qt::AlignCenter + + + + + + 160 + 310 + 90 + 28 + + + + Diagonal + + + Qt::AlignCenter + + + + + + 290 + 310 + 90 + 28 + + + + Pitch + + + Qt::AlignCenter + + + + + + 400 + 310 + 121 + 28 + + + + Yaw + + + Qt::AlignCenter + + + + + + 30 + 270 + 141 + 31 + + + + - Transforms + + + + 228 + 228 + 228 + + + + + 53 + 132 + 0 + + + + Center Drive;Center Readback;Hor. Size Drive;Hor. Size Readback;Vert. Size Drive;Vert. Size Readback + + + yyTransform_full.ui;yyTransform_full.ui;yyTransform_full.ui;yyTransform_full.ui;yyTransform_full.ui;yyTransform_full.ui + + + P=$(P),T=$(SLITS):centerDrive;P=$(P),T=$(SLITS):centerReadback;P=$(P),T=$(SLITS):size1Drive;P=$(P),T=$(SLITS):size1Readback;P=$(P),T=$(SLITS):size2Drive;P=$(P),T=$(SLITS):size2Readback + + + caRowColMenu::Menu + + + + + + 290 + 30 + 90 + 28 + + + + Center + + + Qt::AlignCenter + + + + + + 40 + 30 + 90 + 28 + + + + Center + + + Qt::AlignCenter + + + + + + 400 + 30 + 121 + 28 + + + + Size + + + Qt::AlignCenter + + + + + + 150 + 30 + 90 + 28 + + + + Size + + + Qt::AlignCenter + + + + + + 100 + 5 + 90 + 28 + + + + Horizontal + + + Qt::AlignCenter + + + + + + 350 + 5 + 90 + 28 + + + + Vertical + + + Qt::AlignCenter + + + + + + 180 + 270 + 141 + 31 + + + + - Calibration + + + + 228 + 228 + 228 + + + + + 53 + 132 + 0 + + + + Main + + + maskApertureSlit_calibration.ui + + + P=$(P),SLITS=$(SLITS),HOR=$(HOR),DIAG=$(DIAG),PITCH=$(PITCH),YAW=$(YAW) + + + caRowColMenu::Menu + + + + + + 30 + 60 + 491 + 181 + + + + P=$(P),M1=$(SLITS):hCenter,M2=$(SLITS):hSize,M3=$(SLITS):vCenter,M4=$(SLITS):vSize + + + motor4x.ui + + + + + + + 40 + 370 + 491 + 181 + + + + P=$(P),M1=$(HOR),M2=$(DIAG),M3=$(PITCH),M4=$(YAW) + + + motor4x.ui + + + + + + + + caRelatedDisplay + QWidget +
caRelatedDisplay
+
+ + caMessageButton + QPushButton +
caMessageButton
+
+ + caFrame + QFrame +
caFrame
+ 1 +
+ + caLabel + QLabel +
caLabel
+
+ + caInclude + QWidget +
caInclude
+
+
+ + +
diff --git a/opticsApp/op/ui/maskApertureSlit_calibration.ui b/opticsApp/op/ui/maskApertureSlit_calibration.ui new file mode 100644 index 0000000..27a291e --- /dev/null +++ b/opticsApp/op/ui/maskApertureSlit_calibration.ui @@ -0,0 +1,4200 @@ + + + MainWindow + + + + 0 + 0 + 860 + 600 + + + + MainWindow + + + + + + 0 + 0 + 861 + 31 + + + + 0 + + + + 0 + 53 + 132 + + + + caFrame::Filled + + + + 5 + + + 10 + + + 2 + + + 0 + + + 2 + + + + + true + + + + 0 + 0 + + + + + Verdana + 16 + 75 + true + + + + $(P)$(SLITS) + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + ESimpleLabel::Height + + + + 228 + 228 + 228 + + + + + 160 + 160 + 164 + + + + + + + + + + 0 + 40 + 851 + 551 + + + + + + 99 + 290 + 101 + 28 + + + + + 15 + + + + Horizontal + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + 100 + 380 + 90 + 28 + + + + Diagonal + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + 100 + 480 + 90 + 28 + + + + Pitch + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + 140 + 440 + 51 + 28 + + + + Yaw + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + 10 + 60 + 90 + 28 + + + + Center + + + Qt::AlignCenter + + + + + + 10 + 150 + 90 + 28 + + + + Size + + + Qt::AlignCenter + + + + + + 99 + 50 + 101 + 28 + + + + Horizontal + + + Qt::AlignCenter + + + + + + 100 + 130 + 101 + 28 + + + + Horizontal + + + Qt::AlignCenter + + + + + + 110 + 170 + 90 + 28 + + + + Vertical + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + 110 + 90 + 90 + 28 + + + + Vertical + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + 200 + 90 + 651 + 31 + + + + + 0 + + + 1 + + + 2 + + + 1 + + + 2 + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):vCenterDVAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + = + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 14 + PreferDefault + + + + $(P)$(SLITS):vCenterC1.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + x + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(HOR).RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + + + + + Qt::AlignCenter + + + 0 + + + + + + + + 0 + 0 + + + + + Monospace + 14 + PreferDefault + + + + $(P)$(SLITS):vCenterC2.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + x + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(DIAG).RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + + 200 + 130 + 511 + 31 + + + + + 0 + + + 1 + + + 2 + + + 1 + + + 2 + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):hSizeDVAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + = + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 14 + PreferDefault + + + + $(P)$(SLITS):hSizeC1.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + - + + + Qt::AlignCenter + + + 0 + + + + + + + + 0 + 0 + + + + + Monospace + 14 + PreferDefault + + + + $(P)$(SLITS):hSizeC2.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + x + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(YAW).RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + + 200 + 170 + 511 + 31 + + + + + 0 + + + 1 + + + 2 + + + 1 + + + 2 + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):vSizeDVAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + = + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 14 + PreferDefault + + + + $(P)$(SLITS):vSizeC1.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + - + + + Qt::AlignCenter + + + 0 + + + + + + + + 0 + 0 + + + + + Monospace + 14 + PreferDefault + + + + $(P)$(SLITS):vSizeC2.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + x + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(PITCH).RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + + 7 + 210 + 841 + 20 + + + + Qt::Horizontal + + + + + + 200 + 480 + 511 + 31 + + + + + 0 + + + 1 + + + 2 + + + 1 + + + 2 + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(PITCH).RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + = ( + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + $(P)$(SLITS):vSizeC1.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + - + + + Qt::AlignCenter + + + 0 + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):vSize.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + ) / + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + $(P)$(SLITS):vSizeC2.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + + + + + + + 200 + 440 + 511 + 31 + + + + + 0 + + + 1 + + + 2 + + + 1 + + + 2 + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(YAW).RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + = ( + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + $(P)$(SLITS):hSizeC1.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + - + + + Qt::AlignCenter + + + 0 + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):hSize.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + ) / + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + $(P)$(SLITS):hSizeC2.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + + + + + + + 10 + 290 + 71 + 31 + + + + - Motor Debug + + + + 228 + 228 + 228 + + + + + 53 + 132 + 0 + + + + Main + + + motorx_all.ui + + + P=$(P),M=$(HOR) + + + caRowColMenu::Menu + + + + + + 10 + 440 + 71 + 31 + + + + - Motor Debug + + + + 228 + 228 + 228 + + + + + 53 + 132 + 0 + + + + Main + + + motorx_all.ui + + + P=$(P),M=$(YAW) + + + caRowColMenu::Menu + + + + + + 10 + 480 + 71 + 31 + + + + - Motor Debug + + + + 228 + 228 + 228 + + + + + 53 + 132 + 0 + + + + Main + + + motorx_all.ui + + + P=$(P),M=$(PITCH) + + + caRowColMenu::Menu + + + + + + 10 + 380 + 71 + 31 + + + + - Motor Debug + + + + 228 + 228 + 228 + + + + + 53 + 132 + 0 + + + + Main + + + motorx_all.ui + + + P=$(P),M=$(DIAG) + + + caRowColMenu::Menu + + + + + + 340 + 227 + 211 + 31 + + + + + 17 + + + + Motor Calculations + + + Qt::AlignCenter + + + + + + 330 + 10 + 211 + 31 + + + + + 17 + + + + Slit Calculations + + + Qt::AlignCenter + + + + + + 200 + 260 + 651 + 84 + + + + + 0 + + + 0 + + + + + 0 + + + 0 + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + 0 + 0 + + + + + Monospace + 20 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(HOR).RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 18 + 75 + true + + + + = + + + Qt::AlignCenter + + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + 35 + + + + ( + + + + + + + 0 + + + + + 0 + + + 1 + + + 2 + + + 1 + + + 2 + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):vCenterC2.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + x + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):hCenter.RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + - + + + Qt::AlignCenter + + + 0 + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):hCenterC2.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + x + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):vCenter.RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + + + 0 + 0 + + + + 3 + + + Qt::Horizontal + + + + + + + 0 + + + 1 + + + 2 + + + 1 + + + 2 + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):hCenterC1.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + x + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):vCenterC2.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + - + + + Qt::AlignCenter + + + 0 + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):vCenterC1.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + x + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):hCenterC2.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + + + + + 35 + + + + ) + + + + + + + + + 200 + 350 + 651 + 84 + + + + + 0 + + + 0 + + + + + 0 + + + 0 + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + 0 + 0 + + + + + Monospace + 20 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(DIAG).RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 18 + 75 + true + + + + = + + + Qt::AlignCenter + + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + ( + + + + + + + 0 + + + + + 0 + + + 1 + + + 2 + + + 1 + + + 2 + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):vCenterC1.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + x + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):hCenter.RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + - + + + Qt::AlignCenter + + + 0 + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):hCenterC1.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + x + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):vCenter.RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + + + 0 + 0 + + + + 3 + + + Qt::Horizontal + + + + + + + 0 + + + 1 + + + 2 + + + 1 + + + 2 + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):vCenterC1.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + x + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):hCenterC2.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + - + + + Qt::AlignCenter + + + 0 + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):hCenterC1.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + x + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):vCenterC2.VAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + + + + ) + + + + + + + + + 200 + 50 + 651 + 31 + + + + + 0 + + + 1 + + + 2 + + + 1 + + + 2 + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(SLITS):hCenterDVAL + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + = + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 14 + PreferDefault + + + + $(P)$(SLITS):hCenterC1.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + x + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(HOR).RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + + + + + Qt::AlignCenter + + + 0 + + + + + + + + 0 + 0 + + + + + Monospace + 14 + PreferDefault + + + + $(P)$(SLITS):hCenterC2.VAL + + + + 0 + 0 + 0 + + + + + 115 + 223 + 255 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + 0 + 0 + + + + + 15 + 75 + true + + + + x + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + + Monospace + 17 + PreferDefault + + + + Qt::AlignAbsolute|Qt::AlignCenter|Qt::AlignHCenter|Qt::AlignVCenter + + + $(P)$(DIAG).RBV + + + + 10 + 0 + 184 + + + + + 200 + 200 + 200 + + + + caLineEdit::Static + + + caLineEdit::Channel + + + caLineEdit::Channel + + + 1.000000000000000 + + + 0.000000000000000 + + + caLineEdit::WidthAndHeight + + + caLineEdit::decimal + + + + + + + + + + + + caRelatedDisplay + QWidget +
caRelatedDisplay
+
+ + caTextEntry + caLineEdit +
caTextEntry
+
+ + caFrame + QFrame +
caFrame
+ 1 +
+ + caLabel + QLabel +
caLabel
+
+ + caLineEdit + QLineEdit +
caLineEdit
+
+
+ + +
diff --git a/opticsApp/op/ui/ml_monoSeqCtl_tiny.ui b/opticsApp/op/ui/ml_monoSeqCtl_tiny.ui deleted file mode 100644 index 51e433e..0000000 --- a/opticsApp/op/ui/ml_monoSeqCtl_tiny.ui +++ /dev/null @@ -1,1118 +0,0 @@ - - -MainWindow - - - - 300 - 258 - 215 - 140 - - - - - -QWidget#centralWidget {background: rgba(200, 200, 200, 255);} - - - - - - - - 0 - 32 - 105 - 20 - - - - caLineEdit::Height - - - $(P)ml_monoERdbk - - - - 10 - 0 - 184 - - - - - 200 - 200 - 200 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 0 - 48 - 105 - 25 - - - - caLineEdit::Height - - - $(P)ml_monoE.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - decimal - - - - - - 0 - 19 - 105 - 15 - - - - caLineEdit::Height - - - $(P)ml_monoE.DRVH - - - - 10 - 0 - 184 - - - - - 200 - 200 - 200 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 0 - 71 - 105 - 15 - - - - caLineEdit::Height - - - $(P)ml_monoE.DRVL - - - - 10 - 0 - 184 - - - - - 200 - 200 - 200 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - QFrame::NoFrame - - - - 0 - 0 - 105 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - E (keV) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 20 - 84 - 65 - 20 - - - - caLineEdit::Height - - - $(P)ml_monoETweak - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - decimal - - - - - - 0 - 84 - 20 - 20 - - - - EPushButton::Height - - - $(P)ml_monoEDec.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - < - - - 1 - - - caMessageButton::Static - - - - - - 85 - 84 - 20 - 20 - - - - EPushButton::Height - - - $(P)ml_monoEInc.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - > - - - 1 - - - caMessageButton::Static - - - - - caGraphics::Rectangle - - - - 0 - 105 - 105 - 32 - - - - - 0 - 0 - 0 - - - - Filled - - - - 0 - 0 - 0 - - - - Solid - - - - - QFrame::NoFrame - - - - 0 - 105 - 105 - 10 - - - - - 0 - 216 - 0 - - - - - 0 - 216 - 0 - - - - SCAN CONTROL - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 64 - 115 - 40 - 20 - - - - EPushButton::Height - - - $(P)allstop.VAL - - - - 251 - 243 - 74 - - - - - 253 - 0 - 0 - - - - Abort - - - 1 - - - caMessageButton::Static - - - - - - 43 - 115 - 20 - 20 - - - - EPushButton::Height - - - $(P)ml_monoE:scanParms.GO - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Go - - - 1 - - - caMessageButton::Static - - - - - - 22 - 115 - 20 - 20 - - - - EPushButton::Height - - - $(P)ml_monoE:scanParms.LOAD - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Ld - - - 1 - - - caMessageButton::Static - - - - - - 1 - 115 - 20 - 20 - - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Menu - - - Energy-scan parameters - - - scanParms.adl - - - P=$(P),Q=ml_monoE,PV=ml_monoE - - - false - - - - - - 110 - 0 - 107 - 139 - - - - - QFrame::NoFrame - - - - 0 - 0 - 105 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - TH (deg.) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 0 - 32 - 105 - 20 - - - - caLineEdit::Height - - - $(P)ml_monoThetaRdbk - - - - 10 - 0 - 184 - - - - - 200 - 200 - 200 - - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 0 - 48 - 105 - 25 - - - - caLineEdit::Height - - - $(P)ml_monoTheta.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - decimal - - - - - - 0 - 19 - 105 - 15 - - - - caLineEdit::Height - - - $(P)ml_monoTheta.DRVH - - - - 10 - 0 - 184 - - - - - 200 - 200 - 200 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 0 - 71 - 105 - 15 - - - - caLineEdit::Height - - - $(P)ml_monoTheta.DRVL - - - - 10 - 0 - 184 - - - - - 200 - 200 - 200 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 85 - 84 - 20 - 20 - - - - EPushButton::Height - - - $(P)ml_monoThetaInc.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - > - - - 1 - - - caMessageButton::Static - - - - - - 20 - 84 - 65 - 20 - - - - caLineEdit::Height - - - $(P)ml_monoThetaTweak - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Static - - - decimal - - - - - - 0 - 84 - 20 - 20 - - - - EPushButton::Height - - - $(P)ml_monoThetaDec.VAL - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - < - - - 1 - - - caMessageButton::Static - - - - - caGraphics::Rectangle - - - - 0 - 105 - 105 - 32 - - - - - 0 - 0 - 0 - - - - Filled - - - - 0 - 0 - 0 - - - - Solid - - - - - QFrame::NoFrame - - - - 0 - 105 - 105 - 10 - - - - - 0 - 216 - 0 - - - - - 0 - 216 - 0 - - - - SCAN CONTROL - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 64 - 115 - 40 - 20 - - - - EPushButton::Height - - - $(P)allstop.VAL - - - - 251 - 243 - 74 - - - - - 253 - 0 - 0 - - - - Abort - - - 1 - - - caMessageButton::Static - - - - - - 43 - 115 - 20 - 20 - - - - EPushButton::Height - - - $(P)ml_monoTheta:scanParms.GO - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Go - - - 1 - - - caMessageButton::Static - - - - - - 22 - 115 - 20 - 20 - - - - EPushButton::Height - - - $(P)ml_monoTheta:scanParms.LOAD - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Ld - - - 1 - - - caMessageButton::Static - - - - - - 1 - 115 - 20 - 20 - - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Menu - - - Theta-scan parameters - - - scanParms.adl - - - P=$(P),Q=ml_monoTheta,PV=ml_monoTheta - - - false - - - - caLabel_0 - caRectangle_0 - caLabel_1 - caLabel_2 - caRectangle_1 - caLabel_3 - caFrame_0 - caLineEdit_0 - caTextEntry_0 - caLineEdit_1 - caLineEdit_2 - caTextEntry_1 - caMessageButton_0 - caMessageButton_1 - caMessageButton_2 - caMessageButton_3 - caMessageButton_4 - caRelatedDisplay_0 - caLineEdit_3 - caTextEntry_2 - caLineEdit_4 - caLineEdit_5 - caMessageButton_5 - caTextEntry_3 - caMessageButton_6 - caMessageButton_7 - caMessageButton_8 - caMessageButton_9 - caRelatedDisplay_1 - - - \ No newline at end of file diff --git a/opticsApp/op/ui/orient.ui b/opticsApp/op/ui/orient.ui deleted file mode 100644 index 3c30c1c..0000000 --- a/opticsApp/op/ui/orient.ui +++ /dev/null @@ -1,3471 +0,0 @@ - - -MainWindow - - - - 82 - 81 - 490 - 245 - - - - - -QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - - - - - - - caGraphics::Rectangle - - - - 0 - 0 - 490 - 20 - - - - 3 - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - - - caGraphics::Rectangle - - - - 0 - 20 - 490 - 3 - - - - 3 - - - - 10 - 0 - 184 - - - - Filled - - - - 10 - 0 - 184 - - - - Solid - - - - - QFrame::NoFrame - - - - 0 - 0 - 490 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Diffractometer $(P)orient$(O) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 132 - 64 - 115 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - CONSTRAINT: - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 132 - 75 - 115 - 20 - - - - $(P)orient$(O):Mode - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caMenu::Static - - - - - - 164 - 99 - 80 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):TTH - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 164 - 122 - 80 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):TH - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 164 - 145 - 80 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):CHI - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 164 - 168 - 80 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):PHI - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - caGraphics::Rectangle - - - - 161 - 97 - 85 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):TTH_busy - - - - - QFrame::NoFrame - - - - 131 - 100 - 30 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - TTH - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 131 - 123 - 30 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - TH - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 131 - 146 - 30 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - CHI - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 131 - 169 - 30 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - PHI - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - caGraphics::Rectangle - - - - 161 - 121 - 85 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):TH_busy - - - - - caGraphics::Rectangle - - - - 161 - 143 - 85 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):CHI_busy - - - - - caGraphics::Rectangle - - - - 161 - 166 - 85 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):PHI_busy - - - - - - 254 - 118 - 99 - 6 - - - - 6 - - - - 51 - 153 - 0 - - - - - 51 - 153 - 0 - - - - - 51 - 153 - 0 - - - - Solid - - - caPolyLine::Calc - - - A||B - - - $(P)orient$(O):motPut - - - $(P)orient$(O):motPut_Auto - - - 96,3;3,3; - - - - - - 344 - 108 - 23 - 26 - - - - 1 - - - - 51 - 153 - 0 - - - - Filled - - - - 51 - 153 - 0 - - - - Solid - - - caPolyLine::Calc - - - A||B - - - $(P)orient$(O):motPut - - - $(P)orient$(O):motPut_Auto - - - 0,0;0,26;23,11;0,0; - - - caPolyLine::Polygon - - - - - - 280 - 97 - 57 - 36 - - - - - - 0 - 0 - 55 - 14 - - - - $(P)orient$(O):motPut_Auto - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caMenu::Static - - - - - - 0 - 14 - 55 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):motPut - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Move - - - 1 - - - caMessageButton::Static - - - - - - - 249 - 202 - 120 - 28 - - - - EPushButton::Height - - - $(P)orient$(O):stopMotors - - - - 251 - 243 - 74 - - - - - 253 - 0 - 0 - - - - Stop Motors - - - 1 - - - caMessageButton::Static - - - - - - 430 - 23 - 45 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):OperAck - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Erase - - - 1 - - - caMessageButton::Static - - - - - caGraphics::Rectangle - - - - 10 - 22 - 420 - 22 - - - - 3 - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):Alert - - - - - - 14 - 27 - 412 - 14 - - - - caLineEdit::Height - - - - 10 - 0 - 184 - - - - - 236 - 236 - 236 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 280 - 70 - 55 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):Busy - - - - 51 - 153 - 0 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - string - - - caLineEdit::Static - - - - - - 26 - 46 - 80 - 14 - - - - caLineEdit::Height - - - $(P)orient$(O):H_RBV - - - - 10 - 0 - 184 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - QFrame::NoFrame - - - - 10 - 180 - 10 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - L - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 25 - 179 - 80 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):L - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - caGraphics::Rectangle - - - - 23 - 177 - 84 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):L_busy - - - - - - 26 - 163 - 80 - 14 - - - - caLineEdit::Height - - - $(P)orient$(O):L_RBV - - - - 10 - 0 - 184 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - - 10 - 117 - 99 - 26 - - - - - QFrame::NoFrame - - - - 0 - 3 - 10 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - K - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 15 - 2 - 80 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):K - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - caGraphics::Rectangle - - - - 13 - 0 - 84 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):K_busy - - - - - - - 26 - 103 - 80 - 14 - - - - caLineEdit::Height - - - $(P)orient$(O):K_RBV - - - - 10 - 0 - 184 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - - 25 - 61 - 80 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):H - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 10 - 62 - 10 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - H - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - caGraphics::Rectangle - - - - 23 - 59 - 84 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):H_busy - - - - - - 252 - 145 - 113 - 39 - - - - - - 28 - 0 - 57 - 36 - - - - - - 0 - 0 - 55 - 14 - - - - $(P)orient$(O):motGet_Auto - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caMenu::Static - - - - - - 0 - 14 - 55 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):motGet - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Read - - - 1 - - - caMessageButton::Static - - - - - - - 12 - 20 - 99 - 7 - - - - 6 - - - - 51 - 153 - 0 - - - - - 51 - 153 - 0 - - - - - 51 - 153 - 0 - - - - Solid - - - caPolyLine::Calc - - - A||B - - - $(P)orient$(O):motGet - - - $(P)orient$(O):motGet_Auto - - - 3,4;96,3; - - - - - - 0 - 11 - 23 - 26 - - - - 1 - - - - 51 - 153 - 0 - - - - Filled - - - - 51 - 153 - 0 - - - - Solid - - - caPolyLine::Calc - - - A||B - - - $(P)orient$(O):motGet - - - $(P)orient$(O):motGet_Auto - - - 23,0;23,26;0,11;23,0; - - - caPolyLine::Polygon - - - - - - - 450 - 225 - 40 - 20 - - - - - 255 - 255 - 255 - - - - - 51 - 153 - 0 - - - - -More - - - Menu - - - Everything;Motors - - - orient_full.adl;motor4x.adl - - - P=$(P),O=$(O),PM=$(PM),mTTH=$(mTTH),mTH=$(mTH),mCHI=$(mCHI),mPHI=$(mPHI);P=$(PM),M1=$(mTTH),M2=$(mTH),M3=$(mCHI),M4=$(mPHI) - - - true;false - - - - - - 412 - 225 - 40 - 21 - - - - - 255 - 255 - 255 - - - - - 51 - 153 - 0 - - - - -Less - - - Menu - - - HKL only - - - orient_HKL.adl - - - P=$(P),O=$(O),PM=$(PM),mTTH=$(mTTH),mTH=$(mTH),mCHI=$(mCHI),mPHI=$(mPHI) - - - true - - - - - - 85 - 81 - 20 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):H_tweak.A - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - + - - - 1 - - - caMessageButton::Static - - - - - - 25 - 81 - 20 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):H_tweak.B - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - - - - - 1 - - - caMessageButton::Static - - - - - - 45 - 83 - 40 - 18 - - - - caLineEdit::Height - - - $(P)orient$(O):H_tweak.C - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 25 - 199 - 82 - 22 - - - - - - 60 - 0 - 20 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):L_tweak.A - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - + - - - 1 - - - caMessageButton::Static - - - - - - 0 - 0 - 20 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):L_tweak.B - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - - - - - 1 - - - caMessageButton::Static - - - - - - 20 - 2 - 40 - 18 - - - - caLineEdit::Height - - - $(P)orient$(O):L_tweak.C - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - - 25 - 139 - 82 - 22 - - - - - - 60 - 0 - 20 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):K_tweak.A - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - + - - - 1 - - - caMessageButton::Static - - - - - - 0 - 0 - 20 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):K_tweak.B - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - - - - - 1 - - - caMessageButton::Static - - - - - - 20 - 2 - 40 - 18 - - - - caLineEdit::Height - - - $(P)orient$(O):K_tweak.C - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - - 365 - 46 - 116 - 179 - - - - - - 32 - 80 - 80 - 14 - - - - caLineEdit::Height - - - $(PM)$(mCHI).RBV - - - - 10 - 0 - 184 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - caGraphics::Rectangle - - - - 30 - 94 - 84 - 24 - - - - 2 - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::Calc - - - A=0 - - - $(P)orient$(O):motCHI_Connected - - - - - - 32 - 96 - 80 - 20 - - - - caLineEdit::Height - - - $(PM)$(mCHI) - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - caGraphics::Rectangle - - - - 30 - 94 - 84 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):waiting4motCHI - - - - - caGraphics::Rectangle - - - - 30 - 54 - 84 - 24 - - - - 2 - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::Calc - - - A=0 - - - $(P)orient$(O):motTH_Connected - - - - - caGraphics::Rectangle - - - - 30 - 54 - 84 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):waiting4motTH - - - - - - 32 - 40 - 80 - 14 - - - - caLineEdit::Height - - - $(PM)$(mTH).RBV - - - - 10 - 0 - 184 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - - 32 - 56 - 80 - 20 - - - - caLineEdit::Height - - - $(PM)$(mTH) - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 32 - 0 - 80 - 14 - - - - caLineEdit::Height - - - $(PM)$(mTTH).RBV - - - - 10 - 0 - 184 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - caGraphics::Rectangle - - - - 30 - 14 - 84 - 24 - - - - 2 - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::Calc - - - A=0 - - - $(P)orient$(O):motTTH_Connected - - - - - - 32 - 16 - 80 - 20 - - - - caLineEdit::Height - - - $(PM)$(mTTH) - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - caGraphics::Rectangle - - - - 30 - 14 - 84 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):waiting4motTTH - - - - - QFrame::NoFrame - - - - 30 - 157 - 84 - 20 - - - - - 51 - 153 - 0 - - - - - 51 - 153 - 0 - - - - caLabel::IfNotZero - - - $(P)orient$(O):waiting4Mot - - - Moving - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 32 - 120 - 80 - 14 - - - - caLineEdit::Height - - - $(PM)$(mPHI).RBV - - - - 10 - 0 - 184 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - caGraphics::Rectangle - - - - 30 - 134 - 84 - 24 - - - - 2 - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::Calc - - - A=0 - - - $(P)orient$(O):motPHI_Connected - - - - - - 32 - 136 - 80 - 20 - - - - caLineEdit::Height - - - $(PM)$(mPHI) - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - caGraphics::Rectangle - - - - 30 - 134 - 84 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):waiting4motPHI - - - - - QFrame::NoFrame - - - - 0 - 17 - 30 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - TTH - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 57 - 30 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - TH - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 97 - 30 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - CHI - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 137 - 30 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - PHI - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - caRectangle_0 - caRectangle_1 - caLabel_0 - caLabel_1 - caRectangle_2 - caLabel_2 - caLabel_3 - caLabel_4 - caLabel_5 - caRectangle_3 - caRectangle_4 - caRectangle_5 - caPolyLine_0 - caPolygon_0 - caFrame_0 - caRectangle_6 - caLabel_6 - caRectangle_7 - caLabel_7 - caRectangle_8 - caFrame_1 - caLabel_8 - caRectangle_9 - caFrame_3 - caPolyLine_1 - caPolygon_1 - caFrame_2 - caFrame_4 - caFrame_5 - caRectangle_10 - caRectangle_11 - caRectangle_12 - caRectangle_13 - caRectangle_14 - caRectangle_15 - caLabel_9 - caRectangle_16 - caRectangle_17 - caLabel_10 - caLabel_11 - caLabel_12 - caLabel_13 - caFrame_6 - caMenu_0 - caTextEntry_0 - caTextEntry_1 - caTextEntry_2 - caTextEntry_3 - caMenu_1 - caMessageButton_0 - caMessageButton_1 - caMessageButton_2 - caLineEdit_0 - caLineEdit_1 - caLineEdit_2 - caTextEntry_4 - caLineEdit_3 - caTextEntry_5 - caLineEdit_4 - caTextEntry_6 - caMenu_2 - caMessageButton_3 - caRelatedDisplay_0 - caRelatedDisplay_1 - caMessageButton_4 - caMessageButton_5 - caTextEntry_7 - caMessageButton_6 - caMessageButton_7 - caTextEntry_8 - caMessageButton_8 - caMessageButton_9 - caTextEntry_9 - caLineEdit_5 - caTextEntry_10 - caLineEdit_6 - caTextEntry_11 - caLineEdit_7 - caTextEntry_12 - caLineEdit_8 - caTextEntry_13 - - - \ No newline at end of file diff --git a/opticsApp/op/ui/orient_XTALs.ui b/opticsApp/op/ui/orient_XTALs.ui deleted file mode 100644 index d026c64..0000000 --- a/opticsApp/op/ui/orient_XTALs.ui +++ /dev/null @@ -1,4089 +0,0 @@ - - -MainWindow - - - - 53 - 289 - 560 - 215 - - - - - -QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - - - - - - - - 5 - 25 - 552 - 188 - - - - - QFrame::NoFrame - - - - 0 - 10 - 25 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - USE - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 0 - 30 - 25 - 16 - - - - EPushButton::Height - - - $(P)orient$(O):xtal_1.PROC - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 1 - - - 1 - - - caMessageButton::Static - - - - - - 0 - 50 - 25 - 16 - - - - EPushButton::Height - - - $(P)orient$(O):xtal_2.PROC - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 2 - - - 2 - - - caMessageButton::Static - - - - - - 0 - 70 - 25 - 16 - - - - EPushButton::Height - - - $(P)orient$(O):xtal_3.PROC - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 3 - - - 3 - - - caMessageButton::Static - - - - - - 0 - 90 - 25 - 16 - - - - EPushButton::Height - - - $(P)orient$(O):xtal_4.PROC - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 4 - - - 4 - - - caMessageButton::Static - - - - - - 0 - 110 - 25 - 16 - - - - EPushButton::Height - - - $(P)orient$(O):xtal_5.PROC - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 5 - - - 5 - - - caMessageButton::Static - - - - - - 0 - 130 - 25 - 16 - - - - EPushButton::Height - - - $(P)orient$(O):xtal_6.PROC - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 6 - - - 6 - - - caMessageButton::Static - - - - - - 0 - 150 - 25 - 16 - - - - EPushButton::Height - - - $(P)orient$(O):xtal_7.PROC - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 7 - - - 7 - - - caMessageButton::Static - - - - - - 0 - 170 - 25 - 16 - - - - EPushButton::Height - - - $(P)orient$(O):xtal_8.PROC - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 8 - - - 8 - - - caMessageButton::Static - - - - - - 525 - 10 - 27 - 178 - - - - - - 0 - 140 - 25 - 16 - - - - EPushButton::Height - - - $(P)orient$(O):xtal_7_get.PROC - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 7 - - - 7 - - - caMessageButton::Static - - - - - QFrame::NoFrame - - - - 0 - 0 - 25 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - Get - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 0 - 20 - 25 - 16 - - - - EPushButton::Height - - - $(P)orient$(O):xtal_1_get.PROC - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 1 - - - 1 - - - caMessageButton::Static - - - - - - 0 - 40 - 25 - 16 - - - - EPushButton::Height - - - $(P)orient$(O):xtal_2_get.PROC - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 2 - - - 2 - - - caMessageButton::Static - - - - - - 0 - 60 - 25 - 16 - - - - EPushButton::Height - - - $(P)orient$(O):xtal_3_get.PROC - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 3 - - - 3 - - - caMessageButton::Static - - - - - - 0 - 80 - 25 - 16 - - - - EPushButton::Height - - - $(P)orient$(O):xtal_4_get.PROC - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 4 - - - 4 - - - caMessageButton::Static - - - - - - 0 - 100 - 25 - 16 - - - - EPushButton::Height - - - $(P)orient$(O):xtal_5_get.PROC - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 5 - - - 5 - - - caMessageButton::Static - - - - - - 0 - 120 - 25 - 16 - - - - EPushButton::Height - - - $(P)orient$(O):xtal_6_get.PROC - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 6 - - - 6 - - - caMessageButton::Static - - - - - - 0 - 160 - 25 - 16 - - - - EPushButton::Height - - - $(P)orient$(O):xtal_8_get.PROC - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - 8 - - - 8 - - - caMessageButton::Static - - - - - - - 30 - 150 - 100 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_7.STR1 - - - - 0 - 0 - 0 - - - - - 236 - 236 - 236 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 200 - 150 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_7.DO3 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 265 - 150 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_7.DO4 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 330 - 150 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_7.DO5 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 395 - 150 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_7.DO6 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 460 - 150 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_7.DO7 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 135 - 150 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_7.DO2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 30 - 0 - 100 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - crystal - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 30 - 15 - 100 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - description - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 200 - 0 - 60 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - b - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 265 - 0 - 60 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - c - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 330 - 0 - 60 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - alpha - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 395 - 0 - 60 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - beta - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 460 - 0 - 60 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - gamma - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 135 - 0 - 60 - 14 - - - - - 45 - 45 - 45 - - - - - 45 - 45 - 45 - - - - a - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 30 - 30 - 100 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_1.STR1 - - - - 0 - 0 - 0 - - - - - 236 - 236 - 236 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 200 - 30 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_1.DO3 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 265 - 30 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_1.DO4 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 330 - 30 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_1.DO5 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 395 - 30 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_1.DO6 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 460 - 30 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_1.DO7 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 135 - 30 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_1.DO2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 30 - 50 - 100 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_2.STR1 - - - - 0 - 0 - 0 - - - - - 236 - 236 - 236 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 200 - 50 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_2.DO3 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 265 - 50 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_2.DO4 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 330 - 50 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_2.DO5 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 395 - 50 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_2.DO6 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 460 - 50 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_2.DO7 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 135 - 50 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_2.DO2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 30 - 70 - 100 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_3.STR1 - - - - 0 - 0 - 0 - - - - - 236 - 236 - 236 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 200 - 70 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_3.DO3 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 265 - 70 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_3.DO4 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 330 - 70 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_3.DO5 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 395 - 70 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_3.DO6 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 460 - 70 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_3.DO7 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 135 - 70 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_3.DO2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 30 - 90 - 100 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_4.STR1 - - - - 0 - 0 - 0 - - - - - 236 - 236 - 236 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 200 - 90 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_4.DO3 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 265 - 90 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_4.DO4 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 330 - 90 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_4.DO5 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 395 - 90 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_4.DO6 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 460 - 90 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_4.DO7 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 135 - 90 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_4.DO2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 30 - 110 - 100 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_5.STR1 - - - - 0 - 0 - 0 - - - - - 236 - 236 - 236 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 200 - 110 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_5.DO3 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 265 - 110 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_5.DO4 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 330 - 110 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_5.DO5 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 395 - 110 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_5.DO6 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 460 - 110 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_5.DO7 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 135 - 110 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_5.DO2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 30 - 130 - 100 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_6.STR1 - - - - 0 - 0 - 0 - - - - - 236 - 236 - 236 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 200 - 130 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_6.DO3 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 265 - 130 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_6.DO4 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 330 - 130 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_6.DO5 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 395 - 130 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_6.DO6 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 460 - 130 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_6.DO7 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 135 - 130 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_6.DO2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 30 - 170 - 100 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_8.STR1 - - - - 0 - 0 - 0 - - - - - 236 - 236 - 236 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 200 - 170 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_8.DO3 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 265 - 170 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_8.DO4 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 330 - 170 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_8.DO5 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 395 - 170 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_8.DO6 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 460 - 170 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_8.DO7 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 135 - 170 - 60 - 16 - - - - caLineEdit::Height - - - $(P)orient$(O):xtal_8.DO2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - - 0 - 0 - 562 - 25 - - - - - caGraphics::Rectangle - - - - 0 - 0 - 560 - 20 - - - - 3 - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - - - QFrame::NoFrame - - - - 0 - 0 - 560 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Diffractometer $(P)orient$(O) crystals - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - caGraphics::Rectangle - - - - 0 - 20 - 560 - 3 - - - - 3 - - - - 10 - 0 - 184 - - - - Filled - - - - 10 - 0 - 184 - - - - Solid - - - - caLabel_0 - caLabel_1 - caFrame_1 - caLabel_2 - caLabel_3 - caLabel_4 - caLabel_5 - caLabel_6 - caLabel_7 - caLabel_8 - caLabel_9 - caFrame_0 - caRectangle_0 - caLabel_10 - caRectangle_1 - caFrame_2 - caMessageButton_0 - caMessageButton_1 - caMessageButton_2 - caMessageButton_3 - caMessageButton_4 - caMessageButton_5 - caMessageButton_6 - caMessageButton_7 - caMessageButton_8 - caMessageButton_9 - caMessageButton_10 - caMessageButton_11 - caMessageButton_12 - caMessageButton_13 - caMessageButton_14 - caMessageButton_15 - caTextEntry_0 - caTextEntry_1 - caTextEntry_2 - caTextEntry_3 - caTextEntry_4 - caTextEntry_5 - caTextEntry_6 - caTextEntry_7 - caTextEntry_8 - caTextEntry_9 - caTextEntry_10 - caTextEntry_11 - caTextEntry_12 - caTextEntry_13 - caTextEntry_14 - caTextEntry_15 - caTextEntry_16 - caTextEntry_17 - caTextEntry_18 - caTextEntry_19 - caTextEntry_20 - caTextEntry_21 - caTextEntry_22 - caTextEntry_23 - caTextEntry_24 - caTextEntry_25 - caTextEntry_26 - caTextEntry_27 - caTextEntry_28 - caTextEntry_29 - caTextEntry_30 - caTextEntry_31 - caTextEntry_32 - caTextEntry_33 - caTextEntry_34 - caTextEntry_35 - caTextEntry_36 - caTextEntry_37 - caTextEntry_38 - caTextEntry_39 - caTextEntry_40 - caTextEntry_41 - caTextEntry_42 - caTextEntry_43 - caTextEntry_44 - caTextEntry_45 - caTextEntry_46 - caTextEntry_47 - caTextEntry_48 - caTextEntry_49 - caTextEntry_50 - caTextEntry_51 - caTextEntry_52 - caTextEntry_53 - caTextEntry_54 - caTextEntry_55 - - - \ No newline at end of file diff --git a/opticsApp/op/ui/orient_full.ui b/opticsApp/op/ui/orient_full.ui deleted file mode 100644 index 11453f5..0000000 --- a/opticsApp/op/ui/orient_full.ui +++ /dev/null @@ -1,8316 +0,0 @@ - - -MainWindow - - - - 204 - 233 - 550 - 565 - - - - - -QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - - - - - - - QFrame::NoFrame - - - - 13 - 458 - 10 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - a - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 13 - 478 - 10 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - b - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 28 - 457 - 50 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):a - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 28 - 477 - 50 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):b - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 13 - 418 - 190 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Lattice parameters - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 13 - 498 - 10 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - c - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 28 - 497 - 50 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):c - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 283 - 436 - 240 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - A0 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 13 - 434 - 45 - 20 - - - - - 255 - 255 - 255 - - - - - 51 - 153 - 0 - - - - -XTALS - - - Menu - - - crystals - - - orient_XTALs.adl - - - P=$(P),O=$(O) - - - false - - - - - - 60 - 434 - 165 - 18 - - - - caLineEdit::Height - - - $(P)orient$(O):XTAL - - - - 0 - 0 - 0 - - - - - 236 - 236 - 236 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - string - - - - - - 330 - 533 - 60 - 20 - - - - $(P)orient$(O):Debug - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caMenu::Static - - - - - QFrame::NoFrame - - - - 285 - 537 - 40 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - debug - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - caGraphics::Rectangle - - - - 309 - 450 - 217 - 67 - - - - 3 - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::Calc - - - A#1 - - - $(P)orient$(O):A0_state - - - - - QFrame::NoFrame - - - - 100 - 458 - 50 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - alpha - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 100 - 478 - 50 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - beta - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 100 - 498 - 50 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - gamma - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 78 - 455 - 14 - 27 - - - - - QFrame::NoFrame - - - - 0 - 5 - 10 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - A - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 2 - 0 - 10 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - o - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - 78 - 475 - 14 - 27 - - - - - QFrame::NoFrame - - - - 0 - 5 - 10 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - A - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 2 - 0 - 10 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - o - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - 78 - 495 - 14 - 27 - - - - - QFrame::NoFrame - - - - 0 - 5 - 10 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - A - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 2 - 0 - 10 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - o - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - caGraphics::Rectangle - - - - 0 - 0 - 550 - 20 - - - - 3 - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - - - caGraphics::Rectangle - - - - 0 - 20 - 550 - 3 - - - - 3 - - - - 10 - 0 - 184 - - - - Filled - - - - 10 - 0 - 184 - - - - Solid - - - - - QFrame::NoFrame - - - - 0 - 0 - 550 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Diffractometer $(P)orient$(O) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 450 - 540 - 50 - 20 - - - - - 255 - 255 - 255 - - - - - 51 - 153 - 0 - - - - -Less - - - Menu - - - HKL, Angles, Motors - - - orient.adl - - - P=$(P),O=$(O),PM=$(PM),mTTH=$(mTTH),mTH=$(mTH),mCHI=$(mCHI),mPHI=$(mPHI) - - - true - - - - - - 500 - 540 - 50 - 20 - - - - - 255 - 255 - 255 - - - - - 51 - 153 - 0 - - - - -Motors - - - Menu - - - Motors - - - motor4x.adl - - - P=$(PM),M1=$(mTTH),M2=$(mTH),M3=$(mCHI),M4=$(mPHI) - - - false - - - - - caGraphics::Rectangle - - - - 70 - 258 - 406 - 24 - - - - 2 - - - - 51 - 153 - 0 - - - - - 51 - 153 - 0 - - - - - 51 - 153 - 0 - - - - Solid - - - caGraphics::Calc - - - A||B - - - $(P)orient$(O):refGet1 - - - $(P)orient$(O):refPut1 - - - - - caGraphics::Rectangle - - - - 70 - 284 - 406 - 24 - - - - 2 - - - - 51 - 153 - 0 - - - - - 51 - 153 - 0 - - - - - 51 - 153 - 0 - - - - Solid - - - caGraphics::Calc - - - A||B - - - $(P)orient$(O):refGet2 - - - $(P)orient$(O):refPut2 - - - - - QFrame::NoFrame - - - - 174 - 243 - 75 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - TTH - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 249 - 243 - 75 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - TH - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 324 - 243 - 75 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - CHI - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 399 - 243 - 75 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - PHI - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 174 - 260 - 75 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):TTH1 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 249 - 260 - 75 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):TH1 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 324 - 260 - 75 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):CHI1 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 399 - 260 - 75 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):PHI1 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 163 - 262 - 10 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - = - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 163 - 259 - 10 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - ^ - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 478 - 260 - 30 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):refGet1 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Get - - - 1 - - - caMessageButton::Static - - - - - - 509 - 260 - 30 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):refPut1 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Put - - - 1 - - - caMessageButton::Static - - - - - - 174 - 286 - 75 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):TTH2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 249 - 286 - 75 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):TH2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 324 - 286 - 75 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):CHI2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 399 - 286 - 75 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):PHI2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 163 - 288 - 10 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - = - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 163 - 285 - 10 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - ^ - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 478 - 285 - 30 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):refGet2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Get - - - 1 - - - caMessageButton::Static - - - - - - 509 - 285 - 30 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):refPut2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Put - - - 1 - - - caMessageButton::Static - - - - - - 132 - 260 - 30 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):L1 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 132 - 243 - 30 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - L - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 132 - 286 - 30 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):L2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 102 - 243 - 30 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - K - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 102 - 260 - 30 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):K1 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 102 - 286 - 30 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):K2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 72 - 243 - 30 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - H - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 72 - 260 - 30 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):H1 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 72 - 286 - 30 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):H2 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 167 - 229 - 20 - 20 - - - - 4 - - - - 51 - 153 - 0 - - - - Filled - - - - 51 - 153 - 0 - - - - Solid - - - caPolyLine::Calc - - - A||B - - - $(P)orient$(O):refGet1 - - - $(P)orient$(O):refGet2 - - - 9,20;20,0;0,0;9,20; - - - caPolyLine::Polygon - - - - - - 157 - 229 - 20 - 20 - - - - 4 - - - - 51 - 153 - 0 - - - - Filled - - - - 51 - 153 - 0 - - - - Solid - - - caPolyLine::Calc - - - A||B - - - $(P)orient$(O):refPut1 - - - $(P)orient$(O):refPut2 - - - 9,0;20,20;0,20;9,0; - - - caPolyLine::Polygon - - - - - - 182 - 340 - 90 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):OMTX_Calc - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Calc OMTX - - - 1 - - - caMessageButton::Static - - - - - caGraphics::Rectangle - - - - 305 - 332 - 217 - 67 - - - - 3 - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::Calc - - - A#1 - - - $(P)orient$(O):OMTX_state - - - - - QFrame::NoFrame - - - - 279 - 318 - 240 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - OM - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 26 - 57 - 80 - 14 - - - - caLineEdit::Height - - - $(P)orient$(O):H_RBV - - - - 10 - 0 - 184 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - QFrame::NoFrame - - - - 10 - 191 - 10 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - L - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 25 - 190 - 80 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):L - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - caGraphics::Rectangle - - - - 23 - 188 - 84 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):L_busy - - - - - - 85 - 210 - 20 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):L_tweak.A - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - + - - - 1 - - - caMessageButton::Static - - - - - - 25 - 210 - 20 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):L_tweak.B - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - - - - - 1 - - - caMessageButton::Static - - - - - - 45 - 212 - 40 - 18 - - - - caLineEdit::Height - - - $(P)orient$(O):L_tweak.C - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 26 - 174 - 80 - 14 - - - - caLineEdit::Height - - - $(P)orient$(O):L_RBV - - - - 10 - 0 - 184 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - - 10 - 128 - 99 - 26 - - - - - QFrame::NoFrame - - - - 0 - 3 - 10 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - K - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 15 - 2 - 80 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):K - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - caGraphics::Rectangle - - - - 13 - 0 - 84 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):K_busy - - - - - - - 85 - 150 - 20 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):K_tweak.A - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - + - - - 1 - - - caMessageButton::Static - - - - - - 25 - 150 - 20 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):K_tweak.B - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - - - - - 1 - - - caMessageButton::Static - - - - - - 45 - 152 - 40 - 18 - - - - caLineEdit::Height - - - $(P)orient$(O):K_tweak.C - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 26 - 114 - 80 - 14 - - - - caLineEdit::Height - - - $(P)orient$(O):K_RBV - - - - 10 - 0 - 184 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - - 85 - 92 - 20 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):H_tweak.A - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - + - - - 1 - - - caMessageButton::Static - - - - - - 25 - 92 - 20 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):H_tweak.B - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - - - - - 1 - - - caMessageButton::Static - - - - - - 45 - 94 - 40 - 18 - - - - caLineEdit::Height - - - $(P)orient$(O):H_tweak.C - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 25 - 72 - 80 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):H - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 10 - 73 - 10 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - H - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - caGraphics::Rectangle - - - - 23 - 70 - 84 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):H_busy - - - - - - 10 - 258 - 57 - 22 - - - - - QFrame::NoFrame - - - - 0 - 0 - 55 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - PRIMARY - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 10 - 55 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - REFLECTION - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - QFrame::NoFrame - - - - 10 - 286 - 55 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - SECONDARY - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 10 - 296 - 55 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - REFLECTION - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 118 - 362 - 60 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - errAngle: - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 182 - 362 - 90 - 14 - - - - caLineEdit::Height - - - $(P)orient$(O):errAngle - - - - 10 - 0 - 184 - - - - - 255 - 255 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - QFrame::NoFrame - - - - 118 - 380 - 60 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - maxErr: - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 182 - 378 - 90 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):errAngleThresh - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 495 - 24 - 45 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):OperAck - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Erase - - - 1 - - - caMessageButton::Static - - - - - caGraphics::Rectangle - - - - 10 - 22 - 485 - 22 - - - - 3 - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):Alert - - - - - - 15 - 27 - 475 - 14 - - - - caLineEdit::Height - - - $(P)orient$(O):Msg - - - - 10 - 0 - 184 - - - - - 236 - 236 - 236 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - decimal - - - caLineEdit::Static - - - - - - 379 - 336 - 72 - 62 - - - - - - 0 - 0 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):OMTX_12 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 20 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):OMTX_22 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 40 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):OMTX_32 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - - 449 - 336 - 72 - 62 - - - - - - 0 - 0 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):OMTX_13 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 20 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):OMTX_23 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 40 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):OMTX_33 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - - 309 - 336 - 72 - 62 - - - - - - 0 - 0 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):OMTX_11 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 20 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):OMTX_21 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 40 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):OMTX_31 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - - 313 - 454 - 72 - 62 - - - - - - 0 - 0 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):A0_11 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 20 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):A0_21 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 40 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):A0_31 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - - 383 - 454 - 72 - 62 - - - - - - 0 - 0 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):A0_12 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 20 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):A0_22 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 40 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):A0_32 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - - 453 - 454 - 72 - 62 - - - - - - 0 - 0 - 72 - 62 - - - - - - 0 - 0 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):A0_13 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 20 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):A0_23 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 40 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):A0_33 - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - - QFrame::NoFrame - - - - 228 - 457 - 10 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - o - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 228 - 478 - 10 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - o - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 228 - 498 - 10 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - o - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 155 - 457 - 72 - 62 - - - - - - 0 - 0 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):alpha - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 20 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):beta - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 0 - 40 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):gamma - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - - 246 - 475 - 49 - 22 - - - - - - 0 - 7 - 31 - 6 - - - - 6 - - - - 51 - 153 - 0 - - - - - 51 - 153 - 0 - - - - - 51 - 153 - 0 - - - - Solid - - - 28,3;3,3; - - - - - - 27 - 0 - 20 - 20 - - - - 1 - - - - 51 - 153 - 0 - - - - Filled - - - - 51 - 153 - 0 - - - - Solid - - - 0,0;20,10;0,19;0,20;0,0; - - - caPolyLine::Polygon - - - - - - QFrame::NoFrame - - - - 254 - 461 - 30 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - AUTO - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 13 - 518 - 166 - 27 - - - - - QFrame::NoFrame - - - - 0 - 4 - 75 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Wavelength: - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 81 - 3 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):lambda - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 152 - 0 - 14 - 27 - - - - - QFrame::NoFrame - - - - 0 - 5 - 10 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - A - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 2 - 0 - 10 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - o - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - QFrame::NoFrame - - - - 13 - 542 - 75 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Energy: - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 94 - 541 - 70 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):energy - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 165 - 543 - 10 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - keV - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 299 - 62 - 123 - 171 - - - - - - 0 - 141 - 120 - 28 - - - - EPushButton::Height - - - $(P)orient$(O):stopMotors - - - - 251 - 243 - 74 - - - - - 253 - 0 - 0 - - - - Stop Motors - - - 1 - - - caMessageButton::Static - - - - - - 36 - 0 - 50 - 20 - - - - $(P)orient$(O):Busy - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caMenu::Static - - - - - - 6 - 35 - 117 - 96 - - - - - - 2 - 21 - 99 - 6 - - - - 6 - - - - 51 - 153 - 0 - - - - - 51 - 153 - 0 - - - - - 51 - 153 - 0 - - - - Solid - - - caPolyLine::Calc - - - A||B - - - $(P)orient$(O):motPut - - - $(P)orient$(O):motPut_Auto - - - 96,3;3,3; - - - - - - 92 - 11 - 23 - 26 - - - - 1 - - - - 51 - 153 - 0 - - - - Filled - - - - 51 - 153 - 0 - - - - Solid - - - caPolyLine::Calc - - - A||B - - - $(P)orient$(O):motPut - - - $(P)orient$(O):motPut_Auto - - - 0,0;0,26;23,11;0,0; - - - caPolyLine::Polygon - - - - - - 28 - 0 - 57 - 36 - - - - - - 0 - 0 - 55 - 14 - - - - $(P)orient$(O):motPut_Auto - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caMenu::Static - - - - - - 0 - 14 - 55 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):motPut - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Move - - - 1 - - - caMessageButton::Static - - - - - - - 28 - 57 - 57 - 36 - - - - - - 0 - 0 - 55 - 14 - - - - $(P)orient$(O):motGet_Auto - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caMenu::Static - - - - - - 0 - 14 - 55 - 20 - - - - EPushButton::Height - - - $(P)orient$(O):motGet - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - Read - - - 1 - - - caMessageButton::Static - - - - - - - 12 - 77 - 99 - 7 - - - - 6 - - - - 51 - 153 - 0 - - - - - 51 - 153 - 0 - - - - - 51 - 153 - 0 - - - - Solid - - - caPolyLine::Calc - - - A||B - - - $(P)orient$(O):motGet - - - $(P)orient$(O):motGet_Auto - - - 3,4;96,3; - - - - - - 0 - 68 - 23 - 26 - - - - 1 - - - - 51 - 153 - 0 - - - - Filled - - - - 51 - 153 - 0 - - - - Solid - - - caPolyLine::Calc - - - A||B - - - $(P)orient$(O):motGet - - - $(P)orient$(O):motGet_Auto - - - 23,0;23,26;0,11;23,0; - - - caPolyLine::Polygon - - - - - - - - 180 - 66 - 123 - 133 - - - - - QFrame::NoFrame - - - - 1 - 0 - 120 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - HKL/ANGLE CONSTRAINT: - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 1 - 11 - 120 - 20 - - - - $(P)orient$(O):Mode - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caMenu::Static - - - - - - 33 - 63 - 80 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):TH - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 33 - 86 - 80 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):CHI - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 33 - 109 - 80 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):PHI - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 0 - 64 - 30 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - TH - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 87 - 30 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - CHI - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 110 - 30 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - PHI - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - caGraphics::Rectangle - - - - 30 - 62 - 85 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):TH_busy - - - - - caGraphics::Rectangle - - - - 30 - 84 - 85 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):CHI_busy - - - - - caGraphics::Rectangle - - - - 30 - 107 - 85 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):PHI_busy - - - - - - 33 - 40 - 80 - 20 - - - - caLineEdit::Height - - - $(P)orient$(O):TTH - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - caGraphics::Rectangle - - - - 30 - 38 - 85 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):TTH_busy - - - - - QFrame::NoFrame - - - - 0 - 41 - 30 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - TTH - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - 132 - 135 - 22 - 27 - - - - - QFrame::NoFrame - - - - 4 - 3 - 10 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - OM - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 4 - 14 - 10 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - A0 - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - caGraphics::Rectangle - - - - 0 - 0 - 20 - 25 - - - - 2 - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Solid - - - - - - - 152 - 140 - 17 - 17 - - - - 1 - - - - 51 - 153 - 0 - - - - Filled - - - - 51 - 153 - 0 - - - - Solid - - - 0,0;17,7;0,15;0,17;0,0; - - - caPolyLine::Polygon - - - - - - 115 - 140 - 17 - 17 - - - - 1 - - - - 51 - 153 - 0 - - - - Filled - - - - 51 - 153 - 0 - - - - Solid - - - 17,0;0,7;17,15;17,17;17,0; - - - caPolyLine::Polygon - - - - - QFrame::NoFrame - - - - 128 - 117 - 30 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - AUTO - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 425 - 53 - 116 - 179 - - - - - - 32 - 80 - 80 - 14 - - - - caLineEdit::Height - - - $(PM)$(mCHI).RBV - - - - 10 - 0 - 184 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - caGraphics::Rectangle - - - - 30 - 94 - 84 - 24 - - - - 2 - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::Calc - - - A=0 - - - $(P)orient$(O):motCHI_Connected - - - - - - 32 - 96 - 80 - 20 - - - - caLineEdit::Height - - - $(PM)$(mCHI) - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - caGraphics::Rectangle - - - - 30 - 94 - 84 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):waiting4motCHI - - - - - caGraphics::Rectangle - - - - 30 - 54 - 84 - 24 - - - - 2 - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::Calc - - - A=0 - - - $(P)orient$(O):motTH_Connected - - - - - caGraphics::Rectangle - - - - 30 - 54 - 84 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):waiting4motTH - - - - - - 32 - 40 - 80 - 14 - - - - caLineEdit::Height - - - $(PM)$(mTH).RBV - - - - 10 - 0 - 184 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - - 32 - 56 - 80 - 20 - - - - caLineEdit::Height - - - $(PM)$(mTH) - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 32 - 0 - 80 - 14 - - - - caLineEdit::Height - - - $(PM)$(mTTH).RBV - - - - 10 - 0 - 184 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - caGraphics::Rectangle - - - - 30 - 14 - 84 - 24 - - - - 2 - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::Calc - - - A=0 - - - $(P)orient$(O):motTTH_Connected - - - - - - 32 - 16 - 80 - 20 - - - - caLineEdit::Height - - - $(PM)$(mTTH) - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - caGraphics::Rectangle - - - - 30 - 14 - 84 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):waiting4motTTH - - - - - QFrame::NoFrame - - - - 30 - 157 - 84 - 20 - - - - - 51 - 153 - 0 - - - - - 51 - 153 - 0 - - - - caLabel::IfNotZero - - - $(P)orient$(O):waiting4Mot - - - Moving - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 32 - 120 - 80 - 14 - - - - caLineEdit::Height - - - $(PM)$(mPHI).RBV - - - - 10 - 0 - 184 - - - - - 218 - 218 - 218 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - caGraphics::Rectangle - - - - 30 - 134 - 84 - 24 - - - - 2 - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::Calc - - - A=0 - - - $(P)orient$(O):motPHI_Connected - - - - - - 32 - 136 - 80 - 20 - - - - caLineEdit::Height - - - $(PM)$(mPHI) - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - caGraphics::Rectangle - - - - 30 - 134 - 84 - 24 - - - - 2 - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)orient$(O):waiting4motPHI - - - - - QFrame::NoFrame - - - - 0 - 17 - 30 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - TTH - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 57 - 30 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - TH - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 97 - 30 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - CHI - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 137 - 30 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - PHI - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - caLabel_0 - caLabel_1 - caLabel_2 - caLabel_3 - caLabel_4 - caLabel_5 - caRectangle_0 - caLabel_6 - caLabel_7 - caLabel_8 - caLabel_9 - caLabel_10 - caFrame_0 - caLabel_11 - caLabel_12 - caFrame_1 - caLabel_13 - caLabel_14 - caFrame_2 - caRectangle_1 - caRectangle_2 - caLabel_15 - caRectangle_3 - caRectangle_4 - caLabel_16 - caLabel_17 - caLabel_18 - caLabel_19 - caLabel_20 - caLabel_21 - caLabel_22 - caLabel_23 - caLabel_24 - caLabel_25 - caLabel_26 - caPolygon_0 - caPolygon_1 - caRectangle_5 - caLabel_27 - caLabel_28 - caRectangle_6 - caLabel_29 - caRectangle_7 - caFrame_3 - caLabel_30 - caRectangle_8 - caLabel_31 - caLabel_32 - caFrame_4 - caLabel_33 - caLabel_34 - caLabel_35 - caLabel_36 - caRectangle_9 - caFrame_5 - caFrame_6 - caFrame_7 - caFrame_8 - caFrame_9 - caFrame_11 - caFrame_10 - caLabel_37 - caLabel_38 - caLabel_39 - caFrame_12 - caPolyLine_0 - caPolygon_2 - caFrame_13 - caLabel_40 - caLabel_41 - caLabel_42 - caLabel_43 - caFrame_15 - caFrame_14 - caLabel_44 - caLabel_45 - caPolyLine_1 - caPolygon_3 - caFrame_18 - caFrame_19 - caPolyLine_2 - caPolygon_4 - caFrame_17 - caFrame_16 - caLabel_46 - caLabel_47 - caLabel_48 - caLabel_49 - caRectangle_10 - caRectangle_11 - caRectangle_12 - caRectangle_13 - caLabel_50 - caFrame_20 - caLabel_51 - caLabel_52 - caRectangle_14 - caFrame_21 - caPolygon_5 - caPolygon_6 - caLabel_53 - caRectangle_15 - caRectangle_16 - caRectangle_17 - caRectangle_18 - caRectangle_19 - caRectangle_20 - caLabel_54 - caRectangle_21 - caRectangle_22 - caLabel_55 - caLabel_56 - caLabel_57 - caLabel_58 - caFrame_22 - caTextEntry_0 - caTextEntry_1 - caTextEntry_2 - caRelatedDisplay_0 - caTextEntry_3 - caMenu_0 - caRelatedDisplay_1 - caRelatedDisplay_2 - caTextEntry_4 - caTextEntry_5 - caTextEntry_6 - caTextEntry_7 - caMessageButton_0 - caMessageButton_1 - caTextEntry_8 - caTextEntry_9 - caTextEntry_10 - caTextEntry_11 - caMessageButton_2 - caMessageButton_3 - caTextEntry_12 - caTextEntry_13 - caTextEntry_14 - caTextEntry_15 - caTextEntry_16 - caTextEntry_17 - caMessageButton_4 - caLineEdit_0 - caTextEntry_18 - caMessageButton_5 - caMessageButton_6 - caTextEntry_19 - caLineEdit_1 - caTextEntry_20 - caMessageButton_7 - caMessageButton_8 - caTextEntry_21 - caLineEdit_2 - caMessageButton_9 - caMessageButton_10 - caTextEntry_22 - caTextEntry_23 - caLineEdit_3 - caTextEntry_24 - caMessageButton_11 - caLineEdit_4 - caTextEntry_25 - caTextEntry_26 - caTextEntry_27 - caTextEntry_28 - caTextEntry_29 - caTextEntry_30 - caTextEntry_31 - caTextEntry_32 - caTextEntry_33 - caTextEntry_34 - caTextEntry_35 - caTextEntry_36 - caTextEntry_37 - caTextEntry_38 - caTextEntry_39 - caTextEntry_40 - caTextEntry_41 - caTextEntry_42 - caTextEntry_43 - caTextEntry_44 - caTextEntry_45 - caTextEntry_46 - caTextEntry_47 - caMessageButton_12 - caMenu_1 - caMenu_2 - caMessageButton_13 - caMenu_3 - caMessageButton_14 - caMenu_4 - caTextEntry_48 - caTextEntry_49 - caTextEntry_50 - caTextEntry_51 - caLineEdit_5 - caTextEntry_52 - caLineEdit_6 - caTextEntry_53 - caLineEdit_7 - caTextEntry_54 - caLineEdit_8 - caTextEntry_55 - - - \ No newline at end of file diff --git a/opticsApp/op/ui/pf4Bankmore.ui b/opticsApp/op/ui/pf4Bankmore.ui deleted file mode 100644 index 727a81f..0000000 --- a/opticsApp/op/ui/pf4Bankmore.ui +++ /dev/null @@ -1,1984 +0,0 @@ - - -MainWindow - - - - 862 - 500 - 140 - 535 - - - - - -QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - - - - - - - caGraphics::Rectangle - - - - 0 - 0 - 140 - 25 - - - - - 255 - 255 - 255 - - - - Filled - - - - 255 - 255 - 255 - - - - Solid - - - - - - 0 - 180 - 141 - 2 - - - - 2 - - - - 0 - 0 - 0 - - - - Filled - - - - 0 - 0 - 0 - - - - Solid - - - $(P)$(H)calc - - - 1,1;140,1; - - - - - QFrame::NoFrame - - - - 0 - 0 - 135 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - PF4 filter - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 0 - 22 - 142 - 3 - - - - 3 - - - - 10 - 0 - 184 - - - - Filled - - - - 10 - 0 - 184 - - - - Solid - - - 1,1;140,1; - - - - - - 5 - 25 - 127 - 137 - - - - - 5 - 25 - 125 - 135 - - - - pf4Bank_bare.adl - - - - - - - - - 30 - 155 - 55 - 20 - - - - - 255 - 255 - 255 - - - - - 51 - 153 - 0 - - - - -config - - - Menu - - - all - - - pf4Bankconfig.adl - - - P=$(P),H=$(H),B=$(B) - - - true - - - - - - 85 - 155 - 50 - 20 - - - - - 255 - 255 - 255 - - - - - 51 - 153 - 0 - - - - -less - - - Menu - - - PF4 mono filter computed controls - - - pf4Bank.adl - - - P=$(P),H=$(H),B=$(B) - - - true - - - - - - 6 - 185 - 140 - 348 - - - - - - 0 - 0 - 66 - 348 - - - - - caGraphics::Rectangle - - - - 0 - 0 - 64 - 346 - - - - - 52 - 51 - 134 - - - - Filled - - - - 52 - 51 - 134 - - - - Solid - - - caGraphics::IfNotZero - - - $(P)$(H)fPos$(B) - - - - - caGraphics::Rectangle - - - - 0 - 0 - 64 - 346 - - - - - 30 - 187 - 0 - - - - Filled - - - - 30 - 187 - 0 - - - - Solid - - - caGraphics::IfZero - - - $(P)$(H)fPos$(B) - - - - - caGraphics::Rectangle - - - - 0 - 0 - 64 - 346 - - - - - 222 - 19 - 9 - - - - Filled - - - - 222 - 19 - 9 - - - - Solid - - - caGraphics::IfZero - - - $(P)$(H)bank$(B) - - - - - - 4 - 4 - 10 - 336 - - - - $(P)$(H)bitFlag$(B) - - - - 139 - 26 - 150 - - - - - 218 - 218 - 218 - - - - 0 - - - 15 - - - caByte::Static - - - Down - - - - - - - 68 - 69 - 70 - 14 - - - - caLineEdit::Height - - - $(P)$(H)fPos$(B).THST - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 68 - 48 - 70 - 14 - - - - caLineEdit::Height - - - $(P)$(H)fPos$(B).TWST - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 68 - 27 - 70 - 14 - - - - caLineEdit::Height - - - $(P)$(H)fPos$(B).ONST - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 68 - 6 - 70 - 14 - - - - caLineEdit::Height - - - $(P)$(H)fPos$(B).ZRST - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 68 - 91 - 70 - 14 - - - - caLineEdit::Height - - - $(P)$(H)fPos$(B).FRST - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 68 - 112 - 70 - 14 - - - - caLineEdit::Height - - - $(P)$(H)fPos$(B).FVST - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 68 - 133 - 70 - 14 - - - - caLineEdit::Height - - - $(P)$(H)fPos$(B).SXST - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 68 - 154 - 70 - 14 - - - - caLineEdit::Height - - - $(P)$(H)fPos$(B).SVST - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 68 - 175 - 70 - 14 - - - - caLineEdit::Height - - - $(P)$(H)fPos$(B).EIST - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 68 - 196 - 70 - 14 - - - - caLineEdit::Height - - - $(P)$(H)fPos$(B).NIST - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 68 - 217 - 70 - 14 - - - - caLineEdit::Height - - - $(P)$(H)fPos$(B).TEST - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 68 - 238 - 70 - 14 - - - - caLineEdit::Height - - - $(P)$(H)fPos$(B).ELST - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 68 - 259 - 70 - 14 - - - - caLineEdit::Height - - - $(P)$(H)fPos$(B).TVST - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 68 - 280 - 70 - 14 - - - - caLineEdit::Height - - - $(P)$(H)fPos$(B).TTST - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 68 - 301 - 70 - 14 - - - - caLineEdit::Height - - - $(P)$(H)fPos$(B).FTST - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 68 - 322 - 70 - 14 - - - - caLineEdit::Height - - - $(P)$(H)fPos$(B).FFST - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - string - - - caLineEdit::Static - - - - - - 18 - 6 - 40 - 18 - - - - EPushButton::Height - - - $(P)$(H)fPos$(B) - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - B 0 - - - 0 - - - caMessageButton::Static - - - - - - 18 - 27 - 40 - 18 - - - - EPushButton::Height - - - $(P)$(H)fPos$(B) - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - B 1 - - - 1 - - - caMessageButton::Static - - - - - - 18 - 48 - 40 - 18 - - - - EPushButton::Height - - - $(P)$(H)fPos$(B) - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - B 2 - - - 2 - - - caMessageButton::Static - - - - - - 18 - 69 - 40 - 18 - - - - EPushButton::Height - - - $(P)$(H)fPos$(B) - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - B 3 - - - 3 - - - caMessageButton::Static - - - - - - 18 - 91 - 40 - 18 - - - - EPushButton::Height - - - $(P)$(H)fPos$(B) - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - B 4 - - - 4 - - - caMessageButton::Static - - - - - - 18 - 112 - 40 - 18 - - - - EPushButton::Height - - - $(P)$(H)fPos$(B) - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - B 5 - - - 5 - - - caMessageButton::Static - - - - - - 18 - 133 - 40 - 18 - - - - EPushButton::Height - - - $(P)$(H)fPos$(B) - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - B 6 - - - 6 - - - caMessageButton::Static - - - - - - 18 - 154 - 40 - 18 - - - - EPushButton::Height - - - $(P)$(H)fPos$(B) - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - B 7 - - - 7 - - - caMessageButton::Static - - - - - - 18 - 175 - 40 - 18 - - - - EPushButton::Height - - - $(P)$(H)fPos$(B) - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - B 8 - - - 8 - - - caMessageButton::Static - - - - - - 18 - 196 - 40 - 18 - - - - EPushButton::Height - - - $(P)$(H)fPos$(B) - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - B 9 - - - 9 - - - caMessageButton::Static - - - - - - 18 - 217 - 40 - 18 - - - - EPushButton::Height - - - $(P)$(H)fPos$(B) - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - B 10 - - - 10 - - - caMessageButton::Static - - - - - - 18 - 238 - 40 - 18 - - - - EPushButton::Height - - - $(P)$(H)fPos$(B) - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - B 11 - - - 11 - - - caMessageButton::Static - - - - - - 18 - 259 - 40 - 18 - - - - EPushButton::Height - - - $(P)$(H)fPos$(B) - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - B 12 - - - 12 - - - caMessageButton::Static - - - - - - 18 - 280 - 40 - 18 - - - - EPushButton::Height - - - $(P)$(H)fPos$(B) - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - B 13 - - - 13 - - - caMessageButton::Static - - - - - - 18 - 301 - 40 - 18 - - - - EPushButton::Height - - - $(P)$(H)fPos$(B) - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - B 14 - - - 14 - - - caMessageButton::Static - - - - - - 18 - 322 - 40 - 18 - - - - EPushButton::Height - - - $(P)$(H)fPos$(B) - - - - 0 - 0 - 0 - - - - - 218 - 218 - 218 - - - - B 15 - - - 15 - - - caMessageButton::Static - - - - caRectangle_0 - caPolyLine_0 - caLabel_0 - caPolyLine_1 - caInclude_0 - caRectangle_1 - caRectangle_2 - caRectangle_3 - caFrame_2 - caFrame_1 - caRelatedDisplay_0 - caRelatedDisplay_1 - caByte_0 - caLineEdit_0 - caLineEdit_1 - caLineEdit_2 - caLineEdit_3 - caLineEdit_4 - caLineEdit_5 - caLineEdit_6 - caLineEdit_7 - caLineEdit_8 - caLineEdit_9 - caLineEdit_10 - caLineEdit_11 - caLineEdit_12 - caLineEdit_13 - caLineEdit_14 - caLineEdit_15 - caMessageButton_0 - caMessageButton_1 - caMessageButton_2 - caMessageButton_3 - caMessageButton_4 - caMessageButton_5 - caMessageButton_6 - caMessageButton_7 - caMessageButton_8 - caMessageButton_9 - caMessageButton_10 - caMessageButton_11 - caMessageButton_12 - caMessageButton_13 - caMessageButton_14 - caMessageButton_15 - - - \ No newline at end of file diff --git a/opticsApp/op/ui/pf4_other_bare.ui b/opticsApp/op/ui/pf4_other_bare.ui deleted file mode 100644 index ca40b74..0000000 --- a/opticsApp/op/ui/pf4_other_bare.ui +++ /dev/null @@ -1,138 +0,0 @@ - - -MainWindow - - - - 230 - 230 - 50 - 22 - - - - - -QWidget#centralWidget {background: rgba(218, 218, 218, 255);} - - - - - - - - 0 - 0 - 52 - 24 - - - - - - 0 - 0 - 40 - 20 - - - - caLineEdit::Height - - - $(P)$(H)Other$(N)$(B) - - - - 0 - 0 - 0 - - - - - 115 - 223 - 255 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - QFrame::NoFrame - - - - 40 - 2 - 10 - 20 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - caLabel::IfZero - - - $(P)$(H)OtherLegal$(N)$(B) - - - X - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - caFrame::Calc - - - a=3 - - - $(P)$(H)Z$(N)$(B) - - - caLabel_0 - caFrame_0 - caTextEntry_0 - - - \ No newline at end of file diff --git a/opticsApp/op/ui/qxbpm.ui b/opticsApp/op/ui/qxbpm.ui deleted file mode 100644 index 4c9723f..0000000 --- a/opticsApp/op/ui/qxbpm.ui +++ /dev/null @@ -1,2176 +0,0 @@ - - -MainWindow - - - - 19 - 30 - 555 - 370 - - - - - -QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - - - - - - - QFrame::NoFrame - - - - 2 - 3 - 200 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - qxbpm.adl - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 2 - 18 - 200 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - last edited: 2007-Jan-30 (prj) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 8 - 35 - 500 - 22 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Oxford Quad Beam Position Monitor - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 457 - 3 - 93 - 14 - - - - - 236 - 236 - 236 - - - - - 125 - 86 - 39 - - - - -configure - - - Menu - - - configure - - - qxbpm_config.adl - - - P=$(P),S=$(S) - - - false - - - - - - 227 - 4 - 200 - 14 - - - - $(P)enable - - - - 0 - 0 - 0 - - - - - 212 - 219 - 157 - - - - Column - - - caChoice::Static - - - - - - 319 - 81 - 220 - 220 - - - - - 0 - 216 - 0 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - caCartesianPlot::PlotLastNPoints - - - 100 - - - - 253 - 0 - 0 - - - - $(P)diff:x;$(P)diff:y - - - caCartesianPlot::User - - - -0.050000;0.050000 - - - caCartesianPlot::User - - - -0.100000;0.100000 - - - caCartesianPlot::Dots - - - caCartesianPlot::Dots - - - caCartesianPlot::Dots - - - caCartesianPlot::NoSymbol - - - caCartesianPlot::Rect - - - caCartesianPlot::Triangle - - - - - QFrame::NoFrame - - - - 96 - 60 - 50 - 16 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - X - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 209 - 60 - 50 - 16 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Y - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 318 - 60 - 220 - 20 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - pos - ref (mm) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - caGraphics::Rectangle - - - - 26 - 275 - 280 - 45 - - - - - 88 - 52 - 15 - - - - Filled - - - - 88 - 52 - 15 - - - - Solid - - - - - - 32 - 276 - 270 - 45 - - - - - - 0 - 0 - 14 - 45 - - - - - caGraphics::Rectangle - - - - 0 - 0 - 12 - 11 - - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::Calc - - - !A&&B - - - $(P)current:ok - - - $(P)current:low - - - - - caGraphics::Rectangle - - - - 0 - 16 - 12 - 11 - - - - - 251 - 243 - 74 - - - - Filled - - - - 251 - 243 - 74 - - - - Solid - - - caGraphics::Calc - - - A=B - - - $(P)current:ok - - - $(P)current:low - - - - - caGraphics::Rectangle - - - - 0 - 32 - 12 - 11 - - - - - 0 - 216 - 0 - - - - Filled - - - - 0 - 216 - 0 - - - - Solid - - - caGraphics::Calc - - - A&&!B - - - $(P)current:ok - - - $(P)current:low - - - - - - - 18 - 2 - 252 - 41 - - - - - - 0 - 0 - 252 - 22 - - - - - QFrame::NoFrame - - - - 0 - 0 - 250 - 20 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - caLabel::Calc - - - A=B - - - $(P)current:ok - - - $(P)current:low - - - diode currents OK - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 0 - 250 - 20 - - - - - 0 - 216 - 0 - - - - - 0 - 216 - 0 - - - - caLabel::Calc - - - A&&!B - - - $(P)current:ok - - - $(P)current:low - - - diode currents OK - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 0 - 250 - 20 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - caLabel::Calc - - - !A&&B - - - $(P)current:ok - - - $(P)current:low - - - diode currents too low - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - - 0 - 20 - 252 - 21 - - - - - - 0 - 0 - 252 - 14 - - - - - QFrame::NoFrame - - - - 0 - 0 - 250 - 12 - - - - - 238 - 182 - 43 - - - - - 238 - 182 - 43 - - - - caLabel::IfZero - - - $(P)current:ok - - - not all diodes above threshold - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 0 - 250 - 12 - - - - - 0 - 216 - 0 - - - - - 0 - 216 - 0 - - - - caLabel::IfNotZero - - - $(P)current:ok - - - all diodes above threshold - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - - 0 - 9 - 252 - 12 - - - - - QFrame::NoFrame - - - - 0 - 0 - 250 - 10 - - - - - 238 - 182 - 43 - - - - - 238 - 182 - 43 - - - - caLabel::IfZero - - - $(P)current:low - - - not all diodes below threshold - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 0 - 250 - 10 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - caLabel::IfNotZero - - - $(P)current:low - - - all diodes below threshold - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - - - - - 42 - 174 - 265 - 98 - - - - - - 28 - 18 - 100 - 20 - - - - caLineEdit::Height - - - $(P)current:a - - - - 0 - 216 - 0 - - - - - 0 - 0 - 0 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - engr. notation - - - caLineEdit::Static - - - - - - 141 - 18 - 100 - 20 - - - - caLineEdit::Height - - - $(P)current:c - - - - 0 - 216 - 0 - - - - - 0 - 0 - 0 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - engr. notation - - - caLineEdit::Static - - - - - QFrame::NoFrame - - - - 1 - 20 - 20 - 16 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - A - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 243 - 20 - 20 - 16 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - C - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 27 - 46 - 100 - 20 - - - - caLineEdit::Height - - - $(P)current:b - - - - 0 - 216 - 0 - - - - - 0 - 0 - 0 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - engr. notation - - - caLineEdit::Static - - - - - - 140 - 46 - 100 - 20 - - - - caLineEdit::Height - - - $(P)current:d - - - - 0 - 216 - 0 - - - - - 0 - 0 - 0 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - engr. notation - - - caLineEdit::Static - - - - - QFrame::NoFrame - - - - 0 - 48 - 20 - 16 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - B - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 242 - 48 - 20 - 16 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - D - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 35 - 0 - 200 - 16 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - photodiode currents - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 57 - 78 - 20 - 16 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - A+B+C+D - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - - - 84 - 76 - 100 - 20 - - - - caLineEdit::Height - - - $(P)current:total - - - - 0 - 216 - 0 - - - - - 0 - 0 - 0 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - engr. notation - - - caLineEdit::Static - - - - - - QFrame::NoFrame - - - - 11 - 82 - 50 - 16 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - pos - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 318 - 309 - 76 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - threshold: - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 402 - 308 - 76 - 12 - - - - caLineEdit::Height - - - $(P)current:low:raw - - - - 0 - 216 - 0 - - - - - 0 - 0 - 0 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - QFrame::NoFrame - - - - 13 - 330 - 400 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - amplifier range (all photodiodes use same range) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 14 - 342 - 530 - 18 - - - - $(P)gain - - - - 0 - 0 - 0 - - - - - 166 - 164 - 98 - - - - Column - - - caChoice::Static - - - - - - 11 - 140 - 277 - 22 - - - - - - 147 - 0 - 18 - 18 - - - - - 255 - 255 - 255 - - - - - 139 - 130 - 57 - - - - Menu - - - calculation - - - userCalcOut.adl - - - P=$(P),C=diff:x - - - false - - - - - - 257 - 0 - 18 - 18 - - - - - 255 - 255 - 255 - - - - - 139 - 130 - 57 - - - - Menu - - - calculation - - - userCalcOut.adl - - - P=$(P),C=diff:y - - - false - - - - - QFrame::NoFrame - - - - 0 - 1 - 50 - 16 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - diff - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 60 - 0 - 84 - 20 - - - - caLineEdit::Height - - - $(P)diff:x - - - - 0 - 216 - 0 - - - - - 0 - 0 - 0 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - - 173 - 0 - 84 - 20 - - - - caLineEdit::Height - - - $(P)diff:y - - - - 0 - 216 - 0 - - - - - 0 - 0 - 0 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - - - 11 - 114 - 275 - 22 - - - - - QFrame::NoFrame - - - - 0 - 2 - 50 - 16 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - ref - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 60 - 0 - 100 - 20 - - - - caLineEdit::Height - - - $(P)ref:x - - - - 0 - 0 - 0 - - - - - 212 - 219 - 157 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - 173 - 0 - 100 - 20 - - - - caLineEdit::Height - - - $(P)ref:y - - - - 0 - 0 - 0 - - - - - 212 - 219 - 157 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - decimal - - - - - - - 71 - 81 - 100 - 24 - - - - caLineEdit::Height - - - $(P)pos:x - - - - 236 - 236 - 236 - - - - - 90 - 90 - 90 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - - 184 - 81 - 100 - 24 - - - - caLineEdit::Height - - - $(P)pos:y - - - - 236 - 236 - 236 - - - - - 90 - 90 - 90 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - caLabel_0 - caLabel_1 - caLabel_2 - caLabel_3 - caLabel_4 - caLabel_5 - caRectangle_0 - caRectangle_1 - caRectangle_2 - caRectangle_3 - caFrame_1 - caLabel_6 - caLabel_7 - caLabel_8 - caFrame_3 - caLabel_9 - caLabel_10 - caFrame_5 - caLabel_11 - caLabel_12 - caFrame_6 - caFrame_4 - caFrame_2 - caFrame_0 - caLabel_13 - caLabel_14 - caLabel_15 - caLabel_16 - caLabel_17 - caLabel_18 - caFrame_7 - caLabel_19 - caLabel_20 - caLabel_21 - caLabel_22 - caFrame_8 - caLabel_23 - caFrame_9 - caRelatedDisplay_0 - caChoice_0 - caCartesianPlot_0 - caLineEdit_0 - caLineEdit_1 - caLineEdit_2 - caLineEdit_3 - caLineEdit_4 - caLineEdit_5 - caChoice_1 - caRelatedDisplay_1 - caRelatedDisplay_2 - caLineEdit_6 - caLineEdit_7 - caTextEntry_0 - caTextEntry_1 - caLineEdit_8 - caLineEdit_9 - - - \ No newline at end of file diff --git a/opticsApp/op/ui/qxbpm_config.ui b/opticsApp/op/ui/qxbpm_config.ui deleted file mode 100644 index d6dea88..0000000 --- a/opticsApp/op/ui/qxbpm_config.ui +++ /dev/null @@ -1,6085 +0,0 @@ - - -MainWindow - - - - 71 - 65 - 776 - 438 - - - - - -QWidget#centralWidget {background: rgba(187, 193, 135, 255);} - - - - - - - QFrame::NoFrame - - - - 2 - 3 - 200 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - qxbpm_config.adl - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 2 - 18 - 200 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - last edited: 2007-Mar-01 (prj) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 231 - 6 - 400 - 22 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - Oxford Quad XBPM Configuration - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 674 - 8 - 93 - 14 - - - - - 236 - 236 - 236 - - - - - 125 - 86 - 39 - - - - -main screen - - - Menu - - - main screen - - - qxbpm.adl - - - P=$(P),S=$(S) - - - false - - - - - - 332 - 120 - 440 - 14 - - - - $(P)gain - - - - 0 - 0 - 0 - - - - - 166 - 164 - 98 - - - - Column - - - caChoice::Static - - - - - QFrame::NoFrame - - - - 228 - 32 - 400 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - the BPM controller needs ~3 sec to fill 100 sample buffer (~30 ms/sample) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 26 - 152 - 282 - 47 - - - - - caGraphics::Rectangle - - - - 0 - 0 - 280 - 45 - - - - - 88 - 52 - 15 - - - - Filled - - - - 88 - 52 - 15 - - - - Solid - - - - - - 6 - 1 - 270 - 45 - - - - - - 0 - 0 - 14 - 45 - - - - - caGraphics::Rectangle - - - - 0 - 0 - 12 - 11 - - - - - 253 - 0 - 0 - - - - Filled - - - - 253 - 0 - 0 - - - - Solid - - - caGraphics::Calc - - - !A&&B - - - $(P)current:ok - - - $(P)current:low - - - - - caGraphics::Rectangle - - - - 0 - 16 - 12 - 11 - - - - - 251 - 243 - 74 - - - - Filled - - - - 251 - 243 - 74 - - - - Solid - - - caGraphics::Calc - - - A=B - - - $(P)current:ok - - - $(P)current:low - - - - - caGraphics::Rectangle - - - - 0 - 32 - 12 - 11 - - - - - 0 - 216 - 0 - - - - Filled - - - - 0 - 216 - 0 - - - - Solid - - - caGraphics::Calc - - - A&&!B - - - $(P)current:ok - - - $(P)current:low - - - - - - - 18 - 2 - 252 - 41 - - - - - - 0 - 0 - 252 - 22 - - - - - QFrame::NoFrame - - - - 0 - 0 - 250 - 20 - - - - - 251 - 243 - 74 - - - - - 251 - 243 - 74 - - - - caLabel::Calc - - - A=B - - - $(P)current:ok - - - $(P)current:low - - - diode currents OK - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 0 - 250 - 20 - - - - - 0 - 216 - 0 - - - - - 0 - 216 - 0 - - - - caLabel::Calc - - - A&&!B - - - $(P)current:ok - - - $(P)current:low - - - diode currents OK - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 0 - 250 - 20 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - caLabel::Calc - - - !A&&B - - - $(P)current:ok - - - $(P)current:low - - - diode currents too low - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - - 0 - 20 - 252 - 21 - - - - - - 0 - 0 - 252 - 14 - - - - - QFrame::NoFrame - - - - 0 - 0 - 250 - 12 - - - - - 238 - 182 - 43 - - - - - 238 - 182 - 43 - - - - caLabel::IfZero - - - $(P)current:ok - - - not all diodes above threshold - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 0 - 250 - 12 - - - - - 0 - 216 - 0 - - - - - 0 - 216 - 0 - - - - caLabel::IfNotZero - - - $(P)current:ok - - - all diodes above threshold - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - - 0 - 9 - 252 - 12 - - - - - QFrame::NoFrame - - - - 0 - 0 - 250 - 10 - - - - - 238 - 182 - 43 - - - - - 238 - 182 - 43 - - - - caLabel::IfZero - - - $(P)current:low - - - not all diodes below threshold - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 0 - 250 - 10 - - - - - 253 - 0 - 0 - - - - - 253 - 0 - 0 - - - - caLabel::IfNotZero - - - $(P)current:low - - - all diodes below threshold - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - - - - - - 20 - 280 - 742 - 152 - - - - - - 0 - 28 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r1:A1 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 85 - 28 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r1:B1 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 170 - 28 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r1:C1 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 255 - 28 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r1:D1 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 0 - 49 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r2:A1 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 85 - 49 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r2:B1 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 170 - 49 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r2:C1 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 255 - 49 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r2:D1 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 0 - 70 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r3:A1 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 85 - 70 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r3:B1 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 170 - 70 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r3:C1 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 255 - 70 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r3:D1 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 0 - 91 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r4:A1 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 85 - 91 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r4:B1 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 170 - 91 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r4:C1 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 255 - 91 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r4:D1 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 0 - 112 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r5:A1 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 85 - 112 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r5:B1 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 170 - 112 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r5:C1 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 255 - 112 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r5:D1 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 0 - 133 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r6:A1 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 85 - 133 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r6:B1 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 170 - 133 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r6:C1 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 255 - 133 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r6:D1 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 405 - 28 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r1:A2 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 490 - 28 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r1:B2 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 575 - 28 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r1:C2 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 660 - 28 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r1:D2 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 405 - 49 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r2:A2 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 490 - 49 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r2:B2 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 575 - 49 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r2:C2 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 660 - 49 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r2:D2 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 405 - 70 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r3:A2 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 490 - 70 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r3:B2 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 575 - 70 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r3:C2 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 660 - 70 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r3:D2 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 405 - 91 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r4:A2 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 490 - 91 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r4:B2 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 575 - 91 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r4:C2 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 660 - 91 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r4:D2 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 405 - 112 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r5:A2 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 490 - 112 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r5:B2 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 575 - 112 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r5:C2 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 660 - 112 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r5:D2 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 405 - 133 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r6:A2 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 490 - 133 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r6:B2 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 575 - 133 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r6:C2 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 660 - 133 - 80 - 17 - - - - caLineEdit::Height - - - $(P)r6:D2 - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - 340 - 28 - 60 - 12 - - - - caLineEdit::Height - - - $(P)gain.ZRST - - - - 0 - 0 - 0 - - - - - 187 - 193 - 135 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - compact - - - caLineEdit::Static - - - - - - 340 - 49 - 60 - 12 - - - - caLineEdit::Height - - - $(P)gain.ONST - - - - 0 - 0 - 0 - - - - - 187 - 193 - 135 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - compact - - - caLineEdit::Static - - - - - - 340 - 70 - 60 - 12 - - - - caLineEdit::Height - - - $(P)gain.TWST - - - - 0 - 0 - 0 - - - - - 187 - 193 - 135 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - compact - - - caLineEdit::Static - - - - - - 340 - 91 - 60 - 12 - - - - caLineEdit::Height - - - $(P)gain.THST - - - - 0 - 0 - 0 - - - - - 187 - 193 - 135 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - compact - - - caLineEdit::Static - - - - - - 340 - 112 - 60 - 12 - - - - caLineEdit::Height - - - $(P)gain.FRST - - - - 0 - 0 - 0 - - - - - 187 - 193 - 135 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - compact - - - caLineEdit::Static - - - - - - 340 - 133 - 60 - 12 - - - - caLineEdit::Height - - - $(P)gain.FVST - - - - 0 - 0 - 0 - - - - - 187 - 193 - 135 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - compact - - - caLineEdit::Static - - - - - QFrame::NoFrame - - - - 0 - 18 - 80 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - diode A - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 85 - 18 - 80 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - diode B - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 170 - 18 - 80 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - diode C - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 255 - 18 - 80 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - diode D - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 17 - 0 - 300 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - cG : photodiode gain multiplier adjustment (float) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 422 - 0 - 300 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - cB : photodiode gain raw offset (integer) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 405 - 18 - 80 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - diode A - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 490 - 18 - 80 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - diode B - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 575 - 18 - 80 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - diode C - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 660 - 18 - 80 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - diode D - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 340 - 18 - 60 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - range - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - - 15 - 254 - 104 - 17 - - - - EPushButton::Height - - - $(P)init - - - - 255 - 255 - 255 - - - - - 88 - 52 - 15 - - - - initialize - - - 1 - - - caMessageButton::Static - - - - - - 18 - 221 - 102 - 31 - - - - - QFrame::NoFrame - - - - 0 - 0 - 100 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - VxWorks debug level - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 0 - 11 - 100 - 18 - - - - caLineEdit::Height - - - $(P)debug - - - - 0 - 0 - 0 - - - - - 166 - 164 - 98 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - - 328 - 190 - 80 - 17 - - - - caLineEdit::Height - - - $(P)current:low:raw - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - QFrame::NoFrame - - - - 413 - 191 - 300 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - raw diode signal lower threshold - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 328 - 151 - 104 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - raw diode values - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 433 - 149 - 80 - 17 - - - - caLineEdit::Height - - - $(P)current:a:raw - - - - 153 - 255 - 255 - - - - - 0 - 0 - 0 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - - 518 - 149 - 80 - 17 - - - - caLineEdit::Height - - - $(P)current:b:raw - - - - 153 - 255 - 255 - - - - - 0 - 0 - 0 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - - 603 - 149 - 80 - 17 - - - - caLineEdit::Height - - - $(P)current:c:raw - - - - 153 - 255 - 255 - - - - - 0 - 0 - 0 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - - 688 - 149 - 80 - 17 - - - - caLineEdit::Height - - - $(P)current:d:raw - - - - 153 - 255 - 255 - - - - - 0 - 0 - 0 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - decimal - - - caLineEdit::Static - - - - - QFrame::NoFrame - - - - 327 - 170 - 104 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - diode current, A - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 432 - 168 - 80 - 17 - - - - caLineEdit::Height - - - $(P)current:a - - - - 153 - 255 - 255 - - - - - 0 - 0 - 0 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - exponential - - - caLineEdit::Static - - - - - - 517 - 168 - 80 - 17 - - - - caLineEdit::Height - - - $(P)current:b - - - - 153 - 255 - 255 - - - - - 0 - 0 - 0 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - exponential - - - caLineEdit::Static - - - - - - 602 - 168 - 80 - 17 - - - - caLineEdit::Height - - - $(P)current:c - - - - 153 - 255 - 255 - - - - - 0 - 0 - 0 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - exponential - - - caLineEdit::Static - - - - - - 687 - 168 - 80 - 17 - - - - caLineEdit::Height - - - $(P)current:d - - - - 153 - 255 - 255 - - - - - 0 - 0 - 0 - - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - exponential - - - caLineEdit::Static - - - - - - 664 - 259 - 93 - 14 - - - - - 236 - 236 - 236 - - - - - 125 - 86 - 39 - - - - - calibrate - - - Menu - - - main screen - - - qxbpm_calib.adl - - - P=$(P),S=$(S) - - - false - - - - - - 14 - 49 - 302 - 95 - - - - - - 0 - 0 - 300 - 16 - - - - $(P)enable - - - - 0 - 0 - 0 - - - - - 166 - 164 - 98 - - - - Column - - - caChoice::Static - - - - - - 0 - 21 - 300 - 16 - - - - $(P)mode - - - - 0 - 0 - 0 - - - - - 166 - 164 - 98 - - - - Column - - - caChoice::Static - - - - - - 0 - 42 - 302 - 53 - - - - - QFrame::NoFrame - - - - 0 - 0 - 300 - 10 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - # measurements for AVERAGE or WINDOW - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 0 - 11 - 300 - 40 - - - - $(P)buflen - - - - 0 - 0 - 0 - - - - - 166 - 164 - 98 - - - - caSlider::Channel - - - caSlider::Channel - - - 0.0 - - - 1.0 - - - Right - - - BottomScale - - - caSlider::Static - - - - - - - - 334 - 49 - 132 - 65 - - - - - - 0 - 0 - 132 - 31 - - - - - QFrame::NoFrame - - - - 0 - 0 - 130 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - RS232 poll period, s - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 0 - 11 - 130 - 18 - - - - caLineEdit::Height - - - $(P)period - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - - - 0 - 34 - 132 - 31 - - - - - QFrame::NoFrame - - - - 0 - 0 - 130 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - device address - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - 0 - 11 - 130 - 18 - - - - caLineEdit::Height - - - $(P)address - - - - 0 - 0 - 0 - - - - - 166 - 164 - 98 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - compact - - - caLineEdit::Static - - - - - - - - 476 - 49 - 297 - 65 - - - - - QFrame::NoFrame - - - - 0 - 0 - 90 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - RS232 port - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 17 - 90 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - RS232 out - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 34 - 90 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - RS232 in - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 51 - 90 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - RS232 status - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - - - 95 - 51 - 200 - 12 - - - - caLineEdit::Height - - - $(S).SEVR - - - - 153 - 255 - 255 - - - - - 0 - 0 - 0 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - compact - - - caLineEdit::Static - - - - - - 95 - 34 - 200 - 12 - - - - caLineEdit::Height - - - $(S).AINP - - - - 153 - 255 - 255 - - - - - 0 - 0 - 0 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - compact - - - caLineEdit::Static - - - - - - 95 - 17 - 200 - 12 - - - - caLineEdit::Height - - - $(S).AOUT - - - - 153 - 255 - 255 - - - - - 0 - 0 - 0 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - compact - - - caLineEdit::Static - - - - - - 95 - 0 - 200 - 12 - - - - caLineEdit::Height - - - $(P)port - - - - 153 - 255 - 255 - - - - - 0 - 0 - 0 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - compact - - - caLineEdit::Static - - - - - - - 156 - 219 - 442 - 58 - - - - - QFrame::NoFrame - - - - 0 - 0 - 440 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - photodiode current, I_n = cG * (raw_signal - cB) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - - 0 - 19 - 442 - 39 - - - - - QFrame::NoFrame - - - - 0 - 0 - 100 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - position_X = - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - - - 105 - 0 - 80 - 17 - - - - caLineEdit::Height - - - $(P)GX - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - QFrame::NoFrame - - - - 190 - 0 - 250 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - * ( I_B - I_D ) / ( I_B + I_D ) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 0 - 20 - 100 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - position_Y = - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignRight|Qt::AlignVCenter - - - - - - 105 - 20 - 80 - 17 - - - - caLineEdit::Height - - - $(P)GY - - - - 0 - 0 - 0 - - - - - 235 - 241 - 181 - - - - caLineEdit::Channel - - - caLineEdit::Channel - - - caLineEdit::Channel - - - 0.0 - - - 1.0 - - - caLineEdit::Static - - - compact - - - - - QFrame::NoFrame - - - - 190 - 20 - 250 - 14 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - * ( I_A - I_C ) / ( I_A + I_C ) - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignLeft|Qt::AlignVCenter - - - - - - - QFrame::NoFrame - - - - 433 - 136 - 80 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - 1/A/top - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 518 - 136 - 80 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - 2/B/left - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 603 - 136 - 80 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - 3/C/bottom - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - - - QFrame::NoFrame - - - - 688 - 136 - 80 - 12 - - - - - 0 - 0 - 0 - - - - - 0 - 0 - 0 - - - - 4/D/right - - - ESimpleLabel::Height - - - Qt::AlignAbsolute|Qt::AlignHCenter|Qt::AlignVCenter - - - caLabel_0 - caLabel_1 - caLabel_2 - caLabel_3 - caRectangle_0 - caRectangle_1 - caRectangle_2 - caRectangle_3 - caFrame_2 - caLabel_4 - caLabel_5 - caLabel_6 - caFrame_4 - caLabel_7 - caLabel_8 - caFrame_6 - caLabel_9 - caLabel_10 - caFrame_7 - caFrame_5 - caFrame_3 - caFrame_1 - caFrame_0 - caLabel_11 - caLabel_12 - caLabel_13 - caLabel_14 - caLabel_15 - caLabel_16 - caLabel_17 - caLabel_18 - caLabel_19 - caLabel_20 - caLabel_21 - caFrame_8 - caLabel_22 - caFrame_9 - caLabel_23 - caLabel_24 - caLabel_25 - caLabel_26 - caFrame_11 - caFrame_10 - caLabel_27 - caFrame_13 - caLabel_28 - caFrame_14 - caFrame_12 - caLabel_29 - caLabel_30 - caLabel_31 - caLabel_32 - caFrame_15 - caLabel_33 - caLabel_34 - caLabel_35 - caLabel_36 - caLabel_37 - caFrame_17 - caFrame_16 - caLabel_38 - caLabel_39 - caLabel_40 - caLabel_41 - caRelatedDisplay_0 - caChoice_0 - caTextEntry_0 - caTextEntry_1 - caTextEntry_2 - caTextEntry_3 - caTextEntry_4 - caTextEntry_5 - caTextEntry_6 - caTextEntry_7 - caTextEntry_8 - caTextEntry_9 - caTextEntry_10 - caTextEntry_11 - caTextEntry_12 - caTextEntry_13 - caTextEntry_14 - caTextEntry_15 - caTextEntry_16 - caTextEntry_17 - caTextEntry_18 - caTextEntry_19 - caTextEntry_20 - caTextEntry_21 - caTextEntry_22 - caTextEntry_23 - caTextEntry_24 - caTextEntry_25 - caTextEntry_26 - caTextEntry_27 - caTextEntry_28 - caTextEntry_29 - caTextEntry_30 - caTextEntry_31 - caTextEntry_32 - caTextEntry_33 - caTextEntry_34 - caTextEntry_35 - caTextEntry_36 - caTextEntry_37 - caTextEntry_38 - caTextEntry_39 - caTextEntry_40 - caTextEntry_41 - caTextEntry_42 - caTextEntry_43 - caTextEntry_44 - caTextEntry_45 - caTextEntry_46 - caTextEntry_47 - caLineEdit_0 - caLineEdit_1 - caLineEdit_2 - caLineEdit_3 - caLineEdit_4 - caLineEdit_5 - caMessageButton_0 - caTextEntry_48 - caTextEntry_49 - caLineEdit_6 - caLineEdit_7 - caLineEdit_8 - caLineEdit_9 - caLineEdit_10 - caLineEdit_11 - caLineEdit_12 - caLineEdit_13 - caRelatedDisplay_1 - caChoice_1 - caChoice_2 - caSlider_0 - caTextEntry_50 - caLineEdit_14 - caLineEdit_15 - caLineEdit_16 - caLineEdit_17 - caLineEdit_18 - caTextEntry_51 - caTextEntry_52 - - - \ No newline at end of file diff --git a/opticsApp/src/Makefile b/opticsApp/src/Makefile index 8e756ab..10b8dd4 100644 --- a/opticsApp/src/Makefile +++ b/opticsApp/src/Makefile @@ -18,17 +18,18 @@ include $(TOP)/configure/CONFIG DBDINC += tableRecord -DBD += opticsSupport.dbd opticsTest.dbd +DBD += opticsSupport.dbd #============================= LIBRARY_IOC += optics + optics_SRCS += tableRecord.c ### The following builds SNL programs as components of optics # NOTE: for suffix .st, code is run through cpp; for .stt, it's not -optics_SRCS += kohzuCtl.st +optics_SRCS += kohzuCtl.st kohzuCtl_soft.st optics_SRCS += hrCtl.st optics_SRCS += ml_monoCtl.st @@ -54,24 +55,13 @@ optics_SRCS += filterDrive.st # Pete Jemian's (SNL program) support for # Oxford Quad X-ray Beam Position Monitor optics_SRCS += sncqxbpm.st + +# Support for APS flexure stages +optics_SRCS += flexCombinedMotion.st optics_LIBS += seq pv optics_LIBS += $(EPICS_BASE_IOC_LIBS) -PROD_IOC += opticsTest - -opticsTest_SRCS += opticsMain.cpp -opticsTest_SRCS += opticsTest_registerRecordDeviceDriver.cpp - -opticsTest_LIBS += optics -opticsTest_LIBS += calc -opticsTest_LIBS += sscan -opticsTest_LIBS += autosave -opticsTest_LIBS += seq pv - -# Finally link to the EPICS Base libraries -opticsTest_LIBS += $(EPICS_BASE_IOC_LIBS) - include $(TOP)/configure/RULES #---------------------------------------- # ADD RULES AFTER THIS LINE diff --git a/opticsApp/src/filterDrive.st b/opticsApp/src/filterDrive.st index 73dd627..076dca0 100755 --- a/opticsApp/src/filterDrive.st +++ b/opticsApp/src/filterDrive.st @@ -32,7 +32,7 @@ program filterDrive("NAME=filterDrive, P=TEST:, R=filter:, NUM_FILTERS=8") ** $(P)$(R)Fi$(N) ** ** The filter transmission calculations are based on the filter material -** and thickness, using the Chanter Tables to interpolate the material's +** and thickness, using the Chantler Tables to interpolate the material's ** absorption coefficient for the requested energy: ** C.T. Chantler, Journal of Physical and Chemical Reference Data 24, ** 71 (1995). @@ -147,52 +147,46 @@ assign FILTER_WAIT_TIME to "{P}{R}WaitTime"; /* Define array of transmissions */ double TRANSM[MAX_FILTERS]; -assign TRANSM to {"","","","","","","","","","","","","","","","", - "","","","","","","","","","","","","","","",""}; +assign TRANSM to {}; /* Define array of thicknesses */ double THICK[MAX_FILTERS]; -assign THICK to {"","","","","","","","","","","","","","","","", - "","","","","","","","","","","","","","","",""}; +assign THICK to {}; monitor THICK; sync THICK needRecalc; /* Define array of filter materials */ string MATER[MAX_FILTERS]; -assign MATER to {"","","","","","","","","","","","","","","","", - "","","","","","","","","","","","","","","",""}; +assign MATER to {}; monitor MATER; sync MATER needRecalc; /* Define array for LOCK status of filters */ int LOCK[MAX_FILTERS]; -assign LOCK to {"","","","","","","","","","","","","","","","", - "","","","","","","","","","","","","","","",""}; +assign LOCK to {}; monitor LOCK; sync LOCK needRecalc; /* Define array of filters activators */ int SET[MAX_FILTERS]; -assign SET to {"","","","","","","","","","","","","","","","", - "","","","","","","","","","","","","","","",""}; +assign SET to {}; monitor SET; /* Define array for the enable/disable status of the filters */ int ENBL[MAX_FILTERS]; -assign ENBL to {"","","","","","","","","","","","","","","","", - "","","","","","","","","","","","","","","",""}; +assign ENBL to {}; monitor ENBL; sync ENBL needRecalc; -/* Define array for the output channels */ -int OUT[MAX_FILTERS]; -assign OUT to {"","","","","","","","","","","","","","","","", - "","","","","","","","","","","","","","","",""}; - +/* Define array for the output channels, UNUSED */ +/* +**int OUT[MAX_FILTERS]; +**assign OUT to {}; +*/ + /* Define array for the readback of the output channels */ int OUTGET[MAX_FILTERS]; -assign OUTGET to {"","","","","","","","","","","","","","","","", - "","","","","","","","","","","","","","","",""}; +assign OUTGET to {}; evflag externalIO; monitor OUTGET; @@ -360,8 +354,10 @@ static double calcTrans(double keV, pvAssign(SET[i], str); sprintf(str, "%s%sFi%d:Enable", prefix, record, i+1); pvAssign(ENBL[i], str); - sprintf(str, "%s%sFi%d:Set", prefix, record, i+1); - pvAssign(OUT[i], str); + /* + **sprintf(str, "%s%sFi%d:Set", prefix, record, i+1); + **pvAssign(OUT[i], str); + */ sprintf(str, "%s%sFi%d:OutGet", prefix, record, i+1); pvAssign(OUTGET[i], str); @@ -471,7 +467,7 @@ static double calcTrans(double keV, efClear(externalIO); /* Is this needed? It probably should not be. */ pvGet(SET[i]); if (SET[i] != OUTGET[i]) { - /* We mustn't write to SET[i] unless OUT[i] is different, because + /* We mustn't write to SET[i] unless OUTGET[i] is different, because * writing processes, which sets STATUS_UPDATE, which brings us back * here, causing an infinite loop. */ diff --git a/opticsApp/src/flexCombinedMotion.st b/opticsApp/src/flexCombinedMotion.st new file mode 100644 index 0000000..a23c83e --- /dev/null +++ b/opticsApp/src/flexCombinedMotion.st @@ -0,0 +1,330 @@ +program flexCombinedMotion("name=flexCombinedMotion,P=xxx:,M=m1,C=cap1,FM=pi:c0:m1,CM=nf:c0:m1") + +/* Turn on run-time debug messages */ +option +d; +/* Make the generated code reentrant */ +option +r; +/* Suppress SNC warnings */ +/*option -w;*/ + +#include "seqPVmacros.h" + +%%#include + +char* SNLtaskName; +double last_set_point; +double new_set_point; +double dist_calc; +double coarse_disp; +double fine_pos; +double fine_home; +double pos_error; +double act_db; +int num_retries; + +/* */ +PV(int, debug_flag, "{P}{M}:debug.VAL", Monitor); +PV(double, set_point, "{P}{M}:setPoint.VAL", EvFlag); +PV(double, mode, "{P}{M}:mode.VAL", Monitor); +PV(double, deadband, "{P}{M}:deadband.VAL", Monitor); +PV(double, retries, "{P}{M}:retries.VAL", NoMon); +PV(double, pos_monitor, "{P}{C}:pos", Monitor); +PV(double, fine_val_put, "{P}{FM}.VAL", NoMon); +PV(double, fine_rbv, "{P}{FM}.RBV", Monitor); +PV(double, coarse_rel_put, "{P}{CM}.RLV", NoMon); +PV(double, coarse_rbv, "{P}{CM}.RBV", Monitor); +PV(double, coarse_mres, "{P}{CM}.MRES", Monitor); +PV(short, coarse_dmov, "{P}{CM}.DMOV", EvFlag); +PV(short, coarse_stop_put, "{P}{CM}.STOP", NoMon); +PV(double, upper_limit, "{P}{M}:upperLimit.VAL", Monitor); +PV(double, home_pos, "{P}{M}:homePos.VAL", Monitor); +PV(double, lower_limit, "{P}{M}:lowerLimit.VAL", Monitor); +PV(short, stop, "{P}{M}:stop.VAL", EvFlag); +PV(short, stop_put, "{P}{M}:stop.VAL", NoMon); +/*PV(short, reset_busy_put, "{P}{M}:resetBusy.PROC", NoMon);*/ +PV(short, busy_put, "{P}{M}:busy.VAL", NoMon); + +/* + * Macros + */ +#define DEBUG_PRINT2(DEBUG_LEVEL,FMT,V1,V2) \ + if (debug_flag >= DEBUG_LEVEL) \ + { \ + printf("(%s,%d): ",__FILE__,__LINE__); \ + printf(FMT,V1,V2); \ + printf("\n"); \ + } +#define DEBUG_PRINT3(DEBUG_LEVEL,FMT,V1,V2,V3) \ + if (debug_flag >= DEBUG_LEVEL) \ + { \ + printf("(%s,%d): ",__FILE__,__LINE__); \ + printf(FMT,V1,V2,V3); \ + printf("\n"); \ + } + +ss combinedMotionMain +{ + + state init + { + when ( pvConnectCount() == pvAssignCount() ) + { + DEBUG_PRINT(3, "init -> idle\n"); + /* Initialize last_set_point to an unlikely-to-be-used value */ + last_set_point = -314159.26; + /* Only respond to changes in the set point after the program is running. + This does mean it is possible for the readback and set point to be out of sync. */ + efClear(set_point_mon); + efClear(stop_mon); + } state idle + } + + state idle + { + when ( efTestAndClear(set_point_mon) ) + { + DEBUG_PRINT1(5, "set_point = %f", set_point); + new_set_point = set_point; + num_retries = 0; + PVPUT(retries, num_retries); + DEBUG_PRINT(3, "idle -> checkSetPoint"); + } state checkSetPoint + + when ( efTest(stop_mon) ) + { + DEBUG_PRINT(3, "idle -> abort"); + } state abort + } + + state checkSetPoint + { + when ( new_set_point == last_set_point ) + { + DEBUG_PRINT1(5, "new_set_point = last_set_point = %f", new_set_point); + /* Also calcDistance when the value doesnt change, since this locks-in the feedback. + Eventually there could be a lock-in button to do this and this block could go to + the idle state instead of calcDistance. */ + DEBUG_PRINT(3, "checkSetPoint -> calcDistance"); + } state calcDistance + + when ( new_set_point != last_set_point ) + { + DEBUG_PRINT2(5, "last_set_point = %f ; new_set_point = %f", last_set_point, new_set_point); + last_set_point = new_set_point; + DEBUG_PRINT(3, "checkSetPoint -> calcDistance"); + } state calcDistance + } + + state calcDistance + { + entry + { + /* requested fine position */ + dist_calc = new_set_point - pos_monitor + fine_rbv; + DEBUG_PRINT3(5, "dist_calc=%f, pos_monitor=%f, fine_rbv=%f", dist_calc, pos_monitor, fine_rbv); + } + + when ( mode == 3 ) + { + /* In fine mode the coarse motor never moves, so the requested move needs to be limited to the fine motor range */ + if ( dist_calc > upper_limit ) + { + dist_calc = upper_limit; + DEBUG_PRINT1(5, "dist_calc=%f restricted by upper limit", dist_calc); + } + else if (dist_calc < lower_limit ) + { + dist_calc = lower_limit; + DEBUG_PRINT1(5, "dist_calc=%f restricted by lower limit", dist_calc); + } + DEBUG_PRINT(3, "calcDistance -> moveFine: mode = 3\n"); + } state moveFine + + when ( mode == 2 ) + { + /* In setup mode the piezo stays parked at the home position */ + DEBUG_PRINT(3, "calcDistance -> homeFine: mode = 2\n"); + } state homeFine + + when ( (dist_calc >= upper_limit) || (dist_calc <= lower_limit) ) + { + DEBUG_PRINT(3, "calcDistance -> homeFine"); + /* do something */ + } state homeFine + + when ( (dist_calc < upper_limit) && (dist_calc > lower_limit) ) + { + DEBUG_PRINT1(5, "dist=%f", dist_calc); + DEBUG_PRINT(3, "calcDistance -> moveFine"); + /* requested displacement is within the fine motor range */ + } state moveFine + } + + state homeFine + { + when () + { + /* Do not allow home to be outside of limits */ + if (home_pos > upper_limit) + { + fine_home = upper_limit; + DEBUG_PRINT(5, "restricting fine home to the upper limit"); + } + else if (home_pos < lower_limit) + { + fine_home = lower_limit; + DEBUG_PRINT(5, "restricting fine home to the lower limit"); + } + else + { + fine_home = home_pos; + } + + DEBUG_PRINT1(5, "fine_home=%f", fine_home); + PVPUT(fine_val_put, fine_home); + DEBUG_PRINT(3, "homeFine -> moveCoarse"); + } state moveCoarse + } + + state moveCoarse + { + entry { + coarse_disp = dist_calc - fine_home; + } + + when () + { + /* What does this do? */ + efClear(coarse_dmov_mon); + + DEBUG_PRINT1(5, "coarse_disp=%f", coarse_disp); + + PVPUT(coarse_rel_put, coarse_disp); + + DEBUG_PRINT(3, "moveCoarse -> waitMove"); + } state waitCoarse + } + + state waitCoarse + { + when ( efTestAndClear(coarse_dmov_mon) && coarse_dmov == 1 ) + { + DEBUG_PRINT(3, "waitMove -> afterMove"); + /* DMOV changed and is currently done */ + } state afterMove + + when ( efTestAndClear(stop_mon) ) + { + DEBUG_PRINT(3, "waitMove -> abort"); + } state abort + } + + state abort + { + when ( delay(0.15) ) + { + /* stop the coarse motor -- the fine motor should not be moving right now */ + PVPUT(coarse_stop_put, 1); + DEBUG_PRINT(3, "abort -> resetBusy"); + } state resetStop + } + + state resetStop + { + when () + { + /* reset the stop PV -- this should not be necessary */ + /*PVPUT(stop_put, 0);*/ + stop_put = 0; + pvPut(stop_put, SYNC); + efClear(stop_mon); + } state resetBusy + } + + state afterMove + { + when ( mode == 0 ) + { + DEBUG_PRINT(3, "afterMove -> calcDistance\n"); + + /* Go back to calcDistance because New Focus picomotors suck and the motor might still not be within + the piezo range after one coarse move, if the move is long and the direction is the bad one */ + } state calcDistance + + when ( mode == 1 || mode == 2 ) + { + DEBUG_PRINT(3, "afterMove -> maybeRetry\n"); + } state maybeRetry + } + + state maybeRetry + { + entry { + pos_error = new_set_point - pos_monitor; + if (deadband < coarse_mres) + act_db = coarse_mres; + else + act_db = deadband; + DEBUG_PRINT2(5, "pos_error=%f, deadband=%f", pos_error, act_db); + } + + when ( fabs(pos_error) > act_db ) + { + dist_calc = pos_error + fine_home; + DEBUG_PRINT1(5, "dist_calc=%f", dist_calc); + num_retries += 1; + PVPUT(retries, num_retries); + DEBUG_PRINT(3, "maybeRetry -> moveCoarse\n"); + } state moveCoarse + + when ( fabs(pos_error) <= act_db && mode == 1) + { + DEBUG_PRINT(3, "maybeRetry -> calcDistance\n"); + /* Should this go directly to moveFine instead? */ + } state calcDistance + + when ( fabs(pos_error) <= act_db && mode == 2) + { + /* In setup mode the piezo stays parked at the home position */ + DEBUG_PRINT(3, "maybeRetry -> resetBusy\n"); + } state resetBusy + } + + state moveFine + { + entry { + if ( mode != 3) + { + /* fine_pos is the same calc as dist_calc, but we recalculate it because pos_mon and fine_rbv have changed */ + fine_pos = new_set_point - pos_monitor + fine_rbv; + } + else + { + /* Do not recalculate the fine position in fine mode; the position may have been restricted by the limits */ + fine_pos = dist_calc; + } + } + + when () + { + DEBUG_PRINT2(5, "fine_pos=%f, dist=%f", fine_pos, dist_calc); + /*PVPUT(fine_val_put, fine_pos);*/ + fine_val_put = fine_pos; + pvPut(fine_val_put, SYNC); + DEBUG_PRINT(3, "moveFine -> resetBusy"); + } state resetBusy + } + + state resetBusy + { + when () + { + /* Process the reset-busy calcout */ + /*PVPUT(reset_busy_put, 1);*/ + /* Reset the busy record */ + PVPUT(busy_put, 0); + + DEBUG_PRINT(3, "resetBusy -> idle\n"); + } state idle + } +} diff --git a/opticsApp/src/hrCtl.st b/opticsApp/src/hrCtl.st index 5022033..3cb9944 100644 --- a/opticsApp/src/hrCtl.st +++ b/opticsApp/src/hrCtl.st @@ -1,11 +1,11 @@ -program hrCtl ("P=tmm, N=1, M_PHI1=m9, M_PHI2=m10") +program hrCtl ("P=xxx:, N=1, M_PHI1=m9, M_PHI2=m10") /* SNL compiler options */ option +r; /* arguments on the command line : * - * ex. seq &hr_Ctl, "P=nda, N=1, M_PHI1=m9, M_PHI2=m10" + * ex. seq &hrCtl, "P=xxx:, N=1, M_PHI1=m9, M_PHI2=m10" * * P - prefix * M_PHI1 - motor record for Theta 1 @@ -36,6 +36,9 @@ option +r; * 12-15-03 tmm v3.4 Converted to EPICS 3.14 OSI. */ +#define MAX(a,b) ((a)>(b)?(a):(b)) +#define MIN(a,b) ((a)<(b)?(a):(b)) + /* General Purpose PV's used by sequence */ short hrCtlDebug; assign hrCtlDebug to "{P}HR{N}CtlDebug"; @@ -310,7 +313,7 @@ short phi2Lls; /* Use the following assignments for the real system */ -%% short hrCtl_LS_TEST = 0; +%% static short hrCtl_LS_TEST = 0; assign phi1Hls to "{P}{M_PHI1}.HLS"; assign phi1Lls to "{P}{M_PHI1}.LLS"; assign phi2Hls to "{P}{M_PHI2}.HLS"; @@ -318,7 +321,7 @@ assign phi2Lls to "{P}{M_PHI2}.LLS"; /* Use the following assignment to simulate switches with soft PV's */ /* -%% short hrCtl_LS_TEST = 1; +%% static short hrCtl_LS_TEST = 1; assign phi1Hls to "{P}HR{N}_phi1SimHlsBI"; assign phi1Lls to "{P}HR{N}_phi1SimLlsBI"; assign phi2Hls to "{P}HR{N}_phi2SimHlsBI"; @@ -365,9 +368,11 @@ sync phi2MotLoLim phi2MotLoLim_mon; double phi1MotCmd; assign phi1MotCmd to "{P}{M_PHI1}"; +int phi1PutComplete; double phi2MotCmd; assign phi2MotCmd to "{P}{M_PHI2}"; +int phi2PutComplete; double phi1MotCmdMon; assign phi1MotCmdMon to "{P}{M_PHI1}"; @@ -482,10 +487,10 @@ monitor thetaMax; %%#include %%#include -%%double hrCtl_calc2dSpacing(struct UserVar *pVar, int xtal, double A, double H, double K, double L); -%%void hrCtl_calcReadback(struct UserVar *pVar); -%%char *hrCtl_pmacP; -%%char *hrCtl_pmacM; +%%static double hrCtl_calc2dSpacing(struct UserVar *pVar, int xtal, double A, double H, double K, double L); +%%static void hrCtl_calcReadback(struct UserVar *pVar); +%%static char *hrCtl_pmacP; +%%static char *hrCtl_pmacM; short toggle; short causedMove; @@ -501,15 +506,19 @@ double temp; ss hr_Ctl { -state init - { + state init { + entry { + if (hrCtlDebug) %%printf("hrCtl:init: entry\n"); + } when () { initSeq = 0; } state initSequence } -state initSequence - { + state initSequence { + entry { + if (hrCtlDebug) %%printf("hrCtl:initSequence: entry\n"); + } when (initSeq == 0) { hc = 12.3984244; PI = 4*atan(1.0); @@ -519,6 +528,8 @@ state initSequence D2uR = 1000000*PI/180; phi1MotStop = 1; phi2MotStop = 1; + phi1PutComplete = 1; + phi2PutComplete = 1; putVals = 0; pvPut(putVals); autoMode = 0; @@ -568,25 +579,29 @@ state initSequence pvPut(seqMsg2); %%} initSeqDone = 1; - phi1 = phi1MotRdbk + (phi1Off + worldOff*uR2D); + phi1 = phi1MotRdbk * uR2D + (phi1Off + worldOff*uR2D); pvPut(phi1); theta1 = phi1; pvPut(theta1); if (Geom == 0) { phi2 = phi2MotRdbk * uR2D + phi2Off + worldOff*uR2D; + theta2 = phi2 - phi1 - theta1; } else { phi2 = phi2MotRdbk * uR2D + phi2Off - worldOff*uR2D; + theta2 = phi2; } - pvPut(phi1); - theta2 = phi2 - phi1 - theta1; + if (hrCtlDebug) %%printf("hrCtl:initSequence: opMode=%d, Geom=%d, phi2=%f\n", pVar->opMode, pVar->Geom, pVar->phi2); + pvPut(phi2); pvPut(theta2); } state thChanged } -state waitForCmndEnter - { + state waitForCmndEnter { + entry { + if (hrCtlDebug) %%printf("hrCtl:waitForCmndEnter: entry\n"); + } when (initSeqDone && delay(.1)) { - if (hrCtlDebug) %%printf("hrCtl:waitForCmdEnter\n"); + if (hrCtlDebug) %%printf("hrCtl:waitForCmdEnter: initSeqDone\n"); efClear(H1_mon); efClear(K1_mon); efClear(L1_mon); @@ -632,6 +647,7 @@ state waitForCmndEnter } else { phi2 = phi2MotCmdMon * uR2D + phi2Off - worldOff*uR2D; } + if (hrCtlDebug) %%printf("hrCtl:waitForCmdEnter: Geom=%d, phi2=%f\n", pVar->Geom, pVar->phi2); pvPut(phi2); if ((opMode == 0) || (opMode == 1)) { @@ -674,8 +690,10 @@ state waitForCmndEnter } state initSequence } -state waitForCmnd - { + state waitForCmnd { + entry { + if (hrCtlDebug) %%printf("hrCtl:waitForCmnd: entry\n"); + } when (efTestAndClear(phi1MotHiLim_mon) || efTestAndClear(phi1MotLoLim_mon) || efTestAndClear(phi2MotHiLim_mon) || efTestAndClear(phi2MotLoLim_mon)) { sprintf(seqMsg1, "Motor Soft Limit Changed"); @@ -764,7 +782,7 @@ state waitForCmnd efClear(useSetMode_mon); } state phiLimits - when (efTestAndClear(opMode_mon) && delay(.1)) { + when (efTestAndClear(opMode_mon)) { if (hrCtlDebug) %%printf("hrCtl:waitForCmnd: opMode event.\n"); autoMode = 0; pvPut(autoMode); @@ -772,7 +790,7 @@ state waitForCmnd pvPut(seqMsg2); } state calcMovements - when (efTestAndClear(Geom_mon) && delay(.1)) { + when (efTestAndClear(Geom_mon)) { if (hrCtlDebug) %%printf("hrCtl:waitForCmnd: Geom event.\n"); autoMode = 0; pvPut(autoMode); @@ -801,18 +819,25 @@ state waitForCmnd when (efTest(hr_Moving_mon)) { efClear(hr_Moving_mon); } state checkAutoMode + + when ((!phi1Dmov || !phi2Dmov) && delay(.1)) { + } state updateRdbk } -state checkAutoMode - { + state checkAutoMode { + entry { + if (hrCtlDebug) %%printf("hrCtl:checkAutoMode: entry\n"); + } when (autoMode) { } state checkDone when (1) { } state waitForCmnd } -state phiLimits - { + state phiLimits { + entry { + if (hrCtlDebug) %%printf("hrCtl:phiLimits: entry\n"); + } when () { if (hrCtlDebug) %%printf("hrCtl:phiLimits\n"); if (!useSetMode) { @@ -823,14 +848,12 @@ state phiLimits theta1Lo = phi1Lo; if (theta1Hi > thetaMax) { theta1Hi = thetaMax; - sprintf(seqMsg2, "Theta1HiLim > %f deg. (Using %f deg.)", - thetaMax, thetaMax); + sprintf(seqMsg2, "Theta1HiLim clipped at %.3f", thetaMax); pvPut(seqMsg2); } if (theta1Lo < thetaMin) { theta1Lo = thetaMin; - sprintf(seqMsg2, "Theta1LoLim < %f deg. (Using %f deg.)", - thetaMin, thetaMin); + sprintf(seqMsg2, "Theta1LoLim clipped at %.3f", thetaMin); pvPut(seqMsg2); } pvPut(theta1Hi); @@ -838,11 +861,13 @@ state phiLimits /* translate phi2 motor limits into phi2, theta2 limits */ if (Geom == 0) { + /* nested */ phi2Hi = phi2MotHiLim * uR2D + phi2Off + worldOff*uR2D; phi2Lo = phi2MotLoLim * uR2D + phi2Off + worldOff*uR2D; theta2Hi = phi2Hi - phi1Lo - theta1Lo; theta2Lo = phi2Lo - phi1Hi - theta1Hi; } else { + /* symmetric */ phi2Hi = phi2MotHiLim * uR2D + phi2Off - worldOff*uR2D; phi2Lo = phi2MotLoLim * uR2D + phi2Off - worldOff*uR2D; theta2Hi = phi2Hi; @@ -850,23 +875,21 @@ state phiLimits } if (theta2Hi > thetaMax) { theta2Hi = thetaMax; - sprintf(seqMsg2, "Theta2HiLim > %f deg. (Using %f deg.)", - thetaMax,thetaMax); + sprintf(seqMsg2, "Theta2HiLim clipped at %.3f", thetaMax); pvPut(seqMsg2); } if (theta2Lo < thetaMin) { theta2Lo = thetaMin; - sprintf(seqMsg2, "Theta2LoLim < %f deg. (Using %f deg.)", - thetaMin, thetaMin); + sprintf(seqMsg2, "Theta2LoLim clipped at %.3f", thetaMin); pvPut(seqMsg2); } pvPut(theta2Hi); pvPut(theta2Lo); - /* calc limits on lambda, energy from theta 1 limits */ - lambdaHi = D1*sin(theta1Hi*D2R); + /* calc limits on lambda, energy from theta 1/2 limits */ + lambdaHi = MIN(D1*sin(theta1Hi*D2R), D2*sin(theta2Hi*D2R)); pvPut(lambdaHi); - lambdaLo = D1*sin(theta1Lo*D2R); + lambdaLo = MAX(D1*sin(theta1Lo*D2R), D2*sin(theta2Lo*D2R)); pvPut(lambdaLo); EHi = hc/lambdaLo; pvPut(EHi); @@ -890,19 +913,27 @@ state phiLimits } state checkDone /*waitForCmndEnter*/ } -state checkDone { - when (phi1Dmov && phi2Dmov) { - if (hrCtlDebug) %%printf("hrCtl:checkDone: done\n"); - hr_Done = 1; - } state waitForCmndEnter - - when (1) { - } state updateRdbk + state checkDone { + entry { + if (hrCtlDebug) %%printf("hrCtl:checkDone: entry\n"); + if (!phi1PutComplete) phi1PutComplete = pvPutComplete(phi1MotCmd); + if (!phi2PutComplete) phi2PutComplete = pvPutComplete(phi2MotCmd); + } + /* when (phi1Dmov && phi2Dmov) { */ + when (phi1PutComplete && phi2PutComplete) { + if (hrCtlDebug) %%printf("hrCtl:checkDone: done\n"); + hr_Done = 1; + } state waitForCmndEnter -} + when (1) { + if (hrCtlDebug) %%printf("hrCtl:checkDone: not done\n"); + } state updateRdbk + } -state dInputChanged - { + state dInputChanged { + entry { + if (hrCtlDebug) %%printf("hrCtl:dInputChanged: entry\n"); + } when () { autoMode = 0; pvPut(autoMode); @@ -934,8 +965,10 @@ state dInputChanged } state thChanged } -state tweak - { + state tweak { + entry { + if (hrCtlDebug) %%printf("hrCtl:tweak: entry\n"); + } when (ETweakInc || ETweakDec) { /* Note ETweakVal is in meV (E is in keV) */ if (ETweakInc) { @@ -1052,8 +1085,10 @@ state tweak } -state eChanged - { + state eChanged { + entry { + if (hrCtlDebug) %%printf("hrCtl:eChanged: entry\n"); + } when () { if (hrCtlDebug) %%printf("hrCtl:eChanged\n"); lambda = hc/E; @@ -1061,8 +1096,10 @@ state eChanged } state lChanged } -state lChanged - { + state lChanged { + entry { + if (hrCtlDebug) %%printf("hrCtl:lChanged: entry\n"); + } when (lambda > D1) { /* Don't change Theta, notify operator */ sprintf(seqMsg1, "Wavelength > 2d spacing of crystal 1."); @@ -1107,8 +1144,10 @@ state lChanged } state thChanged } -state thChanged - { + state thChanged { + entry { + if (hrCtlDebug) %%printf("hrCtl:thChanged: entry\n"); + } when () { if (hrCtlDebug) %%printf("hrCtl:thChanged\n"); if (!useSetMode && ((theta1 <= theta1Lo) || (theta1 >= theta1Hi))) { @@ -1142,6 +1181,7 @@ state thChanged } else { phi2 = theta2; } + if (hrCtlDebug) %%printf("hrCtl:thChanged: opMode=%d, Geom=%d, theta2=%f\n", pVar->opMode, pVar->Geom, pVar->theta2); } } else { lambdaNom = D1*sin(theta1*D2R); @@ -1157,7 +1197,10 @@ state thChanged } } pvPut(phi1); - if (opMode != 0) pvPut(phi2); + if (opMode != 0) { + if (hrCtlDebug) %%printf("hrCtl:thChanged: opMode=%d, Geom=%d, phi2=%f\n", pVar->opMode, pVar->Geom, pVar->phi2); + pvPut(phi2); + } pvPut(lambda); E = hc/lambda; @@ -1179,8 +1222,10 @@ state thChanged } state calcMovements } -state calcMovements - { + state calcMovements { + entry { + if (hrCtlDebug) %%printf("hrCtl:calcMovements: entry\n"); + } when (useSetMode == 0) { if (hrCtlDebug) %%printf("hrCtl:calcMovements, USE\n"); /* Calculate new phi* */ @@ -1240,23 +1285,22 @@ state calcMovements } state waitForCmndEnter } -state moveHR - { + state moveHR { + entry { + if (hrCtlDebug) %%printf("hrCtl:moveHR entry\n"); + } when (autoMode || putVals) { if (hrCtlDebug) %%printf("hrCtl:moveHR: putting to motors\n"); phi1MotCmd = phi1MotDesired; if (opMode == 0) { - pvPut(phi1MotCmd); - } else if ((opMode == 1) || (opMode == 2)){ + phi1PutComplete = 0; + pvPut(phi1MotCmd, ASYNC); + } else if ((opMode == 1) || (opMode == 2)) { phi2MotCmd = phi2MotDesired; - /* - * Write to phi2 motor first because it moves a larger angle. - * (phi1 may not need to move at all, and if it doesn't, it's - * "done" flag may go down and up before phi2's even goes - * down, which would confuse the scan software.) - */ - pvPut(phi2MotCmd); - pvPut(phi1MotCmd); + phi1PutComplete = 0; + phi2PutComplete = 0; + pvPut(phi2MotCmd, ASYNC); + pvPut(phi1MotCmd, ASYNC); } putVals = 0; pvPut(putVals); @@ -1268,24 +1312,12 @@ state moveHR } state waitForCmndEnter } -state updateRdbk - { - when (phi1Dmov && phi2Dmov) { - if (hrCtlDebug) %%printf("hrCtl:updateRdbk: motors stopped\n"); - /* Calc and put readback values. */ - %%hrCtl_calcReadback(pVar); - pvPut(phi1Rdbk); - pvPut(theta1Rdbk); - if (opMode != 0) { - pvPut(phi2Rdbk); - pvPut(theta2Rdbk); - } - pvPut(lambdaRdbk); - pvPut(ERdbk); - hr_Done = 1; - } state motorsStopped - - + state updateRdbk { + entry { + if (hrCtlDebug) %%printf("hrCtl:updateRdbk: entry\n"); + if (!phi1PutComplete) phi1PutComplete = pvPutComplete(phi1MotCmd); + if (!phi2PutComplete) phi2PutComplete = pvPutComplete(phi2MotCmd); + } when (phi1Hls || phi1Lls || phi2Hls || phi2Lls) { if (phi1Hls || phi1Lls) { sprintf(seqMsg1, "Theta 1 motor hit a limit switch !"); @@ -1303,7 +1335,8 @@ state updateRdbk pvPut(seqMsg2); } state stopHR - when ((!phi1Dmov || !phi2Dmov) && delay(.1)) { + when (!phi1Dmov || !phi2Dmov) { + if (hrCtlDebug) %%printf("hrCtl:updateRdbk: a motor is moving\n"); hr_Moving = 1; pvPut(hr_Moving); @@ -1317,11 +1350,33 @@ state updateRdbk } pvPut(lambdaRdbk); pvPut(ERdbk); + } state updateRdbkAfterDelay + + when (phi1PutComplete && phi2PutComplete) { + if (hrCtlDebug) %%printf("hrCtl:updateRdbk: motors stopped\n"); + /* Calc and put readback values. */ + %%hrCtl_calcReadback(pVar); + pvPut(phi1Rdbk); + pvPut(theta1Rdbk); + if (opMode != 0) { + pvPut(phi2Rdbk); + pvPut(theta2Rdbk); + } + pvPut(lambdaRdbk); + pvPut(ERdbk); + hr_Done = 1; + } state motorsStopped + } + + state updateRdbkAfterDelay { + when (delay(.1)) { } state updateRdbk } -state motorsStopped - { + state motorsStopped { + entry { + if (hrCtlDebug) %%printf("hrCtl:motorsStopped: entry\n"); + } when (causedMove) { if (hrCtlDebug) %%printf("hrCtl:motorsStopped (we started them)\n"); causedMove = 0; @@ -1351,8 +1406,10 @@ state motorsStopped } state waitForCmndEnter /*thChanged*/ } -state chkMotorLimits - { + state chkMotorLimits { + entry { + if (hrCtlDebug) %%printf("hrCtl:chkMotorLimits: entry\n"); + } when () { opAlert = 0; /* Calc and put readback values */ @@ -1385,8 +1442,10 @@ state chkMotorLimits } state chkMotorLimitsExit } -state chkMotorLimitsExit - { + state chkMotorLimitsExit { + entry { + if (hrCtlDebug) %%printf("hrCtl:chkMotorLimitsExit: entry\n"); + } when (!opAlert) { pvPut(opAlert); sprintf(seqMsg1, "All motors within limits"); @@ -1400,16 +1459,20 @@ state chkMotorLimitsExit } state chkMotorLimits } -state stopHR - { + state stopHR { + entry { + if (hrCtlDebug) %%printf("hrCtl:stopHR: entry\n"); + } when () { pvPut(phi1MotStop); if (opMode != 0) pvPut(phi2MotStop); } state stoppedHRWait } -state stoppedHRWait - { + state stoppedHRWait { + entry { + if (hrCtlDebug) %%printf("hrCtl:stoppedHRWait: entry\n"); + } when (delay(1.0)) { } state updateRdbk } @@ -1423,14 +1486,18 @@ state stoppedHRWait **************************************************************************/ ss updatePsuedo { -state init - { + state init { + entry { + if (hrCtlDebug) %%printf("hrCtl:updatePsuedo:init: entry\n"); + } when () { } state update } -state update - { + state update { + entry { + if (hrCtlDebug) %%printf("hrCtl:updatePsuedo:update: entry\n"); + } when (efTestAndClear(phi1MotRdbkPseudo_mon)) { phi1MotRdbkEcho = phi1MotRdbk; pvPut(phi1MotRdbkEcho); @@ -1476,7 +1543,7 @@ state update #define NINT(f) (int)((f)>0 ? (f)+0.5 : (f)-0.5) -double hrCtl_calc2dSpacing(struct UserVar *pVar, int xtal, double A, double H, double K, double L) +static double hrCtl_calc2dSpacing(struct UserVar *pVar, int xtal, double A, double H, double K, double L) { double result; float avg; @@ -1498,7 +1565,7 @@ double hrCtl_calc2dSpacing(struct UserVar *pVar, int xtal, double A, double H, d return(result); } -void hrCtl_calcReadback(struct UserVar *pVar) +static void hrCtl_calcReadback(struct UserVar *pVar) { pVar->phi1Rdbk = pVar->phi1MotRdbk * pVar->uR2D + diff --git a/opticsApp/src/kohzuCtl.st b/opticsApp/src/kohzuCtl.st index 31fa987..de420f4 100644 --- a/opticsApp/src/kohzuCtl.st +++ b/opticsApp/src/kohzuCtl.st @@ -378,6 +378,10 @@ monitor zSpeed; evflag zMotVel_mon; sync zSpeed zMotVel_mon; +short speedControl; +assign speedControl to "{P}KohzuSpeedCtrl"; +monitor speedControl; + double thetaMotRdbk; assign thetaMotRdbk to "{P}{M_THETA}.RBV"; monitor thetaMotRdbk; @@ -490,10 +494,20 @@ double hc; double radConv; double temp; +int riskAverse; +double prev_E; +double prev_theta; +double prev_lambda; +double prev_thetaMotDesired; +double prev_yMotDesired; +double prev_zMotDesired; +int willViolateLimit; + ss kohzuCtl { state init { when () { initSeq = 0; + riskAverse = 0; /* don't set to manual mode for limit errors */ } state initSequence } @@ -634,6 +648,14 @@ state waitForCmndEnter { kohzuMoving=0; kohzuDone = 0; pvPut(kohzuMoving); } + /* store previous values, in case we have to restore them */ + prev_theta = theta; + prev_E = E; + prev_lambda = lambda; + prev_thetaMotDesired = thetaMotDesired; + prev_yMotDesired = yMotDesired; + prev_zMotDesired = zMotDesired; + willViolateLimit = 0; } state waitForCmnd when (!initSeqDone) { @@ -857,10 +879,16 @@ state thChanged { pvPut(seqMsg1); opAlert = 1; pvPut(opAlert); - autoMode = 0; - pvPut(autoMode); - sprintf(seqMsg2, "Set to Manual Mode"); - pvPut(seqMsg2); + if (theta < thetaLo) theta = thetaLo; + if (theta > thetaHi) theta = thetaHi; + if (riskAverse) { + autoMode = 0; + pvPut(autoMode); + sprintf(seqMsg2, "Set to Manual Mode"); + pvPut(seqMsg2); + } else { + willViolateLimit = 1; + } } lambda = D*sin(theta/radConv); pvPut(lambda); @@ -894,23 +922,35 @@ state calcMovements { ((yMotDesired < yMotLoLim)||(yMotDesired > yMotHiLim))) { sprintf(seqMsg1, "Y will exceed soft limits"); pvPut(seqMsg1); - sprintf(seqMsg2, "Setting to Manual Mode"); - pvPut(seqMsg2); opAlert = 1; pvPut(opAlert); - autoMode = 0; - pvPut(autoMode); + if (riskAverse) { + sprintf(seqMsg2, "Setting to Manual Mode"); + pvPut(seqMsg2); + opAlert = 1; + pvPut(opAlert); + autoMode = 0; + pvPut(autoMode); + } else { + willViolateLimit = 1; + } } if (ccMode != 1 && ccMode != 2 && ((zMotDesired < zMotLoLim)||(zMotDesired > zMotHiLim))) { sprintf(seqMsg1, "Z will exceed soft limits"); pvPut(seqMsg1); - sprintf(seqMsg2, "Setting to Manual Mode"); - pvPut(seqMsg2); opAlert = 1; pvPut(opAlert); - autoMode = 0; - pvPut(autoMode); + if (riskAverse) { + sprintf(seqMsg2, "Setting to Manual Mode"); + pvPut(seqMsg2); + opAlert = 1; + pvPut(opAlert); + autoMode = 0; + pvPut(autoMode); + } else { + willViolateLimit = 1; + } } pvPut(thetaMotDesired); pvPut(yMotDesired); @@ -954,17 +994,37 @@ state calcMovements { } state moveKohzu { + when (willViolateLimit) { + E = prev_E; + pvPut(E); + theta = prev_theta; + pvPut(theta); + lambda = prev_lambda; + pvPut(lambda); + thetaMotDesired = prev_thetaMotDesired; + pvPut(thetaMotDesired); + yMotDesired = prev_yMotDesired; + pvPut(yMotDesired); + zMotDesired = prev_zMotDesired; + pvPut(zMotDesired); + sprintf(seqMsg2, "Command ignored"); + pvPut(seqMsg2); + kohzuDone = 1; + } state waitForCmndEnter + when (autoMode || putVals || useSetMode) { if (kohzuCtlDebug) %%printf("kohzuCtl:moveKohzu:auto|put\n"); - thSpeed = newThSpeed; - ySpeed = newYSpeed; - zSpeed = newZSpeed; - pvPut(thSpeed); - if (ccMode == 0 || ccMode == 2) { - pvPut(ySpeed); - } - if (ccMode == 0 || ccMode == 3) { - pvPut(zSpeed); + if (speedControl) { + thSpeed = newThSpeed; + ySpeed = newYSpeed; + zSpeed = newZSpeed; + pvPut(thSpeed); + if (ccMode == 0 || ccMode == 2) { + pvPut(ySpeed); + } + if (ccMode == 0 || ccMode == 3) { + pvPut(zSpeed); + } } thetaMotCmd = thetaMotDesired; yMotCmd = yMotDesired; @@ -1003,6 +1063,9 @@ state checkDone { } state updateRdbk { + when (willViolateLimit == 1) { + } state waitForCmndEnter + when (thetaMotRdbk == 0) { if (kohzuCtlDebug) %%printf("kohzuCtl:updateRdbk:thetaMotRdbk==0\n"); sprintf(seqMsg1, "Theta Motor Readback is 0 !"); @@ -1081,13 +1144,15 @@ state updateRdbk { state thetaMotStopped { when (causedMove) { if (kohzuCtlDebug) %%printf("kohzuCtl:thetaMotStopped:causedMove (done=%d,moving=%d)\n", kohzuDone, kohzuMoving); - thSpeed = oldThSpeed; - ySpeed = oldYSpeed; - zSpeed = oldZSpeed; - pvPut(thSpeed); - pvPut(ySpeed); + if (speedControl) { + thSpeed = oldThSpeed; + ySpeed = oldYSpeed; + zSpeed = oldZSpeed; + pvPut(thSpeed); + pvPut(ySpeed); + pvPut(zSpeed); + } if (kohzuCtlDebug) %%printf("kohzuCtl:thetaMotStopped: ySpeed = %f\n", ySpeed); - pvPut(zSpeed); causedMove = 0; } state waitForCmndEnter diff --git a/opticsApp/src/kohzuCtl_soft.st b/opticsApp/src/kohzuCtl_soft.st new file mode 100644 index 0000000..9baa76d --- /dev/null +++ b/opticsApp/src/kohzuCtl_soft.st @@ -0,0 +1,1319 @@ +program kohzuCtl_soft("P=xxx:, MONO=Kohzu1:, M_THETA=m9, M_Y=m10, M_Z=m11, GEOM=1") + +/* arguments on the command line : + * + * ex. seq &kohzuCtl_soft, "P=xxx:, MONO=Kohzu1:, M_THETA=m9, M_Y=m10, M_Z=m11" + * + * P - prefix + * MONO - which monochromator + * M_THETA - motor record for Theta + * M_Y - motor record for Y + * M_Z - motor record for Z + */ + + +/* EDITS & MODIFICATIONS ... + * + * + * 06-02-95 nda created + * 07-24-95 nda made interaction with Kohzu independent of actual motors + * 08-15-95 tmm reversed positive sense of Y motion + * 08-17-95 tmm frozen motors take zero time to "move" + * 08-18-95 tmm don't put speeds to frozen motors + * 01-24-96 tmm v2.0 made compatible with SNL 1.9 + * 02-23-96 tmm v2.1 added "Freeze Y" to "{P}KohzuMode2MO" (ccMode) + * 02-26-96 tmm v2.2 added Use/Set support. + * 02-26-96 tmm v2.3 many changes to make things work right in "Set" mode. + * ??-??-?? tmm v2.4 debug output. + * 04-21-97 tmm v2.5 don't check limits for frozen motion + * 03-06-98 tmm v2.6 removed redundant pvPut(thetaMotCmd), write kohzuMovingBO + * before telling motors to move, so it can be used as an + * overall "busy" flag for the monochromator. + * 07-07-98 tmm v3.0 use KohzuMoving busy record. (Database asserts "busy", we + * assert "done"; this allows dbPutNotify to detect completion). + * Combined two monochromator geometries (kohzu/PSL & kohzu2). + * 11-02-00 tmm v3.1 if a motor is frozen, ignore its limit conditions + * 12-12-03 tmm v3.2 Converted to EPICS 3.14 OSI. Fixed long-standing bug: + * if thetaMotRdbk changed by small amount, program didn't react + * The problem was a single event flag tested in two state sets + * (though cleared in only one). Now only one ss tests the event + * and it posts a different event thetaMotRdbkPseudo_mon to alert + * the other ss. + */ + +/* General Purpose PV's used by sequence */ +short kohzuCtlDebug; +assign kohzuCtlDebug to "{P}{MONO}CtlDebug"; +monitor kohzuCtlDebug; + +string seqMsg1; +assign seqMsg1 to "{P}{MONO}SeqMsg1"; + +string seqMsg2; +assign seqMsg2 to "{P}{MONO}SeqMsg2"; + +short opAlert; +assign opAlert to "{P}{MONO}Alert"; + +short opAck; +assign opAck to "{P}{MONO}OperAck"; +monitor opAck; + +/* {P}{MONO}Put is the user's "Move" button. If {P}{MONO}Mode==0, user + * can write whatever values he wants to whatever fields, and set + * {P}{MONO}Put=1 to say "make it so". + */ +short putVals; +assign putVals to "{P}{MONO}Put"; +monitor putVals; + +/* {P}{MONO}Mode is the user's "Manual/Auto" menu. If {P}{MONO}Mode==0, + * nothing happens to motors until the user sets {P}{MONO}Put=1. If + * {P}{MONO}Mode==1, we respond directly to changes in {P}{MONO}E, etc. + */ +short autoMode; +assign autoMode to "{P}{MONO}Mode"; +monitor autoMode; + +/* Menu: Normal, Channel Cut, Freeze Z, Freeze Y */ +short ccMode; +assign ccMode to "{P}{MONO}Mode2"; +monitor ccMode; + +short kohzuMoving; +assign kohzuMoving to "{P}{MONO}Moving"; +monitor kohzuMoving; + +short kohzuDone; + +/* crystal configuration */ +double H; +assign H to "{P}{MONO}H"; +monitor H; +evflag H_mon; +sync H H_mon; + +double K; +assign K to "{P}{MONO}K"; +monitor K; +evflag K_mon; +sync K K_mon; + +double L; +assign L to "{P}{MONO}L"; +monitor L; +evflag L_mon; +sync L L_mon; + +double A; +assign A to "{P}{MONO}A"; +monitor A; +evflag A_mon; +sync A A_mon; + +double D; +assign D to "{P}{MONO}2dSpacing"; + +/* E, Lambda, and Theta */ +double E; +assign E to "{P}{MONO}E"; +monitor E; +evflag E_mon; +sync E E_mon; + +double EHi; +assign EHi to "{P}{MONO}E.HLM"; + +double ELo; +assign ELo to "{P}{MONO}E.LLM"; + +double ERdbk; +assign ERdbk to "{P}{MONO}ERdbk"; + +double lambda; +assign lambda to "{P}{MONO}Lambda"; +monitor lambda; +evflag lambda_mon; +sync lambda lambda_mon; + +double lambdaHi; +assign lambdaHi to "{P}{MONO}Lambda.HLM"; + +double lambdaLo; +assign lambdaLo to "{P}{MONO}Lambda.LLM"; + +double lambdaRdbk; +assign lambdaRdbk to "{P}{MONO}LambdaRdbk"; + +double theta; +assign theta to "{P}{MONO}Theta"; +monitor theta; +evflag theta_mon; +sync theta theta_mon; + +double thetaHi; +assign thetaHi to "{P}{MONO}Theta.HLM"; + +double thetaLo; +assign thetaLo to "{P}{MONO}Theta.LLM"; + +double thetaRdbk; +assign thetaRdbk to "{P}{MONO}ThetaRdbk"; + +/* The following are "soft" PV's that contain motor information that is + * either echoed to or echoed from the actual motor records. The reason + * for these PV's is so the medm display can be independent from the + * motor PV names + */ + +string thetaMotName; +assign thetaMotName to "{P}{MONO}ThetaPv"; + +string yMotName; +assign yMotName to "{P}{MONO}YPv"; + +string zMotName; +assign zMotName to "{P}{MONO}ZPv"; + +double thetaMotCmdEcho; +assign thetaMotCmdEcho to "{P}{MONO}ThetaCmd"; + +double yMotCmdEcho; +assign yMotCmdEcho to "{P}{MONO}YCmd"; + +double zMotCmdEcho; +assign zMotCmdEcho to "{P}{MONO}ZCmd"; + +double thetaMotRdbkEcho; +assign thetaMotRdbkEcho to "{P}{MONO}ThetaMotRdbk"; + +double yMotRdbkEcho; +assign yMotRdbkEcho to "{P}{MONO}YRdbk"; + +double zMotRdbkEcho; +assign zMotRdbkEcho to "{P}{MONO}ZRdbk"; + +double thetaMotVelEcho; +assign thetaMotVelEcho to "{P}{MONO}ThetaVel"; + +double yMotVelEcho; +assign yMotVelEcho to "{P}{MONO}YVel"; + +double zMotVelEcho; +assign zMotVelEcho to "{P}{MONO}ZVel"; + +short thetaDmovEcho; +assign thetaDmovEcho to "{P}{MONO}ThetaDmov"; + +short yDmovEcho; +assign yDmovEcho to "{P}{MONO}YDmov"; + +short zDmovEcho; +assign zDmovEcho to "{P}{MONO}ZDmov"; + +/* Confusion may result between the theta motor variables and the + * user-entered theta. To eliminate confusion, variables associated + * with the theta motor are named thetaMotXXXXX unless it is clear they + * refer to a motor (e.g. thSpeed, etc) + */ + +short thetaMotStop; +assign thetaMotStop to "{P}{M_THETA}.STOP"; + +short yStop; +assign yStop to "{P}{M_Y}.STOP"; + +short zStop; +assign zStop to "{P}{M_Z}.STOP"; + +short thetaDmov; +assign thetaDmov to "{P}{M_THETA}.DMOV"; +monitor thetaDmov; +evflag thetaDmov_mon; +sync thetaDmov thetaDmov_mon; + +short yDmov; +assign yDmov to "{P}{M_Y}.DMOV"; +monitor yDmov; +evflag yDmov_mon; +sync yDmov yDmov_mon; + +short zDmov; +assign zDmov to "{P}{M_Z}.DMOV"; +monitor zDmov; +evflag zDmov_mon; +sync zDmov zDmov_mon; + +/* LIMIT SWITCHES */ +short thetaHls; +short thetaLls; +short yHls; +short yLls; +short zHls; +short zLls; + + +/* Use the following assignments for the real system */ +%% short kohzuCtl_soft_LS_TEST = 0; +assign thetaHls to "{P}{M_THETA}.HLS"; +assign thetaLls to "{P}{M_THETA}.LLS"; +assign yHls to "{P}{M_Y}.HLS"; +assign yLls to "{P}{M_Y}.LLS"; +assign zHls to "{P}{M_Z}.HLS"; +assign zLls to "{P}{M_Z}.LLS"; + + +/* Use the following assignment to simulate switches with soft PV's */ +/* +%% short kohzuCtl_soft_LS_TEST = 1; +assign thetaHls to "{P}{MONO}thetaSimHls"; +assign thetaLls to "{P}{MONO}thetaSimLls"; +assign yHls to "{P}{MONO}ySimHls"; +assign yLls to "{P}{MONO}ySimLls"; +assign zHls to "{P}{MONO}zSimHls"; +assign zLls to "{P}{MONO}zSimLls"; +*/ + +monitor thetaHls; +monitor thetaLls; +monitor yHls; +monitor yLls; +monitor zHls; +monitor zLls; + +double thetaMotDesired; +assign thetaMotDesired to "{P}{MONO}ThetaSet"; +monitor thetaMotDesired; + +double yMotDesired; +assign yMotDesired to "{P}{MONO}YSet"; +monitor yMotDesired; +double yMotDesiredHi; +assign yMotDesiredHi to "{P}{MONO}YSet.DRVH"; +double yMotDesiredLo; +assign yMotDesiredLo to "{P}{MONO}YSet.DRVL"; + +double zMotDesired; +assign zMotDesired to "{P}{MONO}ZSet"; +monitor zMotDesired; + +double thetaMotHiLim; +assign thetaMotHiLim to "{P}{M_THETA}.HLM"; +monitor thetaMotHiLim; +evflag thetaMotHiLim_mon; +sync thetaMotHiLim thetaMotHiLim_mon; + +double thetaMotLoLim; +assign thetaMotLoLim to "{P}{M_THETA}.LLM"; +monitor thetaMotLoLim; +evflag thetaMotLoLim_mon; +sync thetaMotLoLim thetaMotLoLim_mon; + +double yMotHiLim; +assign yMotHiLim to "{P}{M_Y}.HLM"; +monitor yMotHiLim; + +double yMotLoLim; +assign yMotLoLim to "{P}{M_Y}.LLM"; +monitor yMotLoLim; + +double zMotHiLim; +assign zMotHiLim to "{P}{M_Z}.HLM"; +monitor zMotHiLim; + +double zMotLoLim; +assign zMotLoLim to "{P}{M_Z}.LLM"; +monitor zMotLoLim; + +double thetaMotCmd; +assign thetaMotCmd to "{P}{M_THETA}"; + +double yMotCmd; +assign yMotCmd to "{P}{M_Y}"; + +double zMotCmd; +assign zMotCmd to "{P}{M_Z}"; + +double thetaMotCmdMon; +assign thetaMotCmdMon to "{P}{M_THETA}"; +monitor thetaMotCmdMon; +evflag thetaMotCmdMon_mon; +sync thetaMotCmdMon thetaMotCmdMon_mon; + +double yMotCmdMon; +assign yMotCmdMon to "{P}{M_Y}"; +monitor yMotCmdMon; +evflag yMotCmdMon_mon; +sync yMotCmdMon yMotCmdMon_mon; + +double zMotCmdMon; +assign zMotCmdMon to "{P}{M_Z}"; +monitor zMotCmdMon; +evflag zMotCmdMon_mon; +sync zMotCmdMon zMotCmdMon_mon; + +double thTime; +double oldThSpeed; +double newThSpeed; +double thSpeed; +assign thSpeed to "{P}{M_THETA}.VELO"; +monitor thSpeed; +evflag thetaMotVel_mon; +sync thSpeed thetaMotVel_mon; + +double yTime; +double oldYSpeed; +double newYSpeed; +double ySpeed; +assign ySpeed to "{P}{M_Y}.VELO"; +monitor ySpeed; +evflag yMotVel_mon; +sync ySpeed yMotVel_mon; + +double zTime; +double oldZSpeed; +double newZSpeed; +double zSpeed; +assign zSpeed to "{P}{M_Z}.VELO"; +monitor zSpeed; +evflag zMotVel_mon; +sync zSpeed zMotVel_mon; + +short speedControl; +assign speedControl to "{P}{MONO}SpeedCtrl"; +monitor speedControl; + +double thetaMotRdbk; +assign thetaMotRdbk to "{P}{M_THETA}.RBV"; +monitor thetaMotRdbk; +evflag thetaMotRdbk_mon; +sync thetaMotRdbk thetaMotRdbk_mon; +evflag thetaMotRdbkPseudo_mon; + +double yMotRdbk; +assign yMotRdbk to "{P}{M_Y}.RBV"; +monitor yMotRdbk; +evflag yMotRdbk_mon; +sync yMotRdbk yMotRdbk_mon; + +double zMotRdbk; +assign zMotRdbk to "{P}{M_Z}.RBV"; +monitor zMotRdbk; +evflag zMotRdbk_mon; +sync zMotRdbk zMotRdbk_mon; + +/* Set/Use support */ +short useSetMode; +assign useSetMode to "{P}{MONO}UseSet"; +monitor useSetMode; +evflag useSetMode_mon; +sync useSetMode useSetMode_mon; + +short thetaMotSet; +assign thetaMotSet to "{P}{M_THETA}.SET"; +monitor thetaMotSet; +evflag thetaMotSet_mon; +sync thetaMotSet thetaMotSet_mon; + +short yMotSet; +assign yMotSet to "{P}{M_Y}.SET"; +monitor yMotSet; +evflag yMotSet_mon; +sync yMotSet yMotSet_mon; + +short zMotSet; +assign zMotSet to "{P}{M_Z}.SET"; +monitor zMotSet; +evflag zMotSet_mon; +sync zMotSet zMotSet_mon; + +/* yOffset (y dist from incident/exit beams to center of rotation) */ +double yOffset; +assign yOffset to "{P}{MONO}yOffset"; +monitor yOffset; +evflag yOffset_mon; +sync yOffset yOffset_mon; + +double yOffsetHi; +assign yOffsetHi to "{P}{MONO}yOffset.DRVH"; + +double yOffsetLo; +assign yOffsetLo to "{P}{MONO}yOffset.DRVL"; + +%%#include +%%#include + +%%double kohzuCtl_soft_calc2dSpacing(); +%%char *kohzuCtl_soft_pmacP; +%%char *kohzuCtl_soft_pmacM; +%%char *kohzuCtl_soft_pmacGEOM; +short geom; + +short causedMove; +short initSeq; +short initSeqDone; +float avg; +int nint; +double hc; +double radConv; + +int riskAverse; +double prev_E; +double prev_theta; +double prev_lambda; +double prev_thetaMotDesired; +double prev_yMotDesired; +double prev_zMotDesired; +int willViolateLimit; + +ss kohzuCtl_soft { +state init { + when () { + initSeq = 0; + riskAverse = 0; /* don't set to manual mode for limit errors */ + } state initSequence +} + +state initSequence { + when (initSeq == 0) { + if (kohzuCtlDebug) %%printf("kohzuCtl:initSequence:initSeq=0\n"); + hc = 12.3984244; + radConv = 57.2958; + thetaMotStop = 1; + yStop = 1; + zStop = 1; + putVals = 0; + pvPut(putVals); + autoMode = 0; + pvPut(autoMode); + opAck = 0; + pvPut(opAck); +%{ + kohzuCtl_soft_pmacP = seq_macValueGet(ssId,"P"); + kohzuCtl_soft_pmacM = seq_macValueGet(ssId,"M_THETA"); + if (kohzuCtl_soft_pmacP == 0 || kohzuCtl_soft_pmacM == 0) { + sprintf(thetaMotName,"??????"); + } else { + strcpy(thetaMotName, kohzuCtl_soft_pmacP); + strcat(thetaMotName, kohzuCtl_soft_pmacM); + } + kohzuCtl_soft_pmacM = seq_macValueGet(ssId,"M_Y"); + if (kohzuCtl_soft_pmacP == 0 || kohzuCtl_soft_pmacM == 0) { + sprintf(yMotName,"??????"); + } else { + strcpy(yMotName, kohzuCtl_soft_pmacP); + strcat(yMotName, kohzuCtl_soft_pmacM); + } + kohzuCtl_soft_pmacM = seq_macValueGet(ssId,"M_Z"); + if (kohzuCtl_soft_pmacP == 0 || kohzuCtl_soft_pmacM == 0) { + sprintf(zMotName,"??????"); + } else { + strcpy(zMotName, kohzuCtl_soft_pmacP); + strcat(zMotName, kohzuCtl_soft_pmacM); + } + kohzuCtl_soft_pmacGEOM = seq_macValueGet(ssId,"GEOM"); + geom = 1; + if (*kohzuCtl_soft_pmacGEOM == '2') geom = 2; +}% + if (geom == 1) { + yOffsetHi = 17.5 + .000001; + pvPut(yOffsetHi); + yOffsetLo = 17.5 - .000001; + pvPut(yOffsetLo); + yOffset = 17.5; + pvPut(yOffset); + yMotDesiredHi = 0.; + pvPut(yMotDesiredHi); + yMotDesiredLo = -35; + pvPut(yMotDesiredLo); + } else { + yMotDesiredHi = 60.; + pvPut(yMotDesiredHi); + yMotDesiredLo = 0.; + pvPut(yMotDesiredLo); + } + pvPut(thetaMotName); + pvPut(yMotName); + pvPut(zMotName); + initSeq = 1; + } state dInputChanged + + when (initSeq == 1) { + if (kohzuCtlDebug) %%printf("kohzuCtl:initSequence:initSeq=1\n"); + initSeq = 2; + } state chkMotorLimits + + when (initSeq == 2) { + if (kohzuCtlDebug) %%printf("kohzuCtl:initSequence:initSeq=2\n"); + initSeq = 3; + } state updateRdbk + + when ((initSeq == 3) && delay(1.)) { + if (kohzuCtlDebug) %%printf("kohzuCtl:initSequence:initSeq=3\n"); + sprintf(seqMsg1, "Kohzu Control Ready"); + pvPut(seqMsg1); + sprintf(seqMsg2, " "); + pvPut(seqMsg2); + initSeqDone=1; + theta = thetaMotRdbk; + pvPut(theta); + } state thChanged +} + +state waitForCmndEnter { + when (initSeqDone && delay(.1)) { + if (kohzuCtlDebug) %%printf("kohzuCtl:waitForCmndEnter:initSeqDone\n"); + efClear(H_mon); + efClear(K_mon); + efClear(L_mon); + efClear(A_mon); + efClear(E_mon); + efClear(lambda_mon); + efClear(theta_mon); + + thetaMotRdbkEcho = thetaMotRdbk; + pvPut(thetaMotRdbkEcho); + yMotRdbkEcho = yMotRdbk; + pvPut(yMotRdbkEcho); + zMotRdbkEcho = zMotRdbk; + pvPut(zMotRdbkEcho); + thetaMotVelEcho = thSpeed; + pvPut(thetaMotVelEcho); + yMotVelEcho = ySpeed; + pvPut(yMotVelEcho); + zMotVelEcho = zSpeed; + pvPut(zMotVelEcho); + thetaMotCmdEcho = thetaMotCmdMon; + pvPut(thetaMotCmdEcho); + yMotCmdEcho = yMotCmdMon; + pvPut(yMotCmdEcho); + zMotCmdEcho = zMotCmdMon; + pvPut(zMotCmdEcho); + thetaDmovEcho = thetaDmov; + pvPut(thetaDmovEcho); + yDmovEcho = yDmov; + pvPut(yDmovEcho); + zDmovEcho = zDmov; + pvPut(zDmovEcho); + if (autoMode || useSetMode) { + thetaRdbk = thetaMotRdbk; + pvPut(thetaRdbk); + lambdaRdbk = D*sin(thetaRdbk/radConv); + pvPut(lambdaRdbk); + ERdbk = hc/lambdaRdbk; + pvPut(ERdbk); + } + opAck = 0; + pvPut(opAck); + if (kohzuCtlDebug) %%printf("kohzuCtl:waitForCmndEnter: kohzuMoving=%d; kohzuDone=%d\n", kohzuMoving, kohzuDone); + if (kohzuMoving && kohzuDone) { + if (kohzuCtlDebug) %%printf("kohzuCtl:waitForCmndEnter: asserting 'done'.\n"); + kohzuMoving=0; kohzuDone = 0; + pvPut(kohzuMoving); + } + /* store previous values, in case we have to restore them */ + prev_theta = theta; + prev_E = E; + prev_lambda = lambda; + prev_thetaMotDesired = thetaMotDesired; + prev_yMotDesired = yMotDesired; + prev_zMotDesired = zMotDesired; + willViolateLimit = 0; + } state waitForCmnd + + when (!initSeqDone) { + } state initSequence +} + +state waitForCmnd { + when (efTest(H_mon) || efTest(K_mon) || efTest(L_mon) || efTest(A_mon)) { + if (kohzuCtlDebug) %%printf("kohzuCtl:waitForCmnd:HKLA_mon\n"); + sprintf(seqMsg1, "Lattice Spacing Changed"); + pvPut(seqMsg1); + sprintf(seqMsg2, " "); + pvPut(seqMsg2); + efClear(H_mon); + efClear(K_mon); + efClear(L_mon); + efClear(A_mon); + } state dInputChanged + + when (efTest(thetaMotHiLim_mon) || efTest(thetaMotLoLim_mon)) { + if (kohzuCtlDebug) %%printf("kohzuCtl:waitForCmnd:thetaMotXxLim_mon\n"); + sprintf(seqMsg1, "Theta Motor Soft Limits Changed"); + pvPut(seqMsg1); + sprintf(seqMsg2, " "); + pvPut(seqMsg2); + efClear(thetaMotHiLim_mon); + efClear(thetaMotLoLim_mon); + } state thetaLimits + + when (efTestAndClear(thetaMotRdbk_mon)) { + if (kohzuCtlDebug) %%printf("kohzuCtl:waitForCmnd:thetaMotRdbk_mon\n"); + efSet(thetaMotRdbkPseudo_mon); + } state updateRdbk + + when (efTestAndClear(E_mon)) { + if (kohzuCtlDebug) %%printf("kohzuCtl:waitForCmnd:E_mon\n"); + } state eChanged + + when (efTestAndClear(lambda_mon)) { + if (kohzuCtlDebug) %%printf("kohzuCtl:waitForCmnd:lambda_mon\n"); + } state lChanged + + when (efTestAndClear(theta_mon)) { + if (kohzuCtlDebug) %%printf("kohzuCtl:waitForCmnd:theta_mon\n"); + } state thChanged + + when (putVals && delay(.1)) { + if (kohzuCtlDebug) %%printf("kohzuCtl:waitForCmnd:putVals\n"); + } state moveKohzu + + when (efTestAndClear(yOffset_mon)) { + if (kohzuCtlDebug) %%printf("kohzuCtl:waitForCmnd:yOffset_mon\n"); + autoMode = 0; + pvPut(autoMode); + sprintf(seqMsg1, "y offset changed to %f", yOffset); + pvPut(seqMsg1); + sprintf(seqMsg2, "Set to Manual Mode"); + pvPut(seqMsg2); + } state calcMovements + + when (opAck) { + if (kohzuCtlDebug) %%printf("kohzuCtl:waitForCmnd:opAck\n"); + opAlert = 0; + pvPut(opAlert); + sprintf(seqMsg1, " "); + pvPut(seqMsg1); + sprintf(seqMsg2, " "); + pvPut(seqMsg2); + } state waitForCmndEnter +} + +state dInputChanged { + when () { + if (kohzuCtlDebug) %%printf("kohzuCtl:dInputChanged\n"); + autoMode = 0; + pvPut(autoMode); + sprintf(seqMsg2, "Set to Manual Mode"); + pvPut(seqMsg2); + D = kohzuCtl_soft_calc2dSpacing(); + pvPut(D); + pvPut(seqMsg1); + lambdaHi = D*sin(thetaHi/radConv); + pvPut(lambdaHi); + lambdaLo = D*sin(thetaLo/radConv); + pvPut(lambdaLo); + EHi = hc/lambdaLo; + pvPut(EHi); + ELo = hc/lambdaHi; + pvPut(ELo); + pvPut(opAlert); + } state thChanged +} + +state thetaLimits { + when () { + if (kohzuCtlDebug) %%printf("kohzuCtl:thetaLimits\n"); + thetaHi = thetaMotHiLim; + thetaLo = thetaMotLoLim; + if (thetaHi > 89.0) { + thetaHi = 89.0; + sprintf(seqMsg2, "ThetaHiLim > 89 deg. (Using 89 deg.)"); + pvPut(seqMsg2); + } + if (thetaLo < 1.0) { + thetaLo = 1.0; + sprintf(seqMsg2, "ThetaLoLim < 1 deg. (Using 1 deg.)"); + pvPut(seqMsg2); + } + pvPut(thetaHi); + pvPut(thetaLo); + lambdaHi = D*sin(thetaHi/radConv); + pvPut(lambdaHi); + lambdaLo = D*sin(thetaLo/radConv); + pvPut(lambdaLo); + EHi = hc/lambdaLo; + pvPut(EHi); + ELo = hc/lambdaHi; + pvPut(ELo); + } state checkDone +} + +state eChanged { + when () { + if (kohzuCtlDebug) %%printf("kohzuCtl:eChanged\n"); + lambda = hc/E; + pvPut(lambda); + } state lChanged +} + +state lChanged { + when (lambda > D) { + if (kohzuCtlDebug) %%printf("kohzuCtl:lChanged: lambda>D\n"); + /* Don't change Theta, notify operator */ + sprintf(seqMsg1, "Wavelength > 2d spacing."); + pvPut(seqMsg1); + opAlert = 1; + pvPut(opAlert); + } state thChanged + + when () { + if (kohzuCtlDebug) %%printf("kohzuCtl:lChanged\n"); + theta = radConv * asin(lambda/D); + pvPut(theta); + } state thChanged +} + +state thChanged { + when () { + if (kohzuCtlDebug) %%printf("kohzuCtl:thChanged\n"); + if ((theta <= thetaLo) || (theta >= thetaHi)) { + sprintf(seqMsg1, "Theta constrained to LIMIT"); + pvPut(seqMsg1); + opAlert = 1; + pvPut(opAlert); + if (theta < thetaLo) theta = thetaLo; + if (theta > thetaHi) theta = thetaHi; + if (riskAverse) { + autoMode = 0; + pvPut(autoMode); + sprintf(seqMsg2, "Set to Manual Mode"); + pvPut(seqMsg2); + } else { + willViolateLimit = 1; + } + } + lambda = D*sin(theta/radConv); + pvPut(lambda); + E = hc/lambda; + pvPut(E); + + /* Update the readback values as well */ + thetaRdbk = thetaMotRdbk; + lambdaRdbk = D * sin(thetaRdbk/radConv); + ERdbk = hc/lambdaRdbk; + pvPut(thetaRdbk); + pvPut(lambdaRdbk); + pvPut(ERdbk); + } state calcMovements +} + +state calcMovements { + when () { + if (kohzuCtlDebug) %%printf("kohzuCtl:calcMovements\n"); + + /* Calculate new Y and Z, check against limits */ + thetaMotDesired = theta; + if (geom == 1) { + yMotDesired = -yOffset/cos(theta/radConv); + zMotDesired = yOffset/sin(theta/radConv); + } else { + yMotDesired = yOffset/(2*cos(theta/radConv)); + zMotDesired = yOffset/(2*sin(theta/radConv)); + } + if (ccMode != 1 && ccMode != 3 && + ((yMotDesired < yMotLoLim)||(yMotDesired > yMotHiLim))) { + sprintf(seqMsg1, "Y will exceed soft limits"); + pvPut(seqMsg1); + opAlert = 1; + pvPut(opAlert); + if (riskAverse) { + sprintf(seqMsg2, "Setting to Manual Mode"); + pvPut(seqMsg2); + opAlert = 1; + pvPut(opAlert); + autoMode = 0; + pvPut(autoMode); + } else { + willViolateLimit = 1; + } + } + if (ccMode != 1 && ccMode != 2 && + ((zMotDesired < zMotLoLim)||(zMotDesired > zMotHiLim))) { + sprintf(seqMsg1, "Z will exceed soft limits"); + pvPut(seqMsg1); + opAlert = 1; + pvPut(opAlert); + if (riskAverse) { + sprintf(seqMsg2, "Setting to Manual Mode"); + pvPut(seqMsg2); + opAlert = 1; + pvPut(opAlert); + autoMode = 0; + pvPut(autoMode); + } else { + willViolateLimit = 1; + } + } + pvPut(thetaMotDesired); + pvPut(yMotDesired); + pvPut(zMotDesired); + + /***** Calculate required speeds ******/ + oldThSpeed = thSpeed; + oldYSpeed = ySpeed; + oldZSpeed = zSpeed; + thTime = fabs(theta-thetaMotRdbk)/thSpeed; + yTime = fabs(yMotDesired-yMotRdbk)/ySpeed; + zTime = fabs(zMotDesired-zMotRdbk)/zSpeed; + /* Frozen motors take zero time to move. (tmm) */ + if (ccMode == 1) { + /* channel-cut mode: Y,Z frozen */ + yTime = 0.0; + zTime = 0.0; + } else if (ccMode == 2) { + /* Z frozen */ + zTime = 0.0; + } else if (ccMode == 3) { + /* Y frozen */ + yTime = 0.0; + } + /*** Test for longest time ***/ + if ((thTime >= yTime) && (thTime >= zTime)) { + newThSpeed = thSpeed; + newYSpeed = fabs(yMotDesired-yMotRdbk)/thTime; + newZSpeed = fabs(zMotDesired-zMotRdbk)/thTime; + } else if ((yTime >= thTime) && (yTime >= zTime)) { + newThSpeed = fabs(theta-thetaMotRdbk)/yTime; + newYSpeed = ySpeed; + newZSpeed = fabs(zMotDesired-zMotRdbk)/yTime; + } else { + newThSpeed = fabs(theta-thetaMotRdbk)/zTime; + newYSpeed = fabs(yMotDesired-yMotRdbk)/zTime; + newZSpeed = zSpeed; + } + + } state moveKohzu +} + +state moveKohzu { + when (autoMode || putVals || useSetMode) { + if (willViolateLimit) { + E = prev_E; + pvPut(E); + theta = prev_theta; + pvPut(theta); + lambda = prev_lambda; + pvPut(lambda); + thetaMotDesired = prev_thetaMotDesired; + pvPut(thetaMotDesired); + yMotDesired = prev_yMotDesired; + pvPut(yMotDesired); + zMotDesired = prev_zMotDesired; + pvPut(zMotDesired); + sprintf(seqMsg2, "Command ignored"); + pvPut(seqMsg2); + } else { + if (kohzuCtlDebug) %%printf("kohzuCtl:moveKohzu:auto|put\n"); + if (speedControl) { + thSpeed = newThSpeed; + ySpeed = newYSpeed; + zSpeed = newZSpeed; + pvPut(thSpeed); + if (ccMode == 0 || ccMode == 2) { + pvPut(ySpeed); + } + if (ccMode == 0 || ccMode == 3) { + pvPut(zSpeed); + } + } + thetaMotCmd = thetaMotDesired; + yMotCmd = yMotDesired; + zMotCmd = zMotDesired; + pvPut(thetaMotCmd); + if (ccMode == 0) { + pvPut(yMotCmd); + pvPut(zMotCmd); + } else if (ccMode == 1) { + ; + } else if (ccMode == 2) { + pvPut(yMotCmd); + } else if (ccMode == 3) { + pvPut(zMotCmd); + } + putVals = 0; + pvPut(putVals); + causedMove = 1; + } + } state updateRdbk + + when (1) { + if (kohzuCtlDebug) %%printf("kohzuCtl:moveKohzu\n"); + } state waitForCmndEnter +} + +state checkDone { + when (thetaDmov && yDmov && zDmov) { + if (kohzuCtlDebug) %%printf("kohzuCtl:checkDone: done\n"); + kohzuDone = 1; + } state waitForCmndEnter + + when (!thetaDmov || !yDmov || !zDmov) { + if (kohzuCtlDebug) %%printf("kohzuCtl:checkDone: not done\n"); + } state updateRdbk + +} + +state updateRdbk { + when (willViolateLimit == 1) { + } state waitForCmndEnter + + when (thetaMotRdbk == 0) { + if (kohzuCtlDebug) %%printf("kohzuCtl:updateRdbk:thetaMotRdbk==0\n"); + sprintf(seqMsg1, "Theta Motor Readback is 0 !"); + pvPut(seqMsg1); + sprintf(seqMsg2, "Monochromator stopped"); + pvPut(seqMsg2); + opAlert = 1; + pvPut(opAlert); + } state waitForCmndEnter + + /* when (thetaDmov && yDmov && zDmov) { */ /* on linux, some motor readback monitors arrive after *Dmov */ + when (thetaDmov && yDmov && zDmov && delay(0.01)) { + if (kohzuCtlDebug) %%printf("kohzuCtl:updateRdbk:*Dmov (done=%d,moving=%d)\n", kohzuDone, kohzuMoving); + thetaRdbk = thetaMotRdbk; + lambdaRdbk = D * sin(thetaRdbk/radConv); + ERdbk = hc/lambdaRdbk; + pvPut(thetaRdbk); + pvPut(lambdaRdbk); + pvPut(ERdbk); + kohzuDone = 1; + efSet(thetaMotRdbkPseudo_mon); + efClear(thetaMotRdbk_mon); + if (kohzuCtlDebug) %%printf("kohzuCtl:updateRdbk: done\n"); + } state thetaMotStopped + + + when (thetaHls || thetaLls) { + if (kohzuCtlDebug) %%printf("kohzuCtl:updateRdbk: Th limit switch\n"); + sprintf(seqMsg1, "Theta Motor hit a limit switch!"); + pvPut(seqMsg1); + opAlert = 1; + pvPut(opAlert); + autoMode = 0; + pvPut(autoMode); + sprintf(seqMsg2, "Setting to Manual Mode"); + pvPut(seqMsg2); + } state stopKohzu + + /* Ignore Y limit switches in "channel-cut" and "freeze-y" modes */ + when ((ccMode != 1) && (ccMode != 3) && (yHls || yLls)) { + if (kohzuCtlDebug) %%printf("kohzuCtl:updateRdbk: Y limit switch\n"); + sprintf(seqMsg1, "Y Motor hit a limit switch!"); + pvPut(seqMsg1); + opAlert = 1; + pvPut(opAlert); + autoMode = 0; + pvPut(autoMode); + sprintf(seqMsg2, "Setting to Manual Mode"); + pvPut(seqMsg2); + } state stopKohzu + + /* Ignore Z limit switches in "channel-cut" and "freeze-z" modes */ + when ((ccMode != 1) && (ccMode != 2) && (zHls || zLls)) { + if (kohzuCtlDebug) %%printf("kohzuCtl:updateRdbk: Z limit switch\n"); + sprintf(seqMsg1, "Z Motor hit a limit switch!"); + pvPut(seqMsg1); + opAlert = 1; + pvPut(opAlert); + autoMode = 0; + pvPut(autoMode); + sprintf(seqMsg2, "Setting to Manual Mode"); + pvPut(seqMsg2); + } state stopKohzu + + when ((!thetaDmov || !yDmov || !zDmov) && delay(.1)) { + if (kohzuCtlDebug>1) %%printf("kohzuCtl:updateRdbk:moving\n"); + thetaRdbk = thetaMotRdbk; + lambdaRdbk = D * sin(thetaRdbk/radConv); + ERdbk = hc/lambdaRdbk; + pvPut(thetaRdbk); + pvPut(lambdaRdbk); + pvPut(ERdbk); + } state updateRdbk +} + +state thetaMotStopped { + when (causedMove) { + if (kohzuCtlDebug) %%printf("kohzuCtl:thetaMotStopped:causedMove (done=%d,moving=%d)\n", kohzuDone, kohzuMoving); + if (speedControl) { + thSpeed = oldThSpeed; + ySpeed = oldYSpeed; + zSpeed = oldZSpeed; + pvPut(thSpeed); + pvPut(ySpeed); + pvPut(zSpeed); + } + if (kohzuCtlDebug) %%printf("kohzuCtl:thetaMotStopped: ySpeed = %f\n", ySpeed); + causedMove = 0; + } state waitForCmndEnter + + /* Someone moved the Theta motor directly */ + when (!causedMove) { + if (kohzuCtlDebug) %%printf("kohzuCtl:thetaMotStopped:!causedMove (done=%d,moving=%d)\n", kohzuDone, kohzuMoving); + if (initSeqDone) { + opAlert = 1; + pvPut(opAlert); + sprintf(seqMsg1, "Only Theta Motor Moved"); + pvPut(seqMsg1); + sprintf(seqMsg2, "Hit MOVE to Adjust Y & Z"); + pvPut(seqMsg2); + autoMode = 0; + pvPut(autoMode); + } + theta = thetaMotRdbk; + pvPut(theta); + lambda = D*sin(theta/radConv); + pvPut(lambda); + E = hc/lambda; + pvPut(E); + } state thChanged +} + +state chkMotorLimits { + when () { + if (kohzuCtlDebug) %%printf("kohzuCtl:chkMotorLimits\n"); + opAlert = 0; + thetaRdbk = thetaMotRdbk; + lambdaRdbk = D * sin(thetaRdbk/radConv); + ERdbk = hc/lambdaRdbk; + pvPut(thetaRdbk); + pvPut(lambdaRdbk); + pvPut(ERdbk); + + if (ccMode != 1 && ccMode != 3) { + if (yMotRdbk == 0) { + sprintf(seqMsg1, "Y Readback of 0 not reasonable"); + pvPut(seqMsg1); + opAlert = 1; + } + if ((yMotRdbk < yMotLoLim) || (yMotRdbk > yMotHiLim)) { + sprintf(seqMsg1, "Y Readback outside Motor Limits"); + pvPut(seqMsg1); + opAlert = 1; + } + } + if (ccMode != 1 && ccMode != 2) { + if (zMotRdbk == 0) { + sprintf(seqMsg1, "Z Readback of 0 not reasonable"); + pvPut(seqMsg1); + opAlert = 1; + } + if ((zMotRdbk < zMotLoLim)||(zMotRdbk > zMotHiLim)) { + sprintf(seqMsg1, "Z Readback outside Motor Limits"); + pvPut(seqMsg1); + opAlert = 1; + } + } + if (thetaMotRdbk == 0) { + sprintf(seqMsg1, "Theta Readback of 0 not reasonable"); + pvPut(seqMsg1); + opAlert = 1; + } + if ((thetaMotRdbkthetaMotHiLim)) { + sprintf(seqMsg1, "Theta Readback outside Motor Limits"); + pvPut(seqMsg1); + opAlert = 1; + } + if (opAlert) { + pvPut(opAlert); + autoMode = 0; + pvPut(autoMode); + sprintf(seqMsg2, "Set to Manual Mode"); + pvPut(seqMsg2); + } + } state chkMotorLimitsExit +} + +state chkMotorLimitsExit { + when (!opAlert) { + if (kohzuCtlDebug) %%printf("kohzuCtl:chkMotorLimitsExit: OK\n"); + pvPut(opAlert); + sprintf(seqMsg1, "All motors within limits"); + pvPut(seqMsg1); + } state waitForCmndEnter + + when (opAlert && delay(2.)) { + if (kohzuCtlDebug) %%printf("kohzuCtl:chkMotorLimitsExit: opAlert\n"); + pvPut(opAlert); + sprintf(seqMsg2, "Modify Motor Positions/Limits"); + pvPut(seqMsg2); + } state chkMotorLimits +} + +state stopKohzu { + when () { + if (kohzuCtlDebug) %%printf("kohzuCtl:stopKohzu\n"); + pvPut(thetaMotStop); + pvPut(yStop); + pvPut(zStop); + } state stoppedKohzuWait +} + +state stoppedKohzuWait { + when(delay(1.)) { + if (kohzuCtlDebug) %%printf("kohzuCtl:stoppedKohzuWait\n"); + } state updateRdbk +} + +} /* end of state set kohzuCtl */ + + +/************************************************************************** + * + * This State Set keeps the motor independent fields updated + * + **************************************************************************/ +ss updatePsuedo_soft { +state init { + when () { + } state update +} + +state update { + when (efTestAndClear(thetaMotRdbkPseudo_mon)) { + thetaMotRdbkEcho = thetaMotRdbk; + pvPut(thetaMotRdbkEcho); + } state update + + when (efTestAndClear(yMotRdbk_mon)) { + yMotRdbkEcho = yMotRdbk; + pvPut(yMotRdbkEcho); + } state update + + when (efTestAndClear(zMotRdbk_mon)) { + zMotRdbkEcho = zMotRdbk; + pvPut(zMotRdbkEcho); + } state update + + when (efTestAndClear(thetaMotVel_mon)) { + thetaMotVelEcho = thSpeed; + pvPut(thetaMotVelEcho); + } state update + + when (efTestAndClear(yMotVel_mon)) { + yMotVelEcho = ySpeed; + pvPut(yMotVelEcho); + } state update + + when (efTestAndClear(zMotVel_mon)) { + zMotVelEcho = zSpeed; + pvPut(zMotVelEcho); + } state update + + when (efTestAndClear(thetaMotCmdMon_mon)) { + thetaMotCmdEcho = thetaMotCmdMon; + pvPut(thetaMotCmdEcho); + } state update + + when (efTestAndClear(yMotCmdMon_mon)) { + yMotCmdEcho = yMotCmdMon; + pvPut(yMotCmdEcho); + } state update + + when (efTestAndClear(zMotCmdMon_mon)) { + zMotCmdEcho = zMotCmdMon; + pvPut(zMotCmdEcho); + } state update + + when (efTestAndClear(thetaDmov_mon)) { + thetaDmovEcho = thetaDmov; + pvPut(thetaDmovEcho); + } state update + + when (efTestAndClear(yDmov_mon)) { + yDmovEcho = yDmov; + pvPut(yDmovEcho); + } state update + + when (efTestAndClear(zDmov_mon)) { + zDmovEcho = zDmov; + pvPut(zDmovEcho); + } state update +} +} + +/************************************************************************** + * + * This State Set keeps the (calibration) set/use flag consistent + * with the individual motor set/use flags. + * + **************************************************************************/ +ss updateSet { +state init { + when () { + } state update +} + +state update { + when (efTestAndClear(useSetMode_mon)) { + if (thetaMotSet != useSetMode) { + thetaMotSet = useSetMode; + pvPut(thetaMotSet); + } + if (yMotSet != useSetMode) { + yMotSet = useSetMode; + pvPut(yMotSet); + } + if (zMotSet != useSetMode) { + zMotSet = useSetMode; + pvPut(zMotSet); + } + } state update + + when (efTestAndClear(thetaMotSet_mon)) { + if (useSetMode != thetaMotSet) { + useSetMode = thetaMotSet; + pvPut(useSetMode); + } + } state update + + when (efTestAndClear(yMotSet_mon)) { + if (useSetMode != yMotSet) { + useSetMode = yMotSet; + pvPut(useSetMode); + } + } state update + + when (efTestAndClear(zMotSet_mon)) { + if (useSetMode != zMotSet) { + useSetMode = zMotSet; + pvPut(useSetMode); + } + } state update +} +} + +/***************************************************************************/ +/***************************************************************************/ +/* C subroutines */ + +%{ +#define NINT(f) (int)((f)>0 ? (f)+0.5 : (f)-0.5) + +double kohzuCtl_soft_calc2dSpacing() +{ + + double result; + + result = (2*A)/sqrt(H*H + K*K + L*L); + + /* determine validity of (H, K, L) */ + opAlert = 0; + if (((fmod(H,2)) != (fmod(K,2))) || ((fmod(H,2)) != (fmod(L,2)))) + opAlert = 1; + avg = (H+K+L)/2.0; + nint = NINT(avg); + if ((fabs(avg-nint) <= .25) && (fmod(nint,2))) + opAlert = 1; + if (opAlert) { + sprintf(seqMsg1, "(H,K,L) is 'forbidden' reflection"); + } else { + sprintf(seqMsg1, "New d spacing"); + } + return(result); +} + + +}% diff --git a/opticsApp/src/matrix3.c b/opticsApp/src/matrix3.c index a796308..49048ab 100644 --- a/opticsApp/src/matrix3.c +++ b/opticsApp/src/matrix3.c @@ -1,5 +1,7 @@ #include #include +#include + #include "matrix3.h" volatile int matrix3Debug = 0; diff --git a/opticsApp/src/matrix3.h b/opticsApp/src/matrix3.h index b686abf..e8e2a48 100644 --- a/opticsApp/src/matrix3.h +++ b/opticsApp/src/matrix3.h @@ -1,13 +1,13 @@ /* matrix3.h - general 3x3-matrix/3-vector functions */ -void printVector(double v[3], char *name); -void print4Vector(double v[4], char *name); -void printArray(double a[3][3], char *name); -double dot(double a[3], double b[3]); -void cross(double a[3], double b[3], double r[3]); -double dotcross(double a[3], double b[3], double c[3]); -void multArrayArray(double a[3][3], double b[3][3], double r[3][3]); -void multArrayVector(double a[3][3], double v[3], double r[3]); -double determinant(double a[3][3]); -int invertArray(double a[3][3], double r[3][3]); +epicsShareFunc void printVector(double v[3], char *name); +epicsShareFunc void print4Vector(double v[4], char *name); +epicsShareFunc void printArray(double a[3][3], char *name); +epicsShareFunc double dot(double a[3], double b[3]); +epicsShareFunc void cross(double a[3], double b[3], double r[3]); +epicsShareFunc double dotcross(double a[3], double b[3], double c[3]); +epicsShareFunc void multArrayArray(double a[3][3], double b[3][3], double r[3][3]); +epicsShareFunc void multArrayVector(double a[3][3], double v[3], double r[3]); +epicsShareFunc double determinant(double a[3][3]); +epicsShareFunc int invertArray(double a[3][3], double r[3][3]); #define SMALL 1.e-11 diff --git a/opticsApp/src/opticsMain.cpp b/opticsApp/src/opticsMain.cpp index d361ffa..ae0ecb6 100644 --- a/opticsApp/src/opticsMain.cpp +++ b/opticsApp/src/opticsMain.cpp @@ -1,4 +1,5 @@ -/* stdMain */ +/* _APPNAME_Main.cpp */ +/* Author: Marty Kraimer Date: 17MAR2000 */ #include #include @@ -6,16 +7,17 @@ #include #include +#include "epicsExit.h" +#include "epicsThread.h" #include "iocsh.h" -#include int main(int argc,char *argv[]) { - - if(argc>=2) { + if(argc>=2) { iocsh(argv[1]); epicsThreadSleep(.2); } iocsh(NULL); + epicsExit(0); return(0); } diff --git a/opticsApp/src/opticsSupport.dbd b/opticsApp/src/opticsSupport.dbd index 2bff53e..588fe36 100644 --- a/opticsApp/src/opticsSupport.dbd +++ b/opticsApp/src/opticsSupport.dbd @@ -10,8 +10,10 @@ include "tableRecord.dbd" ################ # DRIVER SUPPORT ################ +variable(tableRecordDebug, int) registrar(kohzuCtlRegistrar) +registrar(kohzuCtl_softRegistrar) registrar(hrCtlRegistrar) registrar(xiahscRegistrar) registrar(xia_slitRegistrar) @@ -20,3 +22,5 @@ registrar(pf4Registrar) registrar(IoRegistrar) registrar(ml_monoCtlRegistrar) registrar(filterDriveRegistrar) +registrar(flexCombinedMotionRegistrar) + diff --git a/opticsApp/src/opticsTestInclude.dbd b/opticsApp/src/opticsTestInclude.dbd deleted file mode 100644 index b91e7de..0000000 --- a/opticsApp/src/opticsTestInclude.dbd +++ /dev/null @@ -1,4 +0,0 @@ -include "opticsInclude.dbd" -include "asSupport.dbd" -include "calcSupport.dbd" -#registrar("opticsTestRegister") diff --git a/opticsApp/src/orient.c b/opticsApp/src/orient.c index d2767bc..3bd6082 100644 --- a/opticsApp/src/orient.c +++ b/opticsApp/src/orient.c @@ -4,6 +4,8 @@ #include #include #include +#include + #include "matrix3.h" #include "orient.h" diff --git a/opticsApp/src/orient_st.st b/opticsApp/src/orient_st.st index 981aed2..a5079da 100644 --- a/opticsApp/src/orient_st.st +++ b/opticsApp/src/orient_st.st @@ -82,10 +82,11 @@ option +r; /* allow more than one copy of the program */ ASSIGN_MONITOR(TYPE, LOCAL_VAR, PV) \ sync LOCAL_VAR LOCAL_FLAG; +#define MSG_SIZE 39 #define PVPUT(PV,VAL) {(PV) = (VAL); pvPut(PV);} #define PVPUTSTR(MSG,TEXT) {strcpy((MSG), (TEXT)); pvPut(MSG);} -#define PUTMSG(LINE1) {strcpy(Msg, (LINE1)); pvPut(Msg); if (orientDebug) printf("orient: %s\n", Msg);} -#define PUTALERT(LINE1) {strcpy(Msg, (LINE1)); pvPut(Msg); PVPUT(Alert, 1); printf("orient: %s\n", Msg);} +#define PUTMSG(LINE1) {strncpy(Msg, (LINE1), MSG_SIZE); pvPut(Msg); if (orientDebug) printf("orient: %s\n", Msg);} +#define PUTALERT(LINE1) {strncpy(Msg, (LINE1), MSG_SIZE); pvPut(Msg); PVPUT(Alert, 1); printf("orient: %s\n", Msg);} char tmpstr[100]; char *cp; @@ -295,6 +296,7 @@ ASSIGN_MONITOR(double, errAngleThresh, "{P}errAngleThresh") %%#include %%#include +%%#include %%#include "matrix3.h" %%#include "orient.h" diff --git a/opticsApp/src/tableRecord.c b/opticsApp/src/tableRecord.c index e83e8d5..3a48b04 100644 --- a/opticsApp/src/tableRecord.c +++ b/opticsApp/src/tableRecord.c @@ -71,7 +71,7 @@ #endif #define LT_EPICSBASE(V,R,M,P) (EPICS_VERSION_INT < VERSION_INT((V),(R),(M),(P))) -double D2R; /* set in init_record() */ +double D2R; /* set in init_record() */ #define MAX(a,b) ((a)>(b)?(a):(b)) #define MIN(a,b) ((a)<(b)?(a):(b)) @@ -153,27 +153,31 @@ static void checkLinks(tableRecord *ptbl); #define Debug(l,FMT,V) { if(l <= tableRecordDebug) \ { printf("%s(%d):",__FILE__,__LINE__); \ printf(FMT,V); } } +#define Debug2(l,FMT,V,V2) { if(l <= tableRecordDebug) \ + { printf("%s(%d):",__FILE__,__LINE__); \ + printf(FMT,V,V2); } } #endif volatile int tableRecordDebug = 0; +epicsExportAddress(int, tableRecordDebug); /* Create RSET - Record Support Entry Table*/ #define report NULL #define initialize NULL -static long init_record(tableRecord *ptbl, int pass); -static long process(); -static long special(); +static long init_record(dbCommon *ptbl, int pass); +static long process(dbCommon *); +static long special(const DBADDR *paddr, int after); #define get_value NULL -static long cvt_dbaddr(); +static long cvt_dbaddr(DBADDR *paddr); #define get_array_info NULL #define put_array_info NULL -static long get_units(struct dbAddr * paddr, char *units); +static long get_units(const DBADDR * paddr, char *units); static long get_precision(); #define get_enum_str NULL #define get_enum_strs NULL #define put_enum_str NULL -static long get_graphic_double(struct dbAddr * paddr, +static long get_graphic_double(const DBADDR * paddr, struct dbr_grDouble * pcd); -static long get_control_double(struct dbAddr * paddr, +static long get_control_double(const DBADDR * paddr, struct dbr_ctrlDouble * pcd); #define get_alarm_double NULL @@ -216,12 +220,17 @@ struct saveTable { double eax,eay,eaz,ex,ey,ez; double ax0,ay0,az0,x0,y0,z0; double axl,ayl,azl,xl,yl,zl; + double uhax, uhay, uhaz, uhx, uhy, uhz; + double uhaxr, uhayr, uhazr, uhxr, uhyr, uhzr; + double ulax, ulay, ulaz, ulx, uly, ulz; + double ulaxr, ulayr, ulazr, ulxr, ulyr, ulzr; short lvio; }; struct private { struct linkStatus lnkStat[6]; struct saveTable savTbl; + epicsEnum16 curr_aunit; }; @@ -241,6 +250,10 @@ SaveRecordValues(tableRecord *ptbl) double *eax = &ptbl->eax; double *ax0 = &ptbl->ax0; double *axl = &ptbl->axl; + double *uhax = &ptbl->uhax; /* user limit (absolute) */ + double *uhaxr = &ptbl->uhaxr; /* user limit (varies with offset) */ + double *ulax = &ptbl->ulax; /* user limit (absolute) */ + double *ulaxr = &ptbl->ulaxr; /* user limit (varies with offset) */ double *Sax = &savTbl->ax; double *Saxrb = &savTbl->axrb; double *Shlax = &savTbl->hlax; @@ -250,6 +263,10 @@ SaveRecordValues(tableRecord *ptbl) double *Seax = &savTbl->eax; double *Sax0 = &savTbl->ax0; double *Saxl = &savTbl->axl; + double *Suhax = &savTbl->uhax; /* user limit (absolute) */ + double *Suhaxr = &savTbl->uhaxr; /* user limit (varies with offset) */ + double *Sulax = &savTbl->ulax; /* user limit (absolute) */ + double *Sulaxr = &savTbl->ulaxr; /* user limit (varies with offset) */ for (i=0; i<6; i++) { *Sax++ = *ax++; @@ -261,14 +278,19 @@ SaveRecordValues(tableRecord *ptbl) *Seax++ = *eax++; *Sax0++ = *ax0++; *Saxl++ = *axl++; + *Suhax++ = *uhax++; + *Suhaxr++ = *uhaxr++; + *Sulax++ = *ulax++; + *Sulaxr++ = *ulaxr++; } savTbl->lvio = ptbl->lvio; } static long -init_record(tableRecord *ptbl, int pass) +init_record(dbCommon *pcommon, int pass) { + tableRecord *ptbl = (tableRecord *) pcommon; short i; double *ax = &ptbl->ax; double *axrb = &ptbl->axrb; @@ -276,16 +298,35 @@ init_record(tableRecord *ptbl, int pass) double *ax0 = &ptbl->ax0; double *axl = &ptbl->axl; double *r0x = &ptbl->r0x; + double *uhax = &ptbl->uhax; /* user limit (absolute) */ + double *uhaxr = &ptbl->uhaxr; /* user limit (varies with offset) */ + double *ulax = &ptbl->ulax; /* user limit (absolute) */ + double *ulaxr = &ptbl->ulaxr; /* user limit (varies with offset) */ + struct private *recPvt; Debug(5, "init_record: pass = %d\n", pass); if (pass == 0) { - D2R = atan(1.0)/45.0; /* * Allocate link-status structure and hang on dpvt. We can get * away with this because there's no possibility of device support. */ ptbl->dpvt = (void *)calloc(1, sizeof(struct private)); + recPvt = ptbl->dpvt; + + if (ptbl->aunit == tableAUNIT_DEGREES) { + strncpy(ptbl->aegu, "degrees", 15); + ptbl->torad = atan(1.0)/45.0; + } else { + /* microradians */ + strncpy(ptbl->aegu, "ur", 15); + ptbl->torad = 1.e-6; + } + D2R = atan(1.0)/45.0; + recPvt->curr_aunit = ptbl->aunit; + if (tableRecordDebug >= 1) { + printf("init_record(%s): ptbl->torad = %f, curr_aunit=%d\n", ptbl->name, ptbl->torad, recPvt->curr_aunit); + } } /* Save current values of selected fields. */ @@ -332,6 +373,8 @@ init_record(tableRecord *ptbl, int pass) ax[i] = 0.0; axl[i] = ax0[i]; m0x[i] = 0.0; + uhaxr[i] = uhax[i] - ax0[i]; + ulaxr[i] = ulax[i] - ax0[i]; } return (0); @@ -366,8 +409,9 @@ init_record(tableRecord *ptbl, int pass) static long -process(tableRecord *ptbl) +process(dbCommon *pcommon) { + tableRecord *ptbl = (tableRecord *) pcommon; int i; unsigned short motor_move_mask; long err; @@ -382,6 +426,10 @@ process(tableRecord *ptbl) double *ax0 = &ptbl->ax0; /* user-coordinate offsets (e.g., via SET field) */ double *axl = &ptbl->axl; /* previous user-coordinate drive values (ignore offsets) */ double *r0x = &ptbl->r0x; /* motor readback values */ + double *uhax = &ptbl->uhax; /* user limit (absolute) */ + double *uhaxr = &ptbl->uhaxr; /* user limit (varies with offset) */ + double *ulax = &ptbl->ulax; /* user limit (absolute) */ + double *ulaxr = &ptbl->ulaxr; /* user limit (varies with offset) */ Debug(5, "tableRecord(%s):process:entry\n", ptbl->name); @@ -435,7 +483,14 @@ process(tableRecord *ptbl) Debug0(5, "process: init\n"); /** read motors and set initial user-coordinate values **/ - for (i=0; i<6; i++) {ax0[i] = 0;} + for (i=0; i<6; i++) { + ax0[i] = 0; + uhaxr[i] = uhax[i] - ax0[i]; + ulaxr[i] = ulax[i] - ax0[i]; + Debug2(5, "process:init: uhaxr[%d]=%f\n", i, uhaxr[i]); + Debug2(5, "process:init: ulaxr[%d]=%f\n", i, ulaxr[i]); + + } (void) GetReadback(ptbl, &ptbl->r0x); MotorToUser(ptbl, &ptbl->r0x, &ptbl->axrb); /* accept these values for drive and readback fields; zero offsets. */ @@ -450,7 +505,13 @@ process(tableRecord *ptbl) } else if (ptbl->set) { Debug0(5, "process: set\n"); - for (i=0; i<6; i++) {ax0[i] = axl[i] - ax[i];} + for (i=0; i<6; i++) { + ax0[i] = axl[i] - ax[i]; + uhaxr[i] = uhax[i] - ax0[i]; + ulaxr[i] = ulax[i] - ax0[i]; + Debug2(5, "process:init: uhaxr[%d]=%f\n", i, uhaxr[i]); + Debug2(5, "process:init: ulaxr[%d]=%f\n", i, ulaxr[i]); + } } else { @@ -541,12 +602,13 @@ process(tableRecord *ptbl) static long -special(struct dbAddr *paddr, int after) +special(const DBADDR *paddr, int after) { tableRecord *ptbl = (tableRecord *) (paddr->precord); int fieldIndex = dbGetFieldIndex(paddr); + struct private *recPvt = ptbl->dpvt; - Debug(5, "special: after = %d\n", after); + Debug2(5, "special: after = %d, fieldIndex=%d\n", after, fieldIndex); if (ptbl->pact) { printf("%s(%d): special: Record is active.\n",__FILE__,__LINE__); return(0); @@ -569,6 +631,26 @@ special(struct dbAddr *paddr, int after) LocalToLab(ptbl, &ptbl->ax0, &ptbl->ax0); ptbl->sync = 1; } + } else if (after && (fieldIndex >= tableRecordUHAX) && + (fieldIndex <= tableRecordULZ)) { + /* absolute user limit */ + int i = fieldIndex - tableRecordUHAX; + double *uhax = &ptbl->uhax; /* user limit (absolute) */ + double *uhaxr = &ptbl->uhaxr; /* user limit (varies with offset) */ + double *ax0 = &ptbl->ax0; /* user-coordinate offsets (e.g., via SET field) */ + uhaxr[i] = uhax[i] - ax0[i%6]; /* 12 limits, 6 drive values */ + db_post_events(ptbl, &(uhaxr[i]), DBE_VALUE); + Debug2(5, "special: uhaxr[%d]=%f\n", i, uhaxr[i]); + } else if (after && (fieldIndex >= tableRecordUHAXR) && + (fieldIndex <= tableRecordULZR)) { + /* relative user limit */ + int i = fieldIndex - tableRecordUHAXR; + double *uhax = &ptbl->uhax; /* user limit (absolute) */ + double *uhaxr = &ptbl->uhaxr; /* user limit (varies with offset) */ + double *ax0 = &ptbl->ax0; /* user-coordinate offsets (e.g., via SET field) */ + uhax[i] = uhaxr[i] + ax0[i%6]; /* 12 limits, 6 drive values */ + db_post_events(ptbl, &(uhax[i]), DBE_VALUE); + Debug2(5, "special: uhax[%d]=%f\n", i, uhax[i]); } else if (after) { switch (fieldIndex) { case tableRecordSSET: @@ -596,6 +678,43 @@ special(struct dbAddr *paddr, int after) /* Let a put of any value to the READ field cause a read. */ ptbl->read = 1; db_post_events(ptbl,&ptbl->read,DBE_VALUE); break; + case tableRecordAUNIT: + if (ptbl->aunit == tableAUNIT_DEGREES) { + strncpy(ptbl->aegu, "degrees", 15); + ptbl->torad = atan(1.0)/45.0; + } else { + /* microradians */ + strncpy(ptbl->aegu, "ur", 15); + ptbl->torad = 1.e-6; + } + db_post_events(ptbl, &ptbl->aegu, DBE_VALUE); + /* convert user limits */ + if (recPvt->curr_aunit != ptbl->aunit) { + int i; + double *uhax = &ptbl->uhax; /* user limit (absolute) */ + double *uhaxr = &ptbl->uhaxr; /* user limit (varies with offset) */ + double *ulax = &ptbl->ulax; /* user limit (absolute) */ + double *ulaxr = &ptbl->ulaxr; /* user limit (varies with offset) */ + double *ax0 = &ptbl->ax0; /* user-coordinate offsets (e.g., via SET field) */ + double convertFact = (recPvt->curr_aunit==tableAUNIT_DEGREES) ? 1.e6 * atan(1.0)/45.0 : 1.e-6 / (atan(1.0)/45.0); + for (i = 0; i < 3; i++) { + uhax[i] *= convertFact; + db_post_events(ptbl, &(uhax[i]), DBE_VALUE); + ulax[i] *= convertFact; + db_post_events(ptbl, &(ulax[i]), DBE_VALUE); + uhaxr[i] *= convertFact; + db_post_events(ptbl, &(uhaxr[i]), DBE_VALUE); + ulaxr[i] *= convertFact; + db_post_events(ptbl, &(ulaxr[i]), DBE_VALUE); + ax0[i] *= convertFact; + db_post_events(ptbl, &(ax0[i]), DBE_VALUE); + } + } + + /* sync to motors to make new units effective */ + ptbl->sync = 1; + recPvt->curr_aunit = ptbl->aunit; + break; default: break; } /* switch (fieldIndex) */ @@ -605,7 +724,7 @@ special(struct dbAddr *paddr, int after) static long -cvt_dbaddr(struct dbAddr *paddr) +cvt_dbaddr(DBADDR *paddr) { tableRecord *ptbl = (tableRecord *) paddr->precord; double **pfield = paddr->pfield; @@ -631,7 +750,7 @@ cvt_dbaddr(struct dbAddr *paddr) static long -get_units(struct dbAddr *paddr, char *units) +get_units(const DBADDR *paddr, char *units) { tableRecord *ptbl = (tableRecord *) paddr->precord; int fieldIndex = dbGetFieldIndex(paddr); @@ -657,7 +776,7 @@ get_units(struct dbAddr *paddr, char *units) static long -get_graphic_double(struct dbAddr *paddr, struct dbr_grDouble *pgd) +get_graphic_double(const DBADDR *paddr, struct dbr_grDouble *pgd) { tableRecord *ptbl = (tableRecord *) paddr->precord; int i, fieldIndex = dbGetFieldIndex(paddr); @@ -674,7 +793,7 @@ get_graphic_double(struct dbAddr *paddr, struct dbr_grDouble *pgd) static long -get_control_double(struct dbAddr *paddr, struct dbr_ctrlDouble *pcd) +get_control_double(const DBADDR *paddr, struct dbr_ctrlDouble *pcd) { tableRecord *ptbl = (tableRecord *) paddr->precord; int i, fieldIndex = dbGetFieldIndex(paddr); @@ -692,7 +811,7 @@ get_control_double(struct dbAddr *paddr, struct dbr_ctrlDouble *pcd) static long -get_precision(struct dbAddr *paddr, long *precision) +get_precision(const DBADDR *paddr, long *precision) { tableRecord *ptbl = (tableRecord *) paddr->precord; int fieldIndex = dbGetFieldIndex(paddr); @@ -740,6 +859,10 @@ monitor(tableRecord *ptbl) double *eax = &ptbl->eax; double *ax0 = &ptbl->ax0; double *axl = &ptbl->axl; + double *uhax = &ptbl->uhax; /* user limit (absolute) */ + double *uhaxr = &ptbl->uhaxr; /* user limit (varies with offset) */ + double *ulax = &ptbl->ulax; /* user limit (absolute) */ + double *ulaxr = &ptbl->ulaxr; /* user limit (varies with offset) */ double *Sax = &savTbl->ax; double *Saxrb = &savTbl->axrb; double *Shlax = &savTbl->hlax; @@ -749,6 +872,10 @@ monitor(tableRecord *ptbl) double *Seax = &savTbl->eax; double *Sax0 = &savTbl->ax0; double *Saxl = &savTbl->axl; + double *Suhax = &savTbl->uhax; /* user limit (absolute) */ + double *Suhaxr = &savTbl->uhaxr; /* user limit (varies with offset) */ + double *Sulax = &savTbl->ulax; /* user limit (absolute) */ + double *Sulaxr = &savTbl->ulaxr; /* user limit (varies with offset) */ Debug0(5, "monitor: entry\n"); @@ -774,6 +901,14 @@ monitor(tableRecord *ptbl) ax0++; if (*Saxl++ != *axl) db_post_events(ptbl, axl, monitor_mask); axl++; + if (*Suhax++ != *uhax) db_post_events(ptbl, uhax, monitor_mask); + uhax++; + if (*Suhaxr++ != *uhaxr) db_post_events(ptbl, uhaxr, monitor_mask); + uhaxr++; + if (*Sulax++ != *ulax) db_post_events(ptbl, ulax, monitor_mask); + ulax++; + if (*Sulaxr++ != *ulaxr) db_post_events(ptbl, ulaxr, monitor_mask); + ulaxr++; } if (savTbl->lvio != ptbl->lvio) @@ -807,7 +942,8 @@ ProcessOutputLinks(tableRecord *ptbl, unsigned short motor_move_mask) } /* move motors */ for (i=0; i<6; i++) { - if ((motor_move_mask & 1< SMALL) || (fabs(*llax) > SMALL)) { - u = *ax + *ax0; + u = *ax; + if (tableRecordDebug >= 1) + printf("UserLimitViol: ax=%f, ax0=%f, user[%d]=%f, l=%f, h=%f\n", + *ax, *ax0, i, u, *llax, *hlax); if ((u < *llax) || (u > *hlax)) { - if (tableRecordDebug >= 1) + if (tableRecordDebug >= 2) printf("UserLimitViol: user[%d]=%f, l=%f, h=%f\n", i, u, *llax, *hlax); return(1); @@ -1294,9 +1433,9 @@ PivotPointVectorToLocalUserAngles(tableRecord *ptbl, double *q0, double *q1, * changes, the next three lines may also have to change. */ u[AY_6] = asin(-kp[X]); /* a[X][Z] */ - u[AX_6] = asin(kp[Y]/cos(u[AY_6])) / D2R; /* a[Y][Z] */ - u[AZ_6] = asin(jp[X]/cos(u[AY_6])) / D2R; /* a[X][Y] */ - u[AY_6] /= D2R; /* user angles are in degrees, not radians */ + u[AX_6] = asin(kp[Y]/cos(u[AY_6])) / ptbl->torad; /* a[Y][Z] */ + u[AZ_6] = asin(jp[X]/cos(u[AY_6])) / ptbl->torad; /* a[X][Y] */ + u[AY_6] /= ptbl->torad; /* user angles are in degrees or microradians, not radians */ } @@ -1416,17 +1555,24 @@ MotorToLocalUserAngles(tableRecord *ptbl, double *m, double *u) tmp = (a - (p02z * Ryx - p02x * Ryz) * sqrt(b)) / c; /* Use rotation-matrix identity to choose the right root. */ tmp1 = sqrt(1 - (Rxx*Rxx + Rxz*Rxz)); - if (tableRecordDebug >= 6) printf("MotorToLocalUserAngles: Rxy = %f or %f (abs val should be near %f)\n", + if (tableRecordDebug >= 6) printf("MotorToLocalUserAngles: Rxy = %.10f or %.10f (abs val should be near %.10f)\n", Rxy, tmp, tmp1); - if (fabs(fabs(tmp)-tmp1) < fabs(fabs(Rxy)-tmp1)) Rxy = tmp; + + if (fabs(fabs(fabs(tmp)-tmp1) - fabs(fabs(Rxy)-tmp1)) > 1e-6) { + if (fabs(fabs(tmp)-tmp1) < fabs(fabs(Rxy)-tmp1)) { + Rxy = tmp; + /* This should never happen. */ + printf("MotorToLocalUserAngles: choosing Rxy = %f\n", Rxz); + } + } if (tableRecordDebug >= 5) printf("Rxx=%f, Rxy=%f, Rxz=%f\n", Rxx, Rxy, Rxz); /* Now we have the right matrix elements to pick out user angles easily. */ u[AY_6] = asin(-Rxz); - u[AX_6] = asin(Ryz/cos(u[AY_6])) / D2R; - u[AZ_6] = asin(Rxy/cos(u[AY_6])) / D2R; - u[AY_6] /= D2R; + u[AX_6] = asin(Ryz/cos(u[AY_6])) / ptbl->torad; + u[AZ_6] = asin(Rxy/cos(u[AY_6])) / ptbl->torad; + u[AY_6] /= ptbl->torad; } @@ -1639,9 +1785,14 @@ MakeRotationMatrix(tableRecord *ptbl, double *u) double **a = ptbl->a; double cx, cy, cz, sx, sy, sz; - cx = cos(D2R * u[AX_6]); sx = sin(D2R * u[AX_6]); - cy = cos(D2R * u[AY_6]); sy = sin(D2R * u[AY_6]); - cz = cos(D2R * u[AZ_6]); sz = sin(D2R * u[AZ_6]); + cx = cos(ptbl->torad * u[AX_6]); sx = sin(ptbl->torad * u[AX_6]); + cy = cos(ptbl->torad * u[AY_6]); sy = sin(ptbl->torad * u[AY_6]); + cz = cos(ptbl->torad * u[AZ_6]); sz = sin(ptbl->torad * u[AZ_6]); + if (tableRecordDebug >= 10) { + printf("MakeRotationMatrix:\n"); + printf("cx=%f, cy=%f, cz=%f\n", cx, cy, cz); + printf("sx=%f, sy=%f, sz=%f\n", sx, sy, sz); + } /* Make rotation matrix */ a[0][0] = cy*cz; a[0][1] = cy*sz; a[0][2] = -sy; @@ -1649,6 +1800,7 @@ MakeRotationMatrix(tableRecord *ptbl, double *u) a[2][0] = cx*sy*cz + sx*sz; a[2][1] = cx*sy*sz - sx*cz; a[2][2] = cx*cy; if (tableRecordDebug >= 5) { + printf("MakeRotationMatrix:\n"); printf(" [%9.6f %9.6f %9.6f]\n", a[0][0], a[0][1], a[0][2]); printf("a = [%9.6f %9.6f %9.6f]\n", a[1][0], a[1][1], a[1][2]); printf(" [%9.6f %9.6f %9.6f]\n", a[2][0], a[2][1], a[2][2]); @@ -1693,11 +1845,17 @@ ZeroTable(tableRecord *ptbl) { short i; double *ax = &ptbl->ax, *ax0 = &ptbl->ax0, *axl = &ptbl->axl; + double *uhax = &ptbl->uhax, *uhaxr = &ptbl->uhaxr; + double *ulax = &ptbl->ulax, *ulaxr = &ptbl->ulaxr; /* Make current rotation/translation appear as zero. */ - for (i=0; i<6; i++) { - *ax++ = 0; - *ax0++ = *axl++; + for (i=0; i<6; i++, ax++, ax0++, axl++, uhaxr++, uhax++, ulaxr++, ulax++) { + *ax = 0; + *ax0 = *axl; + *uhaxr = *uhax - *ax0; + *ulaxr = *ulax - *ax0; + Debug2(5, "ZeroTable: uhaxr[%d]=%f\n", i, uhaxr[i]); + Debug2(5, "ZeroTable: ulaxr[%d]=%f\n", i, ulaxr[i]); } } @@ -1751,8 +1909,9 @@ SortTrajectory(struct trajectory *t, int n) } } +#define DELTA_START 10 /* From Numerical Recipes in C */ -#define NTRAJ 10 +#define NTRAJ 13 static int polint(double *xa, double *ya, int n, double x, double *y, double *dy) { @@ -1849,8 +2008,6 @@ FindLimit(tableRecord *ptbl, struct trajectory *t, int n, double *userLimit) return(failed); } - -#define DELTA_INIT 5 static void CalcLocalUserLimits(tableRecord *ptbl) { @@ -1866,7 +2023,9 @@ CalcLocalUserLimits(tableRecord *ptbl) struct trajectory t[NTRAJ]; struct private *p = (struct private *)ptbl->dpvt; struct linkStatus *lnkStat = p->lnkStat; + double delta_init = DELTA_START*D2R/ptbl->torad; /* we should hit a limit if we move DELTA_START degrees */ + if (tableRecordDebug >= 5) printf("CalcLocalUserLimits: entry, delta_init=%f\n", delta_init); UserToMotor(ptbl, ax, m0x); /*** get limits for user translations ***/ @@ -1903,35 +2062,57 @@ CalcLocalUserLimits(tableRecord *ptbl) hu[Z_6] = MIN(hu[Z_6], u[Z_6] + pp2h[Z]-pp2[Z]); lu[Z_6] = MAX(lu[Z_6], u[Z_6] + pp2l[Z]-pp2[Z]); } + /* add offsets and limit */ for (i=X_6; i<=Z_6; i++) { - if (hu[i] == LARGE) hu[i] = u[i] + SMALL; - if (lu[i] == -LARGE) lu[i] = u[i] - SMALL; + hu[i] -= ax0[i]; + lu[i] -= ax0[i]; + if (tableRecordDebug >= 5) printf("CalcLocalUserLimits: hu[%d]=%f, lu[%d]=%f\n", i, hu[i], i, lu[i]); + if (hu[i] >= LARGE) { + hu[i] = u[i] + SMALL; + if (tableRecordDebug >= 5) printf("CalcLocalUserLimits: hu[%d] == LARGE, set to %f\n", i, hu[i]); + } + if (lu[i] <= -LARGE) { + lu[i] = u[i] - SMALL; + if (tableRecordDebug >= 5) printf("CalcLocalUserLimits: lu[%d] == -LARGE, set to %f\n", i, lu[i]); + } } /*** get limits for user rotations ***/ for (i=AX_6; i<=AZ_6; i++) { + if (tableRecordDebug >= 5) printf("\n******\nCalcLocalUserLimits: find limits for ax[%d]\n", i); /* save user coordinate */ save = ax[i]; /* try to find a legal value for this coordinate */ if (MotorLimitViol(ptbl)) { + if (tableRecordDebug >= 5) printf("CalcLocalUserLimits: userCoord %d: Limit violation at ax[%d]=%f\n", i, i, ax[i]); ax[i] = 0; UserToMotor(ptbl, ax, m0x); if (MotorLimitViol(ptbl)) { + if (tableRecordDebug >= 5) printf("CalcLocalUserLimits: userCoord %d: Limit violation at ax[%d]=%f\n", i, i, ax[i]); hu[i] = lu[i] = ax[i] = save; UserToMotor(ptbl, ax, m0x); continue; + } else { + if (tableRecordDebug >= 5) printf("CalcLocalUserLimits: userCoord %d: No limit violation at ax[%d]=%f\n", i, i, ax[i]); } + } else { + if (tableRecordDebug >= 5) printf("CalcLocalUserLimits: userCoord %d: No limit violation at ax[%d]=%f\n", i, i, ax[i]); } - for (ii=0, lim=&hu[i], delta=DELTA_INIT; + for (ii=0, lim=&hu[i], delta=delta_init; ii<=1; - ii++, lim=&lu[i], delta = -DELTA_INIT) { + ii++, lim=&lu[i], delta = -delta_init) { InitTrajectory(t, NTRAJ); limitCrossings = 0; for (j=0; j= 5) printf("CalcLocalUserLimits: userCoord %d: Limit violation at ax[%d]=%f\n", i, i, ax[i]); + } else { + if (tableRecordDebug >= 5) printf("CalcLocalUserLimits: userCoord %d: No limit violation at ax[%d]=%f\n", i, i, ax[i]); + } if (j) { if (t[j].lvio != t[j-1].lvio) { limitCrossings++; @@ -1940,6 +2121,13 @@ CalcLocalUserLimits(tableRecord *ptbl) if (limitCrossings) delta *= 0.5; } ax[i] += delta; + if (ptbl->aunit == tableAUNIT_DEGREES) { + if (fabs(ax[i]) > 89) ax[i] = 89 * ax[i]/fabs(ax[i]); + } else { + /* microradians */ + if (fabs(ax[i]) > 1.55e6) ax[i] = 1.55e6 * ax[i]/fabs(ax[i]); + } + if (tableRecordDebug >= 5) printf("CalcLocalUserLimits: userCoord %d: Trying ax[%d]=%f\n", i, i, ax[i]); UserToMotor(ptbl, ax, m0x); } if (tableRecordDebug >= 10) { @@ -1949,7 +2137,15 @@ CalcLocalUserLimits(tableRecord *ptbl) if (limitCrossings && !(FindLimit(ptbl, t, j, &limit))) { *lim = limit; } else { - *lim = save; + /* couldn't find a limit violation */ + if (tableRecordDebug >= 5) printf("CalcLocalUserLimits: userCoord %d: Couldn't find a limit violation\n", i); + if (ptbl->aunit == tableAUNIT_DEGREES) { + *lim = 89; + } else { + /* microradians */ + *lim = 1.55e6; + } + if (ii) *lim = -(*lim); } /* restore user coordinate */ ax[i] = save; @@ -1994,6 +2190,8 @@ UserLimits_LocalToLab(tableRecord *ptbl) lo_lab[Z_6] = sa*hu[X_6] + ca*hu[Z_6]; break; case 0x01: + default: /* There is no default, but compiler complains because I didn't tell it + that there are only four possible values of quadrant. */ /* local's +z is in lab's (+x,+z) quadrant */ hi_lab[X_6] = ca*hu[X_6] - sa*hu[Z_6]; lo_lab[X_6] = ca*lu[X_6] - sa*lu[Z_6]; @@ -2046,42 +2244,61 @@ PrintValues(tableRecord *ptbl) printf(" [%9.6f %9.6f %9.6f]\n", a[2][0], a[2][1], a[2][2]); } - static void CalcUserLimits(tableRecord *ptbl) { unsigned short i; double *hu = &ptbl->hlax, *lu = &ptbl->llax; double *uhax = &ptbl->uhax, *ulax = &ptbl->ulax; - double *ax0 = &ptbl->ax0; + double *uhaxr = &ptbl->uhaxr, *ulaxr = &ptbl->ulaxr; int saveTableRecordDebug = tableRecordDebug; Debug(5, "tableRecord(%s):CalcUserLimits:entry\n", ptbl->name); + + if (tableRecordDebug >= 5) { + printf("CalcUserLimits: before CalcLocalUserLimits\n"); + for (i=0; i<6; i++) { + printf("\t%f %f\n", hu[i], lu[i]); + } + } if (tableRecordDebug >= 10) { PrintValues(ptbl); } else { - tableRecordDebug=0; /* CalcUserLimits produces too much output */ + /*tableRecordDebug=0*/; /* CalcLocalUserLimits produces too much output */ } - CalcLocalUserLimits(ptbl); + tableRecordDebug = saveTableRecordDebug; + if (tableRecordDebug >= 5) { + printf("CalcUserLimits: after CalcLocalUserLimits\n"); + for (i=0; i<6; i++) { + printf("\t%f %f\n", hu[i], lu[i]); + } + } + UserLimits_LocalToLab(ptbl); - /* Enforce user's limits; subtract offsets */ + if (tableRecordDebug >= 5) { + printf("CalcUserLimits: after UserLimits_LocalToLab\n"); + for (i=0; i<6; i++) { + printf("\t%f %f\n", hu[i], lu[i]); + } + } + + + /* Enforce user's limits */ for (i=0; i<6; i++) { - /*if ((uhax[i] != 0.0) || (ulax[i] != 0.0)) {*/ + Debug2(5, "CalcUserLimits: before: hu[%d]=%f\n", i, hu[i]); if ((fabs(uhax[i]) > SMALL) || (fabs(ulax[i]) > SMALL)) { - hu[i] = MIN(hu[i], uhax[i]); - lu[i] = MAX(lu[i], ulax[i]); + hu[i] = MIN(hu[i], uhaxr[i]); + lu[i] = MAX(lu[i], ulaxr[i]); } - hu[i] -= ax0[i]; - lu[i] -= ax0[i]; + Debug2(5, "CalcUserLimits: after: hu[%d]=%f\n", i, hu[i]); } if (tableRecordDebug >= 10) { printf("CalcUserLimits:done\n"); PrintValues(ptbl); } - tableRecordDebug = saveTableRecordDebug; } @@ -2134,3 +2351,5 @@ checkLinks(tableRecord *ptbl) lnkStat[i].can_RW_speed = 0; } } + + diff --git a/opticsApp/src/tableRecord.dbd b/opticsApp/src/tableRecord.dbd index 26cc9c1..c336ac8 100644 --- a/opticsApp/src/tableRecord.dbd +++ b/opticsApp/src/tableRecord.dbd @@ -8,6 +8,10 @@ menu(tableGEOM) { choice(tableGEOM_NEWPORT,"NEWPORT") choice(tableGEOM_PNC,"PNC") } +menu(tableAUNIT) { + choice(tableAUNIT_DEGREES,"degrees") + choice(tableAUNIT_MICRORADIANS,"ur") +} recordtype(table) { include "dbCommon.dbd" field(VERS,DBF_FLOAT) { @@ -241,64 +245,148 @@ recordtype(table) { special(SPC_NOMOD) } field(UHAX,DBF_DOUBLE) { - prompt("x angle user hi limit") + prompt("x angle user hi limit (absolute)") promptgroup(GUI_COMMON) pp(TRUE) + special(SPC_MOD) } field(UHAY,DBF_DOUBLE) { - prompt("y angle user hi limit") + prompt("y angle user hi limit (absolute)") promptgroup(GUI_COMMON) pp(TRUE) + special(SPC_MOD) } field(UHAZ,DBF_DOUBLE) { - prompt("z angle user hi limit") + prompt("z angle user hi limit (absolute)") promptgroup(GUI_COMMON) pp(TRUE) + special(SPC_MOD) } field(UHX,DBF_DOUBLE) { - prompt("x user hi limit") + prompt("x user hi limit (absolute)") promptgroup(GUI_COMMON) pp(TRUE) + special(SPC_MOD) } field(UHY,DBF_DOUBLE) { - prompt("y user hi limit") + prompt("y user hi limit (absolute)") promptgroup(GUI_COMMON) pp(TRUE) + special(SPC_MOD) } field(UHZ,DBF_DOUBLE) { - prompt("z user hi limit") + prompt("z user hi limit (absolute)") promptgroup(GUI_COMMON) pp(TRUE) + special(SPC_MOD) } field(ULAX,DBF_DOUBLE) { - prompt("x angle user lo limit") + prompt("x angle user lo limit (absolute)") promptgroup(GUI_COMMON) pp(TRUE) + special(SPC_MOD) } field(ULAY,DBF_DOUBLE) { - prompt("y angle user lo limit") + prompt("y angle user lo limit (absolute)") promptgroup(GUI_COMMON) pp(TRUE) + special(SPC_MOD) } field(ULAZ,DBF_DOUBLE) { - prompt("z angle user lo limit") + prompt("z angle user lo limit (absolute)") promptgroup(GUI_COMMON) pp(TRUE) + special(SPC_MOD) } field(ULX,DBF_DOUBLE) { - prompt("x user lo limit") + prompt("x user lo limit (absolute)") promptgroup(GUI_COMMON) pp(TRUE) + special(SPC_MOD) } field(ULY,DBF_DOUBLE) { - prompt("y user lo limit") + prompt("y user lo limit (absolute)") promptgroup(GUI_COMMON) pp(TRUE) + special(SPC_MOD) } field(ULZ,DBF_DOUBLE) { - prompt("z user lo limit") + prompt("z user lo limit (absolute)") + promptgroup(GUI_COMMON) + pp(TRUE) + special(SPC_MOD) + } + field(UHAXR,DBF_DOUBLE) { + prompt("x angle user hi limit (relative)") + promptgroup(GUI_COMMON) + pp(TRUE) + special(SPC_MOD) + } + field(UHAYR,DBF_DOUBLE) { + prompt("y angle user hi limit (relative)") + promptgroup(GUI_COMMON) + pp(TRUE) + special(SPC_MOD) + } + field(UHAZR,DBF_DOUBLE) { + prompt("z angle user hi limit (relative)") + promptgroup(GUI_COMMON) + pp(TRUE) + special(SPC_MOD) + } + field(UHXR,DBF_DOUBLE) { + prompt("x user hi limit (relative)") + promptgroup(GUI_COMMON) + pp(TRUE) + special(SPC_MOD) + } + field(UHYR,DBF_DOUBLE) { + prompt("y user hi limit (relative)") + promptgroup(GUI_COMMON) + pp(TRUE) + special(SPC_MOD) + } + field(UHZR,DBF_DOUBLE) { + prompt("z user hi limit (relative)") promptgroup(GUI_COMMON) pp(TRUE) + special(SPC_MOD) + } + field(ULAXR,DBF_DOUBLE) { + prompt("x angle user lo limit (relative)") + promptgroup(GUI_COMMON) + pp(TRUE) + special(SPC_MOD) + } + field(ULAYR,DBF_DOUBLE) { + prompt("y angle user lo limit (relative)") + promptgroup(GUI_COMMON) + pp(TRUE) + special(SPC_MOD) + } + field(ULAZR,DBF_DOUBLE) { + prompt("z angle user lo limit (relative)") + promptgroup(GUI_COMMON) + pp(TRUE) + special(SPC_MOD) + } + field(ULXR,DBF_DOUBLE) { + prompt("x user lo limit (relative)") + promptgroup(GUI_COMMON) + pp(TRUE) + special(SPC_MOD) + } + field(ULYR,DBF_DOUBLE) { + prompt("y user lo limit (relative)") + promptgroup(GUI_COMMON) + pp(TRUE) + special(SPC_MOD) + } + field(ULZR,DBF_DOUBLE) { + prompt("z user lo limit (relative)") + promptgroup(GUI_COMMON) + pp(TRUE) + special(SPC_MOD) } field(M0XL,DBF_OUTLINK) { prompt("motor 0X outlink") @@ -822,4 +910,16 @@ recordtype(table) { pp(TRUE) menu(tableGEOM) } + field(TORAD,DBF_DOUBLE) { + special(SPC_NOMOD) + interest(3) + prompt("conversion to radians") + } + field(AUNIT,DBF_MENU) { + prompt("Angle units") + promptgroup(GUI_COMMON) + special(SPC_MOD) + pp(TRUE) + menu(tableAUNIT) + } } diff --git a/tests/Makefile b/tests/Makefile new file mode 100644 index 0000000..b9061f9 --- /dev/null +++ b/tests/Makefile @@ -0,0 +1,23 @@ +TOP=.. + +include $(TOP)/configure/CONFIG + +SRC_DIRS += $(TOP)/opticsApp/src + +TESTPROD_HOST += matrixTest +matrixTest_SRCS += matrixTest.cpp +testHarness_SRCS += matrixTest.cpp +TESTS += matrixTest + +testHarness_SRCS += runTests.cpp + +PROD_vxWorks = opticsTestHarness +opticsTestHarness_SRCS += $(testHarness_SRCS) +TESTSPEC_vxWorks = opticsTestHarness.munch; runTests + +PROD_LIBS += optics +PROD_LIBS += $(EPICS_BASE_IOC_LIBS) + +TESTSCRIPTS_HOST += $(TESTS:%=%.t) + +include $(TOP)/configure/RULES diff --git a/tests/matrixTest.cpp b/tests/matrixTest.cpp new file mode 100644 index 0000000..339db26 --- /dev/null +++ b/tests/matrixTest.cpp @@ -0,0 +1,434 @@ +#include +#include +#include +#include + +#include +#include +#include +#include + +extern "C" +{ + #include "matrix3.h" +} + +void testDot(double x1, double y1, double z1, double x2, double y2, double z2) +{ + std::vector vec1; + std::vector vec2; + + vec1.push_back(x1); + vec1.push_back(y1); + vec1.push_back(z1); + + vec2.push_back(x2); + vec2.push_back(y2); + vec2.push_back(z2); + + double expected = std::inner_product(vec1.begin(), vec1.end(), vec2.begin(), 0); + double result = dot(&vec1[0], &vec2[0]); + + bool pass; + + if (finite(expected) && finite(result)) + { + pass = fabs(expected - result) < 1e-8; + } + else if (isnan(expected)) + { + pass = (bool) isnan(result); + } + else + { + pass = (result == expected); + } + + if(!testOk(pass, "<%f, %f, %f> . <%f, %f, %f>", x1, y1, z1, x2, y2, z2)) + { + testDiag("Expected: %f, Got: %f", expected, result); + } +} + +void testCross(double v1[3], double v2[3], double expected[3]) +{ + double result[3]; + + cross(v1, v2, result); + + bool pass = true; + + int i; + + for (i = 0; i < 3; i += 1) + { + if (finite(expected[i]) && finite(result[i])) + { + if (fabs(expected[i] - result[i]) > 1e-8) + { + pass = false; + break; + } + } + else if (isnan(expected[i]) && !isnan(result[i])) + { + pass = false; + break; + } + else if (result[i] != expected[i]) + { + pass = false; + break; + } + } + + if (!testOk(pass, "<%f, %f, %f> x <%f, %f, %f>", v1[0], v1[1], v1[2], v2[0], v2[1], v2[2])) + { + testDiag("Expected index %d: %f, Got: %f", i, expected[i], result[i]); + } +} + +void testDotCross(double v1[3], double v2[3], double v3[3]) +{ + double crossed[3]; + + cross(v2, v3, crossed); + + double expected = dot(v1, crossed); + double result = dotcross(v1, v2, v3); + + bool pass; + + if (finite(expected) && finite(result)) + { + pass = fabs(expected - result) < 1e-8; + } + else if (isnan(expected)) + { + pass = (bool) isnan(result); + } + else + { + pass = (result == expected); + } + + if(!testOk(pass, "<%f, %f, %f> . (<%f, %f, %f> x <%f, %f, %f>)", v1[0], v1[1], v1[2], v2[0], v2[1], v2[2], v3[0], v3[1], v3[2])) + { + testDiag("Expected: %f, Got: %f", expected, result); + } +} + +void testMultArrayArray(double m1[3][3], double m2[3][3], double expected[3][3]) +{ + double result[3][3]; + + multArrayArray(m1, m2, result); + + int i, j; + + bool pass = true; + + for (i = 0; i < 3; i += 1) + { + for (j = 0; j < 3; j += 1) + { + if (finite(expected[i][j]) && finite(result[i][j])) + { + if (fabs(expected[i][j] - result[i][j]) > 1e-8) + { + pass = false; + break; + } + } + else if (isnan(expected[i][j]) && !isnan(result[i][j])) + { + pass = false; + break; + } + else if (result[i][j] != expected[i][j]) + { + pass = false; + break; + } + } + + if (pass == false) { break; } + } + + if(!testOk(pass, "\n|%f, %f, %f| |%f, %f, %f|\n|%f, %f, %f| X |%f, %f, %f|\n|%f, %f, %f| |%f, %f, %f|\n", + m1[0][0], m1[0][1], m1[0][2], m2[0][0], m2[0][1], m2[0][2], + m1[1][0], m1[1][1], m1[1][2], m2[1][0], m2[1][1], m2[1][2], + m1[2][0], m1[2][1], m1[2][2], m2[2][0], m2[2][1], m2[2][2])) + { + testDiag("Expected [%d][%d]: %f, Got: %f", i, j, expected[i][j], result[i][j]); + } +} + +void testMultArrayVector(double m1[3][3], double v2[3], double expected[3]) +{ + double result[3]; + + multArrayVector(m1, v2, result); + + int i; + + bool pass = true; + + for (i = 0; i < 3; i += 1) + { + if (finite(expected[i]) && finite(result[i])) + { + if (fabs(expected[i] - result[i]) > 1e-8) + { + pass = false; + break; + } + } + else if (isnan(expected[i]) && !isnan(result[i])) + { + pass = false; + break; + } + else if (result[i] != expected[i]) + { + pass = false; + break; + } + } + + if (!testOk(pass, "\n|%f, %f, %f|\n|%f, %f, %f| x <%f, %f, %f>\n|%f, %f, %f|\n", + m1[0][0], m1[0][1], m1[0][2], + m1[1][0], m1[1][1], m1[1][2], v2[0], v2[1], v2[2], + m1[2][0], m1[2][1], m1[2][2])) + { + testDiag("Expected index %d: %f, Got: %f", i, expected[i], result[i]); + } +} + +void testDeterminant(double arr[3][3], double expected) +{ + double result = determinant(arr); + + bool pass; + + if (finite(expected) && finite(result)) + { + pass = fabs(expected - result) < 1e-8; + } + else if (isnan(expected)) + { + pass = (bool) isnan(result); + } + else + { + pass = (result == expected); + } + + if(!testOk(pass, "Determinant of \n|%f, %f, %f|\n|%f, %f, %f|\n|%f, %f, %f|\n", + arr[0][0], arr[0][1], arr[0][2], + arr[1][0], arr[1][1], arr[1][2], + arr[2][0], arr[2][1], arr[2][2])) + { + testDiag("Expected: %f, Got: %f", expected, result); + } +} + +void testInvertArray(double arr[3][3], double expected[3][3]) +{ + double result[3][3]; + + int i, j; + + int status = invertArray(arr, result); + + if (status != 0) + { + if (! testOk(expected == NULL, "\n|%f, %f, %f| ^-1\n|%f, %f, %f|\n|%f, %f, %f|\n", + arr[0][0], arr[0][1], arr[0][2], + arr[1][0], arr[1][1], arr[1][2], + arr[2][0], arr[2][1], arr[2][2])) + { + testDiag("Expected determinant too small error."); + } + + return; + } + + bool pass = true; + + for (i = 0; i < 3; i += 1) + { + for (j = 0; j < 3; j += 1) + { + if (finite(expected[i][j]) && finite(result[i][j])) + { + if (fabs(expected[i][j] - result[i][j]) > 1e-8) + { + pass = false; + break; + } + } + else if (isnan(expected[i][j]) && !isnan(result[i][j])) + { + pass = false; + break; + } + else if (result[i][j] != expected[i][j]) + { + pass = false; + break; + } + } + + if (pass == false) { break; } + } + + if (!testOk(pass, "\n|%f, %f, %f| ^-1\n|%f, %f, %f|\n|%f, %f, %f|\n", + arr[0][0], arr[0][1], arr[0][2], + arr[1][0], arr[1][1], arr[1][2], + arr[2][0], arr[2][1], arr[2][2])) + { + testDiag("Expected [%d][%d]: %f, Got: %f", i, j, expected[i][j], result[i][j]); + } +} + +MAIN(matrixTest) +{ + testPlan(56); + + double zeroes_vector[3] = {0., 0., 0.}; + double ones_vector[3] = {1., 1., 1.}; + double vector1[3] = {1., 2., 3.}; + double vector2[3] = {10.,71.,45.}; + double vector3[3] = {5.,10.,15.}; + + double vector_result1_1[3] = {14.,32.,50.}; + double vector_result2_1[3] = {25.,17.,10.}; + double vector_result1_2[3] = {287.,665.,1043.}; + double vector_result2_2[3] = {790.,194.,391.}; + + double crossed1_2[3] = {-123., -15., 51.}; + double crossed2_3[3] = {615., 75., -255.}; + double crossed3_2[3] = {-615.,-75.,255.}; + + double vector_sum1[3] = {6.,15.,24.}; + double vector_sum2[3] = {11.,8.,6.}; + + double matrix1[3][3] = + { + {1.0, 2.0, 3.0}, + {4.0, 5.0, 6.0}, + {7.0, 8.0, 9.0} + }; + + double matrix2[3][3] = + { + {-1.0, 10.0, 2.0}, + {4.0, -1.0, 5.0}, + {1.0, 6.0, -1.0} + }; + + double matrix_result1[3][3] = + { + {-29./169., 22./169., 52./169.}, + {9./169., -1./169., 13./169.}, + {25./169., 16./169., -39./169.} + }; + + double matrix_result2[3][3] = + { + {10.0, 26.0, 9.0}, + {22.0, 71.0, 27.0}, + {34.0, 116.0, 45.0} + }; + + double identity_matrix[3][3] = + { + {1.0, 0.0, 0.0}, + {0.0, 1.0, 0.0}, + {0.0, 0.0, 1.0} + }; + + double zeroes_matrix[3][3] = + { + {0.0, 0.0, 0.0}, + {0.0, 0.0, 0.0}, + {0.0, 0.0, 0.0} + }; + + testDot(-1,-1,-1, 1,1,1); + testDot( 0,-1,-1, 1,2,3); + testDot(-1, 0,-1, 1,2,3); + testDot(-1,-1, 0, 1,2,3); + testDot( 0, 0,-1, 1,2,3); + testDot( 0,-1, 0, 1,2,3); + testDot(-1, 0, 0, 1,2,3); + + testDot( 0, 0, 0, 0,0,0); + + testDot( 1, 0, 0, 1,2,3); + testDot( 0, 1, 0, 1,2,3); + testDot( 0, 0, 1, 1,2,3); + testDot( 1, 1, 0, 1,2,3); + testDot( 1, 0, 1, 1,2,3); + testDot( 0, 1, 1, 1,2,3); + testDot( 1, 1, 1, 1,2,3); + + testDot( 1, 1, 1, 1,1,1); + + testCross(zeroes_vector, zeroes_vector, zeroes_vector); + testCross(ones_vector, ones_vector, zeroes_vector); + testCross(vector1, vector2, crossed1_2); + testCross(vector1, vector3, zeroes_vector); + testCross(vector2, vector3, crossed2_3); + testCross(vector3, vector2, crossed3_2); + + testDotCross(zeroes_vector, zeroes_vector, zeroes_vector); + testDotCross(ones_vector, ones_vector, ones_vector); + + testDotCross(vector1, vector2, zeroes_vector); + testDotCross(vector1, vector2, ones_vector); + testDotCross(vector1, vector2, vector3); + + testDotCross(vector1, vector3, zeroes_vector); + testDotCross(vector1, vector3, ones_vector); + testDotCross(vector1, vector3, vector1); + + testDotCross(vector2, vector1, zeroes_vector); + testDotCross(vector2, vector1, ones_vector); + testDotCross(vector2, vector1, vector3); + + testDotCross(vector3, vector2, zeroes_vector); + testDotCross(vector3, vector2, ones_vector); + testDotCross(vector3, vector2, vector1); + + testDotCross(vector3, vector1, zeroes_vector); + testDotCross(vector3, vector1, ones_vector); + testDotCross(vector3, vector1, vector2); + + double inverted[3][3]; + invertArray(matrix2, inverted); + + testDeterminant(matrix1, 0); + testDeterminant(matrix2, 169); + testDeterminant(identity_matrix, 1); + + testInvertArray(matrix1, NULL); + testInvertArray(identity_matrix, identity_matrix); + testInvertArray(matrix2, matrix_result1); + + testMultArrayArray(matrix1, zeroes_matrix, zeroes_matrix); + testMultArrayArray(matrix1, identity_matrix, matrix1); + testMultArrayArray(matrix1, matrix2, matrix_result2); + testMultArrayArray(matrix2, inverted, identity_matrix); + + testMultArrayVector(matrix1, zeroes_vector, zeroes_vector); + testMultArrayVector(matrix1, ones_vector, vector_sum1); + testMultArrayVector(matrix2, ones_vector, vector_sum2); + testMultArrayVector(matrix1, vector1, vector_result1_1); + testMultArrayVector(matrix1, vector2, vector_result1_2); + testMultArrayVector(matrix2, vector1, vector_result2_1); + testMultArrayVector(matrix2, vector2, vector_result2_2); + + return testDone(); +} diff --git a/tests/runTests.cpp b/tests/runTests.cpp new file mode 100644 index 0000000..b043e2e --- /dev/null +++ b/tests/runTests.cpp @@ -0,0 +1,10 @@ +#include + +int matrixTest(void); + +void runOpticsTests(void) +{ + testHarness(); + + runTest(matrixTest); +}